First commit.
authorNguyễn Hồng Quân <ng.hong.quan@gmail.com>
Thu, 25 Oct 2012 17:27:45 +0000 (00:27 +0700)
committerNguyễn Hồng Quân <ng.hong.quan@gmail.com>
Thu, 25 Oct 2012 17:27:45 +0000 (00:27 +0700)
43 files changed:
data/check-data.pl [new file with mode: 0755]
data/conjugation-el.xml [new file with mode: 0644]
data/conjugation-fr.xml [new file with mode: 0644]
data/conjugation-it.xml [new file with mode: 0644]
data/verbs-el.xml [new file with mode: 0644]
data/verbs-fr.xml [new file with mode: 0644]
data/verbs-it.xml [new file with mode: 0644]
deployment.pri [new file with mode: 0644]
main.cpp [new file with mode: 0644]
mainwindow.cpp [new file with mode: 0644]
mainwindow.h [new file with mode: 0644]
mainwindow.ui [new file with mode: 0644]
mverbiste.desktop [new file with mode: 0644]
mverbiste.pro [new file with mode: 0644]
mverbiste.svg [new file with mode: 0644]
mverbiste64.png [new file with mode: 0644]
mverbiste80.png [new file with mode: 0644]
mverbiste_harmattan.desktop [new file with mode: 0644]
qtc_packaging/debian_fremantle/README [new file with mode: 0644]
qtc_packaging/debian_fremantle/changelog [new file with mode: 0644]
qtc_packaging/debian_fremantle/compat [new file with mode: 0644]
qtc_packaging/debian_fremantle/control [new file with mode: 0644]
qtc_packaging/debian_fremantle/copyright [new file with mode: 0644]
qtc_packaging/debian_fremantle/rules [new file with mode: 0755]
qtc_packaging/debian_harmattan/README [new file with mode: 0644]
qtc_packaging/debian_harmattan/changelog [new file with mode: 0644]
qtc_packaging/debian_harmattan/compat [new file with mode: 0644]
qtc_packaging/debian_harmattan/control [new file with mode: 0644]
qtc_packaging/debian_harmattan/copyright [new file with mode: 0644]
qtc_packaging/debian_harmattan/manifest.aegis [new file with mode: 0644]
qtc_packaging/debian_harmattan/rules [new file with mode: 0755]
verbiste/FrenchVerbDictionary.cpp [new file with mode: 0644]
verbiste/FrenchVerbDictionary.h [new file with mode: 0644]
verbiste/Makefile.am [new file with mode: 0644]
verbiste/Makefile.in [new file with mode: 0644]
verbiste/Trie.cpp [new file with mode: 0644]
verbiste/Trie.h [new file with mode: 0644]
verbiste/c-api.cpp [new file with mode: 0644]
verbiste/c-api.h [new file with mode: 0644]
verbiste/checkxml.cpp [new file with mode: 0644]
verbiste/misc-types.cpp [new file with mode: 0644]
verbiste/misc-types.h [new file with mode: 0644]
verbiste/verbiste.dox [new file with mode: 0644]

diff --git a/data/check-data.pl b/data/check-data.pl
new file mode 100755 (executable)
index 0000000..b4b0bd3
--- /dev/null
@@ -0,0 +1,85 @@
+#!/usr/bin/perl -w
+
+use strict;
+use XML::Parser;
+
+
+my $numErrors = 0;
+my %personTable = ();
+my $curTemplate;
+my $curInflection;
+
+
+sub error
+{
+    my ($msg) = @_;
+
+    print "$0: ERROR: $msg\n";
+    $numErrors++;
+}
+
+
+sub handleStart
+{
+    my ($expat, $el, %attr) = @_;
+
+    if ($el eq "template")
+    {
+       $curTemplate = $attr{name};
+       if (!defined $curTemplate)
+       {
+           error("<template> element without a 'name' attribute");
+       }
+    }
+    elsif ($el eq "p")
+    {
+       %personTable = ();
+    }
+    elsif ($el eq "i")
+    {
+       $curInflection = "";
+    }
+}
+
+
+sub handleChar
+{
+    my ($expat, $str) = @_;
+
+    if (defined $curInflection)
+    {
+       $curInflection .= $str;
+    }
+}
+
+
+sub handleEnd
+{
+    my ($expat, $el) = @_;
+
+    if ($el eq "i")
+    {
+       die unless defined $curInflection;
+       if (defined $personTable{$curInflection})
+       {
+           error("person in template $curTemplate has duplicate inflections ($curInflection)");
+       }
+       $personTable{$curInflection} = 1;
+       $curInflection = undef;
+    }
+}
+
+
+###############################################################################
+
+my $workDir = shift;
+chdir($workDir) if defined $workDir;
+
+my $parser = new XML::Parser(Handlers => {
+               Start => \&handleStart,
+               End => \&handleEnd,
+               Char => \&handleChar,
+               });
+$parser->parsefile("conjugation-fr.xml");
+
+exit($numErrors > 0);
diff --git a/data/conjugation-el.xml b/data/conjugation-el.xml
new file mode 100644 (file)
index 0000000..78a1be7
--- /dev/null
@@ -0,0 +1,189 @@
+<?xml version="1.0"?>
+
+<!--
+       conjugation-el.xml - Greek conjugation templates
+       Copyright (C) 2010 Pierre Sarrazin <http://sarrazip.com/>
+
+       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., 59 Temple Place - Suite 330, Boston, MA
+       02111-1307, USA.
+-->
+
+<!DOCTYPE conjugation-el [
+       <!ELEMENT conjugation-el (template+)>
+       <!ELEMENT template (present-indicative, present-subjunctive,
+                           present-imperative, present-gerund,
+                           past-imperfect-indicative, past-perfect-indicative,
+                           past-perfect-subjunctive, past-perfect-imperative,
+                           past-perfect-infinitive
+                           )>
+       <!ATTLIST template name CDATA #REQUIRED>
+
+        <!ELEMENT present-indicative (active, passive)>
+        <!ELEMENT present-subjunctive (active, passive)>
+        <!ELEMENT present-imperative (imp-active, imp-passive)>
+        <!ELEMENT present-gerund (present)>
+        <!ELEMENT past-imperfect-indicative (active, passive)>
+        <!ELEMENT past-perfect-indicative (active, passive)>
+        <!ELEMENT past-perfect-subjunctive (active, passive)>
+        <!ELEMENT past-perfect-imperative (imp-active, imp-passive)>
+        <!ELEMENT past-perfect-infinitive (past-perfect)>
+
+       <!ELEMENT active (p, p, p, p, p, p)>
+        <!ELEMENT passive (p, p, p, p, p, p)>
+        <!ELEMENT imp-active (p, p)>
+        <!ELEMENT imp-passive (p, p)>
+       <!ELEMENT present (p)>
+        <!ELEMENT past-perfect (p)>
+
+       <!ELEMENT p (i*)>
+       <!ELEMENT i (#PCDATA)>
+]>
+
+<conjugation-el>
+
+<template name="foo:bar">
+
+        <present-indicative>
+                <active>
+                        <p><i>pr-ind-a-1</i></p>
+                        <p><i>pr-ind-a-2</i></p>
+                        <p><i>pr-ind-a-3</i></p>
+                        <p><i>pr-ind-a-4</i></p>
+                        <p><i>pr-ind-a-5</i></p>
+                        <p><i>pr-ind-a-6</i></p>
+                </active>
+                <passive>
+                        <p><i>pr-ind-p-1</i></p>
+                        <p><i>pr-ind-p-2</i></p>
+                        <p><i>pr-ind-p-3</i></p>
+                        <p><i>pr-ind-p-4</i></p>
+                        <p><i>pr-ind-p-5</i></p>
+                        <p><i>pr-ind-p-6</i></p>
+                </passive>
+        </present-indicative>
+
+        <present-subjunctive>
+                <active>
+                        <p><i>pr-sub-a-1</i></p>
+                        <p><i>pr-sub-a-2</i></p>
+                        <p><i>pr-sub-a-3</i></p>
+                        <p><i>pr-sub-a-4</i></p>
+                        <p><i>pr-sub-a-5</i></p>
+                        <p><i>pr-sub-a-6</i></p>
+                </active>
+                <passive>
+                        <p><i>pr-sub-p-1</i></p>
+                        <p><i>pr-sub-p-2</i></p>
+                        <p><i>pr-sub-p-3</i></p>
+                        <p><i>pr-sub-p-4</i></p>
+                        <p><i>pr-sub-p-5</i></p>
+                        <p><i>pr-sub-p-6</i></p>
+                </passive>
+        </present-subjunctive>
+
+        <present-imperative>
+                <imp-active>
+                        <p><i>pr-imp-a-2</i></p>
+                        <p><i>pr-imp-a-4</i></p>
+                </imp-active>
+                <imp-passive>
+                        <p><i>pr-imp-p-2</i></p>
+                        <p><i>pr-imp-p-4</i></p>
+                </imp-passive>
+        </present-imperative>
+
+        <present-gerund>
+                <present>
+                        <p><i>pr-ger</i></p>
+                </present>
+        </present-gerund>
+
+        <past-imperfect-indicative>
+                <active>
+                        <p><i>pa-ipf-ind-a-1</i></p>
+                        <p><i>pa-ipf-ind-a-2</i></p>
+                        <p><i>pa-ipf-ind-a-3</i></p>
+                        <p><i>pa-ipf-ind-a-4</i></p>
+                        <p><i>pa-ipf-ind-a-5</i></p>
+                        <p><i>pa-ipf-ind-a-6</i></p>
+                </active>
+                <passive>
+                        <p><i>pa-ipf-ind-p-1</i></p>
+                        <p><i>pa-ipf-ind-p-2</i></p>
+                        <p><i>pa-ipf-ind-p-3</i></p>
+                        <p><i>pa-ipf-ind-p-4</i></p>
+                        <p><i>pa-ipf-ind-p-5</i></p>
+                        <p><i>pa-ipf-ind-p-6</i></p>
+                </passive>
+        </past-imperfect-indicative>
+
+        <past-perfect-indicative>
+                <active>
+                        <p><i>pa-per-ind-a-1</i></p>
+                        <p><i>pa-per-ind-a-2</i></p>
+                        <p><i>pa-per-ind-a-3</i></p>
+                        <p><i>pa-per-ind-a-4</i></p>
+                        <p><i>pa-per-ind-a-5</i></p>
+                        <p><i>pa-per-ind-a-6</i></p>
+                </active>
+                <passive>
+                        <p><i>pa-per-ind-p-1</i></p>
+                        <p><i>pa-per-ind-p-2</i></p>
+                        <p><i>pa-per-ind-p-3</i></p>
+                        <p><i>pa-per-ind-p-4</i></p>
+                        <p><i>pa-per-ind-p-5</i></p>
+                        <p><i>pa-per-ind-p-6</i></p>
+                </passive>
+        </past-perfect-indicative>
+
+        <past-perfect-subjunctive>
+                <active>
+                        <p><i>pa-per-sub-a-1</i></p>
+                        <p><i>pa-per-sub-a-2</i></p>
+                        <p><i>pa-per-sub-a-3</i></p>
+                        <p><i>pa-per-sub-a-4</i></p>
+                        <p><i>pa-per-sub-a-5</i></p>
+                        <p><i>pa-per-sub-a-6</i></p>
+                </active>
+                <passive>
+                        <p><i>pa-per-sub-p-1</i></p>
+                        <p><i>pa-per-sub-p-2</i></p>
+                        <p><i>pa-per-sub-p-3</i></p>
+                        <p><i>pa-per-sub-p-4</i></p>
+                        <p><i>pa-per-sub-p-5</i></p>
+                        <p><i>pa-per-sub-p-6</i></p>
+                </passive>
+        </past-perfect-subjunctive>
+
+        <past-perfect-imperative>
+                <imp-active>
+                        <p><i>pa-per-imp-a-2</i></p>
+                        <p><i>pa-per-imp-a-4</i></p>
+                </imp-active>
+                <imp-passive>
+                        <p><i>pa-per-imp-p-2</i></p>
+                        <p><i>pa-per-imp-p-4</i></p>
+                </imp-passive>
+        </past-perfect-imperative>
+
+        <past-perfect-infinitive>
+                <past-perfect>
+                        <p><i>pa-per-inf</i></p>
+                </past-perfect>
+        </past-perfect-infinitive>
+
+</template>
+
+</conjugation-el>
diff --git a/data/conjugation-fr.xml b/data/conjugation-fr.xml
new file mode 100644 (file)
index 0000000..2545688
--- /dev/null
@@ -0,0 +1,12458 @@
+<?xml version="1.0"?>
+
+<!--
+       conjugation-fr.xml - French conjugation templates
+       Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+       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., 59 Temple Place - Suite 330, Boston, MA
+       02111-1307, USA.
+-->
+
+<!DOCTYPE conjugation-fr [
+       <!ELEMENT conjugation-fr (template+)>
+       <!ELEMENT template (infinitive, indicative, conditional, subjunctive, imperative, participle)>
+       <!ATTLIST template name CDATA #REQUIRED>
+
+       <!ELEMENT infinitive (infinitive-present)>
+       <!ELEMENT indicative (present, imperfect, future, simple-past)>
+       <!ELEMENT conditional (present)>
+       <!ELEMENT subjunctive (present, imperfect)>
+       <!ELEMENT imperative (imperative-present)>
+       <!ELEMENT participle (present-participle, past-participle)>
+
+       <!ELEMENT infinitive-present (p)>
+       <!ELEMENT present (p, p, p, p, p, p)>
+       <!ELEMENT imperfect (p, p, p, p, p, p)>
+       <!ELEMENT future (p, p, p, p, p, p)>
+       <!ELEMENT simple-past (p, p, p, p, p, p)>
+       <!ELEMENT imperative-present (p, p, p)>
+       <!ELEMENT present-participle (p)>
+       <!ELEMENT past-participle (p, p, p, p)>
+
+       <!ELEMENT p (i*)>
+       <!ELEMENT i (#PCDATA)>
+]>
+
+<conjugation-fr>
+
+<template name="pla:cer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>cer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ce</i></p>
+                       <p><i>ces</i></p>
+                       <p><i>ce</i></p>
+                       <p><i>çons</i></p>
+                       <p><i>cez</i></p>
+                       <p><i>cent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>çais</i></p>
+                       <p><i>çais</i></p>
+                       <p><i>çait</i></p>
+                       <p><i>cions</i></p>
+                       <p><i>ciez</i></p>
+                       <p><i>çaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>cerai</i></p>
+                       <p><i>ceras</i></p>
+                       <p><i>cera</i></p>
+                       <p><i>cerons</i></p>
+                       <p><i>cerez</i></p>
+                       <p><i>ceront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>çai</i></p>
+                       <p><i>ças</i></p>
+                       <p><i>ça</i></p>
+                       <p><i>çâmes</i></p>
+                       <p><i>çâtes</i></p>
+                       <p><i>cèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>cerais</i></p>
+                       <p><i>cerais</i></p>
+                       <p><i>cerait</i></p>
+                       <p><i>cerions</i></p>
+                       <p><i>ceriez</i></p>
+                       <p><i>ceraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ce</i></p>
+                       <p><i>ces</i></p>
+                       <p><i>ce</i></p>
+                       <p><i>cions</i></p>
+                       <p><i>ciez</i></p>
+                       <p><i>cent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>çasse</i></p>
+                       <p><i>çasses</i></p>
+                       <p><i>çât</i></p>
+                       <p><i>çassions</i></p>
+                       <p><i>çassiez</i></p>
+                       <p><i>çassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ce</i></p>
+                       <p><i>çons</i></p>
+                       <p><i>cez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>çant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>cé</i></p>
+                       <p><i>cés</i></p>
+                       <p><i>cée</i></p>
+                       <p><i>cées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="dép:ecer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ecer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ece</i><i>èce</i></p>
+                       <p><i>eces</i><i>èces</i></p>
+                       <p><i>ece</i><i>èce</i></p>
+                       <p><i>eçons</i></p>
+                       <p><i>ecez</i></p>
+                       <p><i>ecent</i><i>ècent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>eçais</i></p>
+                       <p><i>eçais</i></p>
+                       <p><i>eçait</i></p>
+                       <p><i>ecions</i></p>
+                       <p><i>eciez</i></p>
+                       <p><i>eçaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ecerai</i><i>ècerai</i></p>
+                       <p><i>eceras</i><i>èceras</i></p>
+                       <p><i>ecera</i><i>ècera</i></p>
+                       <p><i>ecerons</i><i>ècerons</i></p>
+                       <p><i>ecerez</i><i>ècerez</i></p>
+                       <p><i>eceront</i><i>èceront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>eçai</i></p>
+                       <p><i>eças</i></p>
+                       <p><i>eça</i></p>
+                       <p><i>eçâmes</i></p>
+                       <p><i>eçâtes</i></p>
+                       <p><i>ecèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ecerais</i><i>ècerais</i></p>
+                       <p><i>ecerais</i><i>ècerais</i></p>
+                       <p><i>ecerait</i><i>ècerait</i></p>
+                       <p><i>ecerions</i><i>ècerions</i></p>
+                       <p><i>eceriez</i><i>èceriez</i></p>
+                       <p><i>eceraient</i><i>èceraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ece</i><i>èce</i></p>
+                       <p><i>eces</i><i>èces</i></p>
+                       <p><i>ece</i><i>èce</i></p>
+                       <p><i>ecions</i></p>
+                       <p><i>eciez</i></p>
+                       <p><i>ecent</i><i>ècent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>eçasse</i></p>
+                       <p><i>eçasses</i></p>
+                       <p><i>eçât</i></p>
+                       <p><i>eçassions</i></p>
+                       <p><i>eçassiez</i></p>
+                       <p><i>eçassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ece</i><i>èce</i></p>
+                       <p><i>eçons</i></p>
+                       <p><i>ecez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>eçant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ecé</i></p>
+                       <p><i>ecés</i></p>
+                       <p><i>ecée</i></p>
+                       <p><i>ecées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="man:ger">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ger</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ge</i></p>
+                       <p><i>ges</i></p>
+                       <p><i>ge</i></p>
+                       <p><i>geons</i></p>
+                       <p><i>gez</i></p>
+                       <p><i>gent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>geais</i></p>
+                       <p><i>geais</i></p>
+                       <p><i>geait</i></p>
+                       <p><i>gions</i></p>
+                       <p><i>giez</i></p>
+                       <p><i>geaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>gerai</i></p>
+                       <p><i>geras</i></p>
+                       <p><i>gera</i></p>
+                       <p><i>gerons</i></p>
+                       <p><i>gerez</i></p>
+                       <p><i>geront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>geai</i></p>
+                       <p><i>geas</i></p>
+                       <p><i>gea</i></p>
+                       <p><i>geâmes</i></p>
+                       <p><i>geâtes</i></p>
+                       <p><i>gèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>gerais</i></p>
+                       <p><i>gerais</i></p>
+                       <p><i>gerait</i></p>
+                       <p><i>gerions</i></p>
+                       <p><i>geriez</i></p>
+                       <p><i>geraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ge</i></p>
+                       <p><i>ges</i></p>
+                       <p><i>ge</i></p>
+                       <p><i>gions</i></p>
+                       <p><i>giez</i></p>
+                       <p><i>gent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>geasse</i></p>
+                       <p><i>geasses</i></p>
+                       <p><i>geât</i></p>
+                       <p><i>geassions</i></p>
+                       <p><i>geassiez</i></p>
+                       <p><i>geassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ge</i></p>
+                       <p><i>geons</i></p>
+                       <p><i>gez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>geant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>gé</i></p>
+                       <p><i>gés</i></p>
+                       <p><i>gée</i></p>
+                       <p><i>gées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="pa:yer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>yer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ie</i><i>ye</i></p>
+                       <p><i>ies</i><i>yes</i></p>
+                       <p><i>ie</i><i>ye</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+                       <p><i>ient</i><i>yent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yais</i></p>
+                       <p><i>yais</i></p>
+                       <p><i>yait</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ierai</i><i>yerai</i></p>
+                       <p><i>ieras</i><i>yeras</i></p>
+                       <p><i>iera</i><i>yera</i></p>
+                       <p><i>ierons</i><i>yerons</i></p>
+                       <p><i>ierez</i><i>yerez</i></p>
+                       <p><i>ieront</i><i>yeront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>yai</i></p>
+                       <p><i>yas</i></p>
+                       <p><i>ya</i></p>
+                       <p><i>yâmes</i></p>
+                       <p><i>yâtes</i></p>
+                       <p><i>yèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ierais</i><i>yerais</i></p>
+                       <p><i>ierais</i><i>yerais</i></p>
+                       <p><i>ierait</i><i>yerait</i></p>
+                       <p><i>ierions</i><i>yerions</i></p>
+                       <p><i>ieriez</i><i>yeriez</i></p>
+                       <p><i>ieraient</i><i>yeraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ie</i><i>ye</i></p>
+                       <p><i>ies</i><i>yes</i></p>
+                       <p><i>ie</i><i>ye</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>ient</i><i>yent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yasse</i></p>
+                       <p><i>yasses</i></p>
+                       <p><i>yât</i></p>
+                       <p><i>yassions</i></p>
+                       <p><i>yassiez</i></p>
+                       <p><i>yassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ie</i><i>ye</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>yant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>yé</i></p>
+                       <p><i>yés</i></p>
+                       <p><i>yée</i></p>
+                       <p><i>yées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="netto:yer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>yer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yais</i></p>
+                       <p><i>yais</i></p>
+                       <p><i>yait</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ierai</i></p>
+                       <p><i>ieras</i></p>
+                       <p><i>iera</i></p>
+                       <p><i>ierons</i></p>
+                       <p><i>ierez</i></p>
+                       <p><i>ieront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>yai</i></p>
+                       <p><i>yas</i></p>
+                       <p><i>ya</i></p>
+                       <p><i>yâmes</i></p>
+                       <p><i>yâtes</i></p>
+                       <p><i>yèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ierais</i></p>
+                       <p><i>ierais</i></p>
+                       <p><i>ierait</i></p>
+                       <p><i>ierions</i></p>
+                       <p><i>ieriez</i></p>
+                       <p><i>ieraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yasse</i></p>
+                       <p><i>yasses</i></p>
+                       <p><i>yât</i></p>
+                       <p><i>yassions</i></p>
+                       <p><i>yassiez</i></p>
+                       <p><i>yassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ie</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>yant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>yé</i></p>
+                       <p><i>yés</i></p>
+                       <p><i>yée</i></p>
+                       <p><i>yées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="grasse:yer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>yer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ye</i></p>
+                       <p><i>yes</i></p>
+                       <p><i>ye</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+                       <p><i>yent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yais</i></p>
+                       <p><i>yais</i></p>
+                       <p><i>yait</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>yerai</i></p>
+                       <p><i>yeras</i></p>
+                       <p><i>yera</i></p>
+                       <p><i>yerons</i></p>
+                       <p><i>yerez</i></p>
+                       <p><i>yeront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>yai</i></p>
+                       <p><i>yas</i></p>
+                       <p><i>ya</i></p>
+                       <p><i>yâmes</i></p>
+                       <p><i>yâtes</i></p>
+                       <p><i>yèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>yerais</i></p>
+                       <p><i>yerais</i></p>
+                       <p><i>yerait</i></p>
+                       <p><i>yerions</i></p>
+                       <p><i>yeriez</i></p>
+                       <p><i>yeraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ye</i></p>
+                       <p><i>yes</i></p>
+                       <p><i>ye</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yasse</i></p>
+                       <p><i>yasses</i></p>
+                       <p><i>yât</i></p>
+                       <p><i>yassions</i></p>
+                       <p><i>yassiez</i></p>
+                       <p><i>yassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ye</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>yant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>yé</i></p>
+                       <p><i>yés</i></p>
+                       <p><i>yée</i></p>
+                       <p><i>yées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="app:eler">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eler</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>elle</i></p>
+                       <p><i>elles</i></p>
+                       <p><i>elle</i></p>
+                       <p><i>elons</i></p>
+                       <p><i>elez</i></p>
+                       <p><i>ellent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>elais</i></p>
+                       <p><i>elais</i></p>
+                       <p><i>elait</i></p>
+                       <p><i>elions</i></p>
+                       <p><i>eliez</i></p>
+                       <p><i>elaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ellerai</i></p>
+                       <p><i>elleras</i></p>
+                       <p><i>ellera</i></p>
+                       <p><i>ellerons</i></p>
+                       <p><i>ellerez</i></p>
+                       <p><i>elleront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>elai</i></p>
+                       <p><i>elas</i></p>
+                       <p><i>ela</i></p>
+                       <p><i>elâmes</i></p>
+                       <p><i>elâtes</i></p>
+                       <p><i>elèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ellerais</i></p>
+                       <p><i>ellerais</i></p>
+                       <p><i>ellerait</i></p>
+                       <p><i>ellerions</i></p>
+                       <p><i>elleriez</i></p>
+                       <p><i>elleraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>elle</i></p>
+                       <p><i>elles</i></p>
+                       <p><i>elle</i></p>
+                       <p><i>elions</i></p>
+                       <p><i>eliez</i></p>
+                       <p><i>ellent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>elasse</i></p>
+                       <p><i>elasses</i></p>
+                       <p><i>elât</i></p>
+                       <p><i>elassions</i></p>
+                       <p><i>elassiez</i></p>
+                       <p><i>elassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>elle</i></p>
+                       <p><i>elons</i></p>
+                       <p><i>elez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>elant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>elé</i></p>
+                       <p><i>elés</i></p>
+                       <p><i>elée</i></p>
+                       <p><i>elées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="p:eler">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eler</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èle</i></p>
+                       <p><i>èles</i></p>
+                       <p><i>èle</i></p>
+                       <p><i>elons</i></p>
+                       <p><i>elez</i></p>
+                       <p><i>èlent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>elais</i></p>
+                       <p><i>elais</i></p>
+                       <p><i>elait</i></p>
+                       <p><i>elions</i></p>
+                       <p><i>eliez</i></p>
+                       <p><i>elaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èlerai</i></p>
+                       <p><i>èleras</i></p>
+                       <p><i>èlera</i></p>
+                       <p><i>èlerons</i></p>
+                       <p><i>èlerez</i></p>
+                       <p><i>èleront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>elai</i></p>
+                       <p><i>elas</i></p>
+                       <p><i>ela</i></p>
+                       <p><i>elâmes</i></p>
+                       <p><i>elâtes</i></p>
+                       <p><i>elèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èlerais</i></p>
+                       <p><i>èlerais</i></p>
+                       <p><i>èlerait</i></p>
+                       <p><i>èlerions</i></p>
+                       <p><i>èleriez</i></p>
+                       <p><i>èleraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èle</i></p>
+                       <p><i>èles</i></p>
+                       <p><i>èle</i></p>
+                       <p><i>elions</i></p>
+                       <p><i>eliez</i></p>
+                       <p><i>èlent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>elasse</i></p>
+                       <p><i>elasses</i></p>
+                       <p><i>elât</i></p>
+                       <p><i>elassions</i></p>
+                       <p><i>elassiez</i></p>
+                       <p><i>elassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èle</i></p>
+                       <p><i>elons</i></p>
+                       <p><i>elez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>elant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>elé</i></p>
+                       <p><i>elés</i></p>
+                       <p><i>elée</i></p>
+                       <p><i>elées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="harc:eler">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eler</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>elle</i><i>èle</i></p>
+                       <p><i>elles</i><i>èles</i></p>
+                       <p><i>elle</i><i>èle</i></p>
+                       <p><i>elons</i></p>
+                       <p><i>elez</i></p>
+                       <p><i>ellent</i><i>èlent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>elais</i></p>
+                       <p><i>elais</i></p>
+                       <p><i>elait</i></p>
+                       <p><i>elions</i></p>
+                       <p><i>eliez</i></p>
+                       <p><i>elaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ellerai</i><i>èlerai</i></p>
+                       <p><i>elleras</i><i>èleras</i></p>
+                       <p><i>ellera</i><i>èlera</i></p>
+                       <p><i>ellerons</i><i>èlerons</i></p>
+                       <p><i>ellerez</i><i>èlerez</i></p>
+                       <p><i>elleront</i><i>èleront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>elai</i></p>
+                       <p><i>elas</i></p>
+                       <p><i>ela</i></p>
+                       <p><i>elâmes</i></p>
+                       <p><i>elâtes</i></p>
+                       <p><i>elèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ellerais</i><i>èlerais</i></p>
+                       <p><i>ellerais</i><i>èlerais</i></p>
+                       <p><i>ellerait</i><i>èlerait</i></p>
+                       <p><i>ellerions</i><i>èlerions</i></p>
+                       <p><i>elleriez</i><i>èleriez</i></p>
+                       <p><i>elleraient</i><i>èleraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>elle</i><i>èle</i></p>
+                       <p><i>elles</i><i>èles</i></p>
+                       <p><i>elle</i><i>èle</i></p>
+                       <p><i>elions</i></p>
+                       <p><i>eliez</i></p>
+                       <p><i>ellent</i><i>èlent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>elasse</i></p>
+                       <p><i>elasses</i></p>
+                       <p><i>elât</i></p>
+                       <p><i>elassions</i></p>
+                       <p><i>elassiez</i></p>
+                       <p><i>elassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>elle</i><i>èle</i></p>
+                       <p><i>elons</i></p>
+                       <p><i>elez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>elant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>elé</i></p>
+                       <p><i>elés</i></p>
+                       <p><i>elée</i></p>
+                       <p><i>elées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="j:eter">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eter</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ette</i></p>
+                       <p><i>ettes</i></p>
+                       <p><i>ette</i></p>
+                       <p><i>etons</i></p>
+                       <p><i>etez</i></p>
+                       <p><i>ettent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>etais</i></p>
+                       <p><i>etais</i></p>
+                       <p><i>etait</i></p>
+                       <p><i>etions</i></p>
+                       <p><i>etiez</i></p>
+                       <p><i>etaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>etterai</i></p>
+                       <p><i>etteras</i></p>
+                       <p><i>ettera</i></p>
+                       <p><i>etterons</i></p>
+                       <p><i>etterez</i></p>
+                       <p><i>etteront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>etai</i></p>
+                       <p><i>etas</i></p>
+                       <p><i>eta</i></p>
+                       <p><i>etâmes</i></p>
+                       <p><i>etâtes</i></p>
+                       <p><i>etèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>etterais</i></p>
+                       <p><i>etterais</i></p>
+                       <p><i>etterait</i></p>
+                       <p><i>etterions</i></p>
+                       <p><i>etteriez</i></p>
+                       <p><i>etteraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ette</i></p>
+                       <p><i>ettes</i></p>
+                       <p><i>ette</i></p>
+                       <p><i>etions</i></p>
+                       <p><i>etiez</i></p>
+                       <p><i>ettent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>etasse</i></p>
+                       <p><i>etasses</i></p>
+                       <p><i>etât</i></p>
+                       <p><i>etassions</i></p>
+                       <p><i>etassiez</i></p>
+                       <p><i>etassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ette</i></p>
+                       <p><i>etons</i></p>
+                       <p><i>etez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>etant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>eté</i></p>
+                       <p><i>etés</i></p>
+                       <p><i>etée</i></p>
+                       <p><i>etées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ach:eter">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eter</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ète</i></p>
+                       <p><i>ètes</i></p>
+                       <p><i>ète</i></p>
+                       <p><i>etons</i></p>
+                       <p><i>etez</i></p>
+                       <p><i>ètent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>etais</i></p>
+                       <p><i>etais</i></p>
+                       <p><i>etait</i></p>
+                       <p><i>etions</i></p>
+                       <p><i>etiez</i></p>
+                       <p><i>etaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èterai</i></p>
+                       <p><i>èteras</i></p>
+                       <p><i>ètera</i></p>
+                       <p><i>èterons</i></p>
+                       <p><i>èterez</i></p>
+                       <p><i>èteront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>etai</i></p>
+                       <p><i>etas</i></p>
+                       <p><i>eta</i></p>
+                       <p><i>etâmes</i></p>
+                       <p><i>etâtes</i></p>
+                       <p><i>etèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èterais</i></p>
+                       <p><i>èterais</i></p>
+                       <p><i>èterait</i></p>
+                       <p><i>èterions</i></p>
+                       <p><i>èteriez</i></p>
+                       <p><i>èteraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ète</i></p>
+                       <p><i>ètes</i></p>
+                       <p><i>ète</i></p>
+                       <p><i>etions</i></p>
+                       <p><i>etiez</i></p>
+                       <p><i>ètent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>etasse</i></p>
+                       <p><i>etasses</i></p>
+                       <p><i>etât</i></p>
+                       <p><i>etassions</i></p>
+                       <p><i>etassiez</i></p>
+                       <p><i>etassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ète</i></p>
+                       <p><i>etons</i></p>
+                       <p><i>etez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>etant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>eté</i></p>
+                       <p><i>etés</i></p>
+                       <p><i>etée</i></p>
+                       <p><i>etées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="héb:éter">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éter</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ète</i></p>
+                       <p><i>ètes</i></p>
+                       <p><i>ète</i></p>
+                       <p><i>étons</i></p>
+                       <p><i>étez</i></p>
+                       <p><i>ètent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>étais</i></p>
+                       <p><i>étais</i></p>
+                       <p><i>était</i></p>
+                       <p><i>étions</i></p>
+                       <p><i>étiez</i></p>
+                       <p><i>étaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èterai</i></p>
+                       <p><i>èteras</i></p>
+                       <p><i>ètera</i></p>
+                       <p><i>èterons</i></p>
+                       <p><i>èterez</i></p>
+                       <p><i>èteront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>étai</i></p>
+                       <p><i>étas</i></p>
+                       <p><i>éta</i></p>
+                       <p><i>étâmes</i></p>
+                       <p><i>étâtes</i></p>
+                       <p><i>étèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èterais</i></p>
+                       <p><i>èterais</i></p>
+                       <p><i>èterait</i></p>
+                       <p><i>èterions</i></p>
+                       <p><i>èteriez</i></p>
+                       <p><i>èteraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ète</i></p>
+                       <p><i>ètes</i></p>
+                       <p><i>ète</i></p>
+                       <p><i>étions</i></p>
+                       <p><i>étiez</i></p>
+                       <p><i>ètent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>étasse</i></p>
+                       <p><i>étasses</i></p>
+                       <p><i>étât</i></p>
+                       <p><i>étassions</i></p>
+                       <p><i>étassiez</i></p>
+                       <p><i>étassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ète</i></p>
+                       <p><i>étons</i></p>
+                       <p><i>étez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>étant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>été</i></p>
+                       <p><i>étés</i></p>
+                       <p><i>étée</i></p>
+                       <p><i>étées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="s:emer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>emer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ème</i></p>
+                       <p><i>èmes</i></p>
+                       <p><i>ème</i></p>
+                       <p><i>emons</i></p>
+                       <p><i>emez</i></p>
+                       <p><i>èment</i></p>
+               </present>
+               <imperfect>
+                       <p><i>emais</i></p>
+                       <p><i>emais</i></p>
+                       <p><i>emait</i></p>
+                       <p><i>emions</i></p>
+                       <p><i>emiez</i></p>
+                       <p><i>emaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èmerai</i></p>
+                       <p><i>èmeras</i></p>
+                       <p><i>èmera</i></p>
+                       <p><i>èmerons</i></p>
+                       <p><i>èmerez</i></p>
+                       <p><i>èmeront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>emai</i></p>
+                       <p><i>emas</i></p>
+                       <p><i>ema</i></p>
+                       <p><i>emâmes</i></p>
+                       <p><i>emâtes</i></p>
+                       <p><i>emèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èmerais</i></p>
+                       <p><i>èmerais</i></p>
+                       <p><i>èmerait</i></p>
+                       <p><i>èmerions</i></p>
+                       <p><i>èmeriez</i></p>
+                       <p><i>èmeraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ème</i></p>
+                       <p><i>èmes</i></p>
+                       <p><i>ème</i></p>
+                       <p><i>emions</i></p>
+                       <p><i>emiez</i></p>
+                       <p><i>èment</i></p>
+               </present>
+               <imperfect>
+                       <p><i>emasse</i></p>
+                       <p><i>emasses</i></p>
+                       <p><i>emât</i></p>
+                       <p><i>emassions</i></p>
+                       <p><i>emassiez</i></p>
+                       <p><i>emassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ème</i></p>
+                       <p><i>emons</i></p>
+                       <p><i>emez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>emant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>emé</i></p>
+                       <p><i>emés</i></p>
+                       <p><i>emée</i></p>
+                       <p><i>emées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="l:éguer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éguer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ègue</i></p>
+                       <p><i>ègues</i></p>
+                       <p><i>ègue</i></p>
+                       <p><i>éguons</i></p>
+                       <p><i>éguez</i></p>
+                       <p><i>èguent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>éguais</i></p>
+                       <p><i>éguais</i></p>
+                       <p><i>éguait</i></p>
+                       <p><i>éguions</i></p>
+                       <p><i>éguiez</i></p>
+                       <p><i>éguaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èguerai</i></p>
+                       <p><i>ègueras</i></p>
+                       <p><i>èguera</i></p>
+                       <p><i>èguerons</i></p>
+                       <p><i>èguerez</i></p>
+                       <p><i>ègueront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>éguai</i></p>
+                       <p><i>éguas</i></p>
+                       <p><i>égua</i></p>
+                       <p><i>éguâmes</i></p>
+                       <p><i>éguâtes</i></p>
+                       <p><i>éguèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èguerais</i></p>
+                       <p><i>èguerais</i></p>
+                       <p><i>èguerait</i></p>
+                       <p><i>èguerions</i></p>
+                       <p><i>ègueriez</i></p>
+                       <p><i>ègueraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ègue</i></p>
+                       <p><i>ègues</i></p>
+                       <p><i>ègue</i></p>
+                       <p><i>éguions</i></p>
+                       <p><i>éguiez</i></p>
+                       <p><i>èguent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>éguasse</i></p>
+                       <p><i>éguasses</i></p>
+                       <p><i>éguât</i></p>
+                       <p><i>éguassions</i></p>
+                       <p><i>éguassiez</i></p>
+                       <p><i>éguassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ègue</i></p>
+                       <p><i>éguons</i></p>
+                       <p><i>éguez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>éguant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>égué</i></p>
+                       <p><i>égués</i></p>
+                       <p><i>éguée</i></p>
+                       <p><i>éguées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="diss:équer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>équer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èque</i></p>
+                       <p><i>èques</i></p>
+                       <p><i>èque</i></p>
+                       <p><i>équons</i></p>
+                       <p><i>équez</i></p>
+                       <p><i>èquent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>équais</i></p>
+                       <p><i>équais</i></p>
+                       <p><i>équait</i></p>
+                       <p><i>équions</i></p>
+                       <p><i>équiez</i></p>
+                       <p><i>équaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èquerai</i></p>
+                       <p><i>èqueras</i></p>
+                       <p><i>èquera</i></p>
+                       <p><i>èquerons</i></p>
+                       <p><i>èquerez</i></p>
+                       <p><i>èqueront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>équai</i></p>
+                       <p><i>équas</i></p>
+                       <p><i>équa</i></p>
+                       <p><i>équâmes</i></p>
+                       <p><i>équâtes</i></p>
+                       <p><i>équèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èquerais</i></p>
+                       <p><i>èquerais</i></p>
+                       <p><i>èquerait</i></p>
+                       <p><i>èquerions</i></p>
+                       <p><i>èqueriez</i></p>
+                       <p><i>èqueraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èque</i></p>
+                       <p><i>èques</i></p>
+                       <p><i>èque</i></p>
+                       <p><i>équions</i></p>
+                       <p><i>équiez</i></p>
+                       <p><i>èquent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>équasse</i></p>
+                       <p><i>équasses</i></p>
+                       <p><i>équât</i></p>
+                       <p><i>équassions</i></p>
+                       <p><i>équassiez</i></p>
+                       <p><i>équassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èque</i></p>
+                       <p><i>équons</i></p>
+                       <p><i>équez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>équant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>équé</i></p>
+                       <p><i>équés</i></p>
+                       <p><i>équée</i></p>
+                       <p><i>équées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="rév:éler">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éler</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èle</i></p>
+                       <p><i>èles</i></p>
+                       <p><i>èle</i></p>
+                       <p><i>élons</i></p>
+                       <p><i>élez</i></p>
+                       <p><i>èlent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>élais</i></p>
+                       <p><i>élais</i></p>
+                       <p><i>élait</i></p>
+                       <p><i>élions</i></p>
+                       <p><i>éliez</i></p>
+                       <p><i>élaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>élerai</i><i>èlerai</i></p>
+                       <p><i>éleras</i><i>èleras</i></p>
+                       <p><i>élera</i><i>èlera</i></p>
+                       <p><i>élerons</i><i>èlerons</i></p>
+                       <p><i>élerez</i><i>èlerez</i></p>
+                       <p><i>éleront</i><i>èleront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>élai</i></p>
+                       <p><i>élas</i></p>
+                       <p><i>éla</i></p>
+                       <p><i>élâmes</i></p>
+                       <p><i>élâtes</i></p>
+                       <p><i>élèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>élerais</i><i>èlerais</i></p>
+                       <p><i>élerais</i><i>èlerais</i></p>
+                       <p><i>élerait</i><i>èlerait</i></p>
+                       <p><i>élerions</i><i>èlerions</i></p>
+                       <p><i>éleriez</i><i>èleriez</i></p>
+                       <p><i>éleraient</i><i>èleraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èle</i></p>
+                       <p><i>èles</i></p>
+                       <p><i>èle</i></p>
+                       <p><i>élions</i></p>
+                       <p><i>éliez</i></p>
+                       <p><i>èlent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>élasse</i></p>
+                       <p><i>élasses</i></p>
+                       <p><i>élât</i></p>
+                       <p><i>élassions</i></p>
+                       <p><i>élassiez</i></p>
+                       <p><i>élassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èle</i></p>
+                       <p><i>élons</i></p>
+                       <p><i>élez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>élant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>élé</i></p>
+                       <p><i>élés</i></p>
+                       <p><i>élée</i></p>
+                       <p><i>élées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="imp:étrer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>étrer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ètre</i></p>
+                       <p><i>ètres</i></p>
+                       <p><i>ètre</i></p>
+                       <p><i>étrons</i></p>
+                       <p><i>étrez</i></p>
+                       <p><i>ètrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>étrais</i></p>
+                       <p><i>étrais</i></p>
+                       <p><i>étrait</i></p>
+                       <p><i>étrions</i></p>
+                       <p><i>étriez</i></p>
+                       <p><i>étraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>étrerai</i><i>ètrerai</i></p>
+                       <p><i>étreras</i><i>ètreras</i></p>
+                       <p><i>étrera</i><i>ètrera</i></p>
+                       <p><i>étrerons</i><i>ètrerons</i></p>
+                       <p><i>étrerez</i><i>ètrerez</i></p>
+                       <p><i>étreront</i><i>ètreront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>étrai</i></p>
+                       <p><i>étras</i></p>
+                       <p><i>étra</i></p>
+                       <p><i>étrâmes</i></p>
+                       <p><i>étrâtes</i></p>
+                       <p><i>étrèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>étrerais</i><i>ètrerais</i></p>
+                       <p><i>étrerais</i><i>ètrerais</i></p>
+                       <p><i>étrerait</i><i>ètrerait</i></p>
+                       <p><i>étrerions</i><i>ètrerions</i></p>
+                       <p><i>étreriez</i><i>ètreriez</i></p>
+                       <p><i>étreraient</i><i>ètreraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ètre</i></p>
+                       <p><i>ètres</i></p>
+                       <p><i>ètre</i></p>
+                       <p><i>étrions</i></p>
+                       <p><i>étriez</i></p>
+                       <p><i>ètrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>étrasse</i></p>
+                       <p><i>étrasses</i></p>
+                       <p><i>étrât</i></p>
+                       <p><i>étrassions</i></p>
+                       <p><i>étrassiez</i></p>
+                       <p><i>étrassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ètre</i></p>
+                       <p><i>étrons</i></p>
+                       <p><i>étrez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>étrant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>étré</i></p>
+                       <p><i>étrés</i></p>
+                       <p><i>étrée</i></p>
+                       <p><i>étrées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="r:égler">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>égler</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ègle</i></p>
+                       <p><i>ègles</i></p>
+                       <p><i>ègle</i></p>
+                       <p><i>églons</i></p>
+                       <p><i>églez</i></p>
+                       <p><i>èglent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>églais</i></p>
+                       <p><i>églais</i></p>
+                       <p><i>églait</i></p>
+                       <p><i>églions</i></p>
+                       <p><i>égliez</i></p>
+                       <p><i>églaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>églerai</i><i>èglerai</i></p>
+                       <p><i>égleras</i><i>ègleras</i></p>
+                       <p><i>églera</i><i>èglera</i></p>
+                       <p><i>églerons</i><i>èglerons</i></p>
+                       <p><i>églerez</i><i>èglerez</i></p>
+                       <p><i>égleront</i><i>ègleront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>églai</i></p>
+                       <p><i>églas</i></p>
+                       <p><i>égla</i></p>
+                       <p><i>églâmes</i></p>
+                       <p><i>églâtes</i></p>
+                       <p><i>églèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>églerais</i><i>èglerais</i></p>
+                       <p><i>églerais</i><i>èglerais</i></p>
+                       <p><i>églerait</i><i>èglerait</i></p>
+                       <p><i>églerions</i><i>èglerions</i></p>
+                       <p><i>égleriez</i><i>ègleriez</i></p>
+                       <p><i>égleraient</i><i>ègleraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ègle</i></p>
+                       <p><i>ègles</i></p>
+                       <p><i>ègle</i></p>
+                       <p><i>églions</i></p>
+                       <p><i>égliez</i></p>
+                       <p><i>èglent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>églasse</i></p>
+                       <p><i>églasses</i></p>
+                       <p><i>églât</i></p>
+                       <p><i>églassions</i></p>
+                       <p><i>églassiez</i></p>
+                       <p><i>églassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ègle</i></p>
+                       <p><i>églons</i></p>
+                       <p><i>églez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>églant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>églé</i></p>
+                       <p><i>églés</i></p>
+                       <p><i>églée</i></p>
+                       <p><i>églées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="r:égner">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>égner</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ègne</i></p>
+                       <p><i>ègnes</i></p>
+                       <p><i>ègne</i></p>
+                       <p><i>égnons</i></p>
+                       <p><i>égnez</i></p>
+                       <p><i>ègnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>égnais</i></p>
+                       <p><i>égnais</i></p>
+                       <p><i>égnait</i></p>
+                       <p><i>égnions</i></p>
+                       <p><i>égniez</i></p>
+                       <p><i>égnaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>égnerai</i><i>ègnerai</i></p>
+                       <p><i>égneras</i><i>ègneras</i></p>
+                       <p><i>égnera</i><i>ègnera</i></p>
+                       <p><i>égnerons</i><i>ègnerons</i></p>
+                       <p><i>égnerez</i><i>ègnerez</i></p>
+                       <p><i>égneront</i><i>ègneront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>égnai</i></p>
+                       <p><i>égnas</i></p>
+                       <p><i>égna</i></p>
+                       <p><i>égnâmes</i></p>
+                       <p><i>égnâtes</i></p>
+                       <p><i>égnèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>égnerais</i><i>ègnerais</i></p>
+                       <p><i>égnerais</i><i>ègnerais</i></p>
+                       <p><i>égnerait</i><i>ègnerait</i></p>
+                       <p><i>égnerions</i><i>ègnerions</i></p>
+                       <p><i>égneriez</i><i>ègneriez</i></p>
+                       <p><i>égneraient</i><i>ègneraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ègne</i></p>
+                       <p><i>ègnes</i></p>
+                       <p><i>ègne</i></p>
+                       <p><i>égnions</i></p>
+                       <p><i>égniez</i></p>
+                       <p><i>ègnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>égnasse</i></p>
+                       <p><i>égnasses</i></p>
+                       <p><i>égnât</i></p>
+                       <p><i>égnassions</i></p>
+                       <p><i>égnassiez</i></p>
+                       <p><i>égnassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ègne</i></p>
+                       <p><i>égnons</i></p>
+                       <p><i>égnez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>égnant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>égné</i></p>
+                       <p><i>égnés</i></p>
+                       <p><i>égnée</i></p>
+                       <p><i>égnées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cél:ébrer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ébrer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èbre</i></p>
+                       <p><i>èbres</i></p>
+                       <p><i>èbre</i></p>
+                       <p><i>ébrons</i></p>
+                       <p><i>ébrez</i></p>
+                       <p><i>èbrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ébrais</i></p>
+                       <p><i>ébrais</i></p>
+                       <p><i>ébrait</i></p>
+                       <p><i>ébrions</i></p>
+                       <p><i>ébriez</i></p>
+                       <p><i>ébraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ébrerai</i><i>èbrerai</i></p>
+                       <p><i>ébreras</i><i>èbreras</i></p>
+                       <p><i>ébrera</i><i>èbrera</i></p>
+                       <p><i>ébrerons</i><i>èbrerons</i></p>
+                       <p><i>ébrerez</i><i>èbrerez</i></p>
+                       <p><i>ébreront</i><i>èbreront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ébrai</i></p>
+                       <p><i>ébras</i></p>
+                       <p><i>ébra</i></p>
+                       <p><i>ébrâmes</i></p>
+                       <p><i>ébrâtes</i></p>
+                       <p><i>ébrèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ébrerais</i><i>èbrerais</i></p>
+                       <p><i>ébrerais</i><i>èbrerais</i></p>
+                       <p><i>ébrerait</i><i>èbrerait</i></p>
+                       <p><i>ébrerions</i><i>èbrerions</i></p>
+                       <p><i>ébreriez</i><i>èbreriez</i></p>
+                       <p><i>ébreraient</i><i>èbreraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èbre</i></p>
+                       <p><i>èbres</i></p>
+                       <p><i>èbre</i></p>
+                       <p><i>ébrions</i></p>
+                       <p><i>ébriez</i></p>
+                       <p><i>èbrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ébrasse</i></p>
+                       <p><i>ébrasses</i></p>
+                       <p><i>ébrât</i></p>
+                       <p><i>ébrassions</i></p>
+                       <p><i>ébrassiez</i></p>
+                       <p><i>ébrassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èbre</i></p>
+                       <p><i>ébrons</i></p>
+                       <p><i>ébrez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ébrant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ébré</i></p>
+                       <p><i>ébrés</i></p>
+                       <p><i>ébrée</i></p>
+                       <p><i>ébrées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="int:égrer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>égrer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ègre</i></p>
+                       <p><i>ègres</i></p>
+                       <p><i>ègre</i></p>
+                       <p><i>égrons</i></p>
+                       <p><i>égrez</i></p>
+                       <p><i>ègrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>égrais</i></p>
+                       <p><i>égrais</i></p>
+                       <p><i>égrait</i></p>
+                       <p><i>égrions</i></p>
+                       <p><i>égriez</i></p>
+                       <p><i>égraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>égrerai</i><i>ègrerai</i></p>
+                       <p><i>égreras</i><i>ègreras</i></p>
+                       <p><i>égrera</i><i>ègrera</i></p>
+                       <p><i>égrerons</i><i>ègrerons</i></p>
+                       <p><i>égrerez</i><i>ègrerez</i></p>
+                       <p><i>égreront</i><i>ègreront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>égrai</i></p>
+                       <p><i>égras</i></p>
+                       <p><i>égra</i></p>
+                       <p><i>égrâmes</i></p>
+                       <p><i>égrâtes</i></p>
+                       <p><i>égrèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>égrerais</i><i>ègrerais</i></p>
+                       <p><i>égrerais</i><i>ègrerais</i></p>
+                       <p><i>égrerait</i><i>ègrerait</i></p>
+                       <p><i>égrerions</i><i>ègrerions</i></p>
+                       <p><i>égreriez</i><i>ègreriez</i></p>
+                       <p><i>égreraient</i><i>ègreraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ègre</i></p>
+                       <p><i>ègres</i></p>
+                       <p><i>ègre</i></p>
+                       <p><i>égrions</i></p>
+                       <p><i>égriez</i></p>
+                       <p><i>ègrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>égrasse</i></p>
+                       <p><i>égrasses</i></p>
+                       <p><i>égrât</i></p>
+                       <p><i>égrassions</i></p>
+                       <p><i>égrassiez</i></p>
+                       <p><i>égrassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ègre</i></p>
+                       <p><i>égrons</i></p>
+                       <p><i>égrez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>égrant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>égré</i></p>
+                       <p><i>égrés</i></p>
+                       <p><i>égrée</i></p>
+                       <p><i>égrées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="décr:éter">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éter</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ète</i></p>
+                       <p><i>ètes</i></p>
+                       <p><i>ète</i></p>
+                       <p><i>étons</i></p>
+                       <p><i>étez</i></p>
+                       <p><i>ètent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>étais</i></p>
+                       <p><i>étais</i></p>
+                       <p><i>était</i></p>
+                       <p><i>étions</i></p>
+                       <p><i>étiez</i></p>
+                       <p><i>étaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>éterai</i><i>èterai</i></p>
+                       <p><i>éteras</i><i>èteras</i></p>
+                       <p><i>étera</i><i>ètera</i></p>
+                       <p><i>éterons</i><i>èterons</i></p>
+                       <p><i>éterez</i><i>èterez</i></p>
+                       <p><i>éteront</i><i>èteront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>étai</i></p>
+                       <p><i>étas</i></p>
+                       <p><i>éta</i></p>
+                       <p><i>étâmes</i></p>
+                       <p><i>étâtes</i></p>
+                       <p><i>étèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>éterais</i><i>èterais</i></p>
+                       <p><i>éterais</i><i>èterais</i></p>
+                       <p><i>éterait</i><i>èterait</i></p>
+                       <p><i>éterions</i><i>èterions</i></p>
+                       <p><i>éteriez</i><i>èteriez</i></p>
+                       <p><i>éteraient</i><i>èteraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ète</i></p>
+                       <p><i>ètes</i></p>
+                       <p><i>ète</i></p>
+                       <p><i>étions</i></p>
+                       <p><i>étiez</i></p>
+                       <p><i>ètent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>étasse</i></p>
+                       <p><i>étasses</i></p>
+                       <p><i>étât</i></p>
+                       <p><i>étassions</i></p>
+                       <p><i>étassiez</i></p>
+                       <p><i>étassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ète</i></p>
+                       <p><i>étons</i></p>
+                       <p><i>étez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>étant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>été</i></p>
+                       <p><i>étés</i></p>
+                       <p><i>étée</i></p>
+                       <p><i>étées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ali:éner">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éner</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ène</i></p>
+                       <p><i>ènes</i></p>
+                       <p><i>ène</i></p>
+                       <p><i>énons</i></p>
+                       <p><i>énez</i></p>
+                       <p><i>ènent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>énais</i></p>
+                       <p><i>énais</i></p>
+                       <p><i>énait</i></p>
+                       <p><i>énions</i></p>
+                       <p><i>éniez</i></p>
+                       <p><i>énaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>énerai</i><i>ènerai</i></p>
+                       <p><i>éneras</i><i>èneras</i></p>
+                       <p><i>énera</i><i>ènera</i></p>
+                       <p><i>énerons</i><i>ènerons</i></p>
+                       <p><i>énerez</i><i>ènerez</i></p>
+                       <p><i>éneront</i><i>èneront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>énai</i></p>
+                       <p><i>énas</i></p>
+                       <p><i>éna</i></p>
+                       <p><i>énâmes</i></p>
+                       <p><i>énâtes</i></p>
+                       <p><i>énèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>énerais</i><i>ènerais</i></p>
+                       <p><i>énerais</i><i>ènerais</i></p>
+                       <p><i>énerait</i><i>ènerait</i></p>
+                       <p><i>énerions</i><i>ènerions</i></p>
+                       <p><i>éneriez</i><i>èneriez</i></p>
+                       <p><i>éneraient</i><i>èneraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ène</i></p>
+                       <p><i>ènes</i></p>
+                       <p><i>ène</i></p>
+                       <p><i>énions</i></p>
+                       <p><i>éniez</i></p>
+                       <p><i>ènent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>énasse</i></p>
+                       <p><i>énasses</i></p>
+                       <p><i>énât</i></p>
+                       <p><i>énassions</i></p>
+                       <p><i>énassiez</i></p>
+                       <p><i>énassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ène</i></p>
+                       <p><i>énons</i></p>
+                       <p><i>énez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>énant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>éné</i></p>
+                       <p><i>énés</i></p>
+                       <p><i>énée</i></p>
+                       <p><i>énées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="m:ener">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ener</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ène</i></p>
+                       <p><i>ènes</i></p>
+                       <p><i>ène</i></p>
+                       <p><i>enons</i></p>
+                       <p><i>enez</i></p>
+                       <p><i>ènent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>enais</i></p>
+                       <p><i>enais</i></p>
+                       <p><i>enait</i></p>
+                       <p><i>enions</i></p>
+                       <p><i>eniez</i></p>
+                       <p><i>enaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ènerai</i></p>
+                       <p><i>èneras</i></p>
+                       <p><i>ènera</i></p>
+                       <p><i>ènerons</i></p>
+                       <p><i>ènerez</i></p>
+                       <p><i>èneront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>enai</i></p>
+                       <p><i>enas</i></p>
+                       <p><i>ena</i></p>
+                       <p><i>enâmes</i></p>
+                       <p><i>enâtes</i></p>
+                       <p><i>enèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ènerais</i></p>
+                       <p><i>ènerais</i></p>
+                       <p><i>ènerait</i></p>
+                       <p><i>ènerions</i></p>
+                       <p><i>èneriez</i></p>
+                       <p><i>èneraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ène</i></p>
+                       <p><i>ènes</i></p>
+                       <p><i>ène</i></p>
+                       <p><i>enions</i></p>
+                       <p><i>eniez</i></p>
+                       <p><i>ènent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>enasse</i></p>
+                       <p><i>enasses</i></p>
+                       <p><i>enât</i></p>
+                       <p><i>enassions</i></p>
+                       <p><i>enassiez</i></p>
+                       <p><i>enassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ène</i></p>
+                       <p><i>enons</i></p>
+                       <p><i>enez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>enant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ené</i></p>
+                       <p><i>enés</i></p>
+                       <p><i>enée</i></p>
+                       <p><i>enées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="l:ever">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ever</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ève</i></p>
+                       <p><i>èves</i></p>
+                       <p><i>ève</i></p>
+                       <p><i>evons</i></p>
+                       <p><i>evez</i></p>
+                       <p><i>èvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>evais</i></p>
+                       <p><i>evais</i></p>
+                       <p><i>evait</i></p>
+                       <p><i>evions</i></p>
+                       <p><i>eviez</i></p>
+                       <p><i>evaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èverai</i></p>
+                       <p><i>èveras</i></p>
+                       <p><i>èvera</i></p>
+                       <p><i>èverons</i></p>
+                       <p><i>èverez</i></p>
+                       <p><i>èveront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>evai</i></p>
+                       <p><i>evas</i></p>
+                       <p><i>eva</i></p>
+                       <p><i>evâmes</i></p>
+                       <p><i>evâtes</i></p>
+                       <p><i>evèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èverais</i></p>
+                       <p><i>èverais</i></p>
+                       <p><i>èverait</i></p>
+                       <p><i>èverions</i></p>
+                       <p><i>èveriez</i></p>
+                       <p><i>èveraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ève</i></p>
+                       <p><i>èves</i></p>
+                       <p><i>ève</i></p>
+                       <p><i>evions</i></p>
+                       <p><i>eviez</i></p>
+                       <p><i>èvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>evasse</i></p>
+                       <p><i>evasses</i></p>
+                       <p><i>evât</i></p>
+                       <p><i>evassions</i></p>
+                       <p><i>evassiez</i></p>
+                       <p><i>evassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ève</i></p>
+                       <p><i>evons</i></p>
+                       <p><i>evez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>evant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>evé</i></p>
+                       <p><i>evés</i></p>
+                       <p><i>evée</i></p>
+                       <p><i>evées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="p:eser">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eser</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èse</i></p>
+                       <p><i>èses</i></p>
+                       <p><i>èse</i></p>
+                       <p><i>esons</i></p>
+                       <p><i>esez</i></p>
+                       <p><i>èsent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>esais</i></p>
+                       <p><i>esais</i></p>
+                       <p><i>esait</i></p>
+                       <p><i>esions</i></p>
+                       <p><i>esiez</i></p>
+                       <p><i>esaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>èserai</i></p>
+                       <p><i>èseras</i></p>
+                       <p><i>èsera</i></p>
+                       <p><i>èserons</i></p>
+                       <p><i>èserez</i></p>
+                       <p><i>èseront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>esai</i></p>
+                       <p><i>esas</i></p>
+                       <p><i>esa</i></p>
+                       <p><i>esâmes</i></p>
+                       <p><i>esâtes</i></p>
+                       <p><i>esèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>èserais</i></p>
+                       <p><i>èserais</i></p>
+                       <p><i>èserait</i></p>
+                       <p><i>èserions</i></p>
+                       <p><i>èseriez</i></p>
+                       <p><i>èseraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èse</i></p>
+                       <p><i>èses</i></p>
+                       <p><i>èse</i></p>
+                       <p><i>esions</i></p>
+                       <p><i>esiez</i></p>
+                       <p><i>èsent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>esasse</i></p>
+                       <p><i>esasses</i></p>
+                       <p><i>esât</i></p>
+                       <p><i>esassions</i></p>
+                       <p><i>esassiez</i></p>
+                       <p><i>esassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èse</i></p>
+                       <p><i>esons</i></p>
+                       <p><i>esez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>esant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>esé</i></p>
+                       <p><i>esés</i></p>
+                       <p><i>esée</i></p>
+                       <p><i>esées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="s:écher">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>écher</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èche</i></p>
+                       <p><i>èches</i></p>
+                       <p><i>èche</i></p>
+                       <p><i>échons</i></p>
+                       <p><i>échez</i></p>
+                       <p><i>èchent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>échais</i></p>
+                       <p><i>échais</i></p>
+                       <p><i>échait</i></p>
+                       <p><i>échions</i></p>
+                       <p><i>échiez</i></p>
+                       <p><i>échaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ècherai</i></p>
+                       <p><i>ècheras</i></p>
+                       <p><i>èchera</i></p>
+                       <p><i>ècherons</i></p>
+                       <p><i>ècherez</i></p>
+                       <p><i>ècheront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>échai</i></p>
+                       <p><i>échas</i></p>
+                       <p><i>écha</i></p>
+                       <p><i>échâmes</i></p>
+                       <p><i>échâtes</i></p>
+                       <p><i>échèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ècherais</i></p>
+                       <p><i>ècherais</i></p>
+                       <p><i>ècherait</i></p>
+                       <p><i>ècherions</i></p>
+                       <p><i>ècheriez</i></p>
+                       <p><i>ècheraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èche</i></p>
+                       <p><i>èches</i></p>
+                       <p><i>èche</i></p>
+                       <p><i>échions</i></p>
+                       <p><i>échiez</i></p>
+                       <p><i>èchent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>échasse</i></p>
+                       <p><i>échasses</i></p>
+                       <p><i>échât</i></p>
+                       <p><i>échassions</i></p>
+                       <p><i>échassiez</i></p>
+                       <p><i>échassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èche</i></p>
+                       <p><i>échons</i></p>
+                       <p><i>échez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>échant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>éché</i></p>
+                       <p><i>échés</i></p>
+                       <p><i>échée</i></p>
+                       <p><i>échées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="réf:érer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>érer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ère</i></p>
+                       <p><i>ères</i></p>
+                       <p><i>ère</i></p>
+                       <p><i>érons</i></p>
+                       <p><i>érez</i></p>
+                       <p><i>èrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>érais</i></p>
+                       <p><i>érais</i></p>
+                       <p><i>érait</i></p>
+                       <p><i>érions</i></p>
+                       <p><i>ériez</i></p>
+                       <p><i>éraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>érerai</i><i>èrerai</i></p>
+                       <p><i>éreras</i><i>èreras</i></p>
+                       <p><i>érera</i><i>èrera</i></p>
+                       <p><i>érerons</i><i>èrerons</i></p>
+                       <p><i>érerez</i><i>èrerez</i></p>
+                       <p><i>éreront</i><i>èreront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>érai</i></p>
+                       <p><i>éras</i></p>
+                       <p><i>éra</i></p>
+                       <p><i>érâmes</i></p>
+                       <p><i>érâtes</i></p>
+                       <p><i>érèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>érerais</i><i>èrerais</i></p>
+                       <p><i>érerais</i><i>èrerais</i></p>
+                       <p><i>érerait</i><i>èrerait</i></p>
+                       <p><i>érerions</i><i>èrerions</i></p>
+                       <p><i>éreriez</i><i>èreriez</i></p>
+                       <p><i>éreraient</i><i>èreraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ère</i></p>
+                       <p><i>ères</i></p>
+                       <p><i>ère</i></p>
+                       <p><i>érions</i></p>
+                       <p><i>ériez</i></p>
+                       <p><i>èrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>érasse</i></p>
+                       <p><i>érasses</i></p>
+                       <p><i>érât</i></p>
+                       <p><i>érassions</i></p>
+                       <p><i>érassiez</i></p>
+                       <p><i>érassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ère</i></p>
+                       <p><i>érons</i></p>
+                       <p><i>érez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>érant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>éré</i></p>
+                       <p><i>érés</i></p>
+                       <p><i>érée</i></p>
+                       <p><i>érées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="c:éder">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éder</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ède</i></p>
+                       <p><i>èdes</i></p>
+                       <p><i>ède</i></p>
+                       <p><i>édons</i></p>
+                       <p><i>édez</i></p>
+                       <p><i>èdent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>édais</i></p>
+                       <p><i>édais</i></p>
+                       <p><i>édait</i></p>
+                       <p><i>édions</i></p>
+                       <p><i>édiez</i></p>
+                       <p><i>édaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>éderai</i><i>èderai</i></p>
+                       <p><i>éderas</i><i>èderas</i></p>
+                       <p><i>édera</i><i>èdera</i></p>
+                       <p><i>éderons</i><i>èderons</i></p>
+                       <p><i>éderez</i><i>èderez</i></p>
+                       <p><i>éderont</i><i>èderont</i></p>
+               </future>
+               <simple-past>
+                       <p><i>édai</i></p>
+                       <p><i>édas</i></p>
+                       <p><i>éda</i></p>
+                       <p><i>édâmes</i></p>
+                       <p><i>édâtes</i></p>
+                       <p><i>édèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>éderais</i><i>èderais</i></p>
+                       <p><i>éderais</i><i>èderais</i></p>
+                       <p><i>éderait</i><i>èderait</i></p>
+                       <p><i>éderions</i><i>èderions</i></p>
+                       <p><i>éderiez</i><i>èderiez</i></p>
+                       <p><i>éderaient</i><i>èderaient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ède</i></p>
+                       <p><i>èdes</i></p>
+                       <p><i>ède</i></p>
+                       <p><i>édions</i></p>
+                       <p><i>édiez</i></p>
+                       <p><i>èdent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>édasse</i></p>
+                       <p><i>édasses</i></p>
+                       <p><i>édât</i></p>
+                       <p><i>édassions</i></p>
+                       <p><i>édassiez</i></p>
+                       <p><i>édassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ède</i></p>
+                       <p><i>édons</i></p>
+                       <p><i>édez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>édant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>édé</i></p>
+                       <p><i>édés</i></p>
+                       <p><i>édée</i></p>
+                       <p><i>édées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="rec:éper">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éper</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èpe</i></p>
+                       <p><i>èpes</i></p>
+                       <p><i>èpe</i></p>
+                       <p><i>épons</i></p>
+                       <p><i>épez</i></p>
+                       <p><i>èpent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>épais</i></p>
+                       <p><i>épais</i></p>
+                       <p><i>épait</i></p>
+                       <p><i>épions</i></p>
+                       <p><i>épiez</i></p>
+                       <p><i>épaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>éperai</i><i>èperai</i></p>
+                       <p><i>éperas</i><i>èperas</i></p>
+                       <p><i>épera</i><i>èpera</i></p>
+                       <p><i>éperons</i><i>èperons</i></p>
+                       <p><i>éperez</i><i>èperez</i></p>
+                       <p><i>éperont</i><i>èperont</i></p>
+               </future>
+               <simple-past>
+                       <p><i>épai</i></p>
+                       <p><i>épas</i></p>
+                       <p><i>épa</i></p>
+                       <p><i>épâmes</i></p>
+                       <p><i>épâtes</i></p>
+                       <p><i>épèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>éperais</i><i>èperais</i></p>
+                       <p><i>éperais</i><i>èperais</i></p>
+                       <p><i>éperait</i><i>èperait</i></p>
+                       <p><i>éperions</i><i>èperions</i></p>
+                       <p><i>éperiez</i><i>èperiez</i></p>
+                       <p><i>éperaient</i><i>èperaient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èpe</i></p>
+                       <p><i>èpes</i></p>
+                       <p><i>èpe</i></p>
+                       <p><i>éprions</i></p>
+                       <p><i>épiez</i></p>
+                       <p><i>èpent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>épasse</i></p>
+                       <p><i>épasses</i></p>
+                       <p><i>épât</i></p>
+                       <p><i>épassions</i></p>
+                       <p><i>épassiez</i></p>
+                       <p><i>épassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èpe</i></p>
+                       <p><i>épons</i></p>
+                       <p><i>épez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>épant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>épé</i></p>
+                       <p><i>épés</i></p>
+                       <p><i>épée</i></p>
+                       <p><i>épées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="rec:eper">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eper</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èpe</i></p>
+                       <p><i>èpes</i></p>
+                       <p><i>èpe</i></p>
+                       <p><i>epons</i></p>
+                       <p><i>epez</i></p>
+                       <p><i>èpent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>epais</i></p>
+                       <p><i>epais</i></p>
+                       <p><i>epait</i></p>
+                       <p><i>epions</i></p>
+                       <p><i>epiez</i></p>
+                       <p><i>epaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>eperai</i><i>èperai</i></p>
+                       <p><i>eperas</i><i>èperas</i></p>
+                       <p><i>epera</i><i>èpera</i></p>
+                       <p><i>eperons</i><i>èperons</i></p>
+                       <p><i>eperez</i><i>èperez</i></p>
+                       <p><i>eperont</i><i>èperont</i></p>
+               </future>
+               <simple-past>
+                       <p><i>epai</i></p>
+                       <p><i>epas</i></p>
+                       <p><i>epa</i></p>
+                       <p><i>epâmes</i></p>
+                       <p><i>epâtes</i></p>
+                       <p><i>epèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>eperais</i><i>èperais</i></p>
+                       <p><i>eperais</i><i>èperais</i></p>
+                       <p><i>eperait</i><i>èperait</i></p>
+                       <p><i>eperions</i><i>èperions</i></p>
+                       <p><i>eperiez</i><i>èperiez</i></p>
+                       <p><i>eperaient</i><i>èperaient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èpe</i></p>
+                       <p><i>èpes</i></p>
+                       <p><i>èpe</i></p>
+                       <p><i>eprions</i></p>
+                       <p><i>epiez</i></p>
+                       <p><i>èpent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>epasse</i></p>
+                       <p><i>epasses</i></p>
+                       <p><i>epât</i></p>
+                       <p><i>epassions</i></p>
+                       <p><i>epassiez</i></p>
+                       <p><i>epassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èpe</i></p>
+                       <p><i>epons</i></p>
+                       <p><i>epez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>epant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>epé</i></p>
+                       <p><i>epés</i></p>
+                       <p><i>epée</i></p>
+                       <p><i>epées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="l:éser">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éser</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èse</i></p>
+                       <p><i>èses</i></p>
+                       <p><i>èse</i></p>
+                       <p><i>ésons</i></p>
+                       <p><i>ésez</i></p>
+                       <p><i>èsent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ésais</i></p>
+                       <p><i>ésais</i></p>
+                       <p><i>ésait</i></p>
+                       <p><i>ésions</i></p>
+                       <p><i>ésiez</i></p>
+                       <p><i>ésaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>éserai</i><i>èserai</i></p>
+                       <p><i>éseras</i><i>èseras</i></p>
+                       <p><i>ésera</i><i>èsera</i></p>
+                       <p><i>éserons</i><i>èserons</i></p>
+                       <p><i>éserez</i><i>èserez</i></p>
+                       <p><i>éseront</i><i>èseront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ésai</i></p>
+                       <p><i>ésas</i></p>
+                       <p><i>ésa</i></p>
+                       <p><i>ésâmes</i></p>
+                       <p><i>ésâtes</i></p>
+                       <p><i>ésèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>éserais</i><i>èserais</i></p>
+                       <p><i>éserais</i><i>èserais</i></p>
+                       <p><i>éserait</i><i>èserait</i></p>
+                       <p><i>éserions</i><i>èserions</i></p>
+                       <p><i>éseriez</i><i>èseriez</i></p>
+                       <p><i>éseraient</i><i>èseraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èse</i></p>
+                       <p><i>èses</i></p>
+                       <p><i>èse</i></p>
+                       <p><i>ésrions</i></p>
+                       <p><i>ésiez</i></p>
+                       <p><i>èsent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ésasse</i></p>
+                       <p><i>ésasses</i></p>
+                       <p><i>ésât</i></p>
+                       <p><i>ésassions</i></p>
+                       <p><i>ésassiez</i></p>
+                       <p><i>ésassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èse</i></p>
+                       <p><i>ésons</i></p>
+                       <p><i>ésez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ésant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ésé</i></p>
+                       <p><i>ésés</i></p>
+                       <p><i>ésée</i></p>
+                       <p><i>ésées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cr:émer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>émer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ème</i></p>
+                       <p><i>èmes</i></p>
+                       <p><i>ème</i></p>
+                       <p><i>émons</i></p>
+                       <p><i>émez</i></p>
+                       <p><i>èment</i></p>
+               </present>
+               <imperfect>
+                       <p><i>émais</i></p>
+                       <p><i>émais</i></p>
+                       <p><i>émait</i></p>
+                       <p><i>émions</i></p>
+                       <p><i>émiez</i></p>
+                       <p><i>émaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>émerai</i><i>èmerai</i></p>
+                       <p><i>émeras</i><i>èmerai</i></p>
+                       <p><i>émera</i><i>èmerai</i></p>
+                       <p><i>émerons</i><i>èmerai</i></p>
+                       <p><i>émerez</i><i>èmerai</i></p>
+                       <p><i>émeront</i><i>èmerai</i></p>
+               </future>
+               <simple-past>
+                       <p><i>émai</i></p>
+                       <p><i>émas</i></p>
+                       <p><i>éma</i></p>
+                       <p><i>émâmes</i></p>
+                       <p><i>émâtes</i></p>
+                       <p><i>émèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>émerais</i><i>èmerais</i></p>
+                       <p><i>émerais</i><i>èmerais</i></p>
+                       <p><i>émerait</i><i>èmerais</i></p>
+                       <p><i>émerions</i><i>èmerais</i></p>
+                       <p><i>émeriez</i><i>èmerais</i></p>
+                       <p><i>émeraient</i><i>èmerais</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ème</i></p>
+                       <p><i>èmes</i></p>
+                       <p><i>ème</i></p>
+                       <p><i>émrions</i></p>
+                       <p><i>émiez</i></p>
+                       <p><i>èment</i></p>
+               </present>
+               <imperfect>
+                       <p><i>émasse</i></p>
+                       <p><i>émasses</i></p>
+                       <p><i>émât</i></p>
+                       <p><i>émassions</i></p>
+                       <p><i>émassiez</i></p>
+                       <p><i>émassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ème</i></p>
+                       <p><i>émons</i></p>
+                       <p><i>émez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>émant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>émé</i></p>
+                       <p><i>émés</i></p>
+                       <p><i>émée</i></p>
+                       <p><i>émées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="abr:éger">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>éger</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ège</i></p>
+                       <p><i>èges</i></p>
+                       <p><i>ège</i></p>
+                       <p><i>égeons</i></p>
+                       <p><i>égez</i></p>
+                       <p><i>ègent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>égeais</i></p>
+                       <p><i>égeais</i></p>
+                       <p><i>égeait</i></p>
+                       <p><i>égions</i></p>
+                       <p><i>égiez</i></p>
+                       <p><i>égeaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ègerai</i></p>
+                       <p><i>ègeras</i></p>
+                       <p><i>ègera</i></p>
+                       <p><i>ègerons</i></p>
+                       <p><i>ègerez</i></p>
+                       <p><i>ègeront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>égeai</i></p>
+                       <p><i>égeas</i></p>
+                       <p><i>égea</i></p>
+                       <p><i>égeâmes</i></p>
+                       <p><i>égeâtes</i></p>
+                       <p><i>égèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ègerais</i></p>
+                       <p><i>ègerais</i></p>
+                       <p><i>ègerait</i></p>
+                       <p><i>ègerions</i></p>
+                       <p><i>ègeriez</i></p>
+                       <p><i>ègeraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ège</i></p>
+                       <p><i>èges</i></p>
+                       <p><i>ège</i></p>
+                       <p><i>égions</i></p>
+                       <p><i>égiez</i></p>
+                       <p><i>ègent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>égeasse</i></p>
+                       <p><i>égeasses</i></p>
+                       <p><i>égeât</i></p>
+                       <p><i>égeassions</i></p>
+                       <p><i>égeassiez</i></p>
+                       <p><i>égeassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ège</i></p>
+                       <p><i>égeons</i></p>
+                       <p><i>égez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>égeant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>égé</i></p>
+                       <p><i>égés</i></p>
+                       <p><i>égée</i></p>
+                       <p><i>égées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="aim:er">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>er</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>aient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erai</i></p>
+                       <p><i>eras</i></p>
+                       <p><i>era</i></p>
+                       <p><i>erons</i></p>
+                       <p><i>erez</i></p>
+                       <p><i>eront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ai</i></p>
+                       <p><i>as</i></p>
+                       <p><i>a</i></p>
+                       <p><i>âmes</i></p>
+                       <p><i>âtes</i></p>
+                       <p><i>èrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erais</i></p>
+                       <p><i>erais</i></p>
+                       <p><i>erait</i></p>
+                       <p><i>erions</i></p>
+                       <p><i>eriez</i></p>
+                       <p><i>eraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>asse</i></p>
+                       <p><i>asses</i></p>
+                       <p><i>ât</i></p>
+                       <p><i>assions</i></p>
+                       <p><i>assiez</i></p>
+                       <p><i>assent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>e</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>é</i></p>
+                       <p><i>és</i></p>
+                       <p><i>ée</i></p>
+                       <p><i>ées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="enfi:évrer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>évrer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>èvre</i></p>
+                       <p><i>èvres</i></p>
+                       <p><i>èvre</i></p>
+                       <p><i>évrons</i></p>
+                       <p><i>évrez</i></p>
+                       <p><i>èvrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>évrais</i></p>
+                       <p><i>évrais</i></p>
+                       <p><i>évrait</i></p>
+                       <p><i>évrions</i></p>
+                       <p><i>évriez</i></p>
+                       <p><i>évraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>évrerai</i></p>
+                       <p><i>évreras</i></p>
+                       <p><i>évrera</i></p>
+                       <p><i>évrerons</i></p>
+                       <p><i>évrerez</i></p>
+                       <p><i>évreront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>évrai</i></p>
+                       <p><i>évras</i></p>
+                       <p><i>évra</i></p>
+                       <p><i>évrâmes</i></p>
+                       <p><i>évrâtes</i></p>
+                       <p><i>évrèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>évrerais</i></p>
+                       <p><i>évrerais</i></p>
+                       <p><i>évrerait</i></p>
+                       <p><i>évrerions</i></p>
+                       <p><i>évreriez</i></p>
+                       <p><i>évreraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>èvre</i></p>
+                       <p><i>èvres</i></p>
+                       <p><i>èvre</i></p>
+                       <p><i>évrions</i></p>
+                       <p><i>évriez</i></p>
+                       <p><i>èvrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>évrasse</i></p>
+                       <p><i>évrasses</i></p>
+                       <p><i>évrât</i></p>
+                       <p><i>évrassions</i></p>
+                       <p><i>évrassiez</i></p>
+                       <p><i>évrassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>èvre</i></p>
+                       <p><i>évrons</i></p>
+                       <p><i>évrez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>évrant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>évré</i></p>
+                       <p><i>évrés</i></p>
+                       <p><i>évrée</i></p>
+                       <p><i>évrées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ex:écrer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>écrer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ècre</i></p>
+                       <p><i>ècres</i></p>
+                       <p><i>ècre</i></p>
+                       <p><i>écrons</i></p>
+                       <p><i>écrez</i></p>
+                       <p><i>ècrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>écrais</i></p>
+                       <p><i>écrais</i></p>
+                       <p><i>écrait</i></p>
+                       <p><i>écrions</i></p>
+                       <p><i>écriez</i></p>
+                       <p><i>écraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>écrerai</i></p>
+                       <p><i>écreras</i></p>
+                       <p><i>écrera</i></p>
+                       <p><i>écrerons</i></p>
+                       <p><i>écrerez</i></p>
+                       <p><i>écreront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>écrai</i></p>
+                       <p><i>écras</i></p>
+                       <p><i>écra</i></p>
+                       <p><i>écrâmes</i></p>
+                       <p><i>écrâtes</i></p>
+                       <p><i>écrèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>écrerais</i></p>
+                       <p><i>écrerais</i></p>
+                       <p><i>écrerait</i></p>
+                       <p><i>écrerions</i></p>
+                       <p><i>écreriez</i></p>
+                       <p><i>écreraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ècre</i></p>
+                       <p><i>ècres</i></p>
+                       <p><i>ècre</i></p>
+                       <p><i>écrions</i></p>
+                       <p><i>écriez</i></p>
+                       <p><i>ècrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>écrasse</i></p>
+                       <p><i>écrasses</i></p>
+                       <p><i>écrât</i></p>
+                       <p><i>écrassions</i></p>
+                       <p><i>écrassiez</i></p>
+                       <p><i>écrassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ècre</i></p>
+                       <p><i>écrons</i></p>
+                       <p><i>écrez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>écrant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>écré</i></p>
+                       <p><i>écrés</i></p>
+                       <p><i>écrée</i></p>
+                       <p><i>écrées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="acqu:érir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>érir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>iers</i></p>
+                       <p><i>iers</i></p>
+                       <p><i>iert</i></p>
+                       <p><i>érons</i></p>
+                       <p><i>érez</i></p>
+                       <p><i>ièrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>érais</i></p>
+                       <p><i>érais</i></p>
+                       <p><i>érait</i></p>
+                       <p><i>érions</i></p>
+                       <p><i>ériez</i></p>
+                       <p><i>éraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>errai</i></p>
+                       <p><i>erras</i></p>
+                       <p><i>erra</i></p>
+                       <p><i>errons</i></p>
+                       <p><i>errez</i></p>
+                       <p><i>erront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>errais</i></p>
+                       <p><i>errais</i></p>
+                       <p><i>errait</i></p>
+                       <p><i>errions</i></p>
+                       <p><i>erriez</i></p>
+                       <p><i>erraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ière</i></p>
+                       <p><i>ières</i></p>
+                       <p><i>ière</i></p>
+                       <p><i>érions</i></p>
+                       <p><i>ériez</i></p>
+                       <p><i>ièrent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>iers</i></p>
+                       <p><i>érons</i></p>
+                       <p><i>érez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>érant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ha:ïr">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ïr</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>ïssons</i></p>
+                       <p><i>ïssez</i></p>
+                       <p><i>ïssent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ïssais</i></p>
+                       <p><i>ïssais</i></p>
+                       <p><i>ïssait</i></p>
+                       <p><i>ïssions</i></p>
+                       <p><i>ïssiez</i></p>
+                       <p><i>ïssaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ïrai</i></p>
+                       <p><i>ïras</i></p>
+                       <p><i>ïra</i></p>
+                       <p><i>ïrons</i></p>
+                       <p><i>ïrez</i></p>
+                       <p><i>ïront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ïs</i></p>
+                       <p><i>ïs</i></p>
+                       <p><i>ït</i></p>
+                       <p><i>ïmes</i></p>
+                       <p><i>ïtes</i></p>
+                       <p><i>ïrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ïrais</i></p>
+                       <p><i>ïrais</i></p>
+                       <p><i>ïrait</i></p>
+                       <p><i>ïrions</i></p>
+                       <p><i>ïriez</i></p>
+                       <p><i>ïraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ïsse</i></p>
+                       <p><i>ïsses</i></p>
+                       <p><i>ïsse</i></p>
+                       <p><i>ïssions</i></p>
+                       <p><i>ïssiez</i></p>
+                       <p><i>ïssent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ïsse</i></p>
+                       <p><i>ïsses</i></p>
+                       <p><i>ït</i></p>
+                       <p><i>ïssions</i></p>
+                       <p><i>ïssiez</i></p>
+                       <p><i>ïssent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>ïssons</i></p>
+                       <p><i>ïssez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ïssant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ï</i></p>
+                       <p><i>ïs</i></p>
+                       <p><i>ïe</i></p>
+                       <p><i>ïes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fl:eurir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eurir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>euris</i></p>
+                       <p><i>euris</i></p>
+                       <p><i>eurit</i></p>
+                       <p><i>eurissons</i></p>
+                       <p><i>eurissez</i></p>
+                       <p><i>eurissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>eurissais</i><i>orissais</i></p>
+                       <p><i>eurissais</i><i>orissais</i></p>
+                       <p><i>eurissait</i><i>orissait</i></p>
+                       <p><i>eurissions</i><i>orissions</i></p>
+                       <p><i>eurissiez</i><i>orissiez</i></p>
+                       <p><i>eurissaient</i><i>orissaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>eurirai</i></p>
+                       <p><i>euriras</i></p>
+                       <p><i>eurira</i></p>
+                       <p><i>eurirons</i></p>
+                       <p><i>eurirez</i></p>
+                       <p><i>euriront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>euris</i></p>
+                       <p><i>euris</i></p>
+                       <p><i>eurit</i></p>
+                       <p><i>eurîmes</i></p>
+                       <p><i>eurîtes</i></p>
+                       <p><i>eurirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>eurirais</i></p>
+                       <p><i>eurirais</i></p>
+                       <p><i>eurirait</i></p>
+                       <p><i>euririons</i></p>
+                       <p><i>euririez</i></p>
+                       <p><i>euriraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>eurisse</i></p>
+                       <p><i>eurisses</i></p>
+                       <p><i>eurisse</i></p>
+                       <p><i>eurissions</i></p>
+                       <p><i>eurissiez</i></p>
+                       <p><i>eurissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>eurisse</i></p>
+                       <p><i>eurisses</i></p>
+                       <p><i>eurît</i></p>
+                       <p><i>eurissions</i></p>
+                       <p><i>eurissiez</i></p>
+                       <p><i>eurissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>euris</i></p>
+                       <p><i>eurissons</i></p>
+                       <p><i>eurissez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>eurissant</i><i>orissant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>euri</i></p>
+                       <p><i>euris</i></p>
+                       <p><i>eurie</i></p>
+                       <p><i>euries</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ouv:rir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>rir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>re</i></p>
+                       <p><i>res</i></p>
+                       <p><i>re</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+                       <p><i>rent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>rais</i></p>
+                       <p><i>rais</i></p>
+                       <p><i>rait</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>raient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>rirai</i></p>
+                       <p><i>riras</i></p>
+                       <p><i>rira</i></p>
+                       <p><i>rirons</i></p>
+                       <p><i>rirez</i></p>
+                       <p><i>riront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ris</i></p>
+                       <p><i>ris</i></p>
+                       <p><i>rit</i></p>
+                       <p><i>rîmes</i></p>
+                       <p><i>rîtes</i></p>
+                       <p><i>rirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>rirais</i></p>
+                       <p><i>rirais</i></p>
+                       <p><i>rirait</i></p>
+                       <p><i>ririons</i></p>
+                       <p><i>ririez</i></p>
+                       <p><i>riraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>re</i></p>
+                       <p><i>res</i></p>
+                       <p><i>re</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>rent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>risse</i></p>
+                       <p><i>risses</i></p>
+                       <p><i>rît</i></p>
+                       <p><i>rissions</i></p>
+                       <p><i>rissiez</i></p>
+                       <p><i>rissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>re</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>rant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ert</i></p>
+                       <p><i>erts</i></p>
+                       <p><i>erte</i></p>
+                       <p><i>ertes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="dor:mir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>mir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>mons</i></p>
+                       <p><i>mez</i></p>
+                       <p><i>ment</i></p>
+               </present>
+               <imperfect>
+                       <p><i>mais</i></p>
+                       <p><i>mais</i></p>
+                       <p><i>mait</i></p>
+                       <p><i>mions</i></p>
+                       <p><i>miez</i></p>
+                       <p><i>maient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>mirai</i></p>
+                       <p><i>miras</i></p>
+                       <p><i>mira</i></p>
+                       <p><i>mirons</i></p>
+                       <p><i>mirez</i></p>
+                       <p><i>miront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>mis</i></p>
+                       <p><i>mis</i></p>
+                       <p><i>mit</i></p>
+                       <p><i>mîmes</i></p>
+                       <p><i>mîtes</i></p>
+                       <p><i>mirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>mirais</i></p>
+                       <p><i>mirais</i></p>
+                       <p><i>mirait</i></p>
+                       <p><i>mirions</i></p>
+                       <p><i>miriez</i></p>
+                       <p><i>miraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>me</i></p>
+                       <p><i>mes</i></p>
+                       <p><i>me</i></p>
+                       <p><i>mions</i></p>
+                       <p><i>miez</i></p>
+                       <p><i>ment</i></p>
+               </present>
+               <imperfect>
+                       <p><i>misse</i></p>
+                       <p><i>misses</i></p>
+                       <p><i>mît</i></p>
+                       <p><i>missions</i></p>
+                       <p><i>missiez</i></p>
+                       <p><i>missent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>mons</i></p>
+                       <p><i>mez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>mant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>mi</i></p>
+                       <p><i>mis</i></p>
+                       <p><i>mie</i></p>
+                       <p><i>mies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="men:tir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>tir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>tons</i></p>
+                       <p><i>tez</i></p>
+                       <p><i>tent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>tais</i></p>
+                       <p><i>tais</i></p>
+                       <p><i>tait</i></p>
+                       <p><i>tions</i></p>
+                       <p><i>tiez</i></p>
+                       <p><i>taient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>tirai</i></p>
+                       <p><i>tiras</i></p>
+                       <p><i>tira</i></p>
+                       <p><i>tirons</i></p>
+                       <p><i>tirez</i></p>
+                       <p><i>tiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>tis</i></p>
+                       <p><i>tis</i></p>
+                       <p><i>tit</i></p>
+                       <p><i>tîmes</i></p>
+                       <p><i>tîtes</i></p>
+                       <p><i>tirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>tirais</i></p>
+                       <p><i>tirais</i></p>
+                       <p><i>tirait</i></p>
+                       <p><i>tirions</i></p>
+                       <p><i>tiriez</i></p>
+                       <p><i>tiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>te</i></p>
+                       <p><i>tes</i></p>
+                       <p><i>te</i></p>
+                       <p><i>tions</i></p>
+                       <p><i>tiez</i></p>
+                       <p><i>tent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>tisse</i></p>
+                       <p><i>tisses</i></p>
+                       <p><i>tît</i></p>
+                       <p><i>tissions</i></p>
+                       <p><i>tissiez</i></p>
+                       <p><i>tissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>tons</i></p>
+                       <p><i>tez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>tant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ti</i></p>
+                       <p><i>tis</i></p>
+                       <p><i>tie</i></p>
+                       <p><i>ties</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ser:vir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>vir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>vons</i></p>
+                       <p><i>vez</i></p>
+                       <p><i>vent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>vais</i></p>
+                       <p><i>vais</i></p>
+                       <p><i>vait</i></p>
+                       <p><i>vions</i></p>
+                       <p><i>viez</i></p>
+                       <p><i>vaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>virai</i></p>
+                       <p><i>viras</i></p>
+                       <p><i>vira</i></p>
+                       <p><i>virons</i></p>
+                       <p><i>virez</i></p>
+                       <p><i>viront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>vis</i></p>
+                       <p><i>vis</i></p>
+                       <p><i>vit</i></p>
+                       <p><i>vîmes</i></p>
+                       <p><i>vîtes</i></p>
+                       <p><i>virent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>virais</i></p>
+                       <p><i>virais</i></p>
+                       <p><i>virait</i></p>
+                       <p><i>virions</i></p>
+                       <p><i>viriez</i></p>
+                       <p><i>viraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ve</i></p>
+                       <p><i>ves</i></p>
+                       <p><i>ve</i></p>
+                       <p><i>vions</i></p>
+                       <p><i>viez</i></p>
+                       <p><i>vent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>visse</i></p>
+                       <p><i>visses</i></p>
+                       <p><i>vît</i></p>
+                       <p><i>vissions</i></p>
+                       <p><i>vissiez</i></p>
+                       <p><i>vissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>vons</i></p>
+                       <p><i>vez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>vant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>vi</i></p>
+                       <p><i>vis</i></p>
+                       <p><i>vie</i></p>
+                       <p><i>vies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="bou:illir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>illir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>illons</i></p>
+                       <p><i>illez</i></p>
+                       <p><i>illent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>illais</i></p>
+                       <p><i>illais</i></p>
+                       <p><i>illait</i></p>
+                       <p><i>illions</i></p>
+                       <p><i>illiez</i></p>
+                       <p><i>illaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>illirai</i></p>
+                       <p><i>illiras</i></p>
+                       <p><i>illira</i></p>
+                       <p><i>illirons</i></p>
+                       <p><i>illirez</i></p>
+                       <p><i>illiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>illis</i></p>
+                       <p><i>illis</i></p>
+                       <p><i>illit</i></p>
+                       <p><i>illîmes</i></p>
+                       <p><i>illîtes</i></p>
+                       <p><i>illirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>illirais</i></p>
+                       <p><i>illirais</i></p>
+                       <p><i>illirait</i></p>
+                       <p><i>illirions</i></p>
+                       <p><i>illiriez</i></p>
+                       <p><i>illiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ille</i></p>
+                       <p><i>illes</i></p>
+                       <p><i>ille</i></p>
+                       <p><i>illions</i></p>
+                       <p><i>illiez</i></p>
+                       <p><i>illent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>illisse</i></p>
+                       <p><i>illisses</i></p>
+                       <p><i>illît</i></p>
+                       <p><i>illissions</i></p>
+                       <p><i>illissiez</i></p>
+                       <p><i>illissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>illons</i></p>
+                       <p><i>illez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>illant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>illi</i></p>
+                       <p><i>illis</i></p>
+                       <p><i>illie</i></p>
+                       <p><i>illies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="assaill:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>aient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>e</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="saill:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i><i>e</i></p>
+                       <p><i>issons</i></p>
+                       <p><i>issez</i></p>
+                       <p><i>issent</i><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>issais</i></p>
+                       <p><i>issais</i></p>
+                       <p><i>issait</i><i>ait</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issaient</i><i>aient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i><i>era</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i><i>eront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i><i>erait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i><i>eraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>isse</i><i>e</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>issons</i></p>
+                       <p><i>issez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>issant</i><i>ant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cueill:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>aient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erai</i></p>
+                       <p><i>eras</i></p>
+                       <p><i>era</i></p>
+                       <p><i>erons</i></p>
+                       <p><i>erez</i></p>
+                       <p><i>eront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erais</i></p>
+                       <p><i>erais</i></p>
+                       <p><i>erait</i></p>
+                       <p><i>erions</i></p>
+                       <p><i>eriez</i></p>
+                       <p><i>eraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>e</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="t:enir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>enir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>iens</i></p>
+                       <p><i>iens</i></p>
+                       <p><i>ient</i></p>
+                       <p><i>enons</i></p>
+                       <p><i>enez</i></p>
+                       <p><i>iennent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>enais</i></p>
+                       <p><i>enais</i></p>
+                       <p><i>enait</i></p>
+                       <p><i>enions</i></p>
+                       <p><i>eniez</i></p>
+                       <p><i>enaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>iendrai</i></p>
+                       <p><i>iendras</i></p>
+                       <p><i>iendra</i></p>
+                       <p><i>iendrons</i></p>
+                       <p><i>iendrez</i></p>
+                       <p><i>iendront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ins</i></p>
+                       <p><i>ins</i></p>
+                       <p><i>int</i></p>
+                       <p><i>înmes</i></p>
+                       <p><i>întes</i></p>
+                       <p><i>inrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>iendrais</i></p>
+                       <p><i>iendrais</i></p>
+                       <p><i>iendrait</i></p>
+                       <p><i>iendrions</i></p>
+                       <p><i>iendriez</i></p>
+                       <p><i>iendraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ienne</i></p>
+                       <p><i>iennes</i></p>
+                       <p><i>ienne</i></p>
+                       <p><i>enions</i></p>
+                       <p><i>eniez</i></p>
+                       <p><i>iennent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>insse</i></p>
+                       <p><i>insses</i></p>
+                       <p><i>înt</i></p>
+                       <p><i>inssions</i></p>
+                       <p><i>inssiez</i></p>
+                       <p><i>inssent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>iens</i></p>
+                       <p><i>enons</i></p>
+                       <p><i>enez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>enant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>enu</i></p>
+                       <p><i>enus</i></p>
+                       <p><i>enue</i></p>
+                       <p><i>enues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="adv:enir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>enir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ient</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>enait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p><i>iendra</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p><i>int</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>iendrait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ienne</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>înt</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>enant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>enu</i></p>
+                       <p><i>enus</i></p>
+                       <p><i>enue</i></p>
+                       <p><i>enues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fu:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yais</i></p>
+                       <p><i>yais</i></p>
+                       <p><i>yait</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>yant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="m:ourir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ourir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>eurs</i></p>
+                       <p><i>eurs</i></p>
+                       <p><i>eurt</i></p>
+                       <p><i>ourons</i></p>
+                       <p><i>ourez</i></p>
+                       <p><i>eurent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ourais</i></p>
+                       <p><i>ourais</i></p>
+                       <p><i>ourait</i></p>
+                       <p><i>ourions</i></p>
+                       <p><i>ouriez</i></p>
+                       <p><i>ouraient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ourrai</i></p>
+                       <p><i>ourras</i></p>
+                       <p><i>ourra</i></p>
+                       <p><i>ourrons</i></p>
+                       <p><i>ourrez</i></p>
+                       <p><i>ourront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ourus</i></p>
+                       <p><i>ourus</i></p>
+                       <p><i>ourut</i></p>
+                       <p><i>ourûmes</i></p>
+                       <p><i>ourûtes</i></p>
+                       <p><i>oururent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ourrais</i></p>
+                       <p><i>ourrais</i></p>
+                       <p><i>ourrait</i></p>
+                       <p><i>ourrions</i></p>
+                       <p><i>ourriez</i></p>
+                       <p><i>ourraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>eure</i></p>
+                       <p><i>eures</i></p>
+                       <p><i>eure</i></p>
+                       <p><i>ourions</i></p>
+                       <p><i>ouriez</i></p>
+                       <p><i>eurent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ourusse</i></p>
+                       <p><i>ourusses</i></p>
+                       <p><i>ourût</i></p>
+                       <p><i>ourussions</i></p>
+                       <p><i>ourussiez</i></p>
+                       <p><i>ourussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>eurs</i></p>
+                       <p><i>ourons</i></p>
+                       <p><i>ourez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ourant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ort</i></p>
+                       <p><i>orts</i></p>
+                       <p><i>orte</i></p>
+                       <p><i>ortes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="vêt:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i></i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>aient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cour:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>aient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>rai</i></p>
+                       <p><i>ras</i></p>
+                       <p><i>ra</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+                       <p><i>ront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>rais</i></p>
+                       <p><i>rais</i></p>
+                       <p><i>rait</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>raient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fin:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>issons</i></p>
+                       <p><i>issez</i></p>
+                       <p><i>issent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>issais</i></p>
+                       <p><i>issais</i></p>
+                       <p><i>issait</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>isse</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>issons</i></p>
+                       <p><i>issez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>issant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="chauv:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>aient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>e</i></p>
+                       <p><i>es</i></p>
+                       <p><i>e</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>ent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>ons</i></p>
+                       <p><i>ez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="maud:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>issons</i></p>
+                       <p><i>issez</i></p>
+                       <p><i>issent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>issais</i></p>
+                       <p><i>issais</i></p>
+                       <p><i>issait</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>isse</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>issons</i></p>
+                       <p><i>issez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>issant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>it</i></p>
+                       <p><i>its</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ites</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fa:illir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>illir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ux</i></p>
+                       <p><i>ux</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>illons</i></p>
+                       <p><i>illez</i></p>
+                       <p><i>illent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>illais</i></p>
+                       <p><i>illais</i></p>
+                       <p><i>illait</i></p>
+                       <p><i>illions</i></p>
+                       <p><i>illiez</i></p>
+                       <p><i>illaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>illirai</i></p>
+                       <p><i>illiras</i></p>
+                       <p><i>illira</i></p>
+                       <p><i>illirons</i></p>
+                       <p><i>illirez</i></p>
+                       <p><i>illiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>illis</i></p>
+                       <p><i>illis</i></p>
+                       <p><i>illit</i></p>
+                       <p><i>illîmes</i></p>
+                       <p><i>illîtes</i></p>
+                       <p><i>illirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>illirais</i></p>
+                       <p><i>illirais</i></p>
+                       <p><i>illirait</i></p>
+                       <p><i>illirions</i></p>
+                       <p><i>illiriez</i></p>
+                       <p><i>illiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>illisse</i></p>
+                       <p><i>illisses</i></p>
+                       <p><i>illisse</i></p>
+                       <p><i>illissions</i></p>
+                       <p><i>illissiez</i></p>
+                       <p><i>illissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>illisse</i></p>
+                       <p><i>illisses</i></p>
+                       <p><i>illît</i></p>
+                       <p><i>illissions</i></p>
+                       <p><i>illissiez</i></p>
+                       <p><i>illissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>illant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>illi</i></p>
+                       <p><i>illis</i></p>
+                       <p><i>illie</i></p>
+                       <p><i>illies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="g:ésir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ésir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="dé:cevoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>cevoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>çois</i></p>
+                       <p><i>çois</i></p>
+                       <p><i>çoit</i></p>
+                       <p><i>cevons</i></p>
+                       <p><i>cevez</i></p>
+                       <p><i>çoivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>cevais</i></p>
+                       <p><i>cevais</i></p>
+                       <p><i>cevait</i></p>
+                       <p><i>cevions</i></p>
+                       <p><i>ceviez</i></p>
+                       <p><i>cevaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>cevrai</i></p>
+                       <p><i>cevras</i></p>
+                       <p><i>cevra</i></p>
+                       <p><i>cevrons</i></p>
+                       <p><i>cevrez</i></p>
+                       <p><i>cevront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>çus</i></p>
+                       <p><i>çus</i></p>
+                       <p><i>çut</i></p>
+                       <p><i>çûmes</i></p>
+                       <p><i>çûtes</i></p>
+                       <p><i>çurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>cevrais</i></p>
+                       <p><i>cevrais</i></p>
+                       <p><i>cevrait</i></p>
+                       <p><i>cevrions</i></p>
+                       <p><i>cevriez</i></p>
+                       <p><i>cevraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>çoive</i></p>
+                       <p><i>çoives</i></p>
+                       <p><i>çoive</i></p>
+                       <p><i>cevions</i></p>
+                       <p><i>ceviez</i></p>
+                       <p><i>çoivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>çusse</i></p>
+                       <p><i>çusses</i></p>
+                       <p><i>çût</i></p>
+                       <p><i>çussions</i></p>
+                       <p><i>çussiez</i></p>
+                       <p><i>çussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>çois</i></p>
+                       <p><i>cevons</i></p>
+                       <p><i>cevez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>cevant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>çu</i></p>
+                       <p><i>çus</i></p>
+                       <p><i>çue</i></p>
+                       <p><i>çues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="d:evoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>evoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>evons</i></p>
+                       <p><i>evez</i></p>
+                       <p><i>oivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>evais</i></p>
+                       <p><i>evais</i></p>
+                       <p><i>evait</i></p>
+                       <p><i>evions</i></p>
+                       <p><i>eviez</i></p>
+                       <p><i>evaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>evrai</i></p>
+                       <p><i>evras</i></p>
+                       <p><i>evra</i></p>
+                       <p><i>evrons</i></p>
+                       <p><i>evrez</i></p>
+                       <p><i>evront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>evrais</i></p>
+                       <p><i>evrais</i></p>
+                       <p><i>evrait</i></p>
+                       <p><i>evrions</i></p>
+                       <p><i>evriez</i></p>
+                       <p><i>evraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oive</i></p>
+                       <p><i>oives</i></p>
+                       <p><i>oive</i></p>
+                       <p><i>evions</i></p>
+                       <p><i>eviez</i></p>
+                       <p><i>oivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>evons</i></p>
+                       <p><i>evez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>evant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>û</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="m:ouvoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ouvoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>eus</i></p>
+                       <p><i>eus</i></p>
+                       <p><i>eut</i></p>
+                       <p><i>ouvons</i></p>
+                       <p><i>ouvez</i></p>
+                       <p><i>euvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ouvais</i></p>
+                       <p><i>ouvais</i></p>
+                       <p><i>ouvait</i></p>
+                       <p><i>ouvions</i></p>
+                       <p><i>ouviez</i></p>
+                       <p><i>ouvaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ouvrai</i></p>
+                       <p><i>ouvras</i></p>
+                       <p><i>ouvra</i></p>
+                       <p><i>ouvrons</i></p>
+                       <p><i>ouvrez</i></p>
+                       <p><i>ouvront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ouvrais</i></p>
+                       <p><i>ouvrais</i></p>
+                       <p><i>ouvrait</i></p>
+                       <p><i>ouvrions</i></p>
+                       <p><i>ouvriez</i></p>
+                       <p><i>ouvraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>euve</i></p>
+                       <p><i>euves</i></p>
+                       <p><i>euve</i></p>
+                       <p><i>ouvions</i></p>
+                       <p><i>ouviez</i></p>
+                       <p><i>euvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>eus</i></p>
+                       <p><i>ouvons</i></p>
+                       <p><i>ouvez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ouvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i><i>û</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="prom:ouvoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ouvoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>eus</i></p>
+                       <p><i>eus</i></p>
+                       <p><i>eut</i></p>
+                       <p><i>ouvons</i></p>
+                       <p><i>ouvez</i></p>
+                       <p><i>euvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ouvais</i></p>
+                       <p><i>ouvais</i></p>
+                       <p><i>ouvait</i></p>
+                       <p><i>ouvions</i></p>
+                       <p><i>ouviez</i></p>
+                       <p><i>ouvaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ouvrai</i></p>
+                       <p><i>ouvras</i></p>
+                       <p><i>ouvra</i></p>
+                       <p><i>ouvrons</i></p>
+                       <p><i>ouvrez</i></p>
+                       <p><i>ouvront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ouvrais</i></p>
+                       <p><i>ouvrais</i></p>
+                       <p><i>ouvrait</i></p>
+                       <p><i>ouvrions</i></p>
+                       <p><i>ouvriez</i></p>
+                       <p><i>ouvraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>euve</i></p>
+                       <p><i>euves</i></p>
+                       <p><i>euve</i></p>
+                       <p><i>ouvions</i></p>
+                       <p><i>ouviez</i></p>
+                       <p><i>euvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>eus</i></p>
+                       <p><i>ouvons</i></p>
+                       <p><i>ouvez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ouvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="s:avoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>avoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>avons</i></p>
+                       <p><i>avez</i></p>
+                       <p><i>avent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avais</i></p>
+                       <p><i>avais</i></p>
+                       <p><i>avait</i></p>
+                       <p><i>avions</i></p>
+                       <p><i>aviez</i></p>
+                       <p><i>avaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aurai</i></p>
+                       <p><i>auras</i></p>
+                       <p><i>aura</i></p>
+                       <p><i>aurons</i></p>
+                       <p><i>aurez</i></p>
+                       <p><i>auront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aurais</i></p>
+                       <p><i>aurais</i></p>
+                       <p><i>aurait</i></p>
+                       <p><i>aurions</i></p>
+                       <p><i>auriez</i></p>
+                       <p><i>auraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ache</i></p>
+                       <p><i>aches</i></p>
+                       <p><i>ache</i></p>
+                       <p><i>achions</i></p>
+                       <p><i>achiez</i></p>
+                       <p><i>achent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ache</i></p>
+                       <p><i>achons</i></p>
+                       <p><i>achez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>achant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="v:ouloir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ouloir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>eux</i></p>
+                       <p><i>eux</i></p>
+                       <p><i>eut</i></p>
+                       <p><i>oulons</i></p>
+                       <p><i>oulez</i></p>
+                       <p><i>eulent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oulais</i></p>
+                       <p><i>oulais</i></p>
+                       <p><i>oulait</i></p>
+                       <p><i>oulions</i></p>
+                       <p><i>ouliez</i></p>
+                       <p><i>oulaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oudrai</i></p>
+                       <p><i>oudras</i></p>
+                       <p><i>oudra</i></p>
+                       <p><i>oudrons</i></p>
+                       <p><i>oudrez</i></p>
+                       <p><i>oudront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>oulus</i></p>
+                       <p><i>oulus</i></p>
+                       <p><i>oulut</i></p>
+                       <p><i>oulûmes</i></p>
+                       <p><i>oulûtes</i></p>
+                       <p><i>oulurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oudrais</i></p>
+                       <p><i>oudrais</i></p>
+                       <p><i>oudrait</i></p>
+                       <p><i>oudrions</i></p>
+                       <p><i>oudriez</i></p>
+                       <p><i>oudraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>euille</i></p>
+                       <p><i>euilles</i></p>
+                       <p><i>euille</i></p>
+                       <p><i>oulions</i></p>
+                       <p><i>ouliez</i></p>
+                       <p><i>euillent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oulusse</i></p>
+                       <p><i>oulusses</i></p>
+                       <p><i>oulût</i></p>
+                       <p><i>oulussions</i></p>
+                       <p><i>oulussiez</i></p>
+                       <p><i>oulussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>euille</i></p>
+                       <p><i>euillons</i></p>
+                       <p><i>euillez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oulant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>oulu</i></p>
+                       <p><i>oulus</i></p>
+                       <p><i>oulue</i></p>
+                       <p><i>oulues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="va:loir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>loir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ux</i></p>
+                       <p><i>ux</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>lons</i></p>
+                       <p><i>lez</i></p>
+                       <p><i>lent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lais</i></p>
+                       <p><i>lais</i></p>
+                       <p><i>lait</i></p>
+                       <p><i>lions</i></p>
+                       <p><i>liez</i></p>
+                       <p><i>laient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>udrai</i></p>
+                       <p><i>udras</i></p>
+                       <p><i>udra</i></p>
+                       <p><i>udrons</i></p>
+                       <p><i>udrez</i></p>
+                       <p><i>udront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>lus</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lut</i></p>
+                       <p><i>lûmes</i></p>
+                       <p><i>lûtes</i></p>
+                       <p><i>lurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>udrais</i></p>
+                       <p><i>udrais</i></p>
+                       <p><i>udrait</i></p>
+                       <p><i>udrions</i></p>
+                       <p><i>udriez</i></p>
+                       <p><i>udraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ille</i></p>
+                       <p><i>illes</i></p>
+                       <p><i>ille</i></p>
+                       <p><i>lions</i></p>
+                       <p><i>liez</i></p>
+                       <p><i>illent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lusse</i></p>
+                       <p><i>lusses</i></p>
+                       <p><i>lût</i></p>
+                       <p><i>lussions</i></p>
+                       <p><i>lussiez</i></p>
+                       <p><i>lussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ux</i></p>
+                       <p><i>lons</i></p>
+                       <p><i>lez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>lant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>lu</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lue</i></p>
+                       <p><i>lues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="préva:loir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>loir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ux</i></p>
+                       <p><i>ux</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>lons</i></p>
+                       <p><i>lez</i></p>
+                       <p><i>lent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lais</i></p>
+                       <p><i>lais</i></p>
+                       <p><i>lait</i></p>
+                       <p><i>lions</i></p>
+                       <p><i>liez</i></p>
+                       <p><i>laient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>udrai</i></p>
+                       <p><i>udras</i></p>
+                       <p><i>udra</i></p>
+                       <p><i>udrons</i></p>
+                       <p><i>udrez</i></p>
+                       <p><i>udront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>lus</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lut</i></p>
+                       <p><i>lûmes</i></p>
+                       <p><i>lûtes</i></p>
+                       <p><i>lurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>udrais</i></p>
+                       <p><i>udrais</i></p>
+                       <p><i>udrait</i></p>
+                       <p><i>udrions</i></p>
+                       <p><i>udriez</i></p>
+                       <p><i>udraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>le</i></p>
+                       <p><i>les</i></p>
+                       <p><i>le</i></p>
+                       <p><i>lions</i></p>
+                       <p><i>liez</i></p>
+                       <p><i>lent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lusse</i></p>
+                       <p><i>lusses</i></p>
+                       <p><i>lût</i></p>
+                       <p><i>lussions</i></p>
+                       <p><i>lussiez</i></p>
+                       <p><i>lussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ux</i></p>
+                       <p><i>lons</i></p>
+                       <p><i>lez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>lant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>lu</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lue</i></p>
+                       <p><i>lues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="p:ouvoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ouvoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>eux</i><i>uis</i></p>
+                       <p><i>eux</i></p>
+                       <p><i>eut</i></p>
+                       <p><i>ouvons</i></p>
+                       <p><i>ouvez</i></p>
+                       <p><i>euvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ouvais</i></p>
+                       <p><i>ouvais</i></p>
+                       <p><i>ouvait</i></p>
+                       <p><i>ouvions</i></p>
+                       <p><i>ouviez</i></p>
+                       <p><i>ouvaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ourrai</i></p>
+                       <p><i>ourras</i></p>
+                       <p><i>ourra</i></p>
+                       <p><i>ourrons</i></p>
+                       <p><i>ourrez</i></p>
+                       <p><i>ourront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ourrais</i></p>
+                       <p><i>ourrais</i></p>
+                       <p><i>ourrait</i></p>
+                       <p><i>ourrions</i></p>
+                       <p><i>ourriez</i></p>
+                       <p><i>ourraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>uisse</i></p>
+                       <p><i>uisses</i></p>
+                       <p><i>uisse</i></p>
+                       <p><i>uissions</i></p>
+                       <p><i>uissiez</i></p>
+                       <p><i>uissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ouvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="v:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>errai</i></p>
+                       <p><i>erras</i></p>
+                       <p><i>erra</i></p>
+                       <p><i>errons</i></p>
+                       <p><i>errez</i></p>
+                       <p><i>erront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>errais</i></p>
+                       <p><i>errais</i></p>
+                       <p><i>errait</i></p>
+                       <p><i>errions</i></p>
+                       <p><i>erriez</i></p>
+                       <p><i>erraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="prév:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oirai</i></p>
+                       <p><i>oiras</i></p>
+                       <p><i>oira</i></p>
+                       <p><i>oirons</i></p>
+                       <p><i>oirez</i></p>
+                       <p><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oirais</i></p>
+                       <p><i>oirais</i></p>
+                       <p><i>oirait</i></p>
+                       <p><i>oirions</i></p>
+                       <p><i>oiriez</i></p>
+                       <p><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ass:eoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eoir</i><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ieds</i><i>ois</i></p>
+                       <p><i>ieds</i><i>ois</i></p>
+                       <p><i>ied</i><i>oit</i></p>
+                       <p><i>eyons</i><i>oyons</i></p>
+                       <p><i>eyez</i><i>oyez</i></p>
+                       <p><i>eyent</i><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>eyais</i><i>oyais</i></p>
+                       <p><i>eyais</i><i>oyais</i></p>
+                       <p><i>eyait</i><i>oyait</i></p>
+                       <p><i>eyions</i><i>oyions</i></p>
+                       <p><i>eyiez</i><i>oyiez</i></p>
+                       <p><i>eyaient</i><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>iérai</i><i>eyerai</i><i>oirai</i></p>
+                       <p><i>iéras</i><i>eyeras</i><i>oiras</i></p>
+                       <p><i>iéra</i><i>eyera</i><i>oira</i></p>
+                       <p><i>iérons</i><i>eyerons</i><i>oirons</i></p>
+                       <p><i>iérez</i><i>eyerez</i><i>oirez</i></p>
+                       <p><i>iéront</i><i>eyeront</i><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>iérais</i><i>eyerais</i><i>oirais</i></p>
+                       <p><i>iérais</i><i>eyerais</i><i>oirais</i></p>
+                       <p><i>iérait</i><i>eyerait</i><i>oirait</i></p>
+                       <p><i>iérions</i><i>eyerions</i><i>oirions</i></p>
+                       <p><i>iériez</i><i>eyeriez</i><i>oiriez</i></p>
+                       <p><i>iéraient</i><i>eyeraient</i><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>eye</i><i>oie</i></p>
+                       <p><i>eyes</i><i>oies</i></p>
+                       <p><i>eye</i><i>oie</i></p>
+                       <p><i>eyions</i><i>oyions</i></p>
+                       <p><i>eyiez</i><i>oyiez</i></p>
+                       <p><i>eyent</i><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ieds</i><i>ois</i></p>
+                       <p><i>eyons</i><i>oyons</i></p>
+                       <p><i>eyez</i><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>eyant</i><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ass:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eoir</i><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ieds</i><i>ois</i></p>
+                       <p><i>ieds</i><i>ois</i></p>
+                       <p><i>ied</i><i>oit</i></p>
+                       <p><i>eyons</i><i>oyons</i></p>
+                       <p><i>eyez</i><i>oyez</i></p>
+                       <p><i>eyent</i><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>eyais</i><i>oyais</i></p>
+                       <p><i>eyais</i><i>oyais</i></p>
+                       <p><i>eyait</i><i>oyait</i></p>
+                       <p><i>eyions</i><i>oyions</i></p>
+                       <p><i>eyiez</i><i>oyiez</i></p>
+                       <p><i>eyaient</i><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>iérai</i><i>eyerai</i><i>oirai</i></p>
+                       <p><i>iéras</i><i>eyeras</i><i>oiras</i></p>
+                       <p><i>iéra</i><i>eyera</i><i>oira</i></p>
+                       <p><i>iérons</i><i>eyerons</i><i>oirons</i></p>
+                       <p><i>iérez</i><i>eyerez</i><i>oirez</i></p>
+                       <p><i>iéront</i><i>eyeront</i><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>iérais</i><i>eyerais</i><i>oirais</i></p>
+                       <p><i>iérais</i><i>eyerais</i><i>oirais</i></p>
+                       <p><i>iérait</i><i>eyerait</i><i>oirait</i></p>
+                       <p><i>iérions</i><i>eyerions</i><i>oirions</i></p>
+                       <p><i>iériez</i><i>eyeriez</i><i>oiriez</i></p>
+                       <p><i>iéraient</i><i>eyeraient</i><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>eye</i><i>oie</i></p>
+                       <p><i>eyes</i><i>oies</i></p>
+                       <p><i>eye</i><i>oie</i></p>
+                       <p><i>eyions</i><i>oyions</i></p>
+                       <p><i>eyiez</i><i>oyiez</i></p>
+                       <p><i>eyent</i><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ieds</i><i>ois</i></p>
+                       <p><i>eyons</i><i>oyons</i></p>
+                       <p><i>eyez</i><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>eyant</i><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="surs:eoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>eoirai</i></p>
+                       <p><i>eoiras</i></p>
+                       <p><i>eoira</i></p>
+                       <p><i>eoirons</i></p>
+                       <p><i>eoirez</i></p>
+                       <p><i>eoiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>eoirais</i></p>
+                       <p><i>eoirais</i></p>
+                       <p><i>eoirait</i></p>
+                       <p><i>eoirions</i></p>
+                       <p><i>eoiriez</i></p>
+                       <p><i>eoiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="surs:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oirai</i></p>
+                       <p><i>oiras</i></p>
+                       <p><i>oira</i></p>
+                       <p><i>oirons</i></p>
+                       <p><i>oirez</i></p>
+                       <p><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oirais</i></p>
+                       <p><i>oirais</i></p>
+                       <p><i>oirait</i></p>
+                       <p><i>oirions</i></p>
+                       <p><i>oiriez</i></p>
+                       <p><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="s:eoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>eoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ied</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>iéent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>eyait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>eyaient</i></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p><i>iéra</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>iéront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>iérait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>iéraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>iée</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>iéent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>éant</i><i>eyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="pl:euvoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>euvoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>eut</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvaient</i></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvra</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p><i>ut</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvrait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>euve</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>euvent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>ût</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>euvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fa:lloir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>lloir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ut</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>llait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p><i>udra</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p><i>llut</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>udrait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ille</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>llût</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>llu</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="déch:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i><i>et</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oirai</i></p>
+                       <p><i>oiras</i></p>
+                       <p><i>oira</i></p>
+                       <p><i>oirons</i></p>
+                       <p><i>oirez</i></p>
+                       <p><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oirais</i></p>
+                       <p><i>oirais</i></p>
+                       <p><i>oirait</i></p>
+                       <p><i>oirions</i></p>
+                       <p><i>oiriez</i></p>
+                       <p><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="pourv:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oirai</i></p>
+                       <p><i>oiras</i></p>
+                       <p><i>oira</i></p>
+                       <p><i>oirons</i></p>
+                       <p><i>oirez</i></p>
+                       <p><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oirais</i></p>
+                       <p><i>oirais</i></p>
+                       <p><i>oirait</i></p>
+                       <p><i>oirions</i></p>
+                       <p><i>oiriez</i></p>
+                       <p><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ch:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p><i>oirai</i><i>errai</i></p>
+                       <p><i>oiras</i><i>erras</i></p>
+                       <p><i>oira</i><i>erra</i></p>
+                       <p><i>oirons</i><i>errons</i></p>
+                       <p><i>oirez</i><i>errez</i></p>
+                       <p><i>oiront</i><i>erront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oirais</i><i>errais</i></p>
+                       <p><i>oirais</i><i>errais</i></p>
+                       <p><i>oirait</i><i>errait</i></p>
+                       <p><i>oirions</i><i>errions</i></p>
+                       <p><i>oiriez</i><i>erriez</i></p>
+                       <p><i>oiraient</i><i>erraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>ût</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="éch:oir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>oit</i><i>et</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>oient</i><i>éent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>oyait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p><i>oira</i><i>erra</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>oiront</i><i>erront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p><i>ut</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>oirait</i><i>errait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>oiraient</i><i>erraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>oie</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>ût</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>éant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ten:dre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>dre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ds</i></p>
+                       <p><i>ds</i></p>
+                       <p><i>d</i></p>
+                       <p><i>dons</i></p>
+                       <p><i>dez</i></p>
+                       <p><i>dent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>dais</i></p>
+                       <p><i>dais</i></p>
+                       <p><i>dait</i></p>
+                       <p><i>dions</i></p>
+                       <p><i>diez</i></p>
+                       <p><i>daient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>drai</i></p>
+                       <p><i>dras</i></p>
+                       <p><i>dra</i></p>
+                       <p><i>drons</i></p>
+                       <p><i>drez</i></p>
+                       <p><i>dront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>dis</i></p>
+                       <p><i>dis</i></p>
+                       <p><i>dit</i></p>
+                       <p><i>dîmes</i></p>
+                       <p><i>dîtes</i></p>
+                       <p><i>dirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>drais</i></p>
+                       <p><i>drais</i></p>
+                       <p><i>drait</i></p>
+                       <p><i>drions</i></p>
+                       <p><i>driez</i></p>
+                       <p><i>draient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>de</i></p>
+                       <p><i>des</i></p>
+                       <p><i>de</i></p>
+                       <p><i>dions</i></p>
+                       <p><i>diez</i></p>
+                       <p><i>dent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>disse</i></p>
+                       <p><i>disses</i></p>
+                       <p><i>dît</i></p>
+                       <p><i>dissions</i></p>
+                       <p><i>dissiez</i></p>
+                       <p><i>dissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ds</i></p>
+                       <p><i>dons</i></p>
+                       <p><i>dez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>dant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>du</i></p>
+                       <p><i>dus</i></p>
+                       <p><i>due</i></p>
+                       <p><i>dues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="vain:cre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>cre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>cs</i></p>
+                       <p><i>cs</i></p>
+                       <p><i>c</i></p>
+                       <p><i>quons</i></p>
+                       <p><i>quez</i></p>
+                       <p><i>quent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>quais</i></p>
+                       <p><i>quais</i></p>
+                       <p><i>quait</i></p>
+                       <p><i>quions</i></p>
+                       <p><i>quiez</i></p>
+                       <p><i>quaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>crai</i></p>
+                       <p><i>cras</i></p>
+                       <p><i>cra</i></p>
+                       <p><i>crons</i></p>
+                       <p><i>crez</i></p>
+                       <p><i>cront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>quis</i></p>
+                       <p><i>quis</i></p>
+                       <p><i>quit</i></p>
+                       <p><i>quîmes</i></p>
+                       <p><i>quîtes</i></p>
+                       <p><i>quirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>crais</i></p>
+                       <p><i>crais</i></p>
+                       <p><i>crait</i></p>
+                       <p><i>crions</i></p>
+                       <p><i>criez</i></p>
+                       <p><i>craient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>que</i></p>
+                       <p><i>ques</i></p>
+                       <p><i>que</i></p>
+                       <p><i>quions</i></p>
+                       <p><i>quiez</i></p>
+                       <p><i>quent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>quisse</i></p>
+                       <p><i>quisses</i></p>
+                       <p><i>quît</i></p>
+                       <p><i>quissions</i></p>
+                       <p><i>quissiez</i></p>
+                       <p><i>quissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>cs</i></p>
+                       <p><i>quons</i></p>
+                       <p><i>quez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>quant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>cu</i></p>
+                       <p><i>cus</i></p>
+                       <p><i>cue</i></p>
+                       <p><i>cues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="bat:tre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>tre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i></i></p>
+                       <p><i>tons</i></p>
+                       <p><i>tez</i></p>
+                       <p><i>tent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>tais</i></p>
+                       <p><i>tais</i></p>
+                       <p><i>tait</i></p>
+                       <p><i>tions</i></p>
+                       <p><i>tiez</i></p>
+                       <p><i>taient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>trai</i></p>
+                       <p><i>tras</i></p>
+                       <p><i>tra</i></p>
+                       <p><i>trons</i></p>
+                       <p><i>trez</i></p>
+                       <p><i>tront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>tis</i></p>
+                       <p><i>tis</i></p>
+                       <p><i>tit</i></p>
+                       <p><i>tîmes</i></p>
+                       <p><i>tîtes</i></p>
+                       <p><i>tirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>trais</i></p>
+                       <p><i>trais</i></p>
+                       <p><i>trait</i></p>
+                       <p><i>trions</i></p>
+                       <p><i>triez</i></p>
+                       <p><i>traient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>te</i></p>
+                       <p><i>tes</i></p>
+                       <p><i>te</i></p>
+                       <p><i>tions</i></p>
+                       <p><i>tiez</i></p>
+                       <p><i>tent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>tisse</i></p>
+                       <p><i>tisses</i></p>
+                       <p><i>tît</i></p>
+                       <p><i>tissions</i></p>
+                       <p><i>tissiez</i></p>
+                       <p><i>tissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>tons</i></p>
+                       <p><i>tez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>tant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>tu</i></p>
+                       <p><i>tus</i></p>
+                       <p><i>tue</i></p>
+                       <p><i>tues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fou:tre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>tre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>tons</i></p>
+                       <p><i>tez</i></p>
+                       <p><i>tent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>tais</i></p>
+                       <p><i>tais</i></p>
+                       <p><i>tait</i></p>
+                       <p><i>tions</i></p>
+                       <p><i>tiez</i></p>
+                       <p><i>taient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>trai</i></p>
+                       <p><i>tras</i></p>
+                       <p><i>tra</i></p>
+                       <p><i>trons</i></p>
+                       <p><i>trez</i></p>
+                       <p><i>tront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>trais</i></p>
+                       <p><i>trais</i></p>
+                       <p><i>trait</i></p>
+                       <p><i>trions</i></p>
+                       <p><i>triez</i></p>
+                       <p><i>traient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>te</i></p>
+                       <p><i>tes</i></p>
+                       <p><i>te</i></p>
+                       <p><i>tions</i></p>
+                       <p><i>tiez</i></p>
+                       <p><i>tent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>tons</i></p>
+                       <p><i>tez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>tant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>tu</i></p>
+                       <p><i>tus</i></p>
+                       <p><i>tue</i></p>
+                       <p><i>tues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="m:ettre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ettre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ets</i></p>
+                       <p><i>ets</i></p>
+                       <p><i>et</i></p>
+                       <p><i>ettons</i></p>
+                       <p><i>ettez</i></p>
+                       <p><i>ettent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ettais</i></p>
+                       <p><i>ettais</i></p>
+                       <p><i>ettait</i></p>
+                       <p><i>ettions</i></p>
+                       <p><i>ettiez</i></p>
+                       <p><i>ettaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ettrai</i></p>
+                       <p><i>ettras</i></p>
+                       <p><i>ettra</i></p>
+                       <p><i>ettrons</i></p>
+                       <p><i>ettrez</i></p>
+                       <p><i>ettront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ettrais</i></p>
+                       <p><i>ettrais</i></p>
+                       <p><i>ettrait</i></p>
+                       <p><i>ettrions</i></p>
+                       <p><i>ettriez</i></p>
+                       <p><i>ettraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ette</i></p>
+                       <p><i>ettes</i></p>
+                       <p><i>ette</i></p>
+                       <p><i>ettions</i></p>
+                       <p><i>ettiez</i></p>
+                       <p><i>ettent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ets</i></p>
+                       <p><i>ettons</i></p>
+                       <p><i>ettez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ettant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="pr:endre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>endre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ends</i></p>
+                       <p><i>ends</i></p>
+                       <p><i>end</i></p>
+                       <p><i>enons</i></p>
+                       <p><i>enez</i></p>
+                       <p><i>ennent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>enais</i></p>
+                       <p><i>enais</i></p>
+                       <p><i>enait</i></p>
+                       <p><i>enions</i></p>
+                       <p><i>eniez</i></p>
+                       <p><i>enaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>endrai</i></p>
+                       <p><i>endras</i></p>
+                       <p><i>endra</i></p>
+                       <p><i>endrons</i></p>
+                       <p><i>endrez</i></p>
+                       <p><i>endront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>endrais</i></p>
+                       <p><i>endrais</i></p>
+                       <p><i>endrait</i></p>
+                       <p><i>endrions</i></p>
+                       <p><i>endriez</i></p>
+                       <p><i>endraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>enne</i></p>
+                       <p><i>ennes</i></p>
+                       <p><i>enne</i></p>
+                       <p><i>enions</i></p>
+                       <p><i>eniez</i></p>
+                       <p><i>ennent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ends</i></p>
+                       <p><i>enons</i></p>
+                       <p><i>enez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>enant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="rom:pre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>pre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ps</i></p>
+                       <p><i>ps</i></p>
+                       <p><i>pt</i></p>
+                       <p><i>pons</i></p>
+                       <p><i>pez</i></p>
+                       <p><i>pent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>pais</i></p>
+                       <p><i>pais</i></p>
+                       <p><i>pait</i></p>
+                       <p><i>pions</i></p>
+                       <p><i>piez</i></p>
+                       <p><i>paient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>prai</i></p>
+                       <p><i>pras</i></p>
+                       <p><i>pra</i></p>
+                       <p><i>prons</i></p>
+                       <p><i>prez</i></p>
+                       <p><i>pront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>pis</i></p>
+                       <p><i>pis</i></p>
+                       <p><i>pit</i></p>
+                       <p><i>pîmes</i></p>
+                       <p><i>pîtes</i></p>
+                       <p><i>pirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>prais</i></p>
+                       <p><i>prais</i></p>
+                       <p><i>prait</i></p>
+                       <p><i>prions</i></p>
+                       <p><i>priez</i></p>
+                       <p><i>praient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>pe</i></p>
+                       <p><i>pes</i></p>
+                       <p><i>pe</i></p>
+                       <p><i>pions</i></p>
+                       <p><i>piez</i></p>
+                       <p><i>pent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>pisse</i></p>
+                       <p><i>pisses</i></p>
+                       <p><i>pît</i></p>
+                       <p><i>pissions</i></p>
+                       <p><i>pissiez</i></p>
+                       <p><i>pissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ps</i></p>
+                       <p><i>pons</i></p>
+                       <p><i>pez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>pant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>pu</i></p>
+                       <p><i>pus</i></p>
+                       <p><i>pue</i></p>
+                       <p><i>pues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="mou:dre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>dre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ds</i></p>
+                       <p><i>ds</i></p>
+                       <p><i>d</i></p>
+                       <p><i>lons</i></p>
+                       <p><i>lez</i></p>
+                       <p><i>lent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lais</i></p>
+                       <p><i>lais</i></p>
+                       <p><i>lait</i></p>
+                       <p><i>lions</i></p>
+                       <p><i>liez</i></p>
+                       <p><i>laient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>drai</i></p>
+                       <p><i>dras</i></p>
+                       <p><i>dra</i></p>
+                       <p><i>drons</i></p>
+                       <p><i>drez</i></p>
+                       <p><i>dront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>lus</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lut</i></p>
+                       <p><i>lûmes</i></p>
+                       <p><i>lûtes</i></p>
+                       <p><i>lurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>drais</i></p>
+                       <p><i>drais</i></p>
+                       <p><i>drait</i></p>
+                       <p><i>drions</i></p>
+                       <p><i>driez</i></p>
+                       <p><i>draient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>le</i></p>
+                       <p><i>les</i></p>
+                       <p><i>le</i></p>
+                       <p><i>lions</i></p>
+                       <p><i>liez</i></p>
+                       <p><i>lent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lusse</i></p>
+                       <p><i>lusses</i></p>
+                       <p><i>lût</i></p>
+                       <p><i>lussions</i></p>
+                       <p><i>lussiez</i></p>
+                       <p><i>lussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ds</i></p>
+                       <p><i>lons</i></p>
+                       <p><i>lez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>lant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>lu</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lue</i></p>
+                       <p><i>lues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cou:dre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>dre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ds</i></p>
+                       <p><i>ds</i></p>
+                       <p><i>d</i></p>
+                       <p><i>sons</i></p>
+                       <p><i>sez</i></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>sais</i></p>
+                       <p><i>sais</i></p>
+                       <p><i>sait</i></p>
+                       <p><i>sions</i></p>
+                       <p><i>siez</i></p>
+                       <p><i>saient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>drai</i></p>
+                       <p><i>dras</i></p>
+                       <p><i>dra</i></p>
+                       <p><i>drons</i></p>
+                       <p><i>drez</i></p>
+                       <p><i>dront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>sis</i></p>
+                       <p><i>sis</i></p>
+                       <p><i>sit</i></p>
+                       <p><i>sîmes</i></p>
+                       <p><i>sîtes</i></p>
+                       <p><i>sirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>drais</i></p>
+                       <p><i>drais</i></p>
+                       <p><i>drait</i></p>
+                       <p><i>drions</i></p>
+                       <p><i>driez</i></p>
+                       <p><i>draient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>se</i></p>
+                       <p><i>ses</i></p>
+                       <p><i>se</i></p>
+                       <p><i>sions</i></p>
+                       <p><i>siez</i></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>sisse</i></p>
+                       <p><i>sisses</i></p>
+                       <p><i>sît</i></p>
+                       <p><i>sissions</i></p>
+                       <p><i>sissiez</i></p>
+                       <p><i>sissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ds</i></p>
+                       <p><i>sons</i></p>
+                       <p><i>sez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>sant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>su</i></p>
+                       <p><i>sus</i></p>
+                       <p><i>sue</i></p>
+                       <p><i>sues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="réso:udre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>udre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>lvons</i></p>
+                       <p><i>lvez</i></p>
+                       <p><i>lvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lvais</i></p>
+                       <p><i>lvais</i></p>
+                       <p><i>lvait</i></p>
+                       <p><i>lvions</i></p>
+                       <p><i>lviez</i></p>
+                       <p><i>lvaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>udrai</i></p>
+                       <p><i>udras</i></p>
+                       <p><i>udra</i></p>
+                       <p><i>udrons</i></p>
+                       <p><i>udrez</i></p>
+                       <p><i>udront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>lus</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lut</i></p>
+                       <p><i>lûmes</i></p>
+                       <p><i>lûtes</i></p>
+                       <p><i>lurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>udrais</i></p>
+                       <p><i>udrais</i></p>
+                       <p><i>udrait</i></p>
+                       <p><i>udrions</i></p>
+                       <p><i>udriez</i></p>
+                       <p><i>udraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>lve</i></p>
+                       <p><i>lves</i></p>
+                       <p><i>lve</i></p>
+                       <p><i>lvions</i></p>
+                       <p><i>lviez</i></p>
+                       <p><i>lvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lusse</i></p>
+                       <p><i>lusses</i></p>
+                       <p><i>lût</i></p>
+                       <p><i>lussions</i></p>
+                       <p><i>lussiez</i></p>
+                       <p><i>lussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>us</i></p>
+                       <p><i>lvons</i></p>
+                       <p><i>lvez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>lvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>lu</i></p>
+                       <p><i>lus</i></p>
+                       <p><i>lue</i></p>
+                       <p><i>lues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="abso:udre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>udre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>lvons</i></p>
+                       <p><i>lvez</i></p>
+                       <p><i>lvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lvais</i></p>
+                       <p><i>lvais</i></p>
+                       <p><i>lvait</i></p>
+                       <p><i>lvions</i></p>
+                       <p><i>lviez</i></p>
+                       <p><i>lvaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>udrai</i></p>
+                       <p><i>udras</i></p>
+                       <p><i>udra</i></p>
+                       <p><i>udrons</i></p>
+                       <p><i>udrez</i></p>
+                       <p><i>udront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>udrais</i></p>
+                       <p><i>udrais</i></p>
+                       <p><i>udrait</i></p>
+                       <p><i>udrions</i></p>
+                       <p><i>udriez</i></p>
+                       <p><i>udraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>lve</i></p>
+                       <p><i>lves</i></p>
+                       <p><i>lve</i></p>
+                       <p><i>lvions</i></p>
+                       <p><i>lviez</i></p>
+                       <p><i>lvent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>us</i></p>
+                       <p><i>lvons</i></p>
+                       <p><i>lvez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>lvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>us</i><i>ut</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ute</i></p>
+                       <p><i>utes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="disso:udre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>udre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>lvons</i></p>
+                       <p><i>lvez</i></p>
+                       <p><i>lvent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>lvais</i></p>
+                       <p><i>lvais</i></p>
+                       <p><i>lvait</i></p>
+                       <p><i>lvions</i></p>
+                       <p><i>lviez</i></p>
+                       <p><i>lvaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>udrai</i></p>
+                       <p><i>udras</i></p>
+                       <p><i>udra</i></p>
+                       <p><i>udrons</i></p>
+                       <p><i>udrez</i></p>
+                       <p><i>udront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>udrais</i></p>
+                       <p><i>udrais</i></p>
+                       <p><i>udrait</i></p>
+                       <p><i>udrions</i></p>
+                       <p><i>udriez</i></p>
+                       <p><i>udraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>lve</i></p>
+                       <p><i>lves</i></p>
+                       <p><i>lve</i></p>
+                       <p><i>lvions</i></p>
+                       <p><i>lviez</i></p>
+                       <p><i>lvent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>us</i></p>
+                       <p><i>lvons</i></p>
+                       <p><i>lvez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>lvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>us</i><i>lu</i></p>
+                       <p><i>us</i><i>lus</i></p>
+                       <p><i>ute</i><i>lue</i></p>
+                       <p><i>utes</i><i>lues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="crai:ndre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ndre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ns</i></p>
+                       <p><i>ns</i></p>
+                       <p><i>nt</i></p>
+                       <p><i>gnons</i></p>
+                       <p><i>gnez</i></p>
+                       <p><i>gnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>gnais</i></p>
+                       <p><i>gnais</i></p>
+                       <p><i>gnait</i></p>
+                       <p><i>gnions</i></p>
+                       <p><i>gniez</i></p>
+                       <p><i>gnaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ndrai</i></p>
+                       <p><i>ndras</i></p>
+                       <p><i>ndra</i></p>
+                       <p><i>ndrons</i></p>
+                       <p><i>ndrez</i></p>
+                       <p><i>ndront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>gnis</i></p>
+                       <p><i>gnis</i></p>
+                       <p><i>gnit</i></p>
+                       <p><i>gnîmes</i></p>
+                       <p><i>gnîtes</i></p>
+                       <p><i>gnirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ndrais</i></p>
+                       <p><i>ndrais</i></p>
+                       <p><i>ndrait</i></p>
+                       <p><i>ndrions</i></p>
+                       <p><i>ndriez</i></p>
+                       <p><i>ndraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>gne</i></p>
+                       <p><i>gnes</i></p>
+                       <p><i>gne</i></p>
+                       <p><i>gnions</i></p>
+                       <p><i>gniez</i></p>
+                       <p><i>gnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>gnisse</i></p>
+                       <p><i>gnisses</i></p>
+                       <p><i>gnît</i></p>
+                       <p><i>gnissions</i></p>
+                       <p><i>gnissiez</i></p>
+                       <p><i>gnissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ns</i></p>
+                       <p><i>gnons</i></p>
+                       <p><i>gnez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>gnant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>nt</i></p>
+                       <p><i>nts</i></p>
+                       <p><i>nte</i></p>
+                       <p><i>ntes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="poi:ndre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ndre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ns</i></p>
+                       <p><i>ns</i></p>
+                       <p><i>nt</i></p>
+                       <p><i>gnons</i></p>
+                       <p><i>gnez</i></p>
+                       <p><i>gnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>gnais</i></p>
+                       <p><i>gnais</i></p>
+                       <p><i>gnait</i></p>
+                       <p><i>gnions</i></p>
+                       <p><i>gniez</i></p>
+                       <p><i>gnaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ndrai</i></p>
+                       <p><i>ndras</i></p>
+                       <p><i>ndra</i></p>
+                       <p><i>ndrons</i></p>
+                       <p><i>ndrez</i></p>
+                       <p><i>ndront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>gnis</i></p>
+                       <p><i>gnis</i></p>
+                       <p><i>gnit</i></p>
+                       <p><i>gnîmes</i></p>
+                       <p><i>gnîtes</i></p>
+                       <p><i>gnirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ndrais</i></p>
+                       <p><i>ndrais</i></p>
+                       <p><i>ndrait</i></p>
+                       <p><i>ndrions</i></p>
+                       <p><i>ndriez</i></p>
+                       <p><i>ndraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>gne</i></p>
+                       <p><i>gnes</i></p>
+                       <p><i>gne</i></p>
+                       <p><i>gnions</i></p>
+                       <p><i>gniez</i></p>
+                       <p><i>gnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>gnisse</i></p>
+                       <p><i>gnisses</i></p>
+                       <p><i>gnît</i></p>
+                       <p><i>gnissions</i></p>
+                       <p><i>gnissiez</i></p>
+                       <p><i>gnissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>gnant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="sui:vre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>vre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>vons</i></p>
+                       <p><i>vez</i></p>
+                       <p><i>vent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>vais</i></p>
+                       <p><i>vais</i></p>
+                       <p><i>vait</i></p>
+                       <p><i>vions</i></p>
+                       <p><i>viez</i></p>
+                       <p><i>vaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>vrai</i></p>
+                       <p><i>vras</i></p>
+                       <p><i>vra</i></p>
+                       <p><i>vrons</i></p>
+                       <p><i>vrez</i></p>
+                       <p><i>vront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>vis</i></p>
+                       <p><i>vis</i></p>
+                       <p><i>vit</i></p>
+                       <p><i>vîmes</i></p>
+                       <p><i>vîtes</i></p>
+                       <p><i>virent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>vrais</i></p>
+                       <p><i>vrais</i></p>
+                       <p><i>vrait</i></p>
+                       <p><i>vrions</i></p>
+                       <p><i>vriez</i></p>
+                       <p><i>vraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ve</i></p>
+                       <p><i>ves</i></p>
+                       <p><i>ve</i></p>
+                       <p><i>vions</i></p>
+                       <p><i>viez</i></p>
+                       <p><i>vent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>visse</i></p>
+                       <p><i>visses</i></p>
+                       <p><i>vît</i></p>
+                       <p><i>vissions</i></p>
+                       <p><i>vissiez</i></p>
+                       <p><i>vissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>vons</i></p>
+                       <p><i>vez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>vant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>vi</i></p>
+                       <p><i>vis</i></p>
+                       <p><i>vie</i></p>
+                       <p><i>vies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="v:ivre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ivre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>ivons</i></p>
+                       <p><i>ivez</i></p>
+                       <p><i>ivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ivais</i></p>
+                       <p><i>ivais</i></p>
+                       <p><i>ivait</i></p>
+                       <p><i>ivions</i></p>
+                       <p><i>iviez</i></p>
+                       <p><i>ivaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ivrai</i></p>
+                       <p><i>ivras</i></p>
+                       <p><i>ivra</i></p>
+                       <p><i>ivrons</i></p>
+                       <p><i>ivrez</i></p>
+                       <p><i>ivront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>écus</i></p>
+                       <p><i>écus</i></p>
+                       <p><i>écut</i></p>
+                       <p><i>écûmes</i></p>
+                       <p><i>écûtes</i></p>
+                       <p><i>écurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ivrais</i></p>
+                       <p><i>ivrais</i></p>
+                       <p><i>ivrait</i></p>
+                       <p><i>ivrions</i></p>
+                       <p><i>ivriez</i></p>
+                       <p><i>ivraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ive</i></p>
+                       <p><i>ives</i></p>
+                       <p><i>ive</i></p>
+                       <p><i>ivions</i></p>
+                       <p><i>iviez</i></p>
+                       <p><i>ivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>écusse</i></p>
+                       <p><i>écusses</i></p>
+                       <p><i>écût</i></p>
+                       <p><i>écussions</i></p>
+                       <p><i>écussiez</i></p>
+                       <p><i>écussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>ivons</i></p>
+                       <p><i>ivez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ivant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>écu</i></p>
+                       <p><i>écus</i></p>
+                       <p><i>écue</i></p>
+                       <p><i>écues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="rep:aître">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aître</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>aît</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aissais</i></p>
+                       <p><i>aissais</i></p>
+                       <p><i>aissait</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aîtrai</i></p>
+                       <p><i>aîtras</i></p>
+                       <p><i>aîtra</i></p>
+                       <p><i>aîtrons</i></p>
+                       <p><i>aîtrez</i></p>
+                       <p><i>aîtront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrait</i></p>
+                       <p><i>aîtrions</i></p>
+                       <p><i>aîtriez</i></p>
+                       <p><i>aîtraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aisse</i></p>
+                       <p><i>aisses</i></p>
+                       <p><i>aisse</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aissant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="p:aître">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aître</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>aît</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aissais</i></p>
+                       <p><i>aissais</i></p>
+                       <p><i>aissait</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aîtrai</i></p>
+                       <p><i>aîtras</i></p>
+                       <p><i>aîtra</i></p>
+                       <p><i>aîtrons</i></p>
+                       <p><i>aîtrez</i></p>
+                       <p><i>aîtront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrait</i></p>
+                       <p><i>aîtrions</i></p>
+                       <p><i>aîtriez</i></p>
+                       <p><i>aîtraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aisse</i></p>
+                       <p><i>aisses</i></p>
+                       <p><i>aisse</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p></p>
+                       <p><i>aissez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aissant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="par:aître">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aître</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>aît</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aissais</i></p>
+                       <p><i>aissais</i></p>
+                       <p><i>aissait</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aîtrai</i></p>
+                       <p><i>aîtras</i></p>
+                       <p><i>aîtra</i></p>
+                       <p><i>aîtrons</i></p>
+                       <p><i>aîtrez</i></p>
+                       <p><i>aîtront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrait</i></p>
+                       <p><i>aîtrions</i></p>
+                       <p><i>aîtriez</i></p>
+                       <p><i>aîtraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aisse</i></p>
+                       <p><i>aisses</i></p>
+                       <p><i>aisse</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aissant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="n:aître">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aître</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>aît</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aissais</i></p>
+                       <p><i>aissais</i></p>
+                       <p><i>aissait</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aîtrai</i></p>
+                       <p><i>aîtras</i></p>
+                       <p><i>aîtra</i></p>
+                       <p><i>aîtrons</i></p>
+                       <p><i>aîtrez</i></p>
+                       <p><i>aîtront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>aquis</i></p>
+                       <p><i>aquis</i></p>
+                       <p><i>aquit</i></p>
+                       <p><i>aquîmes</i></p>
+                       <p><i>aquîtes</i></p>
+                       <p><i>aquirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrait</i></p>
+                       <p><i>aîtrions</i></p>
+                       <p><i>aîtriez</i></p>
+                       <p><i>aîtraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aisse</i></p>
+                       <p><i>aisses</i></p>
+                       <p><i>aisse</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aquisse</i></p>
+                       <p><i>aquisses</i></p>
+                       <p><i>aquît</i></p>
+                       <p><i>aquissions</i></p>
+                       <p><i>aquissiez</i></p>
+                       <p><i>aquissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aissant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>é</i></p>
+                       <p><i>és</i></p>
+                       <p><i>ée</i></p>
+                       <p><i>ées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="ren:aître">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aître</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>aît</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aissais</i></p>
+                       <p><i>aissais</i></p>
+                       <p><i>aissait</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aîtrai</i></p>
+                       <p><i>aîtras</i></p>
+                       <p><i>aîtra</i></p>
+                       <p><i>aîtrons</i></p>
+                       <p><i>aîtrez</i></p>
+                       <p><i>aîtront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>aquis</i></p>
+                       <p><i>aquis</i></p>
+                       <p><i>aquit</i></p>
+                       <p><i>aquîmes</i></p>
+                       <p><i>aquîtes</i></p>
+                       <p><i>aquirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrais</i></p>
+                       <p><i>aîtrait</i></p>
+                       <p><i>aîtrions</i></p>
+                       <p><i>aîtriez</i></p>
+                       <p><i>aîtraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aisse</i></p>
+                       <p><i>aisses</i></p>
+                       <p><i>aisse</i></p>
+                       <p><i>aissions</i></p>
+                       <p><i>aissiez</i></p>
+                       <p><i>aissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aquisse</i></p>
+                       <p><i>aquisses</i></p>
+                       <p><i>aquît</i></p>
+                       <p><i>aquissions</i></p>
+                       <p><i>aquissiez</i></p>
+                       <p><i>aquissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p><i>aissons</i></p>
+                       <p><i>aissez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aissant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cr:oître">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oître</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>oîs</i></p>
+                       <p><i>oîs</i></p>
+                       <p><i>oît</i></p>
+                       <p><i>oissons</i></p>
+                       <p><i>oissez</i></p>
+                       <p><i>oissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oissais</i></p>
+                       <p><i>oissais</i></p>
+                       <p><i>oissait</i></p>
+                       <p><i>oissions</i></p>
+                       <p><i>oissiez</i></p>
+                       <p><i>oissaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oîtrai</i></p>
+                       <p><i>oîtras</i></p>
+                       <p><i>oîtra</i></p>
+                       <p><i>oîtrons</i></p>
+                       <p><i>oîtrez</i></p>
+                       <p><i>oîtront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oîtrais</i></p>
+                       <p><i>oîtrais</i></p>
+                       <p><i>oîtrait</i></p>
+                       <p><i>oîtrions</i></p>
+                       <p><i>oîtriez</i></p>
+                       <p><i>oîtraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oisse</i></p>
+                       <p><i>oisses</i></p>
+                       <p><i>oisse</i></p>
+                       <p><i>oissions</i></p>
+                       <p><i>oissiez</i></p>
+                       <p><i>oissent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>oissons</i></p>
+                       <p><i>oissez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oissant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="r:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>iais</i></p>
+                       <p><i>iais</i></p>
+                       <p><i>iait</i></p>
+                       <p><i>iions</i></p>
+                       <p><i>iiez</i></p>
+                       <p><i>iaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>iions</i></p>
+                       <p><i>iiez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>ions</i></p>
+                       <p><i>iez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>iant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="circonc:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="concl:ure">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ure</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>uons</i></p>
+                       <p><i>uez</i></p>
+                       <p><i>uent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>uais</i></p>
+                       <p><i>uais</i></p>
+                       <p><i>uait</i></p>
+                       <p><i>uions</i></p>
+                       <p><i>uiez</i></p>
+                       <p><i>uaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>urai</i></p>
+                       <p><i>uras</i></p>
+                       <p><i>ura</i></p>
+                       <p><i>urons</i></p>
+                       <p><i>urez</i></p>
+                       <p><i>uront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>urais</i></p>
+                       <p><i>urais</i></p>
+                       <p><i>urait</i></p>
+                       <p><i>urions</i></p>
+                       <p><i>uriez</i></p>
+                       <p><i>uraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>uions</i></p>
+                       <p><i>uiez</i></p>
+                       <p><i>uent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>us</i></p>
+                       <p><i>uons</i></p>
+                       <p><i>uez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>uant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="incl:ure">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ure</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>uons</i></p>
+                       <p><i>uez</i></p>
+                       <p><i>uent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>uais</i></p>
+                       <p><i>uais</i></p>
+                       <p><i>uait</i></p>
+                       <p><i>uions</i></p>
+                       <p><i>uiez</i></p>
+                       <p><i>uaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>urai</i></p>
+                       <p><i>uras</i></p>
+                       <p><i>ura</i></p>
+                       <p><i>urons</i></p>
+                       <p><i>urez</i></p>
+                       <p><i>uront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>urais</i></p>
+                       <p><i>urais</i></p>
+                       <p><i>urait</i></p>
+                       <p><i>urions</i></p>
+                       <p><i>uriez</i></p>
+                       <p><i>uraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>uions</i></p>
+                       <p><i>uiez</i></p>
+                       <p><i>uent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>us</i></p>
+                       <p><i>uons</i></p>
+                       <p><i>uez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>uant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>use</i></p>
+                       <p><i>uses</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="nui:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>sons</i></p>
+                       <p><i>sez</i></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>sais</i></p>
+                       <p><i>sais</i></p>
+                       <p><i>sait</i></p>
+                       <p><i>sions</i></p>
+                       <p><i>siez</i></p>
+                       <p><i>saient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>rai</i></p>
+                       <p><i>ras</i></p>
+                       <p><i>ra</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+                       <p><i>ront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>sis</i></p>
+                       <p><i>sis</i></p>
+                       <p><i>sit</i></p>
+                       <p><i>sîmes</i></p>
+                       <p><i>sîtes</i></p>
+                       <p><i>sirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>rais</i></p>
+                       <p><i>rais</i></p>
+                       <p><i>rait</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>raient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>se</i></p>
+                       <p><i>ses</i></p>
+                       <p><i>se</i></p>
+                       <p><i>sions</i></p>
+                       <p><i>siez</i></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>sisse</i></p>
+                       <p><i>sisses</i></p>
+                       <p><i>sît</i></p>
+                       <p><i>sissions</i></p>
+                       <p><i>sissiez</i></p>
+                       <p><i>sissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>sons</i></p>
+                       <p><i>sez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>sant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i></i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="lu:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i></i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="condui:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>sons</i></p>
+                       <p><i>sez</i></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>sais</i></p>
+                       <p><i>sais</i></p>
+                       <p><i>sait</i></p>
+                       <p><i>sions</i></p>
+                       <p><i>siez</i></p>
+                       <p><i>saient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>rai</i></p>
+                       <p><i>ras</i></p>
+                       <p><i>ra</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+                       <p><i>ront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>sis</i></p>
+                       <p><i>sis</i></p>
+                       <p><i>sit</i></p>
+                       <p><i>sîmes</i></p>
+                       <p><i>sîtes</i></p>
+                       <p><i>sirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>rais</i></p>
+                       <p><i>rais</i></p>
+                       <p><i>rait</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>raient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>se</i></p>
+                       <p><i>ses</i></p>
+                       <p><i>se</i></p>
+                       <p><i>sions</i></p>
+                       <p><i>siez</i></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>sisse</i></p>
+                       <p><i>sisses</i></p>
+                       <p><i>sît</i></p>
+                       <p><i>sissions</i></p>
+                       <p><i>sissiez</i></p>
+                       <p><i>sissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>sons</i></p>
+                       <p><i>sez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>sant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>t</i></p>
+                       <p><i>ts</i></p>
+                       <p><i>te</i></p>
+                       <p><i>tes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="écri:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p><i>vons</i></p>
+                       <p><i>vez</i></p>
+                       <p><i>vent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>vais</i></p>
+                       <p><i>vais</i></p>
+                       <p><i>vait</i></p>
+                       <p><i>vions</i></p>
+                       <p><i>viez</i></p>
+                       <p><i>vaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>rai</i></p>
+                       <p><i>ras</i></p>
+                       <p><i>ra</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+                       <p><i>ront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>vis</i></p>
+                       <p><i>vis</i></p>
+                       <p><i>vit</i></p>
+                       <p><i>vîmes</i></p>
+                       <p><i>vîtes</i></p>
+                       <p><i>virent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>rais</i></p>
+                       <p><i>rais</i></p>
+                       <p><i>rait</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>raient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ve</i></p>
+                       <p><i>ves</i></p>
+                       <p><i>ve</i></p>
+                       <p><i>vions</i></p>
+                       <p><i>viez</i></p>
+                       <p><i>vent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>visse</i></p>
+                       <p><i>visses</i></p>
+                       <p><i>vît</i></p>
+                       <p><i>vissions</i></p>
+                       <p><i>vissiez</i></p>
+                       <p><i>vissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p><i>vons</i></p>
+                       <p><i>vez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>vant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>t</i></p>
+                       <p><i>ts</i></p>
+                       <p><i>te</i></p>
+                       <p><i>tes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cr:oire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oirai</i></p>
+                       <p><i>oiras</i></p>
+                       <p><i>oira</i></p>
+                       <p><i>oirons</i></p>
+                       <p><i>oirez</i></p>
+                       <p><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oirais</i></p>
+                       <p><i>oirais</i></p>
+                       <p><i>oirait</i></p>
+                       <p><i>oirions</i></p>
+                       <p><i>oiriez</i></p>
+                       <p><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="suff:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>i</i></p>
+                       <p><i>is</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="d:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>ites</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>ites</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>it</i></p>
+                       <p><i>its</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ites</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="interd:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>it</i></p>
+                       <p><i>its</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ites</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="méd:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>it</i></p>
+                       <p><i>its</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ites</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="l:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isais</i></p>
+                       <p><i>isais</i></p>
+                       <p><i>isait</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ise</i></p>
+                       <p><i>ises</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>isions</i></p>
+                       <p><i>isiez</i></p>
+                       <p><i>isent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>isons</i></p>
+                       <p><i>isez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>isant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="b:oire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ois</i></p>
+                       <p><i>ois</i></p>
+                       <p><i>oit</i></p>
+                       <p><i>uvons</i></p>
+                       <p><i>uvez</i></p>
+                       <p><i>oivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>uvais</i></p>
+                       <p><i>uvais</i></p>
+                       <p><i>uvait</i></p>
+                       <p><i>uvions</i></p>
+                       <p><i>uviez</i></p>
+                       <p><i>uvaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>oirai</i></p>
+                       <p><i>oiras</i></p>
+                       <p><i>oira</i></p>
+                       <p><i>oirons</i></p>
+                       <p><i>oirez</i></p>
+                       <p><i>oiront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>oirais</i></p>
+                       <p><i>oirais</i></p>
+                       <p><i>oirait</i></p>
+                       <p><i>oirions</i></p>
+                       <p><i>oiriez</i></p>
+                       <p><i>oiraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oive</i></p>
+                       <p><i>oives</i></p>
+                       <p><i>oive</i></p>
+                       <p><i>uvions</i></p>
+                       <p><i>uviez</i></p>
+                       <p><i>oivent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ois</i></p>
+                       <p><i>uvons</i></p>
+                       <p><i>uvez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>uvant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="t:aire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>aisons</i></p>
+                       <p><i>aisez</i></p>
+                       <p><i>aisent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aisais</i></p>
+                       <p><i>aisais</i></p>
+                       <p><i>aisait</i></p>
+                       <p><i>aisions</i></p>
+                       <p><i>aisiez</i></p>
+                       <p><i>aisaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>airai</i></p>
+                       <p><i>airas</i></p>
+                       <p><i>aira</i></p>
+                       <p><i>airons</i></p>
+                       <p><i>airez</i></p>
+                       <p><i>airont</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>airais</i></p>
+                       <p><i>airais</i></p>
+                       <p><i>airait</i></p>
+                       <p><i>airions</i></p>
+                       <p><i>airiez</i></p>
+                       <p><i>airaient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aise</i></p>
+                       <p><i>aises</i></p>
+                       <p><i>aise</i></p>
+                       <p><i>aisions</i></p>
+                       <p><i>aisiez</i></p>
+                       <p><i>aisent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p><i>aisons</i></p>
+                       <p><i>aisez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aisant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="pl:aire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>aît</i></p>
+                       <p><i>aisons</i></p>
+                       <p><i>aisez</i></p>
+                       <p><i>aisent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aisais</i></p>
+                       <p><i>aisais</i></p>
+                       <p><i>aisait</i></p>
+                       <p><i>aisions</i></p>
+                       <p><i>aisiez</i></p>
+                       <p><i>aisaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>airai</i></p>
+                       <p><i>airas</i></p>
+                       <p><i>aira</i></p>
+                       <p><i>airons</i></p>
+                       <p><i>airez</i></p>
+                       <p><i>airont</i></p>
+               </future>
+               <simple-past>
+                       <p><i>us</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ut</i></p>
+                       <p><i>ûmes</i></p>
+                       <p><i>ûtes</i></p>
+                       <p><i>urent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>airais</i></p>
+                       <p><i>airais</i></p>
+                       <p><i>airait</i></p>
+                       <p><i>airions</i></p>
+                       <p><i>airiez</i></p>
+                       <p><i>airaient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aise</i></p>
+                       <p><i>aises</i></p>
+                       <p><i>aise</i></p>
+                       <p><i>aisions</i></p>
+                       <p><i>aisiez</i></p>
+                       <p><i>aisent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>usse</i></p>
+                       <p><i>usses</i></p>
+                       <p><i>ût</i></p>
+                       <p><i>ussions</i></p>
+                       <p><i>ussiez</i></p>
+                       <p><i>ussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p><i>aisons</i></p>
+                       <p><i>aisez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aisant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="f:aire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ais</i></p>
+                       <p><i>ais</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>aisons</i></p>
+                       <p><i>aites</i></p>
+                       <p><i>ont</i></p>
+               </present>
+               <imperfect>
+                       <p><i>aisais</i></p>
+                       <p><i>aisais</i></p>
+                       <p><i>aisait</i></p>
+                       <p><i>aisions</i></p>
+                       <p><i>aisiez</i></p>
+                       <p><i>aisaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erai</i></p>
+                       <p><i>eras</i></p>
+                       <p><i>era</i></p>
+                       <p><i>erons</i></p>
+                       <p><i>erez</i></p>
+                       <p><i>eront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>îmes</i></p>
+                       <p><i>îtes</i></p>
+                       <p><i>irent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erais</i></p>
+                       <p><i>erais</i></p>
+                       <p><i>erait</i></p>
+                       <p><i>erions</i></p>
+                       <p><i>eriez</i></p>
+                       <p><i>eraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>asse</i></p>
+                       <p><i>asses</i></p>
+                       <p><i>asse</i></p>
+                       <p><i>assions</i></p>
+                       <p><i>assiez</i></p>
+                       <p><i>assent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>isse</i></p>
+                       <p><i>isses</i></p>
+                       <p><i>ît</i></p>
+                       <p><i>issions</i></p>
+                       <p><i>issiez</i></p>
+                       <p><i>issent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ais</i></p>
+                       <p><i>aisons</i></p>
+                       <p><i>aites</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>aisant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ait</i></p>
+                       <p><i>aits</i></p>
+                       <p><i>aite</i></p>
+                       <p><i>aites</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="extra:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yais</i></p>
+                       <p><i>yais</i></p>
+                       <p><i>yait</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>yant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>it</i></p>
+                       <p><i>its</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ites</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="bra:ire">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yais</i></p>
+                       <p><i>yais</i></p>
+                       <p><i>yait</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>yant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>it</i></p>
+                       <p><i>its</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ites</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="s:ourdre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ourdre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ourd</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>ourdent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>ourdait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>ourdaient</i></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cl:ore">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ore</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>os</i></p>
+                       <p><i>os</i></p>
+                       <p><i>ôt</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>osent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p><i>orai</i></p>
+                       <p><i>oras</i></p>
+                       <p><i>ora</i></p>
+                       <p><i>orons</i></p>
+                       <p><i>orez</i></p>
+                       <p><i>oront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>orais</i></p>
+                       <p><i>orais</i></p>
+                       <p><i>orait</i></p>
+                       <p><i>orions</i></p>
+                       <p><i>oriez</i></p>
+                       <p><i>oraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ose</i></p>
+                       <p><i>oses</i></p>
+                       <p><i>ose</i></p>
+                       <p><i>osions</i></p>
+                       <p><i>osiez</i></p>
+                       <p><i>osent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>os</i></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>osant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>os</i></p>
+                       <p><i>os</i></p>
+                       <p><i>ose</i></p>
+                       <p><i>oses</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="éclo:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p><i>rai</i></p>
+                       <p><i>ras</i></p>
+                       <p><i>ra</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+                       <p><i>ront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>rais</i></p>
+                       <p><i>rais</i></p>
+                       <p><i>rait</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>raient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>se</i></p>
+                       <p><i>ses</i></p>
+                       <p><i>se</i></p>
+                       <p><i>sions</i></p>
+                       <p><i>siez</i></p>
+                       <p><i>sent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>sant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>se</i></p>
+                       <p><i>ses</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="forclo:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>se</i></p>
+                       <p><i>ses</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fri:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>t</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p><i>rai</i></p>
+                       <p><i>ras</i></p>
+                       <p><i>ra</i></p>
+                       <p><i>rons</i></p>
+                       <p><i>rez</i></p>
+                       <p><i>ront</i></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>rais</i></p>
+                       <p><i>rais</i></p>
+                       <p><i>rait</i></p>
+                       <p><i>rions</i></p>
+                       <p><i>riez</i></p>
+                       <p><i>raient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>s</i></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>t</i></p>
+                       <p><i>ts</i></p>
+                       <p><i>te</i></p>
+                       <p><i>tes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="brui:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>t</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>ssent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p><i>ssait</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>ssaient</i></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>sse</i></p>
+                       <p></p>
+                       <p></p>
+                       <p><i>ssent</i></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ssant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="oi:ndre">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ndre</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ns</i></p>
+                       <p><i>ns</i></p>
+                       <p><i>nt</i></p>
+                       <p><i>gnons</i></p>
+                       <p><i>gnez</i></p>
+                       <p><i>gnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>gnais</i></p>
+                       <p><i>gnais</i></p>
+                       <p><i>gnait</i></p>
+                       <p><i>gnions</i></p>
+                       <p><i>gniez</i></p>
+                       <p><i>gnaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ndrai</i></p>
+                       <p><i>ndras</i></p>
+                       <p><i>ndra</i></p>
+                       <p><i>ndrons</i></p>
+                       <p><i>ndrez</i></p>
+                       <p><i>ndront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>gnis</i></p>
+                       <p><i>gnis</i></p>
+                       <p><i>gnit</i></p>
+                       <p><i>gnîmes</i></p>
+                       <p><i>gnîtes</i></p>
+                       <p><i>gnirent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ndrais</i></p>
+                       <p><i>ndrais</i></p>
+                       <p><i>ndrait</i></p>
+                       <p><i>ndrions</i></p>
+                       <p><i>ndriez</i></p>
+                       <p><i>ndraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>gne</i></p>
+                       <p><i>gnes</i></p>
+                       <p><i>gne</i></p>
+                       <p><i>gnions</i></p>
+                       <p><i>gniez</i></p>
+                       <p><i>gnent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>gnisse</i></p>
+                       <p><i>gnisses</i></p>
+                       <p><i>gnît</i></p>
+                       <p><i>gnissions</i></p>
+                       <p><i>gnissiez</i></p>
+                       <p><i>gnissent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ns</i></p>
+                       <p><i>gnons</i></p>
+                       <p><i>gnez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>gnant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>nt</i></p>
+                       <p><i>nts</i></p>
+                       <p><i>nte</i></p>
+                       <p><i>ntes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="env:oyer">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>oyer</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyais</i></p>
+                       <p><i>oyais</i></p>
+                       <p><i>oyait</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oyaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>errai</i></p>
+                       <p><i>erras</i></p>
+                       <p><i>erra</i></p>
+                       <p><i>errons</i></p>
+                       <p><i>errez</i></p>
+                       <p><i>erront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>oyai</i></p>
+                       <p><i>oyas</i></p>
+                       <p><i>oya</i></p>
+                       <p><i>oyâmes</i></p>
+                       <p><i>oyâtes</i></p>
+                       <p><i>oyèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>errais</i></p>
+                       <p><i>errais</i></p>
+                       <p><i>errait</i></p>
+                       <p><i>errions</i></p>
+                       <p><i>erriez</i></p>
+                       <p><i>erraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oie</i></p>
+                       <p><i>oies</i></p>
+                       <p><i>oie</i></p>
+                       <p><i>oyions</i></p>
+                       <p><i>oyiez</i></p>
+                       <p><i>oient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>oyasse</i></p>
+                       <p><i>oyasses</i></p>
+                       <p><i>oyât</i></p>
+                       <p><i>oyassions</i></p>
+                       <p><i>oyassiez</i></p>
+                       <p><i>oyassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>oie</i></p>
+                       <p><i>oyons</i></p>
+                       <p><i>oyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>oyant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>oyé</i></p>
+                       <p><i>oyés</i></p>
+                       <p><i>oyée</i></p>
+                       <p><i>oyées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name=":avoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>avoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ai</i></p>
+                       <p><i>as</i></p>
+                       <p><i>a</i></p>
+                       <p><i>avons</i></p>
+                       <p><i>avez</i></p>
+                       <p><i>ont</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avais</i></p>
+                       <p><i>avais</i></p>
+                       <p><i>avait</i></p>
+                       <p><i>avions</i></p>
+                       <p><i>aviez</i></p>
+                       <p><i>avaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aurai</i></p>
+                       <p><i>auras</i></p>
+                       <p><i>aura</i></p>
+                       <p><i>aurons</i></p>
+                       <p><i>aurez</i></p>
+                       <p><i>auront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>eus</i></p>
+                       <p><i>eus</i></p>
+                       <p><i>eut</i></p>
+                       <p><i>eûmes</i></p>
+                       <p><i>eûtes</i></p>
+                       <p><i>eurent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aurais</i></p>
+                       <p><i>aurais</i></p>
+                       <p><i>aurait</i></p>
+                       <p><i>aurions</i></p>
+                       <p><i>auriez</i></p>
+                       <p><i>auraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aie</i></p>
+                       <p><i>aies</i></p>
+                       <p><i>ait</i></p>
+                       <p><i>ayons</i></p>
+                       <p><i>ayez</i></p>
+                       <p><i>aient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>eusse</i></p>
+                       <p><i>eusses</i></p>
+                       <p><i>eût</i></p>
+                       <p><i>eussions</i></p>
+                       <p><i>eussiez</i></p>
+                       <p><i>eussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>aie</i></p>
+                       <p><i>ayons</i></p>
+                       <p><i>ayez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ayant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>eu</i></p>
+                       <p><i>eus</i></p>
+                       <p><i>eue</i></p>
+                       <p><i>eues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name=":être">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>être</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>suis</i></p>
+                       <p><i>es</i></p>
+                       <p><i>est</i></p>
+                       <p><i>sommes</i></p>
+                       <p><i>êtes</i></p>
+                       <p><i>sont</i></p>
+               </present>
+               <imperfect>
+                       <p><i>étais</i></p>
+                       <p><i>étais</i></p>
+                       <p><i>était</i></p>
+                       <p><i>étions</i></p>
+                       <p><i>étiez</i></p>
+                       <p><i>étaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>serai</i></p>
+                       <p><i>seras</i></p>
+                       <p><i>sera</i></p>
+                       <p><i>serons</i></p>
+                       <p><i>serez</i></p>
+                       <p><i>seront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>fus</i></p>
+                       <p><i>fus</i></p>
+                       <p><i>fut</i></p>
+                       <p><i>fûmes</i></p>
+                       <p><i>fûtes</i></p>
+                       <p><i>furent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>serais</i></p>
+                       <p><i>serais</i></p>
+                       <p><i>serait</i></p>
+                       <p><i>serions</i></p>
+                       <p><i>seriez</i></p>
+                       <p><i>seraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>sois</i></p>
+                       <p><i>sois</i></p>
+                       <p><i>soit</i></p>
+                       <p><i>soyons</i></p>
+                       <p><i>soyez</i></p>
+                       <p><i>soient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>fusse</i></p>
+                       <p><i>fusses</i></p>
+                       <p><i>fût</i></p>
+                       <p><i>fussions</i></p>
+                       <p><i>fussiez</i></p>
+                       <p><i>fussent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>sois</i></p>
+                       <p><i>soyons</i></p>
+                       <p><i>soyez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>étant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>été</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name=":aller">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aller</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>vais</i></p>
+                       <p><i>vas</i></p>
+                       <p><i>va</i></p>
+                       <p><i>allons</i></p>
+                       <p><i>allez</i></p>
+                       <p><i>vont</i></p>
+               </present>
+               <imperfect>
+                       <p><i>allais</i></p>
+                       <p><i>allais</i></p>
+                       <p><i>allait</i></p>
+                       <p><i>allions</i></p>
+                       <p><i>alliez</i></p>
+                       <p><i>allaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i></p>
+                       <p><i>iras</i></p>
+                       <p><i>ira</i></p>
+                       <p><i>irons</i></p>
+                       <p><i>irez</i></p>
+                       <p><i>iront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>allai</i></p>
+                       <p><i>allas</i></p>
+                       <p><i>alla</i></p>
+                       <p><i>allâmes</i></p>
+                       <p><i>allâtes</i></p>
+                       <p><i>allèrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i></p>
+                       <p><i>irais</i></p>
+                       <p><i>irait</i></p>
+                       <p><i>irions</i></p>
+                       <p><i>iriez</i></p>
+                       <p><i>iraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>aille</i></p>
+                       <p><i>ailles</i></p>
+                       <p><i>aille</i></p>
+                       <p><i>allions</i></p>
+                       <p><i>alliez</i></p>
+                       <p><i>aillent</i></p>
+               </present>
+               <imperfect>
+                       <p><i>allasse</i></p>
+                       <p><i>allasses</i></p>
+                       <p><i>allât</i></p>
+                       <p><i>allassions</i></p>
+                       <p><i>allassiez</i></p>
+                       <p><i>allassent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>va</i></p>
+                       <p><i>allons</i></p>
+                       <p><i>allez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>allant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>allé</i></p>
+                       <p><i>allés</i></p>
+                       <p><i>allée</i></p>
+                       <p><i>allées</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="app:aroir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>aroir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ert</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="cha:loir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>loir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p><i>ut</i></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name=":ravoir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ravoir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="est:er">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>er</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="fér:ir">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ir</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>u</i></p>
+                       <p><i>us</i></p>
+                       <p><i>ue</i></p>
+                       <p><i>ues</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="o:uïr">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>uïr</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>is</i></p>
+                       <p><i>is</i></p>
+                       <p><i>it</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>yais</i></p>
+                       <p><i>yais</i></p>
+                       <p><i>yait</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>yaient</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irai</i><i>uïrai</i><i>rrai</i></p>
+                       <p><i>iras</i><i>uïras</i><i>rras</i></p>
+                       <p><i>ira</i><i>uïra</i><i>rra</i></p>
+                       <p><i>irons</i><i>uïrons</i><i>rrons</i></p>
+                       <p><i>irez</i><i>uïrez</i><i>rrez</i></p>
+                       <p><i>iront</i><i>uïront</i><i>rront</i></p>
+               </future>
+               <simple-past>
+                       <p><i>uïs</i></p>
+                       <p><i>uïs</i></p>
+                       <p><i>uït</i></p>
+                       <p><i>uïmes</i></p>
+                       <p><i>uïtes</i></p>
+                       <p><i>uïrent</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irais</i><i>uïrais</i><i>rrais</i></p>
+                       <p><i>irais</i><i>uïrais</i><i>rrais</i></p>
+                       <p><i>irait</i><i>uïrait</i><i>rrait</i></p>
+                       <p><i>irions</i><i>uïrions</i><i>rrions</i></p>
+                       <p><i>iriez</i><i>uïriez</i><i>rriez</i></p>
+                       <p><i>iraient</i><i>uïraient</i><i>rraient</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ie</i></p>
+                       <p><i>ies</i></p>
+                       <p><i>ie</i></p>
+                       <p><i>yions</i></p>
+                       <p><i>yiez</i></p>
+                       <p><i>ient</i></p>
+               </present>
+               <imperfect>
+                       <p><i>uïsse</i></p>
+                       <p><i>uïsses</i></p>
+                       <p><i>uït</i></p>
+                       <p><i>uïssions</i></p>
+                       <p><i>uïssiez</i></p>
+                       <p><i>uïssent</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>is</i></p>
+                       <p><i>yons</i></p>
+                       <p><i>yez</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>yant</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>uï</i></p>
+                       <p><i>uïs</i></p>
+                       <p><i>uïe</i></p>
+                       <p><i>uïes</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+<template name="occi:re">
+       <infinitive>
+               <infinitive-present>
+                       <p><i>re</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+               <future>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </future>
+               <simple-past>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </present>
+               <imperfect>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>s</i></p>
+                       <p><i>s</i></p>
+                       <p><i>se</i></p>
+                       <p><i>ses</i></p>
+               </past-participle>
+       </participle>
+</template>
+
+</conjugation-fr>
diff --git a/data/conjugation-it.xml b/data/conjugation-it.xml
new file mode 100644 (file)
index 0000000..a66bdae
--- /dev/null
@@ -0,0 +1,2142 @@
+<?xml version="1.0"?>
+
+<!--
+       conjugation-it.xml - Italian conjugation templates
+       Copyright (C) 2010 Christophe Durville <http://polyglotte.tuxfamily.org>
+       Copyright (C) 2010 Pierre Sarrazin <http://sarrazip.com/>
+
+       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., 59 Temple Place - Suite 330, Boston, MA
+       02111-1307, USA.
+-->
+
+<!DOCTYPE conjugation-it [
+       <!ELEMENT conjugation-it (template+)>
+       <!ELEMENT template (infinitive, indicative, conditional, subjunctive, imperative, participle, gerund)>
+       <!ATTLIST template name CDATA #REQUIRED>
+
+       <!ELEMENT infinitive (infinitive-present)>
+       <!ELEMENT indicative (present, imperfect, future, simple-past)>
+       <!ELEMENT conditional (present)> 
+       <!ELEMENT subjunctive (present, imperfect)>
+       <!ELEMENT imperative (imperative-present)>
+       <!ELEMENT participle (present-participle, past-participle)>
+       <!ELEMENT gerund (present-gerund)>
+
+       <!ELEMENT infinitive-present (p)>
+       <!ELEMENT present (p, p, p, p, p, p)>
+       <!ELEMENT present-gerund (p)>
+       <!ELEMENT imperfect (p, p, p, p, p, p)>
+       <!ELEMENT future (p, p, p, p, p, p)>
+       <!ELEMENT simple-past (p, p, p, p, p, p)>
+       <!ELEMENT imperative-present (p, p, p, p, p)>
+       <!ELEMENT present-participle (p)>
+       <!ELEMENT past-participle (p, p, p, p)>
+
+       <!ELEMENT p (i*)>
+       <!ELEMENT i (#PCDATA)>
+]>
+
+<conjugation-it>
+
+<template name="am:are">  <!-- 1er groupe -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>are</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i></p>
+                       <p><i>i</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>ano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avo</i></p>
+                       <p><i>avi</i></p>
+                       <p><i>ava</i></p>
+                       <p><i>avamo</i></p>
+                       <p><i>avate</i></p>
+                       <p><i>avano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erò</i></p>
+                       <p><i>erai</i></p>
+                       <p><i>erà</i></p>
+                       <p><i>eremo</i></p>
+                       <p><i>erete</i></p>
+                       <p><i>eranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ai</i></p>
+                       <p><i>asti</i></p>
+                       <p><i>ò</i></p>
+                       <p><i>ammo</i></p>
+                       <p><i>aste</i></p>
+                       <p><i>arono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erei</i></p>
+                       <p><i>eresti</i></p>
+                       <p><i>erebbe</i></p>
+                       <p><i>eremmo</i></p>
+                       <p><i>ereste</i></p>
+                       <p><i>erebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>i</i></p>
+                       <p><i>i</i></p>
+                       <p><i>i</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>ino</i></p>
+               </present>
+               <imperfect>
+                       <p><i>assi</i></p>
+                       <p><i>assi</i></p>
+                       <p><i>asse</i></p>
+                       <p><i>assimo</i></p>
+                       <p><i>aste</i></p>
+                       <p><i>assero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>a</i></p>
+                       <p><i>i</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>ino</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ante</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ato</i></p>
+                       <p><i>ati</i></p>
+                       <p><i>ata</i></p>
+                       <p><i>ate</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ando</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+
+<template name="mang:iare">  <!-- 1er groupe (en iare) -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>iare</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>io</i></p>
+                       <p><i>i</i></p>
+                       <p><i>ia</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>iano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>iavo</i></p>
+                       <p><i>iavi</i></p>
+                       <p><i>iava</i></p>
+                       <p><i>iavamo</i></p>
+                       <p><i>iavate</i></p>
+                       <p><i>iavano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erò</i></p>
+                       <p><i>erai</i></p>
+                       <p><i>erà</i></p>
+                       <p><i>eremo</i></p>
+                       <p><i>erete</i></p>
+                       <p><i>eranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>iai</i></p>
+                       <p><i>iasti</i></p>
+                       <p><i>iò</i></p>
+                       <p><i>iammo</i></p>
+                       <p><i>iaste</i></p>
+                       <p><i>iarono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erei</i></p>
+                       <p><i>eresti</i></p>
+                       <p><i>erebbe</i></p>
+                       <p><i>eremmo</i></p>
+                       <p><i>ereste</i></p>
+                       <p><i>erebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>i</i></p>
+                       <p><i>i</i></p>
+                       <p><i>i</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>ino</i></p>
+               </present>
+               <imperfect>
+                       <p><i>iassi</i></p>
+                       <p><i>iassi</i></p>
+                       <p><i>iasse</i></p>
+                       <p><i>iassimo</i></p>
+                       <p><i>iaste</i></p>
+                       <p><i>iassero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ia</i></p>
+                       <p><i>i</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>ino</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>iante</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>iato</i></p>
+                       <p><i>iati</i></p>
+                       <p><i>iata</i></p>
+                       <p><i>iate</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>iando</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="studi:are">  <!-- 1er groupe (en iare) -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>are</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i></p>
+                       <p><i></i></p>
+                       <p><i>a</i></p>
+                       <p><i>amo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>ano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avo</i></p>
+                       <p><i>avi</i></p>
+                       <p><i>ava</i></p>
+                       <p><i>avamo</i></p>
+                       <p><i>avate</i></p>
+                       <p><i>avano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erò</i></p>
+                       <p><i>erai</i></p>
+                       <p><i>erà</i></p>
+                       <p><i>eremo</i></p>
+                       <p><i>erete</i></p>
+                       <p><i>eranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>iai</i></p>
+                       <p><i>iasti</i></p>
+                       <p><i>iò</i></p>
+                       <p><i>iammo</i></p>
+                       <p><i>iaste</i></p>
+                       <p><i>iarono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erei</i></p>
+                       <p><i>eresti</i></p>
+                       <p><i>erebbe</i></p>
+                       <p><i>eremmo</i></p>
+                       <p><i>ereste</i></p>
+                       <p><i>erebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i></i></p>
+                       <p><i></i></p>
+                       <p><i></i></p>
+                       <p><i>amo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>no</i></p>
+               </present>
+               <imperfect>
+                       <p><i>iassi</i></p>
+                       <p><i>iassi</i></p>
+                       <p><i>iasse</i></p>
+                       <p><i>iassimo</i></p>
+                       <p><i>iaste</i></p>
+                       <p><i>iassero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>a</i></p>
+                       <p><i></i></p>
+                       <p><i>amo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>no</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ante</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ato</i></p>
+                       <p><i>ati</i></p>
+                       <p><i>ata</i></p>
+                       <p><i>ate</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ando</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="cred:ere">  <!-- 2ème groupe -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i></p>
+                       <p><i>i</i></p>
+                       <p><i>e</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ete</i></p>
+                       <p><i>ono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>evo</i></p>
+                       <p><i>evi</i></p>
+                       <p><i>eva</i></p>
+                       <p><i>evamo</i></p>
+                       <p><i>evate</i></p>
+                       <p><i>evano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erò</i></p>
+                       <p><i>erai</i></p>
+                       <p><i>erà</i></p>
+                       <p><i>eremo</i></p>
+                       <p><i>erete</i></p>
+                       <p><i>eranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>etti</i><i> ei</i></p>
+                       <p><i>esti</i></p>
+                       <p><i>ette</i><i> é</i></p>
+                       <p><i>emmo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>ettero</i><i> erono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erei</i></p>
+                       <p><i>eresti</i></p>
+                       <p><i>erebbe</i></p>
+                       <p><i>eremmo</i></p>
+                       <p><i>ereste</i></p>
+                       <p><i>erebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>a</i></p>
+                       <p><i>a</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>ano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>essi</i></p>
+                       <p><i>essi</i></p>
+                       <p><i>esse</i></p>
+                       <p><i>essimo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>essero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>i</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ete</i></p>
+                       <p><i>ano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>uto</i></p>
+                       <p><i>uti</i></p>
+                       <p><i>uta</i></p>
+                       <p><i>ute</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>endo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="le:ggere">  <!-- 2ème groupe (exception) -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ggere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ggo</i></p>
+                       <p><i>ggi</i></p>
+                       <p><i>gge</i></p>
+                       <p><i>ggiamo</i></p>
+                       <p><i>ggete</i></p>
+                       <p><i>ggono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ggevo</i></p>
+                       <p><i>ggevi</i></p>
+                       <p><i>ggeva</i></p>
+                       <p><i>ggevamo</i></p>
+                       <p><i>ggevate</i></p>
+                       <p><i>ggevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ggerò</i></p>
+                       <p><i>ggerai</i></p>
+                       <p><i>ggerà</i></p>
+                       <p><i>ggeremo</i></p>
+                       <p><i>ggerete</i></p>
+                       <p><i>ggeranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ssi</i><i>ei</i></p>
+                       <p><i>ggesti</i></p>
+                       <p><i>sse</i><i>é</i></p>
+                       <p><i>ggemmo</i></p>
+                       <p><i>ggeste</i></p>
+                       <p><i>ssero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ggerei</i></p>
+                       <p><i>ggeresti</i></p>
+                       <p><i>ggerebbe</i></p>
+                       <p><i>ggeremmo</i></p>
+                       <p><i>ggereste</i></p>
+                       <p><i>ggerebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>gga</i></p>
+                       <p><i>gga</i></p>
+                       <p><i>gga</i></p>
+                       <p><i>ggiamo</i></p>
+                       <p><i>ggiate</i></p>
+                       <p><i>ggano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ggessi</i></p>
+                       <p><i>ggessi</i></p>
+                       <p><i>ggesse</i></p>
+                       <p><i>ggessimo</i></p>
+                       <p><i>ggeste</i></p>
+                       <p><i>ggessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>ggi</i></p>
+                       <p><i>gga</i></p>
+                       <p><i>ggiamo</i></p>
+                       <p><i>ggete</i></p>
+                       <p><i>ggano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ggente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>tto</i></p>
+                       <p><i>tti</i></p>
+                       <p><i>tta</i></p>
+                       <p><i>tte</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ggendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="m:ettere">  <!-- 2ème groupe (exc) -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ettere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>etto</i></p>
+                       <p><i>etti</i></p>
+                       <p><i>ette</i></p>
+                       <p><i>ettiamo</i></p>
+                       <p><i>ettete</i></p>
+                       <p><i>ettono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ettevo</i></p>
+                       <p><i>ettevi</i></p>
+                       <p><i>etteva</i></p>
+                       <p><i>ettevamo</i></p>
+                       <p><i>ettevate</i></p>
+                       <p><i>ettevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>etterò</i></p>
+                       <p><i>etterai</i></p>
+                       <p><i>etterà</i></p>
+                       <p><i>etteremo</i></p>
+                       <p><i>etterete</i></p>
+                       <p><i>etteranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>isi</i></p>
+                       <p><i>ettesti</i></p>
+                       <p><i>ise</i></p>
+                       <p><i>ettemmo</i></p>
+                       <p><i>etteste</i></p>
+                       <p><i>isero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>etterei</i></p>
+                       <p><i>etteresti</i></p>
+                       <p><i>etterebbe</i></p>
+                       <p><i>etteremmo</i></p>
+                       <p><i>ettereste</i></p>
+                       <p><i>etterebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>etta</i></p>
+                       <p><i>etta</i></p>
+                       <p><i>etta</i></p>
+                       <p><i>ettiamo</i></p>
+                       <p><i>ettiate</i></p>
+                       <p><i>ettano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ettessi</i></p>
+                       <p><i>ettessi</i></p>
+                       <p><i>ettesse</i></p>
+                       <p><i>ettessimo</i></p>
+                       <p><i>etteste</i></p>
+                       <p><i>ettessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>i</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ete</i></p>
+                       <p><i>ano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ettente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>esso</i></p>
+                       <p><i>essi</i></p>
+                       <p><i>essa</i></p>
+                       <p><i>esse</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ettendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="v:edere">  <!-- 2ème groupe -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>edere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>edo</i><i>eggo</i></p>
+                       <p><i>edi</i></p>
+                       <p><i>ede</i></p>
+                       <p><i>ediamo</i></p>
+                       <p><i>edete</i></p>
+                       <p><i>edono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>edevo</i></p>
+                       <p><i>edevi</i></p>
+                       <p><i>edeva</i></p>
+                       <p><i>edevamo</i></p>
+                       <p><i>edevate</i></p>
+                       <p><i>edevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ederò</i><i>edrò</i></p>
+                       <p><i>ederai</i><i>edrai</i></p>
+                       <p><i>ederà</i><i>edrà</i></p>
+                       <p><i>ederemo</i><i>edremo</i></p>
+                       <p><i>ederete</i><i>edrete</i></p>
+                       <p><i>ederanno</i><i>edranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>edetti</i><i>idi</i></p>
+                       <p><i>edesti</i></p>
+                       <p><i>edette</i><i>ide</i></p>
+                       <p><i>edemmo</i></p>
+                       <p><i>edeste</i></p>
+                       <p><i>edettero</i><i>ederono</i><i>idero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>edrei</i></p>
+                       <p><i>edresti</i></p>
+                       <p><i>edrebbe</i></p>
+                       <p><i>edremmo</i></p>
+                       <p><i>edreste</i></p>
+                       <p><i>edrebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>eda</i></p>
+                       <p><i>eda</i></p>
+                       <p><i>eda</i></p>
+                       <p><i>ediamo</i></p>
+                       <p><i>ediate</i></p>
+                       <p><i>edano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>edessi</i></p>
+                       <p><i>edessi</i></p>
+                       <p><i>edesse</i></p>
+                       <p><i>edessimo</i></p>
+                       <p><i>edeste</i></p>
+                       <p><i>edessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>edi</i></p>
+                       <p><i>eda</i></p>
+                       <p><i>ediamo</i></p>
+                       <p><i>edete</i></p>
+                       <p><i>edano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>edente</i><i>eggente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>eduto</i><i>isto</i></p>
+                       <p><i>eduti</i><i>isti</i></p>
+                       <p><i>eduta</i><i>ista</i></p>
+                       <p><i>edute</i><i>iste</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>edendo</i><i>eggendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="piac:ere">  <!-- 2ème groupe -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>cio</i></p>
+                       <p><i>i</i></p>
+                       <p><i>e</i></p>
+                       <p><i>iamo</i><i>ciamo</i></p>
+                       <p><i>ete</i></p>
+                       <p><i>iono</i><i>ciono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>evo</i></p>
+                       <p><i>evi</i></p>
+                       <p><i>eva</i></p>
+                       <p><i>evamo</i></p>
+                       <p><i>evate</i></p>
+                       <p><i>evano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>erò</i></p>
+                       <p><i>erai</i></p>
+                       <p><i>erà</i></p>
+                       <p><i>eremo</i></p>
+                       <p><i>erete</i></p>
+                       <p><i>eranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>qui</i></p>
+                       <p><i>esti</i></p>
+                       <p><i>que</i></p>
+                       <p><i>emmo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>quero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>erei</i></p>
+                       <p><i>eresti</i></p>
+                       <p><i>erebbe</i></p>
+                       <p><i>eremmo</i></p>
+                       <p><i>ereste</i></p>
+                       <p><i>erebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>cia</i></p>
+                       <p><i>cia</i></p>
+                       <p><i>cia</i></p>
+                       <p><i>ciamo</i><i>iamo</i></p>
+                       <p><i>ciate</i><i>iate</i></p>
+                       <p><i>ciano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>essi</i></p>
+                       <p><i>essi</i></p>
+                       <p><i>esse</i></p>
+                       <p><i>essimo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>essero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>i</i></p>
+                       <p><i>cia</i></p>
+                       <p><i>ciamo</i></p>
+                       <p><i>ete</i></p>
+                       <p><i>iano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>iuto</i></p>
+                       <p><i>iuti</i></p>
+                       <p><i>iuta</i></p>
+                       <p><i>iute</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>endo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="part:ire">  <!-- 3ème groupe (a)-->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i></p>
+                       <p><i>i</i></p>
+                       <p><i>e</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ivo</i></p>
+                       <p><i>ivi</i></p>
+                       <p><i>iva</i></p>
+                       <p><i>ivamo</i></p>
+                       <p><i>ivate</i></p>
+                       <p><i>ivano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irò</i></p>
+                       <p><i>irai</i></p>
+                       <p><i>irà</i></p>
+                       <p><i>iremo</i></p>
+                       <p><i>irete</i></p>
+                       <p><i>iranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ii</i></p>
+                       <p><i>isti</i></p>
+                       <p><i>ì</i></p>
+                       <p><i>immo</i></p>
+                       <p><i>iste</i></p>
+                       <p><i>irono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irei</i></p>
+                       <p><i>iresti</i></p>
+                       <p><i>irebbe</i></p>
+                       <p><i>iremmo</i></p>
+                       <p><i>ireste</i></p>
+                       <p><i>irebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>a</i></p>
+                       <p><i>a</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>ano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>issi</i></p>
+                       <p><i>issi</i></p>
+                       <p><i>isse</i></p>
+                       <p><i>issimo</i></p>
+                       <p><i>iste</i></p>
+                       <p><i>issero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>i</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>ano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ito</i></p>
+                       <p><i>iti</i></p>
+                       <p><i>ita</i></p>
+                       <p><i>ite</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>endo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="fin:ire">  <!-- 3ème groupe (b)-->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>ire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>isco</i></p>
+                       <p><i>isci</i></p>
+                       <p><i>isce</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>iscono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ivo</i></p>
+                       <p><i>ivi</i></p>
+                       <p><i>iva</i></p>
+                       <p><i>ivamo</i></p>
+                       <p><i>ivate</i></p>
+                       <p><i>ivano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>irò</i></p>
+                       <p><i>irai</i></p>
+                       <p><i>irà</i></p>
+                       <p><i>iremo</i></p>
+                       <p><i>irete</i></p>
+                       <p><i>iranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ii</i></p>
+                       <p><i>isti</i></p>
+                       <p><i>ì</i></p>
+                       <p><i>immo</i></p>
+                       <p><i>iste</i></p>
+                       <p><i>irono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>irei</i></p>
+                       <p><i>iresti</i></p>
+                       <p><i>irebbe</i></p>
+                       <p><i>iremmo</i></p>
+                       <p><i>ireste</i></p>
+                       <p><i>irebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>isca</i></p>
+                       <p><i>isca</i></p>
+                       <p><i>isca</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>iscano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>issi</i></p>
+                       <p><i>issi</i></p>
+                       <p><i>isse</i></p>
+                       <p><i>issimo</i></p>
+                       <p><i>iste</i></p>
+                       <p><i>issero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>i</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ite</i></p>
+                       <p><i>iscano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ito</i></p>
+                       <p><i>iti</i></p>
+                       <p><i>ita</i></p>
+                       <p><i>ite</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>endo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name=":avere">  <!-- auxiliaire avoir-->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>avere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>ho</i></p>
+                       <p><i>hai</i></p>
+                       <p><i>ha</i></p>
+                       <p><i>abbiamo</i></p>
+                       <p><i>avete</i></p>
+                       <p><i>hanno</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avevo</i></p>
+                       <p><i>avevi</i></p>
+                       <p><i>aveva</i></p>
+                       <p><i>avevamo</i></p>
+                       <p><i>avevate</i></p>
+                       <p><i>avevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>avrò</i></p>
+                       <p><i>avrai</i></p>
+                       <p><i>avrà</i></p>
+                       <p><i>avremo</i></p>
+                       <p><i>avrete</i></p>
+                       <p><i>avranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ebbi</i></p>
+                       <p><i>avesti</i></p>
+                       <p><i>ebbe</i></p>
+                       <p><i>avemmo</i></p>
+                       <p><i>aveste</i></p>
+                       <p><i>eberro</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>avrei</i></p>
+                       <p><i>avresti</i></p>
+                       <p><i>avrebbe</i></p>
+                       <p><i>avremmo</i></p>
+                       <p><i>avreste</i></p>
+                       <p><i>avrebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>abbia</i></p>
+                       <p><i>abbia</i></p>
+                       <p><i>abbia</i></p>
+                       <p><i>abbiamo</i></p>
+                       <p><i>abbiate</i></p>
+                       <p><i>abbiano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avessi</i></p>
+                       <p><i>avessi</i></p>
+                       <p><i>avesse</i></p>
+                       <p><i>avessimo</i></p>
+                       <p><i>aveste</i></p>
+                       <p><i>avessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>abbi</i></p>
+                       <p><i>abbia</i></p>
+                       <p><i>abbiamo</i></p>
+                       <p><i>abbite</i></p>
+                       <p><i>abbiano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>avente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>avuto</i></p>
+                       <p><i>avuti</i></p>
+                       <p><i>avuta</i></p>
+                       <p><i>avute</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>avendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name=":essere">  <!-- auxiliaire être-->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>essere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>sono</i></p>
+                       <p><i>sei</i></p>
+                       <p><i>è</i></p>
+                       <p><i>siamo</i></p>
+                       <p><i>siete</i></p>
+                       <p><i>sono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ero</i></p>
+                       <p><i>eri</i></p>
+                       <p><i>era</i></p>
+                       <p><i>eravamo</i></p>
+                       <p><i>eravate</i></p>
+                       <p><i>erano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>sarò</i></p>
+                       <p><i>sarai</i></p>
+                       <p><i>sarà</i></p>
+                       <p><i>saremo</i></p>
+                       <p><i>sarete</i></p>
+                       <p><i>saranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>fui</i></p>
+                       <p><i>fosti</i></p>
+                       <p><i>fue</i></p>
+                       <p><i>fummo</i></p>
+                       <p><i>foste</i></p>
+                       <p><i>furono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>sarei</i></p>
+                       <p><i>saresti</i></p>
+                       <p><i>sarebbe</i></p>
+                       <p><i>saremmo</i></p>
+                       <p><i>sareste</i></p>
+                       <p><i>sarebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>sia</i></p>
+                       <p><i>sia</i></p>
+                       <p><i>sia</i></p>
+                       <p><i>siamo</i></p>
+                       <p><i>siate</i></p>
+                       <p><i>siano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>fossi</i></p>
+                       <p><i>fossi</i></p>
+                       <p><i>fosse</i></p>
+                       <p><i>fossimo</i></p>
+                       <p><i>foste</i></p>
+                       <p><i>foessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>sii</i></p>
+                       <p><i>sia</i></p>
+                       <p><i>siamo</i></p>
+                       <p><i>siate</i></p>
+                       <p><i>sano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>stato</i></p>
+                       <p><i>stati</i></p>
+                       <p><i>stata</i></p>
+                       <p><i>state</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>essendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name=":uscire">  <!-- 3ème groupe : exception -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>uscire</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>esco</i></p>
+                       <p><i>esci</i></p>
+                       <p><i>esce</i></p>
+                       <p><i>usciamo</i></p>
+                       <p><i>uscite</i></p>
+                       <p><i>escono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>uscivo</i></p>
+                       <p><i>uscivi</i></p>
+                       <p><i>usciva</i></p>
+                       <p><i>uscivamo</i></p>
+                       <p><i>uscivate</i></p>
+                       <p><i>uscivano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>uscirò</i></p>
+                       <p><i>uscirai</i></p>
+                       <p><i>uscirà</i></p>
+                       <p><i>usciremo</i></p>
+                       <p><i>uscirete</i></p>
+                       <p><i>usciranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>uscii</i></p>
+                       <p><i>uscirai</i></p>
+                       <p><i>uscirà</i></p>
+                       <p><i>usciremo</i></p>
+                       <p><i>uscirete</i></p>
+                       <p><i>usciranno</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>uscirei</i></p>
+                       <p><i>usciresti</i></p>
+                       <p><i>uscirebbe</i></p>
+                       <p><i>usciremmo</i></p>
+                       <p><i>uscireste</i></p>
+                       <p><i>uscirebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>esca</i></p>
+                       <p><i>esca</i></p>
+                       <p><i>esca</i></p>
+                       <p><i>usciamo</i></p>
+                       <p><i>usciate</i></p>
+                       <p><i>escano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>uscissi</i></p>
+                       <p><i>uscissi</i></p>
+                       <p><i>uscisse</i></p>
+                       <p><i>uscissimo</i></p>
+                       <p><i>usciste</i></p>
+                       <p><i>uscissero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>esci</i></p>
+                       <p><i>esca</i></p>
+                       <p><i>usciamo</i></p>
+                       <p><i>uscite</i></p>
+                       <p><i>escano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>uscente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>uscito</i></p>
+                       <p><i>usciti</i></p>
+                       <p><i>uscita</i></p>
+                       <p><i>uscite</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>uscendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="s:apere">  <!-- 2ème groupe : modal -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>apere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i></p>
+                       <p><i>ai</i></p>
+                       <p><i>a</i></p>
+                       <p><i>appiamo</i></p>
+                       <p><i>apete</i></p>
+                       <p><i>anno</i></p>
+               </present>
+               <imperfect>
+                       <p><i>apevo</i></p>
+                       <p><i>apevi</i></p>
+                       <p><i>apeva</i></p>
+                       <p><i>apevamo</i></p>
+                       <p><i>apevate</i></p>
+                       <p><i>apevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>aprò</i></p>
+                       <p><i>aprai</i></p>
+                       <p><i>aprà</i></p>
+                       <p><i>apremo</i></p>
+                       <p><i>aprete</i></p>
+                       <p><i>apranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>eppi</i></p>
+                       <p><i>apesti</i></p>
+                       <p><i>eppe</i></p>
+                       <p><i>appemo</i></p>
+                       <p><i>apeste</i></p>
+                       <p><i>eppero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>aprei</i></p>
+                       <p><i>apresti</i></p>
+                       <p><i>aprebbe</i></p>
+                       <p><i>apremmo</i></p>
+                       <p><i>apreste</i></p>
+                       <p><i>aprebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>appia</i></p>
+                       <p><i>appia</i></p>
+                       <p><i>appia</i></p>
+                       <p><i>appiamo</i></p>
+                       <p><i>appiate</i></p>
+                       <p><i>appiano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>apessi</i></p>
+                       <p><i>apessi</i></p>
+                       <p><i>apesse</i></p>
+                       <p><i>apessimo</i></p>
+                       <p><i>apeste</i></p>
+                       <p><i>apessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>appi</i></p>
+                       <p><i>appia</i></p>
+                       <p><i>appiamo</i></p>
+                       <p><i>apete</i></p>
+                       <p><i>appiano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>apiente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>aputo</i></p>
+                       <p><i>aputi</i></p>
+                       <p><i>aputa</i></p>
+                       <p><i>apute</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>apendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="p:otere">  <!-- 2ème groupe : modal -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>otere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>osso</i></p>
+                       <p><i>uoi</i></p>
+                       <p><i>uò</i></p>
+                       <p><i>ossiamo</i></p>
+                       <p><i>otete</i></p>
+                       <p><i>ossono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>otevo</i></p>
+                       <p><i>otevi</i></p>
+                       <p><i>oteva</i></p>
+                       <p><i>otevamo</i></p>
+                       <p><i>otevate</i></p>
+                       <p><i>otevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>otrò</i></p>
+                       <p><i>otrai</i></p>
+                       <p><i>otrà</i></p>
+                       <p><i>otremo</i></p>
+                       <p><i>otrete</i></p>
+                       <p><i>otranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>otetti</i><i>otei</i></p>
+                       <p><i>otesti</i></p>
+                       <p><i>otette</i><i>oté</i></p>
+                       <p><i>ottemo</i></p>
+                       <p><i>oteste</i></p>
+                       <p><i>otettero</i><i>oterono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>otrei</i></p>
+                       <p><i>otresti</i></p>
+                       <p><i>otrebbe</i></p>
+                       <p><i>otremmo</i></p>
+                       <p><i>otreste</i></p>
+                       <p><i>otrebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ossa</i></p>
+                       <p><i>ossa</i></p>
+                       <p><i>ossa</i></p>
+                       <p><i>ossiamo</i></p>
+                       <p><i>ossiate</i></p>
+                       <p><i>ossano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>otessi</i></p>
+                       <p><i>otessi</i></p>
+                       <p><i>otesse</i></p>
+                       <p><i>otessimo</i></p>
+                       <p><i>otpeste</i></p>
+                       <p><i>otessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>otente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>otuto</i></p>
+                       <p><i>otuti</i></p>
+                       <p><i>otuta</i></p>
+                       <p><i>otute</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>otendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="d:overe">  <!-- 2ème groupe : modal -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>overe</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>evo</i></p>
+                       <p><i>evi</i></p>
+                       <p><i>eve</i></p>
+                       <p><i>obbiamo</i></p>
+                       <p><i>ovete</i></p>
+                       <p><i>evono</i><i>ebbono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ovevo</i></p>
+                       <p><i>ovevi</i></p>
+                       <p><i>oveva</i></p>
+                       <p><i>ovevamo</i></p>
+                       <p><i>ovevate</i></p>
+                       <p><i>ovevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>ovrò</i></p>
+                       <p><i>ovrai</i></p>
+                       <p><i>ovrà</i></p>
+                       <p><i>ovremo</i></p>
+                       <p><i>ovrete</i></p>
+                       <p><i>ovranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ovetti</i><i>ovei</i></p>
+                       <p><i>ovesti</i></p>
+                       <p><i>ovette</i><i> ové</i></p>
+                       <p><i>ovemmo</i></p>
+                       <p><i>oveste</i></p>
+                       <p><i>ovettero</i><i>overono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>ovrei</i></p>
+                       <p><i>ovresti</i></p>
+                       <p><i>ovrebbe</i></p>
+                       <p><i>ovremmo</i></p>
+                       <p><i>ovreste</i></p>
+                       <p><i>ovrebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>eva</i><i>ebba</i></p>
+                       <p><i>eva</i><i>ebba</i></p>
+                       <p><i>eva</i><i>ebba</i></p>
+                       <p><i>obbiamo</i></p>
+                       <p><i>obbiate</i></p>
+                       <p><i>evano</i><i>ebbano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>ovessi</i></p>
+                       <p><i>ovessi</i></p>
+                       <p><i>ovesse</i></p>
+                       <p><i>ovessimo</i></p>
+                       <p><i>oveste</i></p>
+                       <p><i>ovessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+                       <p></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ovuto</i></p>
+                       <p><i>ovuti</i></p>
+                       <p><i>ovuta</i></p>
+                       <p><i>ovute</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ovendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="v:olere">  <!-- 2ème groupe : modal -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>olere</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>oglio</i></p>
+                       <p><i>uoi</i></p>
+                       <p><i>uole</i></p>
+                       <p><i>ogliamo</i></p>
+                       <p><i>olete</i></p>
+                       <p><i>ogliono</i></p>
+               </present>
+               <imperfect>
+                       <p><i>olevo</i></p>
+                       <p><i>olevi</i></p>
+                       <p><i>oleva</i></p>
+                       <p><i>olevamo</i></p>
+                       <p><i>olevate</i></p>
+                       <p><i>olevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>vorrò</i></p>
+                       <p><i>vorrai</i></p>
+                       <p><i>vorrà</i></p>
+                       <p><i>vorremo</i></p>
+                       <p><i>vorrete</i></p>
+                       <p><i>vorranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>olli</i></p>
+                       <p><i>olesti</i></p>
+                       <p><i>olle</i></p>
+                       <p><i>ollemo</i></p>
+                       <p><i>oleste</i></p>
+                       <p><i>ollero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>orrei</i></p>
+                       <p><i>orresti</i></p>
+                       <p><i>orrebbe</i></p>
+                       <p><i>orremmo</i></p>
+                       <p><i>orreste</i></p>
+                       <p><i>orrebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>oglia</i></p>
+                       <p><i>oglia</i></p>
+                       <p><i>oglia</i></p>
+                       <p><i>ogliamo</i></p>
+                       <p><i>ogliate</i></p>
+                       <p><i>ogliano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>olessi</i></p>
+                       <p><i>olessi</i></p>
+                       <p><i>olesse</i></p>
+                       <p><i>olessimo</i></p>
+                       <p><i>oleste</i></p>
+                       <p><i>olessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>uoi</i></p>
+                       <p><i>oglia</i></p>
+                       <p><i>ogliamo</i></p>
+                       <p><i>olete</i></p>
+                       <p><i>ogliano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>olente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>oluto</i></p>
+                       <p><i>oluti</i></p>
+                       <p><i>oluta</i></p>
+                       <p><i>olute</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>olendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="d:are">  <!-- 1er groupe (exception) -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>are</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i><i>ò</i></p>
+                       <p><i>ai</i></p>
+                       <p><i>à</i><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>ànno</i><i>anno</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avo</i></p>
+                       <p><i>avi</i></p>
+                       <p><i>ava</i></p>
+                       <p><i>avamo</i></p>
+                       <p><i>avate</i></p>
+                       <p><i>avano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>arò</i></p>
+                       <p><i>arai</i></p>
+                       <p><i>arà</i></p>
+                       <p><i>aremo</i></p>
+                       <p><i>arete</i></p>
+                       <p><i>aranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>iedi</i><i>etti</i></p>
+                       <p><i>esti</i></p>
+                       <p><i>iede</i><i>ette</i></p>
+                       <p><i>emmo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>iedero</i><i>ettero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>arei</i></p>
+                       <p><i>aresti</i></p>
+                       <p><i>arebbe</i></p>
+                       <p><i>aremmo</i></p>
+                       <p><i>areste</i></p>
+                       <p><i>arebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ia</i></p>
+                       <p><i>ia</i></p>
+                       <p><i>ia</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>iano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>essi</i></p>
+                       <p><i>essi</i></p>
+                       <p><i>esse</i></p>
+                       <p><i>essimo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>essero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>à</i><i>ai</i><i>a'</i></p>
+                       <p><i>ia</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>iano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ante</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ato</i></p>
+                       <p><i>ati</i></p>
+                       <p><i>ata</i></p>
+                       <p><i>ate</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ando</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="st:are">  <!-- 1er groupe (exception) -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>are</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i></p>
+                       <p><i>ai</i></p>
+                       <p><i>a</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>anno</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avo</i></p>
+                       <p><i>avi</i></p>
+                       <p><i>ava</i></p>
+                       <p><i>avamo</i></p>
+                       <p><i>avate</i></p>
+                       <p><i>avano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>arò</i></p>
+                       <p><i>arai</i></p>
+                       <p><i>arà</i></p>
+                       <p><i>aremo</i></p>
+                       <p><i>arete</i></p>
+                       <p><i>aranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>etti</i></p>
+                       <p><i>esti</i></p>
+                       <p><i>ette</i></p>
+                       <p><i>emmo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>ettero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>arei</i></p>
+                       <p><i>aresti</i></p>
+                       <p><i>arebbe</i></p>
+                       <p><i>aremmo</i></p>
+                       <p><i>areste</i></p>
+                       <p><i>arebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>ia</i></p>
+                       <p><i>ia</i></p>
+                       <p><i>ia</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>iate</i></p>
+                       <p><i>iano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>essi</i></p>
+                       <p><i>essi</i></p>
+                       <p><i>esse</i></p>
+                       <p><i>essimo</i></p>
+                       <p><i>este</i></p>
+                       <p><i>essero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>a</i><i>ai</i><i>a'</i></p>
+                       <p><i>ia</i></p>
+                       <p><i>iamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>iano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ante</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ato</i></p>
+                       <p><i>ati</i></p>
+                       <p><i>ata</i></p>
+                       <p><i>ate</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ando</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="f:are">  <!-- 1er groupe (exception) -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>are</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>accio</i><i>ò</i></p>
+                       <p><i>ai</i></p>
+                       <p><i>a</i></p>
+                       <p><i>acciamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>anno</i></p>
+               </present>
+               <imperfect>
+                       <p><i>acevo</i></p>
+                       <p><i>acevi</i></p>
+                       <p><i>aceva</i></p>
+                       <p><i>acevamo</i></p>
+                       <p><i>acevate</i></p>
+                       <p><i>acevano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>arò</i></p>
+                       <p><i>arai</i></p>
+                       <p><i>arà</i></p>
+                       <p><i>aremo</i></p>
+                       <p><i>arete</i></p>
+                       <p><i>aranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>eci</i></p>
+                       <p><i>acesti</i></p>
+                       <p><i>ece</i></p>
+                       <p><i>acemmo</i></p>
+                       <p><i>aceste</i></p>
+                       <p><i>ecero</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>arei</i></p>
+                       <p><i>aresti</i></p>
+                       <p><i>arebbe</i></p>
+                       <p><i>aremmo</i></p>
+                       <p><i>areste</i></p>
+                       <p><i>arebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>accia</i></p>
+                       <p><i>accia</i></p>
+                       <p><i>accia</i></p>
+                       <p><i>acciamo</i></p>
+                       <p><i>acciate</i></p>
+                       <p><i>acciano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>acessi</i></p>
+                       <p><i>acessi</i></p>
+                       <p><i>acesse</i></p>
+                       <p><i>acessimo</i></p>
+                       <p><i>aceste</i></p>
+                       <p><i>acessero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>a</i><i>ai</i><i>a'</i></p>
+                       <p><i>accia</i></p>
+                       <p><i>acciamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>acciano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>acente</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>atto</i></p>
+                       <p><i>atti</i></p>
+                       <p><i>atta</i></p>
+                       <p><i>atte</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>acendo</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+
+<template name="gioc:are">  <!-- 1er groupe -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>are</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>o</i></p>
+                       <p><i>hi</i></p>
+                       <p><i>a</i></p>
+                       <p><i>hiamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>ano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>avo</i></p>
+                       <p><i>avi</i></p>
+                       <p><i>ava</i></p>
+                       <p><i>avamo</i></p>
+                       <p><i>avate</i></p>
+                       <p><i>avano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>herò</i></p>
+                       <p><i>herai</i></p>
+                       <p><i>herà</i></p>
+                       <p><i>heremo</i></p>
+                       <p><i>herete</i></p>
+                       <p><i>heranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>ai</i></p>
+                       <p><i>asti</i></p>
+                       <p><i>ò</i></p>
+                       <p><i>ammo</i></p>
+                       <p><i>aste</i></p>
+                       <p><i>arono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>herei</i></p>
+                       <p><i>heresti</i></p>
+                       <p><i>herebbe</i></p>
+                       <p><i>heremmo</i></p>
+                       <p><i>hereste</i></p>
+                       <p><i>herebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>hi</i></p>
+                       <p><i>hi</i></p>
+                       <p><i>hi</i></p>
+                       <p><i>hiamo</i></p>
+                       <p><i>hiate</i></p>
+                       <p><i>hino</i></p>
+               </present>
+               <imperfect>
+                       <p><i>assi</i></p>
+                       <p><i>assi</i></p>
+                       <p><i>asse</i></p>
+                       <p><i>assimo</i></p>
+                       <p><i>aste</i></p>
+                       <p><i>assero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>a</i></p>
+                       <p><i>hi</i></p>
+                       <p><i>hiamo</i></p>
+                       <p><i>ate</i></p>
+                       <p><i>hino</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>ante</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>ato</i></p>
+                       <p><i>ati</i></p>
+                       <p><i>ata</i></p>
+                       <p><i>ate</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>ando</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+<template name=":andare">  <!-- 1er groupe -->
+       <infinitive>
+               <infinitive-present>
+                       <p><i>andare</i></p>
+               </infinitive-present>
+       </infinitive>
+       <indicative>
+               <present>
+                       <p><i>vado</i></p>
+                       <p><i>vai</i></p>
+                       <p><i>va</i></p>
+                       <p><i>andiamo</i></p>
+                       <p><i>andate</i></p>
+                       <p><i>vanno</i></p>
+               </present>
+               <imperfect>
+                       <p><i>andavo</i></p>
+                       <p><i>andavi</i></p>
+                       <p><i>andava</i></p>
+                       <p><i>andavamo</i></p>
+                       <p><i>andavate</i></p>
+                       <p><i>andavano</i></p>
+               </imperfect>
+               <future>
+                       <p><i>andrò</i></p>
+                       <p><i>andrai</i></p>
+                       <p><i>andrà</i></p>
+                       <p><i>andremo</i></p>
+                       <p><i>andrete</i></p>
+                       <p><i>andranno</i></p>
+               </future>
+               <simple-past>
+                       <p><i>andai</i></p>
+                       <p><i>andasti</i></p>
+                       <p><i>andò</i></p>
+                       <p><i>andammo</i></p>
+                       <p><i>andaste</i></p>
+                       <p><i>andarono</i></p>
+               </simple-past>
+       </indicative>
+       <conditional>
+               <present>
+                       <p><i>andrei</i></p>
+                       <p><i>andresti</i></p>
+                       <p><i>andrebbe</i></p>
+                       <p><i>andremmo</i></p>
+                       <p><i>andreste</i></p>
+                       <p><i>andrebbero</i></p>
+               </present>
+       </conditional>
+       <subjunctive>
+               <present>
+                       <p><i>vada</i></p>
+                       <p><i>vada</i></p>
+                       <p><i>vada</i></p>
+                       <p><i>andiamo</i></p>
+                       <p><i>andiate</i></p>
+                       <p><i>vadano</i></p>
+               </present>
+               <imperfect>
+                       <p><i>andassi</i></p>
+                       <p><i>andassi</i></p>
+                       <p><i>andasse</i></p>
+                       <p><i>andassimo</i></p>
+                       <p><i>andaste</i></p>
+                       <p><i>andassero</i></p>
+               </imperfect>
+       </subjunctive>
+       <imperative>
+               <imperative-present>
+                       <p><i>va</i><i>vai</i><i>và</i></p>
+                       <p><i>vada</i></p>
+                       <p><i>andiamo</i></p>
+                       <p><i>andate</i></p>
+                       <p><i>vadano</i></p>
+               </imperative-present>
+       </imperative>
+       <participle>
+               <present-participle>
+                       <p><i>andante</i></p>
+               </present-participle>
+               <past-participle>
+                       <p><i>andato</i></p>
+                       <p><i>andati</i></p>
+                       <p><i>andata</i></p>
+                       <p><i>andate</i></p>
+               </past-participle>
+       </participle>
+       <gerund>
+               <present-gerund>
+                       <p><i>andando</i></p>
+               </present-gerund>
+       </gerund>
+</template>
+</conjugation-it>
diff --git a/data/verbs-el.xml b/data/verbs-el.xml
new file mode 100644 (file)
index 0000000..967122b
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+
+<!--
+       verbs-el.xml - List of Italian verbs with their conjugation template
+       Copyright (C) 2010 Pierre Sarrazin <http://sarrazip.com/>
+
+       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., 59 Temple Place - Suite 330, Boston, MA
+       02111-1307, USA.
+-->
+
+<!DOCTYPE verbs-el [
+       <!ELEMENT verbs-el (v+)>
+       <!ELEMENT v (i, t, aspirate-h?)>
+       <!ELEMENT i (#PCDATA)>  <!-- infinitive -->
+       <!ELEMENT t (#PCDATA)>  <!-- template (radical:termination) -->
+       <!ELEMENT aspirate-h EMPTY>  <!-- useful for verbs starting with h -->
+]>
+
+<verbs-el>
+
+<v><i>bazbar</i>                       <t>foo:bar</t></v>
+
+</verbs-el>
diff --git a/data/verbs-fr.xml b/data/verbs-fr.xml
new file mode 100644 (file)
index 0000000..9dbebf3
--- /dev/null
@@ -0,0 +1,7052 @@
+<?xml version="1.0"?>
+
+<!--
+       verbs-fr.xml - List of French verbs with their conjugation template
+       Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+       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., 59 Temple Place - Suite 330, Boston, MA
+       02111-1307, USA.
+-->
+
+<!DOCTYPE verbs-fr [
+       <!ELEMENT verbs-fr (v+)>
+       <!ELEMENT v (i, t, aspirate-h?)>
+       <!ELEMENT i (#PCDATA)>  <!-- infinitive -->
+       <!ELEMENT t (#PCDATA)>  <!-- template (radical:termination) -->
+       <!ELEMENT aspirate-h EMPTY>  <!-- useful for verbs starting with h -->
+]>
+
+<!--
+       The <v> lines are sorted with this filter:
+       env LANG=en_US.utf8 sort -f
+-->
+
+<verbs-fr>
+
+<v><i>abaisser</i>             <t>aim:er</t></v>
+<v><i>abandonner</i>           <t>aim:er</t></v>
+<v><i>abasourdir</i>           <t>fin:ir</t></v>
+<v><i>abâtardir</i>           <t>fin:ir</t></v>
+<v><i>abattre</i>              <t>bat:tre</t></v>
+<v><i>abcéder</i>             <t>c:éder</t></v>
+<v><i>abdiquer</i>             <t>aim:er</t></v>
+<v><i>aberrer</i>              <t>aim:er</t></v>
+<v><i>abêtir</i>              <t>fin:ir</t></v>
+<v><i>abhorrer</i>             <t>aim:er</t></v>
+<v><i>abîmer</i>              <t>aim:er</t></v>
+<v><i>abjurer</i>              <t>aim:er</t></v>
+<v><i>ablater</i>              <t>aim:er</t></v>
+<v><i>abloquer</i>             <t>aim:er</t></v>
+<v><i>abolir</i>               <t>fin:ir</t></v>
+<v><i>abominer</i>             <t>aim:er</t></v>
+<v><i>abonder</i>              <t>aim:er</t></v>
+<v><i>abonner</i>              <t>aim:er</t></v>
+<v><i>abonnir</i>              <t>fin:ir</t></v>
+<v><i>aborder</i>              <t>aim:er</t></v>
+<v><i>aboucher</i>             <t>aim:er</t></v>
+<v><i>abouler</i>              <t>aim:er</t></v>
+<v><i>abouter</i>              <t>aim:er</t></v>
+<v><i>aboutir</i>              <t>fin:ir</t></v>
+<v><i>aboyer</i>               <t>netto:yer</t></v>
+<v><i>abraser</i>              <t>aim:er</t></v>
+<v><i>abréger</i>             <t>abr:éger</t></v>
+<v><i>abreuver</i>             <t>aim:er</t></v>
+<v><i>abricoter</i>            <t>aim:er</t></v>
+<v><i>abrier</i>               <t>aim:er</t></v>
+<v><i>abriter</i>              <t>aim:er</t></v>
+<v><i>abroger</i>              <t>man:ger</t></v>
+<v><i>abrutir</i>              <t>fin:ir</t></v>
+<v><i>absenter</i>             <t>aim:er</t></v>
+<v><i>absorber</i>             <t>aim:er</t></v>
+<v><i>absoudre</i>             <t>abso:udre</t></v>
+<v><i>abstenir</i>             <t>t:enir</t></v>
+<v><i>abstraire</i>            <t>extra:ire</t></v>
+<v><i>abuser</i>               <t>aim:er</t></v>
+<v><i>accabler</i>             <t>aim:er</t></v>
+<v><i>accaparer</i>            <t>aim:er</t></v>
+<v><i>accastiller</i>          <t>aim:er</t></v>
+<v><i>accéder</i>             <t>c:éder</t></v>
+<v><i>accélérer</i>          <t>réf:érer</t></v>
+<v><i>accentuer</i>            <t>aim:er</t></v>
+<v><i>accepter</i>             <t>aim:er</t></v>
+<v><i>accessoiriser</i>                <t>aim:er</t></v>
+<v><i>accidenter</i>           <t>aim:er</t></v>
+<v><i>acclamer</i>             <t>aim:er</t></v>
+<v><i>acclimater</i>           <t>aim:er</t></v>
+<v><i>accointer</i>            <t>aim:er</t></v>
+<v><i>accoler</i>              <t>aim:er</t></v>
+<v><i>accommoder</i>           <t>aim:er</t></v>
+<v><i>accompagner</i>          <t>aim:er</t></v>
+<v><i>accomplir</i>            <t>fin:ir</t></v>
+<v><i>accorder</i>             <t>aim:er</t></v>
+<v><i>accorer</i>              <t>aim:er</t></v>
+<v><i>accoster</i>             <t>aim:er</t></v>
+<v><i>accoter</i>              <t>aim:er</t></v>
+<v><i>accoucher</i>            <t>aim:er</t></v>
+<v><i>accouder</i>             <t>aim:er</t></v>
+<v><i>accouer</i>              <t>aim:er</t></v>
+<v><i>accoupler</i>            <t>aim:er</t></v>
+<v><i>accourcir</i>            <t>fin:ir</t></v>
+<v><i>accourir</i>             <t>cour:ir</t></v>
+<v><i>accoutrer</i>            <t>aim:er</t></v>
+<v><i>accoutumer</i>           <t>aim:er</t></v>
+<v><i>accréditer</i>          <t>aim:er</t></v>
+<v><i>accréter</i>            <t>décr:éter</t></v>
+<v><i>accrocher</i>            <t>aim:er</t></v>
+<v><i>accroître</i>           <t>cr:oître</t></v>
+<v><i>accroupir</i>            <t>fin:ir</t></v>
+<v><i>accueillir</i>           <t>cueill:ir</t></v>
+<v><i>acculer</i>              <t>aim:er</t></v>
+<v><i>acculturer</i>           <t>aim:er</t></v>
+<v><i>accumuler</i>            <t>aim:er</t></v>
+<v><i>accuser</i>              <t>aim:er</t></v>
+<v><i>acérer</i>              <t>réf:érer</t></v>
+<v><i>acétifier</i>           <t>aim:er</t></v>
+<v><i>acétyler</i>            <t>aim:er</t></v>
+<v><i>achalander</i>           <t>aim:er</t></v>
+<v><i>achaler</i>              <t>aim:er</t></v>
+<v><i>acharner</i>             <t>aim:er</t></v>
+<v><i>acheminer</i>            <t>aim:er</t></v>
+<v><i>acheter</i>              <t>ach:eter</t></v>
+<v><i>achever</i>              <t>l:ever</t></v>
+<v><i>achopper</i>             <t>aim:er</t></v>
+<v><i>achromatiser</i>         <t>aim:er</t></v>
+<v><i>acidifier</i>            <t>aim:er</t></v>
+<v><i>aciduler</i>             <t>aim:er</t></v>
+<v><i>aciérer</i>             <t>réf:érer</t></v>
+<v><i>aciseler</i>             <t>p:eler</t></v>
+<v><i>acoquiner</i>            <t>aim:er</t></v>
+<v><i>acquérir</i>            <t>acqu:érir</t></v>
+<v><i>acquiescer</i>           <t>pla:cer</t></v>
+<v><i>acquitter</i>            <t>aim:er</t></v>
+<v><i>acter</i>                        <t>aim:er</t></v>
+<v><i>actionner</i>            <t>aim:er</t></v>
+<v><i>activer</i>              <t>aim:er</t></v>
+<v><i>actualiser</i>           <t>aim:er</t></v>
+<v><i>adapter</i>              <t>aim:er</t></v>
+<v><i>additionner</i>          <t>aim:er</t></v>
+<v><i>adhérer</i>             <t>réf:érer</t></v>
+<v><i>adjectiver</i>           <t>aim:er</t></v>
+<v><i>adjectiviser</i>         <t>aim:er</t></v>
+<v><i>adjoindre</i>            <t>crai:ndre</t></v>
+<v><i>adjuger</i>              <t>man:ger</t></v>
+<v><i>adjurer</i>              <t>aim:er</t></v>
+<v><i>admettre</i>             <t>m:ettre</t></v>
+<v><i>administrer</i>          <t>aim:er</t></v>
+<v><i>admirer</i>              <t>aim:er</t></v>
+<v><i>admonester</i>           <t>aim:er</t></v>
+<v><i>adonner</i>              <t>aim:er</t></v>
+<v><i>adopter</i>              <t>aim:er</t></v>
+<v><i>adorer</i>               <t>aim:er</t></v>
+<v><i>adosser</i>              <t>aim:er</t></v>
+<v><i>adouber</i>              <t>aim:er</t></v>
+<v><i>adoucir</i>              <t>fin:ir</t></v>
+<v><i>adresser</i>             <t>aim:er</t></v>
+<v><i>adsorber</i>             <t>aim:er</t></v>
+<v><i>aduler</i>               <t>aim:er</t></v>
+<v><i>adultérer</i>           <t>réf:érer</t></v>
+<v><i>advenir</i>              <t>adv:enir</t></v>
+<v><i>aérer</i>                       <t>réf:érer</t></v>
+<v><i>affabuler</i>            <t>aim:er</t></v>
+<v><i>affadir</i>              <t>fin:ir</t></v>
+<v><i>affaiblir</i>            <t>fin:ir</t></v>
+<v><i>affairer</i>             <t>aim:er</t></v>
+<v><i>affaisser</i>            <t>aim:er</t></v>
+<v><i>affaler</i>              <t>aim:er</t></v>
+<v><i>affamer</i>              <t>aim:er</t></v>
+<v><i>afféager</i>            <t>man:ger</t></v>
+<v><i>affecter</i>             <t>aim:er</t></v>
+<v><i>affectionner</i>         <t>aim:er</t></v>
+<v><i>affermer</i>             <t>aim:er</t></v>
+<v><i>affermir</i>             <t>fin:ir</t></v>
+<v><i>afficher</i>             <t>aim:er</t></v>
+<v><i>affiler</i>              <t>aim:er</t></v>
+<v><i>affilier</i>             <t>aim:er</t></v>
+<v><i>affiner</i>              <t>aim:er</t></v>
+<v><i>affirmer</i>             <t>aim:er</t></v>
+<v><i>affleurer</i>            <t>aim:er</t></v>
+<v><i>affliger</i>             <t>man:ger</t></v>
+<v><i>afflouer</i>             <t>aim:er</t></v>
+<v><i>affluer</i>              <t>aim:er</t></v>
+<v><i>affoler</i>              <t>aim:er</t></v>
+<v><i>affouager</i>            <t>man:ger</t></v>
+<v><i>affouiller</i>           <t>aim:er</t></v>
+<v><i>affourager</i>           <t>man:ger</t></v>
+<v><i>affourcher</i>           <t>aim:er</t></v>
+<v><i>affourrager</i>          <t>man:ger</t></v>
+<v><i>affranchir</i>           <t>fin:ir</t></v>
+<v><i>affréter</i>            <t>décr:éter</t></v>
+<v><i>affriander</i>           <t>aim:er</t></v>
+<v><i>affricher</i>            <t>aim:er</t></v>
+<v><i>affrioler</i>            <t>aim:er</t></v>
+<v><i>affriter</i>             <t>aim:er</t></v>
+<v><i>affronter</i>            <t>aim:er</t></v>
+<v><i>affruiter</i>            <t>aim:er</t></v>
+<v><i>affubler</i>             <t>aim:er</t></v>
+<v><i>affurer</i>              <t>aim:er</t></v>
+<v><i>affûter</i>             <t>aim:er</t></v>
+<v><i>africaniser</i>          <t>aim:er</t></v>
+<v><i>agacer</i>               <t>pla:cer</t></v>
+<v><i>agencer</i>              <t>pla:cer</t></v>
+<v><i>agender</i>              <t>aim:er</t></v>
+<v><i>agenouiller</i>          <t>aim:er</t></v>
+<v><i>agglomérer</i>          <t>réf:érer</t></v>
+<v><i>agglutiner</i>           <t>aim:er</t></v>
+<v><i>aggraver</i>             <t>aim:er</t></v>
+<v><i>agioter</i>              <t>aim:er</t></v>
+<v><i>agir</i>                 <t>fin:ir</t></v>
+<v><i>agiter</i>               <t>aim:er</t></v>
+<v><i>agneler</i>              <t>app:eler</t></v>
+<v><i>agoniser</i>             <t>aim:er</t></v>
+<v><i>agrafer</i>              <t>aim:er</t></v>
+<v><i>agrainer</i>             <t>aim:er</t></v>
+<v><i>agrandir</i>             <t>fin:ir</t></v>
+<v><i>agréer</i>              <t>aim:er</t></v>
+<v><i>agréger</i>             <t>abr:éger</t></v>
+<v><i>agrémenter</i>          <t>aim:er</t></v>
+<v><i>agresser</i>             <t>aim:er</t></v>
+<v><i>agricher</i>             <t>aim:er</t></v>
+<v><i>agriffer</i>             <t>aim:er</t></v>
+<v><i>agripper</i>             <t>aim:er</t></v>
+<v><i>aguerrir</i>             <t>fin:ir</t></v>
+<v><i>aguicher</i>             <t>aim:er</t></v>
+<v><i>ahaner</i>               <t>aim:er</t></v>
+<v><i>ahurir</i>               <t>fin:ir</t></v>
+<v><i>aider</i>                        <t>aim:er</t></v>
+<v><i>aigrir</i>               <t>fin:ir</t></v>
+<v><i>aiguiller</i>            <t>aim:er</t></v>
+<v><i>aiguilleter</i>          <t>j:eter</t></v>
+<v><i>aiguillonner</i>         <t>aim:er</t></v>
+<v><i>aiguiser</i>             <t>aim:er</t></v>
+<v><i>ailler</i>               <t>aim:er</t></v>
+<v><i>aimanter</i>             <t>aim:er</t></v>
+<v><i>aimer</i>                        <t>aim:er</t></v>
+<v><i>airer</i>                        <t>aim:er</t></v>
+<v><i>ajointer</i>             <t>aim:er</t></v>
+<v><i>ajourer</i>              <t>aim:er</t></v>
+<v><i>ajourner</i>             <t>aim:er</t></v>
+<v><i>ajouter</i>              <t>aim:er</t></v>
+<v><i>ajuster</i>              <t>aim:er</t></v>
+<v><i>alambiquer</i>           <t>aim:er</t></v>
+<v><i>alanguir</i>             <t>fin:ir</t></v>
+<v><i>alarmer</i>              <t>aim:er</t></v>
+<v><i>alcaliniser</i>          <t>aim:er</t></v>
+<v><i>alcaliser</i>            <t>aim:er</t></v>
+<v><i>alcooliser</i>           <t>aim:er</t></v>
+<v><i>alentir</i>              <t>fin:ir</t></v>
+<v><i>alerter</i>              <t>aim:er</t></v>
+<v><i>aléser</i>              <t>l:éser</t></v>
+<v><i>aleviner</i>             <t>aim:er</t></v>
+<v><i>aliéner</i>             <t>ali:éner</t></v>
+<v><i>aligner</i>              <t>aim:er</t></v>
+<v><i>alimenter</i>            <t>aim:er</t></v>
+<v><i>aliter</i>               <t>aim:er</t></v>
+<v><i>allaiter</i>             <t>aim:er</t></v>
+<v><i>allécher</i>            <t>s:écher</t></v>
+<v><i>alléger</i>             <t>abr:éger</t></v>
+<v><i>allégir</i>             <t>fin:ir</t></v>
+<v><i>allégoriser</i>         <t>aim:er</t></v>
+<v><i>alléguer</i>            <t>l:éguer</t></v>
+<v><i>aller</i>                        <t>:aller</t></v>
+<v><i>allier</i>               <t>aim:er</t></v>
+<v><i>allonger</i>             <t>man:ger</t></v>
+<v><i>allotir</i>              <t>fin:ir</t></v>
+<v><i>allouer</i>              <t>aim:er</t></v>
+<v><i>allumer</i>              <t>aim:er</t></v>
+<v><i>alluvionner</i>          <t>aim:er</t></v>
+<v><i>alourdir</i>             <t>fin:ir</t></v>
+<v><i>alpaguer</i>             <t>aim:er</t></v>
+<v><i>alphabétiser</i>                <t>aim:er</t></v>
+<v><i>altérer</i>             <t>réf:érer</t></v>
+<v><i>alterner</i>             <t>aim:er</t></v>
+<v><i>aluminer</i>             <t>aim:er</t></v>
+<v><i>aluner</i>               <t>aim:er</t></v>
+<v><i>alunir</i>               <t>fin:ir</t></v>
+<v><i>amadouer</i>             <t>aim:er</t></v>
+<v><i>amaigrir</i>             <t>fin:ir</t></v>
+<v><i>amalgamer</i>            <t>aim:er</t></v>
+<v><i>amancher</i>             <t>aim:er</t></v>
+<v><i>amariner</i>             <t>aim:er</t></v>
+<v><i>amarrer</i>              <t>aim:er</t></v>
+<v><i>amasser</i>              <t>aim:er</t></v>
+<v><i>amatir</i>               <t>fin:ir</t></v>
+<v><i>ambiancer</i>            <t>pla:cer</t></v>
+<v><i>ambitionner</i>          <t>aim:er</t></v>
+<v><i>ambler</i>               <t>aim:er</t></v>
+<v><i>ambrer</i>               <t>aim:er</t></v>
+<v><i>améliorer</i>           <t>aim:er</t></v>
+<v><i>aménager</i>            <t>man:ger</t></v>
+<v><i>amender</i>              <t>aim:er</t></v>
+<v><i>amener</i>               <t>m:ener</t></v>
+<v><i>amenuiser</i>            <t>aim:er</t></v>
+<v><i>américaniser</i>                <t>aim:er</t></v>
+<v><i>amerrir</i>              <t>fin:ir</t></v>
+<v><i>ameublir</i>             <t>fin:ir</t></v>
+<v><i>ameuter</i>              <t>aim:er</t></v>
+<v><i>amidonner</i>            <t>aim:er</t></v>
+<v><i>amincir</i>              <t>fin:ir</t></v>
+<v><i>amnistier</i>            <t>aim:er</t></v>
+<v><i>amocher</i>              <t>aim:er</t></v>
+<v><i>amodier</i>              <t>aim:er</t></v>
+<v><i>amoindrir</i>            <t>fin:ir</t></v>
+<v><i>amollir</i>              <t>fin:ir</t></v>
+<v><i>amonceler</i>            <t>app:eler</t></v>
+<v><i>amorcer</i>              <t>pla:cer</t></v>
+<v><i>amordancer</i>           <t>pla:cer</t></v>
+<v><i>amortir</i>              <t>fin:ir</t></v>
+<v><i>amouracher</i>           <t>aim:er</t></v>
+<v><i>amplifier</i>            <t>aim:er</t></v>
+<v><i>amputer</i>              <t>aim:er</t></v>
+<v><i>amuïr</i>                       <t>ha:ïr</t></v>
+<v><i>amurer</i>               <t>aim:er</t></v>
+<v><i>amuser</i>               <t>aim:er</t></v>
+<v><i>analgésier</i>          <t>aim:er</t></v>
+<v><i>analyser</i>             <t>aim:er</t></v>
+<v><i>anastomoser</i>          <t>aim:er</t></v>
+<v><i>anathématiser</i>               <t>aim:er</t></v>
+<v><i>anatomiser</i>           <t>aim:er</t></v>
+<v><i>ancrer</i>               <t>aim:er</t></v>
+<v><i>anéantir</i>            <t>fin:ir</t></v>
+<v><i>anémier</i>             <t>aim:er</t></v>
+<v><i>anesthésier</i>         <t>aim:er</t></v>
+<v><i>anglaiser</i>            <t>aim:er</t></v>
+<v><i>angliciser</i>           <t>aim:er</t></v>
+<v><i>angoisser</i>            <t>aim:er</t></v>
+<v><i>anhéler</i>             <t>rév:éler</t></v>
+<v><i>animaliser</i>           <t>aim:er</t></v>
+<v><i>animer</i>               <t>aim:er</t></v>
+<v><i>aniser</i>               <t>aim:er</t></v>
+<v><i>ankyloser</i>            <t>aim:er</t></v>
+<v><i>anneler</i>              <t>app:eler</t></v>
+<v><i>annexer</i>              <t>aim:er</t></v>
+<v><i>annihiler</i>            <t>aim:er</t></v>
+<v><i>annoncer</i>             <t>pla:cer</t></v>
+<v><i>annoter</i>              <t>aim:er</t></v>
+<v><i>annualiser</i>           <t>aim:er</t></v>
+<v><i>annuler</i>              <t>aim:er</t></v>
+<v><i>anoblir</i>              <t>fin:ir</t></v>
+<v><i>anodiser</i>             <t>aim:er</t></v>
+<v><i>ânonner</i>             <t>aim:er</t></v>
+<v><i>anordir</i>              <t>fin:ir</t></v>
+<v><i>antéposer</i>           <t>aim:er</t></v>
+<v><i>anticiper</i>            <t>aim:er</t></v>
+<v><i>anticommuter</i>         <t>aim:er</t></v>
+<v><i>antidater</i>            <t>aim:er</t></v>
+<v><i>antiparasiter</i>                <t>aim:er</t></v>
+<v><i>antiquer</i>             <t>aim:er</t></v>
+<v><i>aoûter</i>              <t>aim:er</t></v>
+<v><i>apaiser</i>              <t>aim:er</t></v>
+<v><i>apanager</i>             <t>man:ger</t></v>
+<v><i>apercevoir</i>           <t>dé:cevoir</t></v>
+<v><i>apeurer</i>              <t>aim:er</t></v>
+<v><i>apiquer</i>              <t>aim:er</t></v>
+<v><i>apitoyer</i>             <t>netto:yer</t></v>
+<v><i>aplanir</i>              <t>fin:ir</t></v>
+<v><i>aplatir</i>              <t>fin:ir</t></v>
+<v><i>apostasier</i>           <t>aim:er</t></v>
+<v><i>aposter</i>              <t>aim:er</t></v>
+<v><i>apostiller</i>           <t>aim:er</t></v>
+<v><i>apostropher</i>          <t>aim:er</t></v>
+<v><i>appairer</i>             <t>aim:er</t></v>
+<v><i>apparaître</i>          <t>rep:aître</t></v>
+<v><i>appareiller</i>          <t>aim:er</t></v>
+<v><i>apparenter</i>           <t>aim:er</t></v>
+<v><i>apparier</i>             <t>aim:er</t></v>
+<v><i>apparoir</i>             <t>app:aroir</t></v>
+<v><i>appartenir</i>           <t>t:enir</t></v>
+<v><i>appâter</i>             <t>aim:er</t></v>
+<v><i>appauvrir</i>            <t>fin:ir</t></v>
+<v><i>appeler</i>              <t>app:eler</t></v>
+<v><i>appendre</i>             <t>ten:dre</t></v>
+<v><i>appesantir</i>           <t>fin:ir</t></v>
+<v><i>applaudir</i>            <t>fin:ir</t></v>
+<v><i>appliquer</i>            <t>aim:er</t></v>
+<v><i>appointer</i>            <t>aim:er</t></v>
+<v><i>appointir</i>            <t>fin:ir</t></v>
+<v><i>appondre</i>             <t>ten:dre</t></v>
+<v><i>apponter</i>             <t>aim:er</t></v>
+<v><i>apporter</i>             <t>aim:er</t></v>
+<v><i>apposer</i>              <t>aim:er</t></v>
+<v><i>apprécier</i>           <t>aim:er</t></v>
+<v><i>appréhender</i>         <t>aim:er</t></v>
+<v><i>apprendre</i>            <t>pr:endre</t></v>
+<v><i>apprêter</i>            <t>aim:er</t></v>
+<v><i>apprivoiser</i>          <t>aim:er</t></v>
+<v><i>approcher</i>            <t>aim:er</t></v>
+<v><i>approfondir</i>          <t>fin:ir</t></v>
+<v><i>approprier</i>           <t>aim:er</t></v>
+<v><i>approuver</i>            <t>aim:er</t></v>
+<v><i>approvisionner</i>       <t>aim:er</t></v>
+<v><i>approximer</i>           <t>aim:er</t></v>
+<v><i>appuyer</i>              <t>netto:yer</t></v>
+<v><i>apurer</i>               <t>aim:er</t></v>
+<v><i>arabiser</i>             <t>aim:er</t></v>
+<v><i>araser</i>               <t>aim:er</t></v>
+<v><i>arbitrer</i>             <t>aim:er</t></v>
+<v><i>arborer</i>              <t>aim:er</t></v>
+<v><i>arboriser</i>            <t>aim:er</t></v>
+<v><i>arc-bouter</i>           <t>aim:er</t></v>
+<v><i>archaïser</i>           <t>aim:er</t></v>
+<v><i>architecturer</i>                <t>aim:er</t></v>
+<v><i>archiver</i>             <t>aim:er</t></v>
+<v><i>arçonner</i>            <t>aim:er</t></v>
+<v><i>ardoiser</i>             <t>aim:er</t></v>
+<v><i>argenter</i>             <t>aim:er</t></v>
+<v><i>arguer</i>               <t>aim:er</t></v>
+<v><i>argumenter</i>           <t>aim:er</t></v>
+<v><i>ariser</i>               <t>aim:er</t></v>
+<v><i>armer</i>                        <t>aim:er</t></v>
+<v><i>armorier</i>             <t>aim:er</t></v>
+<v><i>arnaquer</i>             <t>aim:er</t></v>
+<v><i>aromatiser</i>           <t>aim:er</t></v>
+<v><i>arpéger</i>             <t>abr:éger</t></v>
+<v><i>arpenter</i>             <t>aim:er</t></v>
+<v><i>arquer</i>               <t>aim:er</t></v>
+<v><i>arracher</i>             <t>aim:er</t></v>
+<v><i>arraisonner</i>          <t>aim:er</t></v>
+<v><i>arranger</i>             <t>man:ger</t></v>
+<v><i>arrenter</i>             <t>aim:er</t></v>
+<v><i>arrérager</i>           <t>man:ger</t></v>
+<v><i>arrêter</i>             <t>aim:er</t></v>
+<v><i>arriérer</i>            <t>réf:érer</t></v>
+<v><i>arrimer</i>              <t>aim:er</t></v>
+<v><i>arriser</i>              <t>aim:er</t></v>
+<v><i>arriver</i>              <t>aim:er</t></v>
+<v><i>arroger</i>              <t>man:ger</t></v>
+<v><i>arrondir</i>             <t>fin:ir</t></v>
+<v><i>arroser</i>              <t>aim:er</t></v>
+<v><i>articuler</i>            <t>aim:er</t></v>
+<v><i>ascensionner</i>         <t>aim:er</t></v>
+<v><i>aseptiser</i>            <t>aim:er</t></v>
+<v><i>aspecter</i>             <t>aim:er</t></v>
+<v><i>asperger</i>             <t>man:ger</t></v>
+<v><i>asphalter</i>            <t>aim:er</t></v>
+<v><i>asphyxier</i>            <t>aim:er</t></v>
+<v><i>aspirer</i>              <t>aim:er</t></v>
+<v><i>assagir</i>              <t>fin:ir</t></v>
+<v><i>assaillir</i>            <t>assaill:ir</t></v>
+<v><i>assainir</i>             <t>fin:ir</t></v>
+<v><i>assaisonner</i>          <t>aim:er</t></v>
+<v><i>assarmenter</i>          <t>aim:er</t></v>
+<v><i>assassiner</i>           <t>aim:er</t></v>
+<v><i>assécher</i>            <t>s:écher</t></v>
+<v><i>assembler</i>            <t>aim:er</t></v>
+<v><i>asséner</i>             <t>ali:éner</t></v>
+<v><i>assener</i>              <t>m:ener</t></v>
+<v><i>asseoir</i>              <t>ass:eoir</t></v>
+<v><i>assermenter</i>          <t>aim:er</t></v>
+<v><i>asservir</i>             <t>fin:ir</t></v>
+<v><i>assibiler</i>            <t>aim:er</t></v>
+<v><i>assiéger</i>            <t>abr:éger</t></v>
+<v><i>assigner</i>             <t>aim:er</t></v>
+<v><i>assimiler</i>            <t>aim:er</t></v>
+<v><i>assister</i>             <t>aim:er</t></v>
+<v><i>associer</i>             <t>aim:er</t></v>
+<v><i>assoiffer</i>            <t>aim:er</t></v>
+<v><i>assoir</i>               <t>ass:oir</t></v>
+<v><i>assoler</i>              <t>aim:er</t></v>
+<v><i>assombrir</i>            <t>fin:ir</t></v>
+<v><i>assommer</i>             <t>aim:er</t></v>
+<v><i>assoner</i>              <t>aim:er</t></v>
+<v><i>assortir</i>             <t>fin:ir</t></v>
+<v><i>assoupir</i>             <t>fin:ir</t></v>
+<v><i>assouplir</i>            <t>fin:ir</t></v>
+<v><i>assourdir</i>            <t>fin:ir</t></v>
+<v><i>assouvir</i>             <t>fin:ir</t></v>
+<v><i>assujettir</i>           <t>fin:ir</t></v>
+<v><i>assumer</i>              <t>aim:er</t></v>
+<v><i>assurer</i>              <t>aim:er</t></v>
+<v><i>asticoter</i>            <t>aim:er</t></v>
+<v><i>astiquer</i>             <t>aim:er</t></v>
+<v><i>astreindre</i>           <t>crai:ndre</t></v>
+<v><i>atermoyer</i>            <t>netto:yer</t></v>
+<v><i>atomiser</i>             <t>aim:er</t></v>
+<v><i>atrophier</i>            <t>aim:er</t></v>
+<v><i>attabler</i>             <t>aim:er</t></v>
+<v><i>attacher</i>             <t>aim:er</t></v>
+<v><i>attaquer</i>             <t>aim:er</t></v>
+<v><i>attarder</i>             <t>aim:er</t></v>
+<v><i>atteindre</i>            <t>crai:ndre</t></v>
+<v><i>atteler</i>              <t>app:eler</t></v>
+<v><i>attendre</i>             <t>ten:dre</t></v>
+<v><i>attendrir</i>            <t>fin:ir</t></v>
+<v><i>attenter</i>             <t>aim:er</t></v>
+<v><i>atténuer</i>            <t>aim:er</t></v>
+<v><i>atterrer</i>             <t>aim:er</t></v>
+<v><i>atterrir</i>             <t>fin:ir</t></v>
+<v><i>attester</i>             <t>aim:er</t></v>
+<v><i>attiédir</i>            <t>fin:ir</t></v>
+<v><i>attifer</i>              <t>aim:er</t></v>
+<v><i>attiger</i>              <t>man:ger</t></v>
+<v><i>attirer</i>              <t>aim:er</t></v>
+<v><i>attiser</i>              <t>aim:er</t></v>
+<v><i>attitrer</i>             <t>aim:er</t></v>
+<v><i>attraire</i>             <t>extra:ire</t></v>
+<v><i>attraper</i>             <t>aim:er</t></v>
+<v><i>attribuer</i>            <t>aim:er</t></v>
+<v><i>attriquer</i>            <t>aim:er</t></v>
+<v><i>attrister</i>            <t>aim:er</t></v>
+<v><i>attrouper</i>            <t>aim:er</t></v>
+<v><i>auditer</i>              <t>aim:er</t></v>
+<v><i>auditionner</i>          <t>aim:er</t></v>
+<v><i>augmenter</i>            <t>aim:er</t></v>
+<v><i>augurer</i>              <t>aim:er</t></v>
+<v><i>auréoler</i>            <t>aim:er</t></v>
+<v><i>aurifier</i>             <t>aim:er</t></v>
+<v><i>ausculter</i>            <t>aim:er</t></v>
+<v><i>authentifier</i>         <t>aim:er</t></v>
+<v><i>authentiquer</i>         <t>aim:er</t></v>
+<v><i>autocensurer</i>         <t>aim:er</t></v>
+<v><i>autodétruire</i>                <t>condui:re</t></v>
+<v><i>autodissoudre</i>                <t>disso:udre</t></v>
+<v><i>autofinancer</i>         <t>pla:cer</t></v>
+<v><i>autographier</i>         <t>aim:er</t></v>
+<v><i>automatiser</i>          <t>aim:er</t></v>
+<v><i>autoproclamer</i>                <t>aim:er</t></v>
+<v><i>autopsier</i>            <t>aim:er</t></v>
+<v><i>autoriser</i>            <t>aim:er</t></v>
+<v><i>avachir</i>              <t>fin:ir</t></v>
+<v><i>avaler</i>               <t>aim:er</t></v>
+<v><i>avaliser</i>             <t>aim:er</t></v>
+<v><i>avancer</i>              <t>pla:cer</t></v>
+<v><i>avantager</i>            <t>man:ger</t></v>
+<v><i>avarier</i>              <t>aim:er</t></v>
+<v><i>aventurer</i>            <t>aim:er</t></v>
+<v><i>avérer</i>              <t>réf:érer</t></v>
+<v><i>avertir</i>              <t>fin:ir</t></v>
+<v><i>aveugler</i>             <t>aim:er</t></v>
+<v><i>aveulir</i>              <t>fin:ir</t></v>
+<v><i>avilir</i>               <t>fin:ir</t></v>
+<v><i>aviner</i>               <t>aim:er</t></v>
+<v><i>aviser</i>               <t>aim:er</t></v>
+<v><i>avitailler</i>           <t>aim:er</t></v>
+<v><i>aviver</i>               <t>aim:er</t></v>
+<v><i>avoir</i>                        <t>:avoir</t></v>
+<v><i>avoisiner</i>            <t>aim:er</t></v>
+<v><i>avorter</i>              <t>aim:er</t></v>
+<v><i>avouer</i>               <t>aim:er</t></v>
+<v><i>axer</i>                 <t>aim:er</t></v>
+<v><i>axiomatiser</i>          <t>aim:er</t></v>
+<v><i>azorer</i>               <t>aim:er</t></v>
+<v><i>azurer</i>               <t>aim:er</t></v>
+<v><i>babiller</i>             <t>aim:er</t></v>
+<v><i>baboler</i>              <t>aim:er</t></v>
+<v><i>bâcher</i>              <t>aim:er</t></v>
+<v><i>bachoter</i>             <t>aim:er</t></v>
+<v><i>bâcler</i>              <t>aim:er</t></v>
+<v><i>badauder</i>             <t>aim:er</t></v>
+<v><i>bader</i>                        <t>aim:er</t></v>
+<v><i>badger</i>               <t>man:ger</t></v>
+<v><i>badigeonner</i>          <t>aim:er</t></v>
+<v><i>badiner</i>              <t>aim:er</t></v>
+<v><i>baffer</i>               <t>aim:er</t></v>
+<v><i>bafouer</i>              <t>aim:er</t></v>
+<v><i>bafouiller</i>           <t>aim:er</t></v>
+<v><i>bâfrer</i>              <t>aim:er</t></v>
+<v><i>bagarrer</i>             <t>aim:er</t></v>
+<v><i>baguenauder</i>          <t>aim:er</t></v>
+<v><i>baguer</i>               <t>aim:er</t></v>
+<v><i>baigner</i>              <t>aim:er</t></v>
+<v><i>bailler</i>              <t>aim:er</t></v>
+<v><i>bâiller</i>             <t>aim:er</t></v>
+<v><i>bâillonner</i>          <t>aim:er</t></v>
+<v><i>baiser</i>               <t>aim:er</t></v>
+<v><i>baisoter</i>             <t>aim:er</t></v>
+<v><i>baisser</i>              <t>aim:er</t></v>
+<v><i>balader</i>              <t>aim:er</t></v>
+<v><i>balafrer</i>             <t>aim:er</t></v>
+<v><i>balancer</i>             <t>pla:cer</t></v>
+<v><i>balayer</i>              <t>pa:yer</t></v>
+<v><i>balbutier</i>            <t>aim:er</t></v>
+<v><i>baleiner</i>             <t>aim:er</t></v>
+<v><i>baliser</i>              <t>aim:er</t></v>
+<v><i>balkaniser</i>           <t>aim:er</t></v>
+<v><i>ballaster</i>            <t>aim:er</t></v>
+<v><i>baller</i>               <t>aim:er</t></v>
+<v><i>ballonner</i>            <t>aim:er</t></v>
+<v><i>ballotter</i>            <t>aim:er</t></v>
+<v><i>bambocher</i>            <t>aim:er</t></v>
+<v><i>banaliser</i>            <t>aim:er</t></v>
+<v><i>bancher</i>              <t>aim:er</t></v>
+<v><i>bander</i>               <t>aim:er</t></v>
+<v><i>banner</i>               <t>aim:er</t></v>
+<v><i>bannir</i>               <t>fin:ir</t></v>
+<v><i>banquer</i>              <t>aim:er</t></v>
+<v><i>banqueter</i>            <t>j:eter</t></v>
+<v><i>baptiser</i>             <t>aim:er</t></v>
+<v><i>baqueter</i>             <t>j:eter</t></v>
+<v><i>baragouiner</i>          <t>aim:er</t></v>
+<v><i>baraquer</i>             <t>aim:er</t></v>
+<v><i>baratiner</i>            <t>aim:er</t></v>
+<v><i>baratter</i>             <t>aim:er</t></v>
+<v><i>barber</i>               <t>aim:er</t></v>
+<v><i>barbifier</i>            <t>aim:er</t></v>
+<v><i>barboter</i>             <t>aim:er</t></v>
+<v><i>barbouiller</i>          <t>aim:er</t></v>
+<v><i>barder</i>               <t>aim:er</t></v>
+<v><i>baréter</i>             <t>décr:éter</t></v>
+<v><i>barguigner</i>           <t>aim:er</t></v>
+<v><i>barioler</i>             <t>aim:er</t></v>
+<v><i>barjaquer</i>            <t>aim:er</t></v>
+<v><i>baronner</i>             <t>aim:er</t></v>
+<v><i>barouder</i>             <t>aim:er</t></v>
+<v><i>barrer</i>               <t>aim:er</t></v>
+<v><i>barricader</i>           <t>aim:er</t></v>
+<v><i>barrir</i>               <t>fin:ir</t></v>
+<v><i>basaner</i>              <t>aim:er</t></v>
+<v><i>basculer</i>             <t>aim:er</t></v>
+<v><i>baser</i>                        <t>aim:er</t></v>
+<v><i>bassiner</i>             <t>aim:er</t></v>
+<v><i>baster</i>               <t>aim:er</t></v>
+<v><i>bastillonner</i>         <t>aim:er</t></v>
+<v><i>bastionner</i>           <t>aim:er</t></v>
+<v><i>batailler</i>            <t>aim:er</t></v>
+<v><i>bateler</i>              <t>app:eler</t></v>
+<v><i>bâter</i>                       <t>aim:er</t></v>
+<v><i>batifoler</i>            <t>aim:er</t></v>
+<v><i>bâtir</i>                       <t>fin:ir</t></v>
+<v><i>batoiller</i>            <t>aim:er</t></v>
+<v><i>bâtonner</i>            <t>aim:er</t></v>
+<v><i>battre</i>               <t>bat:tre</t></v>
+<v><i>bauger</i>               <t>man:ger</t></v>
+<v><i>bavarder</i>             <t>aim:er</t></v>
+<v><i>bavasser</i>             <t>aim:er</t></v>
+<v><i>baver</i>                        <t>aim:er</t></v>
+<v><i>bavocher</i>             <t>aim:er</t></v>
+<v><i>bayer</i>                        <t>pa:yer</t></v>
+<v><i>bazarder</i>             <t>aim:er</t></v>
+<v><i>béatifier</i>           <t>aim:er</t></v>
+<v><i>bêcher</i>              <t>aim:er</t></v>
+<v><i>bêcheveter</i>          <t>j:eter</t></v>
+<v><i>bécoter</i>             <t>aim:er</t></v>
+<v><i>becquer</i>              <t>aim:er</t></v>
+<v><i>becqueter</i>            <t>j:eter</t></v>
+<v><i>becter</i>               <t>aim:er</t></v>
+<v><i>bedonner</i>             <t>aim:er</t></v>
+<v><i>bégayer</i>             <t>pa:yer</t></v>
+<v><i>bégueter</i>            <t>ach:eter</t></v>
+<v><i>bêler</i>                       <t>aim:er</t></v>
+<v><i>bémoliser</i>           <t>aim:er</t></v>
+<v><i>bénéficier</i>         <t>aim:er</t></v>
+<v><i>bénir</i>                       <t>fin:ir</t></v>
+<v><i>béqueter</i>            <t>j:eter</t></v>
+<v><i>béquiller</i>           <t>aim:er</t></v>
+<v><i>bercer</i>               <t>pla:cer</t></v>
+<v><i>berner</i>               <t>aim:er</t></v>
+<v><i>besogner</i>             <t>aim:er</t></v>
+<v><i>bêtifier</i>            <t>aim:er</t></v>
+<v><i>bêtiser</i>             <t>aim:er</t></v>
+<v><i>bétonner</i>            <t>aim:er</t></v>
+<v><i>beugler</i>              <t>aim:er</t></v>
+<v><i>beurrer</i>              <t>aim:er</t></v>
+<v><i>biaiser</i>              <t>aim:er</t></v>
+<v><i>bibeloter</i>            <t>aim:er</t></v>
+<v><i>biberonner</i>           <t>aim:er</t></v>
+<v><i>bicher</i>               <t>aim:er</t></v>
+<v><i>bichonner</i>            <t>aim:er</t></v>
+<v><i>bichoter</i>             <t>aim:er</t></v>
+<v><i>bidonner</i>             <t>aim:er</t></v>
+<v><i>bidouiller</i>           <t>aim:er</t></v>
+<v><i>biffer</i>               <t>aim:er</t></v>
+<v><i>bifurquer</i>            <t>aim:er</t></v>
+<v><i>bigarrer</i>             <t>aim:er</t></v>
+<v><i>bigler</i>               <t>aim:er</t></v>
+<v><i>bigophoner</i>           <t>aim:er</t></v>
+<v><i>bigorner</i>             <t>aim:er</t></v>
+<v><i>biler</i>                        <t>aim:er</t></v>
+<v><i>billebauder</i>          <t>aim:er</t></v>
+<v><i>biller</i>               <t>aim:er</t></v>
+<v><i>billonner</i>            <t>aim:er</t></v>
+<v><i>biloquer</i>             <t>aim:er</t></v>
+<v><i>biner</i>                        <t>aim:er</t></v>
+<v><i>biscuiter</i>            <t>aim:er</t></v>
+<v><i>biseauter</i>            <t>aim:er</t></v>
+<v><i>bisegmenter</i>          <t>aim:er</t></v>
+<v><i>biser</i>                        <t>aim:er</t></v>
+<v><i>bisquer</i>              <t>aim:er</t></v>
+<v><i>bisser</i>               <t>aim:er</t></v>
+<v><i>bistourner</i>           <t>aim:er</t></v>
+<v><i>bistrer</i>              <t>aim:er</t></v>
+<v><i>biter</i>                        <t>aim:er</t></v>
+<v><i>bitter</i>               <t>aim:er</t></v>
+<v><i>bitturer</i>             <t>aim:er</t></v>
+<v><i>bitumer</i>              <t>aim:er</t></v>
+<v><i>bituminer</i>            <t>aim:er</t></v>
+<v><i>biturer</i>              <t>aim:er</t></v>
+<v><i>bivouaquer</i>           <t>aim:er</t></v>
+<v><i>bizuter</i>              <t>aim:er</t></v>
+<v><i>blablater</i>            <t>aim:er</t></v>
+<v><i>blackbouler</i>          <t>aim:er</t></v>
+<v><i>blaguer</i>              <t>aim:er</t></v>
+<v><i>blairer</i>              <t>aim:er</t></v>
+<v><i>blâmer</i>              <t>aim:er</t></v>
+<v><i>blanchir</i>             <t>fin:ir</t></v>
+<v><i>blaser</i>               <t>aim:er</t></v>
+<v><i>blasonner</i>            <t>aim:er</t></v>
+<v><i>blasphémer</i>          <t>cr:émer</t></v>
+<v><i>blatérer</i>            <t>réf:érer</t></v>
+<v><i>blêmir</i>              <t>fin:ir</t></v>
+<v><i>bléser</i>              <t>l:éser</t></v>
+<v><i>blesser</i>              <t>aim:er</t></v>
+<v><i>blettir</i>              <t>fin:ir</t></v>
+<v><i>bleuir</i>               <t>fin:ir</t></v>
+<v><i>bleuter</i>              <t>aim:er</t></v>
+<v><i>blinder</i>              <t>aim:er</t></v>
+<v><i>blinquer</i>             <t>aim:er</t></v>
+<v><i>blondir</i>              <t>fin:ir</t></v>
+<v><i>blondoyer</i>            <t>netto:yer</t></v>
+<v><i>bloquer</i>              <t>aim:er</t></v>
+<v><i>blottir</i>              <t>fin:ir</t></v>
+<v><i>blouser</i>              <t>aim:er</t></v>
+<v><i>bluffer</i>              <t>aim:er</t></v>
+<v><i>bluter</i>               <t>aim:er</t></v>
+<v><i>bobiner</i>              <t>aim:er</t></v>
+<v><i>bocarder</i>             <t>aim:er</t></v>
+<v><i>boetter</i>              <t>aim:er</t></v>
+<v><i>boire</i>                        <t>b:oire</t></v>
+<v><i>boiser</i>               <t>aim:er</t></v>
+<v><i>boiter</i>               <t>aim:er</t></v>
+<v><i>boitiller</i>            <t>aim:er</t></v>
+<v><i>bolchéviser</i>         <t>aim:er</t></v>
+<v><i>bombarder</i>            <t>aim:er</t></v>
+<v><i>bomber</i>               <t>aim:er</t></v>
+<v><i>bondériser</i>          <t>aim:er</t></v>
+<v><i>bonder</i>               <t>aim:er</t></v>
+<v><i>bondir</i>               <t>fin:ir</t></v>
+<v><i>bondonner</i>            <t>aim:er</t></v>
+<v><i>bonifier</i>             <t>aim:er</t></v>
+<v><i>bonimenter</i>           <t>aim:er</t></v>
+<v><i>border</i>               <t>aim:er</t></v>
+<v><i>borner</i>               <t>aim:er</t></v>
+<v><i>bornoyer</i>             <t>netto:yer</t></v>
+<v><i>bosseler</i>             <t>app:eler</t></v>
+<v><i>bosser</i>               <t>aim:er</t></v>
+<v><i>bossuer</i>              <t>aim:er</t></v>
+<v><i>bostonner</i>            <t>aim:er</t></v>
+<v><i>botaniser</i>            <t>aim:er</t></v>
+<v><i>botteler</i>             <t>app:eler</t></v>
+<v><i>botter</i>               <t>aim:er</t></v>
+<v><i>boubouler</i>            <t>aim:er</t></v>
+<v><i>boucaner</i>             <t>aim:er</t></v>
+<v><i>boucharder</i>           <t>aim:er</t></v>
+<v><i>boucher</i>              <t>aim:er</t></v>
+<v><i>bouchonner</i>           <t>aim:er</t></v>
+<v><i>bouchoyer</i>            <t>netto:yer</t></v>
+<v><i>boucler</i>              <t>aim:er</t></v>
+<v><i>bouder</i>               <t>aim:er</t></v>
+<v><i>boudiner</i>             <t>aim:er</t></v>
+<v><i>bouéler</i>             <t>rév:éler</t></v>
+<v><i>bouffer</i>              <t>aim:er</t></v>
+<v><i>bouffir</i>              <t>fin:ir</t></v>
+<v><i>bouffonner</i>           <t>aim:er</t></v>
+<v><i>bouger</i>               <t>man:ger</t></v>
+<v><i>bougonner</i>            <t>aim:er</t></v>
+<v><i>bouillir</i>             <t>bou:illir</t></v>
+<v><i>bouillonner</i>          <t>aim:er</t></v>
+<v><i>bouillotter</i>          <t>aim:er</t></v>
+<v><i>boulanger</i>            <t>man:ger</t></v>
+<v><i>bouléguer</i>           <t>l:éguer</t></v>
+<v><i>bouler</i>               <t>aim:er</t></v>
+<v><i>bouleverser</i>          <t>aim:er</t></v>
+<v><i>boulocher</i>            <t>aim:er</t></v>
+<v><i>boulonner</i>            <t>aim:er</t></v>
+<v><i>boulotter</i>            <t>aim:er</t></v>
+<v><i>boumer</i>               <t>aim:er</t></v>
+<v><i>bouquiner</i>            <t>aim:er</t></v>
+<v><i>bourasser</i>            <t>aim:er</t></v>
+<v><i>bourder</i>              <t>aim:er</t></v>
+<v><i>bourdonner</i>           <t>aim:er</t></v>
+<v><i>bourgeonner</i>          <t>aim:er</t></v>
+<v><i>bourlinguer</i>          <t>aim:er</t></v>
+<v><i>bouronner</i>            <t>aim:er</t></v>
+<v><i>bourreler</i>            <t>app:eler</t></v>
+<v><i>bourrer</i>              <t>aim:er</t></v>
+<v><i>bourriquer</i>           <t>aim:er</t></v>
+<v><i>boursicoter</i>          <t>aim:er</t></v>
+<v><i>boursoufler</i>          <t>aim:er</t></v>
+<v><i>bousculer</i>            <t>aim:er</t></v>
+<v><i>bousiller</i>            <t>aim:er</t></v>
+<v><i>boustifailler</i>                <t>aim:er</t></v>
+<v><i>bouter</i>               <t>aim:er</t></v>
+<v><i>boutonner</i>            <t>aim:er</t></v>
+<v><i>bouturer</i>             <t>aim:er</t></v>
+<v><i>boxer</i>                        <t>aim:er</t></v>
+<v><i>boyauter</i>             <t>aim:er</t></v>
+<v><i>boycotter</i>            <t>aim:er</t></v>
+<v><i>braconner</i>            <t>aim:er</t></v>
+<v><i>brader</i>               <t>aim:er</t></v>
+<v><i>brailler</i>             <t>aim:er</t></v>
+<v><i>braire</i>               <t>bra:ire</t></v>
+<v><i>braiser</i>              <t>aim:er</t></v>
+<v><i>bramer</i>               <t>aim:er</t></v>
+<v><i>brancarder</i>           <t>aim:er</t></v>
+<v><i>brancher</i>             <t>aim:er</t></v>
+<v><i>brandiller</i>           <t>aim:er</t></v>
+<v><i>brandir</i>              <t>fin:ir</t></v>
+<v><i>branler</i>              <t>aim:er</t></v>
+<v><i>braquer</i>              <t>aim:er</t></v>
+<v><i>braser</i>               <t>aim:er</t></v>
+<v><i>brasiller</i>            <t>aim:er</t></v>
+<v><i>brasser</i>              <t>aim:er</t></v>
+<v><i>braver</i>               <t>aim:er</t></v>
+<v><i>brayer</i>               <t>pa:yer</t></v>
+<v><i>bredouiller</i>          <t>aim:er</t></v>
+<v><i>brêler</i>              <t>aim:er</t></v>
+<v><i>bréler</i>              <t>rév:éler</t></v>
+<v><i>breller</i>              <t>aim:er</t></v>
+<v><i>brésiller</i>           <t>aim:er</t></v>
+<v><i>bretailler</i>           <t>aim:er</t></v>
+<v><i>bretteler</i>            <t>app:eler</t></v>
+<v><i>bretter</i>              <t>aim:er</t></v>
+<v><i>breveter</i>             <t>j:eter</t></v>
+<v><i>bricoler</i>             <t>aim:er</t></v>
+<v><i>brider</i>               <t>aim:er</t></v>
+<v><i>bridger</i>              <t>man:ger</t></v>
+<v><i>briefer</i>              <t>aim:er</t></v>
+<v><i>brifer</i>               <t>aim:er</t></v>
+<v><i>briffer</i>              <t>aim:er</t></v>
+<v><i>brigander</i>            <t>aim:er</t></v>
+<v><i>briguer</i>              <t>aim:er</t></v>
+<v><i>brillanter</i>           <t>aim:er</t></v>
+<v><i>brillantiner</i>         <t>aim:er</t></v>
+<v><i>briller</i>              <t>aim:er</t></v>
+<v><i>brimbaler</i>            <t>aim:er</t></v>
+<v><i>brimer</i>               <t>aim:er</t></v>
+<v><i>bringuebaler</i>         <t>aim:er</t></v>
+<v><i>bringueballer</i>                <t>aim:er</t></v>
+<v><i>bringuer</i>             <t>aim:er</t></v>
+<v><i>brinquebaler</i>         <t>aim:er</t></v>
+<v><i>brinqueballer</i>                <t>aim:er</t></v>
+<v><i>briquer</i>              <t>aim:er</t></v>
+<v><i>briqueter</i>            <t>j:eter</t></v>
+<v><i>briser</i>               <t>aim:er</t></v>
+<v><i>brocanter</i>            <t>aim:er</t></v>
+<v><i>brocarder</i>            <t>aim:er</t></v>
+<v><i>brocher</i>              <t>aim:er</t></v>
+<v><i>broder</i>               <t>aim:er</t></v>
+<v><i>broncher</i>             <t>aim:er</t></v>
+<v><i>bronzer</i>              <t>aim:er</t></v>
+<v><i>brosser</i>              <t>aim:er</t></v>
+<v><i>brouetter</i>            <t>aim:er</t></v>
+<v><i>brouillasser</i>         <t>aim:er</t></v>
+<v><i>brouiller</i>            <t>aim:er</t></v>
+<v><i>brouillonner</i>         <t>aim:er</t></v>
+<v><i>brouter</i>              <t>aim:er</t></v>
+<v><i>broyer</i>               <t>netto:yer</t></v>
+<v><i>bruiner</i>              <t>aim:er</t></v>
+<v><i>bruire</i>               <t>brui:re</t></v>
+<v><i>bruir</i>                        <t>fin:ir</t></v>
+<v><i>bruisser</i>             <t>aim:er</t></v>
+<v><i>bruiter</i>              <t>aim:er</t></v>
+<v><i>brûler</i>              <t>aim:er</t></v>
+<v><i>brumasser</i>            <t>aim:er</t></v>
+<v><i>brumer</i>               <t>aim:er</t></v>
+<v><i>bruncher</i>             <t>aim:er</t></v>
+<v><i>brunir</i>               <t>fin:ir</t></v>
+<v><i>brusquer</i>             <t>aim:er</t></v>
+<v><i>brutaliser</i>           <t>aim:er</t></v>
+<v><i>bûcher</i>              <t>aim:er</t></v>
+<v><i>budgéter</i>            <t>décr:éter</t></v>
+<v><i>budgétiser</i>          <t>aim:er</t></v>
+<v><i>buller</i>               <t>aim:er</t></v>
+<v><i>bureaucratiser</i>       <t>aim:er</t></v>
+<v><i>buriner</i>              <t>aim:er</t></v>
+<v><i>buser</i>                <t>aim:er</t></v>
+<v><i>busquer</i>              <t>aim:er</t></v>
+<v><i>buter</i>                        <t>aim:er</t></v>
+<v><i>butiner</i>              <t>aim:er</t></v>
+<v><i>butter</i>               <t>aim:er</t></v>
+<v><i>buvoter</i>              <t>aim:er</t></v>
+<v><i>cabaler</i>              <t>aim:er</t></v>
+<v><i>cabaner</i>              <t>aim:er</t></v>
+<v><i>câbler</i>              <t>aim:er</t></v>
+<v><i>cabosser</i>             <t>aim:er</t></v>
+<v><i>caboter</i>              <t>aim:er</t></v>
+<v><i>cabotiner</i>            <t>aim:er</t></v>
+<v><i>cabrer</i>               <t>aim:er</t></v>
+<v><i>cabrioler</i>            <t>aim:er</t></v>
+<v><i>cacaber</i>              <t>aim:er</t></v>
+<v><i>cacarder</i>             <t>aim:er</t></v>
+<v><i>cacher</i>               <t>aim:er</t></v>
+<v><i>cacheter</i>             <t>j:eter</t></v>
+<v><i>cachetonner</i>          <t>aim:er</t></v>
+<v><i>cadancher</i>            <t>aim:er</t></v>
+<v><i>cadastrer</i>            <t>aim:er</t></v>
+<v><i>cadenasser</i>           <t>aim:er</t></v>
+<v><i>cadencer</i>             <t>pla:cer</t></v>
+<v><i>cadmier</i>              <t>aim:er</t></v>
+<v><i>cadrer</i>               <t>aim:er</t></v>
+<v><i>cafarder</i>             <t>aim:er</t></v>
+<v><i>cafouiller</i>           <t>aim:er</t></v>
+<v><i>cafter</i>               <t>aim:er</t></v>
+<v><i>cagnarder</i>            <t>aim:er</t></v>
+<v><i>cagner</i>               <t>aim:er</t></v>
+<v><i>cahoter</i>              <t>aim:er</t></v>
+<v><i>caillasser</i>           <t>aim:er</t></v>
+<v><i>caillebotter</i>         <t>aim:er</t></v>
+<v><i>cailler</i>              <t>aim:er</t></v>
+<v><i>cailleter</i>            <t>j:eter</t></v>
+<v><i>caillouter</i>           <t>aim:er</t></v>
+<v><i>cajoler</i>              <t>aim:er</t></v>
+<v><i>calaminer</i>            <t>aim:er</t></v>
+<v><i>calamistrer</i>          <t>aim:er</t></v>
+<v><i>calancher</i>            <t>aim:er</t></v>
+<v><i>calandrer</i>            <t>aim:er</t></v>
+<v><i>calciner</i>             <t>aim:er</t></v>
+<v><i>calculer</i>             <t>aim:er</t></v>
+<v><i>caler</i>                        <t>aim:er</t></v>
+<v><i>caleter</i>              <t>j:eter</t></v>
+<v><i>calfater</i>             <t>aim:er</t></v>
+<v><i>calfeutrer</i>           <t>aim:er</t></v>
+<v><i>calibrer</i>             <t>aim:er</t></v>
+<v><i>câliner</i>             <t>aim:er</t></v>
+<v><i>calligraphier</i>                <t>aim:er</t></v>
+<v><i>calmer</i>               <t>aim:er</t></v>
+<v><i>calmir</i>               <t>fin:ir</t></v>
+<v><i>calomnier</i>            <t>aim:er</t></v>
+<v><i>calorifuger</i>          <t>man:ger</t></v>
+<v><i>calotter</i>             <t>aim:er</t></v>
+<v><i>calquer</i>              <t>aim:er</t></v>
+<v><i>calter</i>               <t>aim:er</t></v>
+<v><i>caluger</i>              <t>man:ger</t></v>
+<v><i>camber</i>               <t>aim:er</t></v>
+<v><i>cambrer</i>              <t>aim:er</t></v>
+<v><i>cambrioler</i>           <t>aim:er</t></v>
+<v><i>cambuter</i>             <t>aim:er</t></v>
+<v><i>cameloter</i>            <t>aim:er</t></v>
+<v><i>camer</i>                        <t>aim:er</t></v>
+<v><i>camionner</i>            <t>aim:er</t></v>
+<v><i>camoufler</i>            <t>aim:er</t></v>
+<v><i>camper</i>               <t>aim:er</t></v>
+<v><i>canaliser</i>            <t>aim:er</t></v>
+<v><i>canarder</i>             <t>aim:er</t></v>
+<v><i>cancaner</i>             <t>aim:er</t></v>
+<v><i>cancériser</i>          <t>aim:er</t></v>
+<v><i>candir</i>               <t>fin:ir</t></v>
+<v><i>caner</i>                        <t>aim:er</t></v>
+<v><i>canneler</i>             <t>app:eler</t></v>
+<v><i>canner</i>               <t>aim:er</t></v>
+<v><i>cannibaliser</i>         <t>aim:er</t></v>
+<v><i>cannoner</i>             <t>aim:er</t></v>
+<v><i>canoniser</i>            <t>aim:er</t></v>
+<v><i>canonner</i>             <t>aim:er</t></v>
+<v><i>canoter</i>              <t>aim:er</t></v>
+<v><i>cantiner</i>             <t>aim:er</t></v>
+<v><i>cantonner</i>            <t>aim:er</t></v>
+<v><i>canuler</i>              <t>aim:er</t></v>
+<v><i>caoutchouter</i>         <t>aim:er</t></v>
+<v><i>caparaçonner</i>                <t>aim:er</t></v>
+<v><i>capéer</i>              <t>aim:er</t></v>
+<v><i>capeler</i>              <t>app:eler</t></v>
+<v><i>caper</i>                        <t>aim:er</t></v>
+<v><i>capeyer</i>              <t>aim:er</t></v>
+<v><i>capitaliser</i>          <t>aim:er</t></v>
+<v><i>capitonner</i>           <t>aim:er</t></v>
+<v><i>capituler</i>            <t>aim:er</t></v>
+<v><i>caponner</i>             <t>aim:er</t></v>
+<v><i>caporaliser</i>          <t>aim:er</t></v>
+<v><i>capoter</i>              <t>aim:er</t></v>
+<v><i>capsuler</i>             <t>aim:er</t></v>
+<v><i>capter</i>               <t>aim:er</t></v>
+<v><i>captiver</i>             <t>aim:er</t></v>
+<v><i>capturer</i>             <t>aim:er</t></v>
+<v><i>capuchonner</i>          <t>aim:er</t></v>
+<v><i>caquer</i>               <t>aim:er</t></v>
+<v><i>caqueter</i>             <t>j:eter</t></v>
+<v><i>caracoler</i>            <t>aim:er</t></v>
+<v><i>caractériser</i>                <t>aim:er</t></v>
+<v><i>caramboler</i>           <t>aim:er</t></v>
+<v><i>caraméliser</i>         <t>aim:er</t></v>
+<v><i>carapater</i>            <t>aim:er</t></v>
+<v><i>carbonater</i>           <t>aim:er</t></v>
+<v><i>carboniser</i>           <t>aim:er</t></v>
+<v><i>carburer</i>             <t>aim:er</t></v>
+<v><i>carcailler</i>           <t>aim:er</t></v>
+<v><i>carder</i>               <t>aim:er</t></v>
+<v><i>carencer</i>             <t>pla:cer</t></v>
+<v><i>caréner</i>             <t>ali:éner</t></v>
+<v><i>caresser</i>             <t>aim:er</t></v>
+<v><i>carguer</i>              <t>aim:er</t></v>
+<v><i>caricaturer</i>          <t>aim:er</t></v>
+<v><i>carier</i>               <t>aim:er</t></v>
+<v><i>carillonner</i>          <t>aim:er</t></v>
+<v><i>carmer</i>               <t>aim:er</t></v>
+<v><i>carminer</i>             <t>aim:er</t></v>
+<v><i>carnifier</i>            <t>aim:er</t></v>
+<v><i>carotter</i>             <t>aim:er</t></v>
+<v><i>carreauter</i>           <t>aim:er</t></v>
+<v><i>carreler</i>             <t>app:eler</t></v>
+<v><i>carrer</i>               <t>aim:er</t></v>
+<v><i>carrosser</i>            <t>aim:er</t></v>
+<v><i>carroyer</i>             <t>netto:yer</t></v>
+<v><i>cartelliser</i>          <t>aim:er</t></v>
+<v><i>carter</i>               <t>aim:er</t></v>
+<v><i>cartographier</i>                <t>aim:er</t></v>
+<v><i>cartonner</i>            <t>aim:er</t></v>
+<v><i>cascader</i>             <t>aim:er</t></v>
+<v><i>caséfier</i>            <t>aim:er</t></v>
+<v><i>casemater</i>            <t>aim:er</t></v>
+<v><i>caser</i>                        <t>aim:er</t></v>
+<v><i>caserner</i>             <t>aim:er</t></v>
+<v><i>casquer</i>              <t>aim:er</t></v>
+<v><i>casser</i>               <t>aim:er</t></v>
+<v><i>castagner</i>            <t>aim:er</t></v>
+<v><i>castrer</i>              <t>aim:er</t></v>
+<v><i>cataloguer</i>           <t>aim:er</t></v>
+<v><i>catalyser</i>            <t>aim:er</t></v>
+<v><i>catapulter</i>           <t>aim:er</t></v>
+<v><i>catastropher</i>         <t>aim:er</t></v>
+<v><i>catcher</i>              <t>aim:er</t></v>
+<v><i>catéchiser</i>          <t>aim:er</t></v>
+<v><i>catégoriser</i>         <t>aim:er</t></v>
+<v><i>catir</i>                        <t>fin:ir</t></v>
+<v><i>cauchemarder</i>         <t>aim:er</t></v>
+<v><i>causer</i>               <t>aim:er</t></v>
+<v><i>cautériser</i>          <t>aim:er</t></v>
+<v><i>cautionner</i>           <t>aim:er</t></v>
+<v><i>cavalcader</i>           <t>aim:er</t></v>
+<v><i>cavaler</i>              <t>aim:er</t></v>
+<v><i>caver</i>                        <t>aim:er</t></v>
+<v><i>caviarder</i>            <t>aim:er</t></v>
+<v><i>céder</i>                       <t>c:éder</t></v>
+<v><i>ceindre</i>              <t>crai:ndre</t></v>
+<v><i>ceinturer</i>            <t>aim:er</t></v>
+<v><i>célébrer</i>           <t>cél:ébrer</t></v>
+<v><i>celer</i>                        <t>p:eler</t></v>
+<v><i>cémenter</i>            <t>aim:er</t></v>
+<v><i>cendrer</i>              <t>aim:er</t></v>
+<v><i>censurer</i>             <t>aim:er</t></v>
+<v><i>centraliser</i>          <t>aim:er</t></v>
+<v><i>centrer</i>              <t>aim:er</t></v>
+<v><i>centrifuger</i>          <t>man:ger</t></v>
+<v><i>centupler</i>            <t>aim:er</t></v>
+<v><i>cercler</i>              <t>aim:er</t></v>
+<v><i>cerner</i>               <t>aim:er</t></v>
+<v><i>certifier</i>            <t>aim:er</t></v>
+<v><i>césariser</i>           <t>aim:er</t></v>
+<v><i>cesser</i>               <t>aim:er</t></v>
+<v><i>chabler</i>              <t>aim:er</t></v>
+<v><i>chagriner</i>            <t>aim:er</t></v>
+<v><i>chahuter</i>             <t>aim:er</t></v>
+<v><i>chaîner</i>             <t>aim:er</t></v>
+<v><i>challenger</i>           <t>man:ger</t></v>
+<v><i>chaloir</i>              <t>cha:loir</t></v>
+<v><i>chalouper</i>            <t>aim:er</t></v>
+<v><i>chamailler</i>           <t>aim:er</t></v>
+<v><i>chamarrer</i>            <t>aim:er</t></v>
+<v><i>chambarder</i>           <t>aim:er</t></v>
+<v><i>chambouler</i>           <t>aim:er</t></v>
+<v><i>chambrer</i>             <t>aim:er</t></v>
+<v><i>chamoiser</i>            <t>aim:er</t></v>
+<v><i>champagniser</i>         <t>aim:er</t></v>
+<v><i>champignonner</i>                <t>aim:er</t></v>
+<v><i>champlever</i>           <t>l:ever</t></v>
+<v><i>chanceler</i>            <t>app:eler</t></v>
+<v><i>chancir</i>              <t>fin:ir</t></v>
+<v><i>chanfreiner</i>          <t>aim:er</t></v>
+<v><i>changer</i>              <t>man:ger</t></v>
+<v><i>chansonner</i>           <t>aim:er</t></v>
+<v><i>chanstiquer</i>          <t>aim:er</t></v>
+<v><i>chanter</i>              <t>aim:er</t></v>
+<v><i>chantonner</i>           <t>aim:er</t></v>
+<v><i>chantourner</i>          <t>aim:er</t></v>
+<v><i>chaparder</i>            <t>aim:er</t></v>
+<v><i>chapeauter</i>           <t>aim:er</t></v>
+<v><i>chapeler</i>             <t>app:eler</t></v>
+<v><i>chaperonner</i>          <t>aim:er</t></v>
+<v><i>chapitrer</i>            <t>aim:er</t></v>
+<v><i>chaponner</i>            <t>aim:er</t></v>
+<v><i>chaptaliser</i>          <t>aim:er</t></v>
+<v><i>charbonner</i>           <t>aim:er</t></v>
+<v><i>charcuter</i>            <t>aim:er</t></v>
+<v><i>charger</i>              <t>man:ger</t></v>
+<v><i>charioter</i>            <t>aim:er</t></v>
+<v><i>charmer</i>              <t>aim:er</t></v>
+<v><i>charpenter</i>           <t>aim:er</t></v>
+<v><i>charrier</i>             <t>aim:er</t></v>
+<v><i>charroyer</i>            <t>netto:yer</t></v>
+<v><i>chasser</i>              <t>aim:er</t></v>
+<v><i>châtier</i>             <t>aim:er</t></v>
+<v><i>chatonner</i>            <t>aim:er</t></v>
+<v><i>chatouiller</i>          <t>aim:er</t></v>
+<v><i>chatoyer</i>             <t>netto:yer</t></v>
+<v><i>châtrer</i>             <t>aim:er</t></v>
+<v><i>chauffer</i>             <t>aim:er</t></v>
+<v><i>chauler</i>              <t>aim:er</t></v>
+<v><i>chaumer</i>              <t>aim:er</t></v>
+<v><i>chausser</i>             <t>aim:er</t></v>
+<v><i>chauvir</i>              <t>chauv:ir</t></v>
+<v><i>chavirer</i>             <t>aim:er</t></v>
+<v><i>chelinguer</i>           <t>aim:er</t></v>
+<v><i>cheminer</i>             <t>aim:er</t></v>
+<v><i>chemiser</i>             <t>aim:er</t></v>
+<v><i>chercher</i>             <t>aim:er</t></v>
+<v><i>chérer</i>              <t>réf:érer</t></v>
+<v><i>chérir</i>              <t>fin:ir</t></v>
+<v><i>cherrer</i>              <t>aim:er</t></v>
+<v><i>chevaler</i>             <t>aim:er</t></v>
+<v><i>chevaucher</i>           <t>aim:er</t></v>
+<v><i>cheviller</i>            <t>aim:er</t></v>
+<v><i>chevrer</i>              <t>aim:er</t></v>
+<v><i>chevreter</i>            <t>j:eter</t></v>
+<v><i>chevronner</i>           <t>aim:er</t></v>
+<v><i>chevroter</i>            <t>aim:er</t></v>
+<v><i>chiader</i>              <t>aim:er</t></v>
+<v><i>chialer</i>              <t>aim:er</t></v>
+<v><i>chicaner</i>             <t>aim:er</t></v>
+<v><i>chicoter</i>             <t>aim:er</t></v>
+<v><i>chienner</i>             <t>aim:er</t></v>
+<v><i>chier</i>                        <t>aim:er</t></v>
+<v><i>chiffonner</i>           <t>aim:er</t></v>
+<v><i>chiffrer</i>             <t>aim:er</t></v>
+<v><i>chinder</i>              <t>aim:er</t></v>
+<v><i>chiner</i>               <t>aim:er</t></v>
+<v><i>chinoiser</i>            <t>aim:er</t></v>
+<v><i>chiper</i>               <t>aim:er</t></v>
+<v><i>chipoter</i>             <t>aim:er</t></v>
+<v><i>chiquer</i>              <t>aim:er</t></v>
+<v><i>chirographier</i>                <t>aim:er</t></v>
+<v><i>chlinguer</i>            <t>aim:er</t></v>
+<v><i>chlorer</i>              <t>aim:er</t></v>
+<v><i>chloroformer</i>         <t>aim:er</t></v>
+<v><i>chlorurer</i>            <t>aim:er</t></v>
+<v><i>choir</i>                        <t>ch:oir</t></v>
+<v><i>choisir</i>              <t>fin:ir</t></v>
+<v><i>chômer</i>              <t>aim:er</t></v>
+<v><i>choper</i>               <t>aim:er</t></v>
+<v><i>chopiner</i>             <t>aim:er</t></v>
+<v><i>chopper</i>              <t>aim:er</t></v>
+<v><i>choquer</i>              <t>aim:er</t></v>
+<v><i>chorégraphier</i>               <t>aim:er</t></v>
+<v><i>chosifier</i>            <t>aim:er</t></v>
+<v><i>chouchouter</i>          <t>aim:er</t></v>
+<v><i>chouiner</i>             <t>aim:er</t></v>
+<v><i>chouraver</i>            <t>aim:er</t></v>
+<v><i>chourer</i>              <t>aim:er</t></v>
+<v><i>chouriner</i>            <t>aim:er</t></v>
+<v><i>choyer</i>               <t>netto:yer</t></v>
+<v><i>christianiser</i>                <t>aim:er</t></v>
+<v><i>chromer</i>              <t>aim:er</t></v>
+<v><i>chromiser</i>            <t>aim:er</t></v>
+<v><i>chroniquer</i>           <t>aim:er</t></v>
+<v><i>chronométrer</i>                <t>imp:étrer</t></v>
+<v><i>chuchoter</i>            <t>aim:er</t></v>
+<v><i>chuinter</i>             <t>aim:er</t></v>
+<v><i>chuter</i>               <t>aim:er</t></v>
+<v><i>cibler</i>               <t>aim:er</t></v>
+<v><i>cicatriser</i>           <t>aim:er</t></v>
+<v><i>cicler</i>               <t>aim:er</t></v>
+<v><i>ciller</i>               <t>aim:er</t></v>
+<v><i>cimenter</i>             <t>aim:er</t></v>
+<v><i>cinématographier</i>    <t>aim:er</t></v>
+<v><i>cingler</i>              <t>aim:er</t></v>
+<v><i>cintrer</i>              <t>aim:er</t></v>
+<v><i>circoncire</i>           <t>circonc:ire</t></v>
+<v><i>circonscrire</i>         <t>écri:re</t></v>
+<v><i>circonstancier</i>       <t>aim:er</t></v>
+<v><i>circonvenir</i>          <t>t:enir</t></v>
+<v><i>circulariser</i>         <t>aim:er</t></v>
+<v><i>circuler</i>             <t>aim:er</t></v>
+<v><i>cirer</i>                        <t>aim:er</t></v>
+<v><i>cisailler</i>            <t>aim:er</t></v>
+<v><i>ciseler</i>              <t>p:eler</t></v>
+<v><i>citer</i>                        <t>aim:er</t></v>
+<v><i>civiliser</i>            <t>aim:er</t></v>
+<v><i>clabauder</i>            <t>aim:er</t></v>
+<v><i>claboter</i>             <t>aim:er</t></v>
+<v><i>claironner</i>           <t>aim:er</t></v>
+<v><i>clamecer</i>             <t>dép:ecer</t></v>
+<v><i>clamer</i>               <t>aim:er</t></v>
+<v><i>clamper</i>              <t>aim:er</t></v>
+<v><i>clampser</i>             <t>aim:er</t></v>
+<v><i>clamser</i>              <t>aim:er</t></v>
+<v><i>claper</i>               <t>aim:er</t></v>
+<v><i>clapir</i>               <t>fin:ir</t></v>
+<v><i>clapoter</i>             <t>aim:er</t></v>
+<v><i>clapper</i>              <t>aim:er</t></v>
+<v><i>clapser</i>              <t>aim:er</t></v>
+<v><i>claquemurer</i>          <t>aim:er</t></v>
+<v><i>claquer</i>              <t>aim:er</t></v>
+<v><i>claqueter</i>            <t>j:eter</t></v>
+<v><i>clarifier</i>            <t>aim:er</t></v>
+<v><i>classer</i>              <t>aim:er</t></v>
+<v><i>classifier</i>           <t>aim:er</t></v>
+<v><i>claudiquer</i>           <t>aim:er</t></v>
+<v><i>claustrer</i>            <t>aim:er</t></v>
+<v><i>clavarder</i>            <t>aim:er</t></v>
+<v><i>claver</i>               <t>aim:er</t></v>
+<v><i>claveter</i>             <t>j:eter</t></v>
+<v><i>clavetter</i>            <t>aim:er</t></v>
+<v><i>clayonner</i>            <t>aim:er</t></v>
+<v><i>clicher</i>              <t>aim:er</t></v>
+<v><i>cligner</i>              <t>aim:er</t></v>
+<v><i>clignoter</i>            <t>aim:er</t></v>
+<v><i>climatiser</i>           <t>aim:er</t></v>
+<v><i>cliquer</i>              <t>aim:er</t></v>
+<v><i>cliqueter</i>            <t>j:eter</t></v>
+<v><i>clisser</i>              <t>aim:er</t></v>
+<v><i>cliver</i>               <t>aim:er</t></v>
+<v><i>clochardiser</i>         <t>aim:er</t></v>
+<v><i>clocher</i>              <t>aim:er</t></v>
+<v><i>cloisonner</i>           <t>aim:er</t></v>
+<v><i>cloîtrer</i>            <t>aim:er</t></v>
+<v><i>cloner</i>               <t>aim:er</t></v>
+<v><i>clopiner</i>             <t>aim:er</t></v>
+<v><i>cloquer</i>              <t>aim:er</t></v>
+<v><i>clore</i>                        <t>cl:ore</t></v>
+<v><i>clôturer</i>            <t>aim:er</t></v>
+<v><i>clouer</i>               <t>aim:er</t></v>
+<v><i>clouter</i>              <t>aim:er</t></v>
+<v><i>coacher</i>              <t>aim:er</t></v>
+<v><i>coaguler</i>             <t>aim:er</t></v>
+<v><i>coalescer</i>            <t>pla:cer</t></v>
+<v><i>coaliser</i>             <t>aim:er</t></v>
+<v><i>coasser</i>              <t>aim:er</t></v>
+<v><i>cocher</i>               <t>aim:er</t></v>
+<v><i>côcher</i>              <t>aim:er</t></v>
+<v><i>cochonner</i>            <t>aim:er</t></v>
+<v><i>cocoler</i>              <t>aim:er</t></v>
+<v><i>cocoter</i>              <t>aim:er</t></v>
+<v><i>cocotter</i>             <t>aim:er</t></v>
+<v><i>cocufier</i>             <t>aim:er</t></v>
+<v><i>coder</i>                        <t>aim:er</t></v>
+<v><i>codifier</i>             <t>aim:er</t></v>
+<v><i>coéditer</i>            <t>aim:er</t></v>
+<v><i>coexister</i>            <t>aim:er</t></v>
+<v><i>coffrer</i>              <t>aim:er</t></v>
+<v><i>cofinancer</i>           <t>pla:cer</t></v>
+<v><i>cogérer</i>             <t>réf:érer</t></v>
+<v><i>cogiter</i>              <t>aim:er</t></v>
+<v><i>cogner</i>               <t>aim:er</t></v>
+<v><i>cohabiter</i>            <t>aim:er</t></v>
+<v><i>cohériter</i>           <t>aim:er</t></v>
+<v><i>coiffer</i>              <t>aim:er</t></v>
+<v><i>coincer</i>              <t>pla:cer</t></v>
+<v><i>coïncider</i>           <t>aim:er</t></v>
+<v><i>coïter</i>              <t>aim:er</t></v>
+<v><i>cokéfier</i>            <t>aim:er</t></v>
+<v><i>collaborer</i>           <t>aim:er</t></v>
+<v><i>collationner</i>         <t>aim:er</t></v>
+<v><i>collecter</i>            <t>aim:er</t></v>
+<v><i>collectionner</i>                <t>aim:er</t></v>
+<v><i>collectiviser</i>                <t>aim:er</t></v>
+<v><i>coller</i>               <t>aim:er</t></v>
+<v><i>colleter</i>             <t>j:eter</t></v>
+<v><i>colliger</i>             <t>man:ger</t></v>
+<v><i>colloquer</i>            <t>aim:er</t></v>
+<v><i>colmater</i>             <t>aim:er</t></v>
+<v><i>coloniser</i>            <t>aim:er</t></v>
+<v><i>colorer</i>              <t>aim:er</t></v>
+<v><i>colorier</i>             <t>aim:er</t></v>
+<v><i>coloriser</i>            <t>aim:er</t></v>
+<v><i>colporter</i>            <t>aim:er</t></v>
+<v><i>coltiner</i>             <t>aim:er</t></v>
+<v><i>combattre</i>            <t>bat:tre</t></v>
+<v><i>combiner</i>             <t>aim:er</t></v>
+<v><i>combler</i>              <t>aim:er</t></v>
+<v><i>commander</i>            <t>aim:er</t></v>
+<v><i>commanditer</i>          <t>aim:er</t></v>
+<v><i>commémorer</i>          <t>aim:er</t></v>
+<v><i>commencer</i>            <t>pla:cer</t></v>
+<v><i>commenter</i>            <t>aim:er</t></v>
+<v><i>commercer</i>            <t>pla:cer</t></v>
+<v><i>commercialiser</i>       <t>aim:er</t></v>
+<v><i>commérer</i>            <t>réf:érer</t></v>
+<v><i>commettre</i>            <t>m:ettre</t></v>
+<v><i>commissionner</i>                <t>aim:er</t></v>
+<v><i>commotionner</i>         <t>aim:er</t></v>
+<v><i>commuer</i>              <t>aim:er</t></v>
+<v><i>communaliser</i>         <t>aim:er</t></v>
+<v><i>communautariser</i>      <t>aim:er</t></v>
+<v><i>communier</i>            <t>aim:er</t></v>
+<v><i>communiquer</i>          <t>aim:er</t></v>
+<v><i>commuter</i>             <t>aim:er</t></v>
+<v><i>compacter</i>            <t>aim:er</t></v>
+<v><i>comparaître</i>         <t>rep:aître</t></v>
+<v><i>comparer</i>             <t>aim:er</t></v>
+<v><i>compartimenter</i>       <t>aim:er</t></v>
+<v><i>compasser</i>            <t>aim:er</t></v>
+<v><i>compatir</i>             <t>fin:ir</t></v>
+<v><i>compenser</i>            <t>aim:er</t></v>
+<v><i>compétitionner</i>      <t>aim:er</t></v>
+<v><i>compiler</i>             <t>aim:er</t></v>
+<v><i>compisser</i>            <t>aim:er</t></v>
+<v><i>complaire</i>            <t>pl:aire</t></v>
+<v><i>complanter</i>           <t>aim:er</t></v>
+<v><i>compléter</i>           <t>décr:éter</t></v>
+<v><i>complexer</i>            <t>aim:er</t></v>
+<v><i>complexifier</i>         <t>aim:er</t></v>
+<v><i>complimenter</i>         <t>aim:er</t></v>
+<v><i>compliquer</i>           <t>aim:er</t></v>
+<v><i>comploter</i>            <t>aim:er</t></v>
+<v><i>comporter</i>            <t>aim:er</t></v>
+<v><i>composer</i>             <t>aim:er</t></v>
+<v><i>composter</i>            <t>aim:er</t></v>
+<v><i>comprendre</i>           <t>pr:endre</t></v>
+<v><i>compresser</i>           <t>aim:er</t></v>
+<v><i>comprimer</i>            <t>aim:er</t></v>
+<v><i>compromettre</i>         <t>m:ettre</t></v>
+<v><i>comptabiliser</i>                <t>aim:er</t></v>
+<v><i>compter</i>              <t>aim:er</t></v>
+<v><i>compulser</i>            <t>aim:er</t></v>
+<v><i>computer</i>             <t>aim:er</t></v>
+<v><i>concasser</i>            <t>aim:er</t></v>
+<v><i>concaténer</i>          <t>ali:éner</t></v>
+<v><i>concéder</i>            <t>c:éder</t></v>
+<v><i>concélébrer</i>                <t>cél:ébrer</t></v>
+<v><i>concentrer</i>           <t>aim:er</t></v>
+<v><i>conceptualiser</i>       <t>aim:er</t></v>
+<v><i>concerner</i>            <t>aim:er</t></v>
+<v><i>concerter</i>            <t>aim:er</t></v>
+<v><i>concevoir</i>            <t>dé:cevoir</t></v>
+<v><i>concilier</i>            <t>aim:er</t></v>
+<v><i>conclure</i>             <t>concl:ure</t></v>
+<v><i>concocter</i>            <t>aim:er</t></v>
+<v><i>concorder</i>            <t>aim:er</t></v>
+<v><i>concourir</i>            <t>cour:ir</t></v>
+<v><i>concréter</i>           <t>décr:éter</t></v>
+<v><i>concrétiser</i>         <t>aim:er</t></v>
+<v><i>concurrencer</i>         <t>pla:cer</t></v>
+<v><i>condamner</i>            <t>aim:er</t></v>
+<v><i>condenser</i>            <t>aim:er</t></v>
+<v><i>condescendre</i>         <t>ten:dre</t></v>
+<v><i>conditionner</i>         <t>aim:er</t></v>
+<v><i>conduire</i>             <t>condui:re</t></v>
+<v><i>confectionner</i>                <t>aim:er</t></v>
+<v><i>confédérer</i>         <t>réf:érer</t></v>
+<v><i>conférer</i>            <t>réf:érer</t></v>
+<v><i>confesser</i>            <t>aim:er</t></v>
+<v><i>confier</i>              <t>aim:er</t></v>
+<v><i>configurer</i>           <t>aim:er</t></v>
+<v><i>confiner</i>             <t>aim:er</t></v>
+<v><i>confire</i>              <t>d:ire</t></v>
+<v><i>confirmer</i>            <t>aim:er</t></v>
+<v><i>confisquer</i>           <t>aim:er</t></v>
+<v><i>confluer</i>             <t>aim:er</t></v>
+<v><i>confondre</i>            <t>ten:dre</t></v>
+<v><i>conformer</i>            <t>aim:er</t></v>
+<v><i>conforter</i>            <t>aim:er</t></v>
+<v><i>confronter</i>           <t>aim:er</t></v>
+<v><i>congédier</i>           <t>aim:er</t></v>
+<v><i>congeler</i>             <t>p:eler</t></v>
+<v><i>congestionner</i>                <t>aim:er</t></v>
+<v><i>conglomérer</i>         <t>réf:érer</t></v>
+<v><i>conglutiner</i>          <t>aim:er</t></v>
+<v><i>congratuler</i>          <t>aim:er</t></v>
+<v><i>congréer</i>            <t>aim:er</t></v>
+<v><i>cônir</i>                       <t>fin:ir</t></v>
+<v><i>conjecturer</i>          <t>aim:er</t></v>
+<v><i>conjoindre</i>           <t>crai:ndre</t></v>
+<v><i>conjuguer</i>            <t>aim:er</t></v>
+<v><i>conjurer</i>             <t>aim:er</t></v>
+<v><i>connaître</i>           <t>rep:aître</t></v>
+<v><i>connecter</i>            <t>aim:er</t></v>
+<v><i>connoter</i>             <t>aim:er</t></v>
+<v><i>conobrer</i>             <t>aim:er</t></v>
+<v><i>conquérir</i>           <t>acqu:érir</t></v>
+<v><i>consacrer</i>            <t>aim:er</t></v>
+<v><i>conscientiser</i>                <t>aim:er</t></v>
+<v><i>conscrire</i>            <t>écri:re</t></v>
+<v><i>conseiller</i>           <t>aim:er</t></v>
+<v><i>consentir</i>            <t>men:tir</t></v>
+<v><i>conserver</i>            <t>aim:er</t></v>
+<v><i>considérer</i>          <t>réf:érer</t></v>
+<v><i>consigner</i>            <t>aim:er</t></v>
+<v><i>consister</i>            <t>aim:er</t></v>
+<v><i>consoler</i>             <t>aim:er</t></v>
+<v><i>consolider</i>           <t>aim:er</t></v>
+<v><i>consommer</i>            <t>aim:er</t></v>
+<v><i>consoner</i>             <t>aim:er</t></v>
+<v><i>conspirer</i>            <t>aim:er</t></v>
+<v><i>conspuer</i>             <t>aim:er</t></v>
+<v><i>constater</i>            <t>aim:er</t></v>
+<v><i>consteller</i>           <t>aim:er</t></v>
+<v><i>consterner</i>           <t>aim:er</t></v>
+<v><i>constiper</i>            <t>aim:er</t></v>
+<v><i>constituer</i>           <t>aim:er</t></v>
+<v><i>constitutionnaliser</i>  <t>aim:er</t></v>
+<v><i>construire</i>           <t>condui:re</t></v>
+<v><i>consulter</i>            <t>aim:er</t></v>
+<v><i>consumer</i>             <t>aim:er</t></v>
+<v><i>contacter</i>            <t>aim:er</t></v>
+<v><i>contagionner</i>         <t>aim:er</t></v>
+<v><i>containeriser</i>                <t>aim:er</t></v>
+<v><i>containériser</i>               <t>aim:er</t></v>
+<v><i>contaminer</i>           <t>aim:er</t></v>
+<v><i>contempler</i>           <t>aim:er</t></v>
+<v><i>conteneuriser</i>                <t>aim:er</t></v>
+<v><i>contenir</i>             <t>t:enir</t></v>
+<v><i>contenter</i>            <t>aim:er</t></v>
+<v><i>conter</i>               <t>aim:er</t></v>
+<v><i>contester</i>            <t>aim:er</t></v>
+<v><i>contextualiser</i>       <t>aim:er</t></v>
+<v><i>contingenter</i>         <t>aim:er</t></v>
+<v><i>continuer</i>            <t>aim:er</t></v>
+<v><i>contorsionner</i>                <t>aim:er</t></v>
+<v><i>contourner</i>           <t>aim:er</t></v>
+<v><i>contracter</i>           <t>aim:er</t></v>
+<v><i>contractualiser</i>      <t>aim:er</t></v>
+<v><i>contracturer</i>         <t>aim:er</t></v>
+<v><i>contraindre</i>          <t>crai:ndre</t></v>
+<v><i>contraposer</i>          <t>aim:er</t></v>
+<v><i>contrarier</i>           <t>aim:er</t></v>
+<v><i>contraster</i>           <t>aim:er</t></v>
+<v><i>contre-attaquer</i>      <t>aim:er</t></v>
+<v><i>contrebalancer</i>       <t>pla:cer</t></v>
+<v><i>contrebattre</i>         <t>bat:tre</t></v>
+<v><i>contre-bouter</i>                <t>aim:er</t></v>
+<v><i>contrebouter</i>         <t>aim:er</t></v>
+<v><i>contre-braquer</i>       <t>aim:er</t></v>
+<v><i>contre-buter</i>         <t>aim:er</t></v>
+<v><i>contrebuter</i>          <t>aim:er</t></v>
+<v><i>contrecarrer</i>         <t>aim:er</t></v>
+<v><i>contredire</i>           <t>méd:ire</t></v>
+<v><i>contrefaire</i>          <t>f:aire</t></v>
+<v><i>contreficher</i>         <t>aim:er</t></v>
+<v><i>contrefoutre</i>         <t>fou:tre</t></v>
+<v><i>contre-indiquer</i>      <t>aim:er</t></v>
+<v><i>contremander</i>         <t>aim:er</t></v>
+<v><i>contre-manifester</i>    <t>aim:er</t></v>
+<v><i>contremarquer</i>                <t>aim:er</t></v>
+<v><i>contre-miner</i>         <t>aim:er</t></v>
+<v><i>contre-passer</i>                <t>aim:er</t></v>
+<v><i>contre-plaquer</i>       <t>aim:er</t></v>
+<v><i>contreplaquer</i>                <t>aim:er</t></v>
+<v><i>contrer</i>              <t>aim:er</t></v>
+<v><i>contre-sceller</i>       <t>aim:er</t></v>
+<v><i>contresigner</i>         <t>aim:er</t></v>
+<v><i>contre-tirer</i>         <t>aim:er</t></v>
+<v><i>contretyper</i>          <t>aim:er</t></v>
+<v><i>contrevenir</i>          <t>t:enir</t></v>
+<v><i>contreventer</i>         <t>aim:er</t></v>
+<v><i>contribuer</i>           <t>aim:er</t></v>
+<v><i>contrister</i>           <t>aim:er</t></v>
+<v><i>contrôler</i>           <t>aim:er</t></v>
+<v><i>controuver</i>           <t>aim:er</t></v>
+<v><i>controverser</i>         <t>aim:er</t></v>
+<v><i>contusionner</i>         <t>aim:er</t></v>
+<v><i>convaincre</i>           <t>vain:cre</t></v>
+<v><i>convenir</i>             <t>t:enir</t></v>
+<v><i>conventionner</i>                <t>aim:er</t></v>
+<v><i>converger</i>            <t>man:ger</t></v>
+<v><i>converser</i>            <t>aim:er</t></v>
+<v><i>convertir</i>            <t>fin:ir</t></v>
+<v><i>convier</i>              <t>aim:er</t></v>
+<v><i>convoiter</i>            <t>aim:er</t></v>
+<v><i>convoler</i>             <t>aim:er</t></v>
+<v><i>convoquer</i>            <t>aim:er</t></v>
+<v><i>convoyer</i>             <t>netto:yer</t></v>
+<v><i>convulser</i>            <t>aim:er</t></v>
+<v><i>convulsionner</i>                <t>aim:er</t></v>
+<v><i>coopérer</i>            <t>réf:érer</t></v>
+<v><i>coopter</i>              <t>aim:er</t></v>
+<v><i>coordonner</i>           <t>aim:er</t></v>
+<v><i>copartager</i>           <t>man:ger</t></v>
+<v><i>copermuter</i>           <t>aim:er</t></v>
+<v><i>copier</i>               <t>aim:er</t></v>
+<v><i>copiner</i>              <t>aim:er</t></v>
+<v><i>coposséder</i>          <t>c:éder</t></v>
+<v><i>coproduire</i>           <t>condui:re</t></v>
+<v><i>copuler</i>              <t>aim:er</t></v>
+<v><i>coquer</i>               <t>aim:er</t></v>
+<v><i>coqueter</i>             <t>j:eter</t></v>
+<v><i>coquiller</i>            <t>aim:er</t></v>
+<v><i>cordeler</i>             <t>app:eler</t></v>
+<v><i>corder</i>               <t>aim:er</t></v>
+<v><i>cordonner</i>            <t>aim:er</t></v>
+<v><i>cornaquer</i>            <t>aim:er</t></v>
+<v><i>corner</i>               <t>aim:er</t></v>
+<v><i>correctionnaliser</i>    <t>aim:er</t></v>
+<v><i>corréler</i>            <t>rév:éler</t></v>
+<v><i>correspondre</i>         <t>ten:dre</t></v>
+<v><i>corriger</i>             <t>man:ger</t></v>
+<v><i>corroborer</i>           <t>aim:er</t></v>
+<v><i>corroder</i>             <t>aim:er</t></v>
+<v><i>corrompre</i>            <t>rom:pre</t></v>
+<v><i>corroyer</i>             <t>netto:yer</t></v>
+<v><i>corser</i>               <t>aim:er</t></v>
+<v><i>corseter</i>             <t>ach:eter</t></v>
+<v><i>cosigner</i>             <t>aim:er</t></v>
+<v><i>cosmétiquer</i>         <t>aim:er</t></v>
+<v><i>cosser</i>               <t>aim:er</t></v>
+<v><i>costumer</i>             <t>aim:er</t></v>
+<v><i>coter</i>                        <t>aim:er</t></v>
+<v><i>cotir</i>                        <t>fin:ir</t></v>
+<v><i>cotiser</i>              <t>aim:er</t></v>
+<v><i>cotonner</i>             <t>aim:er</t></v>
+<v><i>côtoyer</i>             <t>netto:yer</t></v>
+<v><i>couchailler</i>          <t>aim:er</t></v>
+<v><i>coucher</i>              <t>aim:er</t></v>
+<v><i>couder</i>               <t>aim:er</t></v>
+<v><i>coudoyer</i>             <t>netto:yer</t></v>
+<v><i>coudre</i>               <t>cou:dre</t></v>
+<v><i>couillonner</i>          <t>aim:er</t></v>
+<v><i>couiner</i>              <t>aim:er</t></v>
+<v><i>couler</i>               <t>aim:er</t></v>
+<v><i>coulisser</i>            <t>aim:er</t></v>
+<v><i>coupailler</i>           <t>aim:er</t></v>
+<v><i>coupeller</i>            <t>aim:er</t></v>
+<v><i>couper</i>               <t>aim:er</t></v>
+<v><i>coupler</i>              <t>aim:er</t></v>
+<v><i>courailler</i>           <t>aim:er</t></v>
+<v><i>courbaturer</i>          <t>aim:er</t></v>
+<v><i>courber</i>              <t>aim:er</t></v>
+<v><i>courcailler</i>          <t>aim:er</t></v>
+<v><i>courir</i>               <t>cour:ir</t></v>
+<v><i>couronner</i>            <t>aim:er</t></v>
+<v><i>courroucer</i>           <t>pla:cer</t></v>
+<v><i>courser</i>              <t>aim:er</t></v>
+<v><i>courtauder</i>           <t>aim:er</t></v>
+<v><i>court-circuiter</i>      <t>aim:er</t></v>
+<v><i>courtiser</i>            <t>aim:er</t></v>
+<v><i>cousiner</i>             <t>aim:er</t></v>
+<v><i>coûter</i>              <t>aim:er</t></v>
+<v><i>couturer</i>             <t>aim:er</t></v>
+<v><i>couver</i>               <t>aim:er</t></v>
+<v><i>couvrir</i>              <t>ouv:rir</t></v>
+<v><i>craboter</i>             <t>aim:er</t></v>
+<v><i>cracher</i>              <t>aim:er</t></v>
+<v><i>crachiner</i>            <t>aim:er</t></v>
+<v><i>crachoter</i>            <t>aim:er</t></v>
+<v><i>crachouiller</i>         <t>aim:er</t></v>
+<v><i>crailler</i>             <t>aim:er</t></v>
+<v><i>craindre</i>             <t>crai:ndre</t></v>
+<v><i>cramer</i>               <t>aim:er</t></v>
+<v><i>cramper</i>              <t>aim:er</t></v>
+<v><i>cramponner</i>           <t>aim:er</t></v>
+<v><i>crampser</i>             <t>aim:er</t></v>
+<v><i>cramser</i>              <t>aim:er</t></v>
+<v><i>craner</i>               <t>aim:er</t></v>
+<v><i>crâner</i>              <t>aim:er</t></v>
+<v><i>cranter</i>              <t>aim:er</t></v>
+<v><i>crapahuter</i>           <t>aim:er</t></v>
+<v><i>crapaüter</i>           <t>aim:er</t></v>
+<v><i>crapuler</i>             <t>aim:er</t></v>
+<v><i>craqueler</i>            <t>app:eler</t></v>
+<v><i>craquer</i>              <t>aim:er</t></v>
+<v><i>craqueter</i>            <t>j:eter</t></v>
+<v><i>crasser</i>              <t>aim:er</t></v>
+<v><i>cravacher</i>            <t>aim:er</t></v>
+<v><i>cravater</i>             <t>aim:er</t></v>
+<v><i>crawler</i>              <t>aim:er</t></v>
+<v><i>crayonner</i>            <t>aim:er</t></v>
+<v><i>crécher</i>             <t>s:écher</t></v>
+<v><i>crédibiliser</i>                <t>aim:er</t></v>
+<v><i>créditer</i>            <t>aim:er</t></v>
+<v><i>créer</i>                       <t>aim:er</t></v>
+<v><i>crémer</i>              <t>cr:émer</t></v>
+<v><i>créneler</i>            <t>app:eler</t></v>
+<v><i>créner</i>              <t>ali:éner</t></v>
+<v><i>créoliser</i>           <t>aim:er</t></v>
+<v><i>créosoter</i>           <t>aim:er</t></v>
+<v><i>crêper</i>              <t>aim:er</t></v>
+<v><i>crépir</i>              <t>fin:ir</t></v>
+<v><i>crépiter</i>            <t>aim:er</t></v>
+<v><i>crétiniser</i>          <t>aim:er</t></v>
+<v><i>creuser</i>              <t>aim:er</t></v>
+<v><i>crevasser</i>            <t>aim:er</t></v>
+<v><i>crever</i>               <t>l:ever</t></v>
+<v><i>crevoter</i>             <t>aim:er</t></v>
+<v><i>criailler</i>            <t>aim:er</t></v>
+<v><i>cribler</i>              <t>aim:er</t></v>
+<v><i>crier</i>                        <t>aim:er</t></v>
+<v><i>criminaliser</i>         <t>aim:er</t></v>
+<v><i>crinquer</i>             <t>aim:er</t></v>
+<v><i>crisper</i>              <t>aim:er</t></v>
+<v><i>crisser</i>              <t>aim:er</t></v>
+<v><i>cristalliser</i>         <t>aim:er</t></v>
+<v><i>criticailler</i>         <t>aim:er</t></v>
+<v><i>critiquer</i>            <t>aim:er</t></v>
+<v><i>croasser</i>             <t>aim:er</t></v>
+<v><i>crocher</i>              <t>aim:er</t></v>
+<v><i>crocheter</i>            <t>ach:eter</t></v>
+<v><i>crochir</i>              <t>fin:ir</t></v>
+<v><i>croire</i>               <t>cr:oire</t></v>
+<v><i>croiser</i>              <t>aim:er</t></v>
+<v><i>croître</i>             <t>cr:oître</t></v>
+<v><i>croquer</i>              <t>aim:er</t></v>
+<v><i>crosser</i>              <t>aim:er</t></v>
+<v><i>crotter</i>              <t>aim:er</t></v>
+<v><i>crouler</i>              <t>aim:er</t></v>
+<v><i>croupir</i>              <t>fin:ir</t></v>
+<v><i>croustiller</i>          <t>aim:er</t></v>
+<v><i>croûter</i>             <t>aim:er</t></v>
+<v><i>crucifier</i>            <t>aim:er</t></v>
+<v><i>crypter</i>              <t>aim:er</t></v>
+<v><i>cuber</i>                        <t>aim:er</t></v>
+<v><i>cueillir</i>             <t>cueill:ir</t></v>
+<v><i>cuirasser</i>            <t>aim:er</t></v>
+<v><i>cuire</i>                        <t>condui:re</t></v>
+<v><i>cuisiner</i>             <t>aim:er</t></v>
+<v><i>cuiter</i>               <t>aim:er</t></v>
+<v><i>cuivrer</i>              <t>aim:er</t></v>
+<v><i>culbuter</i>             <t>aim:er</t></v>
+<v><i>culer</i>                        <t>aim:er</t></v>
+<v><i>culminer</i>             <t>aim:er</t></v>
+<v><i>culotter</i>             <t>aim:er</t></v>
+<v><i>culpabiliser</i>         <t>aim:er</t></v>
+<v><i>cultiver</i>             <t>aim:er</t></v>
+<v><i>cumuler</i>              <t>aim:er</t></v>
+<v><i>curer</i>                        <t>aim:er</t></v>
+<v><i>cureter</i>              <t>j:eter</t></v>
+<v><i>cuveler</i>              <t>app:eler</t></v>
+<v><i>cuver</i>                        <t>aim:er</t></v>
+<v><i>cyanoser</i>             <t>aim:er</t></v>
+<v><i>cyanurer</i>             <t>aim:er</t></v>
+<v><i>cycliser</i>             <t>aim:er</t></v>
+<v><i>cylindrer</i>            <t>aim:er</t></v>
+<v><i>dactylographier</i>      <t>aim:er</t></v>
+<v><i>daguer</i>               <t>aim:er</t></v>
+<v><i>daigner</i>              <t>aim:er</t></v>
+<v><i>daller</i>               <t>aim:er</t></v>
+<v><i>damasquiner</i>          <t>aim:er</t></v>
+<v><i>damasser</i>             <t>aim:er</t></v>
+<v><i>damer</i>                        <t>aim:er</t></v>
+<v><i>damner</i>               <t>aim:er</t></v>
+<v><i>dandiner</i>             <t>aim:er</t></v>
+<v><i>danser</i>               <t>aim:er</t></v>
+<v><i>dansoter</i>             <t>aim:er</t></v>
+<v><i>dansotter</i>            <t>aim:er</t></v>
+<v><i>darder</i>               <t>aim:er</t></v>
+<v><i>dater</i>                        <t>aim:er</t></v>
+<v><i>dauber</i>               <t>aim:er</t></v>
+<v><i>déactiver</i>           <t>aim:er</t></v>
+<v><i>déambuler</i>           <t>aim:er</t></v>
+<v><i>débâcher</i>           <t>aim:er</t></v>
+<v><i>débâcler</i>           <t>aim:er</t></v>
+<v><i>débagouler</i>          <t>aim:er</t></v>
+<v><i>débâillonner</i>               <t>aim:er</t></v>
+<v><i>débalancer</i>          <t>pla:cer</t></v>
+<v><i>déballer</i>            <t>aim:er</t></v>
+<v><i>déballonner</i>         <t>aim:er</t></v>
+<v><i>débalourder</i>         <t>aim:er</t></v>
+<v><i>débanaliser</i>         <t>aim:er</t></v>
+<v><i>débander</i>            <t>aim:er</t></v>
+<v><i>débaptiser</i>          <t>aim:er</t></v>
+<v><i>débarbouiller</i>               <t>aim:er</t></v>
+<v><i>débarder</i>            <t>aim:er</t></v>
+<v><i>débarquer</i>           <t>aim:er</t></v>
+<v><i>débarrasser</i>         <t>aim:er</t></v>
+<v><i>débarrer</i>            <t>aim:er</t></v>
+<v><i>débâter</i>            <t>aim:er</t></v>
+<v><i>débâtir</i>            <t>fin:ir</t></v>
+<v><i>débattre</i>            <t>bat:tre</t></v>
+<v><i>débaucher</i>           <t>aim:er</t></v>
+<v><i>débecqueter</i>         <t>j:eter</t></v>
+<v><i>débecter</i>            <t>aim:er</t></v>
+<v><i>débenzoler</i>          <t>aim:er</t></v>
+<v><i>débiliter</i>           <t>aim:er</t></v>
+<v><i>débillarder</i>         <t>aim:er</t></v>
+<v><i>débiner</i>             <t>aim:er</t></v>
+<v><i>débiter</i>             <t>aim:er</t></v>
+<v><i>déblatérer</i>         <t>réf:érer</t></v>
+<v><i>déblayer</i>            <t>pa:yer</t></v>
+<v><i>débleuir</i>            <t>fin:ir</t></v>
+<v><i>débloquer</i>           <t>aim:er</t></v>
+<v><i>débobiner</i>           <t>aim:er</t></v>
+<v><i>déboguer</i>            <t>aim:er</t></v>
+<v><i>déboiser</i>            <t>aim:er</t></v>
+<v><i>déboîter</i>           <t>aim:er</t></v>
+<v><i>débonder</i>            <t>aim:er</t></v>
+<v><i>déborder</i>            <t>aim:er</t></v>
+<v><i>débosseler</i>          <t>app:eler</t></v>
+<v><i>débotter</i>            <t>aim:er</t></v>
+<v><i>déboucher</i>           <t>aim:er</t></v>
+<v><i>déboucler</i>           <t>aim:er</t></v>
+<v><i>débouder</i>            <t>aim:er</t></v>
+<v><i>débouler</i>            <t>aim:er</t></v>
+<v><i>déboulonner</i>         <t>aim:er</t></v>
+<v><i>débouquer</i>           <t>aim:er</t></v>
+<v><i>débourber</i>           <t>aim:er</t></v>
+<v><i>débourrer</i>           <t>aim:er</t></v>
+<v><i>débourser</i>           <t>aim:er</t></v>
+<v><i>déboussoler</i>         <t>aim:er</t></v>
+<v><i>débouter</i>            <t>aim:er</t></v>
+<v><i>déboutonner</i>         <t>aim:er</t></v>
+<v><i>débraguetter</i>                <t>aim:er</t></v>
+<v><i>débrailler</i>          <t>aim:er</t></v>
+<v><i>débrancher</i>          <t>aim:er</t></v>
+<v><i>débraser</i>            <t>aim:er</t></v>
+<v><i>débrayer</i>            <t>pa:yer</t></v>
+<v><i>débrider</i>            <t>aim:er</t></v>
+<v><i>débriefer</i>           <t>aim:er</t></v>
+<v><i>débrocher</i>           <t>aim:er</t></v>
+<v><i>débrouiller</i>         <t>aim:er</t></v>
+<v><i>débroussailler</i>      <t>aim:er</t></v>
+<v><i>débrousser</i>          <t>aim:er</t></v>
+<v><i>débucher</i>            <t>aim:er</t></v>
+<v><i>débudgétiser</i>               <t>aim:er</t></v>
+<v><i>débuller</i>            <t>aim:er</t></v>
+<v><i>débureaucratiser</i>    <t>aim:er</t></v>
+<v><i>débusquer</i>           <t>aim:er</t></v>
+<v><i>débuter</i>             <t>aim:er</t></v>
+<v><i>décacheter</i>          <t>j:eter</t></v>
+<v><i>décadenasser</i>                <t>aim:er</t></v>
+<v><i>décaféiner</i>         <t>aim:er</t></v>
+<v><i>décaisser</i>           <t>aim:er</t></v>
+<v><i>décalaminer</i>         <t>aim:er</t></v>
+<v><i>décalcifier</i>         <t>aim:er</t></v>
+<v><i>décaler</i>             <t>aim:er</t></v>
+<v><i>décalotter</i>          <t>aim:er</t></v>
+<v><i>décalquer</i>           <t>aim:er</t></v>
+<v><i>décamper</i>            <t>aim:er</t></v>
+<v><i>décaniller</i>          <t>aim:er</t></v>
+<v><i>décanter</i>            <t>aim:er</t></v>
+<v><i>décapeler</i>           <t>app:eler</t></v>
+<v><i>décaper</i>             <t>aim:er</t></v>
+<v><i>décapitaliser</i>               <t>aim:er</t></v>
+<v><i>décapiter</i>           <t>aim:er</t></v>
+<v><i>décapoter</i>           <t>aim:er</t></v>
+<v><i>décapsuler</i>          <t>aim:er</t></v>
+<v><i>décapuchonner</i>               <t>aim:er</t></v>
+<v><i>décarbonater</i>                <t>aim:er</t></v>
+<v><i>décarburer</i>          <t>aim:er</t></v>
+<v><i>décarcasser</i>         <t>aim:er</t></v>
+<v><i>décarreler</i>          <t>app:eler</t></v>
+<v><i>décarrer</i>            <t>aim:er</t></v>
+<v><i>décartonner</i>         <t>aim:er</t></v>
+<v><i>décatir</i>             <t>fin:ir</t></v>
+<v><i>décauser</i>            <t>aim:er</t></v>
+<v><i>décavaillonner</i>      <t>aim:er</t></v>
+<v><i>décaver</i>             <t>aim:er</t></v>
+<v><i>décéder</i>            <t>c:éder</t></v>
+<v><i>décélérer</i>         <t>réf:érer</t></v>
+<v><i>déceler</i>             <t>p:eler</t></v>
+<v><i>décentraliser</i>               <t>aim:er</t></v>
+<v><i>décentrer</i>           <t>aim:er</t></v>
+<v><i>décercler</i>           <t>aim:er</t></v>
+<v><i>décérébrer</i>                <t>cél:ébrer</t></v>
+<v><i>décerner</i>            <t>aim:er</t></v>
+<v><i>décerveler</i>          <t>app:eler</t></v>
+<v><i>décesser</i>            <t>aim:er</t></v>
+<v><i>décevoir</i>            <t>dé:cevoir</t></v>
+<v><i>déchagriner</i>         <t>aim:er</t></v>
+<v><i>déchaîner</i>          <t>aim:er</t></v>
+<v><i>déchanter</i>           <t>aim:er</t></v>
+<v><i>déchaper</i>            <t>aim:er</t></v>
+<v><i>déchaperonner</i>               <t>aim:er</t></v>
+<v><i>décharger</i>           <t>man:ger</t></v>
+<v><i>décharner</i>           <t>aim:er</t></v>
+<v><i>déchaumer</i>           <t>aim:er</t></v>
+<v><i>déchausser</i>          <t>aim:er</t></v>
+<v><i>déchevêtrer</i>                <t>aim:er</t></v>
+<v><i>décheviller</i>         <t>aim:er</t></v>
+<v><i>déchiffonner</i>                <t>aim:er</t></v>
+<v><i>déchiffrer</i>          <t>aim:er</t></v>
+<v><i>déchiqueter</i>         <t>j:eter</t></v>
+<v><i>déchirer</i>            <t>aim:er</t></v>
+<v><i>déchlorurer</i>         <t>aim:er</t></v>
+<v><i>déchoir</i>             <t>déch:oir</t></v>
+<v><i>déchristianiser</i>     <t>aim:er</t></v>
+<v><i>déchromer</i>           <t>aim:er</t></v>
+<v><i>décider</i>             <t>aim:er</t></v>
+<v><i>décimaliser</i>         <t>aim:er</t></v>
+<v><i>décimer</i>             <t>aim:er</t></v>
+<v><i>décintrer</i>           <t>aim:er</t></v>
+<v><i>déclamer</i>            <t>aim:er</t></v>
+<v><i>déclarer</i>            <t>aim:er</t></v>
+<v><i>déclasser</i>           <t>aim:er</t></v>
+<v><i>déclassifier</i>                <t>aim:er</t></v>
+<v><i>déclaveter</i>          <t>j:eter</t></v>
+<v><i>déclencher</i>          <t>aim:er</t></v>
+<v><i>décléricaliser</i>     <t>aim:er</t></v>
+<v><i>décliner</i>            <t>aim:er</t></v>
+<v><i>déclinquer</i>          <t>aim:er</t></v>
+<v><i>décliqueter</i>         <t>j:eter</t></v>
+<v><i>décloisonner</i>                <t>aim:er</t></v>
+<v><i>déclore</i>             <t>éclo:re</t></v>
+<v><i>déclouer</i>            <t>aim:er</t></v>
+<v><i>décocher</i>            <t>aim:er</t></v>
+<v><i>décoder</i>             <t>aim:er</t></v>
+<v><i>décoffrer</i>           <t>aim:er</t></v>
+<v><i>décoiffer</i>           <t>aim:er</t></v>
+<v><i>décoincer</i>           <t>pla:cer</t></v>
+<v><i>décolérer</i>          <t>réf:érer</t></v>
+<v><i>décollectiviser</i>     <t>aim:er</t></v>
+<v><i>décoller</i>            <t>aim:er</t></v>
+<v><i>décolleter</i>          <t>j:eter</t></v>
+<v><i>décoloniser</i>         <t>aim:er</t></v>
+<v><i>décolorer</i>           <t>aim:er</t></v>
+<v><i>décommander</i>         <t>aim:er</t></v>
+<v><i>décompenser</i>         <t>aim:er</t></v>
+<v><i>décomplexer</i>         <t>aim:er</t></v>
+<v><i>décomposer</i>          <t>aim:er</t></v>
+<v><i>compoter</i>             <t>aim:er</t></v>
+<v><i>décompresser</i>                <t>aim:er</t></v>
+<v><i>décomprimer</i>         <t>aim:er</t></v>
+<v><i>décompter</i>           <t>aim:er</t></v>
+<v><i>déconcentrer</i>                <t>aim:er</t></v>
+<v><i>déconcerter</i>         <t>aim:er</t></v>
+<v><i>déconcrisser</i>                <t>aim:er</t></v>
+<v><i>déconditionner</i>      <t>aim:er</t></v>
+<v><i>décongeler</i>          <t>p:eler</t></v>
+<v><i>décongestionner</i>     <t>aim:er</t></v>
+<v><i>déconjuguer</i>         <t>aim:er</t></v>
+<v><i>déconnecter</i>         <t>aim:er</t></v>
+<v><i>déconner</i>            <t>aim:er</t></v>
+<v><i>déconseiller</i>                <t>aim:er</t></v>
+<v><i>déconsidérer</i>               <t>réf:érer</t></v>
+<v><i>déconsigner</i>         <t>aim:er</t></v>
+<v><i>déconstiper</i>         <t>aim:er</t></v>
+<v><i>déconstruire</i>                <t>condui:re</t></v>
+<v><i>décontaminer</i>                <t>aim:er</t></v>
+<v><i>décontenancer</i>               <t>pla:cer</t></v>
+<v><i>décontracter</i>                <t>aim:er</t></v>
+<v><i>déconventionner</i>     <t>aim:er</t></v>
+<v><i>décorder</i>            <t>aim:er</t></v>
+<v><i>décorer</i>             <t>aim:er</t></v>
+<v><i>décorner</i>            <t>aim:er</t></v>
+<v><i>décortiquer</i>         <t>aim:er</t></v>
+<v><i>découcher</i>           <t>aim:er</t></v>
+<v><i>découdre</i>            <t>cou:dre</t></v>
+<v><i>découler</i>            <t>aim:er</t></v>
+<v><i>découper</i>            <t>aim:er</t></v>
+<v><i>découpler</i>           <t>aim:er</t></v>
+<v><i>décourager</i>          <t>man:ger</t></v>
+<v><i>découronner</i>         <t>aim:er</t></v>
+<v><i>découvrir</i>           <t>ouv:rir</t></v>
+<v><i>décrasser</i>           <t>aim:er</t></v>
+<v><i>décréditer</i>         <t>aim:er</t></v>
+<v><i>décrémenter</i>                <t>aim:er</t></v>
+<v><i>décrêper</i>           <t>aim:er</t></v>
+<v><i>décrépir</i>           <t>fin:ir</t></v>
+<v><i>décrépiter</i>         <t>aim:er</t></v>
+<v><i>décréter</i>           <t>décr:éter</t></v>
+<v><i>décreuser</i>           <t>aim:er</t></v>
+<v><i>décrier</i>             <t>aim:er</t></v>
+<v><i>décriminaliser</i>      <t>aim:er</t></v>
+<v><i>décrire</i>             <t>écri:re</t></v>
+<v><i>décrisper</i>           <t>aim:er</t></v>
+<v><i>décrocher</i>           <t>aim:er</t></v>
+<v><i>décroiser</i>           <t>aim:er</t></v>
+<v><i>décroître</i>          <t>cr:oître</t></v>
+<v><i>décrotter</i>           <t>aim:er</t></v>
+<v><i>décroûter</i>          <t>aim:er</t></v>
+<v><i>décruer</i>             <t>aim:er</t></v>
+<v><i>décruser</i>            <t>aim:er</t></v>
+<v><i>décrypter</i>           <t>aim:er</t></v>
+<v><i>décuivrer</i>           <t>aim:er</t></v>
+<v><i>déculasser</i>          <t>aim:er</t></v>
+<v><i>déculotter</i>          <t>aim:er</t></v>
+<v><i>déculpabiliser</i>      <t>aim:er</t></v>
+<v><i>décupler</i>            <t>aim:er</t></v>
+<v><i>décuver</i>             <t>aim:er</t></v>
+<v><i>dédaigner</i>           <t>aim:er</t></v>
+<v><i>dédicacer</i>           <t>pla:cer</t></v>
+<v><i>dédier</i>              <t>aim:er</t></v>
+<v><i>dédifférencier</i>     <t>aim:er</t></v>
+<v><i>dédire</i>              <t>d:ire</t></v>
+<v><i>dédommager</i>          <t>man:ger</t></v>
+<v><i>dédorer</i>             <t>aim:er</t></v>
+<v><i>dédouaner</i>           <t>aim:er</t></v>
+<v><i>dédoubler</i>           <t>aim:er</t></v>
+<v><i>dédramatiser</i>                <t>aim:er</t></v>
+<v><i>déduire</i>             <t>condui:re</t></v>
+<v><i>défaillir</i>           <t>assaill:ir</t></v>
+<v><i>défaire</i>             <t>f:aire</t></v>
+<v><i>défalquer</i>           <t>aim:er</t></v>
+<v><i>défarder</i>            <t>aim:er</t></v>
+<v><i>défatiguer</i>          <t>aim:er</t></v>
+<v><i>défaufiler</i>          <t>aim:er</t></v>
+<v><i>défausser</i>           <t>aim:er</t></v>
+<v><i>défavoriser</i>         <t>aim:er</t></v>
+<v><i>défendre</i>            <t>ten:dre</t></v>
+<v><i>déféquer</i>           <t>diss:équer</t></v>
+<v><i>déférer</i>            <t>réf:érer</t></v>
+<v><i>déferler</i>            <t>aim:er</t></v>
+<v><i>déferrer</i>            <t>aim:er</t></v>
+<v><i>déferriser</i>          <t>aim:er</t></v>
+<v><i>défeuiller</i>          <t>aim:er</t></v>
+<v><i>défeutrer</i>           <t>aim:er</t></v>
+<v><i>défibrer</i>            <t>aim:er</t></v>
+<v><i>déficeler</i>           <t>app:eler</t></v>
+<v><i>défier</i>              <t>aim:er</t></v>
+<v><i>défiger</i>             <t>man:ger</t></v>
+<v><i>défigurer</i>           <t>aim:er</t></v>
+<v><i>défiler</i>             <t>aim:er</t></v>
+<v><i>définir</i>             <t>fin:ir</t></v>
+<v><i>déflagrer</i>           <t>aim:er</t></v>
+<v><i>déflaquer</i>           <t>aim:er</t></v>
+<v><i>défléchir</i>          <t>fin:ir</t></v>
+<v><i>défleurir</i>           <t>fin:ir</t></v>
+<v><i>déflorer</i>            <t>aim:er</t></v>
+<v><i>défolier</i>            <t>aim:er</t></v>
+<v><i>défoncer</i>            <t>pla:cer</t></v>
+<v><i>déforcer</i>            <t>pla:cer</t></v>
+<v><i>déformer</i>            <t>aim:er</t></v>
+<v><i>défouler</i>            <t>aim:er</t></v>
+<v><i>défourailler</i>                <t>aim:er</t></v>
+<v><i>défourner</i>           <t>aim:er</t></v>
+<v><i>défourrer</i>           <t>aim:er</t></v>
+<v><i>défraîchir</i>         <t>fin:ir</t></v>
+<v><i>défranciser</i>         <t>aim:er</t></v>
+<v><i>défrayer</i>            <t>pa:yer</t></v>
+<v><i>défretter</i>           <t>aim:er</t></v>
+<v><i>défricher</i>           <t>aim:er</t></v>
+<v><i>défringuer</i>          <t>aim:er</t></v>
+<v><i>défriper</i>            <t>aim:er</t></v>
+<v><i>défriser</i>            <t>aim:er</t></v>
+<v><i>défroisser</i>          <t>aim:er</t></v>
+<v><i>défroncer</i>           <t>pla:cer</t></v>
+<v><i>défroquer</i>           <t>aim:er</t></v>
+<v><i>défruiter</i>           <t>aim:er</t></v>
+<v><i>dégager</i>             <t>man:ger</t></v>
+<v><i>dégainer</i>            <t>aim:er</t></v>
+<v><i>dégalonner</i>          <t>aim:er</t></v>
+<v><i>déganter</i>            <t>aim:er</t></v>
+<v><i>dégarnir</i>            <t>fin:ir</t></v>
+<v><i>dégasoliner</i>         <t>aim:er</t></v>
+<v><i>dégauchir</i>           <t>fin:ir</t></v>
+<v><i>dégazer</i>             <t>aim:er</t></v>
+<v><i>dégazoliner</i>         <t>aim:er</t></v>
+<v><i>dégazonner</i>          <t>aim:er</t></v>
+<v><i>dégeler</i>             <t>p:eler</t></v>
+<v><i>dégénérer</i>         <t>réf:érer</t></v>
+<v><i>dégermer</i>            <t>aim:er</t></v>
+<v><i>dégingander</i>         <t>aim:er</t></v>
+<v><i>dégîter</i>            <t>aim:er</t></v>
+<v><i>dégivrer</i>            <t>aim:er</t></v>
+<v><i>déglacer</i>            <t>pla:cer</t></v>
+<v><i>déglinguer</i>          <t>aim:er</t></v>
+<v><i>dégluer</i>             <t>aim:er</t></v>
+<v><i>déglutir</i>            <t>fin:ir</t></v>
+<v><i>dégobiller</i>          <t>aim:er</t></v>
+<v><i>dégoiser</i>            <t>aim:er</t></v>
+<v><i>dégommer</i>            <t>aim:er</t></v>
+<v><i>dégonder</i>            <t>aim:er</t></v>
+<v><i>dégonfler</i>           <t>aim:er</t></v>
+<v><i>dégorger</i>            <t>man:ger</t></v>
+<v><i>dégoter</i>             <t>aim:er</t></v>
+<v><i>dégotter</i>            <t>aim:er</t></v>
+<v><i>dégoudronner</i>                <t>aim:er</t></v>
+<v><i>dégouliner</i>          <t>aim:er</t></v>
+<v><i>dégoupiller</i>         <t>aim:er</t></v>
+<v><i>dégourdir</i>           <t>fin:ir</t></v>
+<v><i>dégoûter</i>           <t>aim:er</t></v>
+<v><i>dégoutter</i>           <t>aim:er</t></v>
+<v><i>dégrader</i>            <t>aim:er</t></v>
+<v><i>dégrafer</i>            <t>aim:er</t></v>
+<v><i>dégraisser</i>          <t>aim:er</t></v>
+<v><i>dégravoyer</i>          <t>netto:yer</t></v>
+<v><i>dégréer</i>            <t>aim:er</t></v>
+<v><i>dégrever</i>            <t>l:ever</t></v>
+<v><i>dégringoler</i>         <t>aim:er</t></v>
+<v><i>dégripper</i>           <t>aim:er</t></v>
+<v><i>dégriser</i>            <t>aim:er</t></v>
+<v><i>dégrosser</i>           <t>aim:er</t></v>
+<v><i>dégrossir</i>           <t>fin:ir</t></v>
+<v><i>dégrouiller</i>         <t>aim:er</t></v>
+<v><i>dégrouper</i>           <t>aim:er</t></v>
+<v><i>déguerpir</i>           <t>fin:ir</t></v>
+<v><i>dégueuler</i>           <t>aim:er</t></v>
+<v><i>déguiser</i>            <t>aim:er</t></v>
+<v><i>dégurgiter</i>          <t>aim:er</t></v>
+<v><i>déguster</i>            <t>aim:er</t></v>
+<v><i>déhaler</i>             <t>aim:er</t></v>
+<v><i>déhancher</i>           <t>aim:er</t></v>
+<v><i>déharder</i>            <t>aim:er</t></v>
+<v><i>déharnacher</i>         <t>aim:er</t></v>
+<v><i>déhotter</i>            <t>aim:er</t></v>
+<v><i>déhouiller</i>          <t>aim:er</t></v>
+<v><i>déifier</i>             <t>aim:er</t></v>
+<v><i>déjanter</i>            <t>aim:er</t></v>
+<v><i>déjauger</i>            <t>man:ger</t></v>
+<v><i>déjaunir</i>            <t>fin:ir</t></v>
+<v><i>déjeter</i>             <t>j:eter</t></v>
+<v><i>déjeuner</i>            <t>aim:er</t></v>
+<v><i>déjouer</i>             <t>aim:er</t></v>
+<v><i>déjucher</i>            <t>aim:er</t></v>
+<v><i>déjuger</i>             <t>man:ger</t></v>
+<v><i>délabialiser</i>                <t>aim:er</t></v>
+<v><i>délabrer</i>            <t>aim:er</t></v>
+<v><i>délacer</i>             <t>pla:cer</t></v>
+<v><i>délainer</i>            <t>aim:er</t></v>
+<v><i>délaisser</i>           <t>aim:er</t></v>
+<v><i>délaiter</i>            <t>aim:er</t></v>
+<v><i>délarder</i>            <t>aim:er</t></v>
+<v><i>délasser</i>            <t>aim:er</t></v>
+<v><i>délatter</i>            <t>aim:er</t></v>
+<v><i>délaver</i>             <t>aim:er</t></v>
+<v><i>délayer</i>             <t>pa:yer</t></v>
+<v><i>délecter</i>            <t>aim:er</t></v>
+<v><i>déléguer</i>           <t>l:éguer</t></v>
+<v><i>délester</i>            <t>aim:er</t></v>
+<v><i>délibérer</i>          <t>réf:érer</t></v>
+<v><i>délier</i>              <t>aim:er</t></v>
+<v><i>délignifier</i>         <t>aim:er</t></v>
+<v><i>délimiter</i>           <t>aim:er</t></v>
+<v><i>délinéamenter</i>              <t>aim:er</t></v>
+<v><i>délinéer</i>           <t>aim:er</t></v>
+<v><i>délirer</i>             <t>aim:er</t></v>
+<v><i>délisser</i>            <t>aim:er</t></v>
+<v><i>déliter</i>             <t>aim:er</t></v>
+<v><i>délivrer</i>            <t>aim:er</t></v>
+<v><i>déloger</i>             <t>man:ger</t></v>
+<v><i>déloquer</i>            <t>aim:er</t></v>
+<v><i>délover</i>             <t>aim:er</t></v>
+<v><i>délurer</i>             <t>aim:er</t></v>
+<v><i>délustrer</i>           <t>aim:er</t></v>
+<v><i>déluter</i>             <t>aim:er</t></v>
+<v><i>démaçonner</i>         <t>aim:er</t></v>
+<v><i>démagnétiser</i>               <t>aim:er</t></v>
+<v><i>démaigrir</i>           <t>fin:ir</t></v>
+<v><i>démailler</i>           <t>aim:er</t></v>
+<v><i>démailloter</i>         <t>aim:er</t></v>
+<v><i>démancher</i>           <t>aim:er</t></v>
+<v><i>demander</i>             <t>aim:er</t></v>
+<v><i>démanger</i>            <t>man:ger</t></v>
+<v><i>démanteler</i>          <t>p:eler</t></v>
+<v><i>démantibuler</i>                <t>aim:er</t></v>
+<v><i>démaquiller</i>         <t>aim:er</t></v>
+<v><i>démarcher</i>           <t>aim:er</t></v>
+<v><i>démarier</i>            <t>aim:er</t></v>
+<v><i>démarquer</i>           <t>aim:er</t></v>
+<v><i>démarrer</i>            <t>aim:er</t></v>
+<v><i>démascler</i>           <t>aim:er</t></v>
+<v><i>démasquer</i>           <t>aim:er</t></v>
+<v><i>démastiquer</i>         <t>aim:er</t></v>
+<v><i>dématérialiser</i>     <t>aim:er</t></v>
+<v><i>démâter</i>            <t>aim:er</t></v>
+<v><i>démazouter</i>          <t>aim:er</t></v>
+<v><i>démêler</i>            <t>aim:er</t></v>
+<v><i>démembrer</i>           <t>aim:er</t></v>
+<v><i>déménager</i>          <t>man:ger</t></v>
+<v><i>démener</i>             <t>m:ener</t></v>
+<v><i>démentir</i>            <t>men:tir</t></v>
+<v><i>démerder</i>            <t>aim:er</t></v>
+<v><i>démériter</i>          <t>aim:er</t></v>
+<v><i>déméthaniser</i>               <t>aim:er</t></v>
+<v><i>démettre</i>            <t>m:ettre</t></v>
+<v><i>démeubler</i>           <t>aim:er</t></v>
+<v><i>demeurer</i>             <t>aim:er</t></v>
+<v><i>démieller</i>           <t>aim:er</t></v>
+<v><i>démilitariser</i>               <t>aim:er</t></v>
+<v><i>déminéraliser</i>              <t>aim:er</t></v>
+<v><i>déminer</i>             <t>aim:er</t></v>
+<v><i>démissionner</i>                <t>aim:er</t></v>
+<v><i>démobiliser</i>         <t>aim:er</t></v>
+<v><i>démocratiser</i>                <t>aim:er</t></v>
+<v><i>démoder</i>             <t>aim:er</t></v>
+<v><i>démoduler</i>           <t>aim:er</t></v>
+<v><i>démolir</i>             <t>fin:ir</t></v>
+<v><i>démonétiser</i>                <t>aim:er</t></v>
+<v><i>démonter</i>            <t>aim:er</t></v>
+<v><i>démontrer</i>           <t>aim:er</t></v>
+<v><i>démoraliser</i>         <t>aim:er</t></v>
+<v><i>démordre</i>            <t>ten:dre</t></v>
+<v><i>démotiver</i>           <t>aim:er</t></v>
+<v><i>démoucheter</i>         <t>j:eter</t></v>
+<v><i>démouler</i>            <t>aim:er</t></v>
+<v><i>démouscailler</i>               <t>aim:er</t></v>
+<v><i>démoustiquer</i>                <t>aim:er</t></v>
+<v><i>démultiplier</i>                <t>aim:er</t></v>
+<v><i>démunir</i>             <t>fin:ir</t></v>
+<v><i>démurer</i>             <t>aim:er</t></v>
+<v><i>démurger</i>            <t>man:ger</t></v>
+<v><i>démuseler</i>           <t>app:eler</t></v>
+<v><i>démystifier</i>         <t>aim:er</t></v>
+<v><i>démythifier</i>         <t>aim:er</t></v>
+<v><i>dénantir</i>            <t>fin:ir</t></v>
+<v><i>dénasaliser</i>         <t>aim:er</t></v>
+<v><i>dénationaliser</i>      <t>aim:er</t></v>
+<v><i>dénatter</i>            <t>aim:er</t></v>
+<v><i>dénaturaliser</i>               <t>aim:er</t></v>
+<v><i>dénaturer</i>           <t>aim:er</t></v>
+<v><i>dénazifier</i>          <t>aim:er</t></v>
+<v><i>dénébuler</i>          <t>aim:er</t></v>
+<v><i>déneiger</i>            <t>man:ger</t></v>
+<v><i>dénerver</i>            <t>aim:er</t></v>
+<v><i>déniaiser</i>           <t>aim:er</t></v>
+<v><i>dénicher</i>            <t>aim:er</t></v>
+<v><i>dénickeler</i>          <t>aim:er</t></v>
+<v><i>dénicotiniser</i>               <t>aim:er</t></v>
+<v><i>dénier</i>              <t>aim:er</t></v>
+<v><i>dénigrer</i>            <t>aim:er</t></v>
+<v><i>dénitrer</i>            <t>aim:er</t></v>
+<v><i>dénitrifier</i>         <t>aim:er</t></v>
+<v><i>déniveler</i>           <t>app:eler</t></v>
+<v><i>dénombrer</i>           <t>aim:er</t></v>
+<v><i>dénommer</i>            <t>aim:er</t></v>
+<v><i>dénoncer</i>            <t>pla:cer</t></v>
+<v><i>dénoter</i>             <t>aim:er</t></v>
+<v><i>dénouer</i>             <t>aim:er</t></v>
+<v><i>dénoyauter</i>          <t>aim:er</t></v>
+<v><i>dénoyer</i>             <t>netto:yer</t></v>
+<v><i>denteler</i>             <t>app:eler</t></v>
+<v><i>dénucléariser</i>              <t>aim:er</t></v>
+<v><i>dénuder</i>             <t>aim:er</t></v>
+<v><i>dénuer</i>              <t>aim:er</t></v>
+<v><i>dépailler</i>           <t>aim:er</t></v>
+<v><i>dépaisseler</i>         <t>app:eler</t></v>
+<v><i>dépalisser</i>          <t>aim:er</t></v>
+<v><i>dépanner</i>            <t>aim:er</t></v>
+<v><i>dépaqueter</i>          <t>j:eter</t></v>
+<v><i>déparaffiner</i>                <t>aim:er</t></v>
+<v><i>dépareiller</i>         <t>aim:er</t></v>
+<v><i>déparer</i>             <t>aim:er</t></v>
+<v><i>déparier</i>            <t>aim:er</t></v>
+<v><i>déparler</i>            <t>aim:er</t></v>
+<v><i>départager</i>          <t>man:ger</t></v>
+<v><i>départir</i>            <t>men:tir</t></v>
+<v><i>dépasser</i>            <t>aim:er</t></v>
+<v><i>dépassionner</i>                <t>aim:er</t></v>
+<v><i>dépatouiller</i>                <t>aim:er</t></v>
+<v><i>dépaver</i>             <t>aim:er</t></v>
+<v><i>dépayser</i>            <t>aim:er</t></v>
+<v><i>dépecer</i>             <t>dép:ecer</t></v>
+<v><i>dépêcher</i>           <t>aim:er</t></v>
+<v><i>dépeigner</i>           <t>aim:er</t></v>
+<v><i>dépeindre</i>           <t>crai:ndre</t></v>
+<v><i>dépelotonner</i>                <t>aim:er</t></v>
+<v><i>dépendre</i>            <t>ten:dre</t></v>
+<v><i>dépenser</i>            <t>aim:er</t></v>
+<v><i>dépérir</i>            <t>fin:ir</t></v>
+<v><i>dépersonnaliser</i>     <t>aim:er</t></v>
+<v><i>dépêtrer</i>           <t>aim:er</t></v>
+<v><i>dépeupler</i>           <t>aim:er</t></v>
+<v><i>déphaser</i>            <t>aim:er</t></v>
+<v><i>déphosphorer</i>                <t>aim:er</t></v>
+<v><i>dépiauter</i>           <t>aim:er</t></v>
+<v><i>dépiler</i>             <t>aim:er</t></v>
+<v><i>dépingler</i>           <t>aim:er</t></v>
+<v><i>dépiquer</i>            <t>aim:er</t></v>
+<v><i>dépister</i>            <t>aim:er</t></v>
+<v><i>dépiter</i>             <t>aim:er</t></v>
+<v><i>déplacer</i>            <t>pla:cer</t></v>
+<v><i>déplafonner</i>         <t>aim:er</t></v>
+<v><i>déplaire</i>            <t>pl:aire</t></v>
+<v><i>déplanquer</i>          <t>aim:er</t></v>
+<v><i>déplanter</i>           <t>aim:er</t></v>
+<v><i>déplâtrer</i>          <t>aim:er</t></v>
+<v><i>déplier</i>             <t>aim:er</t></v>
+<v><i>déplisser</i>           <t>aim:er</t></v>
+<v><i>déplomber</i>           <t>aim:er</t></v>
+<v><i>déplorer</i>            <t>aim:er</t></v>
+<v><i>déployer</i>            <t>netto:yer</t></v>
+<v><i>déplumer</i>            <t>aim:er</t></v>
+<v><i>dépoétiser</i>         <t>aim:er</t></v>
+<v><i>dépointer</i>           <t>aim:er</t></v>
+<v><i>dépolariser</i>         <t>aim:er</t></v>
+<v><i>dépolir</i>             <t>fin:ir</t></v>
+<v><i>dépolitiser</i>         <t>aim:er</t></v>
+<v><i>dépolluer</i>           <t>aim:er</t></v>
+<v><i>dépolymériser</i>              <t>aim:er</t></v>
+<v><i>dépontiller</i>         <t>aim:er</t></v>
+<v><i>déporter</i>            <t>aim:er</t></v>
+<v><i>déposer</i>             <t>aim:er</t></v>
+<v><i>déposséder</i>         <t>c:éder</t></v>
+<v><i>dépoter</i>             <t>aim:er</t></v>
+<v><i>dépoudrer</i>           <t>aim:er</t></v>
+<v><i>dépouiller</i>          <t>aim:er</t></v>
+<v><i>dépoussiérer</i>               <t>réf:érer</t></v>
+<v><i>dépraver</i>            <t>aim:er</t></v>
+<v><i>déprécier</i>          <t>aim:er</t></v>
+<v><i>déprendre</i>           <t>pr:endre</t></v>
+<v><i>dépressuriser</i>               <t>aim:er</t></v>
+<v><i>déprimer</i>            <t>aim:er</t></v>
+<v><i>dépriser</i>            <t>aim:er</t></v>
+<v><i>déprogrammer</i>                <t>aim:er</t></v>
+<v><i>déprolétariser</i>     <t>aim:er</t></v>
+<v><i>dépropaniser</i>                <t>aim:er</t></v>
+<v><i>dépuceler</i>           <t>app:eler</t></v>
+<v><i>dépulper</i>            <t>aim:er</t></v>
+<v><i>dépurer</i>             <t>aim:er</t></v>
+<v><i>députer</i>             <t>aim:er</t></v>
+<v><i>déquiller</i>           <t>aim:er</t></v>
+<v><i>déraciner</i>           <t>aim:er</t></v>
+<v><i>dérader</i>             <t>aim:er</t></v>
+<v><i>dérager</i>             <t>man:ger</t></v>
+<v><i>déraidir</i>            <t>fin:ir</t></v>
+<v><i>dérailler</i>           <t>aim:er</t></v>
+<v><i>déraisonner</i>         <t>aim:er</t></v>
+<v><i>déranger</i>            <t>man:ger</t></v>
+<v><i>déraper</i>             <t>aim:er</t></v>
+<v><i>déraser</i>             <t>aim:er</t></v>
+<v><i>dérater</i>             <t>aim:er</t></v>
+<v><i>dératiser</i>           <t>aim:er</t></v>
+<v><i>dérayer</i>             <t>pa:yer</t></v>
+<v><i>déréaliser</i>         <t>aim:er</t></v>
+<v><i>dérégler</i>           <t>r:égler</t></v>
+<v><i>déréguler</i>          <t>aim:er</t></v>
+<v><i>dérider</i>             <t>aim:er</t></v>
+<v><i>dériver</i>             <t>aim:er</t></v>
+<v><i>dérober</i>             <t>aim:er</t></v>
+<v><i>dérocher</i>            <t>aim:er</t></v>
+<v><i>déroder</i>             <t>aim:er</t></v>
+<v><i>déroger</i>             <t>man:ger</t></v>
+<v><i>dérougir</i>            <t>fin:ir</t></v>
+<v><i>dérouiller</i>          <t>aim:er</t></v>
+<v><i>dérouler</i>            <t>aim:er</t></v>
+<v><i>dérouter</i>            <t>aim:er</t></v>
+<v><i>désabonner</i>          <t>aim:er</t></v>
+<v><i>désabuser</i>           <t>aim:er</t></v>
+<v><i>désacclimater</i>               <t>aim:er</t></v>
+<v><i>désaccorder</i>         <t>aim:er</t></v>
+<v><i>désaccoupler</i>                <t>aim:er</t></v>
+<v><i>désaccoutumer</i>               <t>aim:er</t></v>
+<v><i>désacraliser</i>                <t>aim:er</t></v>
+<v><i>désactiver</i>          <t>aim:er</t></v>
+<v><i>désadapter</i>          <t>aim:er</t></v>
+<v><i>désaérer</i>           <t>réf:érer</t></v>
+<v><i>désaffecter</i>         <t>aim:er</t></v>
+<v><i>désaffectionner</i>     <t>aim:er</t></v>
+<v><i>désaffilier</i>         <t>aim:er</t></v>
+<v><i>désagencer</i>          <t>pla:cer</t></v>
+<v><i>désagrafer</i>          <t>aim:er</t></v>
+<v><i>désagréger</i>         <t>abr:éger</t></v>
+<v><i>désaimanter</i>         <t>aim:er</t></v>
+<v><i>désajuster</i>          <t>aim:er</t></v>
+<v><i>désaligner</i>          <t>aim:er</t></v>
+<v><i>désalper</i>            <t>aim:er</t></v>
+<v><i>désaltérer</i>         <t>réf:érer</t></v>
+<v><i>désamarrer</i>          <t>aim:er</t></v>
+<v><i>désambiguïser</i>              <t>aim:er</t></v>
+<v><i>désamidonner</i>                <t>aim:er</t></v>
+<v><i>désamorcer</i>          <t>pla:cer</t></v>
+<v><i>désannexer</i>          <t>aim:er</t></v>
+<v><i>désapparier</i>         <t>aim:er</t></v>
+<v><i>désappointer</i>                <t>aim:er</t></v>
+<v><i>désapprendre</i>                <t>pr:endre</t></v>
+<v><i>désapprouver</i>                <t>aim:er</t></v>
+<v><i>désapprovisionner</i>   <t>aim:er</t></v>
+<v><i>désarçonner</i>                <t>aim:er</t></v>
+<v><i>désargenter</i>         <t>aim:er</t></v>
+<v><i>désarmer</i>            <t>aim:er</t></v>
+<v><i>désarrimer</i>          <t>aim:er</t></v>
+<v><i>désarticuler</i>                <t>aim:er</t></v>
+<v><i>désassembler</i>                <t>aim:er</t></v>
+<v><i>désassimiler</i>                <t>aim:er</t></v>
+<v><i>désassortir</i>         <t>fin:ir</t></v>
+<v><i>désatomiser</i>         <t>aim:er</t></v>
+<v><i>désavantager</i>                <t>man:ger</t></v>
+<v><i>désaveugler</i>         <t>aim:er</t></v>
+<v><i>désavouer</i>           <t>aim:er</t></v>
+<v><i>désaxer</i>             <t>aim:er</t></v>
+<v><i>desceller</i>            <t>aim:er</t></v>
+<v><i>désceller</i>           <t>aim:er</t></v>
+<v><i>descendre</i>            <t>ten:dre</t></v>
+<v><i>déséchouer</i>         <t>aim:er</t></v>
+<v><i>désembourber</i>                <t>aim:er</t></v>
+<v><i>désembourgeoiser</i>    <t>aim:er</t></v>
+<v><i>désembouteiller</i>     <t>aim:er</t></v>
+<v><i>désembrayer</i>         <t>pa:yer</t></v>
+<v><i>désembuer</i>           <t>aim:er</t></v>
+<v><i>désemmancher</i>                <t>aim:er</t></v>
+<v><i>désemparer</i>          <t>aim:er</t></v>
+<v><i>désemplir</i>           <t>fin:ir</t></v>
+<v><i>désemprisonner</i>      <t>aim:er</t></v>
+<v><i>désencadrer</i>         <t>aim:er</t></v>
+<v><i>désencarter</i>         <t>aim:er</t></v>
+<v><i>désenchaîner</i>               <t>aim:er</t></v>
+<v><i>désenchanter</i>                <t>aim:er</t></v>
+<v><i>désenclaver</i>         <t>aim:er</t></v>
+<v><i>désencoller</i>         <t>aim:er</t></v>
+<v><i>désencombrer</i>                <t>aim:er</t></v>
+<v><i>désencrasser</i>                <t>aim:er</t></v>
+<v><i>désendetter</i>         <t>aim:er</t></v>
+<v><i>désénerver</i>         <t>aim:er</t></v>
+<v><i>désenfiler</i>          <t>aim:er</t></v>
+<v><i>désenflammer</i>                <t>aim:er</t></v>
+<v><i>désenfler</i>           <t>aim:er</t></v>
+<v><i>désenfumer</i>          <t>aim:er</t></v>
+<v><i>désengager</i>          <t>man:ger</t></v>
+<v><i>désengorger</i>         <t>man:ger</t></v>
+<v><i>désengrener</i>         <t>m:ener</t></v>
+<v><i>désenivrer</i>          <t>aim:er</t></v>
+<v><i>désenlacer</i>          <t>pla:cer</t></v>
+<v><i>désenlaider</i>         <t>aim:er</t></v>
+<v><i>désenlaidir</i>         <t>fin:ir</t></v>
+<v><i>désennuyer</i>          <t>netto:yer</t></v>
+<v><i>désenrayer</i>          <t>pa:yer</t></v>
+<v><i>désenrhumer</i>         <t>aim:er</t></v>
+<v><i>désenrouer</i>          <t>aim:er</t></v>
+<v><i>désensabler</i>         <t>aim:er</t></v>
+<v><i>désensibiliser</i>      <t>aim:er</t></v>
+<v><i>désensorceler</i>               <t>app:eler</t></v>
+<v><i>désentoiler</i>         <t>aim:er</t></v>
+<v><i>désentortiller</i>      <t>aim:er</t></v>
+<v><i>désentraver</i>         <t>aim:er</t></v>
+<v><i>désenvaser</i>          <t>aim:er</t></v>
+<v><i>désenvelopper</i>               <t>aim:er</t></v>
+<v><i>désenvenimer</i>                <t>aim:er</t></v>
+<v><i>désenverguer</i>                <t>aim:er</t></v>
+<v><i>désépaissir</i>                <t>fin:ir</t></v>
+<v><i>déséquilibrer</i>              <t>aim:er</t></v>
+<v><i>déséquiper</i>         <t>aim:er</t></v>
+<v><i>déserter</i>            <t>aim:er</t></v>
+<v><i>désespérer</i>         <t>réf:érer</t></v>
+<v><i>désétablir</i>         <t>fin:ir</t></v>
+<v><i>désétamer</i>          <t>aim:er</t></v>
+<v><i>désétatiser</i>                <t>aim:er</t></v>
+<v><i>désexualiser</i>                <t>aim:er</t></v>
+<v><i>déshabiller</i>         <t>aim:er</t></v>
+<v><i>déshabituer</i>         <t>aim:er</t></v>
+<v><i>désherber</i>           <t>aim:er</t></v>
+<v><i>déshériter</i>         <t>aim:er</t></v>
+<v><i>déshonorer</i>          <t>aim:er</t></v>
+<v><i>déshuiler</i>           <t>aim:er</t></v>
+<v><i>déshumaniser</i>                <t>aim:er</t></v>
+<v><i>déshumidifier</i>               <t>aim:er</t></v>
+<v><i>déshydrater</i>         <t>aim:er</t></v>
+<v><i>désigner</i>            <t>aim:er</t></v>
+<v><i>désillusionner</i>      <t>aim:er</t></v>
+<v><i>désincarner</i>         <t>aim:er</t></v>
+<v><i>désincorporer</i>               <t>aim:er</t></v>
+<v><i>désincruster</i>                <t>aim:er</t></v>
+<v><i>désinculper</i>         <t>aim:er</t></v>
+<v><i>désindexer</i>          <t>aim:er</t></v>
+<v><i>désinfecter</i>         <t>aim:er</t></v>
+<v><i>désinsectiser</i>               <t>aim:er</t></v>
+<v><i>désinstitutionnaliser</i>       <t>aim:er</t></v>
+<v><i>désintégrer</i>                <t>int:égrer</t></v>
+<v><i>désintéresser</i>              <t>aim:er</t></v>
+<v><i>désintoxiquer</i>               <t>aim:er</t></v>
+<v><i>désinvestir</i>         <t>fin:ir</t></v>
+<v><i>désinviter</i>          <t>aim:er</t></v>
+<v><i>désirer</i>             <t>aim:er</t></v>
+<v><i>désister</i>            <t>aim:er</t></v>
+<v><i>désobéir</i>           <t>fin:ir</t></v>
+<v><i>désobliger</i>          <t>man:ger</t></v>
+<v><i>désoccuper</i>          <t>aim:er</t></v>
+<v><i>désodoriser</i>         <t>aim:er</t></v>
+<v><i>désoler</i>             <t>aim:er</t></v>
+<v><i>désolidariser</i>               <t>aim:er</t></v>
+<v><i>désoperculer</i>                <t>aim:er</t></v>
+<v><i>désopiler</i>           <t>aim:er</t></v>
+<v><i>désorber</i>            <t>aim:er</t></v>
+<v><i>désorbiter</i>          <t>aim:er</t></v>
+<v><i>désordonner</i>         <t>aim:er</t></v>
+<v><i>désorganiser</i>                <t>aim:er</t></v>
+<v><i>désorienter</i>         <t>aim:er</t></v>
+<v><i>désosser</i>            <t>aim:er</t></v>
+<v><i>désoxyder</i>           <t>aim:er</t></v>
+<v><i>desquamer</i>            <t>aim:er</t></v>
+<v><i>dessabler</i>            <t>aim:er</t></v>
+<v><i>dessaisir</i>            <t>fin:ir</t></v>
+<v><i>dessaler</i>             <t>aim:er</t></v>
+<v><i>dessangler</i>           <t>aim:er</t></v>
+<v><i>dessaouler</i>           <t>aim:er</t></v>
+<v><i>dessécher</i>           <t>s:écher</t></v>
+<v><i>desseller</i>            <t>aim:er</t></v>
+<v><i>desserrer</i>            <t>aim:er</t></v>
+<v><i>dessertir</i>            <t>fin:ir</t></v>
+<v><i>desservir</i>            <t>ser:vir</t></v>
+<v><i>dessiller</i>            <t>aim:er</t></v>
+<v><i>dessiner</i>             <t>aim:er</t></v>
+<v><i>dessoler</i>             <t>aim:er</t></v>
+<v><i>dessouder</i>            <t>aim:er</t></v>
+<v><i>dessouler</i>            <t>aim:er</t></v>
+<v><i>dessoûler</i>           <t>aim:er</t></v>
+<v><i>dessuinter</i>           <t>aim:er</t></v>
+<v><i>dessuiter</i>            <t>aim:er</t></v>
+<v><i>déstabiliser</i>                <t>aim:er</t></v>
+<v><i>destiner</i>             <t>aim:er</t></v>
+<v><i>destituer</i>            <t>aim:er</t></v>
+<v><i>déstocker</i>           <t>aim:er</t></v>
+<v><i>destructurer</i>         <t>aim:er</t></v>
+<v><i>désubjectiviser</i>     <t>aim:er</t></v>
+<v><i>désulfiter</i>          <t>aim:er</t></v>
+<v><i>désulfurer</i>          <t>aim:er</t></v>
+<v><i>désunir</i>             <t>fin:ir</t></v>
+<v><i>désynchroniser</i>      <t>aim:er</t></v>
+<v><i>détacher</i>            <t>aim:er</t></v>
+<v><i>détailler</i>           <t>aim:er</t></v>
+<v><i>détaler</i>             <t>aim:er</t></v>
+<v><i>détaller</i>            <t>aim:er</t></v>
+<v><i>détapisser</i>          <t>aim:er</t></v>
+<v><i>détartrer</i>           <t>aim:er</t></v>
+<v><i>détaxer</i>             <t>aim:er</t></v>
+<v><i>détecter</i>            <t>aim:er</t></v>
+<v><i>déteindre</i>           <t>crai:ndre</t></v>
+<v><i>dételer</i>             <t>app:eler</t></v>
+<v><i>détendre</i>            <t>ten:dre</t></v>
+<v><i>détenir</i>             <t>t:enir</t></v>
+<v><i>déterger</i>            <t>man:ger</t></v>
+<v><i>détériorer</i>         <t>aim:er</t></v>
+<v><i>déterminer</i>          <t>aim:er</t></v>
+<v><i>déterrer</i>            <t>aim:er</t></v>
+<v><i>détester</i>            <t>aim:er</t></v>
+<v><i>détirer</i>             <t>aim:er</t></v>
+<v><i>détisser</i>            <t>aim:er</t></v>
+<v><i>détoner</i>             <t>aim:er</t></v>
+<v><i>détonneler</i>          <t>app:eler</t></v>
+<v><i>détonner</i>            <t>aim:er</t></v>
+<v><i>détordre</i>            <t>ten:dre</t></v>
+<v><i>détortiller</i>         <t>aim:er</t></v>
+<v><i>détourer</i>            <t>aim:er</t></v>
+<v><i>détourner</i>           <t>aim:er</t></v>
+<v><i>détracter</i>           <t>aim:er</t></v>
+<v><i>détrancher</i>          <t>aim:er</t></v>
+<v><i>détransposer</i>                <t>aim:er</t></v>
+<v><i>détraquer</i>           <t>aim:er</t></v>
+<v><i>détremper</i>           <t>aim:er</t></v>
+<v><i>détresser</i>           <t>aim:er</t></v>
+<v><i>détricoter</i>          <t>aim:er</t></v>
+<v><i>détromper</i>           <t>aim:er</t></v>
+<v><i>détroncher</i>          <t>aim:er</t></v>
+<v><i>détrôner</i>           <t>aim:er</t></v>
+<v><i>détroquer</i>           <t>aim:er</t></v>
+<v><i>détrousser</i>          <t>aim:er</t></v>
+<v><i>détruire</i>            <t>condui:re</t></v>
+<v><i>dévaler</i>             <t>aim:er</t></v>
+<v><i>dévalider</i>           <t>aim:er</t></v>
+<v><i>dévaliser</i>           <t>aim:er</t></v>
+<v><i>dévaloriser</i>         <t>aim:er</t></v>
+<v><i>dévaluer</i>            <t>aim:er</t></v>
+<v><i>devancer</i>             <t>pla:cer</t></v>
+<v><i>dévaser</i>             <t>aim:er</t></v>
+<v><i>dévaster</i>            <t>aim:er</t></v>
+<v><i>développer</i>          <t>aim:er</t></v>
+<v><i>devenir</i>              <t>t:enir</t></v>
+<v><i>déventer</i>            <t>aim:er</t></v>
+<v><i>déverdir</i>            <t>fin:ir</t></v>
+<v><i>dévergonder</i>         <t>aim:er</t></v>
+<v><i>déverguer</i>           <t>aim:er</t></v>
+<v><i>dévernir</i>            <t>fin:ir</t></v>
+<v><i>déverrouiller</i>               <t>aim:er</t></v>
+<v><i>déverser</i>            <t>aim:er</t></v>
+<v><i>dévêtir</i>            <t>vêt:ir</t></v>
+<v><i>dévider</i>             <t>aim:er</t></v>
+<v><i>dévier</i>              <t>aim:er</t></v>
+<v><i>deviner</i>              <t>aim:er</t></v>
+<v><i>dévirer</i>             <t>aim:er</t></v>
+<v><i>dévirginiser</i>                <t>aim:er</t></v>
+<v><i>déviriliser</i>         <t>aim:er</t></v>
+<v><i>déviroler</i>           <t>aim:er</t></v>
+<v><i>dévisager</i>           <t>man:ger</t></v>
+<v><i>deviser</i>              <t>aim:er</t></v>
+<v><i>dévisser</i>            <t>aim:er</t></v>
+<v><i>dévitaliser</i>         <t>aim:er</t></v>
+<v><i>dévitrifier</i>         <t>aim:er</t></v>
+<v><i>dévoiler</i>            <t>aim:er</t></v>
+<v><i>devoir</i>               <t>d:evoir</t></v>
+<v><i>dévolter</i>            <t>aim:er</t></v>
+<v><i>dévorer</i>             <t>aim:er</t></v>
+<v><i>dévouer</i>             <t>aim:er</t></v>
+<v><i>dévoyer</i>             <t>netto:yer</t></v>
+<v><i>diagnostiquer</i>                <t>aim:er</t></v>
+<v><i>diagonaliser</i>         <t>aim:er</t></v>
+<v><i>dialectaliser</i>                <t>aim:er</t></v>
+<v><i>dialectiser</i>          <t>aim:er</t></v>
+<v><i>dialoguer</i>            <t>aim:er</t></v>
+<v><i>dialyser</i>             <t>aim:er</t></v>
+<v><i>diamanter</i>            <t>aim:er</t></v>
+<v><i>diaphragmer</i>          <t>aim:er</t></v>
+<v><i>diaprer</i>              <t>aim:er</t></v>
+<v><i>dicter</i>               <t>aim:er</t></v>
+<v><i>diéser</i>              <t>l:éser</t></v>
+<v><i>diffamer</i>             <t>aim:er</t></v>
+<v><i>différencier</i>                <t>aim:er</t></v>
+<v><i>différentier</i>                <t>aim:er</t></v>
+<v><i>différer</i>            <t>réf:érer</t></v>
+<v><i>difformer</i>            <t>aim:er</t></v>
+<v><i>diffracter</i>           <t>aim:er</t></v>
+<v><i>diffuser</i>             <t>aim:er</t></v>
+<v><i>digérer</i>             <t>réf:érer</t></v>
+<v><i>digitaliser</i>          <t>aim:er</t></v>
+<v><i>dilacérer</i>           <t>réf:érer</t></v>
+<v><i>dilapider</i>            <t>aim:er</t></v>
+<v><i>dilater</i>              <t>aim:er</t></v>
+<v><i>diligenter</i>   <t>aim:er</t></v>
+<v><i>diluer</i>               <t>aim:er</t></v>
+<v><i>dimensionner</i>         <t>aim:er</t></v>
+<v><i>diminuer</i>             <t>aim:er</t></v>
+<v><i>dindonner</i>            <t>aim:er</t></v>
+<v><i>dîner</i>                       <t>aim:er</t></v>
+<v><i>dinguer</i>              <t>aim:er</t></v>
+<v><i>diphtonguer</i>          <t>aim:er</t></v>
+<v><i>diplômer</i>            <t>aim:er</t></v>
+<v><i>dire</i>                 <t>d:ire</t></v>
+<v><i>diriger</i>              <t>man:ger</t></v>
+<v><i>discerner</i>            <t>aim:er</t></v>
+<v><i>discipliner</i>          <t>aim:er</t></v>
+<v><i>discontinuer</i>         <t>aim:er</t></v>
+<v><i>disconvenir</i>          <t>t:enir</t></v>
+<v><i>discorder</i>            <t>aim:er</t></v>
+<v><i>discourir</i>            <t>cour:ir</t></v>
+<v><i>discréditer</i>         <t>aim:er</t></v>
+<v><i>discrétiser</i>         <t>aim:er</t></v>
+<v><i>discriminer</i>          <t>aim:er</t></v>
+<v><i>disculper</i>            <t>aim:er</t></v>
+<v><i>discutailler</i>         <t>aim:er</t></v>
+<v><i>discuter</i>             <t>aim:er</t></v>
+<v><i>disgracier</i>           <t>aim:er</t></v>
+<v><i>disjoindre</i>           <t>crai:ndre</t></v>
+<v><i>disjoncter</i>           <t>aim:er</t></v>
+<v><i>disloquer</i>            <t>aim:er</t></v>
+<v><i>disparaître</i>         <t>rep:aître</t></v>
+<v><i>dispenser</i>            <t>aim:er</t></v>
+<v><i>disperser</i>            <t>aim:er</t></v>
+<v><i>disposer</i>             <t>aim:er</t></v>
+<v><i>disproportionner</i>     <t>aim:er</t></v>
+<v><i>disputailler</i>         <t>aim:er</t></v>
+<v><i>disputer</i>             <t>aim:er</t></v>
+<v><i>disqualifier</i>         <t>aim:er</t></v>
+<v><i>disséminer</i>          <t>aim:er</t></v>
+<v><i>disséquer</i>           <t>diss:équer</t></v>
+<v><i>disserter</i>            <t>aim:er</t></v>
+<v><i>dissimuler</i>           <t>aim:er</t></v>
+<v><i>dissiper</i>             <t>aim:er</t></v>
+<v><i>dissocier</i>            <t>aim:er</t></v>
+<v><i>dissoner</i>             <t>aim:er</t></v>
+<v><i>dissoudre</i>            <t>disso:udre</t></v>
+<v><i>dissuader</i>            <t>aim:er</t></v>
+<v><i>distancer</i>            <t>pla:cer</t></v>
+<v><i>distancier</i>           <t>aim:er</t></v>
+<v><i>distendre</i>            <t>ten:dre</t></v>
+<v><i>distiller</i>            <t>aim:er</t></v>
+<v><i>distinguer</i>           <t>aim:er</t></v>
+<v><i>distordre</i>            <t>ten:dre</t></v>
+<v><i>distraire</i>            <t>extra:ire</t></v>
+<v><i>distribuer</i>           <t>aim:er</t></v>
+<v><i>divaguer</i>             <t>aim:er</t></v>
+<v><i>diverger</i>             <t>man:ger</t></v>
+<v><i>diversifier</i>          <t>aim:er</t></v>
+<v><i>divertir</i>             <t>fin:ir</t></v>
+<v><i>diviniser</i>            <t>aim:er</t></v>
+<v><i>diviser</i>              <t>aim:er</t></v>
+<v><i>divorcer</i>             <t>pla:cer</t></v>
+<v><i>divulguer</i>            <t>aim:er</t></v>
+<v><i>documenter</i>           <t>aim:er</t></v>
+<v><i>dodeliner</i>            <t>aim:er</t></v>
+<v><i>dodiner</i>              <t>aim:er</t></v>
+<v><i>dogmatiser</i>           <t>aim:er</t></v>
+<v><i>doigter</i>              <t>aim:er</t></v>
+<v><i>doler</i>                        <t>aim:er</t></v>
+<v><i>domestiquer</i>          <t>aim:er</t></v>
+<v><i>domicilier</i>           <t>aim:er</t></v>
+<v><i>dominer</i>              <t>aim:er</t></v>
+<v><i>dompter</i>              <t>aim:er</t></v>
+<v><i>donjuaniser</i>          <t>aim:er</t></v>
+<v><i>donner</i>               <t>aim:er</t></v>
+<v><i>doper</i>                        <t>aim:er</t></v>
+<v><i>dorer</i>                        <t>aim:er</t></v>
+<v><i>dorloter</i>             <t>aim:er</t></v>
+<v><i>dormir</i>               <t>dor:mir</t></v>
+<v><i>doser</i>                        <t>aim:er</t></v>
+<v><i>doter</i>                        <t>aim:er</t></v>
+<v><i>double-cliquer</i>       <t>aim:er</t></v>
+<v><i>doubler</i>              <t>aim:er</t></v>
+<v><i>doucher</i>              <t>aim:er</t></v>
+<v><i>doucir</i>               <t>fin:ir</t></v>
+<v><i>douer</i>                        <t>aim:er</t></v>
+<v><i>douter</i>               <t>aim:er</t></v>
+<v><i>dragéifier</i>          <t>aim:er</t></v>
+<v><i>drageonner</i>           <t>aim:er</t></v>
+<v><i>draguer</i>              <t>aim:er</t></v>
+<v><i>drainer</i>              <t>aim:er</t></v>
+<v><i>dramatiser</i>           <t>aim:er</t></v>
+<v><i>draper</i>               <t>aim:er</t></v>
+<v><i>drayer</i>               <t>pa:yer</t></v>
+<v><i>dresser</i>              <t>aim:er</t></v>
+<v><i>dribbler</i>             <t>aim:er</t></v>
+<v><i>driller</i>              <t>aim:er</t></v>
+<v><i>driver</i>               <t>aim:er</t></v>
+<v><i>droguer</i>              <t>aim:er</t></v>
+<v><i>droper</i>               <t>aim:er</t></v>
+<v><i>dropper</i>              <t>aim:er</t></v>
+<v><i>drosser</i>              <t>aim:er</t></v>
+<v><i>dulcifier</i>            <t>aim:er</t></v>
+<v><i>duper</i>                        <t>aim:er</t></v>
+<v><i>duplexer</i>             <t>aim:er</t></v>
+<v><i>dupliquer</i>            <t>aim:er</t></v>
+<v><i>durcir</i>               <t>fin:ir</t></v>
+<v><i>durer</i>                        <t>aim:er</t></v>
+<v><i>duveter</i>              <t>j:eter</t></v>
+<v><i>dynamiser</i>            <t>aim:er</t></v>
+<v><i>dynamiter</i>            <t>aim:er</t></v>
+<v><i>ébahir</i>              <t>fin:ir</t></v>
+<v><i>ébarber</i>             <t>aim:er</t></v>
+<v><i>ébattre</i>             <t>bat:tre</t></v>
+<v><i>ébaubir</i>             <t>fin:ir</t></v>
+<v><i>ébaucher</i>            <t>aim:er</t></v>
+<v><i>ébavurer</i>            <t>aim:er</t></v>
+<v><i>éberluer</i>            <t>aim:er</t></v>
+<v><i>éblouir</i>             <t>fin:ir</t></v>
+<v><i>éborgner</i>            <t>aim:er</t></v>
+<v><i>ébosser</i>             <t>aim:er</t></v>
+<v><i>ébouer</i>              <t>aim:er</t></v>
+<v><i>ébouillanter</i>                <t>aim:er</t></v>
+<v><i>ébouler</i>             <t>aim:er</t></v>
+<v><i>ébourgeonner</i>                <t>aim:er</t></v>
+<v><i>ébouriffer</i>          <t>aim:er</t></v>
+<v><i>ébourrer</i>            <t>aim:er</t></v>
+<v><i>ébouter</i>             <t>aim:er</t></v>
+<v><i>ébraiser</i>            <t>aim:er</t></v>
+<v><i>ébrancher</i>           <t>aim:er</t></v>
+<v><i>ébranler</i>            <t>aim:er</t></v>
+<v><i>ébraser</i>             <t>aim:er</t></v>
+<v><i>ébrécher</i>           <t>s:écher</t></v>
+<v><i>ébrouer</i>             <t>aim:er</t></v>
+<v><i>ébruiter</i>            <t>aim:er</t></v>
+<v><i>écacher</i>             <t>aim:er</t></v>
+<v><i>écaffer</i>             <t>aim:er</t></v>
+<v><i>écailler</i>            <t>aim:er</t></v>
+<v><i>écaler</i>              <t>aim:er</t></v>
+<v><i>écanguer</i>            <t>aim:er</t></v>
+<v><i>écarquiller</i>         <t>aim:er</t></v>
+<v><i>écarteler</i>           <t>p:eler</t></v>
+<v><i>écarter</i>             <t>aim:er</t></v>
+<v><i>écatir</i>              <t>fin:ir</t></v>
+<v><i>échafauder</i>          <t>aim:er</t></v>
+<v><i>échalasser</i>          <t>aim:er</t></v>
+<v><i>échampir</i>            <t>fin:ir</t></v>
+<v><i>échancrer</i>           <t>aim:er</t></v>
+<v><i>échanfreiner</i>                <t>aim:er</t></v>
+<v><i>échanger</i>            <t>man:ger</t></v>
+<v><i>échantillonner</i>      <t>aim:er</t></v>
+<v><i>échapper</i>            <t>aim:er</t></v>
+<v><i>échardonner</i>         <t>aim:er</t></v>
+<v><i>écharner</i>            <t>aim:er</t></v>
+<v><i>écharper</i>            <t>aim:er</t></v>
+<v><i>échauder</i>            <t>aim:er</t></v>
+<v><i>échauffer</i>           <t>aim:er</t></v>
+<v><i>échauler</i>            <t>aim:er</t></v>
+<v><i>échaumer</i>            <t>aim:er</t></v>
+<v><i>échelonner</i>          <t>aim:er</t></v>
+<v><i>écheniller</i>          <t>aim:er</t></v>
+<v><i>écheveler</i>           <t>app:eler</t></v>
+<v><i>échiner</i>             <t>aim:er</t></v>
+<v><i>échoir</i>              <t>éch:oir</t></v>
+<v><i>échopper</i>            <t>aim:er</t></v>
+<v><i>échouer</i>             <t>aim:er</t></v>
+<v><i>écimer</i>              <t>aim:er</t></v>
+<v><i>éclabousser</i>         <t>aim:er</t></v>
+<v><i>éclaircir</i>           <t>fin:ir</t></v>
+<v><i>éclairer</i>            <t>aim:er</t></v>
+<v><i>éclater</i>             <t>aim:er</t></v>
+<v><i>éclipser</i>            <t>aim:er</t></v>
+<v><i>éclisser</i>            <t>aim:er</t></v>
+<v><i>écloper</i>             <t>aim:er</t></v>
+<v><i>éclore</i>              <t>éclo:re</t></v>
+<v><i>écluser</i>             <t>aim:er</t></v>
+<v><i>écobuer</i>             <t>aim:er</t></v>
+<v><i>écoeurer</i>            <t>aim:er</t></v>
+<v><i>éconduire</i>           <t>condui:re</t></v>
+<v><i>économiser</i>          <t>aim:er</t></v>
+<v><i>écoper</i>              <t>aim:er</t></v>
+<v><i>écorcer</i>             <t>pla:cer</t></v>
+<v><i>écorcher</i>            <t>aim:er</t></v>
+<v><i>écorer</i>              <t>aim:er</t></v>
+<v><i>écorner</i>             <t>aim:er</t></v>
+<v><i>écornifler</i>          <t>aim:er</t></v>
+<v><i>écosser</i>             <t>aim:er</t></v>
+<v><i>écouler</i>             <t>aim:er</t></v>
+<v><i>écourter</i>            <t>aim:er</t></v>
+<v><i>écouter</i>             <t>aim:er</t></v>
+<v><i>écouvillonner</i>               <t>aim:er</t></v>
+<v><i>écrabouiller</i>                <t>aim:er</t></v>
+<v><i>écrapoutir</i>          <t>fin:ir</t></v>
+<v><i>écraser</i>             <t>aim:er</t></v>
+<v><i>écrémer</i>            <t>cr:émer</t></v>
+<v><i>écrêter</i>            <t>aim:er</t></v>
+<v><i>écrier</i>              <t>aim:er</t></v>
+<v><i>écrire</i>              <t>écri:re</t></v>
+<v><i>écrivailler</i>         <t>aim:er</t></v>
+<v><i>écrivasser</i>          <t>aim:er</t></v>
+<v><i>écrouer</i>             <t>aim:er</t></v>
+<v><i>écrouir</i>             <t>fin:ir</t></v>
+<v><i>écrouler</i>            <t>aim:er</t></v>
+<v><i>écroûter</i>           <t>aim:er</t></v>
+<v><i>écuisser</i>            <t>aim:er</t></v>
+<v><i>éculer</i>              <t>aim:er</t></v>
+<v><i>écumer</i>              <t>aim:er</t></v>
+<v><i>écurer</i>              <t>aim:er</t></v>
+<v><i>écussonner</i>          <t>aim:er</t></v>
+<v><i>édenter</i>             <t>aim:er</t></v>
+<v><i>édicter</i>             <t>aim:er</t></v>
+<v><i>édifier</i>             <t>aim:er</t></v>
+<v><i>éditer</i>              <t>aim:er</t></v>
+<v><i>éditionner</i>          <t>aim:er</t></v>
+<v><i>éditorialiser</i>               <t>aim:er</t></v>
+<v><i>édulcorer</i>           <t>aim:er</t></v>
+<v><i>éduquer</i>             <t>aim:er</t></v>
+<v><i>éfaufiler</i>           <t>aim:er</t></v>
+<v><i>effacer</i>              <t>pla:cer</t></v>
+<v><i>effaner</i>              <t>aim:er</t></v>
+<v><i>effarer</i>              <t>aim:er</t></v>
+<v><i>effaroucher</i>          <t>aim:er</t></v>
+<v><i>effectuer</i>            <t>aim:er</t></v>
+<v><i>efféminer</i>           <t>aim:er</t></v>
+<v><i>effeuiller</i>           <t>aim:er</t></v>
+<v><i>effiler</i>              <t>aim:er</t></v>
+<v><i>effilocher</i>           <t>aim:er</t></v>
+<v><i>efflanquer</i>           <t>aim:er</t></v>
+<v><i>effleurer</i>            <t>aim:er</t></v>
+<v><i>effleurir</i>            <t>fin:ir</t></v>
+<v><i>effluver</i>             <t>aim:er</t></v>
+<v><i>effondrer</i>            <t>aim:er</t></v>
+<v><i>efforcer</i>             <t>pla:cer</t></v>
+<v><i>effranger</i>            <t>man:ger</t></v>
+<v><i>effrayer</i>             <t>pa:yer</t></v>
+<v><i>effriter</i>             <t>aim:er</t></v>
+<v><i>égailler</i>            <t>aim:er</t></v>
+<v><i>égaler</i>              <t>aim:er</t></v>
+<v><i>égaliser</i>            <t>aim:er</t></v>
+<v><i>égarer</i>              <t>aim:er</t></v>
+<v><i>égayer</i>              <t>pa:yer</t></v>
+<v><i>égermer</i>             <t>aim:er</t></v>
+<v><i>égorger</i>             <t>man:ger</t></v>
+<v><i>égosiller</i>           <t>aim:er</t></v>
+<v><i>égoutter</i>            <t>aim:er</t></v>
+<v><i>égrainer</i>            <t>aim:er</t></v>
+<v><i>égrapper</i>            <t>aim:er</t></v>
+<v><i>égratigner</i>          <t>aim:er</t></v>
+<v><i>égravillonner</i>               <t>aim:er</t></v>
+<v><i>égrener</i>             <t>m:ener</t></v>
+<v><i>égriser</i>             <t>aim:er</t></v>
+<v><i>égruger</i>             <t>man:ger</t></v>
+<v><i>égueuler</i>            <t>aim:er</t></v>
+<v><i>éhahir</i>              <t>fin:ir</t></v>
+<v><i>éjaculer</i>            <t>aim:er</t></v>
+<v><i>éjecter</i>             <t>aim:er</t></v>
+<v><i>éjointer</i>            <t>aim:er</t></v>
+<v><i>élaborer</i>            <t>aim:er</t></v>
+<v><i>élaguer</i>             <t>aim:er</t></v>
+<v><i>élancer</i>             <t>pla:cer</t></v>
+<v><i>élargir</i>             <t>fin:ir</t></v>
+<v><i>électrifier</i>         <t>aim:er</t></v>
+<v><i>électriser</i>          <t>aim:er</t></v>
+<v><i>électrocuter</i>                <t>aim:er</t></v>
+<v><i>électrolyser</i>                <t>aim:er</t></v>
+<v><i>électroniser</i>                <t>aim:er</t></v>
+<v><i>élever</i>              <t>l:ever</t></v>
+<v><i>élider</i>              <t>aim:er</t></v>
+<v><i>élimer</i>              <t>aim:er</t></v>
+<v><i>éliminer</i>            <t>aim:er</t></v>
+<v><i>élinguer</i>            <t>aim:er</t></v>
+<v><i>élire</i>                       <t>l:ire</t></v>
+<v><i>éloigner</i>            <t>aim:er</t></v>
+<v><i>élonger</i>             <t>man:ger</t></v>
+<v><i>élucider</i>            <t>aim:er</t></v>
+<v><i>élucubrer</i>           <t>aim:er</t></v>
+<v><i>éluder</i>              <t>aim:er</t></v>
+<v><i>émacier</i>             <t>aim:er</t></v>
+<v><i>émailler</i>            <t>aim:er</t></v>
+<v><i>émanciper</i>           <t>aim:er</t></v>
+<v><i>émaner</i>              <t>aim:er</t></v>
+<v><i>émarger</i>             <t>man:ger</t></v>
+<v><i>émasculer</i>           <t>aim:er</t></v>
+<v><i>emballer</i>             <t>aim:er</t></v>
+<v><i>emballotter</i>          <t>aim:er</t></v>
+<v><i>embarbouiller</i>                <t>aim:er</t></v>
+<v><i>embarder</i>             <t>aim:er</t></v>
+<v><i>embarquer</i>            <t>aim:er</t></v>
+<v><i>embarrasser</i>          <t>aim:er</t></v>
+<v><i>embarrer</i>             <t>aim:er</t></v>
+<v><i>embastiller</i>          <t>aim:er</t></v>
+<v><i>embastionner</i>         <t>aim:er</t></v>
+<v><i>embattre</i>             <t>bat:tre</t></v>
+<v><i>embaucher</i>            <t>aim:er</t></v>
+<v><i>embaumer</i>             <t>aim:er</t></v>
+<v><i>embecquer</i>            <t>aim:er</t></v>
+<v><i>embellir</i>             <t>fin:ir</t></v>
+<v><i>emberlificoter</i>       <t>aim:er</t></v>
+<v><i>embêter</i>             <t>aim:er</t></v>
+<v><i>embidonner</i>           <t>aim:er</t></v>
+<v><i>emblaver</i>             <t>aim:er</t></v>
+<v><i>embobeliner</i>          <t>aim:er</t></v>
+<v><i>embobiner</i>            <t>aim:er</t></v>
+<v><i>emboîter</i>            <t>aim:er</t></v>
+<v><i>embosser</i>             <t>aim:er</t></v>
+<v><i>embotteler</i>           <t>app:eler</t></v>
+<v><i>emboucher</i>            <t>aim:er</t></v>
+<v><i>embouer</i>              <t>aim:er</t></v>
+<v><i>embouquer</i>            <t>aim:er</t></v>
+<v><i>embourber</i>            <t>aim:er</t></v>
+<v><i>embourgeoiser</i>                <t>aim:er</t></v>
+<v><i>embourrer</i>            <t>aim:er</t></v>
+<v><i>embouteiller</i>         <t>aim:er</t></v>
+<v><i>emboutir</i>             <t>fin:ir</t></v>
+<v><i>embrancher</i>           <t>aim:er</t></v>
+<v><i>embraquer</i>            <t>aim:er</t></v>
+<v><i>embraser</i>             <t>aim:er</t></v>
+<v><i>embrasser</i>            <t>aim:er</t></v>
+<v><i>embrayer</i>             <t>pa:yer</t></v>
+<v><i>embreler</i>             <t>p:eler</t></v>
+<v><i>embrever</i>             <t>l:ever</t></v>
+<v><i>embrigader</i>           <t>aim:er</t></v>
+<v><i>embringuer</i>           <t>aim:er</t></v>
+<v><i>embrocher</i>            <t>aim:er</t></v>
+<v><i>embroncher</i>           <t>aim:er</t></v>
+<v><i>embrouiller</i>          <t>aim:er</t></v>
+<v><i>embroussailler</i>       <t>aim:er</t></v>
+<v><i>embrumer</i>             <t>aim:er</t></v>
+<v><i>embrunir</i>             <t>fin:ir</t></v>
+<v><i>embuer</i>               <t>aim:er</t></v>
+<v><i>embusquer</i>            <t>aim:er</t></v>
+<v><i>émécher</i>            <t>s:écher</t></v>
+<v><i>émerger</i>             <t>man:ger</t></v>
+<v><i>émerillonner</i>                <t>aim:er</t></v>
+<v><i>émeriser</i>            <t>aim:er</t></v>
+<v><i>émerveiller</i>         <t>aim:er</t></v>
+<v><i>émettre</i>             <t>m:ettre</t></v>
+<v><i>émier</i>                       <t>aim:er</t></v>
+<v><i>émietter</i>            <t>aim:er</t></v>
+<v><i>émigrer</i>             <t>aim:er</t></v>
+<v><i>émincer</i>             <t>pla:cer</t></v>
+<v><i>emmagasiner</i>          <t>aim:er</t></v>
+<v><i>emmailler</i>            <t>aim:er</t></v>
+<v><i>emmailloter</i>          <t>aim:er</t></v>
+<v><i>emmancher</i>            <t>aim:er</t></v>
+<v><i>emmarger</i>             <t>man:ger</t></v>
+<v><i>emmêler</i>             <t>aim:er</t></v>
+<v><i>emménager</i>           <t>man:ger</t></v>
+<v><i>emmener</i>              <t>m:ener</t></v>
+<v><i>emmerder</i>             <t>aim:er</t></v>
+<v><i>emmieller</i>            <t>aim:er</t></v>
+<v><i>emmitonner</i>           <t>aim:er</t></v>
+<v><i>emmitoufler</i>          <t>aim:er</t></v>
+<v><i>emmortaiser</i>          <t>aim:er</t></v>
+<v><i>emmouscailler</i>                <t>aim:er</t></v>
+<v><i>emmurer</i>              <t>aim:er</t></v>
+<v><i>émonder</i>             <t>aim:er</t></v>
+<v><i>émorfiler</i>           <t>aim:er</t></v>
+<v><i>émotionner</i>          <t>aim:er</t></v>
+<v><i>émotter</i>             <t>aim:er</t></v>
+<v><i>émoucher</i>            <t>aim:er</t></v>
+<v><i>émoucheter</i>          <t>ach:eter</t></v>
+<v><i>émoudre</i>             <t>mou:dre</t></v>
+<v><i>émousser</i>            <t>aim:er</t></v>
+<v><i>émoustiller</i>         <t>aim:er</t></v>
+<v><i>émouvoir</i>            <t>prom:ouvoir</t></v>
+<v><i>empailler</i>            <t>aim:er</t></v>
+<v><i>empaler</i>              <t>aim:er</t></v>
+<v><i>empalmer</i>             <t>aim:er</t></v>
+<v><i>empanacher</i>           <t>aim:er</t></v>
+<v><i>empanner</i>             <t>aim:er</t></v>
+<v><i>empapilloter</i>         <t>aim:er</t></v>
+<v><i>empaqueter</i>           <t>j:eter</t></v>
+<v><i>emparer</i>              <t>aim:er</t></v>
+<v><i>emparquer</i>            <t>aim:er</t></v>
+<v><i>empâter</i>             <t>aim:er</t></v>
+<v><i>empatter</i>             <t>aim:er</t></v>
+<v><i>empaumer</i>             <t>aim:er</t></v>
+<v><i>empêcher</i>            <t>aim:er</t></v>
+<v><i>empeigner</i>            <t>aim:er</t></v>
+<v><i>empêner</i>             <t>aim:er</t></v>
+<v><i>empenner</i>             <t>aim:er</t></v>
+<v><i>empercher</i>            <t>aim:er</t></v>
+<v><i>emperler</i>             <t>aim:er</t></v>
+<v><i>empeser</i>              <t>p:eser</t></v>
+<v><i>empester</i>             <t>aim:er</t></v>
+<v><i>empêtrer</i>            <t>aim:er</t></v>
+<v><i>empierrer</i>            <t>aim:er</t></v>
+<v><i>empiéter</i>            <t>décr:éter</t></v>
+<v><i>empiffrer</i>            <t>aim:er</t></v>
+<v><i>empiler</i>              <t>aim:er</t></v>
+<v><i>empirer</i>              <t>aim:er</t></v>
+<v><i>emplir</i>               <t>fin:ir</t></v>
+<v><i>employer</i>             <t>netto:yer</t></v>
+<v><i>emplumer</i>             <t>aim:er</t></v>
+<v><i>empocher</i>             <t>aim:er</t></v>
+<v><i>empoigner</i>            <t>aim:er</t></v>
+<v><i>empoisonner</i>          <t>aim:er</t></v>
+<v><i>empoisser</i>            <t>aim:er</t></v>
+<v><i>empoissonner</i>         <t>aim:er</t></v>
+<v><i>emporter</i>             <t>aim:er</t></v>
+<v><i>empoter</i>              <t>aim:er</t></v>
+<v><i>empourprer</i>           <t>aim:er</t></v>
+<v><i>empoussiérer</i>                <t>réf:érer</t></v>
+<v><i>empreindre</i>           <t>crai:ndre</t></v>
+<v><i>empresser</i>            <t>aim:er</t></v>
+<v><i>emprésurer</i>          <t>aim:er</t></v>
+<v><i>emprisonner</i>          <t>aim:er</t></v>
+<v><i>emprunter</i>            <t>aim:er</t></v>
+<v><i>empuantir</i>            <t>fin:ir</t></v>
+<v><i>émuler</i>              <t>aim:er</t></v>
+<v><i>émulsifier</i>          <t>aim:er</t></v>
+<v><i>émulsionner</i>         <t>aim:er</t></v>
+<v><i>énamourer</i>           <t>aim:er</t></v>
+<v><i>encabaner</i>            <t>aim:er</t></v>
+<v><i>encadrer</i>             <t>aim:er</t></v>
+<v><i>encager</i>              <t>man:ger</t></v>
+<v><i>encaisser</i>            <t>aim:er</t></v>
+<v><i>encanailler</i>          <t>aim:er</t></v>
+<v><i>encapuchonner</i>                <t>aim:er</t></v>
+<v><i>encaquer</i>             <t>aim:er</t></v>
+<v><i>encarter</i>             <t>aim:er</t></v>
+<v><i>encartonner</i>          <t>aim:er</t></v>
+<v><i>encartoucher</i>         <t>aim:er</t></v>
+<v><i>encaserner</i>           <t>aim:er</t></v>
+<v><i>encasteler</i>           <t>p:eler</t></v>
+<v><i>encastrer</i>            <t>aim:er</t></v>
+<v><i>encaustiquer</i>         <t>aim:er</t></v>
+<v><i>encaver</i>              <t>aim:er</t></v>
+<v><i>enceindre</i>            <t>crai:ndre</t></v>
+<v><i>encenser</i>             <t>aim:er</t></v>
+<v><i>encercler</i>            <t>aim:er</t></v>
+<v><i>enchaîner</i>           <t>aim:er</t></v>
+<v><i>enchanter</i>            <t>aim:er</t></v>
+<v><i>enchaperonner</i>                <t>aim:er</t></v>
+<v><i>encharner</i>            <t>aim:er</t></v>
+<v><i>enchâsser</i>           <t>aim:er</t></v>
+<v><i>enchatonner</i>          <t>aim:er</t></v>
+<v><i>enchausser</i>           <t>aim:er</t></v>
+<v><i>enchemiser</i>           <t>aim:er</t></v>
+<v><i>enchérir</i>            <t>fin:ir</t></v>
+<v><i>enchevaucher</i>         <t>aim:er</t></v>
+<v><i>enchevêtrer</i>         <t>aim:er</t></v>
+<v><i>encirer</i>              <t>aim:er</t></v>
+<v><i>enclaver</i>             <t>aim:er</t></v>
+<v><i>enclencher</i>           <t>aim:er</t></v>
+<v><i>encliqueter</i>          <t>j:eter</t></v>
+<v><i>encloîtrer</i>          <t>aim:er</t></v>
+<v><i>enclore</i>              <t>cl:ore</t></v>
+<v><i>enclouer</i>             <t>aim:er</t></v>
+<v><i>encocher</i>             <t>aim:er</t></v>
+<v><i>encoder</i>              <t>aim:er</t></v>
+<v><i>encoffrer</i>            <t>aim:er</t></v>
+<v><i>encoller</i>             <t>aim:er</t></v>
+<v><i>encombrer</i>            <t>aim:er</t></v>
+<v><i>encorder</i>             <t>aim:er</t></v>
+<v><i>encorner</i>             <t>aim:er</t></v>
+<v><i>encourager</i>           <t>man:ger</t></v>
+<v><i>encourir</i>             <t>cour:ir</t></v>
+<v><i>encrasser</i>            <t>aim:er</t></v>
+<v><i>encrêper</i>            <t>aim:er</t></v>
+<v><i>encrer</i>               <t>aim:er</t></v>
+<v><i>encroûter</i>           <t>aim:er</t></v>
+<v><i>enculer</i>              <t>aim:er</t></v>
+<v><i>encuver</i>              <t>aim:er</t></v>
+<v><i>endauber</i>             <t>aim:er</t></v>
+<v><i>endenter</i>             <t>aim:er</t></v>
+<v><i>endetter</i>             <t>aim:er</t></v>
+<v><i>endeuiller</i>           <t>aim:er</t></v>
+<v><i>endêver</i>             <t>aim:er</t></v>
+<v><i>endiabler</i>            <t>aim:er</t></v>
+<v><i>endiguer</i>             <t>aim:er</t></v>
+<v><i>endimancher</i>          <t>aim:er</t></v>
+<v><i>endivisionner</i>                <t>aim:er</t></v>
+<v><i>endoctriner</i>          <t>aim:er</t></v>
+<v><i>endolorir</i>            <t>fin:ir</t></v>
+<v><i>endommager</i>           <t>man:ger</t></v>
+<v><i>endormir</i>             <t>dor:mir</t></v>
+<v><i>endosser</i>             <t>aim:er</t></v>
+<v><i>enduire</i>              <t>condui:re</t></v>
+<v><i>endurcir</i>             <t>fin:ir</t></v>
+<v><i>endurer</i>              <t>aim:er</t></v>
+<v><i>énerver</i>             <t>aim:er</t></v>
+<v><i>enfaîter</i>            <t>aim:er</t></v>
+<v><i>enfanter</i>             <t>aim:er</t></v>
+<v><i>enfariner</i>            <t>aim:er</t></v>
+<v><i>enfermer</i>             <t>aim:er</t></v>
+<v><i>enferrer</i>             <t>aim:er</t></v>
+<v><i>enficher</i>             <t>aim:er</t></v>
+<v><i>enfieller</i>            <t>aim:er</t></v>
+<v><i>enfiévrer</i>           <t>enfi:évrer</t></v>
+<v><i>enfiler</i>              <t>aim:er</t></v>
+<v><i>enflammer</i>            <t>aim:er</t></v>
+<v><i>enfler</i>               <t>aim:er</t></v>
+<v><i>enfleurer</i>            <t>aim:er</t></v>
+<v><i>enfoncer</i>             <t>pla:cer</t></v>
+<v><i>enforcir</i>             <t>fin:ir</t></v>
+<v><i>enfouir</i>              <t>fin:ir</t></v>
+<v><i>enfourcher</i>           <t>aim:er</t></v>
+<v><i>enfourner</i>            <t>aim:er</t></v>
+<v><i>enfreindre</i>           <t>crai:ndre</t></v>
+<v><i>enfuir</i>               <t>fu:ir</t></v>
+<v><i>enfumer</i>              <t>aim:er</t></v>
+<v><i>enfutailler</i>          <t>aim:er</t></v>
+<v><i>enfûter</i>             <t>aim:er</t></v>
+<v><i>engager</i>              <t>man:ger</t></v>
+<v><i>engainer</i>             <t>aim:er</t></v>
+<v><i>engamer</i>              <t>aim:er</t></v>
+<v><i>engargousser</i>         <t>aim:er</t></v>
+<v><i>engaver</i>              <t>aim:er</t></v>
+<v><i>engazonner</i>           <t>aim:er</t></v>
+<v><i>engendrer</i>            <t>aim:er</t></v>
+<v><i>engerber</i>             <t>aim:er</t></v>
+<v><i>englacer</i>             <t>pla:cer</t></v>
+<v><i>englober</i>             <t>aim:er</t></v>
+<v><i>engloutir</i>            <t>fin:ir</t></v>
+<v><i>engluer</i>              <t>aim:er</t></v>
+<v><i>engober</i>              <t>aim:er</t></v>
+<v><i>engommer</i>             <t>aim:er</t></v>
+<v><i>engoncer</i>             <t>pla:cer</t></v>
+<v><i>engorger</i>             <t>man:ger</t></v>
+<v><i>engouer</i>              <t>aim:er</t></v>
+<v><i>engouffrer</i>           <t>aim:er</t></v>
+<v><i>engouler</i>             <t>aim:er</t></v>
+<v><i>engourdir</i>            <t>fin:ir</t></v>
+<v><i>engraisser</i>           <t>aim:er</t></v>
+<v><i>engranger</i>            <t>man:ger</t></v>
+<v><i>engraver</i>             <t>aim:er</t></v>
+<v><i>engrener</i>             <t>m:ener</t></v>
+<v><i>engrosser</i>            <t>aim:er</t></v>
+<v><i>engrumeler</i>           <t>app:eler</t></v>
+<v><i>engueuler</i>            <t>aim:er</t></v>
+<v><i>enguirlander</i>         <t>aim:er</t></v>
+<v><i>enhardier</i>            <t>aim:er</t></v>
+<v><i>enhardir</i>             <t>fin:ir</t></v>
+<v><i>enharnacher</i>          <t>aim:er</t></v>
+<v><i>enherber</i>             <t>aim:er</t></v>
+<v><i>énieller</i>            <t>aim:er</t></v>
+<v><i>enivrer</i>              <t>aim:er</t></v>
+<v><i>enjamber</i>             <t>aim:er</t></v>
+<v><i>enjaveler</i>            <t>app:eler</t></v>
+<v><i>enjoindre</i>            <t>crai:ndre</t></v>
+<v><i>enjôler</i>             <t>aim:er</t></v>
+<v><i>enjoliver</i>            <t>aim:er</t></v>
+<v><i>enjoncer</i>             <t>pla:cer</t></v>
+<v><i>enjouer</i>              <t>aim:er</t></v>
+<v><i>enjuguer</i>             <t>aim:er</t></v>
+<v><i>enjuiver</i>             <t>aim:er</t></v>
+<v><i>enjuponner</i>           <t>aim:er</t></v>
+<v><i>enkyster</i>             <t>aim:er</t></v>
+<v><i>enlacer</i>              <t>pla:cer</t></v>
+<v><i>enlaidir</i>             <t>fin:ir</t></v>
+<v><i>enlever</i>              <t>l:ever</t></v>
+<v><i>enliasser</i>            <t>aim:er</t></v>
+<v><i>enlier</i>               <t>aim:er</t></v>
+<v><i>enligner</i>             <t>aim:er</t></v>
+<v><i>enliser</i>              <t>aim:er</t></v>
+<v><i>enluminer</i>            <t>aim:er</t></v>
+<v><i>enneiger</i>             <t>man:ger</t></v>
+<v><i>ennoblir</i>             <t>fin:ir</t></v>
+<v><i>ennuager</i>             <t>man:ger</t></v>
+<v><i>ennuyer</i>              <t>netto:yer</t></v>
+<v><i>énoncer</i>             <t>pla:cer</t></v>
+<v><i>enorgueillir</i>         <t>fin:ir</t></v>
+<v><i>énouer</i>              <t>aim:er</t></v>
+<v><i>enquérir</i>            <t>acqu:érir</t></v>
+<v><i>enquêter</i>            <t>aim:er</t></v>
+<v><i>enquiquiner</i>          <t>aim:er</t></v>
+<v><i>enraciner</i>            <t>aim:er</t></v>
+<v><i>enrager</i>              <t>man:ger</t></v>
+<v><i>enrailler</i>            <t>aim:er</t></v>
+<v><i>enrayer</i>              <t>pa:yer</t></v>
+<v><i>enrégimenter</i>                <t>aim:er</t></v>
+<v><i>enregistrer</i>          <t>aim:er</t></v>
+<v><i>enrêner</i>             <t>aim:er</t></v>
+<v><i>enrhumer</i>             <t>aim:er</t></v>
+<v><i>enrichir</i>             <t>fin:ir</t></v>
+<v><i>enrober</i>              <t>aim:er</t></v>
+<v><i>enrocher</i>             <t>aim:er</t></v>
+<v><i>enrôler</i>             <t>aim:er</t></v>
+<v><i>enrouer</i>              <t>aim:er</t></v>
+<v><i>enrouiller</i>           <t>aim:er</t></v>
+<v><i>enrouler</i>             <t>aim:er</t></v>
+<v><i>enrubanner</i>           <t>aim:er</t></v>
+<v><i>ensabler</i>             <t>aim:er</t></v>
+<v><i>ensaboter</i>            <t>aim:er</t></v>
+<v><i>ensacher</i>             <t>aim:er</t></v>
+<v><i>ensaisiner</i>           <t>aim:er</t></v>
+<v><i>ensanglanter</i>         <t>aim:er</t></v>
+<v><i>ensauvager</i>           <t>man:ger</t></v>
+<v><i>enseigner</i>            <t>aim:er</t></v>
+<v><i>ensemencer</i>           <t>pla:cer</t></v>
+<v><i>enserrer</i>             <t>aim:er</t></v>
+<v><i>ensevelir</i>            <t>fin:ir</t></v>
+<v><i>ensiler</i>              <t>aim:er</t></v>
+<v><i>ensoleiller</i>          <t>aim:er</t></v>
+<v><i>ensorceler</i>           <t>app:eler</t></v>
+<v><i>ensoufrer</i>            <t>aim:er</t></v>
+<v><i>ensoutaner</i>           <t>aim:er</t></v>
+<v><i>ensuivre</i>             <t>sui:vre</t></v>
+<v><i>entabler</i>             <t>aim:er</t></v>
+<v><i>entacher</i>             <t>aim:er</t></v>
+<v><i>entailler</i>            <t>aim:er</t></v>
+<v><i>entamer</i>              <t>aim:er</t></v>
+<v><i>entartrer</i>            <t>aim:er</t></v>
+<v><i>entasser</i>             <t>aim:er</t></v>
+<v><i>entendre</i>             <t>ten:dre</t></v>
+<v><i>enténébrer</i>         <t>cél:ébrer</t></v>
+<v><i>entériner</i>           <t>aim:er</t></v>
+<v><i>enter</i>                        <t>aim:er</t></v>
+<v><i>enterrer</i>             <t>aim:er</t></v>
+<v><i>entêter</i>             <t>aim:er</t></v>
+<v><i>enthousiasmer</i>                <t>aim:er</t></v>
+<v><i>enticher</i>             <t>aim:er</t></v>
+<v><i>entoiler</i>             <t>aim:er</t></v>
+<v><i>entôler</i>             <t>aim:er</t></v>
+<v><i>entonner</i>             <t>aim:er</t></v>
+<v><i>entortiller</i>          <t>aim:er</t></v>
+<v><i>entourer</i>             <t>aim:er</t></v>
+<v><i>entraider</i>            <t>aim:er</t></v>
+<v><i>entr'aimer</i>           <t>aim:er</t></v>
+<v><i>entraîner</i>           <t>aim:er</t></v>
+<v><i>entr'apercevoir</i>      <t>dé:cevoir</t></v>
+<v><i>entraver</i>             <t>aim:er</t></v>
+<v><i>entrebâiller</i>                <t>aim:er</t></v>
+<v><i>entrechoquer</i>         <t>aim:er</t></v>
+<v><i>entrecouper</i>          <t>aim:er</t></v>
+<v><i>entrecroiser</i>         <t>aim:er</t></v>
+<v><i>entre-déchirer</i>      <t>aim:er</t></v>
+<v><i>entre-dévorer</i>               <t>aim:er</t></v>
+<v><i>entr'égorger</i>                <t>man:ger</t></v>
+<v><i>entre-heurter</i>                <t>aim:er</t></v>
+<v><i>entrelacer</i>           <t>pla:cer</t></v>
+<v><i>entrelarder</i>          <t>aim:er</t></v>
+<v><i>entremêler</i>          <t>aim:er</t></v>
+<v><i>entremettre</i>          <t>m:ettre</t></v>
+<v><i>entreposer</i>           <t>aim:er</t></v>
+<v><i>entreprendre</i>         <t>pr:endre</t></v>
+<v><i>entre-regarder</i>       <t>aim:er</t></v>
+<v><i>entrer</i>               <t>aim:er</t></v>
+<v><i>entretailler</i>         <t>aim:er</t></v>
+<v><i>entretenir</i>           <t>t:enir</t></v>
+<v><i>entre-tisser</i>         <t>aim:er</t></v>
+<v><i>entretoiser</i>          <t>aim:er</t></v>
+<v><i>entre-tuer</i>           <t>aim:er</t></v>
+<v><i>entretuer</i>            <t>aim:er</t></v>
+<v><i>entrevoir</i>            <t>v:oir</t></v>
+<v><i>entrevoûter</i>         <t>aim:er</t></v>
+<v><i>entrouvrir</i>           <t>ouv:rir</t></v>
+<v><i>entuber</i>              <t>aim:er</t></v>
+<v><i>enucléer</i>            <t>aim:er</t></v>
+<v><i>énucléer</i>           <t>aim:er</t></v>
+<v><i>énumérer</i>           <t>réf:érer</t></v>
+<v><i>envahir</i>              <t>fin:ir</t></v>
+<v><i>envaser</i>              <t>aim:er</t></v>
+<v><i>envelopper</i>           <t>aim:er</t></v>
+<v><i>envenimer</i>            <t>aim:er</t></v>
+<v><i>enverger</i>             <t>man:ger</t></v>
+<v><i>enverguer</i>            <t>aim:er</t></v>
+<v><i>envider</i>              <t>aim:er</t></v>
+<v><i>envieillir</i>           <t>fin:ir</t></v>
+<v><i>envier</i>               <t>aim:er</t></v>
+<v><i>environner</i>           <t>aim:er</t></v>
+<v><i>envisager</i>            <t>man:ger</t></v>
+<v><i>envoiler</i>             <t>aim:er</t></v>
+<v><i>envoler</i>              <t>aim:er</t></v>
+<v><i>envoûter</i>            <t>aim:er</t></v>
+<v><i>envoyer</i>              <t>env:oyer</t></v>
+<v><i>épaissir</i>            <t>fin:ir</t></v>
+<v><i>épaler</i>              <t>aim:er</t></v>
+<v><i>épamprer</i>            <t>aim:er</t></v>
+<v><i>épancher</i>            <t>aim:er</t></v>
+<v><i>épandre</i>             <t>ten:dre</t></v>
+<v><i>épanneler</i>           <t>app:eler</t></v>
+<v><i>épanner</i>             <t>aim:er</t></v>
+<v><i>épanouir</i>            <t>fin:ir</t></v>
+<v><i>épargner</i>            <t>aim:er</t></v>
+<v><i>éparpiller</i>          <t>aim:er</t></v>
+<v><i>épater</i>              <t>aim:er</t></v>
+<v><i>épaufrer</i>            <t>aim:er</t></v>
+<v><i>épauler</i>             <t>aim:er</t></v>
+<v><i>épeler</i>              <t>app:eler</t></v>
+<v><i>épépiner</i>           <t>aim:er</t></v>
+<v><i>éperonner</i>           <t>aim:er</t></v>
+<v><i>épeuler</i>             <t>aim:er</t></v>
+<v><i>épeurer</i>             <t>aim:er</t></v>
+<v><i>épicer</i>              <t>pla:cer</t></v>
+<v><i>épier</i>                       <t>aim:er</t></v>
+<v><i>épierrer</i>            <t>aim:er</t></v>
+<v><i>épiler</i>              <t>aim:er</t></v>
+<v><i>épiloguer</i>           <t>aim:er</t></v>
+<v><i>épinceler</i>           <t>p:eler</t></v>
+<v><i>épincer</i>             <t>pla:cer</t></v>
+<v><i>épinceter</i>           <t>j:eter</t></v>
+<v><i>épiner</i>              <t>aim:er</t></v>
+<v><i>épingler</i>            <t>aim:er</t></v>
+<v><i>épisser</i>             <t>aim:er</t></v>
+<v><i>éployer</i>             <t>netto:yer</t></v>
+<v><i>éplucher</i>            <t>aim:er</t></v>
+<v><i>épointer</i>            <t>aim:er</t></v>
+<v><i>éponger</i>             <t>man:ger</t></v>
+<v><i>épontiller</i>          <t>aim:er</t></v>
+<v><i>épouiller</i>           <t>aim:er</t></v>
+<v><i>époumoner</i>           <t>aim:er</t></v>
+<v><i>épouser</i>             <t>aim:er</t></v>
+<v><i>épousseter</i>          <t>j:eter</t></v>
+<v><i>époustoufler</i>                <t>aim:er</t></v>
+<v><i>époutier</i>            <t>aim:er</t></v>
+<v><i>époutir</i>             <t>fin:ir</t></v>
+<v><i>épouvanter</i>          <t>aim:er</t></v>
+<v><i>éprendre</i>            <t>pr:endre</t></v>
+<v><i>éprouver</i>            <t>aim:er</t></v>
+<v><i>épucer</i>              <t>pla:cer</t></v>
+<v><i>épuiser</i>             <t>aim:er</t></v>
+<v><i>épurer</i>              <t>aim:er</t></v>
+<v><i>équarrir</i>            <t>fin:ir</t></v>
+<v><i>équerrer</i>            <t>aim:er</t></v>
+<v><i>équeuter</i>            <t>aim:er</t></v>
+<v><i>équilibrer</i>          <t>aim:er</t></v>
+<v><i>équiper</i>             <t>aim:er</t></v>
+<v><i>équivaloir</i>          <t>va:loir</t></v>
+<v><i>équivoquer</i>          <t>aim:er</t></v>
+<v><i>éradiquer</i>           <t>aim:er</t></v>
+<v><i>érafler</i>             <t>aim:er</t></v>
+<v><i>érailler</i>            <t>aim:er</t></v>
+<v><i>érayer</i>              <t>pa:yer</t></v>
+<v><i>éreinter</i>            <t>aim:er</t></v>
+<v><i>ergoter</i>              <t>aim:er</t></v>
+<v><i>ériger</i>              <t>man:ger</t></v>
+<v><i>éroder</i>              <t>aim:er</t></v>
+<v><i>érotiser</i>            <t>aim:er</t></v>
+<v><i>errer</i>                        <t>aim:er</t></v>
+<v><i>éructer</i>             <t>aim:er</t></v>
+<v><i>esbigner</i>             <t>aim:er</t></v>
+<v><i>esbroufer</i>            <t>aim:er</t></v>
+<v><i>escadronner</i>          <t>aim:er</t></v>
+<v><i>escalader</i>            <t>aim:er</t></v>
+<v><i>escamoter</i>            <t>aim:er</t></v>
+<v><i>escarmoucher</i>         <t>aim:er</t></v>
+<v><i>escarrifier</i>          <t>aim:er</t></v>
+<v><i>escher</i>               <t>aim:er</t></v>
+<v><i>esclaffer</i>            <t>aim:er</t></v>
+<v><i>escoffier</i>            <t>aim:er</t></v>
+<v><i>escompter</i>            <t>aim:er</t></v>
+<v><i>escorter</i>             <t>aim:er</t></v>
+<v><i>escrimer</i>             <t>aim:er</t></v>
+<v><i>escroquer</i>            <t>aim:er</t></v>
+<v><i>espacer</i>              <t>pla:cer</t></v>
+<v><i>espérer</i>             <t>réf:érer</t></v>
+<v><i>espionner</i>            <t>aim:er</t></v>
+<v><i>espoliner</i>            <t>aim:er</t></v>
+<v><i>espouliner</i>           <t>aim:er</t></v>
+<v><i>esquicher</i>            <t>aim:er</t></v>
+<v><i>esquinter</i>            <t>aim:er</t></v>
+<v><i>esquisser</i>            <t>aim:er</t></v>
+<v><i>esquiver</i>             <t>aim:er</t></v>
+<v><i>essaimer</i>             <t>aim:er</t></v>
+<v><i>essanger</i>             <t>man:ger</t></v>
+<v><i>essarter</i>             <t>aim:er</t></v>
+<v><i>essayer</i>              <t>pa:yer</t></v>
+<v><i>essorer</i>              <t>aim:er</t></v>
+<v><i>essoriller</i>           <t>aim:er</t></v>
+<v><i>essoucher</i>            <t>aim:er</t></v>
+<v><i>essouffler</i>           <t>aim:er</t></v>
+<v><i>essuyer</i>              <t>netto:yer</t></v>
+<v><i>estamper</i>             <t>aim:er</t></v>
+<v><i>estampiller</i>          <t>aim:er</t></v>
+<v><i>estérifier</i>          <t>aim:er</t></v>
+<v><i>ester</i>                        <t>est:er</t></v>
+<v><i>esthétiser</i>          <t>aim:er</t></v>
+<v><i>estimer</i>              <t>aim:er</t></v>
+<v><i>estiver</i>              <t>aim:er</t></v>
+<v><i>estomaquer</i>           <t>aim:er</t></v>
+<v><i>estomper</i>             <t>aim:er</t></v>
+<v><i>estoquer</i>             <t>aim:er</t></v>
+<v><i>estourbir</i>            <t>fin:ir</t></v>
+<v><i>estrapader</i>           <t>aim:er</t></v>
+<v><i>estrapasser</i>          <t>aim:er</t></v>
+<v><i>estropier</i>            <t>aim:er</t></v>
+<v><i>établer</i>             <t>aim:er</t></v>
+<v><i>établir</i>             <t>fin:ir</t></v>
+<v><i>étager</i>              <t>man:ger</t></v>
+<v><i>étalager</i>            <t>man:ger</t></v>
+<v><i>étaler</i>              <t>aim:er</t></v>
+<v><i>étalinguer</i>          <t>aim:er</t></v>
+<v><i>étaliser</i>            <t>aim:er</t></v>
+<v><i>étalonner</i>           <t>aim:er</t></v>
+<v><i>étamer</i>              <t>aim:er</t></v>
+<v><i>étamper</i>             <t>aim:er</t></v>
+<v><i>étancher</i>            <t>aim:er</t></v>
+<v><i>étançonner</i>         <t>aim:er</t></v>
+<v><i>étarquer</i>            <t>aim:er</t></v>
+<v><i>étatiser</i>            <t>aim:er</t></v>
+<v><i>étayer</i>              <t>pa:yer</t></v>
+<v><i>éteindre</i>            <t>crai:ndre</t></v>
+<v><i>étendre</i>             <t>ten:dre</t></v>
+<v><i>éterniser</i>           <t>aim:er</t></v>
+<v><i>éternuer</i>            <t>aim:er</t></v>
+<v><i>étêter</i>             <t>aim:er</t></v>
+<v><i>éthérifier</i>         <t>aim:er</t></v>
+<v><i>éthériser</i>          <t>aim:er</t></v>
+<v><i>étinceler</i>           <t>app:eler</t></v>
+<v><i>étioler</i>             <t>aim:er</t></v>
+<v><i>étiqueter</i>           <t>j:eter</t></v>
+<v><i>étirer</i>              <t>aim:er</t></v>
+<v><i>étoffer</i>             <t>aim:er</t></v>
+<v><i>étoiler</i>             <t>aim:er</t></v>
+<v><i>étonner</i>             <t>aim:er</t></v>
+<v><i>étouffer</i>            <t>aim:er</t></v>
+<v><i>étouper</i>             <t>aim:er</t></v>
+<v><i>étoupiller</i>          <t>aim:er</t></v>
+<v><i>étourdir</i>            <t>fin:ir</t></v>
+<v><i>étrangler</i>           <t>aim:er</t></v>
+<v><i>étrécir</i>            <t>fin:ir</t></v>
+<v><i>étreindre</i>           <t>crai:ndre</t></v>
+<v><i>être</i>                        <t>:être</t></v>
+<v><i>étrenner</i>            <t>aim:er</t></v>
+<v><i>étrésillonner</i>              <t>aim:er</t></v>
+<v><i>étriller</i>            <t>aim:er</t></v>
+<v><i>étriper</i>             <t>aim:er</t></v>
+<v><i>étriquer</i>            <t>aim:er</t></v>
+<v><i>étronçonner</i>                <t>aim:er</t></v>
+<v><i>étudier</i>             <t>aim:er</t></v>
+<v><i>étuver</i>              <t>aim:er</t></v>
+<v><i>euphoriser</i>           <t>aim:er</t></v>
+<v><i>européaniser</i>                <t>aim:er</t></v>
+<v><i>euthanasier</i>          <t>aim:er</t></v>
+<v><i>évacuer</i>             <t>aim:er</t></v>
+<v><i>évader</i>              <t>aim:er</t></v>
+<v><i>évaluer</i>             <t>aim:er</t></v>
+<v><i>évangéliser</i>                <t>aim:er</t></v>
+<v><i>évanouir</i>            <t>fin:ir</t></v>
+<v><i>évaporer</i>            <t>aim:er</t></v>
+<v><i>évaser</i>              <t>aim:er</t></v>
+<v><i>éveiller</i>            <t>aim:er</t></v>
+<v><i>éventer</i>             <t>aim:er</t></v>
+<v><i>éventrer</i>            <t>aim:er</t></v>
+<v><i>évertuer</i>            <t>aim:er</t></v>
+<v><i>évider</i>              <t>aim:er</t></v>
+<v><i>évincer</i>             <t>pla:cer</t></v>
+<v><i>éviter</i>              <t>aim:er</t></v>
+<v><i>évoluer</i>             <t>aim:er</t></v>
+<v><i>évoquer</i>             <t>aim:er</t></v>
+<v><i>exacerber</i>            <t>aim:er</t></v>
+<v><i>exagérer</i>            <t>réf:érer</t></v>
+<v><i>exalter</i>              <t>aim:er</t></v>
+<v><i>examiner</i>             <t>aim:er</t></v>
+<v><i>exaspérer</i>           <t>réf:érer</t></v>
+<v><i>exaucer</i>              <t>pla:cer</t></v>
+<v><i>excaver</i>              <t>aim:er</t></v>
+<v><i>excéder</i>             <t>c:éder</t></v>
+<v><i>exceller</i>             <t>aim:er</t></v>
+<v><i>excentrer</i>            <t>aim:er</t></v>
+<v><i>excepter</i>             <t>aim:er</t></v>
+<v><i>exciper</i>              <t>aim:er</t></v>
+<v><i>exciser</i>              <t>aim:er</t></v>
+<v><i>exciter</i>              <t>aim:er</t></v>
+<v><i>exclamer</i>             <t>aim:er</t></v>
+<v><i>exclure</i>              <t>concl:ure</t></v>
+<v><i>excommunier</i>          <t>aim:er</t></v>
+<v><i>excorier</i>             <t>aim:er</t></v>
+<v><i>excréter</i>            <t>décr:éter</t></v>
+<v><i>excursionner</i>         <t>aim:er</t></v>
+<v><i>excuser</i>              <t>aim:er</t></v>
+<v><i>exécrer</i>             <t>ex:écrer</t></v>
+<v><i>exécuter</i>            <t>aim:er</t></v>
+<v><i>exemplifier</i>          <t>aim:er</t></v>
+<v><i>exempter</i>             <t>aim:er</t></v>
+<v><i>exercer</i>              <t>pla:cer</t></v>
+<v><i>exfolier</i>             <t>aim:er</t></v>
+<v><i>exhaler</i>              <t>aim:er</t></v>
+<v><i>exhausser</i>            <t>aim:er</t></v>
+<v><i>exhéréder</i>          <t>c:éder</t></v>
+<v><i>exhiber</i>              <t>aim:er</t></v>
+<v><i>exhorter</i>             <t>aim:er</t></v>
+<v><i>exhumer</i>              <t>aim:er</t></v>
+<v><i>exiger</i>               <t>man:ger</t></v>
+<v><i>exiler</i>               <t>aim:er</t></v>
+<v><i>exister</i>              <t>aim:er</t></v>
+<v><i>exonérer</i>            <t>réf:érer</t></v>
+<v><i>exorciser</i>            <t>aim:er</t></v>
+<v><i>expatrier</i>            <t>aim:er</t></v>
+<v><i>expectorer</i>           <t>aim:er</t></v>
+<v><i>expédier</i>            <t>aim:er</t></v>
+<v><i>expérimenter</i>                <t>aim:er</t></v>
+<v><i>expertiser</i>           <t>aim:er</t></v>
+<v><i>expier</i>               <t>aim:er</t></v>
+<v><i>expirer</i>              <t>aim:er</t></v>
+<v><i>expliciter</i>           <t>aim:er</t></v>
+<v><i>expliquer</i>            <t>aim:er</t></v>
+<v><i>exploiter</i>            <t>aim:er</t></v>
+<v><i>explorer</i>             <t>aim:er</t></v>
+<v><i>exploser</i>             <t>aim:er</t></v>
+<v><i>exporter</i>             <t>aim:er</t></v>
+<v><i>exposer</i>              <t>aim:er</t></v>
+<v><i>exprimer</i>             <t>aim:er</t></v>
+<v><i>exproprier</i>           <t>aim:er</t></v>
+<v><i>expulser</i>             <t>aim:er</t></v>
+<v><i>expurger</i>             <t>man:ger</t></v>
+<v><i>exsuder</i>              <t>aim:er</t></v>
+<v><i>extasier</i>             <t>aim:er</t></v>
+<v><i>exténuer</i>            <t>aim:er</t></v>
+<v><i>extérioriser</i>                <t>aim:er</t></v>
+<v><i>exterminer</i>           <t>aim:er</t></v>
+<v><i>extirper</i>             <t>aim:er</t></v>
+<v><i>extorquer</i>            <t>aim:er</t></v>
+<v><i>extrader</i>             <t>aim:er</t></v>
+<v><i>extraire</i>             <t>extra:ire</t></v>
+<v><i>extrapoler</i>           <t>aim:er</t></v>
+<v><i>extravaguer</i>          <t>aim:er</t></v>
+<v><i>extravaser</i>           <t>aim:er</t></v>
+<v><i>extruder</i>             <t>aim:er</t></v>
+<v><i>exulter</i>              <t>aim:er</t></v>
+<v><i>fabriquer</i>            <t>aim:er</t></v>
+<v><i>fabuler</i>              <t>aim:er</t></v>
+<v><i>facetter</i>             <t>aim:er</t></v>
+<v><i>fâcher</i>              <t>aim:er</t></v>
+<v><i>faciliter</i>            <t>aim:er</t></v>
+<v><i>façonner</i>            <t>aim:er</t></v>
+<v><i>factoriser</i>           <t>aim:er</t></v>
+<v><i>facturer</i>             <t>aim:er</t></v>
+<v><i>fader</i>                        <t>aim:er</t></v>
+<v><i>fagoter</i>              <t>aim:er</t></v>
+<v><i>faiblir</i>              <t>fin:ir</t></v>
+<v><i>faignanter</i>           <t>aim:er</t></v>
+<v><i>failler</i>              <t>aim:er</t></v>
+<v><i>faillir</i>              <t>fa:illir</t></v>
+<v><i>fainéanter</i>          <t>aim:er</t></v>
+<v><i>faire</i>                        <t>f:aire</t></v>
+<v><i>faisander</i>            <t>aim:er</t></v>
+<v><i>falloir</i>              <t>fa:lloir</t></v>
+<v><i>falsifier</i>            <t>aim:er</t></v>
+<v><i>faluner</i>              <t>aim:er</t></v>
+<v><i>familiariser</i>         <t>aim:er</t></v>
+<v><i>fanatiser</i>            <t>aim:er</t></v>
+<v><i>faner</i>                        <t>aim:er</t></v>
+<v><i>fanfaronner</i>          <t>aim:er</t></v>
+<v><i>fanfrelucher</i>         <t>aim:er</t></v>
+<v><i>fantasmer</i>            <t>aim:er</t></v>
+<v><i>farandoler</i>           <t>aim:er</t></v>
+<v><i>farcir</i>               <t>fin:ir</t></v>
+<v><i>farder</i>               <t>aim:er</t></v>
+<v><i>farfouiller</i>          <t>aim:er</t></v>
+<v><i>fariner</i>              <t>aim:er</t></v>
+<v><i>farter</i>               <t>aim:er</t></v>
+<v><i>fasciner</i>             <t>aim:er</t></v>
+<v><i>fasciser</i>             <t>aim:er</t></v>
+<v><i>faseiller</i>            <t>aim:er</t></v>
+<v><i>faseyer</i>              <t>aim:er</t></v>
+<v><i>fatiguer</i>             <t>aim:er</t></v>
+<v><i>faucarder</i>            <t>aim:er</t></v>
+<v><i>faucher</i>              <t>aim:er</t></v>
+<v><i>fauconner</i>            <t>aim:er</t></v>
+<v><i>faufiler</i>             <t>aim:er</t></v>
+<v><i>fausser</i>              <t>aim:er</t></v>
+<v><i>fauter</i>               <t>aim:er</t></v>
+<v><i>favoriser</i>            <t>aim:er</t></v>
+<v><i>faxer</i>                        <t>aim:er</t></v>
+<v><i>fayoter</i>              <t>aim:er</t></v>
+<v><i>fayotter</i>             <t>aim:er</t></v>
+<v><i>féconder</i>            <t>aim:er</t></v>
+<v><i>féculer</i>             <t>aim:er</t></v>
+<v><i>fédéraliser</i>                <t>aim:er</t></v>
+<v><i>fédérer</i>            <t>réf:érer</t></v>
+<v><i>feignanter</i>           <t>aim:er</t></v>
+<v><i>feindre</i>              <t>crai:ndre</t></v>
+<v><i>feinter</i>              <t>aim:er</t></v>
+<v><i>fêler</i>                       <t>aim:er</t></v>
+<v><i>féliciter</i>           <t>aim:er</t></v>
+<v><i>féminiser</i>           <t>aim:er</t></v>
+<v><i>fendiller</i>            <t>aim:er</t></v>
+<v><i>fendre</i>               <t>ten:dre</t></v>
+<v><i>fenestrer</i>            <t>aim:er</t></v>
+<v><i>fenêtrer</i>            <t>aim:er</t></v>
+<v><i>férir</i>                       <t>fér:ir</t></v>
+<v><i>ferler</i>               <t>aim:er</t></v>
+<v><i>fermenter</i>            <t>aim:er</t></v>
+<v><i>fermer</i>               <t>aim:er</t></v>
+<v><i>ferrailler</i>           <t>aim:er</t></v>
+<v><i>ferrer</i>               <t>aim:er</t></v>
+<v><i>ferrouter</i>            <t>aim:er</t></v>
+<v><i>fertiliser</i>           <t>aim:er</t></v>
+<v><i>fesser</i>               <t>aim:er</t></v>
+<v><i>festonner</i>            <t>aim:er</t></v>
+<v><i>festoyer</i>             <t>netto:yer</t></v>
+<v><i>fêter</i>                       <t>aim:er</t></v>
+<v><i>fétichiser</i>          <t>aim:er</t></v>
+<v><i>feuiller</i>             <t>aim:er</t></v>
+<v><i>feuilleter</i>           <t>j:eter</t></v>
+<v><i>feuler</i>               <t>aim:er</t></v>
+<v><i>feutrer</i>              <t>aim:er</t></v>
+<v><i>fiancer</i>              <t>pla:cer</t></v>
+<v><i>ficeler</i>              <t>app:eler</t></v>
+<v><i>ficher</i>               <t>aim:er</t></v>
+<v><i>fidéliser</i>           <t>aim:er</t></v>
+<v><i>fieffer</i>              <t>aim:er</t></v>
+<v><i>fienter</i>              <t>aim:er</t></v>
+<v><i>fier</i>                 <t>aim:er</t></v>
+<v><i>figer</i>                        <t>man:ger</t></v>
+<v><i>fignoler</i>             <t>aim:er</t></v>
+<v><i>figurer</i>              <t>aim:er</t></v>
+<v><i>filer</i>                        <t>aim:er</t></v>
+<v><i>fileter</i>              <t>ach:eter</t></v>
+<v><i>filigraner</i>           <t>aim:er</t></v>
+<v><i>filmer</i>               <t>aim:er</t></v>
+<v><i>filocher</i>             <t>aim:er</t></v>
+<v><i>filouter</i>             <t>aim:er</t></v>
+<v><i>filtrer</i>              <t>aim:er</t></v>
+<v><i>finaliser</i>            <t>aim:er</t></v>
+<v><i>financer</i>             <t>pla:cer</t></v>
+<v><i>finasser</i>             <t>aim:er</t></v>
+<v><i>finir</i>                        <t>fin:ir</t></v>
+<v><i>finlandiser</i>          <t>aim:er</t></v>
+<v><i>fiscaliser</i>           <t>aim:er</t></v>
+<v><i>fissionner</i>           <t>aim:er</t></v>
+<v><i>fissurer</i>             <t>aim:er</t></v>
+<v><i>fixer</i>                        <t>aim:er</t></v>
+<v><i>flageller</i>            <t>aim:er</t></v>
+<v><i>flageoler</i>            <t>aim:er</t></v>
+<v><i>flagorner</i>            <t>aim:er</t></v>
+<v><i>flairer</i>              <t>aim:er</t></v>
+<v><i>flamber</i>              <t>aim:er</t></v>
+<v><i>flamboyer</i>            <t>netto:yer</t></v>
+<v><i>flancher</i>             <t>aim:er</t></v>
+<v><i>flâner</i>              <t>aim:er</t></v>
+<v><i>flanquer</i>             <t>aim:er</t></v>
+<v><i>flaquer</i>              <t>aim:er</t></v>
+<v><i>flasher</i>              <t>aim:er</t></v>
+<v><i>flatter</i>              <t>aim:er</t></v>
+<v><i>flauper</i>              <t>aim:er</t></v>
+<v><i>flécher</i>             <t>s:écher</t></v>
+<v><i>fléchir</i>             <t>fin:ir</t></v>
+<v><i>flemmarder</i>           <t>aim:er</t></v>
+<v><i>flétrir</i>             <t>fin:ir</t></v>
+<v><i>fleurer</i>              <t>aim:er</t></v>
+<v><i>fleureter</i>            <t>j:eter</t></v>
+<v><i>fleurir</i>              <t>fl:eurir</t></v>
+<v><i>flibuster</i>            <t>aim:er</t></v>
+<v><i>flinguer</i>             <t>aim:er</t></v>
+<v><i>flipper</i>              <t>aim:er</t></v>
+<v><i>flirter</i>              <t>aim:er</t></v>
+<v><i>floconner</i>            <t>aim:er</t></v>
+<v><i>floculer</i>             <t>aim:er</t></v>
+<v><i>flotter</i>              <t>aim:er</t></v>
+<v><i>flouer</i>               <t>aim:er</t></v>
+<v><i>flouser</i>              <t>aim:er</t></v>
+<v><i>fluctuer</i>             <t>aim:er</t></v>
+<v><i>fluer</i>                        <t>aim:er</t></v>
+<v><i>fluidifier</i>           <t>aim:er</t></v>
+<v><i>fluidiser</i>            <t>aim:er</t></v>
+<v><i>fluoriser</i>            <t>aim:er</t></v>
+<v><i>flûter</i>              <t>aim:er</t></v>
+<v><i>fluxer</i>               <t>aim:er</t></v>
+<v><i>focaliser</i>            <t>aim:er</t></v>
+<v><i>foirer</i>               <t>aim:er</t></v>
+<v><i>foisonner</i>            <t>aim:er</t></v>
+<v><i>folâtrer</i>            <t>aim:er</t></v>
+<v><i>folichonner</i>          <t>aim:er</t></v>
+<v><i>folioter</i>             <t>aim:er</t></v>
+<v><i>fomenter</i>             <t>aim:er</t></v>
+<v><i>foncer</i>               <t>pla:cer</t></v>
+<v><i>fonctionnariser</i>      <t>aim:er</t></v>
+<v><i>fonctionner</i>          <t>aim:er</t></v>
+<v><i>fonder</i>               <t>aim:er</t></v>
+<v><i>fondre</i>               <t>ten:dre</t></v>
+<v><i>forcer</i>               <t>pla:cer</t></v>
+<v><i>forcir</i>               <t>fin:ir</t></v>
+<v><i>forclore</i>             <t>forclo:re</t></v>
+<v><i>forer</i>                        <t>aim:er</t></v>
+<v><i>forfaire</i>             <t>f:aire</t></v>
+<v><i>forger</i>               <t>man:ger</t></v>
+<v><i>forjeter</i>             <t>j:eter</t></v>
+<v><i>forlancer</i>            <t>pla:cer</t></v>
+<v><i>forligner</i>            <t>aim:er</t></v>
+<v><i>forlonger</i>            <t>man:ger</t></v>
+<v><i>formaliser</i>           <t>aim:er</t></v>
+<v><i>formater</i>             <t>aim:er</t></v>
+<v><i>former</i>               <t>aim:er</t></v>
+<v><i>formoler</i>             <t>aim:er</t></v>
+<v><i>formuler</i>             <t>aim:er</t></v>
+<v><i>forniquer</i>            <t>aim:er</t></v>
+<v><i>fortifier</i>            <t>aim:er</t></v>
+<v><i>fossiliser</i>           <t>aim:er</t></v>
+<v><i>fossoyer</i>             <t>netto:yer</t></v>
+<v><i>fouailler</i>            <t>aim:er</t></v>
+<v><i>foudroyer</i>            <t>netto:yer</t></v>
+<v><i>fouetter</i>             <t>aim:er</t></v>
+<v><i>fouger</i>               <t>man:ger</t></v>
+<v><i>fouiller</i>             <t>aim:er</t></v>
+<v><i>fouiner</i>              <t>aim:er</t></v>
+<v><i>fouir</i>                        <t>fin:ir</t></v>
+<v><i>fouler</i>               <t>aim:er</t></v>
+<v><i>fourailler</i>           <t>aim:er</t></v>
+<v><i>fourber</i>              <t>aim:er</t></v>
+<v><i>fourbir</i>              <t>fin:ir</t></v>
+<v><i>fourcher</i>             <t>aim:er</t></v>
+<v><i>fourgonner</i>           <t>aim:er</t></v>
+<v><i>fourguer</i>             <t>aim:er</t></v>
+<v><i>fourmiller</i>           <t>aim:er</t></v>
+<v><i>fournir</i>              <t>fin:ir</t></v>
+<v><i>fourrager</i>            <t>man:ger</t></v>
+<v><i>fourrer</i>              <t>aim:er</t></v>
+<v><i>fourvoyer</i>            <t>netto:yer</t></v>
+<v><i>foutre</i>               <t>fou:tre</t></v>
+<v><i>fracasser</i>            <t>aim:er</t></v>
+<v><i>fractionner</i>          <t>aim:er</t></v>
+<v><i>fracturer</i>            <t>aim:er</t></v>
+<v><i>fragiliser</i>           <t>aim:er</t></v>
+<v><i>fragmenter</i>           <t>aim:er</t></v>
+<v><i>fraîchir</i>            <t>fin:ir</t></v>
+<v><i>fraiser</i>              <t>aim:er</t></v>
+<v><i>framboiser</i>           <t>aim:er</t></v>
+<v><i>franchir</i>             <t>fin:ir</t></v>
+<v><i>franciser</i>            <t>aim:er</t></v>
+<v><i>franger</i>              <t>man:ger</t></v>
+<v><i>frapper</i>              <t>aim:er</t></v>
+<v><i>fraterniser</i>          <t>aim:er</t></v>
+<v><i>frauder</i>              <t>aim:er</t></v>
+<v><i>frayer</i>               <t>pa:yer</t></v>
+<v><i>fredonner</i>            <t>aim:er</t></v>
+<v><i>freiner</i>              <t>aim:er</t></v>
+<v><i>frelater</i>             <t>aim:er</t></v>
+<v><i>frémir</i>              <t>fin:ir</t></v>
+<v><i>fréquenter</i>          <t>aim:er</t></v>
+<v><i>fréter</i>              <t>décr:éter</t></v>
+<v><i>frétiller</i>           <t>aim:er</t></v>
+<v><i>fretter</i>              <t>aim:er</t></v>
+<v><i>fricasser</i>            <t>aim:er</t></v>
+<v><i>fricoter</i>             <t>aim:er</t></v>
+<v><i>frictionner</i>          <t>aim:er</t></v>
+<v><i>frigorifier</i>          <t>aim:er</t></v>
+<v><i>frigorifuger</i>         <t>man:ger</t></v>
+<v><i>frimer</i>               <t>aim:er</t></v>
+<v><i>fringuer</i>             <t>aim:er</t></v>
+<v><i>friper</i>               <t>aim:er</t></v>
+<v><i>friponner</i>            <t>aim:er</t></v>
+<v><i>frire</i>                        <t>fri:re</t></v>
+<v><i>friser</i>               <t>aim:er</t></v>
+<v><i>frisotter</i>            <t>aim:er</t></v>
+<v><i>frissonner</i>           <t>aim:er</t></v>
+<v><i>fritter</i>              <t>aim:er</t></v>
+<v><i>froidir</i>              <t>fin:ir</t></v>
+<v><i>froisser</i>             <t>aim:er</t></v>
+<v><i>frôler</i>              <t>aim:er</t></v>
+<v><i>froncer</i>              <t>pla:cer</t></v>
+<v><i>fronder</i>              <t>aim:er</t></v>
+<v><i>frotter</i>              <t>aim:er</t></v>
+<v><i>frouer</i>               <t>aim:er</t></v>
+<v><i>froufrouter</i>          <t>aim:er</t></v>
+<v><i>fructifier</i>           <t>aim:er</t></v>
+<v><i>frusquer</i>             <t>aim:er</t></v>
+<v><i>frustrer</i>             <t>aim:er</t></v>
+<v><i>fuguer</i>               <t>aim:er</t></v>
+<v><i>fuir</i>                 <t>fu:ir</t></v>
+<v><i>fulgurer</i>             <t>aim:er</t></v>
+<v><i>fulminer</i>             <t>aim:er</t></v>
+<v><i>fumer</i>                        <t>aim:er</t></v>
+<v><i>fumeronner</i>           <t>aim:er</t></v>
+<v><i>fumiger</i>              <t>man:ger</t></v>
+<v><i>fureter</i>              <t>ach:eter</t></v>
+<v><i>fuseler</i>              <t>app:eler</t></v>
+<v><i>fuser</i>                        <t>aim:er</t></v>
+<v><i>fusiller</i>             <t>aim:er</t></v>
+<v><i>fusionner</i>            <t>aim:er</t></v>
+<v><i>fustiger</i>             <t>man:ger</t></v>
+<v><i>gabionner</i>            <t>aim:er</t></v>
+<v><i>gâcher</i>              <t>aim:er</t></v>
+<v><i>gadgétiser</i>          <t>aim:er</t></v>
+<v><i>gaffer</i>               <t>aim:er</t></v>
+<v><i>gager</i>                        <t>man:ger</t></v>
+<v><i>gagner</i>               <t>aim:er</t></v>
+<v><i>gainer</i>               <t>aim:er</t></v>
+<v><i>galber</i>               <t>aim:er</t></v>
+<v><i>galipoter</i>            <t>aim:er</t></v>
+<v><i>galonner</i>             <t>aim:er</t></v>
+<v><i>galoper</i>              <t>aim:er</t></v>
+<v><i>galvaniser</i>           <t>aim:er</t></v>
+<v><i>galvauder</i>            <t>aim:er</t></v>
+<v><i>gambader</i>             <t>aim:er</t></v>
+<v><i>gamberger</i>            <t>man:ger</t></v>
+<v><i>gambiller</i>            <t>aim:er</t></v>
+<v><i>gaminer</i>              <t>aim:er</t></v>
+<v><i>gangrener</i>            <t>m:ener</t></v>
+<v><i>ganser</i>               <t>aim:er</t></v>
+<v><i>ganter</i>               <t>aim:er</t></v>
+<v><i>garancer</i>             <t>pla:cer</t></v>
+<v><i>garantir</i>             <t>fin:ir</t></v>
+<v><i>garder</i>               <t>aim:er</t></v>
+<v><i>garer</i>                        <t>aim:er</t></v>
+<v><i>gargariser</i>           <t>aim:er</t></v>
+<v><i>gargoter</i>             <t>aim:er</t></v>
+<v><i>gargouiller</i>          <t>aim:er</t></v>
+<v><i>garnir</i>               <t>fin:ir</t></v>
+<v><i>garrotter</i>            <t>aim:er</t></v>
+<v><i>gasconner</i>            <t>aim:er</t></v>
+<v><i>gaspiller</i>            <t>aim:er</t></v>
+<v><i>gâter</i>                       <t>aim:er</t></v>
+<v><i>gâtifier</i>            <t>aim:er</t></v>
+<v><i>gauchir</i>              <t>fin:ir</t></v>
+<v><i>gauchiser</i>            <t>aim:er</t></v>
+<v><i>gaufrer</i>              <t>aim:er</t></v>
+<v><i>gauler</i>               <t>aim:er</t></v>
+<v><i>gausser</i>              <t>aim:er</t></v>
+<v><i>gaver</i>                        <t>aim:er</t></v>
+<v><i>gazéifier</i>           <t>aim:er</t></v>
+<v><i>gazer</i>                        <t>aim:er</t></v>
+<v><i>gazonner</i>             <t>aim:er</t></v>
+<v><i>gazouiller</i>           <t>aim:er</t></v>
+<v><i>geindre</i>              <t>crai:ndre</t></v>
+<v><i>gélatiner</i>           <t>aim:er</t></v>
+<v><i>gélatiniser</i>         <t>aim:er</t></v>
+<v><i>geler</i>                        <t>p:eler</t></v>
+<v><i>gélifier</i>            <t>aim:er</t></v>
+<v><i>géminer</i>             <t>aim:er</t></v>
+<v><i>gémir</i>                       <t>fin:ir</t></v>
+<v><i>gemmer</i>               <t>aim:er</t></v>
+<v><i>gendarmer</i>            <t>aim:er</t></v>
+<v><i>généraliser</i>                <t>aim:er</t></v>
+<v><i>générer</i>            <t>réf:érer</t></v>
+<v><i>gêner</i>                       <t>aim:er</t></v>
+<v><i>géométriser</i>                <t>aim:er</t></v>
+<v><i>gerber</i>               <t>aim:er</t></v>
+<v><i>gercer</i>               <t>pla:cer</t></v>
+<v><i>gérer</i>                       <t>réf:érer</t></v>
+<v><i>germaniser</i>           <t>aim:er</t></v>
+<v><i>germer</i>               <t>aim:er</t></v>
+<v><i>gésir</i>                       <t>g:ésir</t></v>
+<v><i>gesticuler</i>           <t>aim:er</t></v>
+<v><i>giboyer</i>              <t>netto:yer</t></v>
+<v><i>gicler</i>               <t>aim:er</t></v>
+<v><i>gifler</i>               <t>aim:er</t></v>
+<v><i>gigoter</i>              <t>aim:er</t></v>
+<v><i>gironner</i>             <t>aim:er</t></v>
+<v><i>girouetter</i>           <t>aim:er</t></v>
+<v><i>gîter</i>                       <t>aim:er</t></v>
+<v><i>givrer</i>               <t>aim:er</t></v>
+<v><i>glacer</i>               <t>pla:cer</t></v>
+<v><i>glairer</i>              <t>aim:er</t></v>
+<v><i>glaiser</i>              <t>aim:er</t></v>
+<v><i>glander</i>              <t>aim:er</t></v>
+<v><i>glandouiller</i>         <t>aim:er</t></v>
+<v><i>glaner</i>               <t>aim:er</t></v>
+<v><i>glapir</i>               <t>fin:ir</t></v>
+<v><i>glatir</i>               <t>fin:ir</t></v>
+<v><i>glavioter</i>            <t>aim:er</t></v>
+<v><i>glaviotter</i>           <t>aim:er</t></v>
+<v><i>glisser</i>              <t>aim:er</t></v>
+<v><i>globaliser</i>           <t>aim:er</t></v>
+<v><i>glorifier</i>            <t>aim:er</t></v>
+<v><i>gloser</i>               <t>aim:er</t></v>
+<v><i>glouglouter</i>          <t>aim:er</t></v>
+<v><i>glousser</i>             <t>aim:er</t></v>
+<v><i>glycériner</i>          <t>aim:er</t></v>
+<v><i>goberger</i>             <t>man:ger</t></v>
+<v><i>gober</i>                        <t>aim:er</t></v>
+<v><i>gobeter</i>              <t>j:eter</t></v>
+<v><i>gobichonner</i>          <t>aim:er</t></v>
+<v><i>godailler</i>            <t>aim:er</t></v>
+<v><i>goder</i>                        <t>aim:er</t></v>
+<v><i>godiller</i>             <t>aim:er</t></v>
+<v><i>godronner</i>            <t>aim:er</t></v>
+<v><i>goguenarder</i>          <t>aim:er</t></v>
+<v><i>goinfrer</i>             <t>aim:er</t></v>
+<v><i>gominer</i>              <t>aim:er</t></v>
+<v><i>gommer</i>               <t>aim:er</t></v>
+<v><i>gonder</i>               <t>aim:er</t></v>
+<v><i>gondoler</i>             <t>aim:er</t></v>
+<v><i>gonfler</i>              <t>aim:er</t></v>
+<v><i>gorger</i>               <t>man:ger</t></v>
+<v><i>gosser</i>               <t>aim:er</t></v>
+<v><i>gouacher</i>             <t>aim:er</t></v>
+<v><i>gouailler</i>            <t>aim:er</t></v>
+<v><i>goudronner</i>           <t>aim:er</t></v>
+<v><i>goujonner</i>            <t>aim:er</t></v>
+<v><i>goupiller</i>            <t>aim:er</t></v>
+<v><i>goupillonner</i>         <t>aim:er</t></v>
+<v><i>gourer</i>               <t>aim:er</t></v>
+<v><i>gourmander</i>           <t>aim:er</t></v>
+<v><i>gourmer</i>              <t>aim:er</t></v>
+<v><i>goûter</i>              <t>aim:er</t></v>
+<v><i>goutter</i>              <t>aim:er</t></v>
+<v><i>gouverner</i>            <t>aim:er</t></v>
+<v><i>gracier</i>              <t>aim:er</t></v>
+<v><i>graduer</i>              <t>aim:er</t></v>
+<v><i>grailler</i>             <t>aim:er</t></v>
+<v><i>graillonner</i>          <t>aim:er</t></v>
+<v><i>grainer</i>              <t>aim:er</t></v>
+<v><i>graisser</i>             <t>aim:er</t></v>
+<v><i>grandir</i>              <t>fin:ir</t></v>
+<v><i>graniter</i>             <t>aim:er</t></v>
+<v><i>granuler</i>             <t>aim:er</t></v>
+<v><i>graphiter</i>            <t>aim:er</t></v>
+<v><i>grappiller</i>           <t>aim:er</t></v>
+<v><i>grasseyer</i>            <t>grasse:yer</t></v>
+<v><i>graticuler</i>           <t>aim:er</t></v>
+<v><i>gratifier</i>            <t>aim:er</t></v>
+<v><i>gratiner</i>             <t>aim:er</t></v>
+<v><i>gratter</i>              <t>aim:er</t></v>
+<v><i>graver</i>               <t>aim:er</t></v>
+<v><i>gravillonner</i>         <t>aim:er</t></v>
+<v><i>gravir</i>               <t>fin:ir</t></v>
+<v><i>graviter</i>             <t>aim:er</t></v>
+<v><i>gréciser</i>            <t>aim:er</t></v>
+<v><i>grecquer</i>             <t>aim:er</t></v>
+<v><i>gréer</i>                       <t>aim:er</t></v>
+<v><i>greffer</i>              <t>aim:er</t></v>
+<v><i>grêler</i>              <t>aim:er</t></v>
+<v><i>grelotter</i>            <t>aim:er</t></v>
+<v><i>grenailler</i>           <t>aim:er</t></v>
+<v><i>greneler</i>             <t>app:eler</t></v>
+<v><i>grener</i>               <t>m:ener</t></v>
+<v><i>grenouiller</i>          <t>aim:er</t></v>
+<v><i>grésiller</i>           <t>aim:er</t></v>
+<v><i>grever</i>               <t>l:ever</t></v>
+<v><i>gribouiller</i>          <t>aim:er</t></v>
+<v><i>griffer</i>              <t>aim:er</t></v>
+<v><i>griffonner</i>           <t>aim:er</t></v>
+<v><i>grigner</i>              <t>aim:er</t></v>
+<v><i>grignoter</i>            <t>aim:er</t></v>
+<v><i>grillager</i>            <t>man:ger</t></v>
+<v><i>griller</i>              <t>aim:er</t></v>
+<v><i>grimacer</i>             <t>pla:cer</t></v>
+<v><i>grimer</i>               <t>aim:er</t></v>
+<v><i>grimper</i>              <t>aim:er</t></v>
+<v><i>grincer</i>              <t>pla:cer</t></v>
+<v><i>grincher</i>             <t>aim:er</t></v>
+<v><i>gringuer</i>             <t>aim:er</t></v>
+<v><i>gripper</i>              <t>aim:er</t></v>
+<v><i>grisailler</i>           <t>aim:er</t></v>
+<v><i>griser</i>               <t>aim:er</t></v>
+<v><i>grisoler</i>             <t>aim:er</t></v>
+<v><i>grisoller</i>            <t>aim:er</t></v>
+<v><i>grisonner</i>            <t>aim:er</t></v>
+<v><i>griveler</i>             <t>app:eler</t></v>
+<v><i>grognasser</i>           <t>aim:er</t></v>
+<v><i>grogner</i>              <t>aim:er</t></v>
+<v><i>grognonner</i>           <t>aim:er</t></v>
+<v><i>grommeler</i>            <t>app:eler</t></v>
+<v><i>gronder</i>              <t>aim:er</t></v>
+<v><i>grossir</i>              <t>fin:ir</t></v>
+<v><i>grossoyer</i>            <t>netto:yer</t></v>
+<v><i>grouiller</i>            <t>aim:er</t></v>
+<v><i>grouper</i>              <t>aim:er</t></v>
+<v><i>gruger</i>               <t>man:ger</t></v>
+<v><i>grumeler</i>             <t>app:eler</t></v>
+<v><i>guéer</i>                       <t>aim:er</t></v>
+<v><i>guérir</i>              <t>fin:ir</t></v>
+<v><i>guerroyer</i>            <t>netto:yer</t></v>
+<v><i>guêtrer</i>             <t>aim:er</t></v>
+<v><i>guetter</i>              <t>aim:er</t></v>
+<v><i>gueuler</i>              <t>aim:er</t></v>
+<v><i>gueuletonner</i>         <t>aim:er</t></v>
+<v><i>gueuser</i>              <t>aim:er</t></v>
+<v><i>guider</i>               <t>aim:er</t></v>
+<v><i>guigner</i>              <t>aim:er</t></v>
+<v><i>guillemeter</i>          <t>j:eter</t></v>
+<v><i>guillocher</i>           <t>aim:er</t></v>
+<v><i>guillotiner</i>          <t>aim:er</t></v>
+<v><i>guincher</i>             <t>aim:er</t></v>
+<v><i>guinder</i>              <t>aim:er</t></v>
+<v><i>guiper</i>               <t>aim:er</t></v>
+<v><i>habiliter</i>            <t>aim:er</t></v>
+<v><i>habiller</i>             <t>aim:er</t></v>
+<v><i>habiter</i>              <t>aim:er</t></v>
+<v><i>habituer</i>             <t>aim:er</t></v>
+<v><i>habler</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hacher</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hachurer</i>             <t>aim:er</t> <aspirate-h/> </v>
+<v><i>haïr</i>                        <t>ha:ïr</t> <aspirate-h/> </v>
+<v><i>haler</i>                        <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hâler</i>                       <t>aim:er</t> <aspirate-h/> </v>
+<v><i>haleter</i>              <t>ach:eter</t> <aspirate-h/> </v>
+<v><i>halluciner</i>           <t>aim:er</t></v>
+<v><i>hameçonner</i>          <t>aim:er</t></v>
+<v><i>hancher</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>handicaper</i>           <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hannetonner</i>          <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hanter</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>happer</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>haranguer</i>            <t>aim:er</t> <aspirate-h/> </v>
+<v><i>harasser</i>             <t>aim:er</t> <aspirate-h/> </v>
+<v><i>harceler</i>             <t>harc:eler</t> <aspirate-h/> </v>
+<v><i>harder</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>harmoniser</i>           <t>aim:er</t></v>
+<v><i>harnacher</i>            <t>aim:er</t> <aspirate-h/> </v>
+<v><i>harpailler</i>           <t>aim:er</t> <aspirate-h/> </v>
+<v><i>harper</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>harponner</i>            <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hasarder</i>             <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hâter</i>                       <t>aim:er</t> <aspirate-h/> </v>
+<v><i>haubaner</i>             <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hausser</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>haver</i>                        <t>aim:er</t> <aspirate-h/> </v>
+<v><i>havir</i>                        <t>fin:ir</t> <aspirate-h/> </v>
+<v><i>héberger</i>            <t>man:ger</t></v>
+<v><i>hébéter</i>            <t>héb:éter</t></v>
+<v><i>hébraïser</i>          <t>aim:er</t></v>
+<v><i>héler</i>                       <t>rév:éler</t> <aspirate-h/> </v>
+<v><i>helléniser</i>          <t>aim:er</t></v>
+<v><i>hennir</i>               <t>fin:ir</t> <aspirate-h/> </v>
+<v><i>herbager</i>             <t>man:ger</t></v>
+<v><i>herber</i>               <t>aim:er</t></v>
+<v><i>herboriser</i>           <t>aim:er</t></v>
+<v><i>hercher</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hérisser</i>            <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hérissonner</i>         <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hériter</i>             <t>aim:er</t></v>
+<v><i>herscher</i>             <t>aim:er</t> <aspirate-h/> </v>
+<v><i>herser</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hésiter</i>             <t>aim:er</t></v>
+<v><i>heurter</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hiberner</i>             <t>aim:er</t></v>
+<v><i>hiérarchiser</i>                <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hisser</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>historier</i>            <t>aim:er</t></v>
+<v><i>hiverner</i>             <t>aim:er</t></v>
+<v><i>hocher</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>homogénéifier</i>              <t>aim:er</t></v>
+<v><i>homogénéiser</i>               <t>aim:er</t></v>
+<v><i>homologuer</i>           <t>aim:er</t></v>
+<v><i>hongrer</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hongroyer</i>            <t>netto:yer</t> <aspirate-h/> </v>
+<v><i>honnir</i>               <t>fin:ir</t> <aspirate-h/> </v>
+<v><i>honorer</i>              <t>aim:er</t></v>
+<v><i>hoqueter</i>             <t>j:eter</t> <aspirate-h/> </v>
+<v><i>hormoner</i>             <t>aim:er</t></v>
+<v><i>horrifier</i>            <t>aim:er</t></v>
+<v><i>horripiler</i>           <t>aim:er</t></v>
+<v><i>hospitaliser</i>         <t>aim:er</t></v>
+<v><i>hotter</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>houblonner</i>           <t>aim:er</t> <aspirate-h/> </v>
+<v><i>houer</i>                        <t>aim:er</t> <aspirate-h/> </v>
+<v><i>houpper</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hourder</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hourdir</i>              <t>fin:ir</t> <aspirate-h/> </v>
+<v><i>houspiller</i>           <t>aim:er</t> <aspirate-h/> </v>
+<v><i>housser</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>houssiner</i>            <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hucher</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>huer</i>                 <t>aim:er</t> <aspirate-h/> </v>
+<v><i>huiler</i>               <t>aim:er</t></v>
+<v><i>hululer</i>              <t>aim:er</t> <aspirate-h/> </v>
+<v><i>humaniser</i>            <t>aim:er</t></v>
+<v><i>humecter</i>             <t>aim:er</t></v>
+<v><i>humer</i>                        <t>aim:er</t> <aspirate-h/> </v>
+<v><i>humidifier</i>           <t>aim:er</t></v>
+<v><i>humilier</i>             <t>aim:er</t></v>
+<v><i>hurler</i>               <t>aim:er</t> <aspirate-h/> </v>
+<v><i>hybrider</i>             <t>aim:er</t></v>
+<v><i>hydrater</i>             <t>aim:er</t></v>
+<v><i>hydrofuger</i>           <t>man:ger</t></v>
+<v><i>hydrogéner</i>          <t>ali:éner</t></v>
+<v><i>hydrolyser</i>           <t>aim:er</t></v>
+<v><i>hypnotiser</i>           <t>aim:er</t></v>
+<v><i>hypostasier</i>          <t>aim:er</t></v>
+<v><i>hypothéquer</i>         <t>diss:équer</t></v>
+<v><i>idéaliser</i>           <t>aim:er</t></v>
+<v><i>identifier</i>           <t>aim:er</t></v>
+<v><i>idéologiser</i>         <t>aim:er</t></v>
+<v><i>idiotifier</i>           <t>aim:er</t></v>
+<v><i>idiotiser</i>            <t>aim:er</t></v>
+<v><i>idolâtrer</i>           <t>aim:er</t></v>
+<v><i>ignifuger</i>            <t>man:ger</t></v>
+<v><i>ignorer</i>              <t>aim:er</t></v>
+<v><i>illuminer</i>            <t>aim:er</t></v>
+<v><i>illusionner</i>          <t>aim:er</t></v>
+<v><i>illustrer</i>            <t>aim:er</t></v>
+<v><i>imager</i>               <t>man:ger</t></v>
+<v><i>imaginer</i>             <t>aim:er</t></v>
+<v><i>imbiber</i>              <t>aim:er</t></v>
+<v><i>imbriquer</i>            <t>aim:er</t></v>
+<v><i>imiter</i>               <t>aim:er</t></v>
+<v><i>immatérialiser</i>      <t>aim:er</t></v>
+<v><i>immatriculer</i>         <t>aim:er</t></v>
+<v><i>immerger</i>             <t>man:ger</t></v>
+<v><i>immigrer</i>             <t>aim:er</t></v>
+<v><i>immiscer</i>             <t>pla:cer</t></v>
+<v><i>immobiliser</i>          <t>aim:er</t></v>
+<v><i>immoler</i>              <t>aim:er</t></v>
+<v><i>immortaliser</i>         <t>aim:er</t></v>
+<v><i>immuniser</i>            <t>aim:er</t></v>
+<v><i>impacter</i>             <t>aim:er</t></v>
+<v><i>impartir</i>             <t>fin:ir</t></v>
+<v><i>impatienter</i>          <t>aim:er</t></v>
+<v><i>impatroniser</i>         <t>aim:er</t></v>
+<v><i>imperméabiliser</i>     <t>aim:er</t></v>
+<v><i>impétrer</i>            <t>imp:étrer</t></v>
+<v><i>implanter</i>            <t>aim:er</t></v>
+<v><i>implémenter</i>         <t>aim:er</t></v>
+<v><i>impliquer</i>            <t>aim:er</t></v>
+<v><i>implorer</i>             <t>aim:er</t></v>
+<v><i>imploser</i>             <t>aim:er</t></v>
+<v><i>importer</i>             <t>aim:er</t></v>
+<v><i>importuner</i>           <t>aim:er</t></v>
+<v><i>imposer</i>              <t>aim:er</t></v>
+<v><i>imprégner</i>           <t>r:égner</t></v>
+<v><i>impressionner</i>                <t>aim:er</t></v>
+<v><i>imprimer</i>             <t>aim:er</t></v>
+<v><i>improuver</i>            <t>aim:er</t></v>
+<v><i>improviser</i>           <t>aim:er</t></v>
+<v><i>impulser</i>             <t>aim:er</t></v>
+<v><i>imputer</i>              <t>aim:er</t></v>
+<v><i>inaugurer</i>            <t>aim:er</t></v>
+<v><i>incarcérer</i>          <t>réf:érer</t></v>
+<v><i>incarner</i>             <t>aim:er</t></v>
+<v><i>incendier</i>            <t>aim:er</t></v>
+<v><i>incinérer</i>           <t>réf:érer</t></v>
+<v><i>inciser</i>              <t>aim:er</t></v>
+<v><i>inciter</i>              <t>aim:er</t></v>
+<v><i>incliner</i>             <t>aim:er</t></v>
+<v><i>inclure</i>              <t>incl:ure</t></v>
+<v><i>incomber</i>             <t>aim:er</t></v>
+<v><i>incommoder</i>           <t>aim:er</t></v>
+<v><i>incorporer</i>           <t>aim:er</t></v>
+<v><i>incrémenter</i>         <t>aim:er</t></v>
+<v><i>incriminer</i>           <t>aim:er</t></v>
+<v><i>incruster</i>            <t>aim:er</t></v>
+<v><i>incuber</i>              <t>aim:er</t></v>
+<v><i>inculper</i>             <t>aim:er</t></v>
+<v><i>inculquer</i>            <t>aim:er</t></v>
+<v><i>incurver</i>             <t>aim:er</t></v>
+<v><i>indemniser</i>           <t>aim:er</t></v>
+<v><i>indexer</i>              <t>aim:er</t></v>
+<v><i>indicer</i>              <t>pla:cer</t></v>
+<v><i>indifférer</i>          <t>réf:érer</t></v>
+<v><i>indigner</i>             <t>aim:er</t></v>
+<v><i>indiquer</i>             <t>aim:er</t></v>
+<v><i>indisposer</i>           <t>aim:er</t></v>
+<v><i>individualiser</i>       <t>aim:er</t></v>
+<v><i>induire</i>              <t>condui:re</t></v>
+<v><i>indulgencier</i>         <t>aim:er</t></v>
+<v><i>indurer</i>              <t>aim:er</t></v>
+<v><i>industrialiser</i>       <t>aim:er</t></v>
+<v><i>infantiliser</i>         <t>aim:er</t></v>
+<v><i>infatuer</i>             <t>aim:er</t></v>
+<v><i>infecter</i>             <t>aim:er</t></v>
+<v><i>inféoder</i>            <t>aim:er</t></v>
+<v><i>inférer</i>             <t>réf:érer</t></v>
+<v><i>inférioriser</i>                <t>aim:er</t></v>
+<v><i>infester</i>             <t>aim:er</t></v>
+<v><i>infiltrer</i>            <t>aim:er</t></v>
+<v><i>infirmer</i>             <t>aim:er</t></v>
+<v><i>infléchir</i>           <t>fin:ir</t></v>
+<v><i>infliger</i>             <t>man:ger</t></v>
+<v><i>influencer</i>           <t>pla:cer</t></v>
+<v><i>influer</i>              <t>aim:er</t></v>
+<v><i>informatiser</i>         <t>aim:er</t></v>
+<v><i>informer</i>             <t>aim:er</t></v>
+<v><i>infuser</i>              <t>aim:er</t></v>
+<v><i>ingénier</i>            <t>aim:er</t></v>
+<v><i>ingérer</i>             <t>réf:érer</t></v>
+<v><i>ingurgiter</i>           <t>aim:er</t></v>
+<v><i>inhaler</i>              <t>aim:er</t></v>
+<v><i>inhiber</i>              <t>aim:er</t></v>
+<v><i>inhumer</i>              <t>aim:er</t></v>
+<v><i>initialiser</i>          <t>aim:er</t></v>
+<v><i>initier</i>              <t>aim:er</t></v>
+<v><i>injecter</i>             <t>aim:er</t></v>
+<v><i>injurier</i>             <t>aim:er</t></v>
+<v><i>innerver</i>             <t>aim:er</t></v>
+<v><i>innocenter</i>           <t>aim:er</t></v>
+<v><i>innover</i>              <t>aim:er</t></v>
+<v><i>inoculer</i>             <t>aim:er</t></v>
+<v><i>inonder</i>              <t>aim:er</t></v>
+<v><i>inquiéter</i>           <t>décr:éter</t></v>
+<v><i>inscrire</i>             <t>écri:re</t></v>
+<v><i>insculper</i>            <t>aim:er</t></v>
+<v><i>inséminer</i>           <t>aim:er</t></v>
+<v><i>insensibiliser</i>       <t>aim:er</t></v>
+<v><i>insérer</i>             <t>réf:érer</t></v>
+<v><i>insinuer</i>             <t>aim:er</t></v>
+<v><i>insister</i>             <t>aim:er</t></v>
+<v><i>insoler</i>              <t>aim:er</t></v>
+<v><i>insolubiliser</i>                <t>aim:er</t></v>
+<v><i>insonoriser</i>          <t>aim:er</t></v>
+<v><i>inspecter</i>            <t>aim:er</t></v>
+<v><i>inspirer</i>             <t>aim:er</t></v>
+<v><i>installer</i>            <t>aim:er</t></v>
+<v><i>instaurer</i>            <t>aim:er</t></v>
+<v><i>instiguer</i>            <t>aim:er</t></v>
+<v><i>instiller</i>            <t>aim:er</t></v>
+<v><i>instituer</i>            <t>aim:er</t></v>
+<v><i>institutionnaliser</i>   <t>aim:er</t></v>
+<v><i>instruire</i>            <t>condui:re</t></v>
+<v><i>instrumenter</i>         <t>aim:er</t></v>
+<v><i>insuffler</i>            <t>aim:er</t></v>
+<v><i>insulter</i>             <t>aim:er</t></v>
+<v><i>insurger</i>             <t>man:ger</t></v>
+<v><i>intailler</i>            <t>aim:er</t></v>
+<v><i>intégrer</i>            <t>int:égrer</t></v>
+<v><i>intellectualiser</i>     <t>aim:er</t></v>
+<v><i>intensifier</i>          <t>aim:er</t></v>
+<v><i>intenter</i>             <t>aim:er</t></v>
+<v><i>interagir</i>            <t>fin:ir</t></v>
+<v><i>interagiter</i>          <t>aim:er</t></v>
+<v><i>intercaler</i>           <t>aim:er</t></v>
+<v><i>intercéder</i>          <t>c:éder</t></v>
+<v><i>intercepter</i>          <t>aim:er</t></v>
+<v><i>interclasser</i>         <t>aim:er</t></v>
+<v><i>interconnecter</i>       <t>aim:er</t></v>
+<v><i>interdire</i>            <t>interd:ire</t></v>
+<v><i>intéresser</i>          <t>aim:er</t></v>
+<v><i>interférer</i>          <t>réf:érer</t></v>
+<v><i>interfolier</i>          <t>aim:er</t></v>
+<v><i>intérioriser</i>                <t>aim:er</t></v>
+<v><i>interjeter</i>           <t>j:eter</t></v>
+<v><i>interligner</i>          <t>aim:er</t></v>
+<v><i>interloquer</i>          <t>aim:er</t></v>
+<v><i>internationaliser</i>    <t>aim:er</t></v>
+<v><i>interner</i>             <t>aim:er</t></v>
+<v><i>interpeler</i>           <t>app:eler</t></v>
+<v><i>interpeller</i>          <t>aim:er</t></v>
+<v><i>interpénétrer</i>              <t>imp:étrer</t></v>
+<v><i>interpoler</i>           <t>aim:er</t></v>
+<v><i>interposer</i>           <t>aim:er</t></v>
+<v><i>interpréter</i>         <t>décr:éter</t></v>
+<v><i>interroger</i>           <t>man:ger</t></v>
+<v><i>interrompre</i>          <t>rom:pre</t></v>
+<v><i>intersecter</i>          <t>aim:er</t></v>
+<v><i>intervenir</i>           <t>t:enir</t></v>
+<v><i>intervertir</i>          <t>fin:ir</t></v>
+<v><i>interviewer</i>          <t>aim:er</t></v>
+<v><i>intimer</i>              <t>aim:er</t></v>
+<v><i>intimider</i>            <t>aim:er</t></v>
+<v><i>intituler</i>            <t>aim:er</t></v>
+<v><i>intoxiquer</i>           <t>aim:er</t></v>
+<v><i>intriguer</i>            <t>aim:er</t></v>
+<v><i>intriquer</i>            <t>aim:er</t></v>
+<v><i>introbvertir</i>         <t>fin:ir</t></v>
+<v><i>introduire</i>           <t>condui:re</t></v>
+<v><i>introjeter</i>           <t>j:eter</t></v>
+<v><i>introniser</i>           <t>aim:er</t></v>
+<v><i>introspecter</i>         <t>aim:er</t></v>
+<v><i>intuber</i>              <t>aim:er</t></v>
+<v><i>intuiter</i>             <t>aim:er</t></v>
+<v><i>inutiliser</i>           <t>aim:er</t></v>
+<v><i>invaginer</i>            <t>aim:er</t></v>
+<v><i>invalider</i>            <t>aim:er</t></v>
+<v><i>invectiver</i>           <t>aim:er</t></v>
+<v><i>inventer</i>             <t>aim:er</t></v>
+<v><i>inventorier</i>          <t>aim:er</t></v>
+<v><i>inverser</i>             <t>aim:er</t></v>
+<v><i>invertir</i>             <t>fin:ir</t></v>
+<v><i>investiguer</i>          <t>aim:er</t></v>
+<v><i>investir</i>             <t>fin:ir</t></v>
+<v><i>invétérer</i>          <t>réf:érer</t></v>
+<v><i>inviter</i>              <t>aim:er</t></v>
+<v><i>invoquer</i>             <t>aim:er</t></v>
+<v><i>ioder</i>                        <t>aim:er</t></v>
+<v><i>iodler</i>               <t>aim:er</t></v>
+<v><i>ioniser</i>              <t>aim:er</t></v>
+<v><i>iouler</i>               <t>aim:er</t></v>
+<v><i>iraniser</i>             <t>aim:er</t></v>
+<v><i>iriser</i>               <t>aim:er</t></v>
+<v><i>ironiser</i>             <t>aim:er</t></v>
+<v><i>irradier</i>             <t>aim:er</t></v>
+<v><i>irréaliser</i>          <t>aim:er</t></v>
+<v><i>irriguer</i>             <t>aim:er</t></v>
+<v><i>irriter</i>              <t>aim:er</t></v>
+<v><i>irruer</i>               <t>aim:er</t></v>
+<v><i>ischémier</i>           <t>aim:er</t></v>
+<v><i>islamiser</i>            <t>aim:er</t></v>
+<v><i>isoler</i>               <t>aim:er</t></v>
+<v><i>isomériser</i>          <t>aim:er</t></v>
+<v><i>italianiser</i>          <t>aim:er</t></v>
+<v><i>itérer</i>              <t>réf:érer</t></v>
+<v><i>ivrogner</i>             <t>aim:er</t></v>
+<v><i>ixer</i>                 <t>aim:er</t></v>
+<v><i>jabler</i>               <t>aim:er</t></v>
+<v><i>jaboter</i>              <t>aim:er</t></v>
+<v><i>jabouiner</i>            <t>aim:er</t></v>
+<v><i>jacasser</i>             <t>aim:er</t></v>
+<v><i>jachérer</i>            <t>réf:érer</t></v>
+<v><i>jacter</i>               <t>aim:er</t></v>
+<v><i>jaffer</i>               <t>aim:er</t></v>
+<v><i>jaillir</i>              <t>fin:ir</t></v>
+<v><i>jalonner</i>             <t>aim:er</t></v>
+<v><i>jalouser</i>             <t>aim:er</t></v>
+<v><i>jamber</i>               <t>aim:er</t></v>
+<v><i>jambonner</i>            <t>aim:er</t></v>
+<v><i>japoniser</i>            <t>aim:er</t></v>
+<v><i>japonner</i>             <t>aim:er</t></v>
+<v><i>japper</i>               <t>aim:er</t></v>
+<v><i>jardiner</i>             <t>aim:er</t></v>
+<v><i>jargauder</i>            <t>aim:er</t></v>
+<v><i>jargonner</i>            <t>aim:er</t></v>
+<v><i>jargouiner</i>           <t>aim:er</t></v>
+<v><i>jarreter</i>             <t>ach:eter</t></v>
+<v><i>jaser</i>                        <t>aim:er</t></v>
+<v><i>jasper</i>               <t>aim:er</t></v>
+<v><i>jaspiller</i>            <t>aim:er</t></v>
+<v><i>jaspiner</i>             <t>aim:er</t></v>
+<v><i>jasser</i>               <t>aim:er</t></v>
+<v><i>jauger</i>               <t>man:ger</t></v>
+<v><i>jaunir</i>               <t>fin:ir</t></v>
+<v><i>javeler</i>              <t>app:eler</t></v>
+<v><i>javelliser</i>           <t>aim:er</t></v>
+<v><i>jérémiader</i>         <t>aim:er</t></v>
+<v><i>jérémier</i>           <t>aim:er</t></v>
+<v><i>jerker</i>               <t>aim:er</t></v>
+<v><i>jeter</i>                        <t>j:eter</t></v>
+<v><i>jeûner</i>              <t>aim:er</t></v>
+<v><i>jinguer</i>              <t>aim:er</t></v>
+<v><i>jobarder</i>             <t>aim:er</t></v>
+<v><i>jodler</i>               <t>aim:er</t></v>
+<v><i>jogger</i>               <t>aim:er</t></v>
+<v><i>joindre</i>              <t>crai:ndre</t></v>
+<v><i>jointer</i>              <t>aim:er</t></v>
+<v><i>jointoyer</i>            <t>netto:yer</t></v>
+<v><i>joncer</i>               <t>pla:cer</t></v>
+<v><i>joncher</i>              <t>aim:er</t></v>
+<v><i>jongler</i>              <t>aim:er</t></v>
+<v><i>jouailler</i>            <t>aim:er</t></v>
+<v><i>jouer</i>                        <t>aim:er</t></v>
+<v><i>jouir</i>                        <t>fin:ir</t></v>
+<v><i>journaliser</i>          <t>aim:er</t></v>
+<v><i>jouter</i>               <t>aim:er</t></v>
+<v><i>jouxter</i>              <t>aim:er</t></v>
+<v><i>jubiler</i>              <t>aim:er</t></v>
+<v><i>jucher</i>               <t>aim:er</t></v>
+<v><i>judaïser</i>            <t>aim:er</t></v>
+<v><i>judiciariser</i>         <t>aim:er</t></v>
+<v><i>juger</i>                        <t>man:ger</t></v>
+<v><i>juguler</i>              <t>aim:er</t></v>
+<v><i>jumboïser</i>           <t>aim:er</t></v>
+<v><i>jumeler</i>              <t>app:eler</t></v>
+<v><i>jumper</i>               <t>aim:er</t></v>
+<v><i>juponner</i>             <t>aim:er</t></v>
+<v><i>jurer</i>                        <t>aim:er</t></v>
+<v><i>justifier</i>            <t>aim:er</t></v>
+<v><i>juter</i>                        <t>aim:er</t></v>
+<v><i>juxtaposer</i>           <t>aim:er</t></v>
+<v><i>kaoliniser</i>           <t>aim:er</t></v>
+<v><i>kératiniser</i>         <t>aim:er</t></v>
+<v><i>kibitzer</i>             <t>aim:er</t></v>
+<v><i>kidnapper</i>            <t>aim:er</t></v>
+<v><i>kifer</i>                        <t>aim:er</t></v>
+<v><i>kiffer</i>               <t>aim:er</t></v>
+<v><i>kilométrer</i>          <t>imp:étrer</t></v>
+<v><i>klaxonner</i>            <t>aim:er</t></v>
+<v><i>koter</i>                        <t>aim:er</t></v>
+<v><i>labéliser</i>           <t>aim:er</t></v>
+<v><i>labelliser</i>           <t>aim:er</t></v>
+<v><i>labialiser</i>           <t>aim:er</t></v>
+<v><i>labourer</i>             <t>aim:er</t></v>
+<v><i>lacérer</i>             <t>réf:érer</t></v>
+<v><i>lacer</i>                        <t>pla:cer</t></v>
+<v><i>lâcher</i>              <t>aim:er</t></v>
+<v><i>laïciser</i>            <t>aim:er</t></v>
+<v><i>lainer</i>               <t>aim:er</t></v>
+<v><i>laisser</i>              <t>aim:er</t></v>
+<v><i>laitonner</i>            <t>aim:er</t></v>
+<v><i>laïusser</i>            <t>aim:er</t></v>
+<v><i>lambiner</i>             <t>aim:er</t></v>
+<v><i>lambrisser</i>           <t>aim:er</t></v>
+<v><i>lamenter</i>             <t>aim:er</t></v>
+<v><i>lamer</i>                        <t>aim:er</t></v>
+<v><i>laminer</i>              <t>aim:er</t></v>
+<v><i>lamper</i>               <t>aim:er</t></v>
+<v><i>lancequiner</i>          <t>aim:er</t></v>
+<v><i>lancer</i>               <t>pla:cer</t></v>
+<v><i>lanciner</i>             <t>aim:er</t></v>
+<v><i>langer</i>               <t>man:ger</t></v>
+<v><i>langueter</i>            <t>j:eter</t></v>
+<v><i>langueyer</i>            <t>grasse:yer</t></v>
+<v><i>languir</i>              <t>fin:ir</t></v>
+<v><i>lansquiner</i>           <t>aim:er</t></v>
+<v><i>lanterner</i>            <t>aim:er</t></v>
+<v><i>lantiponner</i>          <t>aim:er</t></v>
+<v><i>laper</i>                        <t>aim:er</t></v>
+<v><i>lapider</i>              <t>aim:er</t></v>
+<v><i>lapidifier</i>           <t>aim:er</t></v>
+<v><i>lapiner</i>              <t>aim:er</t></v>
+<v><i>laquer</i>               <t>aim:er</t></v>
+<v><i>larder</i>               <t>aim:er</t></v>
+<v><i>lardonner</i>            <t>aim:er</t></v>
+<v><i>larguer</i>              <t>aim:er</t></v>
+<v><i>larmer</i>               <t>aim:er</t></v>
+<v><i>larmoyer</i>             <t>netto:yer</t></v>
+<v><i>larronner</i>            <t>aim:er</t></v>
+<v><i>laryngectomiser</i>      <t>aim:er</t></v>
+<v><i>lasser</i>               <t>aim:er</t></v>
+<v><i>latiniser</i>            <t>aim:er</t></v>
+<v><i>latter</i>               <t>aim:er</t></v>
+<v><i>laurer</i>               <t>aim:er</t></v>
+<v><i>laver</i>                        <t>aim:er</t></v>
+<v><i>layer</i>                        <t>pa:yer</t></v>
+<v><i>layonner</i>             <t>aim:er</t></v>
+<v><i>lécher</i>              <t>s:écher</t></v>
+<v><i>léchouiller</i>         <t>aim:er</t></v>
+<v><i>légaliser</i>           <t>aim:er</t></v>
+<v><i>légender</i>            <t>aim:er</t></v>
+<v><i>légiférer</i>          <t>réf:érer</t></v>
+<v><i>légitimer</i>           <t>aim:er</t></v>
+<v><i>léguer</i>              <t>l:éguer</t></v>
+<v><i>lénifier</i>            <t>aim:er</t></v>
+<v><i>léser</i>                       <t>l:éser</t></v>
+<v><i>lésiner</i>             <t>aim:er</t></v>
+<v><i>lessiver</i>             <t>aim:er</t></v>
+<v><i>lester</i>               <t>aim:er</t></v>
+<v><i>lettrer</i>              <t>aim:er</t></v>
+<v><i>leurrer</i>              <t>aim:er</t></v>
+<v><i>lever</i>                        <t>l:ever</t></v>
+<v><i>léviger</i>             <t>man:ger</t></v>
+<v><i>levretter</i>            <t>aim:er</t></v>
+<v><i>lexicaliser</i>          <t>aim:er</t></v>
+<v><i>lézarder</i>            <t>aim:er</t></v>
+<v><i>liaisonner</i>           <t>aim:er</t></v>
+<v><i>liarder</i>              <t>aim:er</t></v>
+<v><i>libeller</i>             <t>aim:er</t></v>
+<v><i>libéraliser</i>         <t>aim:er</t></v>
+<v><i>libérer</i>             <t>réf:érer</t></v>
+<v><i>licencier</i>            <t>aim:er</t></v>
+<v><i>licher</i>               <t>aim:er</t></v>
+<v><i>liciter</i>              <t>aim:er</t></v>
+<v><i>lier</i>                 <t>aim:er</t></v>
+<v><i>lifter</i>               <t>aim:er</t></v>
+<v><i>ligaturer</i>            <t>aim:er</t></v>
+<v><i>ligner</i>               <t>aim:er</t></v>
+<v><i>lignifier</i>            <t>aim:er</t></v>
+<v><i>ligoter</i>              <t>aim:er</t></v>
+<v><i>liguer</i>               <t>aim:er</t></v>
+<v><i>limander</i>             <t>aim:er</t></v>
+<v><i>limer</i>                        <t>aim:er</t></v>
+<v><i>limiter</i>              <t>aim:er</t></v>
+<v><i>limoger</i>              <t>man:ger</t></v>
+<v><i>limoner</i>              <t>aim:er</t></v>
+<v><i>limousiner</i>           <t>aim:er</t></v>
+<v><i>linéariser</i>          <t>aim:er</t></v>
+<v><i>linger</i>               <t>man:ger</t></v>
+<v><i>liquéfier</i>           <t>aim:er</t></v>
+<v><i>liquider</i>             <t>aim:er</t></v>
+<v><i>lire</i>                 <t>l:ire</t></v>
+<v><i>lisérer</i>             <t>réf:érer</t></v>
+<v><i>lisser</i>               <t>aim:er</t></v>
+<v><i>lister</i>               <t>aim:er</t></v>
+<v><i>liter</i>                        <t>aim:er</t></v>
+<v><i>lithographier</i>                <t>aim:er</t></v>
+<v><i>livrer</i>               <t>aim:er</t></v>
+<v><i>lober</i>                        <t>aim:er</t></v>
+<v><i>localiser</i>            <t>aim:er</t></v>
+<v><i>locher</i>               <t>aim:er</t></v>
+<v><i>lock-outer</i>           <t>aim:er</t></v>
+<v><i>lofer</i>                        <t>aim:er</t></v>
+<v><i>loger</i>                        <t>man:ger</t></v>
+<v><i>longer</i>               <t>man:ger</t></v>
+<v><i>loquer</i>               <t>aim:er</t></v>
+<v><i>lorgner</i>              <t>aim:er</t></v>
+<v><i>lotionner</i>            <t>aim:er</t></v>
+<v><i>lotir</i>                        <t>fin:ir</t></v>
+<v><i>louanger</i>             <t>man:ger</t></v>
+<v><i>loucher</i>              <t>aim:er</t></v>
+<v><i>louchir</i>              <t>fin:ir</t></v>
+<v><i>louer</i>                        <t>aim:er</t></v>
+<v><i>loufer</i>               <t>aim:er</t></v>
+<v><i>louper</i>               <t>aim:er</t></v>
+<v><i>lourder</i>              <t>aim:er</t></v>
+<v><i>lourer</i>               <t>aim:er</t></v>
+<v><i>louver</i>               <t>aim:er</t></v>
+<v><i>louveter</i>             <t>j:eter</t></v>
+<v><i>louvoyer</i>             <t>netto:yer</t></v>
+<v><i>lover</i>                        <t>aim:er</t></v>
+<v><i>lubrifier</i>            <t>aim:er</t></v>
+<v><i>luger</i>                        <t>man:ger</t></v>
+<v><i>luire</i>                        <t>lu:ire</t></v>
+<v><i>luncher</i>              <t>aim:er</t></v>
+<v><i>lustrer</i>              <t>aim:er</t></v>
+<v><i>luter</i>                        <t>aim:er</t></v>
+<v><i>lutiner</i>              <t>aim:er</t></v>
+<v><i>lutter</i>               <t>aim:er</t></v>
+<v><i>luxer</i>                        <t>aim:er</t></v>
+<v><i>lyncher</i>              <t>aim:er</t></v>
+<v><i>lyophiliser</i>          <t>aim:er</t></v>
+<v><i>lyser</i>                        <t>aim:er</t></v>
+<v><i>macadamiser</i>          <t>aim:er</t></v>
+<v><i>macérer</i>             <t>réf:érer</t></v>
+<v><i>mâcher</i>              <t>aim:er</t></v>
+<v><i>machicoter</i>           <t>aim:er</t></v>
+<v><i>machiner</i>             <t>aim:er</t></v>
+<v><i>mâchonner</i>           <t>aim:er</t></v>
+<v><i>mâchouiller</i>         <t>aim:er</t></v>
+<v><i>mâchurer</i>            <t>aim:er</t></v>
+<v><i>macler</i>               <t>aim:er</t></v>
+<v><i>maçonner</i>            <t>aim:er</t></v>
+<v><i>macquer</i>              <t>aim:er</t></v>
+<v><i>maculer</i>              <t>aim:er</t></v>
+<v><i>madéfier</i>            <t>aim:er</t></v>
+<v><i>madériser</i>           <t>aim:er</t></v>
+<v><i>madrigaliser</i>         <t>aim:er</t></v>
+<v><i>magasiner</i>            <t>aim:er</t></v>
+<v><i>magner</i>               <t>aim:er</t></v>
+<v><i>magnétiser</i>          <t>aim:er</t></v>
+<v><i>magnétoscoper</i>               <t>aim:er</t></v>
+<v><i>magnifier</i>            <t>aim:er</t></v>
+<v><i>maigrir</i>              <t>fin:ir</t></v>
+<v><i>mailler</i>              <t>aim:er</t></v>
+<v><i>maintenir</i>            <t>t:enir</t></v>
+<v><i>maîtriser</i>           <t>aim:er</t></v>
+<v><i>majorer</i>              <t>aim:er</t></v>
+<v><i>malaxer</i>              <t>aim:er</t></v>
+<v><i>malfaire</i>             <t>f:aire</t></v>
+<v><i>malléabiliser</i>               <t>aim:er</t></v>
+<v><i>malmener</i>             <t>m:ener</t></v>
+<v><i>malter</i>               <t>aim:er</t></v>
+<v><i>maltraiter</i>           <t>aim:er</t></v>
+<v><i>mamelonner</i>           <t>aim:er</t></v>
+<v><i>manager</i>              <t>man:ger</t></v>
+<v><i>manchonner</i>           <t>aim:er</t></v>
+<v><i>mandater</i>             <t>aim:er</t></v>
+<v><i>mander</i>               <t>aim:er</t></v>
+<v><i>mangeotter</i>           <t>aim:er</t></v>
+<v><i>manger</i>               <t>man:ger</t></v>
+<v><i>manier</i>               <t>aim:er</t></v>
+<v><i>manifester</i>           <t>aim:er</t></v>
+<v><i>manigancer</i>           <t>pla:cer</t></v>
+<v><i>manipuler</i>            <t>aim:er</t></v>
+<v><i>mannequiner</i>          <t>aim:er</t></v>
+<v><i>manoeuvrer</i>           <t>aim:er</t></v>
+<v><i>manoquer</i>             <t>aim:er</t></v>
+<v><i>manquer</i>              <t>aim:er</t></v>
+<v><i>mansarder</i>            <t>aim:er</t></v>
+<v><i>manucurer</i>            <t>aim:er</t></v>
+<v><i>manufacturer</i>         <t>aim:er</t></v>
+<v><i>manutentionner</i>       <t>aim:er</t></v>
+<v><i>maquereauter</i>         <t>aim:er</t></v>
+<v><i>maquereller</i>          <t>aim:er</t></v>
+<v><i>maquer</i>               <t>aim:er</t></v>
+<v><i>maquignonner</i>         <t>aim:er</t></v>
+<v><i>maquiller</i>            <t>aim:er</t></v>
+<v><i>marauder</i>             <t>aim:er</t></v>
+<v><i>marbrer</i>              <t>aim:er</t></v>
+<v><i>marchander</i>           <t>aim:er</t></v>
+<v><i>marcher</i>              <t>aim:er</t></v>
+<v><i>marcotter</i>            <t>aim:er</t></v>
+<v><i>margauder</i>            <t>aim:er</t></v>
+<v><i>marger</i>               <t>man:ger</t></v>
+<v><i>marginaliser</i>         <t>aim:er</t></v>
+<v><i>marginer</i>             <t>aim:er</t></v>
+<v><i>margoter</i>             <t>aim:er</t></v>
+<v><i>margotter</i>            <t>aim:er</t></v>
+<v><i>marier</i>               <t>aim:er</t></v>
+<v><i>mariner</i>              <t>aim:er</t></v>
+<v><i>marivauder</i>           <t>aim:er</t></v>
+<v><i>marmiter</i>             <t>aim:er</t></v>
+<v><i>marmonner</i>            <t>aim:er</t></v>
+<v><i>marmoriser</i>           <t>aim:er</t></v>
+<v><i>marmotter</i>            <t>aim:er</t></v>
+<v><i>marner</i>               <t>aim:er</t></v>
+<v><i>maronner</i>             <t>aim:er</t></v>
+<v><i>maroquiner</i>           <t>aim:er</t></v>
+<v><i>maroufler</i>            <t>aim:er</t></v>
+<v><i>marquer</i>              <t>aim:er</t></v>
+<v><i>marqueter</i>            <t>j:eter</t></v>
+<v><i>marrer</i>               <t>aim:er</t></v>
+<v><i>marronner</i>            <t>aim:er</t></v>
+<v><i>marsouiner</i>           <t>aim:er</t></v>
+<v><i>marteler</i>             <t>p:eler</t></v>
+<v><i>martyriser</i>           <t>aim:er</t></v>
+<v><i>marxiser</i>             <t>aim:er</t></v>
+<v><i>masculiniser</i>         <t>aim:er</t></v>
+<v><i>masquer</i>              <t>aim:er</t></v>
+<v><i>massacrer</i>            <t>aim:er</t></v>
+<v><i>masser</i>               <t>aim:er</t></v>
+<v><i>massicoter</i>           <t>aim:er</t></v>
+<v><i>massifier</i>            <t>aim:er</t></v>
+<v><i>mastiquer</i>            <t>aim:er</t></v>
+<v><i>masturber</i>            <t>aim:er</t></v>
+<v><i>matcher</i>              <t>aim:er</t></v>
+<v><i>matelasser</i>           <t>aim:er</t></v>
+<v><i>matérialiser</i>                <t>aim:er</t></v>
+<v><i>mater</i>                        <t>aim:er</t></v>
+<v><i>mâter</i>                       <t>aim:er</t></v>
+<v><i>materner</i>             <t>aim:er</t></v>
+<v><i>materniser</i>           <t>aim:er</t></v>
+<v><i>mathématiser</i>                <t>aim:er</t></v>
+<v><i>mâtiner</i>             <t>aim:er</t></v>
+<v><i>matir</i>                        <t>men:tir</t></v>
+<v><i>matraquer</i>            <t>aim:er</t></v>
+<v><i>matricer</i>             <t>pla:cer</t></v>
+<v><i>matriculer</i>           <t>aim:er</t></v>
+<v><i>maturer</i>              <t>aim:er</t></v>
+<v><i>maudire</i>              <t>maud:ire</t></v>
+<v><i>maugréer</i>            <t>aim:er</t></v>
+<v><i>maximaliser</i>          <t>aim:er</t></v>
+<v><i>maximiser</i>            <t>aim:er</t></v>
+<v><i>mazouter</i>             <t>aim:er</t></v>
+<v><i>mécaniser</i>           <t>aim:er</t></v>
+<v><i>mécher</i>              <t>s:écher</t></v>
+<v><i>mécompter</i>           <t>aim:er</t></v>
+<v><i>méconnaître</i>                <t>rep:aître</t></v>
+<v><i>mécontenter</i>         <t>aim:er</t></v>
+<v><i>médailler</i>           <t>aim:er</t></v>
+<v><i>médiatiser</i>          <t>aim:er</t></v>
+<v><i>médicaliser</i>         <t>aim:er</t></v>
+<v><i>médicamenter</i>                <t>aim:er</t></v>
+<v><i>médire</i>              <t>méd:ire</t></v>
+<v><i>médiser</i>             <t>aim:er</t></v>
+<v><i>méditer</i>             <t>aim:er</t></v>
+<v><i>méduser</i>             <t>aim:er</t></v>
+<v><i>méfaire</i>             <t>f:aire</t></v>
+<v><i>méfier</i>              <t>aim:er</t></v>
+<v><i>mégir</i>                       <t>fin:ir</t></v>
+<v><i>mégisser</i>            <t>aim:er</t></v>
+<v><i>mégoter</i>             <t>aim:er</t></v>
+<v><i>méjuger</i>             <t>man:ger</t></v>
+<v><i>mélanger</i>            <t>man:ger</t></v>
+<v><i>mêler</i>                       <t>aim:er</t></v>
+<v><i>mémoriser</i>           <t>aim:er</t></v>
+<v><i>menacer</i>              <t>pla:cer</t></v>
+<v><i>ménager</i>             <t>man:ger</t></v>
+<v><i>mendier</i>              <t>aim:er</t></v>
+<v><i>mendigoter</i>           <t>aim:er</t></v>
+<v><i>mener</i>                        <t>m:ener</t></v>
+<v><i>mensualiser</i>          <t>aim:er</t></v>
+<v><i>mensurer</i>             <t>aim:er</t></v>
+<v><i>mentionner</i>           <t>aim:er</t></v>
+<v><i>mentir</i>               <t>men:tir</t></v>
+<v><i>menuiser</i>             <t>aim:er</t></v>
+<v><i>méprendre</i>           <t>pr:endre</t></v>
+<v><i>mépriser</i>            <t>aim:er</t></v>
+<v><i>mercantiliser</i>                <t>aim:er</t></v>
+<v><i>merceriser</i>           <t>aim:er</t></v>
+<v><i>merder</i>               <t>aim:er</t></v>
+<v><i>merdouiller</i>          <t>aim:er</t></v>
+<v><i>merdoyer</i>             <t>netto:yer</t></v>
+<v><i>meringuer</i>            <t>aim:er</t></v>
+<v><i>mériter</i>             <t>aim:er</t></v>
+<v><i>mésallier</i>           <t>aim:er</t></v>
+<v><i>mésestimer</i>          <t>aim:er</t></v>
+<v><i>messeoir</i>             <t>s:eoir</t></v>
+<v><i>mesurer</i>              <t>aim:er</t></v>
+<v><i>mésuser</i>             <t>aim:er</t></v>
+<v><i>métalliser</i>          <t>aim:er</t></v>
+<v><i>métamorphiser</i>               <t>aim:er</t></v>
+<v><i>métamorphoser</i>               <t>aim:er</t></v>
+<v><i>météoriser</i>         <t>aim:er</t></v>
+<v><i>métisser</i>            <t>aim:er</t></v>
+<v><i>métrer</i>              <t>imp:étrer</t></v>
+<v><i>mettre</i>               <t>m:ettre</t></v>
+<v><i>meubler</i>              <t>aim:er</t></v>
+<v><i>meugler</i>              <t>aim:er</t></v>
+<v><i>meuler</i>               <t>aim:er</t></v>
+<v><i>meurtrir</i>             <t>fin:ir</t></v>
+<v><i>mévendre</i>            <t>ten:dre</t></v>
+<v><i>miauler</i>              <t>aim:er</t></v>
+<v><i>microfilmer</i>          <t>aim:er</t></v>
+<v><i>mignarder</i>            <t>aim:er</t></v>
+<v><i>mignoter</i>             <t>aim:er</t></v>
+<v><i>migrer</i>               <t>aim:er</t></v>
+<v><i>mijoter</i>              <t>aim:er</t></v>
+<v><i>militariser</i>          <t>aim:er</t></v>
+<v><i>militer</i>              <t>aim:er</t></v>
+<v><i>millésimer</i>          <t>aim:er</t></v>
+<v><i>mimer</i>                        <t>aim:er</t></v>
+<v><i>minauder</i>             <t>aim:er</t></v>
+<v><i>mincir</i>               <t>fin:ir</t></v>
+<v><i>minéraliser</i>         <t>aim:er</t></v>
+<v><i>miner</i>                        <t>aim:er</t></v>
+<v><i>miniaturer</i>           <t>aim:er</t></v>
+<v><i>miniaturiser</i>         <t>aim:er</t></v>
+<v><i>minimiser</i>            <t>aim:er</t></v>
+<v><i>minorer</i>              <t>aim:er</t></v>
+<v><i>minuter</i>              <t>aim:er</t></v>
+<v><i>mirer</i>                        <t>aim:er</t></v>
+<v><i>miroiter</i>             <t>aim:er</t></v>
+<v><i>miser</i>                        <t>aim:er</t></v>
+<v><i>miter</i>                        <t>aim:er</t></v>
+<v><i>mithridater</i>          <t>aim:er</t></v>
+<v><i>mithridatiser</i>                <t>aim:er</t></v>
+<v><i>mitiger</i>              <t>man:ger</t></v>
+<v><i>mitonner</i>             <t>aim:er</t></v>
+<v><i>mitrailler</i>           <t>aim:er</t></v>
+<v><i>mixer</i>                        <t>aim:er</t></v>
+<v><i>mixtionner</i>           <t>aim:er</t></v>
+<v><i>mobiliser</i>            <t>aim:er</t></v>
+<v><i>modeler</i>              <t>p:eler</t></v>
+<v><i>modérer</i>             <t>réf:érer</t></v>
+<v><i>moderniser</i>           <t>aim:er</t></v>
+<v><i>modifier</i>             <t>aim:er</t></v>
+<v><i>moduler</i>              <t>aim:er</t></v>
+<v><i>moirer</i>               <t>aim:er</t></v>
+<v><i>moiser</i>               <t>aim:er</t></v>
+<v><i>moisir</i>               <t>fin:ir</t></v>
+<v><i>moissonner</i>           <t>aim:er</t></v>
+<v><i>moiter</i>               <t>aim:er</t></v>
+<v><i>moitir</i>               <t>fin:ir</t></v>
+<v><i>molester</i>             <t>aim:er</t></v>
+<v><i>moleter</i>              <t>j:eter</t></v>
+<v><i>mollarder</i>            <t>aim:er</t></v>
+<v><i>molletonner</i>          <t>aim:er</t></v>
+<v><i>mollir</i>               <t>fin:ir</t></v>
+<v><i>momifier</i>             <t>aim:er</t></v>
+<v><i>monder</i>               <t>aim:er</t></v>
+<v><i>mondialiser</i>          <t>aim:er</t></v>
+<v><i>monétiser</i>           <t>aim:er</t></v>
+<v><i>monnayer</i>             <t>pa:yer</t></v>
+<v><i>monologuer</i>           <t>aim:er</t></v>
+<v><i>monopoliser</i>          <t>aim:er</t></v>
+<v><i>monter</i>               <t>aim:er</t></v>
+<v><i>montrer</i>              <t>aim:er</t></v>
+<v><i>moquer</i>               <t>aim:er</t></v>
+<v><i>moquetter</i>            <t>aim:er</t></v>
+<v><i>moraliser</i>            <t>aim:er</t></v>
+<v><i>morceler</i>             <t>app:eler</t></v>
+<v><i>mordancer</i>            <t>pla:cer</t></v>
+<v><i>mordiller</i>            <t>aim:er</t></v>
+<v><i>mordorer</i>             <t>aim:er</t></v>
+<v><i>mordre</i>               <t>ten:dre</t></v>
+<v><i>morfiler</i>             <t>aim:er</t></v>
+<v><i>morfler</i>              <t>aim:er</t></v>
+<v><i>morfondre</i>            <t>ten:dre</t></v>
+<v><i>morguer</i>              <t>aim:er</t></v>
+<v><i>morigéner</i>           <t>ali:éner</t></v>
+<v><i>mortaiser</i>            <t>aim:er</t></v>
+<v><i>mortifier</i>            <t>aim:er</t></v>
+<v><i>motionner</i>            <t>aim:er</t></v>
+<v><i>motiver</i>              <t>aim:er</t></v>
+<v><i>motoriser</i>            <t>aim:er</t></v>
+<v><i>motter</i>               <t>aim:er</t></v>
+<v><i>moucharder</i>           <t>aim:er</t></v>
+<v><i>moucher</i>              <t>aim:er</t></v>
+<v><i>moucheronner</i>         <t>aim:er</t></v>
+<v><i>moucheter</i>            <t>j:eter</t></v>
+<v><i>moudre</i>               <t>mou:dre</t></v>
+<v><i>mouetter</i>             <t>aim:er</t></v>
+<v><i>moufter</i>              <t>aim:er</t></v>
+<v><i>mouiller</i>             <t>aim:er</t></v>
+<v><i>mouler</i>               <t>aim:er</t></v>
+<v><i>mouliner</i>             <t>aim:er</t></v>
+<v><i>moulurer</i>             <t>aim:er</t></v>
+<v><i>mourir</i>               <t>m:ourir</t></v>
+<v><i>mouronner</i>            <t>aim:er</t></v>
+<v><i>mousser</i>              <t>aim:er</t></v>
+<v><i>moutonner</i>            <t>aim:er</t></v>
+<v><i>mouvementer</i>          <t>aim:er</t></v>
+<v><i>mouver</i>               <t>aim:er</t></v>
+<v><i>mouvoir</i>              <t>m:ouvoir</t></v>
+<v><i>moyenner</i>             <t>aim:er</t></v>
+<v><i>mucher</i>               <t>aim:er</t></v>
+<v><i>muer</i>                 <t>aim:er</t></v>
+<v><i>mugir</i>                        <t>fin:ir</t></v>
+<v><i>mugueter</i>             <t>j:eter</t></v>
+<v><i>muloter</i>              <t>aim:er</t></v>
+<v><i>multiplexer</i>          <t>aim:er</t></v>
+<v><i>multiplier</i>           <t>aim:er</t></v>
+<v><i>municipaliser</i>                <t>aim:er</t></v>
+<v><i>munir</i>                        <t>fin:ir</t></v>
+<v><i>munitionner</i>          <t>aim:er</t></v>
+<v><i>murailler</i>            <t>aim:er</t></v>
+<v><i>murer</i>                        <t>aim:er</t></v>
+<v><i>mûrir</i>                       <t>fin:ir</t></v>
+<v><i>murmurer</i>             <t>aim:er</t></v>
+<v><i>musarder</i>             <t>aim:er</t></v>
+<v><i>muscler</i>              <t>aim:er</t></v>
+<v><i>museler</i>              <t>app:eler</t></v>
+<v><i>muser</i>                        <t>aim:er</t></v>
+<v><i>musiquer</i>             <t>aim:er</t></v>
+<v><i>musquer</i>              <t>aim:er</t></v>
+<v><i>musser</i>               <t>aim:er</t></v>
+<v><i>muter</i>                        <t>aim:er</t></v>
+<v><i>mutiler</i>              <t>aim:er</t></v>
+<v><i>mutiner</i>              <t>aim:er</t></v>
+<v><i>mutualiser</i>           <t>aim:er</t></v>
+<v><i>mystifier</i>            <t>aim:er</t></v>
+<v><i>nacrer</i>               <t>aim:er</t></v>
+<v><i>nager</i>                        <t>man:ger</t></v>
+<v><i>naître</i>              <t>n:aître</t></v>
+<v><i>nantir</i>               <t>fin:ir</t></v>
+<v><i>napper</i>               <t>aim:er</t></v>
+<v><i>narguer</i>              <t>aim:er</t></v>
+<v><i>narrer</i>               <t>aim:er</t></v>
+<v><i>nasaliser</i>            <t>aim:er</t></v>
+<v><i>nasiller</i>             <t>aim:er</t></v>
+<v><i>nationaliser</i>         <t>aim:er</t></v>
+<v><i>natter</i>               <t>aim:er</t></v>
+<v><i>naturaliser</i>          <t>aim:er</t></v>
+<v><i>naufrager</i>            <t>man:ger</t></v>
+<v><i>naviguer</i>             <t>aim:er</t></v>
+<v><i>navrer</i>               <t>aim:er</t></v>
+<v><i>néantiser</i>           <t>aim:er</t></v>
+<v><i>nécessiter</i>          <t>aim:er</t></v>
+<v><i>nécroser</i>            <t>aim:er</t></v>
+<v><i>négliger</i>            <t>man:ger</t></v>
+<v><i>négocier</i>            <t>aim:er</t></v>
+<v><i>neiger</i>               <t>man:ger</t></v>
+<v><i>nervurer</i>             <t>aim:er</t></v>
+<v><i>nettoyer</i>             <t>netto:yer</t></v>
+<v><i>neutraliser</i>          <t>aim:er</t></v>
+<v><i>niaiser</i>              <t>aim:er</t></v>
+<v><i>nicher</i>               <t>aim:er</t></v>
+<v><i>nickeler</i>             <t>app:eler</t></v>
+<v><i>nicotiniser</i>          <t>aim:er</t></v>
+<v><i>nidifier</i>             <t>aim:er</t></v>
+<v><i>nieller</i>              <t>aim:er</t></v>
+<v><i>nier</i>                 <t>aim:er</t></v>
+<v><i>nimber</i>               <t>aim:er</t></v>
+<v><i>nipper</i>               <t>aim:er</t></v>
+<v><i>nitrater</i>             <t>aim:er</t></v>
+<v><i>nitrer</i>               <t>aim:er</t></v>
+<v><i>nitrifier</i>            <t>aim:er</t></v>
+<v><i>nitrurer</i>             <t>aim:er</t></v>
+<v><i>niveler</i>              <t>app:eler</t></v>
+<v><i>noircir</i>              <t>fin:ir</t></v>
+<v><i>noliser</i>              <t>aim:er</t></v>
+<v><i>nomadiser</i>            <t>aim:er</t></v>
+<v><i>nominaliser</i>          <t>aim:er</t></v>
+<v><i>nommer</i>               <t>aim:er</t></v>
+<v><i>noper</i>                        <t>aim:er</t></v>
+<v><i>nordir</i>               <t>fin:ir</t></v>
+<v><i>normaliser</i>           <t>aim:er</t></v>
+<v><i>noter</i>                        <t>aim:er</t></v>
+<v><i>notifier</i>             <t>aim:er</t></v>
+<v><i>nouer</i>                        <t>aim:er</t></v>
+<v><i>nourrir</i>              <t>fin:ir</t></v>
+<v><i>nover</i>                        <t>aim:er</t></v>
+<v><i>noyauter</i>             <t>aim:er</t></v>
+<v><i>noyer</i>                        <t>netto:yer</t></v>
+<v><i>nuancer</i>              <t>pla:cer</t></v>
+<v><i>nucléer</i>             <t>aim:er</t></v>
+<v><i>nuer</i>                 <t>aim:er</t></v>
+<v><i>nuire</i>                        <t>nui:re</t></v>
+<v><i>numériser</i>           <t>aim:er</t></v>
+<v><i>numéroter</i>           <t>aim:er</t></v>
+<v><i>obéir</i>                       <t>fin:ir</t></v>
+<v><i>obérer</i>              <t>réf:érer</t></v>
+<v><i>objecter</i>             <t>aim:er</t></v>
+<v><i>objectiver</i>           <t>aim:er</t></v>
+<v><i>objurguer</i>            <t>aim:er</t></v>
+<v><i>obliger</i>              <t>man:ger</t></v>
+<v><i>obliquer</i>             <t>aim:er</t></v>
+<v><i>oblitérer</i>           <t>réf:érer</t></v>
+<v><i>obnubiler</i>            <t>aim:er</t></v>
+<v><i>obombrer</i>             <t>aim:er</t></v>
+<v><i>obscurcir</i>            <t>fin:ir</t></v>
+<v><i>obséder</i>             <t>c:éder</t></v>
+<v><i>observer</i>             <t>aim:er</t></v>
+<v><i>obstiner</i>             <t>aim:er</t></v>
+<v><i>obstruer</i>             <t>aim:er</t></v>
+<v><i>obtempérer</i>          <t>réf:érer</t></v>
+<v><i>obtenir</i>              <t>t:enir</t></v>
+<v><i>obturer</i>              <t>aim:er</t></v>
+<v><i>obvenir</i>              <t>t:enir</t></v>
+<v><i>obvier</i>               <t>aim:er</t></v>
+<v><i>occasionner</i>          <t>aim:er</t></v>
+<v><i>occidentaliser</i>       <t>aim:er</t></v>
+<v><i>occire</i>               <t>occi:re</t></v>
+<v><i>occlure</i>              <t>incl:ure</t></v>
+<v><i>occulter</i>             <t>aim:er</t></v>
+<v><i>occuper</i>              <t>aim:er</t></v>
+<v><i>ocrer</i>                        <t>aim:er</t></v>
+<v><i>octavier</i>             <t>aim:er</t></v>
+<v><i>octroyer</i>             <t>netto:yer</t></v>
+<v><i>octupler</i>             <t>aim:er</t></v>
+<v><i>oeilletonner</i>         <t>aim:er</t></v>
+<v><i>oeuvrer</i>              <t>aim:er</t></v>
+<v><i>offenser</i>             <t>aim:er</t></v>
+<v><i>officialiser</i>         <t>aim:er</t></v>
+<v><i>officier</i>             <t>aim:er</t></v>
+<v><i>offrir</i>               <t>ouv:rir</t></v>
+<v><i>offusquer</i>            <t>aim:er</t></v>
+<v><i>oindre</i>               <t>oi:ndre</t></v>
+<v><i>oiseler</i>              <t>app:eler</t></v>
+<v><i>ombrager</i>             <t>man:ger</t></v>
+<v><i>ombrer</i>               <t>aim:er</t></v>
+<v><i>omettre</i>              <t>m:ettre</t></v>
+<v><i>ondoyer</i>              <t>netto:yer</t></v>
+<v><i>onduler</i>              <t>aim:er</t></v>
+<v><i>opacifier</i>            <t>aim:er</t></v>
+<v><i>opaliser</i>             <t>aim:er</t></v>
+<v><i>opérer</i>              <t>réf:érer</t></v>
+<v><i>opiacer</i>              <t>pla:cer</t></v>
+<v><i>opiner</i>               <t>aim:er</t></v>
+<v><i>opiniâtrer</i>          <t>aim:er</t></v>
+<v><i>opposer</i>              <t>aim:er</t></v>
+<v><i>oppresser</i>            <t>aim:er</t></v>
+<v><i>opprimer</i>             <t>aim:er</t></v>
+<v><i>opter</i>                        <t>aim:er</t></v>
+<v><i>optimaliser</i>          <t>aim:er</t></v>
+<v><i>optimiser</i>            <t>aim:er</t></v>
+<v><i>oranger</i>              <t>man:ger</t></v>
+<v><i>orbiter</i>              <t>aim:er</t></v>
+<v><i>orchestrer</i>           <t>aim:er</t></v>
+<v><i>ordonnancer</i>          <t>pla:cer</t></v>
+<v><i>ordonner</i>             <t>aim:er</t></v>
+<v><i>organiser</i>            <t>aim:er</t></v>
+<v><i>organsiner</i>           <t>aim:er</t></v>
+<v><i>orienter</i>             <t>aim:er</t></v>
+<v><i>oringuer</i>             <t>aim:er</t></v>
+<v><i>ornementer</i>           <t>aim:er</t></v>
+<v><i>orner</i>                        <t>aim:er</t></v>
+<v><i>orthographier</i>                <t>aim:er</t></v>
+<v><i>osciller</i>             <t>aim:er</t></v>
+<v><i>oser</i>                 <t>aim:er</t></v>
+<v><i>ossifier</i>             <t>aim:er</t></v>
+<v><i>ostraciser</i>           <t>aim:er</t></v>
+<v><i>ôter</i>                        <t>aim:er</t></v>
+<v><i>ouater</i>               <t>aim:er</t></v>
+<v><i>ouatiner</i>             <t>aim:er</t></v>
+<v><i>oublier</i>              <t>aim:er</t></v>
+<v><i>ouiller</i>              <t>aim:er</t></v>
+<v><i>ouïr</i>                        <t>o:uïr</t></v>
+<v><i>ourdir</i>               <t>fin:ir</t></v>
+<v><i>ourler</i>               <t>aim:er</t></v>
+<v><i>outiller</i>             <t>aim:er</t></v>
+<v><i>outrager</i>             <t>man:ger</t></v>
+<v><i>outrepasser</i>          <t>aim:er</t></v>
+<v><i>outrer</i>               <t>aim:er</t></v>
+<v><i>ouvrager</i>             <t>man:ger</t></v>
+<v><i>ouvrer</i>               <t>aim:er</t></v>
+<v><i>ouvrir</i>               <t>ouv:rir</t></v>
+<v><i>ovaliser</i>             <t>aim:er</t></v>
+<v><i>ovationner</i>           <t>aim:er</t></v>
+<v><i>ovuler</i>               <t>aim:er</t></v>
+<v><i>oxyder</i>               <t>aim:er</t></v>
+<v><i>oxygéner</i>            <t>ali:éner</t></v>
+<v><i>ozoniser</i>             <t>aim:er</t></v>
+<v><i>pacager</i>              <t>man:ger</t></v>
+<v><i>pacifier</i>             <t>aim:er</t></v>
+<v><i>pacquer</i>              <t>aim:er</t></v>
+<v><i>pactiser</i>             <t>aim:er</t></v>
+<v><i>paganiser</i>            <t>aim:er</t></v>
+<v><i>pagayer</i>              <t>pa:yer</t></v>
+<v><i>pageoter</i>             <t>aim:er</t></v>
+<v><i>pager</i>                        <t>man:ger</t></v>
+<v><i>paginer</i>              <t>aim:er</t></v>
+<v><i>pagnoter</i>             <t>aim:er</t></v>
+<v><i>paillarder</i>           <t>aim:er</t></v>
+<v><i>paillassonner</i>                <t>aim:er</t></v>
+<v><i>pailler</i>              <t>aim:er</t></v>
+<v><i>pailleter</i>            <t>j:eter</t></v>
+<v><i>paillonner</i>           <t>aim:er</t></v>
+<v><i>paisseler</i>            <t>app:eler</t></v>
+<v><i>paître</i>              <t>p:aître</t></v>
+<v><i>pajoter</i>              <t>aim:er</t></v>
+<v><i>palabrer</i>             <t>aim:er</t></v>
+<v><i>palancrer</i>            <t>aim:er</t></v>
+<v><i>palangrer</i>            <t>aim:er</t></v>
+<v><i>palanguer</i>            <t>aim:er</t></v>
+<v><i>palanquer</i>            <t>aim:er</t></v>
+<v><i>palataliser</i>          <t>aim:er</t></v>
+<v><i>paletter</i>             <t>aim:er</t></v>
+<v><i>palettiser</i>           <t>aim:er</t></v>
+<v><i>pâlir</i>                       <t>fin:ir</t></v>
+<v><i>palissader</i>           <t>aim:er</t></v>
+<v><i>palisser</i>             <t>aim:er</t></v>
+<v><i>palissonner</i>          <t>aim:er</t></v>
+<v><i>pallier</i>              <t>aim:er</t></v>
+<v><i>palmer</i>               <t>aim:er</t></v>
+<v><i>paloter</i>              <t>aim:er</t></v>
+<v><i>palper</i>               <t>aim:er</t></v>
+<v><i>palpiter</i>             <t>aim:er</t></v>
+<v><i>pâmer</i>                       <t>aim:er</t></v>
+<v><i>panacher</i>             <t>aim:er</t></v>
+<v><i>paner</i>                        <t>aim:er</t></v>
+<v><i>panifier</i>             <t>aim:er</t></v>
+<v><i>paniquer</i>             <t>aim:er</t></v>
+<v><i>panneauter</i>           <t>aim:er</t></v>
+<v><i>panner</i>               <t>aim:er</t></v>
+<v><i>panoramiquer</i>         <t>aim:er</t></v>
+<v><i>panser</i>               <t>aim:er</t></v>
+<v><i>panteler</i>             <t>app:eler</t></v>
+<v><i>pantoufler</i>           <t>aim:er</t></v>
+<v><i>papillonner</i>          <t>aim:er</t></v>
+<v><i>papilloter</i>           <t>aim:er</t></v>
+<v><i>papoter</i>              <t>aim:er</t></v>
+<v><i>papouiller</i>           <t>aim:er</t></v>
+<v><i>paqueter</i>             <t>j:eter</t></v>
+<v><i>parachever</i>           <t>l:ever</t></v>
+<v><i>parachuter</i>           <t>aim:er</t></v>
+<v><i>parader</i>              <t>aim:er</t></v>
+<v><i>parafer</i>              <t>aim:er</t></v>
+<v><i>paraffiner</i>           <t>aim:er</t></v>
+<v><i>paraisonner</i>          <t>aim:er</t></v>
+<v><i>paraître</i>            <t>rep:aître</t></v>
+<v><i>paralléliser</i>                <t>aim:er</t></v>
+<v><i>paralyser</i>            <t>aim:er</t></v>
+<v><i>paramétriser</i>                <t>aim:er</t></v>
+<v><i>parangonner</i>          <t>aim:er</t></v>
+<v><i>parapher</i>             <t>aim:er</t></v>
+<v><i>paraphraser</i>          <t>aim:er</t></v>
+<v><i>parasiter</i>            <t>aim:er</t></v>
+<v><i>parcellariser</i>                <t>aim:er</t></v>
+<v><i>parceller</i>            <t>aim:er</t></v>
+<v><i>parcelliser</i>          <t>aim:er</t></v>
+<v><i>parcheminer</i>          <t>aim:er</t></v>
+<v><i>parcourir</i>            <t>cour:ir</t></v>
+<v><i>pardonner</i>            <t>aim:er</t></v>
+<v><i>parementer</i>           <t>aim:er</t></v>
+<v><i>parer</i>                        <t>aim:er</t></v>
+<v><i>paresser</i>             <t>aim:er</t></v>
+<v><i>parfaire</i>             <t>f:aire</t></v>
+<v><i>parfiler</i>             <t>aim:er</t></v>
+<v><i>parfondre</i>            <t>ten:dre</t></v>
+<v><i>parfumer</i>             <t>aim:er</t></v>
+<v><i>parier</i>               <t>aim:er</t></v>
+<v><i>parjurer</i>             <t>aim:er</t></v>
+<v><i>parkériser</i>          <t>aim:er</t></v>
+<v><i>parlementer</i>          <t>aim:er</t></v>
+<v><i>parler</i>               <t>aim:er</t></v>
+<v><i>parloter</i>             <t>aim:er</t></v>
+<v><i>parodier</i>             <t>aim:er</t></v>
+<v><i>parquer</i>              <t>aim:er</t></v>
+<v><i>parqueter</i>            <t>j:eter</t></v>
+<v><i>parrainer</i>            <t>aim:er</t></v>
+<v><i>parsemer</i>             <t>s:emer</t></v>
+<v><i>partager</i>             <t>man:ger</t></v>
+<v><i>participer</i>           <t>aim:er</t></v>
+<v><i>particulariser</i>       <t>aim:er</t></v>
+<v><i>partir</i>               <t>men:tir</t></v>
+<v><i>partitionner</i>         <t>aim:er</t></v>
+<v><i>parvenir</i>             <t>t:enir</t></v>
+<v><i>passementer</i>          <t>aim:er</t></v>
+<v><i>passepoiler</i>          <t>aim:er</t></v>
+<v><i>passer</i>               <t>aim:er</t></v>
+<v><i>passionner</i>           <t>aim:er</t></v>
+<v><i>pasteller</i>            <t>aim:er</t></v>
+<v><i>pasteuriser</i>          <t>aim:er</t></v>
+<v><i>pasticher</i>            <t>aim:er</t></v>
+<v><i>pastiller</i>            <t>aim:er</t></v>
+<v><i>patafioler</i>           <t>aim:er</t></v>
+<v><i>patauger</i>             <t>man:ger</t></v>
+<v><i>pateliner</i>            <t>aim:er</t></v>
+<v><i>patenter</i>             <t>aim:er</t></v>
+<v><i>pâter</i>                       <t>aim:er</t></v>
+<v><i>patienter</i>            <t>aim:er</t></v>
+<v><i>patiner</i>              <t>aim:er</t></v>
+<v><i>pâtir</i>                       <t>fin:ir</t></v>
+<v><i>pâtisser</i>            <t>aim:er</t></v>
+<v><i>patoiser</i>             <t>aim:er</t></v>
+<v><i>patouiller</i>           <t>aim:er</t></v>
+<v><i>patronner</i>            <t>aim:er</t></v>
+<v><i>patrouiller</i>          <t>aim:er</t></v>
+<v><i>patter</i>               <t>aim:er</t></v>
+<v><i>pâturer</i>             <t>aim:er</t></v>
+<v><i>paumer</i>               <t>aim:er</t></v>
+<v><i>paumoyer</i>             <t>netto:yer</t></v>
+<v><i>paupériser</i>          <t>aim:er</t></v>
+<v><i>pauser</i>               <t>aim:er</t></v>
+<v><i>pavaner</i>              <t>aim:er</t></v>
+<v><i>paver</i>                        <t>aim:er</t></v>
+<v><i>pavoiser</i>             <t>aim:er</t></v>
+<v><i>payer</i>                        <t>pa:yer</t></v>
+<v><i>peaufiner</i>            <t>aim:er</t></v>
+<v><i>peausser</i>             <t>aim:er</t></v>
+<v><i>pêcher</i>              <t>aim:er</t></v>
+<v><i>pécher</i>              <t>s:écher</t></v>
+<v><i>pécloter</i>            <t>aim:er</t></v>
+<v><i>pédaler</i>             <t>aim:er</t></v>
+<v><i>peigner</i>              <t>aim:er</t></v>
+<v><i>peindre</i>              <t>crai:ndre</t></v>
+<v><i>peiner</i>               <t>aim:er</t></v>
+<v><i>peinturer</i>            <t>aim:er</t></v>
+<v><i>peinturlurer</i>         <t>aim:er</t></v>
+<v><i>peler</i>                        <t>p:eler</t></v>
+<v><i>pelleter</i>             <t>j:eter</t></v>
+<v><i>peloter</i>              <t>aim:er</t></v>
+<v><i>pelotonner</i>           <t>aim:er</t></v>
+<v><i>pelucher</i>             <t>aim:er</t></v>
+<v><i>pénaliser</i>           <t>aim:er</t></v>
+<v><i>pencher</i>              <t>aim:er</t></v>
+<v><i>pendiller</i>            <t>aim:er</t></v>
+<v><i>pendouiller</i>          <t>aim:er</t></v>
+<v><i>pendre</i>               <t>ten:dre</t></v>
+<v><i>penduler</i>             <t>aim:er</t></v>
+<v><i>pénétrer</i>           <t>imp:étrer</t></v>
+<v><i>penser</i>               <t>aim:er</t></v>
+<v><i>pensionner</i>           <t>aim:er</t></v>
+<v><i>pépier</i>              <t>aim:er</t></v>
+<v><i>percer</i>               <t>pla:cer</t></v>
+<v><i>percevoir</i>            <t>dé:cevoir</t></v>
+<v><i>percher</i>              <t>aim:er</t></v>
+<v><i>percuter</i>             <t>aim:er</t></v>
+<v><i>perdre</i>               <t>ten:dre</t></v>
+<v><i>perdurer</i>             <t>aim:er</t></v>
+<v><i>pérégriner</i>         <t>aim:er</t></v>
+<v><i>pérenniser</i>          <t>aim:er</t></v>
+<v><i>perfectionner</i>                <t>aim:er</t></v>
+<v><i>perforer</i>             <t>aim:er</t></v>
+<v><i>perfuser</i>             <t>aim:er</t></v>
+<v><i>péricliter</i>          <t>aim:er</t></v>
+<v><i>périmer</i>             <t>aim:er</t></v>
+<v><i>périphraser</i>         <t>aim:er</t></v>
+<v><i>périr</i>                       <t>fin:ir</t></v>
+<v><i>perler</i>               <t>aim:er</t></v>
+<v><i>permanenter</i>          <t>aim:er</t></v>
+<v><i>perméabiliser</i>               <t>aim:er</t></v>
+<v><i>permettre</i>            <t>m:ettre</t></v>
+<v><i>permuter</i>             <t>aim:er</t></v>
+<v><i>pérorer</i>             <t>aim:er</t></v>
+<v><i>peroxyder</i>            <t>aim:er</t></v>
+<v><i>péroxyder</i>           <t>aim:er</t></v>
+<v><i>perpétrer</i>           <t>imp:étrer</t></v>
+<v><i>perpétuer</i>           <t>aim:er</t></v>
+<v><i>perquisitionner</i>      <t>aim:er</t></v>
+<v><i>persécuter</i>          <t>aim:er</t></v>
+<v><i>persévérer</i>         <t>réf:érer</t></v>
+<v><i>persifler</i>            <t>aim:er</t></v>
+<v><i>persiller</i>            <t>aim:er</t></v>
+<v><i>persister</i>            <t>aim:er</t></v>
+<v><i>personnaliser</i>                <t>aim:er</t></v>
+<v><i>personnifier</i>         <t>aim:er</t></v>
+<v><i>persuader</i>            <t>aim:er</t></v>
+<v><i>perturber</i>            <t>aim:er</t></v>
+<v><i>pervertir</i>            <t>fin:ir</t></v>
+<v><i>pervibrer</i>            <t>aim:er</t></v>
+<v><i>peser</i>                        <t>p:eser</t></v>
+<v><i>pester</i>               <t>aim:er</t></v>
+<v><i>pétarader</i>           <t>aim:er</t></v>
+<v><i>pétarder</i>            <t>aim:er</t></v>
+<v><i>péter</i>                       <t>décr:éter</t></v>
+<v><i>pétiller</i>            <t>aim:er</t></v>
+<v><i>pétitionner</i>         <t>aim:er</t></v>
+<v><i>pétouiller</i>          <t>aim:er</t></v>
+<v><i>pétrarquiser</i>                <t>aim:er</t></v>
+<v><i>pétrifier</i>           <t>aim:er</t></v>
+<v><i>pétrir</i>              <t>fin:ir</t></v>
+<v><i>pétuner</i>             <t>aim:er</t></v>
+<v><i>peupler</i>              <t>aim:er</t></v>
+<v><i>phagocyter</i>           <t>aim:er</t></v>
+<v><i>philosopher</i>          <t>aim:er</t></v>
+<v><i>phosphater</i>           <t>aim:er</t></v>
+<v><i>phosphorer</i>           <t>aim:er</t></v>
+<v><i>photocopier</i>          <t>aim:er</t></v>
+<v><i>photographier</i>                <t>aim:er</t></v>
+<v><i>phraser</i>              <t>aim:er</t></v>
+<v><i>piaffer</i>              <t>aim:er</t></v>
+<v><i>piailler</i>             <t>aim:er</t></v>
+<v><i>pianoter</i>             <t>aim:er</t></v>
+<v><i>piauler</i>              <t>aim:er</t></v>
+<v><i>picoler</i>              <t>aim:er</t></v>
+<v><i>picorer</i>              <t>aim:er</t></v>
+<v><i>picoter</i>              <t>aim:er</t></v>
+<v><i>piéger</i>              <t>abr:éger</t></v>
+<v><i>pierrer</i>              <t>aim:er</t></v>
+<v><i>piéter</i>              <t>décr:éter</t></v>
+<v><i>piétiner</i>            <t>aim:er</t></v>
+<v><i>pieuter</i>              <t>aim:er</t></v>
+<v><i>pifer</i>                        <t>aim:er</t></v>
+<v><i>piffer</i>               <t>aim:er</t></v>
+<v><i>pigeonner</i>            <t>aim:er</t></v>
+<v><i>piger</i>                        <t>man:ger</t></v>
+<v><i>pigmenter</i>            <t>aim:er</t></v>
+<v><i>pignocher</i>            <t>aim:er</t></v>
+<v><i>piler</i>                        <t>aim:er</t></v>
+<v><i>piller</i>               <t>aim:er</t></v>
+<v><i>pilonner</i>             <t>aim:er</t></v>
+<v><i>piloter</i>              <t>aim:er</t></v>
+<v><i>pimenter</i>             <t>aim:er</t></v>
+<v><i>pinailler</i>            <t>aim:er</t></v>
+<v><i>pincer</i>               <t>pla:cer</t></v>
+<v><i>pindariser</i>           <t>aim:er</t></v>
+<v><i>pinter</i>               <t>aim:er</t></v>
+<v><i>piocher</i>              <t>aim:er</t></v>
+<v><i>pioncer</i>              <t>pla:cer</t></v>
+<v><i>pionner</i>              <t>aim:er</t></v>
+<v><i>piper</i>                        <t>aim:er</t></v>
+<v><i>pique-niquer</i>         <t>aim:er</t></v>
+<v><i>piquer</i>               <t>aim:er</t></v>
+<v><i>piqueter</i>             <t>j:eter</t></v>
+<v><i>pirater</i>              <t>aim:er</t></v>
+<v><i>pirouetter</i>           <t>aim:er</t></v>
+<v><i>pisser</i>               <t>aim:er</t></v>
+<v><i>pistacher</i>            <t>aim:er</t></v>
+<v><i>pister</i>               <t>aim:er</t></v>
+<v><i>pistonner</i>            <t>aim:er</t></v>
+<v><i>pitonner</i>             <t>aim:er</t></v>
+<v><i>pituiter</i>             <t>aim:er</t></v>
+<v><i>pivoter</i>              <t>aim:er</t></v>
+<v><i>placarder</i>            <t>aim:er</t></v>
+<v><i>placer</i>               <t>pla:cer</t></v>
+<v><i>plafonner</i>            <t>aim:er</t></v>
+<v><i>plagier</i>              <t>aim:er</t></v>
+<v><i>plaider</i>              <t>aim:er</t></v>
+<v><i>plaindre</i>             <t>crai:ndre</t></v>
+<v><i>plainer</i>              <t>aim:er</t></v>
+<v><i>plaire</i>               <t>pl:aire</t></v>
+<v><i>plaisanter</i>           <t>aim:er</t></v>
+<v><i>plancher</i>             <t>aim:er</t></v>
+<v><i>planer</i>               <t>aim:er</t></v>
+<v><i>planifier</i>            <t>aim:er</t></v>
+<v><i>planquer</i>             <t>aim:er</t></v>
+<v><i>planter</i>              <t>aim:er</t></v>
+<v><i>plaquer</i>              <t>aim:er</t></v>
+<v><i>plasmifier</i>           <t>aim:er</t></v>
+<v><i>plastifier</i>           <t>aim:er</t></v>
+<v><i>plastiquer</i>           <t>aim:er</t></v>
+<v><i>plastronner</i>          <t>aim:er</t></v>
+<v><i>platiner</i>             <t>aim:er</t></v>
+<v><i>platiniser</i>           <t>aim:er</t></v>
+<v><i>plâtrer</i>             <t>aim:er</t></v>
+<v><i>plébisciter</i>         <t>aim:er</t></v>
+<v><i>pleurer</i>              <t>aim:er</t></v>
+<v><i>pleurnicher</i>          <t>aim:er</t></v>
+<v><i>pleuvasser</i>           <t>aim:er</t></v>
+<v><i>pleuviner</i>            <t>aim:er</t></v>
+<v><i>pleuvoir</i>             <t>pl:euvoir</t></v>
+<v><i>plier</i>                        <t>aim:er</t></v>
+<v><i>plisser</i>              <t>aim:er</t></v>
+<v><i>plomber</i>              <t>aim:er</t></v>
+<v><i>plonger</i>              <t>man:ger</t></v>
+<v><i>ploquer</i>              <t>aim:er</t></v>
+<v><i>ployer</i>               <t>netto:yer</t></v>
+<v><i>plucher</i>              <t>aim:er</t></v>
+<v><i>plumer</i>               <t>aim:er</t></v>
+<v><i>pluraliser</i>           <t>aim:er</t></v>
+<v><i>pocher</i>               <t>aim:er</t></v>
+<v><i>podzoliser</i>           <t>aim:er</t></v>
+<v><i>poêler</i>              <t>aim:er</t></v>
+<v><i>poétiser</i>            <t>aim:er</t></v>
+<v><i>poignarder</i>           <t>aim:er</t></v>
+<v><i>poiler</i>               <t>aim:er</t></v>
+<v><i>poinçonner</i>          <t>aim:er</t></v>
+<v><i>poindre</i>              <t>poi:ndre</t></v>
+<v><i>pointer</i>              <t>aim:er</t></v>
+<v><i>pointiller</i>           <t>aim:er</t></v>
+<v><i>poireauter</i>           <t>aim:er</t></v>
+<v><i>poiroter</i>             <t>aim:er</t></v>
+<v><i>poisser</i>              <t>aim:er</t></v>
+<v><i>poivrer</i>              <t>aim:er</t></v>
+<v><i>polariser</i>            <t>aim:er</t></v>
+<v><i>polémiquer</i>          <t>aim:er</t></v>
+<v><i>policer</i>              <t>pla:cer</t></v>
+<v><i>polir</i>                        <t>fin:ir</t></v>
+<v><i>polissonner</i>          <t>aim:er</t></v>
+<v><i>politiquer</i>           <t>aim:er</t></v>
+<v><i>politiser</i>            <t>aim:er</t></v>
+<v><i>polluer</i>              <t>aim:er</t></v>
+<v><i>polycopier</i>           <t>aim:er</t></v>
+<v><i>polymériser</i>         <t>aim:er</t></v>
+<v><i>pommader</i>             <t>aim:er</t></v>
+<v><i>pommeler</i>             <t>app:eler</t></v>
+<v><i>pommer</i>               <t>aim:er</t></v>
+<v><i>pomper</i>               <t>aim:er</t></v>
+<v><i>pomponner</i>            <t>aim:er</t></v>
+<v><i>poncer</i>               <t>pla:cer</t></v>
+<v><i>ponctionner</i>          <t>aim:er</t></v>
+<v><i>ponctuer</i>             <t>aim:er</t></v>
+<v><i>pondérer</i>            <t>réf:érer</t></v>
+<v><i>pondre</i>               <t>ten:dre</t></v>
+<v><i>ponter</i>               <t>aim:er</t></v>
+<v><i>pontifier</i>            <t>aim:er</t></v>
+<v><i>pontiller</i>            <t>aim:er</t></v>
+<v><i>populariser</i>          <t>aim:er</t></v>
+<v><i>poquer</i>               <t>aim:er</t></v>
+<v><i>porphyriser</i>          <t>aim:er</t></v>
+<v><i>porter</i>               <t>aim:er</t></v>
+<v><i>poser</i>                        <t>aim:er</t></v>
+<v><i>positionner</i>          <t>aim:er</t></v>
+<v><i>posséder</i>            <t>c:éder</t></v>
+<v><i>postdater</i>            <t>aim:er</t></v>
+<v><i>poster</i>               <t>aim:er</t></v>
+<v><i>posticher</i>            <t>aim:er</t></v>
+<v><i>postillonner</i>         <t>aim:er</t></v>
+<v><i>postposer</i>            <t>aim:er</t></v>
+<v><i>postsynchroniser</i>     <t>aim:er</t></v>
+<v><i>postuler</i>             <t>aim:er</t></v>
+<v><i>potasser</i>             <t>aim:er</t></v>
+<v><i>potentialiser</i>                <t>aim:er</t></v>
+<v><i>potiner</i>              <t>aim:er</t></v>
+<v><i>poudrer</i>              <t>aim:er</t></v>
+<v><i>poudroyer</i>            <t>netto:yer</t></v>
+<v><i>pouffer</i>              <t>aim:er</t></v>
+<v><i>pouliner</i>             <t>aim:er</t></v>
+<v><i>pouponner</i>            <t>aim:er</t></v>
+<v><i>pourchasser</i>          <t>aim:er</t></v>
+<v><i>pourfendre</i>           <t>ten:dre</t></v>
+<v><i>pourlécher</i>          <t>s:écher</t></v>
+<v><i>pourprer</i>             <t>aim:er</t></v>
+<v><i>pourrir</i>              <t>fin:ir</t></v>
+<v><i>poursuivre</i>           <t>sui:vre</t></v>
+<v><i>pourvoir</i>             <t>pourv:oir</t></v>
+<v><i>pousser</i>              <t>aim:er</t></v>
+<v><i>poutser</i>              <t>aim:er</t></v>
+<v><i>pouvoir</i>              <t>p:ouvoir</t></v>
+<v><i>praliner</i>             <t>aim:er</t></v>
+<v><i>pratiquer</i>            <t>aim:er</t></v>
+<v><i>préacheter</i>          <t>ach:eter</t></v>
+<v><i>préaviser</i>           <t>aim:er</t></v>
+<v><i>précariser</i>          <t>aim:er</t></v>
+<v><i>précautionner</i>               <t>aim:er</t></v>
+<v><i>précéder</i>           <t>c:éder</t></v>
+<v><i>préchauffer</i>         <t>aim:er</t></v>
+<v><i>prêcher</i>             <t>aim:er</t></v>
+<v><i>précipiter</i>          <t>aim:er</t></v>
+<v><i>préciser</i>            <t>aim:er</t></v>
+<v><i>précompter</i>          <t>aim:er</t></v>
+<v><i>préconiser</i>          <t>aim:er</t></v>
+<v><i>prédéfinir</i>         <t>fin:ir</t></v>
+<v><i>prédestiner</i>         <t>aim:er</t></v>
+<v><i>prédéterminer</i>              <t>aim:er</t></v>
+<v><i>prédiquer</i>           <t>aim:er</t></v>
+<v><i>prédire</i>             <t>d:ire</t></v>
+<v><i>prédisposer</i>         <t>aim:er</t></v>
+<v><i>prédominer</i>          <t>aim:er</t></v>
+<v><i>préempter</i>           <t>aim:er</t></v>
+<v><i>préétablir</i>         <t>fin:ir</t></v>
+<v><i>préexister</i>          <t>aim:er</t></v>
+<v><i>préfabriquer</i>                <t>aim:er</t></v>
+<v><i>préfacer</i>            <t>pla:cer</t></v>
+<v><i>préférer</i>           <t>réf:érer</t></v>
+<v><i>préfigurer</i>          <t>aim:er</t></v>
+<v><i>préfixer</i>            <t>aim:er</t></v>
+<v><i>préformer</i>           <t>aim:er</t></v>
+<v><i>préjudicier</i>         <t>aim:er</t></v>
+<v><i>préjuger</i>            <t>man:ger</t></v>
+<v><i>prélasser</i>           <t>aim:er</t></v>
+<v><i>prélever</i>            <t>l:ever</t></v>
+<v><i>préluder</i>            <t>aim:er</t></v>
+<v><i>préméditer</i>         <t>aim:er</t></v>
+<v><i>prémunir</i>            <t>fin:ir</t></v>
+<v><i>prendre</i>              <t>pr:endre</t></v>
+<v><i>prénommer</i>           <t>aim:er</t></v>
+<v><i>préoccuper</i>          <t>aim:er</t></v>
+<v><i>préparer</i>            <t>aim:er</t></v>
+<v><i>prépayer</i>            <t>pa:yer</t></v>
+<v><i>préposer</i>            <t>aim:er</t></v>
+<v><i>présager</i>            <t>man:ger</t></v>
+<v><i>prescrire</i>            <t>écri:re</t></v>
+<v><i>présenter</i>           <t>aim:er</t></v>
+<v><i>préserver</i>           <t>aim:er</t></v>
+<v><i>présider</i>            <t>aim:er</t></v>
+<v><i>pressentir</i>           <t>men:tir</t></v>
+<v><i>presser</i>              <t>aim:er</t></v>
+<v><i>pressurer</i>            <t>aim:er</t></v>
+<v><i>pressuriser</i>          <t>aim:er</t></v>
+<v><i>présumer</i>            <t>aim:er</t></v>
+<v><i>présupposer</i>         <t>aim:er</t></v>
+<v><i>présurer</i>            <t>aim:er</t></v>
+<v><i>prétendre</i>           <t>ten:dre</t></v>
+<v><i>prêter</i>              <t>aim:er</t></v>
+<v><i>prétexter</i>           <t>aim:er</t></v>
+<v><i>prévaloir</i>           <t>préva:loir</t></v>
+<v><i>prévariquer</i>         <t>aim:er</t></v>
+<v><i>prévenir</i>            <t>t:enir</t></v>
+<v><i>prévoir</i>             <t>prév:oir</t></v>
+<v><i>prier</i>                        <t>aim:er</t></v>
+<v><i>primariser</i>           <t>aim:er</t></v>
+<v><i>primer</i>               <t>aim:er</t></v>
+<v><i>prioriser</i>            <t>aim:er</t></v>
+<v><i>priser</i>               <t>aim:er</t></v>
+<v><i>privatiser</i>           <t>aim:er</t></v>
+<v><i>priver</i>               <t>aim:er</t></v>
+<v><i>privilégier</i>         <t>aim:er</t></v>
+<v><i>procéder</i>            <t>c:éder</t></v>
+<v><i>proclamer</i>            <t>aim:er</t></v>
+<v><i>procrastiner</i>         <t>aim:er</t></v>
+<v><i>procréer</i>            <t>aim:er</t></v>
+<v><i>procurer</i>             <t>aim:er</t></v>
+<v><i>prodiguer</i>            <t>aim:er</t></v>
+<v><i>produire</i>             <t>condui:re</t></v>
+<v><i>profaner</i>             <t>aim:er</t></v>
+<v><i>proférer</i>            <t>réf:érer</t></v>
+<v><i>professer</i>            <t>aim:er</t></v>
+<v><i>profiler</i>             <t>aim:er</t></v>
+<v><i>profiter</i>             <t>aim:er</t></v>
+<v><i>programmer</i>           <t>aim:er</t></v>
+<v><i>progresser</i>           <t>aim:er</t></v>
+<v><i>prohiber</i>             <t>aim:er</t></v>
+<v><i>projeter</i>             <t>j:eter</t></v>
+<v><i>prolétariser</i>                <t>aim:er</t></v>
+<v><i>proliférer</i>          <t>réf:érer</t></v>
+<v><i>prolonger</i>            <t>man:ger</t></v>
+<v><i>promener</i>             <t>m:ener</t></v>
+<v><i>promettre</i>            <t>m:ettre</t></v>
+<v><i>promouvoir</i>           <t>prom:ouvoir</t></v>
+<v><i>promulguer</i>           <t>aim:er</t></v>
+<v><i>prôner</i>              <t>aim:er</t></v>
+<v><i>prononcer</i>            <t>pla:cer</t></v>
+<v><i>pronostiquer</i>         <t>aim:er</t></v>
+<v><i>propager</i>             <t>man:ger</t></v>
+<v><i>prophétiser</i>         <t>aim:er</t></v>
+<v><i>proportionner</i>                <t>aim:er</t></v>
+<v><i>proposer</i>             <t>aim:er</t></v>
+<v><i>propulser</i>            <t>aim:er</t></v>
+<v><i>proroger</i>             <t>man:ger</t></v>
+<v><i>proscrire</i>            <t>écri:re</t></v>
+<v><i>prosodier</i>            <t>aim:er</t></v>
+<v><i>prospecter</i>           <t>aim:er</t></v>
+<v><i>prospérer</i>           <t>réf:érer</t></v>
+<v><i>prosterner</i>           <t>aim:er</t></v>
+<v><i>prostituer</i>           <t>aim:er</t></v>
+<v><i>protéger</i>            <t>abr:éger</t></v>
+<v><i>protester</i>            <t>aim:er</t></v>
+<v><i>prouver</i>              <t>aim:er</t></v>
+<v><i>provenir</i>             <t>t:enir</t></v>
+<v><i>proverbialiser</i>       <t>aim:er</t></v>
+<v><i>provigner</i>            <t>aim:er</t></v>
+<v><i>provisionner</i>         <t>aim:er</t></v>
+<v><i>provoquer</i>            <t>aim:er</t></v>
+<v><i>psalmodier</i>           <t>aim:er</t></v>
+<v><i>psychanalyser</i>                <t>aim:er</t></v>
+<v><i>psychiatriser</i>                <t>aim:er</t></v>
+<v><i>publier</i>              <t>aim:er</t></v>
+<v><i>puddler</i>              <t>aim:er</t></v>
+<v><i>puer</i>                 <t>aim:er</t></v>
+<v><i>puiser</i>               <t>aim:er</t></v>
+<v><i>pulluler</i>             <t>aim:er</t></v>
+<v><i>pulser</i>               <t>aim:er</t></v>
+<v><i>pulvériser</i>          <t>aim:er</t></v>
+<v><i>punaiser</i>             <t>aim:er</t></v>
+<v><i>punir</i>                        <t>fin:ir</t></v>
+<v><i>purger</i>               <t>man:ger</t></v>
+<v><i>purifier</i>             <t>aim:er</t></v>
+<v><i>putréfier</i>           <t>aim:er</t></v>
+<v><i>pyramider</i>            <t>aim:er</t></v>
+<v><i>pyrograver</i>           <t>aim:er</t></v>
+<v><i>quadriller</i>           <t>aim:er</t></v>
+<v><i>quadrupler</i>           <t>aim:er</t></v>
+<v><i>qualifier</i>            <t>aim:er</t></v>
+<v><i>quantifier</i>           <t>aim:er</t></v>
+<v><i>quarderonner</i>         <t>aim:er</t></v>
+<v><i>quarrer</i>              <t>aim:er</t></v>
+<v><i>quartager</i>            <t>man:ger</t></v>
+<v><i>quarter</i>              <t>aim:er</t></v>
+<v><i>québéciser</i>         <t>aim:er</t></v>
+<v><i>quémander</i>           <t>aim:er</t></v>
+<v><i>quereller</i>            <t>aim:er</t></v>
+<v><i>quérir</i>              <t>acqu:érir</t></v>
+<v><i>querner</i>              <t>aim:er</t></v>
+<v><i>questionner</i>          <t>aim:er</t></v>
+<v><i>quêter</i>              <t>aim:er</t></v>
+<v><i>queuter</i>              <t>aim:er</t></v>
+<v><i>quiller</i>              <t>aim:er</t></v>
+<v><i>quimper</i>              <t>aim:er</t></v>
+<v><i>quintessencier</i>       <t>aim:er</t></v>
+<v><i>quintupler</i>           <t>aim:er</t></v>
+<v><i>quittancer</i>           <t>pla:cer</t></v>
+<v><i>quitter</i>              <t>aim:er</t></v>
+<v><i>quotienter</i>           <t>aim:er</t></v>
+<v><i>quotter</i>              <t>aim:er</t></v>
+<v><i>rabâcher</i>            <t>aim:er</t></v>
+<v><i>rabaisser</i>            <t>aim:er</t></v>
+<v><i>rabanter</i>             <t>aim:er</t></v>
+<v><i>rabattre</i>             <t>bat:tre</t></v>
+<v><i>rabibocher</i>           <t>aim:er</t></v>
+<v><i>rabioter</i>             <t>aim:er</t></v>
+<v><i>râbler</i>              <t>aim:er</t></v>
+<v><i>rabonnir</i>             <t>fin:ir</t></v>
+<v><i>raboter</i>              <t>aim:er</t></v>
+<v><i>rabougrir</i>            <t>fin:ir</t></v>
+<v><i>rabouter</i>             <t>aim:er</t></v>
+<v><i>rabrouer</i>             <t>aim:er</t></v>
+<v><i>raccommoder</i>          <t>aim:er</t></v>
+<v><i>raccompagner</i>         <t>aim:er</t></v>
+<v><i>raccorder</i>            <t>aim:er</t></v>
+<v><i>raccourcir</i>           <t>fin:ir</t></v>
+<v><i>raccoutrer</i>           <t>aim:er</t></v>
+<v><i>raccoutumer</i>          <t>aim:er</t></v>
+<v><i>raccrocher</i>           <t>aim:er</t></v>
+<v><i>racheter</i>             <t>ach:eter</t></v>
+<v><i>raciner</i>              <t>aim:er</t></v>
+<v><i>racler</i>               <t>aim:er</t></v>
+<v><i>racoler</i>              <t>aim:er</t></v>
+<v><i>raconter</i>             <t>aim:er</t></v>
+<v><i>racornir</i>             <t>fin:ir</t></v>
+<v><i>rader</i>                        <t>aim:er</t></v>
+<v><i>radicaliser</i>          <t>aim:er</t></v>
+<v><i>radier</i>               <t>aim:er</t></v>
+<v><i>radiner</i>              <t>aim:er</t></v>
+<v><i>radiobaliser</i>         <t>aim:er</t></v>
+<v><i>radiodiffuser</i>                <t>aim:er</t></v>
+<v><i>radiographier</i>                <t>aim:er</t></v>
+<v><i>radioguider</i>          <t>aim:er</t></v>
+<v><i>radioscoper</i>          <t>aim:er</t></v>
+<v><i>radiotélégraphier</i>  <t>aim:er</t></v>
+<v><i>radoter</i>              <t>aim:er</t></v>
+<v><i>radouber</i>             <t>aim:er</t></v>
+<v><i>radoucir</i>             <t>fin:ir</t></v>
+<v><i>raffermir</i>            <t>fin:ir</t></v>
+<v><i>raffiner</i>             <t>aim:er</t></v>
+<v><i>raffoler</i>             <t>aim:er</t></v>
+<v><i>raffûter</i>            <t>aim:er</t></v>
+<v><i>rafistoler</i>           <t>aim:er</t></v>
+<v><i>rafler</i>               <t>aim:er</t></v>
+<v><i>rafraîchir</i>          <t>fin:ir</t></v>
+<v><i>ragaillardir</i>         <t>fin:ir</t></v>
+<v><i>rager</i>                        <t>man:ger</t></v>
+<v><i>ragoter</i>              <t>aim:er</t></v>
+<v><i>ragoûter</i>            <t>aim:er</t></v>
+<v><i>ragrafer</i>             <t>aim:er</t></v>
+<v><i>ragréer</i>             <t>aim:er</t></v>
+<v><i>raguer</i>               <t>aim:er</t></v>
+<v><i>railler</i>              <t>aim:er</t></v>
+<v><i>rainer</i>               <t>aim:er</t></v>
+<v><i>raineter</i>             <t>j:eter</t></v>
+<v><i>rainurer</i>             <t>aim:er</t></v>
+<v><i>raire</i>                        <t>extra:ire</t></v>
+<v><i>raisonner</i>            <t>aim:er</t></v>
+<v><i>rajeunir</i>             <t>fin:ir</t></v>
+<v><i>rajouter</i>             <t>aim:er</t></v>
+<v><i>rajuster</i>             <t>aim:er</t></v>
+<v><i>ralentir</i>             <t>fin:ir</t></v>
+<v><i>râler</i>                       <t>aim:er</t></v>
+<v><i>ralinguer</i>            <t>aim:er</t></v>
+<v><i>raller</i>               <t>aim:er</t></v>
+<v><i>rallier</i>              <t>aim:er</t></v>
+<v><i>rallonger</i>            <t>man:ger</t></v>
+<v><i>rallumer</i>             <t>aim:er</t></v>
+<v><i>ramager</i>              <t>man:ger</t></v>
+<v><i>ramailler</i>            <t>aim:er</t></v>
+<v><i>ramander</i>             <t>aim:er</t></v>
+<v><i>ramarrer</i>             <t>aim:er</t></v>
+<v><i>ramasser</i>             <t>aim:er</t></v>
+<v><i>ramender</i>             <t>aim:er</t></v>
+<v><i>ramener</i>              <t>m:ener</t></v>
+<v><i>ramer</i>                        <t>aim:er</t></v>
+<v><i>rameuter</i>             <t>aim:er</t></v>
+<v><i>ramifier</i>             <t>aim:er</t></v>
+<v><i>ramollir</i>             <t>fin:ir</t></v>
+<v><i>ramoner</i>              <t>aim:er</t></v>
+<v><i>ramper</i>               <t>aim:er</t></v>
+<v><i>rancarder</i>            <t>aim:er</t></v>
+<v><i>rancir</i>               <t>fin:ir</t></v>
+<v><i>rançonner</i>           <t>aim:er</t></v>
+<v><i>randomiser</i>           <t>aim:er</t></v>
+<v><i>randonner</i>            <t>aim:er</t></v>
+<v><i>ranger</i>               <t>man:ger</t></v>
+<v><i>ranimer</i>              <t>aim:er</t></v>
+<v><i>rapapilloter</i>         <t>aim:er</t></v>
+<v><i>rapatrier</i>            <t>aim:er</t></v>
+<v><i>rapatronner</i>          <t>aim:er</t></v>
+<v><i>râper</i>                       <t>aim:er</t></v>
+<v><i>rapetasser</i>           <t>aim:er</t></v>
+<v><i>rapetisser</i>           <t>aim:er</t></v>
+<v><i>rapiner</i>              <t>aim:er</t></v>
+<v><i>raplatir</i>             <t>fin:ir</t></v>
+<v><i>rapointir</i>            <t>fin:ir</t></v>
+<v><i>rappareiller</i>         <t>aim:er</t></v>
+<v><i>rapparier</i>            <t>aim:er</t></v>
+<v><i>rappeler</i>             <t>app:eler</t></v>
+<v><i>rappliquer</i>           <t>aim:er</t></v>
+<v><i>rapporter</i>            <t>aim:er</t></v>
+<v><i>rapprêter</i>           <t>aim:er</t></v>
+<v><i>rapprocher</i>           <t>aim:er</t></v>
+<v><i>rapproprier</i>          <t>aim:er</t></v>
+<v><i>rapprovisionner</i>      <t>aim:er</t></v>
+<v><i>raquer</i>               <t>aim:er</t></v>
+<v><i>raréfier</i>            <t>aim:er</t></v>
+<v><i>raser</i>                        <t>aim:er</t></v>
+<v><i>rassasier</i>            <t>aim:er</t></v>
+<v><i>rassembler</i>           <t>aim:er</t></v>
+<v><i>rasseoir</i>             <t>ass:eoir</t></v>
+<v><i>rasséréner</i>         <t>ali:éner</t></v>
+<v><i>rassir</i>               <t>fin:ir</t></v>
+<v><i>rassoir</i>              <t>ass:oir</t></v>
+<v><i>rassortir</i>            <t>fin:ir</t></v>
+<v><i>rassurer</i>             <t>aim:er</t></v>
+<v><i>ratatiner</i>            <t>aim:er</t></v>
+<v><i>râteler</i>             <t>app:eler</t></v>
+<v><i>rater</i>                        <t>aim:er</t></v>
+<v><i>ratiboiser</i>           <t>aim:er</t></v>
+<v><i>ratifier</i>             <t>aim:er</t></v>
+<v><i>ratiner</i>              <t>aim:er</t></v>
+<v><i>ratiociner</i>           <t>aim:er</t></v>
+<v><i>rationaliser</i>         <t>aim:er</t></v>
+<v><i>rationner</i>            <t>aim:er</t></v>
+<v><i>ratisser</i>             <t>aim:er</t></v>
+<v><i>rattacher</i>            <t>aim:er</t></v>
+<v><i>rattraper</i>            <t>aim:er</t></v>
+<v><i>raturer</i>              <t>aim:er</t></v>
+<v><i>raugmenter</i>           <t>aim:er</t></v>
+<v><i>rauquer</i>              <t>aim:er</t></v>
+<v><i>ravager</i>              <t>man:ger</t></v>
+<v><i>ravaler</i>              <t>aim:er</t></v>
+<v><i>ravauder</i>             <t>aim:er</t></v>
+<v><i>ravigoter</i>            <t>aim:er</t></v>
+<v><i>ravilir</i>              <t>fin:ir</t></v>
+<v><i>raviner</i>              <t>aim:er</t></v>
+<v><i>ravir</i>                        <t>fin:ir</t></v>
+<v><i>raviser</i>              <t>aim:er</t></v>
+<v><i>ravitailler</i>          <t>aim:er</t></v>
+<v><i>raviver</i>              <t>aim:er</t></v>
+<v><i>ravoir</i>               <t>:ravoir</t></v>
+<v><i>rayer</i>                        <t>pa:yer</t></v>
+<v><i>rayonner</i>             <t>aim:er</t></v>
+<v><i>razzier</i>              <t>aim:er</t></v>
+<v><i>réabonner</i>           <t>aim:er</t></v>
+<v><i>réabsorber</i>          <t>aim:er</t></v>
+<v><i>réaccoutumer</i>                <t>aim:er</t></v>
+<v><i>réactiver</i>           <t>aim:er</t></v>
+<v><i>réactualiser</i>                <t>aim:er</t></v>
+<v><i>réadapter</i>           <t>aim:er</t></v>
+<v><i>réadmettre</i>          <t>m:ettre</t></v>
+<v><i>réaffirmer</i>          <t>aim:er</t></v>
+<v><i>réaffûter</i>          <t>aim:er</t></v>
+<v><i>réagir</i>              <t>fin:ir</t></v>
+<v><i>réajuster</i>           <t>aim:er</t></v>
+<v><i>réaléser</i>           <t>l:éser</t></v>
+<v><i>réaligner</i>           <t>aim:er</t></v>
+<v><i>réaliser</i>            <t>aim:er</t></v>
+<v><i>réaménager</i>         <t>man:ger</t></v>
+<v><i>réamorcer</i>           <t>pla:cer</t></v>
+<v><i>réanimer</i>            <t>aim:er</t></v>
+<v><i>réapparaître</i>               <t>rep:aître</t></v>
+<v><i>réapprendre</i>         <t>pr:endre</t></v>
+<v><i>réapprovisionner</i>    <t>aim:er</t></v>
+<v><i>réargenter</i>          <t>aim:er</t></v>
+<v><i>réarmer</i>             <t>aim:er</t></v>
+<v><i>réarranger</i>          <t>man:ger</t></v>
+<v><i>réassigner</i>          <t>aim:er</t></v>
+<v><i>réassortir</i>          <t>fin:ir</t></v>
+<v><i>réassurer</i>           <t>aim:er</t></v>
+<v><i>rebaisser</i>            <t>aim:er</t></v>
+<v><i>rebander</i>             <t>aim:er</t></v>
+<v><i>rebaptiser</i>           <t>aim:er</t></v>
+<v><i>rebâtir</i>             <t>fin:ir</t></v>
+<v><i>rebattre</i>             <t>bat:tre</t></v>
+<v><i>rebeller</i>             <t>aim:er</t></v>
+<v><i>rebiffer</i>             <t>aim:er</t></v>
+<v><i>rebiquer</i>             <t>aim:er</t></v>
+<v><i>reblanchir</i>           <t>fin:ir</t></v>
+<v><i>reboiser</i>             <t>aim:er</t></v>
+<v><i>rebondir</i>             <t>fin:ir</t></v>
+<v><i>reborder</i>             <t>aim:er</t></v>
+<v><i>reboucher</i>            <t>aim:er</t></v>
+<v><i>rebouter</i>             <t>aim:er</t></v>
+<v><i>reboutonner</i>          <t>aim:er</t></v>
+<v><i>rebraguetter</i>         <t>aim:er</t></v>
+<v><i>rebroder</i>             <t>aim:er</t></v>
+<v><i>rebrousser</i>           <t>aim:er</t></v>
+<v><i>rebrûler</i>            <t>aim:er</t></v>
+<v><i>rebuter</i>              <t>aim:er</t></v>
+<v><i>recacheter</i>           <t>j:eter</t></v>
+<v><i>recalcifier</i>          <t>aim:er</t></v>
+<v><i>récalcitrer</i>         <t>aim:er</t></v>
+<v><i>recalculer</i>           <t>aim:er</t></v>
+<v><i>recaler</i>              <t>aim:er</t></v>
+<v><i>récapituler</i>         <t>aim:er</t></v>
+<v><i>recarder</i>             <t>aim:er</t></v>
+<v><i>recarreler</i>           <t>app:eler</t></v>
+<v><i>recaser</i>              <t>aim:er</t></v>
+<v><i>recauser</i>             <t>aim:er</t></v>
+<v><i>recéder</i>             <t>c:éder</t></v>
+<v><i>receler</i>              <t>p:eler</t></v>
+<v><i>recenser</i>             <t>aim:er</t></v>
+<v><i>recentrer</i>            <t>aim:er</t></v>
+<v><i>receper</i>              <t>rec:eper</t></v>
+<v><i>recéper</i>             <t>rec:éper</t></v>
+<v><i>réceptionner</i>                <t>aim:er</t></v>
+<v><i>recercler</i>            <t>aim:er</t></v>
+<v><i>recevoir</i>             <t>dé:cevoir</t></v>
+<v><i>réchampir</i>           <t>fin:ir</t></v>
+<v><i>rechanger</i>            <t>man:ger</t></v>
+<v><i>rechanter</i>            <t>aim:er</t></v>
+<v><i>rechaper</i>             <t>aim:er</t></v>
+<v><i>réchapper</i>           <t>aim:er</t></v>
+<v><i>recharger</i>            <t>man:ger</t></v>
+<v><i>rechasser</i>            <t>aim:er</t></v>
+<v><i>réchauffer</i>          <t>aim:er</t></v>
+<v><i>rechausser</i>           <t>aim:er</t></v>
+<v><i>rechercher</i>           <t>aim:er</t></v>
+<v><i>rechigner</i>            <t>aim:er</t></v>
+<v><i>rechristianiser</i>      <t>aim:er</t></v>
+<v><i>rechuter</i>             <t>aim:er</t></v>
+<v><i>récidiver</i>           <t>aim:er</t></v>
+<v><i>réciproquer</i>         <t>aim:er</t></v>
+<v><i>réciter</i>             <t>aim:er</t></v>
+<v><i>réclamer</i>            <t>aim:er</t></v>
+<v><i>reclasser</i>            <t>aim:er</t></v>
+<v><i>récliner</i>            <t>aim:er</t></v>
+<v><i>reclouer</i>             <t>aim:er</t></v>
+<v><i>recoiffer</i>            <t>aim:er</t></v>
+<v><i>récoler</i>             <t>aim:er</t></v>
+<v><i>recoller</i>             <t>aim:er</t></v>
+<v><i>recolorer</i>            <t>aim:er</t></v>
+<v><i>récolter</i>            <t>aim:er</t></v>
+<v><i>recommander</i>          <t>aim:er</t></v>
+<v><i>recommencer</i>          <t>pla:cer</t></v>
+<v><i>recomparaître</i>               <t>par:aître</t></v>
+<v><i>récompenser</i>         <t>aim:er</t></v>
+<v><i>recomposer</i>           <t>aim:er</t></v>
+<v><i>recompter</i>            <t>aim:er</t></v>
+<v><i>réconcilier</i>         <t>aim:er</t></v>
+<v><i>recondamner</i>          <t>aim:er</t></v>
+<v><i>reconduire</i>           <t>condui:re</t></v>
+<v><i>réconforter</i>         <t>aim:er</t></v>
+<v><i>recongeler</i>           <t>p:eler</t></v>
+<v><i>reconnaître</i>         <t>rep:aître</t></v>
+<v><i>reconnecter</i>          <t>aim:er</t></v>
+<v><i>reconquérir</i>         <t>acqu:érir</t></v>
+<v><i>reconsidérer</i>                <t>réf:érer</t></v>
+<v><i>reconsolider</i>         <t>aim:er</t></v>
+<v><i>reconstituer</i>         <t>aim:er</t></v>
+<v><i>reconstruire</i>         <t>condui:re</t></v>
+<v><i>reconvertir</i>          <t>fin:ir</t></v>
+<v><i>recopier</i>             <t>aim:er</t></v>
+<v><i>recoquiller</i>          <t>aim:er</t></v>
+<v><i>recorder</i>             <t>aim:er</t></v>
+<v><i>recorriger</i>           <t>man:ger</t></v>
+<v><i>recoucher</i>            <t>aim:er</t></v>
+<v><i>recoudre</i>             <t>cou:dre</t></v>
+<v><i>recouper</i>             <t>aim:er</t></v>
+<v><i>recouponner</i>          <t>aim:er</t></v>
+<v><i>recourber</i>            <t>aim:er</t></v>
+<v><i>recourir</i>             <t>cour:ir</t></v>
+<v><i>recouvrer</i>            <t>aim:er</t></v>
+<v><i>recouvrir</i>            <t>ouv:rir</t></v>
+<v><i>recracher</i>            <t>aim:er</t></v>
+<v><i>recréer</i>             <t>aim:er</t></v>
+<v><i>récréer</i>            <t>aim:er</t></v>
+<v><i>recrépir</i>            <t>fin:ir</t></v>
+<v><i>recreuser</i>            <t>aim:er</t></v>
+<v><i>récrier</i>             <t>aim:er</t></v>
+<v><i>récriminer</i>          <t>aim:er</t></v>
+<v><i>récrire</i>             <t>écri:re</t></v>
+<v><i>recristalliser</i>       <t>aim:er</t></v>
+<v><i>recroqueviller</i>       <t>aim:er</t></v>
+<v><i>recruter</i>             <t>aim:er</t></v>
+<v><i>rectifier</i>            <t>aim:er</t></v>
+<v><i>recueillir</i>           <t>cueill:ir</t></v>
+<v><i>recuire</i>              <t>condui:re</t></v>
+<v><i>reculer</i>              <t>aim:er</t></v>
+<v><i>reculotter</i>           <t>aim:er</t></v>
+<v><i>récupérer</i>          <t>réf:érer</t></v>
+<v><i>récurer</i>             <t>aim:er</t></v>
+<v><i>récuser</i>             <t>aim:er</t></v>
+<v><i>recycler</i>             <t>aim:er</t></v>
+<v><i>redécouvrir</i>         <t>ouv:rir</t></v>
+<v><i>redéfaire</i>           <t>f:aire</t></v>
+<v><i>redéfinir</i>           <t>fin:ir</t></v>
+<v><i>redemander</i>           <t>aim:er</t></v>
+<v><i>redémarrer</i>          <t>aim:er</t></v>
+<v><i>redémolir</i>           <t>fin:ir</t></v>
+<v><i>redépecer</i>           <t>dép:ecer</t></v>
+<v><i>redéployer</i>          <t>netto:yer</t></v>
+<v><i>redescendre</i>          <t>ten:dre</t></v>
+<v><i>redévelopper</i>                <t>aim:er</t></v>
+<v><i>redevenir</i>            <t>t:enir</t></v>
+<v><i>rediffuser</i>           <t>aim:er</t></v>
+<v><i>rédiger</i>             <t>man:ger</t></v>
+<v><i>rédimer</i>             <t>aim:er</t></v>
+<v><i>redire</i>               <t>d:ire</t></v>
+<v><i>rediscuter</i>           <t>aim:er</t></v>
+<v><i>redistribuer</i>         <t>aim:er</t></v>
+<v><i>redonder</i>             <t>aim:er</t></v>
+<v><i>redonner</i>             <t>aim:er</t></v>
+<v><i>redorer</i>              <t>aim:er</t></v>
+<v><i>redoubler</i>            <t>aim:er</t></v>
+<v><i>redouter</i>             <t>aim:er</t></v>
+<v><i>redresser</i>            <t>aim:er</t></v>
+<v><i>réduire</i>             <t>condui:re</t></v>
+<v><i>redynamiser</i>          <t>aim:er</t></v>
+<v><i>réécouter</i>          <t>aim:er</t></v>
+<v><i>réédifier</i>          <t>aim:er</t></v>
+<v><i>rééditer</i>           <t>aim:er</t></v>
+<v><i>rééduquer</i>          <t>aim:er</t></v>
+<v><i>réélire</i>            <t>l:ire</t></v>
+<v><i>réembaucher</i>         <t>aim:er</t></v>
+<v><i>réemployer</i>          <t>netto:yer</t></v>
+<v><i>réemprunter</i>         <t>aim:er</t></v>
+<v><i>réengager</i>           <t>man:ger</t></v>
+<v><i>réenregistrer</i>               <t>aim:er</t></v>
+<v><i>réensemencer</i>                <t>pla:cer</t></v>
+<v><i>rééquilibrer</i>               <t>aim:er</t></v>
+<v><i>réer</i>                        <t>aim:er</t></v>
+<v><i>réescompter</i>         <t>aim:er</t></v>
+<v><i>réessayer</i>           <t>pa:yer</t></v>
+<v><i>réévaluer</i>          <t>aim:er</t></v>
+<v><i>réexaminer</i>          <t>aim:er</t></v>
+<v><i>réexpédier</i>         <t>aim:er</t></v>
+<v><i>réexporter</i>          <t>aim:er</t></v>
+<v><i>refaçonner</i>          <t>aim:er</t></v>
+<v><i>refendre</i>             <t>ten:dre</t></v>
+<v><i>référencer</i>         <t>pla:cer</t></v>
+<v><i>référer</i>            <t>réf:érer</t></v>
+<v><i>refermer</i>             <t>aim:er</t></v>
+<v><i>refiler</i>              <t>aim:er</t></v>
+<v><i>réfléchir</i>          <t>fin:ir</t></v>
+<v><i>refléter</i>            <t>décr:éter</t></v>
+<v><i>refleurir</i>            <t>fin:ir</t></v>
+<v><i>refluer</i>              <t>aim:er</t></v>
+<v><i>refondre</i>             <t>ten:dre</t></v>
+<v><i>reforger</i>             <t>man:ger</t></v>
+<v><i>reformer</i>             <t>aim:er</t></v>
+<v><i>réformer</i>            <t>aim:er</t></v>
+<v><i>reformuler</i>           <t>aim:er</t></v>
+<v><i>refouiller</i>           <t>aim:er</t></v>
+<v><i>refouler</i>             <t>aim:er</t></v>
+<v><i>refourrer</i>            <t>aim:er</t></v>
+<v><i>réfracter</i>           <t>aim:er</t></v>
+<v><i>réfréner</i>           <t>ali:éner</t></v>
+<v><i>réfrigérer</i>         <t>réf:érer</t></v>
+<v><i>refroidir</i>            <t>fin:ir</t></v>
+<v><i>réfugier</i>            <t>aim:er</t></v>
+<v><i>refuser</i>              <t>aim:er</t></v>
+<v><i>réfuter</i>             <t>aim:er</t></v>
+<v><i>regagner</i>             <t>aim:er</t></v>
+<v><i>régaler</i>             <t>aim:er</t></v>
+<v><i>regarder</i>             <t>aim:er</t></v>
+<v><i>regarnir</i>             <t>fin:ir</t></v>
+<v><i>régater</i>             <t>aim:er</t></v>
+<v><i>regazonner</i>           <t>aim:er</t></v>
+<v><i>regeler</i>              <t>p:eler</t></v>
+<v><i>regénérer</i>          <t>réf:érer</t></v>
+<v><i>régénérer</i>         <t>réf:érer</t></v>
+<v><i>régenter</i>            <t>aim:er</t></v>
+<v><i>regimber</i>             <t>aim:er</t></v>
+<v><i>régionaliser</i>                <t>aim:er</t></v>
+<v><i>régir</i>                       <t>fin:ir</t></v>
+<v><i>registrer</i>            <t>aim:er</t></v>
+<v><i>réglementer</i>         <t>aim:er</t></v>
+<v><i>régler</i>              <t>r:égler</t></v>
+<v><i>régner</i>              <t>r:égner</t></v>
+<v><i>regonfler</i>            <t>aim:er</t></v>
+<v><i>regorger</i>             <t>man:ger</t></v>
+<v><i>regratter</i>            <t>aim:er</t></v>
+<v><i>regréer</i>             <t>aim:er</t></v>
+<v><i>regreffer</i>            <t>aim:er</t></v>
+<v><i>régresser</i>           <t>aim:er</t></v>
+<v><i>regretter</i>            <t>aim:er</t></v>
+<v><i>regrimper</i>            <t>aim:er</t></v>
+<v><i>regrossir</i>            <t>fin:ir</t></v>
+<v><i>regrouper</i>            <t>aim:er</t></v>
+<v><i>régulariser</i>         <t>aim:er</t></v>
+<v><i>réguler</i>             <t>aim:er</t></v>
+<v><i>régurgiter</i>          <t>aim:er</t></v>
+<v><i>réhabiliter</i>         <t>aim:er</t></v>
+<v><i>réhabituer</i>          <t>aim:er</t></v>
+<v><i>rehausser</i>            <t>aim:er</t></v>
+<v><i>réhydrater</i>          <t>aim:er</t></v>
+<v><i>réifier</i>             <t>aim:er</t></v>
+<v><i>réimperméabiliser</i>  <t>aim:er</t></v>
+<v><i>réimplanter</i>         <t>aim:er</t></v>
+<v><i>réimporter</i>          <t>aim:er</t></v>
+<v><i>réimposer</i>           <t>aim:er</t></v>
+<v><i>réimprimer</i>          <t>aim:er</t></v>
+<v><i>réincarner</i>          <t>aim:er</t></v>
+<v><i>réincorporer</i>                <t>aim:er</t></v>
+<v><i>réinfecter</i>          <t>aim:er</t></v>
+<v><i>réinscrire</i>          <t>écri:re</t></v>
+<v><i>réinsérer</i>          <t>réf:érer</t></v>
+<v><i>réinstaller</i>         <t>aim:er</t></v>
+<v><i>réintégrer</i>         <t>int:égrer</t></v>
+<v><i>réintroduire</i>                <t>condui:re</t></v>
+<v><i>réinventer</i>          <t>aim:er</t></v>
+<v><i>réinvestir</i>          <t>fin:ir</t></v>
+<v><i>réinviter</i>           <t>aim:er</t></v>
+<v><i>réitérer</i>           <t>réf:érer</t></v>
+<v><i>rejaillir</i>            <t>fin:ir</t></v>
+<v><i>rejeter</i>              <t>j:eter</t></v>
+<v><i>rejoindre</i>            <t>crai:ndre</t></v>
+<v><i>rejointoyer</i>          <t>netto:yer</t></v>
+<v><i>rejouer</i>              <t>aim:er</t></v>
+<v><i>réjouir</i>             <t>fin:ir</t></v>
+<v><i>rejuger</i>              <t>man:ger</t></v>
+<v><i>relâcher</i>            <t>aim:er</t></v>
+<v><i>relaisser</i>            <t>aim:er</t></v>
+<v><i>relancer</i>             <t>pla:cer</t></v>
+<v><i>rélargir</i>            <t>fin:ir</t></v>
+<v><i>relater</i>              <t>aim:er</t></v>
+<v><i>relativiser</i>          <t>aim:er</t></v>
+<v><i>relaver</i>              <t>aim:er</t></v>
+<v><i>relaxer</i>              <t>aim:er</t></v>
+<v><i>relayer</i>              <t>pa:yer</t></v>
+<v><i>reléguer</i>            <t>l:éguer</t></v>
+<v><i>relever</i>              <t>l:ever</t></v>
+<v><i>relier</i>               <t>aim:er</t></v>
+<v><i>relire</i>               <t>l:ire</t></v>
+<v><i>reloger</i>              <t>man:ger</t></v>
+<v><i>reloqueter</i>           <t>j:eter</t></v>
+<v><i>relouer</i>              <t>aim:er</t></v>
+<v><i>reluire</i>              <t>nui:re</t></v>
+<v><i>reluquer</i>             <t>aim:er</t></v>
+<v><i>remâcher</i>            <t>aim:er</t></v>
+<v><i>remailler</i>            <t>aim:er</t></v>
+<v><i>remanger</i>             <t>man:ger</t></v>
+<v><i>remanier</i>             <t>aim:er</t></v>
+<v><i>remaquiller</i>          <t>aim:er</t></v>
+<v><i>remarcher</i>            <t>aim:er</t></v>
+<v><i>remarier</i>             <t>aim:er</t></v>
+<v><i>remarquer</i>            <t>aim:er</t></v>
+<v><i>remastiquer</i>          <t>aim:er</t></v>
+<v><i>remballer</i>            <t>aim:er</t></v>
+<v><i>rembarquer</i>           <t>aim:er</t></v>
+<v><i>rembarrer</i>            <t>aim:er</t></v>
+<v><i>rembiner</i>             <t>aim:er</t></v>
+<v><i>remblaver</i>            <t>aim:er</t></v>
+<v><i>remblayer</i>            <t>pa:yer</t></v>
+<v><i>remboîter</i>           <t>aim:er</t></v>
+<v><i>rembouger</i>            <t>man:ger</t></v>
+<v><i>rembourrer</i>           <t>aim:er</t></v>
+<v><i>rembourser</i>           <t>aim:er</t></v>
+<v><i>rembrunir</i>            <t>fin:ir</t></v>
+<v><i>rembucher</i>            <t>aim:er</t></v>
+<v><i>remédier</i>            <t>aim:er</t></v>
+<v><i>remembrer</i>            <t>aim:er</t></v>
+<v><i>remémorer</i>           <t>aim:er</t></v>
+<v><i>remercier</i>            <t>aim:er</t></v>
+<v><i>remettre</i>             <t>m:ettre</t></v>
+<v><i>remeubler</i>            <t>aim:er</t></v>
+<v><i>remilitariser</i>                <t>aim:er</t></v>
+<v><i>remiser</i>              <t>aim:er</t></v>
+<v><i>remmailler</i>           <t>aim:er</t></v>
+<v><i>remmailloter</i>         <t>aim:er</t></v>
+<v><i>remmancher</i>           <t>aim:er</t></v>
+<v><i>remmener</i>             <t>m:ener</t></v>
+<v><i>remodeler</i>            <t>p:eler</t></v>
+<v><i>remonter</i>             <t>aim:er</t></v>
+<v><i>remontrer</i>            <t>aim:er</t></v>
+<v><i>remordre</i>             <t>ten:dre</t></v>
+<v><i>remorquer</i>            <t>aim:er</t></v>
+<v><i>remoucher</i>            <t>aim:er</t></v>
+<v><i>remoudre</i>             <t>mou:dre</t></v>
+<v><i>remouiller</i>           <t>aim:er</t></v>
+<v><i>rempailler</i>           <t>aim:er</t></v>
+<v><i>rempaqueter</i>          <t>j:eter</t></v>
+<v><i>remparer</i>             <t>aim:er</t></v>
+<v><i>rempiéter</i>           <t>décr:éter</t></v>
+<v><i>rempiler</i>             <t>aim:er</t></v>
+<v><i>remplacer</i>            <t>pla:cer</t></v>
+<v><i>remplier</i>             <t>aim:er</t></v>
+<v><i>remplir</i>              <t>fin:ir</t></v>
+<v><i>remployer</i>            <t>netto:yer</t></v>
+<v><i>remplumer</i>            <t>aim:er</t></v>
+<v><i>rempocher</i>            <t>aim:er</t></v>
+<v><i>rempoissonner</i>                <t>aim:er</t></v>
+<v><i>remporter</i>            <t>aim:er</t></v>
+<v><i>rempoter</i>             <t>aim:er</t></v>
+<v><i>remprunter</i>           <t>aim:er</t></v>
+<v><i>remuer</i>               <t>aim:er</t></v>
+<v><i>rémunérer</i>          <t>réf:érer</t></v>
+<v><i>renâcler</i>            <t>aim:er</t></v>
+<v><i>renaître</i>            <t>ren:aître</t></v>
+<v><i>renarder</i>             <t>aim:er</t></v>
+<v><i>renauder</i>             <t>aim:er</t></v>
+<v><i>rencaisser</i>           <t>aim:er</t></v>
+<v><i>renchaîner</i>          <t>aim:er</t></v>
+<v><i>renchérir</i>           <t>fin:ir</t></v>
+<v><i>rencogner</i>            <t>aim:er</t></v>
+<v><i>rencontrer</i>           <t>aim:er</t></v>
+<v><i>rendormir</i>            <t>dor:mir</t></v>
+<v><i>rendosser</i>            <t>aim:er</t></v>
+<v><i>rendre</i>               <t>ten:dre</t></v>
+<v><i>renégocier</i>          <t>aim:er</t></v>
+<v><i>rénetter</i>            <t>aim:er</t></v>
+<v><i>renfaîter</i>           <t>aim:er</t></v>
+<v><i>renfermer</i>            <t>aim:er</t></v>
+<v><i>renfiler</i>             <t>aim:er</t></v>
+<v><i>renflammer</i>           <t>aim:er</t></v>
+<v><i>renfler</i>              <t>aim:er</t></v>
+<v><i>renflouer</i>            <t>aim:er</t></v>
+<v><i>renfoncer</i>            <t>pla:cer</t></v>
+<v><i>renforcer</i>            <t>pla:cer</t></v>
+<v><i>renformir</i>            <t>fin:ir</t></v>
+<v><i>renfrogner</i>           <t>aim:er</t></v>
+<v><i>rengager</i>             <t>man:ger</t></v>
+<v><i>rengainer</i>            <t>aim:er</t></v>
+<v><i>rengorger</i>            <t>man:ger</t></v>
+<v><i>rengracier</i>           <t>aim:er</t></v>
+<v><i>rengraisser</i>          <t>aim:er</t></v>
+<v><i>rengréner</i>           <t>ali:éner</t></v>
+<v><i>rengrener</i>            <t>m:ener</t></v>
+<v><i>renier</i>               <t>aim:er</t></v>
+<v><i>renifler</i>             <t>aim:er</t></v>
+<v><i>renommer</i>             <t>aim:er</t></v>
+<v><i>renoncer</i>             <t>pla:cer</t></v>
+<v><i>renouer</i>              <t>aim:er</t></v>
+<v><i>renouveler</i>           <t>app:eler</t></v>
+<v><i>rénover</i>             <t>aim:er</t></v>
+<v><i>renquiller</i>           <t>aim:er</t></v>
+<v><i>renseigner</i>           <t>aim:er</t></v>
+<v><i>rentabiliser</i>         <t>aim:er</t></v>
+<v><i>rentamer</i>             <t>aim:er</t></v>
+<v><i>renter</i>               <t>aim:er</t></v>
+<v><i>rentoiler</i>            <t>aim:er</t></v>
+<v><i>rentraîner</i>          <t>aim:er</t></v>
+<v><i>rentraire</i>            <t>extra:ire</t></v>
+<v><i>rentrer</i>              <t>aim:er</t></v>
+<v><i>rentrouvrir</i>          <t>ouv:rir</t></v>
+<v><i>renvelopper</i>          <t>aim:er</t></v>
+<v><i>renvenimer</i>           <t>aim:er</t></v>
+<v><i>renverger</i>            <t>man:ger</t></v>
+<v><i>renverser</i>            <t>aim:er</t></v>
+<v><i>renvider</i>             <t>aim:er</t></v>
+<v><i>renvier</i>              <t>aim:er</t></v>
+<v><i>renvoyer</i>             <t>env:oyer</t></v>
+<v><i>réoccuper</i>           <t>aim:er</t></v>
+<v><i>réopérer</i>           <t>réf:érer</t></v>
+<v><i>réorchestrer</i>                <t>aim:er</t></v>
+<v><i>réordonnancer</i>               <t>pla:cer</t></v>
+<v><i>réordonner</i>          <t>aim:er</t></v>
+<v><i>réorganiser</i>         <t>aim:er</t></v>
+<v><i>réorienter</i>          <t>aim:er</t></v>
+<v><i>repairer</i>             <t>aim:er</t></v>
+<v><i>repaître</i>            <t>rep:aître</t></v>
+<v><i>répandre</i>            <t>ten:dre</t></v>
+<v><i>reparaître</i>          <t>rep:aître</t></v>
+<v><i>réparer</i>             <t>aim:er</t></v>
+<v><i>reparler</i>             <t>aim:er</t></v>
+<v><i>repartager</i>           <t>man:ger</t></v>
+<v><i>répartir</i>            <t>fin:ir</t></v>
+<v><i>repartir</i>             <t>men:tir</t></v>
+<v><i>repasser</i>             <t>aim:er</t></v>
+<v><i>repatiner</i>            <t>aim:er</t></v>
+<v><i>repaver</i>              <t>aim:er</t></v>
+<v><i>repayer</i>              <t>pa:yer</t></v>
+<v><i>repêcher</i>            <t>aim:er</t></v>
+<v><i>repeigner</i>            <t>aim:er</t></v>
+<v><i>repeindre</i>            <t>crai:ndre</t></v>
+<v><i>rependre</i>             <t>ten:dre</t></v>
+<v><i>repenser</i>             <t>aim:er</t></v>
+<v><i>repentir</i>             <t>men:tir</t></v>
+<v><i>repercer</i>             <t>pla:cer</t></v>
+<v><i>répercuter</i>          <t>aim:er</t></v>
+<v><i>reperdre</i>             <t>ten:dre</t></v>
+<v><i>repérer</i>             <t>réf:érer</t></v>
+<v><i>répertorier</i>         <t>aim:er</t></v>
+<v><i>répéter</i>            <t>décr:éter</t></v>
+<v><i>repeupler</i>            <t>aim:er</t></v>
+<v><i>repincer</i>             <t>pla:cer</t></v>
+<v><i>repiquer</i>             <t>aim:er</t></v>
+<v><i>replacer</i>             <t>pla:cer</t></v>
+<v><i>replanter</i>            <t>aim:er</t></v>
+<v><i>replâtrer</i>           <t>aim:er</t></v>
+<v><i>replier</i>              <t>aim:er</t></v>
+<v><i>répliquer</i>           <t>aim:er</t></v>
+<v><i>replisser</i>            <t>aim:er</t></v>
+<v><i>replonger</i>            <t>man:ger</t></v>
+<v><i>reployer</i>             <t>netto:yer</t></v>
+<v><i>repolir</i>              <t>fin:ir</t></v>
+<v><i>répondre</i>            <t>ten:dre</t></v>
+<v><i>reporter</i>             <t>aim:er</t></v>
+<v><i>reposer</i>              <t>aim:er</t></v>
+<v><i>repousser</i>            <t>aim:er</t></v>
+<v><i>reprendre</i>            <t>pr:endre</t></v>
+<v><i>représenter</i>         <t>aim:er</t></v>
+<v><i>réprimander</i>         <t>aim:er</t></v>
+<v><i>réprimer</i>            <t>aim:er</t></v>
+<v><i>repriser</i>             <t>aim:er</t></v>
+<v><i>reprocher</i>            <t>aim:er</t></v>
+<v><i>reproduire</i>           <t>condui:re</t></v>
+<v><i>reprogrammer</i>         <t>aim:er</t></v>
+<v><i>reprographier</i>                <t>aim:er</t></v>
+<v><i>reprouver</i>            <t>aim:er</t></v>
+<v><i>réprouver</i>           <t>aim:er</t></v>
+<v><i>républicaniser</i>      <t>aim:er</t></v>
+<v><i>répudier</i>            <t>aim:er</t></v>
+<v><i>répugner</i>            <t>aim:er</t></v>
+<v><i>réputer</i>             <t>aim:er</t></v>
+<v><i>requérir</i>            <t>acqu:érir</t></v>
+<v><i>requinquer</i>           <t>aim:er</t></v>
+<v><i>réquisitionner</i>      <t>aim:er</t></v>
+<v><i>resaler</i>              <t>aim:er</t></v>
+<v><i>resaluer</i>             <t>aim:er</t></v>
+<v><i>rescinder</i>            <t>aim:er</t></v>
+<v><i>réséquer</i>           <t>diss:équer</t></v>
+<v><i>réserver</i>            <t>aim:er</t></v>
+<v><i>résider</i>             <t>aim:er</t></v>
+<v><i>résigner</i>            <t>aim:er</t></v>
+<v><i>résilier</i>            <t>aim:er</t></v>
+<v><i>résiner</i>             <t>aim:er</t></v>
+<v><i>résinifier</i>          <t>aim:er</t></v>
+<v><i>résister</i>            <t>aim:er</t></v>
+<v><i>resocialiser</i>         <t>aim:er</t></v>
+<v><i>résonner</i>            <t>aim:er</t></v>
+<v><i>résorber</i>            <t>aim:er</t></v>
+<v><i>résoudre</i>            <t>réso:udre</t></v>
+<v><i>respecter</i>            <t>aim:er</t></v>
+<v><i>respirer</i>             <t>aim:er</t></v>
+<v><i>resplendir</i>           <t>fin:ir</t></v>
+<v><i>responsabiliser</i>      <t>aim:er</t></v>
+<v><i>resquiller</i>           <t>aim:er</t></v>
+<v><i>ressaigner</i>           <t>aim:er</t></v>
+<v><i>ressaisir</i>            <t>fin:ir</t></v>
+<v><i>ressasser</i>            <t>aim:er</t></v>
+<v><i>ressauter</i>            <t>aim:er</t></v>
+<v><i>ressayer</i>             <t>pa:yer</t></v>
+<v><i>ressembler</i>           <t>aim:er</t></v>
+<v><i>ressemeler</i>           <t>app:eler</t></v>
+<v><i>ressemer</i>             <t>s:emer</t></v>
+<v><i>ressentir</i>            <t>men:tir</t></v>
+<v><i>resserrer</i>            <t>aim:er</t></v>
+<v><i>resservir</i>            <t>ser:vir</t></v>
+<v><i>ressortir</i>            <t>men:tir</t></v>
+<v><i>ressouder</i>            <t>aim:er</t></v>
+<v><i>ressourcer</i>           <t>pla:cer</t></v>
+<v><i>ressuer</i>              <t>aim:er</t></v>
+<v><i>ressurgir</i>            <t>fin:ir</t></v>
+<v><i>ressusciter</i>          <t>aim:er</t></v>
+<v><i>ressuyer</i>             <t>netto:yer</t></v>
+<v><i>restaurer</i>            <t>aim:er</t></v>
+<v><i>rester</i>               <t>aim:er</t></v>
+<v><i>restituer</i>            <t>aim:er</t></v>
+<v><i>restreindre</i>          <t>crai:ndre</t></v>
+<v><i>restructurer</i>         <t>aim:er</t></v>
+<v><i>résulter</i>            <t>aim:er</t></v>
+<v><i>résumer</i>             <t>aim:er</t></v>
+<v><i>resurchauffer</i>                <t>aim:er</t></v>
+<v><i>resurgir</i>             <t>fin:ir</t></v>
+<v><i>rétablir</i>            <t>fin:ir</t></v>
+<v><i>retailler</i>            <t>aim:er</t></v>
+<v><i>rétamer</i>             <t>aim:er</t></v>
+<v><i>retaper</i>              <t>aim:er</t></v>
+<v><i>retapisser</i>           <t>aim:er</t></v>
+<v><i>retarder</i>             <t>aim:er</t></v>
+<v><i>retâter</i>             <t>aim:er</t></v>
+<v><i>reteindre</i>            <t>crai:ndre</t></v>
+<v><i>retendre</i>             <t>ten:dre</t></v>
+<v><i>retenir</i>              <t>t:enir</t></v>
+<v><i>retenter</i>             <t>aim:er</t></v>
+<v><i>retentir</i>             <t>fin:ir</t></v>
+<v><i>retercer</i>             <t>pla:cer</t></v>
+<v><i>reterser</i>             <t>aim:er</t></v>
+<v><i>réticuler</i>           <t>aim:er</t></v>
+<v><i>retirer</i>              <t>aim:er</t></v>
+<v><i>retisser</i>             <t>aim:er</t></v>
+<v><i>retomber</i>             <t>aim:er</t></v>
+<v><i>retondre</i>             <t>ten:dre</t></v>
+<v><i>retordre</i>             <t>ten:dre</t></v>
+<v><i>rétorquer</i>           <t>aim:er</t></v>
+<v><i>retoucher</i>            <t>aim:er</t></v>
+<v><i>retouper</i>             <t>aim:er</t></v>
+<v><i>retourner</i>            <t>aim:er</t></v>
+<v><i>retracer</i>             <t>pla:cer</t></v>
+<v><i>rétracter</i>           <t>aim:er</t></v>
+<v><i>retraduire</i>           <t>condui:re</t></v>
+<v><i>retraiter</i>            <t>aim:er</t></v>
+<v><i>retrancher</i>           <t>aim:er</t></v>
+<v><i>retranscrire</i>         <t>écri:re</t></v>
+<v><i>retransmettre</i>                <t>m:ettre</t></v>
+<v><i>retravailler</i>         <t>aim:er</t></v>
+<v><i>retraverser</i>          <t>aim:er</t></v>
+<v><i>rétrécir</i>           <t>fin:ir</t></v>
+<v><i>rétreindre</i>          <t>crai:ndre</t></v>
+<v><i>retremper</i>            <t>aim:er</t></v>
+<v><i>rétribuer</i>           <t>aim:er</t></v>
+<v><i>rétroagir</i>           <t>fin:ir</t></v>
+<v><i>rétrocéder</i>         <t>c:éder</t></v>
+<v><i>rétrograder</i>         <t>aim:er</t></v>
+<v><i>retrousser</i>           <t>aim:er</t></v>
+<v><i>retrouver</i>            <t>aim:er</t></v>
+<v><i>réunifier</i>           <t>aim:er</t></v>
+<v><i>réunir</i>              <t>fin:ir</t></v>
+<v><i>réussir</i>             <t>fin:ir</t></v>
+<v><i>réutiliser</i>          <t>aim:er</t></v>
+<v><i>revacciner</i>           <t>aim:er</t></v>
+<v><i>revaloriser</i>          <t>aim:er</t></v>
+<v><i>revancher</i>            <t>aim:er</t></v>
+<v><i>rêvasser</i>            <t>aim:er</t></v>
+<v><i>réveiller</i>           <t>aim:er</t></v>
+<v><i>réveillonner</i>                <t>aim:er</t></v>
+<v><i>révéler</i>            <t>rév:éler</t></v>
+<v><i>revendiquer</i>          <t>aim:er</t></v>
+<v><i>revendre</i>             <t>ten:dre</t></v>
+<v><i>revenir</i>              <t>t:enir</t></v>
+<v><i>réverbérer</i>         <t>réf:érer</t></v>
+<v><i>revercher</i>            <t>aim:er</t></v>
+<v><i>reverdir</i>             <t>fin:ir</t></v>
+<v><i>révérer</i>            <t>réf:érer</t></v>
+<v><i>rêver</i>                       <t>aim:er</t></v>
+<v><i>reverser</i>             <t>aim:er</t></v>
+<v><i>revêtir</i>             <t>vêt:ir</t></v>
+<v><i>revigorer</i>            <t>aim:er</t></v>
+<v><i>revirer</i>              <t>aim:er</t></v>
+<v><i>réviser</i>             <t>aim:er</t></v>
+<v><i>revisser</i>             <t>aim:er</t></v>
+<v><i>revitaliser</i>          <t>aim:er</t></v>
+<v><i>revivifier</i>           <t>aim:er</t></v>
+<v><i>revivre</i>              <t>v:ivre</t></v>
+<v><i>revoir</i>               <t>v:oir</t></v>
+<v><i>revoler</i>              <t>aim:er</t></v>
+<v><i>révolter</i>            <t>aim:er</t></v>
+<v><i>révolutionner</i>               <t>aim:er</t></v>
+<v><i>révolvériser</i>               <t>aim:er</t></v>
+<v><i>révoquer</i>            <t>aim:er</t></v>
+<v><i>revoter</i>              <t>aim:er</t></v>
+<v><i>révulser</i>            <t>aim:er</t></v>
+<v><i>rewriter</i>             <t>aim:er</t></v>
+<v><i>rhabiller</i>            <t>aim:er</t></v>
+<v><i>rhumer</i>               <t>aim:er</t></v>
+<v><i>ribler</i>               <t>aim:er</t></v>
+<v><i>ribouler</i>             <t>aim:er</t></v>
+<v><i>ricaner</i>              <t>aim:er</t></v>
+<v><i>ricocher</i>             <t>aim:er</t></v>
+<v><i>rider</i>                        <t>aim:er</t></v>
+<v><i>ridiculiser</i>          <t>aim:er</t></v>
+<v><i>riffauder</i>            <t>aim:er</t></v>
+<v><i>rifler</i>               <t>aim:er</t></v>
+<v><i>rigidifier</i>           <t>aim:er</t></v>
+<v><i>rigoler</i>              <t>aim:er</t></v>
+<v><i>rimailler</i>            <t>aim:er</t></v>
+<v><i>rimer</i>                        <t>aim:er</t></v>
+<v><i>rincer</i>               <t>pla:cer</t></v>
+<v><i>ringarder</i>            <t>aim:er</t></v>
+<v><i>rioter</i>               <t>aim:er</t></v>
+<v><i>ripailler</i>            <t>aim:er</t></v>
+<v><i>riper</i>                        <t>aim:er</t></v>
+<v><i>ripoliner</i>            <t>aim:er</t></v>
+<v><i>riposter</i>             <t>aim:er</t></v>
+<v><i>rire</i>                 <t>r:ire</t></v>
+<v><i>risquer</i>              <t>aim:er</t></v>
+<v><i>rissoler</i>             <t>aim:er</t></v>
+<v><i>ristourner</i>           <t>aim:er</t></v>
+<v><i>ritualiser</i>           <t>aim:er</t></v>
+<v><i>rivaliser</i>            <t>aim:er</t></v>
+<v><i>river</i>                        <t>aim:er</t></v>
+<v><i>riveter</i>              <t>j:eter</t></v>
+<v><i>rober</i>                        <t>aim:er</t></v>
+<v><i>robotiser</i>            <t>aim:er</t></v>
+<v><i>rocher</i>               <t>aim:er</t></v>
+<v><i>rocouer</i>              <t>aim:er</t></v>
+<v><i>rocquer</i>              <t>aim:er</t></v>
+<v><i>rôdailler</i>           <t>aim:er</t></v>
+<v><i>roder</i>                        <t>aim:er</t></v>
+<v><i>rôder</i>                       <t>aim:er</t></v>
+<v><i>rogner</i>               <t>aim:er</t></v>
+<v><i>rognonner</i>            <t>aim:er</t></v>
+<v><i>roidir</i>               <t>fin:ir</t></v>
+<v><i>romancer</i>             <t>pla:cer</t></v>
+<v><i>romaniser</i>            <t>aim:er</t></v>
+<v><i>rompre</i>               <t>rom:pre</t></v>
+<v><i>ronchonner</i>           <t>aim:er</t></v>
+<v><i>rondir</i>               <t>fin:ir</t></v>
+<v><i>ronéoter</i>            <t>aim:er</t></v>
+<v><i>ronéotyper</i>          <t>aim:er</t></v>
+<v><i>ronflaguer</i>           <t>aim:er</t></v>
+<v><i>ronfler</i>              <t>aim:er</t></v>
+<v><i>ronger</i>               <t>man:ger</t></v>
+<v><i>ronronner</i>            <t>aim:er</t></v>
+<v><i>ronsardiser</i>          <t>aim:er</t></v>
+<v><i>roquer</i>               <t>aim:er</t></v>
+<v><i>roser</i>                        <t>aim:er</t></v>
+<v><i>rosir</i>                        <t>fin:ir</t></v>
+<v><i>rosser</i>               <t>aim:er</t></v>
+<v><i>roter</i>                        <t>aim:er</t></v>
+<v><i>rôtir</i>                       <t>fin:ir</t></v>
+<v><i>roucouler</i>            <t>aim:er</t></v>
+<v><i>rouer</i>                        <t>aim:er</t></v>
+<v><i>rougeoyer</i>            <t>netto:yer</t></v>
+<v><i>rougir</i>               <t>fin:ir</t></v>
+<v><i>rouiller</i>             <t>aim:er</t></v>
+<v><i>rouir</i>                        <t>fin:ir</t></v>
+<v><i>rouler</i>               <t>aim:er</t></v>
+<v><i>roulotter</i>            <t>aim:er</t></v>
+<v><i>roupiller</i>            <t>aim:er</t></v>
+<v><i>rouscailler</i>          <t>aim:er</t></v>
+<v><i>rouspéter</i>           <t>décr:éter</t></v>
+<v><i>roussir</i>              <t>fin:ir</t></v>
+<v><i>roustir</i>              <t>fin:ir</t></v>
+<v><i>router</i>               <t>aim:er</t></v>
+<v><i>rouvrir</i>              <t>ouv:rir</t></v>
+<v><i>rubaner</i>              <t>aim:er</t></v>
+<v><i>rubéfier</i>            <t>aim:er</t></v>
+<v><i>rucher</i>               <t>aim:er</t></v>
+<v><i>rudenter</i>             <t>aim:er</t></v>
+<v><i>rudoyer</i>              <t>netto:yer</t></v>
+<v><i>ruer</i>                 <t>aim:er</t></v>
+<v><i>rugir</i>                        <t>fin:ir</t></v>
+<v><i>ruiler</i>               <t>aim:er</t></v>
+<v><i>ruiner</i>               <t>aim:er</t></v>
+<v><i>ruisseler</i>            <t>app:eler</t></v>
+<v><i>ruminer</i>              <t>aim:er</t></v>
+<v><i>rupiner</i>              <t>aim:er</t></v>
+<v><i>ruser</i>                        <t>aim:er</t></v>
+<v><i>russifier</i>            <t>aim:er</t></v>
+<v><i>rustiquer</i>            <t>aim:er</t></v>
+<v><i>rutiler</i>              <t>aim:er</t></v>
+<v><i>rythmer</i>              <t>aim:er</t></v>
+<v><i>sabler</i>               <t>aim:er</t></v>
+<v><i>sablonner</i>            <t>aim:er</t></v>
+<v><i>saborder</i>             <t>aim:er</t></v>
+<v><i>saboter</i>              <t>aim:er</t></v>
+<v><i>sabouler</i>             <t>aim:er</t></v>
+<v><i>sabrer</i>               <t>aim:er</t></v>
+<v><i>sacagner</i>             <t>aim:er</t></v>
+<v><i>saccader</i>             <t>aim:er</t></v>
+<v><i>saccager</i>             <t>man:ger</t></v>
+<v><i>saccharifier</i>         <t>aim:er</t></v>
+<v><i>sacquer</i>              <t>aim:er</t></v>
+<v><i>sacraliser</i>           <t>aim:er</t></v>
+<v><i>sacrer</i>               <t>aim:er</t></v>
+<v><i>sacrifier</i>            <t>aim:er</t></v>
+<v><i>safraner</i>             <t>aim:er</t></v>
+<v><i>saietter</i>             <t>aim:er</t></v>
+<v><i>saigner</i>              <t>aim:er</t></v>
+<v><i>sailler</i>              <t>aim:er</t></v>
+<v><i>saillir</i>              <t>saill:ir</t></v>
+<v><i>saisir</i>               <t>fin:ir</t></v>
+<v><i>saisonner</i>            <t>aim:er</t></v>
+<v><i>salarier</i>             <t>aim:er</t></v>
+<v><i>saler</i>                        <t>aim:er</t></v>
+<v><i>salifier</i>             <t>aim:er</t></v>
+<v><i>salir</i>                        <t>fin:ir</t></v>
+<v><i>saliver</i>              <t>aim:er</t></v>
+<v><i>saloper</i>              <t>aim:er</t></v>
+<v><i>salpêtrer</i>           <t>aim:er</t></v>
+<v><i>saluer</i>               <t>aim:er</t></v>
+<v><i>sanctifier</i>           <t>aim:er</t></v>
+<v><i>sanctionner</i>          <t>aim:er</t></v>
+<v><i>sanctuariser</i>         <t>aim:er</t></v>
+<v><i>sandwicher</i>           <t>aim:er</t></v>
+<v><i>sangler</i>              <t>aim:er</t></v>
+<v><i>sangloter</i>            <t>aim:er</t></v>
+<v><i>santonner</i>            <t>aim:er</t></v>
+<v><i>saouler</i>              <t>aim:er</t></v>
+<v><i>saper</i>                        <t>aim:er</t></v>
+<v><i>saponifier</i>           <t>aim:er</t></v>
+<v><i>saquer</i>               <t>aim:er</t></v>
+<v><i>sarcler</i>              <t>aim:er</t></v>
+<v><i>sarmenter</i>            <t>aim:er</t></v>
+<v><i>sasser</i>               <t>aim:er</t></v>
+<v><i>sataner</i>              <t>aim:er</t></v>
+<v><i>satelliser</i>           <t>aim:er</t></v>
+<v><i>satiner</i>              <t>aim:er</t></v>
+<v><i>satiriser</i>            <t>aim:er</t></v>
+<v><i>satisfaire</i>           <t>f:aire</t></v>
+<v><i>satisfer</i>             <t>aim:er</t></v>
+<v><i>satonner</i>             <t>aim:er</t></v>
+<v><i>saturer</i>              <t>aim:er</t></v>
+<v><i>saucer</i>               <t>pla:cer</t></v>
+<v><i>saucissonner</i>         <t>aim:er</t></v>
+<v><i>saumurer</i>             <t>aim:er</t></v>
+<v><i>sauner</i>               <t>aim:er</t></v>
+<v><i>saupoudrer</i>           <t>aim:er</t></v>
+<v><i>saurer</i>               <t>aim:er</t></v>
+<v><i>saurir</i>               <t>fin:ir</t></v>
+<v><i>sauter</i>               <t>aim:er</t></v>
+<v><i>sautiller</i>            <t>aim:er</t></v>
+<v><i>sauvegarder</i>          <t>aim:er</t></v>
+<v><i>sauver</i>               <t>aim:er</t></v>
+<v><i>savoir</i>               <t>s:avoir</t></v>
+<v><i>savonner</i>             <t>aim:er</t></v>
+<v><i>savourer</i>             <t>aim:er</t></v>
+<v><i>scalper</i>              <t>aim:er</t></v>
+<v><i>scandaliser</i>          <t>aim:er</t></v>
+<v><i>scander</i>              <t>aim:er</t></v>
+<v><i>scarifier</i>            <t>aim:er</t></v>
+<v><i>sceller</i>              <t>aim:er</t></v>
+<v><i>scheider</i>             <t>aim:er</t></v>
+<v><i>schématiser</i>         <t>aim:er</t></v>
+<v><i>schlinguer</i>           <t>aim:er</t></v>
+<v><i>schlitter</i>            <t>aim:er</t></v>
+<v><i>scier</i>                        <t>aim:er</t></v>
+<v><i>scinder</i>              <t>aim:er</t></v>
+<v><i>scintiller</i>           <t>aim:er</t></v>
+<v><i>sciotter</i>             <t>aim:er</t></v>
+<v><i>scissionner</i>          <t>aim:er</t></v>
+<v><i>scléroser</i>           <t>aim:er</t></v>
+<v><i>scolariser</i>           <t>aim:er</t></v>
+<v><i>scotcher</i>             <t>aim:er</t></v>
+<v><i>scotomiser</i>           <t>aim:er</t></v>
+<v><i>scratcher</i>            <t>aim:er</t></v>
+<v><i>scribouiller</i>         <t>aim:er</t></v>
+<v><i>scruter</i>              <t>aim:er</t></v>
+<v><i>sculpter</i>             <t>aim:er</t></v>
+<v><i>sécher</i>              <t>s:écher</t></v>
+<v><i>seconder</i>             <t>aim:er</t></v>
+<v><i>secouer</i>              <t>aim:er</t></v>
+<v><i>secourir</i>             <t>cour:ir</t></v>
+<v><i>sécréter</i>           <t>décr:éter</t></v>
+<v><i>sectionner</i>           <t>aim:er</t></v>
+<v><i>sectoriser</i>           <t>aim:er</t></v>
+<v><i>séculariser</i>         <t>aim:er</t></v>
+<v><i>sécuriser</i>           <t>aim:er</t></v>
+<v><i>sédentariser</i>                <t>aim:er</t></v>
+<v><i>sédimenter</i>          <t>aim:er</t></v>
+<v><i>séduire</i>             <t>condui:re</t></v>
+<v><i>segmenter</i>            <t>aim:er</t></v>
+<v><i>séjourner</i>           <t>aim:er</t></v>
+<v><i>sélectionner</i>                <t>aim:er</t></v>
+<v><i>seller</i>               <t>aim:er</t></v>
+<v><i>sembler</i>              <t>aim:er</t></v>
+<v><i>semer</i>                        <t>s:emer</t></v>
+<v><i>semoncer</i>             <t>pla:cer</t></v>
+<v><i>sensibiliser</i>         <t>aim:er</t></v>
+<v><i>sentir</i>               <t>men:tir</t></v>
+<v><i>seoir</i>                        <t>s:eoir</t></v>
+<v><i>séparer</i>             <t>aim:er</t></v>
+<v><i>septupler</i>            <t>aim:er</t></v>
+<v><i>séquestrer</i>          <t>aim:er</t></v>
+<v><i>sérancer</i>            <t>pla:cer</t></v>
+<v><i>serfouir</i>             <t>fin:ir</t></v>
+<v><i>sérialiser</i>          <t>aim:er</t></v>
+<v><i>sérier</i>              <t>aim:er</t></v>
+<v><i>seriner</i>              <t>aim:er</t></v>
+<v><i>seringuer</i>            <t>aim:er</t></v>
+<v><i>sermonner</i>            <t>aim:er</t></v>
+<v><i>serpenter</i>            <t>aim:er</t></v>
+<v><i>serrer</i>               <t>aim:er</t></v>
+<v><i>sertir</i>               <t>fin:ir</t></v>
+<v><i>servir</i>               <t>ser:vir</t></v>
+<v><i>sévir</i>                       <t>fin:ir</t></v>
+<v><i>sevrer</i>               <t>aim:er</t></v>
+<v><i>sextupler</i>            <t>aim:er</t></v>
+<v><i>sexualiser</i>           <t>aim:er</t></v>
+<v><i>shampooingner</i>                <t>aim:er</t></v>
+<v><i>shampouiner</i>          <t>aim:er</t></v>
+<v><i>shooter</i>              <t>aim:er</t></v>
+<v><i>shunter</i>              <t>aim:er</t></v>
+<v><i>sidérer</i>             <t>réf:érer</t></v>
+<v><i>siéger</i>              <t>abr:éger</t></v>
+<v><i>siffler</i>              <t>aim:er</t></v>
+<v><i>siffloter</i>            <t>aim:er</t></v>
+<v><i>signaler</i>             <t>aim:er</t></v>
+<v><i>signaliser</i>           <t>aim:er</t></v>
+<v><i>signer</i>               <t>aim:er</t></v>
+<v><i>signifier</i>            <t>aim:er</t></v>
+<v><i>silhouetter</i>          <t>aim:er</t></v>
+<v><i>silicatiser</i>          <t>aim:er</t></v>
+<v><i>siliconer</i>            <t>aim:er</t></v>
+<v><i>silicoser</i>            <t>aim:er</t></v>
+<v><i>sillonner</i>            <t>aim:er</t></v>
+<v><i>similiser</i>            <t>aim:er</t></v>
+<v><i>simplifier</i>           <t>aim:er</t></v>
+<v><i>simuler</i>              <t>aim:er</t></v>
+<v><i>singer</i>               <t>man:ger</t></v>
+<v><i>singulariser</i>         <t>aim:er</t></v>
+<v><i>siniser</i>              <t>aim:er</t></v>
+<v><i>sintériser</i>          <t>aim:er</t></v>
+<v><i>siphonner</i>            <t>aim:er</t></v>
+<v><i>siroter</i>              <t>aim:er</t></v>
+<v><i>situer</i>               <t>aim:er</t></v>
+<v><i>skier</i>                        <t>aim:er</t></v>
+<v><i>slalomer</i>             <t>aim:er</t></v>
+<v><i>slaviser</i>             <t>aim:er</t></v>
+<v><i>smasher</i>              <t>aim:er</t></v>
+<v><i>smiller</i>              <t>aim:er</t></v>
+<v><i>sniffer</i>              <t>aim:er</t></v>
+<v><i>snober</i>               <t>aim:er</t></v>
+<v><i>socialiser</i>           <t>aim:er</t></v>
+<v><i>socratiser</i>           <t>aim:er</t></v>
+<v><i>sodomiser</i>            <t>aim:er</t></v>
+<v><i>soigner</i>              <t>aim:er</t></v>
+<v><i>solariser</i>            <t>aim:er</t></v>
+<v><i>solder</i>               <t>aim:er</t></v>
+<v><i>solenniser</i>           <t>aim:er</t></v>
+<v><i>solfier</i>              <t>aim:er</t></v>
+<v><i>solidariser</i>          <t>aim:er</t></v>
+<v><i>solidifier</i>           <t>aim:er</t></v>
+<v><i>solifluer</i>            <t>aim:er</t></v>
+<v><i>soliloquer</i>           <t>aim:er</t></v>
+<v><i>solliciter</i>           <t>aim:er</t></v>
+<v><i>solmiser</i>             <t>aim:er</t></v>
+<v><i>solubiliser</i>          <t>aim:er</t></v>
+<v><i>solutionner</i>          <t>aim:er</t></v>
+<v><i>somatiser</i>            <t>aim:er</t></v>
+<v><i>sombrer</i>              <t>aim:er</t></v>
+<v><i>sommeiller</i>           <t>aim:er</t></v>
+<v><i>sommer</i>               <t>aim:er</t></v>
+<v><i>somnoler</i>             <t>aim:er</t></v>
+<v><i>sonder</i>               <t>aim:er</t></v>
+<v><i>songer</i>               <t>man:ger</t></v>
+<v><i>sonnailler</i>           <t>aim:er</t></v>
+<v><i>sonner</i>               <t>aim:er</t></v>
+<v><i>sonoriser</i>            <t>aim:er</t></v>
+<v><i>sophistiquer</i>         <t>aim:er</t></v>
+<v><i>sorguer</i>              <t>aim:er</t></v>
+<v><i>sortir</i>               <t>men:tir</t></v>
+<v><i>soubresauter</i>         <t>aim:er</t></v>
+<v><i>soucheter</i>            <t>j:eter</t></v>
+<v><i>soucier</i>              <t>aim:er</t></v>
+<v><i>souder</i>               <t>aim:er</t></v>
+<v><i>soudoyer</i>             <t>netto:yer</t></v>
+<v><i>souffler</i>             <t>aim:er</t></v>
+<v><i>souffleter</i>           <t>j:eter</t></v>
+<v><i>souffrir</i>             <t>ouv:rir</t></v>
+<v><i>soufrer</i>              <t>aim:er</t></v>
+<v><i>souhaiter</i>            <t>aim:er</t></v>
+<v><i>souiller</i>             <t>aim:er</t></v>
+<v><i>soulager</i>             <t>man:ger</t></v>
+<v><i>soûler</i>              <t>aim:er</t></v>
+<v><i>soulever</i>             <t>l:ever</t></v>
+<v><i>souligner</i>            <t>aim:er</t></v>
+<v><i>soumettre</i>            <t>m:ettre</t></v>
+<v><i>soumissionner</i>                <t>aim:er</t></v>
+<v><i>soupçonner</i>          <t>aim:er</t></v>
+<v><i>souper</i>               <t>aim:er</t></v>
+<v><i>soupeser</i>             <t>p:eser</t></v>
+<v><i>soupirer</i>             <t>aim:er</t></v>
+<v><i>souquer</i>              <t>aim:er</t></v>
+<v><i>sourciller</i>           <t>aim:er</t></v>
+<v><i>sourdiner</i>            <t>aim:er</t></v>
+<v><i>sourdre</i>              <t>s:ourdre</t></v>
+<v><i>sourire</i>              <t>r:ire</t></v>
+<v><i>sous-alimenter</i>       <t>aim:er</t></v>
+<v><i>souscrire</i>            <t>écri:re</t></v>
+<v><i>sous-entendre</i>                <t>ten:dre</t></v>
+<v><i>sous-estimer</i>         <t>aim:er</t></v>
+<v><i>sous-évaluer</i>                <t>aim:er</t></v>
+<v><i>sous-exploiter</i>       <t>aim:er</t></v>
+<v><i>sous-exposer</i>         <t>aim:er</t></v>
+<v><i>sous-louer</i>           <t>aim:er</t></v>
+<v><i>sous-payer</i>           <t>pa:yer</t></v>
+<v><i>sous-tendre</i>          <t>ten:dre</t></v>
+<v><i>sous-titrer</i>          <t>aim:er</t></v>
+<v><i>soustraire</i>           <t>extra:ire</t></v>
+<v><i>sous-traiter</i>         <t>aim:er</t></v>
+<v><i>sous-utiliser</i>                <t>aim:er</t></v>
+<v><i>sous-virer</i>           <t>aim:er</t></v>
+<v><i>soutacher</i>            <t>aim:er</t></v>
+<v><i>soutenir</i>             <t>t:enir</t></v>
+<v><i>soutirer</i>             <t>aim:er</t></v>
+<v><i>souvenir</i>             <t>t:enir</t></v>
+<v><i>soviétiser</i>          <t>aim:er</t></v>
+<v><i>spathifier</i>           <t>aim:er</t></v>
+<v><i>spatialiser</i>          <t>aim:er</t></v>
+<v><i>spécialiser</i>         <t>aim:er</t></v>
+<v><i>spécifier</i>           <t>aim:er</t></v>
+<v><i>spéculer</i>            <t>aim:er</t></v>
+<v><i>sphacéler</i>           <t>rév:éler</t></v>
+<v><i>spiraler</i>             <t>aim:er</t></v>
+<v><i>spiritualiser</i>                <t>aim:er</t></v>
+<v><i>spitter</i>              <t>aim:er</t></v>
+<v><i>splitter</i>             <t>aim:er</t></v>
+<v><i>spolier</i>              <t>aim:er</t></v>
+<v><i>sponsoriser</i>          <t>aim:er</t></v>
+<v><i>sporuler</i>             <t>aim:er</t></v>
+<v><i>sprinter</i>             <t>aim:er</t></v>
+<v><i>squattériser</i>                <t>aim:er</t></v>
+<v><i>squatter</i>             <t>aim:er</t></v>
+<v><i>stabiliser</i>           <t>aim:er</t></v>
+<v><i>staffer</i>              <t>aim:er</t></v>
+<v><i>stagner</i>              <t>aim:er</t></v>
+<v><i>staliniser</i>           <t>aim:er</t></v>
+<v><i>standardiser</i>         <t>aim:er</t></v>
+<v><i>starifier</i>            <t>aim:er</t></v>
+<v><i>stariser</i>             <t>aim:er</t></v>
+<v><i>stationner</i>           <t>aim:er</t></v>
+<v><i>statuer</i>              <t>aim:er</t></v>
+<v><i>statufier</i>            <t>aim:er</t></v>
+<v><i>sténographier</i>               <t>aim:er</t></v>
+<v><i>sténotyper</i>          <t>aim:er</t></v>
+<v><i>stéréotyper</i>                <t>aim:er</t></v>
+<v><i>stérer</i>              <t>réf:érer</t></v>
+<v><i>stériliser</i>          <t>aim:er</t></v>
+<v><i>stigmatiser</i>          <t>aim:er</t></v>
+<v><i>stimuler</i>             <t>aim:er</t></v>
+<v><i>stipendier</i>           <t>aim:er</t></v>
+<v><i>stipuler</i>             <t>aim:er</t></v>
+<v><i>stocker</i>              <t>aim:er</t></v>
+<v><i>stopper</i>              <t>aim:er</t></v>
+<v><i>stranguler</i>           <t>aim:er</t></v>
+<v><i>stratifier</i>           <t>aim:er</t></v>
+<v><i>stresser</i>             <t>aim:er</t></v>
+<v><i>striduler</i>            <t>aim:er</t></v>
+<v><i>strier</i>               <t>aim:er</t></v>
+<v><i>stripper</i>             <t>aim:er</t></v>
+<v><i>striquer</i>             <t>aim:er</t></v>
+<v><i>structurer</i>           <t>aim:er</t></v>
+<v><i>stupéfier</i>           <t>aim:er</t></v>
+<v><i>stuquer</i>              <t>aim:er</t></v>
+<v><i>styler</i>               <t>aim:er</t></v>
+<v><i>styliser</i>             <t>aim:er</t></v>
+<v><i>subdéléguer</i>                <t>l:éguer</t></v>
+<v><i>subdiviser</i>           <t>aim:er</t></v>
+<v><i>subir</i>                        <t>fin:ir</t></v>
+<v><i>subjuguer</i>            <t>aim:er</t></v>
+<v><i>sublimer</i>             <t>aim:er</t></v>
+<v><i>submerger</i>            <t>man:ger</t></v>
+<v><i>subodorer</i>            <t>aim:er</t></v>
+<v><i>subordonner</i>          <t>aim:er</t></v>
+<v><i>suborner</i>             <t>aim:er</t></v>
+<v><i>subroger</i>             <t>man:ger</t></v>
+<v><i>subsister</i>            <t>aim:er</t></v>
+<v><i>substantiver</i>         <t>aim:er</t></v>
+<v><i>substituer</i>           <t>aim:er</t></v>
+<v><i>subsumer</i>             <t>aim:er</t></v>
+<v><i>subtiliser</i>           <t>aim:er</t></v>
+<v><i>subvenir</i>             <t>t:enir</t></v>
+<v><i>subventionner</i>                <t>aim:er</t></v>
+<v><i>subvertir</i>            <t>fin:ir</t></v>
+<v><i>succéder</i>            <t>c:éder</t></v>
+<v><i>succomber</i>            <t>aim:er</t></v>
+<v><i>sucer</i>                        <t>pla:cer</t></v>
+<v><i>suçoter</i>             <t>aim:er</t></v>
+<v><i>sucrer</i>               <t>aim:er</t></v>
+<v><i>suer</i>                 <t>aim:er</t></v>
+<v><i>suffire</i>              <t>suff:ire</t></v>
+<v><i>suffixer</i>             <t>aim:er</t></v>
+<v><i>suffoquer</i>            <t>aim:er</t></v>
+<v><i>suggérer</i>            <t>réf:érer</t></v>
+<v><i>suggestionner</i>                <t>aim:er</t></v>
+<v><i>suicider</i>             <t>aim:er</t></v>
+<v><i>suifer</i>               <t>aim:er</t></v>
+<v><i>suiffer</i>              <t>aim:er</t></v>
+<v><i>suinter</i>              <t>aim:er</t></v>
+<v><i>suivre</i>               <t>sui:vre</t></v>
+<v><i>sulfater</i>             <t>aim:er</t></v>
+<v><i>sulfiter</i>             <t>aim:er</t></v>
+<v><i>sulfoner</i>             <t>aim:er</t></v>
+<v><i>sulfurer</i>             <t>aim:er</t></v>
+<v><i>superfinir</i>           <t>fin:ir</t></v>
+<v><i>superposer</i>           <t>aim:er</t></v>
+<v><i>superviser</i>           <t>aim:er</t></v>
+<v><i>supplanter</i>           <t>aim:er</t></v>
+<v><i>suppléer</i>            <t>aim:er</t></v>
+<v><i>supplémenter</i>                <t>aim:er</t></v>
+<v><i>supplicier</i>           <t>aim:er</t></v>
+<v><i>supplier</i>             <t>aim:er</t></v>
+<v><i>supporter</i>            <t>aim:er</t></v>
+<v><i>supposer</i>             <t>aim:er</t></v>
+<v><i>supprimer</i>            <t>aim:er</t></v>
+<v><i>suppurer</i>             <t>aim:er</t></v>
+<v><i>supputer</i>             <t>aim:er</t></v>
+<v><i>surabonder</i>           <t>aim:er</t></v>
+<v><i>surajouter</i>           <t>aim:er</t></v>
+<v><i>suralimenter</i>         <t>aim:er</t></v>
+<v><i>surbaisser</i>           <t>aim:er</t></v>
+<v><i>surcharger</i>           <t>man:ger</t></v>
+<v><i>surchauffer</i>          <t>aim:er</t></v>
+<v><i>surclasser</i>           <t>aim:er</t></v>
+<v><i>surcomprimer</i>         <t>aim:er</t></v>
+<v><i>surcontrer</i>           <t>aim:er</t></v>
+<v><i>surcouper</i>            <t>aim:er</t></v>
+<v><i>surdorer</i>             <t>aim:er</t></v>
+<v><i>surdouer</i>             <t>aim:er</t></v>
+<v><i>surédifier</i>          <t>aim:er</t></v>
+<v><i>surélever</i>           <t>l:ever</t></v>
+<v><i>surenchérir</i>         <t>fin:ir</t></v>
+<v><i>surentraîner</i>                <t>aim:er</t></v>
+<v><i>suréquiper</i>          <t>aim:er</t></v>
+<v><i>surestimer</i>           <t>aim:er</t></v>
+<v><i>surévaluer</i>          <t>aim:er</t></v>
+<v><i>surexciter</i>           <t>aim:er</t></v>
+<v><i>surexploiter</i>         <t>aim:er</t></v>
+<v><i>surexposer</i>           <t>aim:er</t></v>
+<v><i>surfacer</i>             <t>pla:cer</t></v>
+<v><i>surfaire</i>             <t>f:aire</t></v>
+<v><i>surfer</i>               <t>aim:er</t></v>
+<v><i>surfiler</i>             <t>aim:er</t></v>
+<v><i>surgeler</i>             <t>p:eler</t></v>
+<v><i>surgeonner</i>           <t>aim:er</t></v>
+<v><i>surgir</i>               <t>fin:ir</t></v>
+<v><i>surglacer</i>            <t>pla:cer</t></v>
+<v><i>surhausser</i>           <t>aim:er</t></v>
+<v><i>surimposer</i>           <t>aim:er</t></v>
+<v><i>suriner</i>              <t>aim:er</t></v>
+<v><i>surir</i>                        <t>fin:ir</t></v>
+<v><i>surjaler</i>             <t>aim:er</t></v>
+<v><i>surjecter</i>            <t>aim:er</t></v>
+<v><i>surjeter</i>             <t>j:eter</t></v>
+<v><i>surlier</i>              <t>aim:er</t></v>
+<v><i>surlouer</i>             <t>aim:er</t></v>
+<v><i>surmédicaliser</i>      <t>aim:er</t></v>
+<v><i>surmener</i>             <t>m:ener</t></v>
+<v><i>surmonter</i>            <t>aim:er</t></v>
+<v><i>surmouler</i>            <t>aim:er</t></v>
+<v><i>surnager</i>             <t>man:ger</t></v>
+<v><i>surnommer</i>            <t>aim:er</t></v>
+<v><i>suroxyder</i>            <t>aim:er</t></v>
+<v><i>surpasser</i>            <t>aim:er</t></v>
+<v><i>surpayer</i>             <t>pa:yer</t></v>
+<v><i>surpeupler</i>           <t>aim:er</t></v>
+<v><i>surpiquer</i>            <t>aim:er</t></v>
+<v><i>surplomber</i>           <t>aim:er</t></v>
+<v><i>surprendre</i>           <t>pr:endre</t></v>
+<v><i>surproduire</i>          <t>condui:re</t></v>
+<v><i>sursaturer</i>           <t>aim:er</t></v>
+<v><i>sursauter</i>            <t>aim:er</t></v>
+<v><i>sursemer</i>             <t>s:emer</t></v>
+<v><i>surseoir</i>             <t>surs:eoir</t></v>
+<v><i>sursoir</i>              <t>surs:oir</t></v>
+<v><i>surtaxer</i>             <t>aim:er</t></v>
+<v><i>surveiller</i>           <t>aim:er</t></v>
+<v><i>survenir</i>             <t>t:enir</t></v>
+<v><i>survirer</i>             <t>aim:er</t></v>
+<v><i>survivre</i>             <t>v:ivre</t></v>
+<v><i>survoler</i>             <t>aim:er</t></v>
+<v><i>survolter</i>            <t>aim:er</t></v>
+<v><i>susciter</i>             <t>aim:er</t></v>
+<v><i>suspecter</i>            <t>aim:er</t></v>
+<v><i>suspendre</i>            <t>ten:dre</t></v>
+<v><i>sustenter</i>            <t>aim:er</t></v>
+<v><i>susurrer</i>             <t>aim:er</t></v>
+<v><i>suturer</i>              <t>aim:er</t></v>
+<v><i>swinguer</i>             <t>aim:er</t></v>
+<v><i>syllaber</i>             <t>aim:er</t></v>
+<v><i>symboliser</i>           <t>aim:er</t></v>
+<v><i>symétriser</i>          <t>aim:er</t></v>
+<v><i>sympathiser</i>          <t>aim:er</t></v>
+<v><i>synchroniser</i>         <t>aim:er</t></v>
+<v><i>syncoper</i>             <t>aim:er</t></v>
+<v><i>syncristalliser</i>      <t>aim:er</t></v>
+<v><i>syndicaliser</i>         <t>aim:er</t></v>
+<v><i>syndiquer</i>            <t>aim:er</t></v>
+<v><i>synthétiser</i>         <t>aim:er</t></v>
+<v><i>syntoniser</i>           <t>aim:er</t></v>
+<v><i>systématiser</i>                <t>aim:er</t></v>
+<v><i>tabasser</i>             <t>aim:er</t></v>
+<v><i>tabler</i>               <t>aim:er</t></v>
+<v><i>tabouer</i>              <t>aim:er</t></v>
+<v><i>tabouiser</i>            <t>aim:er</t></v>
+<v><i>tabuler</i>              <t>aim:er</t></v>
+<v><i>tacher</i>               <t>aim:er</t></v>
+<v><i>tâcher</i>              <t>aim:er</t></v>
+<v><i>tacheter</i>             <t>j:eter</t></v>
+<v><i>taillader</i>            <t>aim:er</t></v>
+<v><i>tailler</i>              <t>aim:er</t></v>
+<v><i>taire</i>                        <t>t:aire</t></v>
+<v><i>taler</i>                        <t>aim:er</t></v>
+<v><i>taller</i>               <t>aim:er</t></v>
+<v><i>talocher</i>             <t>aim:er</t></v>
+<v><i>talonner</i>             <t>aim:er</t></v>
+<v><i>talquer</i>              <t>aim:er</t></v>
+<v><i>tambouriner</i>          <t>aim:er</t></v>
+<v><i>tamiser</i>              <t>aim:er</t></v>
+<v><i>tamponner</i>            <t>aim:er</t></v>
+<v><i>tancer</i>               <t>pla:cer</t></v>
+<v><i>tanguer</i>              <t>aim:er</t></v>
+<v><i>taniser</i>              <t>aim:er</t></v>
+<v><i>tanner</i>               <t>aim:er</t></v>
+<v><i>tanniser</i>             <t>aim:er</t></v>
+<v><i>tapager</i>              <t>man:ger</t></v>
+<v><i>taper</i>                        <t>aim:er</t></v>
+<v><i>tapiner</i>              <t>aim:er</t></v>
+<v><i>tapir</i>                        <t>fin:ir</t></v>
+<v><i>tapisser</i>             <t>aim:er</t></v>
+<v><i>taponner</i>             <t>aim:er</t></v>
+<v><i>tapoter</i>              <t>aim:er</t></v>
+<v><i>taquer</i>               <t>aim:er</t></v>
+<v><i>taquiner</i>             <t>aim:er</t></v>
+<v><i>tarabiscoter</i>         <t>aim:er</t></v>
+<v><i>tarabuster</i>           <t>aim:er</t></v>
+<v><i>tarauder</i>             <t>aim:er</t></v>
+<v><i>tarder</i>               <t>aim:er</t></v>
+<v><i>tarer</i>                        <t>aim:er</t></v>
+<v><i>targuer</i>              <t>aim:er</t></v>
+<v><i>tarifer</i>              <t>aim:er</t></v>
+<v><i>tarifier</i>             <t>aim:er</t></v>
+<v><i>tarir</i>                        <t>fin:ir</t></v>
+<v><i>tartiner</i>             <t>aim:er</t></v>
+<v><i>tartir</i>               <t>fin:ir</t></v>
+<v><i>tasser</i>               <t>aim:er</t></v>
+<v><i>tâter</i>                       <t>aim:er</t></v>
+<v><i>tatillonner</i>          <t>aim:er</t></v>
+<v><i>tâtonner</i>            <t>aim:er</t></v>
+<v><i>tatouer</i>              <t>aim:er</t></v>
+<v><i>taveler</i>              <t>app:eler</t></v>
+<v><i>taveller</i>             <t>aim:er</t></v>
+<v><i>taxer</i>                        <t>aim:er</t></v>
+<v><i>tayloriser</i>           <t>aim:er</t></v>
+<v><i>techniciser</i>          <t>aim:er</t></v>
+<v><i>techniser</i>            <t>aim:er</t></v>
+<v><i>technocratiser</i>       <t>aim:er</t></v>
+<v><i>teiller</i>              <t>aim:er</t></v>
+<v><i>teindre</i>              <t>crai:ndre</t></v>
+<v><i>teinter</i>              <t>aim:er</t></v>
+<v><i>télécommander</i>              <t>aim:er</t></v>
+<v><i>télécopier</i>         <t>aim:er</t></v>
+<v><i>télédiffuser</i>               <t>aim:er</t></v>
+<v><i>télégraphier</i>               <t>aim:er</t></v>
+<v><i>téléguider</i>         <t>aim:er</t></v>
+<v><i>téléphoner</i>         <t>aim:er</t></v>
+<v><i>télescoper</i>          <t>aim:er</t></v>
+<v><i>téléviser</i>          <t>aim:er</t></v>
+<v><i>télexer</i>             <t>aim:er</t></v>
+<v><i>témoigner</i>           <t>aim:er</t></v>
+<v><i>tempérer</i>            <t>réf:érer</t></v>
+<v><i>tempêter</i>            <t>aim:er</t></v>
+<v><i>temporiser</i>           <t>aim:er</t></v>
+<v><i>tenailler</i>            <t>aim:er</t></v>
+<v><i>tendre</i>               <t>ten:dre</t></v>
+<v><i>tenir</i>                        <t>t:enir</t></v>
+<v><i>tenonner</i>             <t>aim:er</t></v>
+<v><i>ténoriser</i>           <t>aim:er</t></v>
+<v><i>tensoriser</i>           <t>aim:er</t></v>
+<v><i>tenter</i>               <t>aim:er</t></v>
+<v><i>tercer</i>               <t>pla:cer</t></v>
+<v><i>tergiverser</i>          <t>aim:er</t></v>
+<v><i>terminer</i>             <t>aim:er</t></v>
+<v><i>ternir</i>               <t>fin:ir</t></v>
+<v><i>terrasser</i>            <t>aim:er</t></v>
+<v><i>terreauter</i>           <t>aim:er</t></v>
+<v><i>terrer</i>               <t>aim:er</t></v>
+<v><i>terrifier</i>            <t>aim:er</t></v>
+<v><i>terrir</i>               <t>fin:ir</t></v>
+<v><i>terroriser</i>           <t>aim:er</t></v>
+<v><i>terser</i>               <t>aim:er</t></v>
+<v><i>tester</i>               <t>aim:er</t></v>
+<v><i>tétaniser</i>           <t>aim:er</t></v>
+<v><i>téter</i>                       <t>décr:éter</t></v>
+<v><i>texturer</i>             <t>aim:er</t></v>
+<v><i>texturiser</i>           <t>aim:er</t></v>
+<v><i>théâtraliser</i>               <t>aim:er</t></v>
+<v><i>thématiser</i>          <t>aim:er</t></v>
+<v><i>théoriser</i>           <t>aim:er</t></v>
+<v><i>thésauriser</i>         <t>aim:er</t></v>
+<v><i>tictaquer</i>            <t>aim:er</t></v>
+<v><i>tiédir</i>              <t>fin:ir</t></v>
+<v><i>tiercer</i>              <t>pla:cer</t></v>
+<v><i>tigrer</i>               <t>aim:er</t></v>
+<v><i>tiller</i>               <t>aim:er</t></v>
+<v><i>timbrer</i>              <t>aim:er</t></v>
+<v><i>tinter</i>               <t>aim:er</t></v>
+<v><i>tintinnabuler</i>                <t>aim:er</t></v>
+<v><i>tiquer</i>               <t>aim:er</t></v>
+<v><i>tirailler</i>            <t>aim:er</t></v>
+<v><i>tire-bouchonner</i>      <t>aim:er</t></v>
+<v><i>tirebouchonner</i>       <t>aim:er</t></v>
+<v><i>tirer</i>                        <t>aim:er</t></v>
+<v><i>tiser</i>                        <t>aim:er</t></v>
+<v><i>tisonner</i>             <t>aim:er</t></v>
+<v><i>tisser</i>               <t>aim:er</t></v>
+<v><i>titiller</i>             <t>aim:er</t></v>
+<v><i>titrer</i>               <t>aim:er</t></v>
+<v><i>tituber</i>              <t>aim:er</t></v>
+<v><i>titulariser</i>          <t>aim:er</t></v>
+<v><i>toaster</i>              <t>aim:er</t></v>
+<v><i>toiler</i>               <t>aim:er</t></v>
+<v><i>toiletter</i>            <t>aim:er</t></v>
+<v><i>toiser</i>               <t>aim:er</t></v>
+<v><i>tolérer</i>             <t>réf:érer</t></v>
+<v><i>tomber</i>               <t>aim:er</t></v>
+<v><i>tomer</i>                        <t>aim:er</t></v>
+<v><i>tondre</i>               <t>ten:dre</t></v>
+<v><i>tonifier</i>             <t>aim:er</t></v>
+<v><i>tonitruer</i>            <t>aim:er</t></v>
+<v><i>tonner</i>               <t>aim:er</t></v>
+<v><i>tonsurer</i>             <t>aim:er</t></v>
+<v><i>tontiner</i>             <t>aim:er</t></v>
+<v><i>toper</i>                        <t>aim:er</t></v>
+<v><i>topicaliser</i>          <t>aim:er</t></v>
+<v><i>toquer</i>               <t>aim:er</t></v>
+<v><i>torcher</i>              <t>aim:er</t></v>
+<v><i>torchonner</i>           <t>aim:er</t></v>
+<v><i>tordre</i>               <t>ten:dre</t></v>
+<v><i>toréer</i>              <t>aim:er</t></v>
+<v><i>toronner</i>             <t>aim:er</t></v>
+<v><i>torpiller</i>            <t>aim:er</t></v>
+<v><i>torréfier</i>           <t>aim:er</t></v>
+<v><i>torsader</i>             <t>aim:er</t></v>
+<v><i>tortiller</i>            <t>aim:er</t></v>
+<v><i>tortorer</i>             <t>aim:er</t></v>
+<v><i>torturer</i>             <t>aim:er</t></v>
+<v><i>totaliser</i>            <t>aim:er</t></v>
+<v><i>toucher</i>              <t>aim:er</t></v>
+<v><i>touer</i>                        <t>aim:er</t></v>
+<v><i>touiller</i>             <t>aim:er</t></v>
+<v><i>toupiller</i>            <t>aim:er</t></v>
+<v><i>tourber</i>              <t>aim:er</t></v>
+<v><i>tourbillonner</i>                <t>aim:er</t></v>
+<v><i>tourillonner</i>         <t>aim:er</t></v>
+<v><i>tourmenter</i>           <t>aim:er</t></v>
+<v><i>tournailler</i>          <t>aim:er</t></v>
+<v><i>tournasser</i>           <t>aim:er</t></v>
+<v><i>tournebouler</i>         <t>aim:er</t></v>
+<v><i>tourner</i>              <t>aim:er</t></v>
+<v><i>tournicoter</i>          <t>aim:er</t></v>
+<v><i>tourniller</i>           <t>aim:er</t></v>
+<v><i>tourniquer</i>           <t>aim:er</t></v>
+<v><i>tournoyer</i>            <t>netto:yer</t></v>
+<v><i>toussailler</i>          <t>aim:er</t></v>
+<v><i>tousser</i>              <t>aim:er</t></v>
+<v><i>toussoter</i>            <t>aim:er</t></v>
+<v><i>trabouler</i>            <t>aim:er</t></v>
+<v><i>tracaner</i>             <t>aim:er</t></v>
+<v><i>tracasser</i>            <t>aim:er</t></v>
+<v><i>tracer</i>               <t>pla:cer</t></v>
+<v><i>tracter</i>              <t>aim:er</t></v>
+<v><i>traduire</i>             <t>condui:re</t></v>
+<v><i>traficoter</i>           <t>aim:er</t></v>
+<v><i>trafiquer</i>            <t>aim:er</t></v>
+<v><i>trahir</i>               <t>fin:ir</t></v>
+<v><i>traînailler</i>         <t>aim:er</t></v>
+<v><i>traînasser</i>          <t>aim:er</t></v>
+<v><i>traîner</i>             <t>aim:er</t></v>
+<v><i>traire</i>               <t>extra:ire</t></v>
+<v><i>traiter</i>              <t>aim:er</t></v>
+<v><i>tramer</i>               <t>aim:er</t></v>
+<v><i>tranchefiler</i>         <t>aim:er</t></v>
+<v><i>trancher</i>             <t>aim:er</t></v>
+<v><i>tranquilliser</i>                <t>aim:er</t></v>
+<v><i>transbahuter</i>         <t>aim:er</t></v>
+<v><i>transborder</i>          <t>aim:er</t></v>
+<v><i>transcender</i>          <t>aim:er</t></v>
+<v><i>transcoder</i>           <t>aim:er</t></v>
+<v><i>transcrire</i>           <t>écri:re</t></v>
+<v><i>transférer</i>          <t>réf:érer</t></v>
+<v><i>transfigurer</i>         <t>aim:er</t></v>
+<v><i>transfiler</i>           <t>aim:er</t></v>
+<v><i>transformer</i>          <t>aim:er</t></v>
+<v><i>transfuser</i>           <t>aim:er</t></v>
+<v><i>transgresser</i>         <t>aim:er</t></v>
+<v><i>transhumer</i>           <t>aim:er</t></v>
+<v><i>transiger</i>            <t>man:ger</t></v>
+<v><i>transir</i>              <t>fin:ir</t></v>
+<v><i>transistoriser</i>       <t>aim:er</t></v>
+<v><i>transiter</i>            <t>aim:er</t></v>
+<v><i>translater</i>           <t>aim:er</t></v>
+<v><i>transmettre</i>          <t>m:ettre</t></v>
+<v><i>transmigrer</i>          <t>aim:er</t></v>
+<v><i>transmuer</i>            <t>aim:er</t></v>
+<v><i>transmuter</i>           <t>aim:er</t></v>
+<v><i>transparaître</i>               <t>rep:aître</t></v>
+<v><i>transpercer</i>          <t>pla:cer</t></v>
+<v><i>transpirer</i>           <t>aim:er</t></v>
+<v><i>transplanter</i>         <t>aim:er</t></v>
+<v><i>transporter</i>          <t>aim:er</t></v>
+<v><i>transposer</i>           <t>aim:er</t></v>
+<v><i>transsubstantier</i>     <t>aim:er</t></v>
+<v><i>transsuder</i>           <t>aim:er</t></v>
+<v><i>transvaser</i>           <t>aim:er</t></v>
+<v><i>transvider</i>           <t>aim:er</t></v>
+<v><i>traquer</i>              <t>aim:er</t></v>
+<v><i>traumatiser</i>          <t>aim:er</t></v>
+<v><i>travailler</i>           <t>aim:er</t></v>
+<v><i>travailloter</i>         <t>aim:er</t></v>
+<v><i>traverser</i>            <t>aim:er</t></v>
+<v><i>travestir</i>            <t>fin:ir</t></v>
+<v><i>trébucher</i>           <t>aim:er</t></v>
+<v><i>tréfiler</i>            <t>aim:er</t></v>
+<v><i>treillager</i>           <t>man:ger</t></v>
+<v><i>treillisser</i>          <t>aim:er</t></v>
+<v><i>trémater</i>            <t>aim:er</t></v>
+<v><i>trembler</i>             <t>aim:er</t></v>
+<v><i>trembloter</i>           <t>aim:er</t></v>
+<v><i>trémousser</i>          <t>aim:er</t></v>
+<v><i>tremper</i>              <t>aim:er</t></v>
+<v><i>trémuler</i>            <t>aim:er</t></v>
+<v><i>trépaner</i>            <t>aim:er</t></v>
+<v><i>trépasser</i>           <t>aim:er</t></v>
+<v><i>trépider</i>            <t>aim:er</t></v>
+<v><i>trépigner</i>           <t>aim:er</t></v>
+<v><i>tressaillir</i>          <t>assaill:ir</t></v>
+<v><i>tressauter</i>           <t>aim:er</t></v>
+<v><i>tresser</i>              <t>aim:er</t></v>
+<v><i>treuiller</i>            <t>aim:er</t></v>
+<v><i>trévirer</i>            <t>aim:er</t></v>
+<v><i>triangulariser</i>       <t>aim:er</t></v>
+<v><i>trianguler</i>           <t>aim:er</t></v>
+<v><i>triballer</i>            <t>aim:er</t></v>
+<v><i>tricher</i>              <t>aim:er</t></v>
+<v><i>tricoter</i>             <t>aim:er</t></v>
+<v><i>trier</i>                        <t>aim:er</t></v>
+<v><i>trifouiller</i>          <t>aim:er</t></v>
+<v><i>triller</i>              <t>aim:er</t></v>
+<v><i>trimarder</i>            <t>aim:er</t></v>
+<v><i>trimbaler</i>            <t>aim:er</t></v>
+<v><i>trimballer</i>           <t>aim:er</t></v>
+<v><i>trimer</i>               <t>aim:er</t></v>
+<v><i>tringler</i>             <t>aim:er</t></v>
+<v><i>trinquer</i>             <t>aim:er</t></v>
+<v><i>triompher</i>            <t>aim:er</t></v>
+<v><i>tripatouiller</i>                <t>aim:er</t></v>
+<v><i>tripler</i>              <t>aim:er</t></v>
+<v><i>tripoter</i>             <t>aim:er</t></v>
+<v><i>triquer</i>              <t>aim:er</t></v>
+<v><i>trisser</i>              <t>aim:er</t></v>
+<v><i>triturer</i>             <t>aim:er</t></v>
+<v><i>trivialiser</i>          <t>aim:er</t></v>
+<v><i>tromper</i>              <t>aim:er</t></v>
+<v><i>trompeter</i>            <t>j:eter</t></v>
+<v><i>tronçonner</i>          <t>aim:er</t></v>
+<v><i>trôner</i>              <t>aim:er</t></v>
+<v><i>tronquer</i>             <t>aim:er</t></v>
+<v><i>tropicaliser</i>         <t>aim:er</t></v>
+<v><i>troquer</i>              <t>aim:er</t></v>
+<v><i>trotter</i>              <t>aim:er</t></v>
+<v><i>trottiner</i>            <t>aim:er</t></v>
+<v><i>troubler</i>             <t>aim:er</t></v>
+<v><i>trouer</i>               <t>aim:er</t></v>
+<v><i>troussequiner</i>                <t>aim:er</t></v>
+<v><i>trousser</i>             <t>aim:er</t></v>
+<v><i>trouver</i>              <t>aim:er</t></v>
+<v><i>truander</i>             <t>aim:er</t></v>
+<v><i>trucider</i>             <t>aim:er</t></v>
+<v><i>truffer</i>              <t>aim:er</t></v>
+<v><i>truquer</i>              <t>aim:er</t></v>
+<v><i>trusquiner</i>           <t>aim:er</t></v>
+<v><i>truster</i>              <t>aim:er</t></v>
+<v><i>tuberculiner</i>         <t>aim:er</t></v>
+<v><i>tuberculiniser</i>       <t>aim:er</t></v>
+<v><i>tuberculiser</i>         <t>aim:er</t></v>
+<v><i>tuber</i>                        <t>aim:er</t></v>
+<v><i>tuer</i>                 <t>aim:er</t></v>
+<v><i>tuiler</i>               <t>aim:er</t></v>
+<v><i>tuméfier</i>            <t>aim:er</t></v>
+<v><i>turbiner</i>             <t>aim:er</t></v>
+<v><i>turlupiner</i>           <t>aim:er</t></v>
+<v><i>tuteurer</i>             <t>aim:er</t></v>
+<v><i>tutoyer</i>              <t>netto:yer</t></v>
+<v><i>tuyauter</i>             <t>aim:er</t></v>
+<v><i>twister</i>              <t>aim:er</t></v>
+<v><i>tympaniser</i>           <t>aim:er</t></v>
+<v><i>typer</i>                        <t>aim:er</t></v>
+<v><i>typiser</i>              <t>aim:er</t></v>
+<v><i>tyranniser</i>           <t>aim:er</t></v>
+<v><i>ulcérer</i>             <t>réf:érer</t></v>
+<v><i>ultracentrifuger</i>     <t>man:ger</t></v>
+<v><i>ultrafiltrer</i>         <t>aim:er</t></v>
+<v><i>ululer</i>               <t>aim:er</t></v>
+<v><i>unifier</i>              <t>aim:er</t></v>
+<v><i>uniformiser</i>          <t>aim:er</t></v>
+<v><i>unir</i>                 <t>fin:ir</t></v>
+<v><i>universaliser</i>                <t>aim:er</t></v>
+<v><i>upériser</i>            <t>aim:er</t></v>
+<v><i>urbanifier</i>           <t>aim:er</t></v>
+<v><i>urbaniser</i>            <t>aim:er</t></v>
+<v><i>urger</i>                        <t>man:ger</t></v>
+<v><i>uriner</i>               <t>aim:er</t></v>
+<v><i>user</i>                 <t>aim:er</t></v>
+<v><i>usiner</i>               <t>aim:er</t></v>
+<v><i>usurper</i>              <t>aim:er</t></v>
+<v><i>utiliser</i>             <t>aim:er</t></v>
+<v><i>vacciner</i>             <t>aim:er</t></v>
+<v><i>vacher</i>               <t>aim:er</t></v>
+<v><i>vaciller</i>             <t>aim:er</t></v>
+<v><i>vacuoliser</i>           <t>aim:er</t></v>
+<v><i>vadrouiller</i>          <t>aim:er</t></v>
+<v><i>vagabonder</i>           <t>aim:er</t></v>
+<v><i>vagir</i>                        <t>fin:ir</t></v>
+<v><i>vaguer</i>               <t>aim:er</t></v>
+<v><i>vaincre</i>              <t>vain:cre</t></v>
+<v><i>vaironner</i>            <t>aim:er</t></v>
+<v><i>valdinguer</i>           <t>aim:er</t></v>
+<v><i>valeter</i>              <t>ach:eter</t></v>
+<v><i>valider</i>              <t>aim:er</t></v>
+<v><i>valiser</i>              <t>aim:er</t></v>
+<v><i>vallonner</i>            <t>aim:er</t></v>
+<v><i>valoir</i>               <t>va:loir</t></v>
+<v><i>valoriser</i>            <t>aim:er</t></v>
+<v><i>valouser</i>             <t>aim:er</t></v>
+<v><i>valser</i>               <t>aim:er</t></v>
+<v><i>vamper</i>               <t>aim:er</t></v>
+<v><i>vampiriser</i>           <t>aim:er</t></v>
+<v><i>vandaliser</i>           <t>aim:er</t></v>
+<v><i>vanner</i>               <t>aim:er</t></v>
+<v><i>vanter</i>               <t>aim:er</t></v>
+<v><i>vantiller</i>            <t>aim:er</t></v>
+<v><i>vapocraquer</i>          <t>aim:er</t></v>
+<v><i>vaporiser</i>            <t>aim:er</t></v>
+<v><i>vaquer</i>               <t>aim:er</t></v>
+<v><i>varapper</i>             <t>aim:er</t></v>
+<v><i>varier</i>               <t>aim:er</t></v>
+<v><i>varloper</i>             <t>aim:er</t></v>
+<v><i>vasectomiser</i>         <t>aim:er</t></v>
+<v><i>vaseliner</i>            <t>aim:er</t></v>
+<v><i>vaser</i>                        <t>aim:er</t></v>
+<v><i>vasouiller</i>           <t>aim:er</t></v>
+<v><i>vassaliser</i>           <t>aim:er</t></v>
+<v><i>vaticiner</i>            <t>aim:er</t></v>
+<v><i>vautrer</i>              <t>aim:er</t></v>
+<v><i>vectoriser</i>           <t>aim:er</t></v>
+<v><i>vedettiser</i>           <t>aim:er</t></v>
+<v><i>végétaliser</i>                <t>aim:er</t></v>
+<v><i>végéter</i>            <t>décr:éter</t></v>
+<v><i>véhiculer</i>           <t>aim:er</t></v>
+<v><i>veiller</i>              <t>aim:er</t></v>
+<v><i>veiner</i>               <t>aim:er</t></v>
+<v><i>vélariser</i>           <t>aim:er</t></v>
+<v><i>vêler</i>                       <t>aim:er</t></v>
+<v><i>velouter</i>             <t>aim:er</t></v>
+<v><i>velter</i>               <t>aim:er</t></v>
+<v><i>vendanger</i>            <t>man:ger</t></v>
+<v><i>vendiquer</i>            <t>aim:er</t></v>
+<v><i>vendre</i>               <t>ten:dre</t></v>
+<v><i>vénérer</i>            <t>réf:érer</t></v>
+<v><i>vener</i>                        <t>m:ener</t></v>
+<v><i>venger</i>               <t>man:ger</t></v>
+<v><i>venir</i>                        <t>t:enir</t></v>
+<v><i>venter</i>               <t>aim:er</t></v>
+<v><i>ventiler</i>             <t>aim:er</t></v>
+<v><i>ventouser</i>            <t>aim:er</t></v>
+<v><i>ventrouiller</i>         <t>aim:er</t></v>
+<v><i>verbaliser</i>           <t>aim:er</t></v>
+<v><i>verbiager</i>            <t>man:ger</t></v>
+<v><i>verdir</i>               <t>fin:ir</t></v>
+<v><i>verdoyer</i>             <t>netto:yer</t></v>
+<v><i>verduniser</i>           <t>aim:er</t></v>
+<v><i>vergeter</i>             <t>ach:eter</t></v>
+<v><i>verglacer</i>            <t>pla:cer</t></v>
+<v><i>vérifier</i>            <t>aim:er</t></v>
+<v><i>verjuter</i>             <t>aim:er</t></v>
+<v><i>vermiculer</i>           <t>aim:er</t></v>
+<v><i>vermifuger</i>           <t>man:ger</t></v>
+<v><i>vermiller</i>            <t>aim:er</t></v>
+<v><i>vermillonner</i>         <t>aim:er</t></v>
+<v><i>vermouler</i>            <t>aim:er</t></v>
+<v><i>vernaliser</i>           <t>aim:er</t></v>
+<v><i>vernir</i>               <t>fin:ir</t></v>
+<v><i>vernisser</i>            <t>aim:er</t></v>
+<v><i>véroler</i>             <t>aim:er</t></v>
+<v><i>véroter</i>             <t>aim:er</t></v>
+<v><i>verrouiller</i>          <t>aim:er</t></v>
+<v><i>verser</i>               <t>aim:er</t></v>
+<v><i>versifier</i>            <t>aim:er</t></v>
+<v><i>vert-de-griser</i>       <t>aim:er</t></v>
+<v><i>verticaliser</i>         <t>aim:er</t></v>
+<v><i>vertir</i>               <t>fin:ir</t></v>
+<v><i>vesser</i>               <t>aim:er</t></v>
+<v><i>vétiller</i>            <t>aim:er</t></v>
+<v><i>vêtir</i>                       <t>vêt:ir</t></v>
+<v><i>vexer</i>                        <t>aim:er</t></v>
+<v><i>viabiliser</i>           <t>aim:er</t></v>
+<v><i>viander</i>              <t>aim:er</t></v>
+<v><i>vibrer</i>               <t>aim:er</t></v>
+<v><i>vibrionner</i>           <t>aim:er</t></v>
+<v><i>vicier</i>               <t>aim:er</t></v>
+<v><i>victimer</i>             <t>aim:er</t></v>
+<v><i>victimiser</i>           <t>aim:er</t></v>
+<v><i>vidanger</i>             <t>man:ger</t></v>
+<v><i>videler</i>              <t>p:eler</t></v>
+<v><i>vider</i>                        <t>aim:er</t></v>
+<v><i>vidimer</i>              <t>aim:er</t></v>
+<v><i>vieillir</i>             <t>fin:ir</t></v>
+<v><i>vieller</i>              <t>aim:er</t></v>
+<v><i>vigneter</i>             <t>j:eter</t></v>
+<v><i>vilipender</i>           <t>aim:er</t></v>
+<v><i>villégiaturer</i>               <t>aim:er</t></v>
+<v><i>vinaigrer</i>            <t>aim:er</t></v>
+<v><i>vinculer</i>             <t>aim:er</t></v>
+<v><i>viner</i>                        <t>aim:er</t></v>
+<v><i>vinifier</i>             <t>aim:er</t></v>
+<v><i>violacer</i>             <t>pla:cer</t></v>
+<v><i>violenter</i>            <t>aim:er</t></v>
+<v><i>violer</i>               <t>aim:er</t></v>
+<v><i>violeter</i>             <t>j:eter</t></v>
+<v><i>violoner</i>             <t>aim:er</t></v>
+<v><i>vioquir</i>              <t>fin:ir</t></v>
+<v><i>virailler</i>            <t>aim:er</t></v>
+<v><i>virer</i>                        <t>aim:er</t></v>
+<v><i>virevolter</i>           <t>aim:er</t></v>
+<v><i>virevousser</i>          <t>aim:er</t></v>
+<v><i>virguler</i>             <t>aim:er</t></v>
+<v><i>viriliser</i>            <t>aim:er</t></v>
+<v><i>viroler</i>              <t>aim:er</t></v>
+<v><i>viser</i>                        <t>aim:er</t></v>
+<v><i>visionner</i>            <t>aim:er</t></v>
+<v><i>visiter</i>              <t>aim:er</t></v>
+<v><i>visser</i>               <t>aim:er</t></v>
+<v><i>visualiser</i>           <t>aim:er</t></v>
+<v><i>vitaliser</i>            <t>aim:er</t></v>
+<v><i>vitaminer</i>            <t>aim:er</t></v>
+<v><i>vitrer</i>               <t>aim:er</t></v>
+<v><i>vitrifier</i>            <t>aim:er</t></v>
+<v><i>vitrioler</i>            <t>aim:er</t></v>
+<v><i>vituler</i>              <t>aim:er</t></v>
+<v><i>vitupérer</i>           <t>réf:érer</t></v>
+<v><i>vivifier</i>             <t>aim:er</t></v>
+<v><i>vivisecter</i>           <t>aim:er</t></v>
+<v><i>vivoter</i>              <t>aim:er</t></v>
+<v><i>vivre</i>                        <t>v:ivre</t></v>
+<v><i>vobuler</i>              <t>aim:er</t></v>
+<v><i>vocaliser</i>            <t>aim:er</t></v>
+<v><i>vociférer</i>           <t>réf:érer</t></v>
+<v><i>voguer</i>               <t>aim:er</t></v>
+<v><i>voiler</i>               <t>aim:er</t></v>
+<v><i>voir</i>                 <t>v:oir</t></v>
+<v><i>voisiner</i>             <t>aim:er</t></v>
+<v><i>voiturer</i>             <t>aim:er</t></v>
+<v><i>volatiliser</i>          <t>aim:er</t></v>
+<v><i>volcaniser</i>           <t>aim:er</t></v>
+<v><i>voler</i>                        <t>aim:er</t></v>
+<v><i>voleter</i>              <t>j:eter</t></v>
+<v><i>voliger</i>              <t>man:ger</t></v>
+<v><i>volleyer</i>             <t>aim:er</t></v>
+<v><i>volter</i>               <t>aim:er</t></v>
+<v><i>voltiger</i>             <t>man:ger</t></v>
+<v><i>vomir</i>                        <t>fin:ir</t></v>
+<v><i>voter</i>                        <t>aim:er</t></v>
+<v><i>vouer</i>                        <t>aim:er</t></v>
+<v><i>vouloir</i>              <t>v:ouloir</t></v>
+<v><i>vousoyer</i>             <t>netto:yer</t></v>
+<v><i>vousser</i>              <t>aim:er</t></v>
+<v><i>voussoyer</i>            <t>netto:yer</t></v>
+<v><i>voûter</i>              <t>aim:er</t></v>
+<v><i>vouvoyer</i>             <t>netto:yer</t></v>
+<v><i>voyager</i>              <t>man:ger</t></v>
+<v><i>vriller</i>              <t>aim:er</t></v>
+<v><i>vrombir</i>              <t>fin:ir</t></v>
+<v><i>vulcaniser</i>           <t>aim:er</t></v>
+<v><i>vulgariser</i>           <t>aim:er</t></v>
+<v><i>vulnérabiliser</i>      <t>aim:er</t></v>
+<v><i>vulnérer</i>            <t>réf:érer</t></v>
+<v><i>warranter</i>            <t>aim:er</t></v>
+<v><i>yasser</i>               <t>aim:er</t></v>
+<v><i>yodiser</i>              <t>aim:er</t></v>
+<v><i>yodler</i>               <t>aim:er</t></v>
+<v><i>youtser</i>              <t>aim:er</t></v>
+<v><i>yoyoter</i>              <t>aim:er</t></v>
+<v><i>yoyotter</i>             <t>aim:er</t></v>
+<v><i>zapper</i>               <t>aim:er</t></v>
+<v><i>zébrer</i>              <t>cél:ébrer</t></v>
+<v><i>zéroter</i>             <t>aim:er</t></v>
+<v><i>zester</i>               <t>aim:er</t></v>
+<v><i>zézayer</i>             <t>pa:yer</t></v>
+<v><i>ziber</i>                        <t>aim:er</t></v>
+<v><i>zieuter</i>              <t>aim:er</t></v>
+<v><i>zigonner</i>             <t>aim:er</t></v>
+<v><i>zigouiller</i>           <t>aim:er</t></v>
+<v><i>ziguer</i>               <t>aim:er</t></v>
+<v><i>zigzaguer</i>            <t>aim:er</t></v>
+<v><i>zinguer</i>              <t>aim:er</t></v>
+<v><i>zinzinuler</i>           <t>aim:er</t></v>
+<v><i>zipper</i>               <t>aim:er</t></v>
+<v><i>zoner</i>                        <t>aim:er</t></v>
+<v><i>zonzonner</i>            <t>aim:er</t></v>
+<v><i>zoomer</i>               <t>aim:er</t></v>
+<v><i>zouker</i>               <t>aim:er</t></v>
+<v><i>zozoter</i>              <t>aim:er</t></v>
+<v><i>zwanzer</i>              <t>aim:er</t></v>
+<v><i>zyeuter</i>              <t>aim:er</t></v>
+
+</verbs-fr>
diff --git a/data/verbs-it.xml b/data/verbs-it.xml
new file mode 100644 (file)
index 0000000..33606a7
--- /dev/null
@@ -0,0 +1,287 @@
+<?xml version="1.0"?>
+
+<!--
+       verbs-it.xml - List of Italian verbs with their conjugation template
+       Copyright (C) 2010 Christophe Durville <http://polyglotte.tuxfamily.org>
+       Copyright (C) 2010 Pierre Sarrazin <http://sarrazip.com/>
+
+       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., 59 Temple Place - Suite 330, Boston, MA
+       02111-1307, USA.
+-->
+
+<!DOCTYPE verbs-it [
+       <!ELEMENT verbs-it (v+)>
+       <!ELEMENT v (i, t, aspirate-h?)>
+       <!ELEMENT i (#PCDATA)>  <!-- infinitive -->
+       <!ELEMENT t (#PCDATA)>  <!-- template (radical:termination) -->
+       <!ELEMENT aspirate-h EMPTY>  <!-- useful for verbs starting with h -->
+]>
+
+<verbs-it>
+<!-- 1er groupe -->
+<v><i>amare</i>                        <t>am:are</t></v>
+<v><i>parlare</i>              <t>am:are</t></v>
+<v><i>aspettare</i>            <t>am:are</t></v>
+<v><i>arrivare</i>             <t>am:are</t></v>
+<v><i>trovare</i>              <t>am:are</t></v>
+<v><i>pensare</i>              <t>am:are</t></v>
+<v><i>lavorare</i>             <t>am:are</t></v>
+<v><i>guardare</i>             <t>am:are</t></v>
+<v><i>tornare</i>              <t>am:are</t></v>
+<v><i>chiamare</i>             <t>am:are</t></v>
+<v><i>comprare</i>             <t>am:are</t></v>
+<v><i>insegnare</i>            <t>am:are</t></v>
+<v><i>passare</i>              <t>am:are</t></v>
+<v><i>inculare</i>             <t>am:are</t></v>
+<v><i>abitare</i>              <t>am:are</t></v>
+<v><i>restare</i>              <t>am:are</t></v>
+<v><i>inviare</i>              <t>am:are</t></v>
+<v><i>nuotare</i>              <t>am:are</t></v>
+<v><i>raccontare</i>           <t>am:are</t></v>
+<v><i>saltare</i>              <t>am:are</t></v>
+<v><i>pettinare</i>            <t>am:are</t></v>
+<v><i>sperare</i>              <t>am:are</t></v>
+<v><i>provare</i>              <t>am:are</t></v>
+<v><i>continuare</i>           <t>am:are</t></v>
+<v><i>mandare</i>              <t>am:are</t></v>
+<v><i>bisognare</i>            <t>am:are</t></v>
+<v><i>visitare</i>             <t>am:are</t></v>
+<v><i>cucinare</i>             <t>am:are</t></v>
+<v><i>ricordare</i>            <t>am:are</t></v>
+<v><i>telefonare</i>           <t>am:are</t></v>
+<v><i>preparare</i>            <t>am:are</t></v>
+<v><i>sognare</i>              <t>am:are</t></v>
+<v><i>aiutare</i>              <t>am:are</t></v>
+<v><i>sembrare</i>             <t>am:are</t></v>
+<v><i>fermare</i>              <t>am:are</t></v>
+<v><i>usare</i>                        <t>am:are</t></v>
+<v><i>suonare</i>              <t>am:are</t></v>
+<v><i>portare</i>              <t>am:are</t></v>
+<v><i>camminare</i>            <t>am:are</t></v>
+<v><i>cantare</i>              <t>am:are</t></v>
+<v><i>ascoltare</i>            <t>am:are</t></v>
+<v><i>alzare</i>               <t>am:are</t></v>
+<v><i>imparare</i>             <t>am:are</t></v>
+<v><i>incontrare</i>           <t>am:are</t></v>
+<v><i>entrare</i>              <t>am:are</t></v>
+<v><i>diventare</i>            <t>am:are</t></v>
+<v><i>lavare</i>               <t>am:are</t></v>
+<v><i>ritornare</i>            <t>am:are</t></v>
+<v><i>addormentare</i>         <t>am:are</t></v>
+<v><i>invitare</i>             <t>am:are</t></v>
+<v><i>salutare</i>             <t>am:are</t></v>
+<v><i>domandare</i>            <t>am:are</t></v>
+<v><i>sposare</i>              <t>am:are</t></v>
+<v><i>guadagnare</i>           <t>am:are</t></v>
+<v><i>nascondare</i>           <t>am:are</t></v>
+<v><i>riposare</i>             <t>am:are</t></v>
+<v><i>desiderare</i>           <t>am:are</t></v>
+<v><i>ballare</i>              <t>am:are</t></v>
+<v><i>volare</i>               <t>am:are</t></v>
+<v><i>accetare</i>             <t>am:are</t></v>
+<v><i>guidare</i>              <t>am:are</t></v>
+<v><i>scopare</i>              <t>am:are</t></v>
+<v><i>lodare</i>               <t>am:are</t></v>
+<v><i>cenare</i>               <t>am:are</t></v>
+<v><i>sborrare</i>             <t>am:are</t></v>
+<v><i>pesentare</i>            <t>am:are</t></v>
+<v><i>pranzare</i>             <t>am:are</t></v>
+<v><i>costare</i>              <t>am:are</t></v>
+
+
+
+       <!-- exceptions -->
+<v><i>dare</i>                 <t>d:are</t></v><!-- plusieurs possiblités dont une ~= stare -->
+<v><i>stare</i>                        <t>st:are</t></v>
+<v><i>fare</i>                 <t>f:are</t></v>
+<v><i>andare</i>               <t>:andare</t></v>
+
+
+       <!-- 1er groupe en iare (perdent un i au prés 2psing)-->
+<v><i>studiare</i>             <t>studi:are</t></v>
+<v><i>cambiare</i>             <t>studi:are</t></v>
+<v><i>svegliare</i>            <t>studi:are</t></v>
+<v><i>iniziare</i>             <t>studi:are</t></v>
+<v><i>annoiare</i>             <t>studi:are</t></v>
+<v><i>sbagliare</i>            <t>studi:are</t></v>
+<v><i>arrabbiare</i>           <t>studi:are</t></v>
+
+
+       <!-- 1er groupe en (cg)iare -->
+<v><i>mangiare</i>             <t>mang:iare</t></v>
+<v><i>viaggiare</i>            <t>mang:iare</t></v>
+<v><i>cominciare</i>           <t>mang:iare</t></v>
+<v><i>lasciare</i>             <t>mang:iare</t></v>
+<v><i>baciare</i>              <t>mang:iare</t></v>
+
+
+       <!-- 1er groupe en (cg)are -->
+<v><i>giocare</i>              <t>gioc:are</t></v>
+<v><i>cercare</i>              <t>gioc:are</t></v>
+<v><i>cagare</i>               <t>gioc:are</t></v>
+<v><i>pagare</i>               <t>gioc:are</t></v>
+<v><i>spiegare</i>             <t>gioc:are</t></v>
+<v><i>dimenticare</i>          <t>gioc:are</t></v>
+<v><i>mancare</i>              <t>gioc:are</t></v>
+<!-- mega exceptions -->
+
+
+
+<!--2e groupe -->
+<v><i>credere</i>              <t>cred:ere</t></v>
+<v><i>temere</i>               <t>cred:ere</t></v>
+<v><i>vendere</i>              <t>cred:ere</t></v>
+
+<v><i>piacere</i>              <t>piac:ere</t></v>
+<!--<v><i>prendere</i>         <t>part:ire</t></v>
+<v><i>bere</i>                 <t>part:ire</t></v>
+<v><i>scrivere</i>             <t>part:ire</t></v>
+<v><i>cuocere</i>              <t>part:ire</t></v>
+<v><i>rimanere</i>             <t>part:ire</t></v>
+<v><i>conoscere</i>            <t>part:ire</t></v>
+<v><i>vivere</i>               <t>part:ire</t></v>
+<v><i>chiedere</i>             <t>part:ire</t></v>
+<v><i>correre</i>              <t>part:ire</t></v>
+<v><i>tenere</i>               <t>part:ire</t></v>
+<v><i>chiudere</i>             <t>fin:ire</t></v>
+<v><i>nascere</i>              <t>fin:ire</t></v>
+<v><i>perdere</i>              <t>part:ire</t></v>
+<v><i>cadere</i>               <t>fin:ire</t></v>
+<v><i>decidere</i>             <t>f:are</t></v>
+<v><i>scegliere</i>            <t>part:ire</t></v>
+<v><i>sedere</i>               <t>part:ire</t></v>
+<v><i>ricevere</i>             <t>part:ire</t></v>
+<v><i>risponderere</i>         <t>part:ire</t></v>
+<v><i>vincere</i>              <t>part:ire</t></v>
+<v><i>ridere</i>               <t>part:ire</t></v>
+<v><i>scendere</i>             <t>part:ire</t></v>
+<v><i>crescere</i>             <t>part:ire</t></v>
+
+<v><i>ternere</i>              <t>part:ire</t></v>
+<v><i>spegnere</i>             <t>part:ire</t></v>
+<v><i>tacere</i>               <t>part:ire</t></v>
+<v><i>soccombere</i>           <t>part:ire</t></v>
+<v><i>rompere</i>              <t>part:ire</t></v>
+<v><i>cogliere</i>             <t>s:apere</t></v>
+<v><i>succedere</i>            <t>fin:ire</t></v>
+<v><i>accendere</i>            <t>part:ire</t></v>
+<v><i>piangere</i>             <t>fin:ire</t></v>
+<v><i>rendere</i>              <t>part:ire</t></v>
+<v><i>accorgere</i>            <t>part:ire</t></v>
+<v><i>spendere</i>             <t>part:ire</t></v>
+<v><i>esigere</i>              <t>part:ire</t></v>
+<v><i>giungere</i>             <t>part:ire</t></v>
+<v><i>facere</i>               <t>part:ire</t></v>
+<v><i>dipringere</i>           <t>part:ire</t></v>
+<v><i>correggere</i>           <t>part:ire</t></v>
+<v><i>ripetere</i>             <t>part:ire</t></v>
+<v><i>muovere</i>              <t>part:ire</t></v>
+<v><i>permettere</i>           <t>s:apere</t></v>
+<v><i>discutere</i>            <t>fin:ire</t></v>
+<v><i>aggiungere</i>           <t>fin:ire</t></v>
+<v><i>giacere</i>              <t>f:are</t></v>
+<v><i>valere</i>               <t>f:are</t></v>
+<v><i>smettere</i>             <t>part:ire</t></v>
+<v><i>bevere</i>               <t>part:ire</t></v>
+<v><i>uccidere</i>             <t>part:ire</t></v>
+<v><i>godere</i>               <t>part:ire</t></v>
+<v><i>promettere</i>           <t>part:ire</t></v>
+<v><i>redigere</i>             <t>part:ire</t></v>
+<v><i>piovere</i>              <t>:andare</t></v>
+<v><i>togliere</i>             <t>part:ire</t></v>
+<v><i>parere</i>               <t>part:ire</t></v>
+<v><i>dividere</i>             <t>part:ire</t></v>
+<v><i>ottonere</i>             <t>part:ire</t></v>
+<v><i>fottere</i>              <t>part:ire</t></v>-->
+
+
+
+       <!-- exceptions -->
+<v><i>sapere</i>               <t>s:apere</t></v><!-- modal-->
+<v><i>potere</i>               <t>p:otere</t></v><!-- modal-->
+<v><i>volere</i>               <t>v:olere</t></v><!-- modal-->
+<v><i>dovere</i>               <t>d:overe</t></v><!-- modal-->
+<v><i>leggere</i>              <t>le:ggere</t></v>
+<v><i>mettere</i>              <t>m:ettere</t></v>
+<v><i>vedere</i>               <t>v:edere</t></v>
+
+
+
+
+<!-- 3e groupe (a)-->
+<!-- (dividere) -->
+<v><i>partire</i>              <t>part:ire</t></v>
+<v><i>dormire</i>              <t>part:ire</t></v>
+<v><i>sentire</i>              <t>part:ire</t></v>
+<v><i>vestire</i>              <t>part:ire</t></v>
+<v><i>divertire</i>            <t>part:ire</t></v>
+<v><i>seguire</i>              <t>part:ire</t></v>
+<v><i>servire</i>              <t>part:ire</t></v>
+<v><i>soffrire</i>             <t>part:ire</t></v>
+<v><i>fuggire</i>              <t>part:ire</t></v>
+
+
+       <!-- exceptions -->
+<v><i>uscire</i>               <t>:uscire</t></v>
+<!--<v><i>aprire</i>           <t>ap:rire</t></v>-->
+       <!-- 3e groupe en (cg)ire -->
+<!--<v><i>cucire</i>           <t>cuc:ire</t></v>-->
+
+<!-- 3e groupe (b)-->
+<v><i>finire</i>               <t>fin:ire</t></v>
+<v><i>capire</i>               <t>fin:ire</t></v>
+<v><i>preferire</i>            <t>fin:ire</t></v>
+<v><i>pulire</i>               <t>fin:ire</t></v>
+<v><i>spedire</i>              <t>fin:ire</t></v>
+<v><i>stupire</i>              <t>fin:ire</t></v>
+
+
+
+       <!-- exceptions -->
+<!--<v><i>venire</i>           <t>fin:ire</t></v>
+<v><i>salire</i>               <t>sal:ire</t></v>
+<v><i>morire</i>               <t>m:orire</t></v>
+<v><i>riuscire</i>             <t>part:ire</t></v>
+<v><i>offrire</i>              <t>part:ire</t></v>
+<v><i>apparire</i>             <t>part:ire</t></v>
+<v><i>udire</i>                        <t>part:ire</t></v>
+<v><i>scoprire</i>             <t>part:ire</t></v>-->
+
+
+
+
+
+
+
+<!-- (andarsene)-->
+<v><i>partire</i>              <t>fin:ire</t></v>
+<!--(addirsi)-->
+<v><i>addire</i>               <t>part:ire</t></v>
+
+<!-- auxiliaires -->
+<v><i>avere</i>                        <t>:avere</t></v>
+<v><i>essere</i>               <t>:essere</t></v>
+
+
+<!--<v><i>proporre</i>         <t>part:ire</t></v>
+<v><i>porre</i>                        <t>part:ire</t></v>
+<v><i>tradurre</i>             <t>fin:ire</t></v>
+<v><i>condurre</i>             <t>part:ire</t></v>
+<v><i>produrre</i>             <t>part:ire</t></v>
+<v><i>costruire</i>            <t>part:ire</t></v>
+<v><i>trarre</i>               <t>am:are</t></v>-->
+
+
+</verbs-it>
diff --git a/deployment.pri b/deployment.pri
new file mode 100644 (file)
index 0000000..cc21b2b
--- /dev/null
@@ -0,0 +1,126 @@
+# checksum 0x838c version 0x70002
+# This file was generated by an application wizard of Qt Creator.
+# The code below handles deployment to Symbian and Maemo, aswell as copying
+# of the application data to shadow build directories on desktop.
+# It is recommended not to modify this file, since newer versions of Qt Creator
+# may offer an updated version of it.
+
+defineTest(qtcAddDeployment) {
+for(deploymentfolder, DEPLOYMENTFOLDERS) {
+    item = item$${deploymentfolder}
+    itemsources = $${item}.sources
+    $$itemsources = $$eval($${deploymentfolder}.source)
+    itempath = $${item}.path
+    $$itempath= $$eval($${deploymentfolder}.target)
+    export($$itemsources)
+    export($$itempath)
+    DEPLOYMENT += $$item
+}
+
+MAINPROFILEPWD = $$PWD
+
+symbian {
+    isEmpty(ICON):exists($${TARGET}.svg):ICON = $${TARGET}.svg
+    isEmpty(TARGET.EPOCHEAPSIZE):TARGET.EPOCHEAPSIZE = 0x20000 0x2000000
+} else:win32 {
+    copyCommand =
+    for(deploymentfolder, DEPLOYMENTFOLDERS) {
+        source = $$MAINPROFILEPWD/$$eval($${deploymentfolder}.source)
+        source = $$replace(source, /, \\)
+        sourcePathSegments = $$split(source, \\)
+        target = $$OUT_PWD/$$eval($${deploymentfolder}.target)/$$last(sourcePathSegments)
+        target = $$replace(target, /, \\)
+        target ~= s,\\\\\\.?\\\\,\\,
+        !isEqual(source,$$target) {
+            !isEmpty(copyCommand):copyCommand += &&
+            isEqual(QMAKE_DIR_SEP, \\) {
+                copyCommand += $(COPY_DIR) \"$$source\" \"$$target\"
+            } else {
+                source = $$replace(source, \\\\, /)
+                target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
+                target = $$replace(target, \\\\, /)
+                copyCommand += test -d \"$$target\" || mkdir -p \"$$target\" && cp -r \"$$source\" \"$$target\"
+            }
+        }
+    }
+    !isEmpty(copyCommand) {
+        copyCommand = @echo Copying application data... && $$copyCommand
+        copydeploymentfolders.commands = $$copyCommand
+        first.depends = $(first) copydeploymentfolders
+        export(first.depends)
+        export(copydeploymentfolders.commands)
+        QMAKE_EXTRA_TARGETS += first copydeploymentfolders
+    }
+} else:unix {
+    maemo5 {
+        desktopfile.files = $${TARGET}.desktop
+        desktopfile.path = /usr/share/applications/hildon
+        icon.files = $${TARGET}64.png
+        icon.path = /usr/share/icons/hicolor/64x64/apps
+    } else:!isEmpty(MEEGO_VERSION_MAJOR) {
+        desktopfile.files = $${TARGET}_harmattan.desktop
+        desktopfile.path = /usr/share/applications
+        icon.files = $${TARGET}80.png
+        icon.path = /usr/share/icons/hicolor/80x80/apps
+    } else { # Assumed to be a Desktop Unix
+        copyCommand =
+        for(deploymentfolder, DEPLOYMENTFOLDERS) {
+            source = $$MAINPROFILEPWD/$$eval($${deploymentfolder}.source)
+            source = $$replace(source, \\\\, /)
+            macx {
+                target = $$OUT_PWD/$${TARGET}.app/Contents/Resources/$$eval($${deploymentfolder}.target)
+            } else {
+                target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
+            }
+            target = $$replace(target, \\\\, /)
+            sourcePathSegments = $$split(source, /)
+            targetFullPath = $$target/$$last(sourcePathSegments)
+            targetFullPath ~= s,/\\.?/,/,
+            !isEqual(source,$$targetFullPath) {
+                !isEmpty(copyCommand):copyCommand += &&
+                copyCommand += $(MKDIR) \"$$target\"
+                copyCommand += && $(COPY_DIR) \"$$source\" \"$$target\"
+            }
+        }
+        !isEmpty(copyCommand) {
+            copyCommand = @echo Copying application data... && $$copyCommand
+            copydeploymentfolders.commands = $$copyCommand
+            first.depends = $(first) copydeploymentfolders
+            export(first.depends)
+            export(copydeploymentfolders.commands)
+            QMAKE_EXTRA_TARGETS += first copydeploymentfolders
+        }
+    }
+    installPrefix = /opt/$${TARGET}
+    for(deploymentfolder, DEPLOYMENTFOLDERS) {
+        item = item$${deploymentfolder}
+        itemfiles = $${item}.files
+        $$itemfiles = $$eval($${deploymentfolder}.source)
+        itempath = $${item}.path
+        $$itempath = $${installPrefix}/$$eval($${deploymentfolder}.target)
+        export($$itemfiles)
+        export($$itempath)
+        INSTALLS += $$item
+    }
+
+    !isEmpty(desktopfile.path) {
+        export(icon.files)
+        export(icon.path)
+        export(desktopfile.files)
+        export(desktopfile.path)
+        INSTALLS += icon desktopfile
+    }
+
+    target.path = $${installPrefix}/bin
+    export(target.path)
+    INSTALLS += target
+}
+
+export (ICON)
+export (INSTALLS)
+export (DEPLOYMENT)
+export (TARGET.EPOCHEAPSIZE)
+export (TARGET.CAPABILITY)
+export (LIBS)
+export (QMAKE_EXTRA_TARGETS)
+}
diff --git a/main.cpp b/main.cpp
new file mode 100644 (file)
index 0000000..d25fd7d
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,15 @@
+#include "mainwindow.h"
+
+#include <QtGui/QApplication>
+
+int main(int argc, char *argv[])
+{
+    QApplication app(argc, argv);
+
+    MainWindow mainWindow;
+    mainWindow.setOrientation(MainWindow::ScreenOrientationAuto);
+
+    mainWindow.showExpanded();
+
+    return app.exec();
+}
diff --git a/mainwindow.cpp b/mainwindow.cpp
new file mode 100644 (file)
index 0000000..e82ebff
--- /dev/null
@@ -0,0 +1,114 @@
+#include "mainwindow.h"
+#include "ui_mainwindow.h"
+
+#include <QtCore/QCoreApplication>
+
+MainWindow::MainWindow(QWidget *parent)
+    : QMainWindow(parent), ui(new Ui::MainWindow)
+{
+#ifdef Q_WS_MAEMO_5
+    this->setAttribute(Qt::WA_Maemo5StackedWindow);
+    this->setWindowFlags(Qt::Window);
+#endif
+    ui->setupUi(this);
+    setupcodedUI();
+}
+
+void MainWindow::setupcodedUI()
+{
+    cent = centralWidget();
+    //mlayout = qobject_cast<QVBoxLayout *>(cent->layout());
+    mlayout = new QVBoxLayout;
+    btlayout = new QHBoxLayout;
+
+    QScrollArea *scrollArea = new QScrollArea;
+    scrollArea->setBackgroundRole(QPalette::Dark);
+    mlayout->addWidget(scrollArea);
+
+    btnClear = new QPushButton;
+    btnClear->setIcon(QIcon("/usr/share/icons/hicolor/64x64/hildon/general_delete.png"));
+    wordinput = new QLineEdit;
+    labVerb = new QLabel();
+    labVerb->setMinimumWidth(250);
+    btlayout->addWidget(btnClear);
+    btlayout->addWidget(labVerb);
+    btlayout->addWidget(wordinput);
+    btnLookup = new QPushButton;  // Lookup button
+    btnLookup->setIcon(QIcon("/usr/share/icons/hicolor/64x64/hildon/general_search.png"));
+    btlayout->addWidget(btnLookup);
+
+    mlayout->addLayout(btlayout);
+    cent->setLayout(mlayout);
+
+    // Clear the word input when Clear button is tapped
+    QObject::connect(btnClear, SIGNAL(clicked()), wordinput, SLOT(clear()));
+    QObject::connect(btnClear, SIGNAL(clicked()), labVerb, SLOT(clear()));
+
+    QObject::connect(wordinput, SIGNAL(returnPressed()), this, SLOT(startLookup()));
+    QObject::connect(btnLookup, SIGNAL(clicked()), this, SLOT(startLookup()));
+}
+
+MainWindow::~MainWindow()
+{
+    delete ui;
+}
+
+void MainWindow::setOrientation(ScreenOrientation orientation)
+{
+#if defined(Q_OS_SYMBIAN)
+    // If the version of Qt on the device is < 4.7.2, that attribute won't work
+    if (orientation != ScreenOrientationAuto) {
+        const QStringList v = QString::fromAscii(qVersion()).split(QLatin1Char('.'));
+        if (v.count() == 3 && (v.at(0).toInt() << 16 | v.at(1).toInt() << 8 | v.at(2).toInt()) < 0x040702) {
+            qWarning("Screen orientation locking only supported with Qt 4.7.2 and above");
+            return;
+        }
+    }
+#endif // Q_OS_SYMBIAN
+
+    Qt::WidgetAttribute attribute;
+    switch (orientation) {
+#if QT_VERSION < 0x040702
+    // Qt < 4.7.2 does not yet have the Qt::WA_*Orientation attributes
+    case ScreenOrientationLockPortrait:
+        attribute = static_cast<Qt::WidgetAttribute>(128);
+        break;
+    case ScreenOrientationLockLandscape:
+        attribute = static_cast<Qt::WidgetAttribute>(129);
+        break;
+    default:
+    case ScreenOrientationAuto:
+        attribute = static_cast<Qt::WidgetAttribute>(130);
+        break;
+#else // QT_VERSION < 0x040702
+    case ScreenOrientationLockPortrait:
+        attribute = Qt::WA_LockPortraitOrientation;
+        break;
+    case ScreenOrientationLockLandscape:
+        attribute = Qt::WA_LockLandscapeOrientation;
+        break;
+    default:
+    case ScreenOrientationAuto:
+        attribute = Qt::WA_AutoOrientation;
+        break;
+#endif // QT_VERSION < 0x040702
+    };
+    setAttribute(attribute, true);
+}
+
+void MainWindow::showExpanded()
+{
+#if defined(Q_OS_SYMBIAN) || defined(Q_WS_SIMULATOR)
+    showFullScreen();
+#elif defined(Q_WS_MAEMO_5)
+    showMaximized();
+#else
+    show();
+#endif
+}
+
+void MainWindow::startLookup()
+{
+    QString text = wordinput->text();
+    labVerb->setText(text);
+}
diff --git a/mainwindow.h b/mainwindow.h
new file mode 100644 (file)
index 0000000..30fdaec
--- /dev/null
@@ -0,0 +1,51 @@
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include <QtGui/QMainWindow>
+#include <QtGui/QTextEdit>
+#include <QtGui/QPushButton>
+#include <QtGui/QVBoxLayout>
+#include <QtGui/QLineEdit>
+#include <QtGui/QScrollArea>
+#include <QtGui/QLabel>
+
+namespace Ui {
+    class MainWindow;
+}
+
+class MainWindow : public QMainWindow
+{
+    Q_OBJECT
+public:
+    enum ScreenOrientation {
+        ScreenOrientationLockPortrait,
+        ScreenOrientationLockLandscape,
+        ScreenOrientationAuto
+    };
+
+    explicit MainWindow(QWidget *parent = 0);
+    virtual ~MainWindow();
+
+    // Setup UI by coding, not by QtDesigner
+    void setupcodedUI();
+
+    // Note that this will only have an effect on Symbian and Fremantle.
+    void setOrientation(ScreenOrientation orientation);
+
+    void showExpanded();
+
+public slots:
+    void startLookup();
+
+private:
+    Ui::MainWindow *ui;
+    QWidget     *cent;               // Central widget
+    QVBoxLayout *mlayout;            // Main layout
+    QHBoxLayout *btlayout;           // Layout to pack the functional buttons
+    QPushButton *btnClear;           // Clear button
+    QLineEdit   *wordinput;          //  Word input
+    QPushButton *btnLookup;          // Lookup button
+    QLabel      *labVerb;
+};
+
+#endif // MAINWINDOW_H
diff --git a/mainwindow.ui b/mainwindow.ui
new file mode 100644 (file)
index 0000000..18059e2
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>MainWindow</class>
+ <widget class="QMainWindow" name="MainWindow">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>200</width>
+    <height>320</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MVerbiste</string>
+  </property>
+  <widget class="QWidget" name="centralWidget">
+   <property name="enabled">
+    <bool>true</bool>
+   </property>
+  </widget>
+  <widget class="QMenuBar" name="menuBar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>200</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+ </widget>
+ <layoutdefault spacing="6" margin="11"/>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/mverbiste.desktop b/mverbiste.desktop
new file mode 100644 (file)
index 0000000..c2bdfdf
--- /dev/null
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Version=1.0
+Type=Application
+Terminal=false
+Name=mverbiste
+Exec=/opt/mverbiste/bin/mverbiste
+Icon=mverbiste64
+X-Window-Icon=
+X-HildonDesk-ShowInToolbar=true
+X-Osso-Type=application/x-executable
diff --git a/mverbiste.pro b/mverbiste.pro
new file mode 100644 (file)
index 0000000..0fce4f5
--- /dev/null
@@ -0,0 +1,69 @@
+# Add files and directories to ship with the application 
+# by adapting the examples below.
+# file1.source = myfile
+# dir1.source = mydir
+DEPLOYMENTFOLDERS = # file1 dir1
+
+symbian:TARGET.UID3 = 0xE214283E
+
+# Smart Installer package's UID
+# This UID is from the protected range 
+# and therefore the package will fail to install if self-signed
+# By default qmake uses the unprotected range value if unprotected UID is defined for the application
+# and 0x2002CCCF value if protected UID is given to the application
+#symbian:DEPLOYMENT.installer_header = 0x2002CCCF
+
+# Allow network access on Symbian
+symbian:TARGET.CAPABILITY += NetworkServices
+
+# If your application uses the Qt Mobility libraries, uncomment
+# the following lines and add the respective components to the 
+# MOBILITY variable. 
+# CONFIG += mobility
+# MOBILITY +=
+
+SOURCES += main.cpp mainwindow.cpp \
+    verbiste/Trie.cpp \
+    verbiste/misc-types.cpp \
+    verbiste/FrenchVerbDictionary.cpp \
+    verbiste/c-api.cpp
+HEADERS += mainwindow.h \
+    verbiste/Trie.h \
+    verbiste/misc-types.h \
+    verbiste/FrenchVerbDictionary.h \
+    verbiste/c-api.h
+FORMS += mainwindow.ui
+
+# Please do not modify the following two lines. Required for deployment.
+include(deployment.pri)
+qtcAddDeployment()
+
+OTHER_FILES += \
+    qtc_packaging/debian_harmattan/rules \
+    qtc_packaging/debian_harmattan/README \
+    qtc_packaging/debian_harmattan/manifest.aegis \
+    qtc_packaging/debian_harmattan/copyright \
+    qtc_packaging/debian_harmattan/control \
+    qtc_packaging/debian_harmattan/compat \
+    qtc_packaging/debian_harmattan/changelog \
+    qtc_packaging/debian_fremantle/rules \
+    qtc_packaging/debian_fremantle/README \
+    qtc_packaging/debian_fremantle/copyright \
+    qtc_packaging/debian_fremantle/control \
+    qtc_packaging/debian_fremantle/compat \
+    qtc_packaging/debian_fremantle/changelog \
+    verbiste/verbiste.dox \
+    verbiste/Makefile.in \
+    verbiste/Makefile.am \
+    data/verbs-it.xml \
+    data/verbs-fr.xml \
+    data/verbs-el.xml \
+    data/conjugation-it.xml \
+    data/conjugation-fr.xml \
+    data/conjugation-el.xml \
+    data/check-data.pl
+
+# To build verbiste
+unix: CONFIG += link_pkgconfig
+unix: PKGCONFIG += libxml-2.0
+QMAKE_CXXFLAGS += -DLIBDATADIR=\\\"data\\\" -DICONV_CONST= -DVERBSFRXML=\\\"data/verbs-fr.xml\\\"
diff --git a/mverbiste.svg b/mverbiste.svg
new file mode 100644 (file)
index 0000000..566acfa
--- /dev/null
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="44px"
+   version="1.1"
+   viewBox="0 0 44 44"
+   width="44px"
+   x="0px"
+   y="0px"
+   id="svg2"
+   inkscape:version="0.47 r22583"
+   sodipodi:docname="qt.svg">
+  <metadata
+     id="metadata18">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs16">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 22 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="44 : 22 : 1"
+       inkscape:persp3d-origin="22 : 14.666667 : 1"
+       id="perspective2836" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1020"
+     id="namedview14"
+     showgrid="false"
+     inkscape:zoom="21.454545"
+     inkscape:cx="49.412871"
+     inkscape:cy="21.894358"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g3" />
+  <g
+     transform="matrix(0.18308778,0,0,0.18308778,6.6100946,3.2385199)"
+     id="g3">
+    <path
+       d="M 43.09,0.3586 C 40.94,0.0036 38.84,-0.0824 36.81,0.0776 31.968136,0.39505671 27.122677,0.73638425 22.28,1.0696 9.62,2.0816 0,12.4996 0,26.8896 l 0,169.7 14.19,13.2 28.87,-209.42 0.03,-0.011 z"
+       style="fill:#006225"
+       id="path5"
+       sodipodi:nodetypes="cccccccc" />
+    <path
+       d="m 174.4,160 c 0,12.5 -7.75,24.07 -17.57,25.77 L 14.23,209.73 V 25.93 C 14.23,9.21 27.57,-2.27 43.12,0.3 l 131.3,21.52 v 138.2 z"
+       style="fill:#80c342"
+       id="path7" />
+    <path
+       d="m 154.9,80.96 -12.96,-0.598 0,0.278 6.945,0.32 6.016,0 z"
+       style="fill:#006225"
+       id="path11" />
+    <path
+       d="m 144.6,135.6 c 0.66,0.328 1.43,0.476 2.351,0.476 0.161,0 0.329,-0.004 0.497,-0.016 2.55,-0.148 5.32,-0.933 8.343,-2.308 h -6.015 c -1.821,0.832 -3.532,1.457 -5.176,1.848 z"
+       style="fill:#006225"
+       id="path13" />
+    <path
+       id="path17"
+       style="fill:#ffffff"
+       d="m 91.15,132.4 c 2.351,-6.051 3.511,-17.91 3.511,-35.62 0,-15.89 -1.148,-26.82 -3.484,-32.81 -2.336,-6.027 -5.832,-9.281 -10.52,-9.691 -0.359,-0.031 -0.714,-0.051 -1.058,-0.051 -4.34,0 -7.68,2.535 -10.01,7.625 -2.52,5.543 -3.793,17.04 -3.793,34.44 0,16.82 1.238,28.75 3.734,35.75 2.356,6.672 5.879,9.976 10.5,9.976 0.207,0 0.41,-0.008 0.621,-0.019 4.633,-0.293 8.121,-3.496 10.49,-9.602 m 17.98,3.75 c -4.117,9.707 -10.39,16.06 -18.99,19 0.867,4.449 2.176,7.441 3.922,9.019 1.351,1.211 3.433,1.821 6.222,1.821 0.805,0 1.668,-0.055 2.59,-0.157 v 13.12 l -5.961,0.782 c -1.758,0.23 -3.426,0.343 -5.004,0.343 -5.218,0 -9.445,-1.265 -12.62,-3.824 -4.207,-3.379 -7.308,-9.894 -9.297,-19.54 -9.136,-1.945 -16.26,-7.754 -21.19,-17.5 -5.004,-9.902 -7.551,-24.39 -7.551,-43.34 0,-20.43 3.484,-35.51 10.34,-45.07 5.789,-8.07 13.86,-12.04 24.02,-12.04 1.629,0 3.309,0.102 5.043,0.305 11.95,1.375 20.62,7.016 26.26,16.79 5.535,9.562 8.254,23.27 8.254,41.26 0,16.48 -2,29.45 -6.043,39.02 z M 130.4,45.91 l 11.52,1.238 0,20.21 12.96,0.914 0,12.68 -12.96,-0.598 0,46.33 c 0,4.032 0.445,6.625 1.34,7.789 0.8,1.067 2.046,1.594 3.71,1.594 0.161,0 0.329,-0.004 0.497,-0.016 2.55,-0.148 5.32,-0.933 8.343,-2.308 v 11.65 c -5.136,2.258 -10.18,3.598 -15.12,4.02 -0.718,0.055 -1.41,0.086 -2.078,0.086 -4.48,0 -7.906,-1.301 -10.25,-3.934 -2.73,-3.051 -4.09,-7.949 -4.09,-14.67 V 79.535 L 118.046,79.25 V 65.66 l 7.586,0.547 4.773,-20.3 z" />
+    <path
+       d="m 100.3,166 c 0.809,0 1.672,-0.055 2.59,-0.157 H 98.054 C 98.73,165.949 99.507,166 100.3,166 z"
+       style="fill:#006225"
+       id="path19" />
+    <path
+       id="path21"
+       style="fill:#006225"
+       d="m 84.85,63.98 c 2.336,5.997 3.484,16.92 3.484,32.81 0,17.7 -1.16,29.57 -3.512,35.62 -1.894,4.879 -4.527,7.902 -7.863,9.07 0.965,0.368 1.992,0.551 3.078,0.551 0.207,0 0.41,-0.008 0.621,-0.019 4.633,-0.293 8.121,-3.496 10.49,-9.602 2.351,-6.051 3.511,-17.91 3.511,-35.62 0,-15.89 -1.148,-26.82 -3.484,-32.81 -2.336,-6.027 -5.832,-9.281 -10.52,-9.691 -0.359,-0.031 -0.714,-0.051 -1.058,-0.051 -1.09,0 -2.117,0.16 -3.082,0.481 h -0.004 c 3.601,1.121 6.379,4.215 8.336,9.261 z m -2.344,114.3 c -0.113,-0.05 -0.227,-0.105 -0.336,-0.16 -0.012,-0.004 -0.023,-0.012 -0.035,-0.015 -0.102,-0.051 -0.207,-0.106 -0.309,-0.157 -0.019,-0.011 -0.039,-0.019 -0.058,-0.031 -0.09,-0.051 -0.184,-0.098 -0.278,-0.148 -0.027,-0.016 -0.054,-0.036 -0.086,-0.051 -0.082,-0.043 -0.164,-0.09 -0.242,-0.137 -0.039,-0.023 -0.078,-0.047 -0.113,-0.07 -0.07,-0.039 -0.145,-0.082 -0.215,-0.125 -0.047,-0.031 -0.094,-0.059 -0.14,-0.09 -0.059,-0.039 -0.118,-0.074 -0.176,-0.113 -0.059,-0.039 -0.114,-0.075 -0.168,-0.114 -0.051,-0.031 -0.102,-0.066 -0.149,-0.097 -0.066,-0.047 -0.132,-0.094 -0.195,-0.137 -0.039,-0.027 -0.078,-0.055 -0.113,-0.082 -0.078,-0.055 -0.153,-0.113 -0.231,-0.172 -0.023,-0.016 -0.05,-0.035 -0.078,-0.055 -0.098,-0.078 -0.199,-0.156 -0.297,-0.234 -4.207,-3.379 -7.308,-9.894 -9.297,-19.54 -9.136,-1.945 -16.26,-7.754 -21.19,-17.5 -5.004,-9.902 -7.551,-24.39 -7.551,-43.34 0,-20.43 3.484,-35.51 10.34,-45.07 5.789,-8.07 13.86,-12.04 24.02,-12.04 h -6.351 c -10.15,0.008 -18.22,3.977 -24,12.04 -6.855,9.563 -10.34,24.64 -10.34,45.07 0,18.95 2.547,33.44 7.551,43.34 4.934,9.75 12.05,15.56 21.19,17.5 1.989,9.641 5.09,16.16 9.297,19.54 3.176,2.559 7.403,3.824 12.62,3.824 0.098,0 0.199,0 0.297,-0.004 h 5.539 c -3.406,-0.05 -6.383,-0.66 -8.906,-1.828 L 82.498,178.28 z M 128.4,145.6 c -2.73,-3.051 -4.09,-7.949 -4.09,-14.67 V 79.57 l -6.226,-0.285 v -13.59 h -6.016 v 3.035 c 0.871,3.273 1.555,6.82 2.063,10.64 l 4.164,0.192 v 51.36 c 0,6.723 1.367,11.62 4.09,14.67 2.343,2.633 5.765,3.934 10.25,3.934 h 6.015 c -4.48,0 -7.906,-1.301 -10.25,-3.934 z m 2.043,-99.66 -6.016,0 -4.668,19.88 5.911,0.422 4.773,-20.3 z" />
+  </g>
+</svg>
diff --git a/mverbiste64.png b/mverbiste64.png
new file mode 100644 (file)
index 0000000..707d5c4
Binary files /dev/null and b/mverbiste64.png differ
diff --git a/mverbiste80.png b/mverbiste80.png
new file mode 100644 (file)
index 0000000..6ad8096
Binary files /dev/null and b/mverbiste80.png differ
diff --git a/mverbiste_harmattan.desktop b/mverbiste_harmattan.desktop
new file mode 100644 (file)
index 0000000..a161b0b
--- /dev/null
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Version=1.0
+Type=Application
+Terminal=false
+Name=mverbiste
+Exec=/usr/bin/single-instance /opt/mverbiste/bin/mverbiste
+Icon=/usr/share/icons/hicolor/80x80/apps/mverbiste80.png
+X-Window-Icon=
+X-HildonDesk-ShowInToolbar=true
+X-Osso-Type=application/x-executable
diff --git a/qtc_packaging/debian_fremantle/README b/qtc_packaging/debian_fremantle/README
new file mode 100644 (file)
index 0000000..6a85deb
--- /dev/null
@@ -0,0 +1,6 @@
+The Debian Package mverbiste
+----------------------------
+
+Comments regarding the Package
+
+ -- Nguyễn Hồng Quân <hongquan@unknown>  Wed, 24 Oct 2012 22:43:33 +0700
diff --git a/qtc_packaging/debian_fremantle/changelog b/qtc_packaging/debian_fremantle/changelog
new file mode 100644 (file)
index 0000000..67c54f3
--- /dev/null
@@ -0,0 +1,5 @@
+mverbiste (0.0.1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Nguyễn Hồng Quân <hongquan@unknown>  Wed, 24 Oct 2012 22:43:33 +0700
diff --git a/qtc_packaging/debian_fremantle/compat b/qtc_packaging/debian_fremantle/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/qtc_packaging/debian_fremantle/control b/qtc_packaging/debian_fremantle/control
new file mode 100644 (file)
index 0000000..ef04a3a
--- /dev/null
@@ -0,0 +1,15 @@
+Source: mverbiste
+Section: user/hidden
+Priority: optional
+Maintainer: Nguyễn Hồng Quân <hongquan@unknown>
+Build-Depends: debhelper (>= 5), libqt4-dev
+Standards-Version: 3.7.3
+Homepage: <insert the upstream URL, if relevant>
+
+Package: mverbiste
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>
+XB-Maemo-Display-Name: mverbiste
+XB-Maemo-Icon-26: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAADMFJREFUeJztm3uM3NV1xz/n95jXvnft9drrt9cYA4bEDwrEgG1i2kAUAsKmJaqi0jZUlfqSAJG2KLhSK1RURVVEadWo+astFVFQKichQYlDSBA41CRA/Jzd9Wtf3sfsY2Z3Hr/fPf1jdnd2dn6znn2ZPvyVRjvzu+fee86555x77vndhf/nkLIth7Bp2FxNwo+ubHGr9u9ZGd22PhZ1bWN8zwwSjQ7dfLEmdfjwq/415HfJUaqAL26IIKEDiB4SYfumlnD9XbfWxtY1h8Jh1w4pqMAI0I1yHtE4SlwsOW9UutJpGYw4udSR/W96116c+aNYAV/aXIdnPYfyJCLVt2yKcf+eeuqqbVTnGEXVKJISNAHSregFhDhG4lhy3valy7XTA2nPHvufppiCAg5hU932PPAsiLN2ZYjH7ltBXZWNUWUubykLVaPChCAJVdMjIhcU2jESt8R0iiWXfcvtXxMaHHty93/llkimeaEg1e9uvR3DfyKssgQe2tvIJ2+owhidRTqljNnPK0G+ryoq6AToMCK9wEVV2rEkDtrhe/4lW6Wf/ubRI4dfzS5SxjnhzODtQYRVKNRVO2xsCU+a/UwBZ1rCTCVUinxfEQSIgcSANSA7RUANCpJ2bGdElT5aBi4+/5P97YjEBTqM5V+C0JXGEXvkTx54PbNAmQM4+uKGCLb7LZDPoLBpdZjHD67EdWav7kwFBLlFkFWUs5TK3UoVFSGD6qgi/SL6c/XM00f2vzlQ0QBzIG8BYTtMThqm+HEdwbaCyKXM96s9U0oFrtx1Ji0mgkhEoBmI4rixigeYAwUxLZ3BUdBqzdfcZ0ICxpwaN+j73FCVxTBThJkx4CoIXjEBRMCoYtTMGkgQsZCKVjvIbeaeeyngBD8OYqDUly2BZNqnP5EjajXR1ryFtQ0tVEViZP0UiXQPAxOXSGUT+Z4y26/KCVbuuc74G+ij80ZBAfMI6gL4RvmgI8Wl7giP3PoYn9/1IBua1hJxQ4gIipLz0wyluzk98Bbv973OSKYvQAlTUFQVnWTCEnv6+eJ2nrlRxgXmDnCer/z4F8P09dXx1ce+wmduvRcRmUUthOwoLVVbaKnazA2Nd/L9zn/gwsgHk7R5YVSF4ydHidkt/NGnH8dImt5UnHji+KRLzealXDxZGOZtRwKcOJvkZBz+5uFneOC2fSXCB/VaU7ONz219itaaG1E1k0+FdNbw3pkxIt5W9q5/jP0bfoc7Ww9hi8tSr3YQKlRAnhER6B/O8bMPRji8+0Ee2nmwhHIs28/Rk//KkW+/yBsfvYXnF1L/pug6Dmx4gqhbi6KIwPCYx9i4Yc/mHdiWNXO6a4IyCigThRV+GU8RkjqeuOcQjl0cQ8dzIxw991Xe7f9n3u17hd/++p/xH8ePFtFsqt/J9qa781Yg0JvI4lpRPrF++xKJND+UUUCpSQuQnPA5dTHFp7buYse6G0toTg2+xdnEuzi2xe5tddTXp3nxe1+nZ7ivMKHY3LLyPsJ2Fb6vdF1J01KzgrZVG6dpFMWoj1Ez6S7LZxJltsFSiEBfIsdI0nBg+x2EnVBRu1GfjsR7GPWwxMZ1hJs2VvPdt9t5J/4+D+/+jWnalqqtnIvXM5SCP9z7FFVOA821TdPtMbeOzfU7Gc+NkPHHSaR78DXHcuQDAQoIys7yE3cPZIk4MXZuuLmkV9pLMjhxeTLpydOvanTB8jhx4VdFCoi5NUTZTF//Rzy682FqotVFYzVXbeLw9ufx1Wck08crJ59jaKKrgmA7fwS4wOx8Pf/bKFxJZFlZ3ci6pjUlvdLeGOPe6DS9AtVRm2jYIt5/Ed8UV85uW3cjrmWXjJOfVXCsMGE7RtSpnZETLD0KCriKcnOekkjmaKlbQX2stqQ97aXI+enpVVKFkCPEwhb9o0NkveJ6x01rN1Fba3j9w2NcGuwuast6GfqTfSTGB0lmRjG6fGXHq5wF8lmYkFfARNqneXUjETdSQpnxxyf9tADbEsIhi5F0iqyfI0qh37bWFto2ZnjiG8/wd4f/ki/t/8J0W0/yHN889beoGmzLIuUPLIv5Q0VBUEEEz1cynlIfq8EJMF1Ps5OZWwGWBa5jMZ6dIJvLQrTQFnGqCLtRciaHb4r7qXik9Qo5kwYjRXFlqXGVRKgwsW8U3yjRUDRwNVTNdB4/E44teJ6HZ4proba4OOLOMbM1+Vk+4WEeqbCqokohW5sF33gE+ZEIGONjZq2yJRaWzGWAC6k5zh8LOgtUTlvYEQJb5/Tr5RV8ChUrQEQQAc8ER2TbcpjN9JTglmWVCKuYZY3ulaLibdC2BNsSJrJpNOAtiSX2jMpPoXDhG8W2bOxZgdOoj68f/zuSggLKptsKmg9mIUcYGU+WJDUAjrhY08WOQi7geYrrhHDs4oDnmSyeyXKtTL0cKnABQQHXgWjYZiA1TMYrfVcRsmOTZ/gpKEYh5xmqQxFCTrEC0l6SnJ9eHPdLgIpjgGMLtTGHK6ODjE4kS9ojThWuHZl0j3wC5ftKOmuoi1YTmnV0TmYT5Ew6uGD68dcDSmFbwoo6l/6xIXpHrpS0h51qok7N5K98wMzklPGMobm2qcQCEukuPJObo/p2bbRQgQIKjLQ0hkhmk5zqbi+hithV1EdaUKbKXfn6QSartDWvn1UMVfpSHfmzfpCcV5XdXI2gYlQUAyDPU0tTCNc1vB0/UUJlWy6t1duKTLp3KItNqOT4PJ4boTt5tmx907FDiFgYNfjGC9h1lqYkXuFI+clVob7aZn1zmB+fPk53oq+Esq3hdqrcBsCQySm/6kiyY80N7Nn8iSK67rEzDE5cnj5TZP3iQ1RjtJXm0G1c6WkikrmdhvC6actaalRsAZAPhLe2VdMxcJ7vf/hmCWVL9Vb2rHkIjMvxkyNkJ+r48mf/oKja46vHh/3HyPjjxCI2YRc6B7qKxok5dRy66VmeO/gyf3rPX7G6ZuN0JXmpUeGboTyMQltrhHUtNi8f+3fu33EPrQ0t0+2W2Oxd+5tEzHoaMu0cuX8Xv7alePU7h09wZuhtBIvqGGxoifDm6eN0D/expn7VNF1ttJbaaO2yZ4vzdqaQa3FgZwOdidO8cPQfmcgW7+WOFeGOjQf444O/z51tO2ckRzA4cZljF75B2hsD8pnl3bfVM+pf4IWjL3FpqBvP9zDqk/UnGBi/yIne79KbakeW0O+L+A1+XD47U1VWrwjx4F2NfPu916gKR3nmgSdprK6fYxqle+wsP+h8ma6x09M7gio0N7g8ur+R3sEf8vLxc2xbvYlYKEwyN0Qi3U0yO4TBzPFKbXGouCpcgKAKm1sj1FTZ/PTMq1z8t7Mc3nWIu7buprl2RRH1hDfGO13f5Bd9rzOSuTJDkKngKlRFbNrW2hjtpWO0pzCTyHRdYLmw4JFVYWW9y6dvr6Wp9QzPvPYsv/cvzzIyPlpEl/FS/PLKDxjO9M5axcIeqDB5EcvCEnv6s5yCT2FRM6jmz/zNDWFWr7T5Wfx94n3ni2jqws3cvGIfljgB9wdmYl6HIs+1y5zL54ni4/BCD2YKW1qjpHJj/PDk20VNIhZ3r3ucR274c/a2foGIXRNYOpsXhMvhMXt4cYPkUXwcXiBfRqF1RYhNq8O88u53uDzUU9QecWrY0Xwfe9Z8lrATW/hEBWZ/+vSvv5Fa5CDAEuaUrivc+8l6upLtvPCdfwo8MU5Dy/6Y8SxYSYpesuG1RbBahGIFLKI2oQprVoR4ZF8TJ3qP8uVv/QXHzvyIrpFOEuke+scv0DV2Cs9k8pXSkldwxXeLAplRzYrha8/tPfbBwjktxgK2wSBM3wBldVOIVXe4JCfe53sXP+KdgVoibgRfM2T8CTyTnVU6u5rWJ8dG+0X4msaqXhJZurNysQIWPGxBCNX8/l0by9/wyOowmck7nYWrMaX9ZsBTGBO0H/QySIeiZzDyEzX+iSO7jy5pIbHMJanZ5lnuuiwBz6dWbGrQfHEkAB6QRBkAvazQjhBHJY7ln3csuycXqko8v+voxFKu+GwUFGBEgxck6JLSXHSzy9/qA0lUBhAuAx0ocUs4hyXnLc/ujaR16Kn73xgPEvRIhYIsFHkFJDqS1LS9AnITUPrqtwjBFjElqKCDqnQJVqeKnhOxzonxzxuxe/ByQ+zbN35EjpScbZ9eKonmibwCXsXnK60vcakrg+pfA43lOij4oppSYRCkG7RD4BzQbonVaVS6YtZ4YvxTB1NBgkJpHeHjRLG9HsIm2vZb27fEXnz0nqZVli1JYEiELlXtRIiLWOfUN50Y0x1zc4PlBf3fgSCHtg78/a5777qldp0dsjscI11e2B78v/APUtdxHddxHddxHddxHdcxA/8Nah8Z0hX6vbsAAAAASUVORK5CYII=
diff --git a/qtc_packaging/debian_fremantle/copyright b/qtc_packaging/debian_fremantle/copyright
new file mode 100644 (file)
index 0000000..e6d1497
--- /dev/null
@@ -0,0 +1,40 @@
+This package was debianized by Nguyễn Hồng Quân <hongquan@unknown> on
+Wed, 24 Oct 2012 22:43:33 +0700.
+
+It was downloaded from <url://example.com>
+
+Upstream Author(s):
+
+    <put author's name and email here>
+    <likewise for another author>
+
+Copyright:
+
+    <Copyright (C) YYYY Name OfAuthor>
+    <likewise for another author>
+
+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) 2012, Nguyễn Hồng Quân <hongquan@unknown> 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/qtc_packaging/debian_fremantle/rules b/qtc_packaging/debian_fremantle/rules
new file mode 100755 (executable)
index 0000000..d6eac4a
--- /dev/null
@@ -0,0 +1,91 @@
+#!/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
+       # qmake PREFIX=/usr# Uncomment this line for use without Qt Creator
+
+       touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp  
+       dh_testdir
+
+       # Add here commands to compile the package.
+       # $(MAKE) # Uncomment this line for use without Qt Creator
+       #docbook-to-man debian/mverbiste.sgml > mverbiste.1
+
+       touch $@
+
+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/mverbiste.
+       $(MAKE) INSTALL_ROOT="$(CURDIR)"/debian/mverbiste install
+
+
+# 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 # Uncomment this line for use without Qt Creator
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/qtc_packaging/debian_harmattan/README b/qtc_packaging/debian_harmattan/README
new file mode 100644 (file)
index 0000000..3408460
--- /dev/null
@@ -0,0 +1,6 @@
+The Debian Package mverbiste
+----------------------------
+
+Comments regarding the Package
+
+ -- Nguyễn Hồng Quân <hongquan@unknown>  Wed, 24 Oct 2012 22:43:19 +0700
diff --git a/qtc_packaging/debian_harmattan/changelog b/qtc_packaging/debian_harmattan/changelog
new file mode 100644 (file)
index 0000000..afe756b
--- /dev/null
@@ -0,0 +1,5 @@
+mverbiste (0.0.1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Nguyễn Hồng Quân <hongquan@unknown>  Wed, 24 Oct 2012 22:43:19 +0700
diff --git a/qtc_packaging/debian_harmattan/compat b/qtc_packaging/debian_harmattan/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/qtc_packaging/debian_harmattan/control b/qtc_packaging/debian_harmattan/control
new file mode 100644 (file)
index 0000000..aafb186
--- /dev/null
@@ -0,0 +1,15 @@
+Source: mverbiste
+Section: user/other
+Priority: optional
+Maintainer: Nguyễn Hồng Quân <hongquan@unknown>
+Build-Depends: debhelper (>= 5), libqt4-dev
+Standards-Version: 3.7.3
+Homepage: <insert the upstream URL, if relevant>
+
+Package: mverbiste
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>
+XSBC-Maemo-Display-Name: mverbiste
+XB-Maemo-Icon-26: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAADMFJREFUeJztm3uM3NV1xz/n95jXvnft9drrt9cYA4bEDwrEgG1i2kAUAsKmJaqi0jZUlfqSAJG2KLhSK1RURVVEadWo+astFVFQKichQYlDSBA41CRA/Jzd9Wtf3sfsY2Z3Hr/fPf1jdnd2dn6znn2ZPvyVRjvzu+fee86555x77vndhf/nkLIth7Bp2FxNwo+ubHGr9u9ZGd22PhZ1bWN8zwwSjQ7dfLEmdfjwq/415HfJUaqAL26IIKEDiB4SYfumlnD9XbfWxtY1h8Jh1w4pqMAI0I1yHtE4SlwsOW9UutJpGYw4udSR/W96116c+aNYAV/aXIdnPYfyJCLVt2yKcf+eeuqqbVTnGEXVKJISNAHSregFhDhG4lhy3valy7XTA2nPHvufppiCAg5hU932PPAsiLN2ZYjH7ltBXZWNUWUubykLVaPChCAJVdMjIhcU2jESt8R0iiWXfcvtXxMaHHty93/llkimeaEg1e9uvR3DfyKssgQe2tvIJ2+owhidRTqljNnPK0G+ryoq6AToMCK9wEVV2rEkDtrhe/4lW6Wf/ubRI4dfzS5SxjnhzODtQYRVKNRVO2xsCU+a/UwBZ1rCTCVUinxfEQSIgcSANSA7RUANCpJ2bGdElT5aBi4+/5P97YjEBTqM5V+C0JXGEXvkTx54PbNAmQM4+uKGCLb7LZDPoLBpdZjHD67EdWav7kwFBLlFkFWUs5TK3UoVFSGD6qgi/SL6c/XM00f2vzlQ0QBzIG8BYTtMThqm+HEdwbaCyKXM96s9U0oFrtx1Ji0mgkhEoBmI4rixigeYAwUxLZ3BUdBqzdfcZ0ICxpwaN+j73FCVxTBThJkx4CoIXjEBRMCoYtTMGkgQsZCKVjvIbeaeeyngBD8OYqDUly2BZNqnP5EjajXR1ryFtQ0tVEViZP0UiXQPAxOXSGUT+Z4y26/KCVbuuc74G+ij80ZBAfMI6gL4RvmgI8Wl7giP3PoYn9/1IBua1hJxQ4gIipLz0wyluzk98Bbv973OSKYvQAlTUFQVnWTCEnv6+eJ2nrlRxgXmDnCer/z4F8P09dXx1ce+wmduvRcRmUUthOwoLVVbaKnazA2Nd/L9zn/gwsgHk7R5YVSF4ydHidkt/NGnH8dImt5UnHji+KRLzealXDxZGOZtRwKcOJvkZBz+5uFneOC2fSXCB/VaU7ONz219itaaG1E1k0+FdNbw3pkxIt5W9q5/jP0bfoc7Ww9hi8tSr3YQKlRAnhER6B/O8bMPRji8+0Ee2nmwhHIs28/Rk//KkW+/yBsfvYXnF1L/pug6Dmx4gqhbi6KIwPCYx9i4Yc/mHdiWNXO6a4IyCigThRV+GU8RkjqeuOcQjl0cQ8dzIxw991Xe7f9n3u17hd/++p/xH8ePFtFsqt/J9qa781Yg0JvI4lpRPrF++xKJND+UUUCpSQuQnPA5dTHFp7buYse6G0toTg2+xdnEuzi2xe5tddTXp3nxe1+nZ7ivMKHY3LLyPsJ2Fb6vdF1J01KzgrZVG6dpFMWoj1Ez6S7LZxJltsFSiEBfIsdI0nBg+x2EnVBRu1GfjsR7GPWwxMZ1hJs2VvPdt9t5J/4+D+/+jWnalqqtnIvXM5SCP9z7FFVOA821TdPtMbeOzfU7Gc+NkPHHSaR78DXHcuQDAQoIys7yE3cPZIk4MXZuuLmkV9pLMjhxeTLpydOvanTB8jhx4VdFCoi5NUTZTF//Rzy682FqotVFYzVXbeLw9ufx1Wck08crJ59jaKKrgmA7fwS4wOx8Pf/bKFxJZFlZ3ci6pjUlvdLeGOPe6DS9AtVRm2jYIt5/Ed8UV85uW3cjrmWXjJOfVXCsMGE7RtSpnZETLD0KCriKcnOekkjmaKlbQX2stqQ97aXI+enpVVKFkCPEwhb9o0NkveJ6x01rN1Fba3j9w2NcGuwuast6GfqTfSTGB0lmRjG6fGXHq5wF8lmYkFfARNqneXUjETdSQpnxxyf9tADbEsIhi5F0iqyfI0qh37bWFto2ZnjiG8/wd4f/ki/t/8J0W0/yHN889beoGmzLIuUPLIv5Q0VBUEEEz1cynlIfq8EJMF1Ps5OZWwGWBa5jMZ6dIJvLQrTQFnGqCLtRciaHb4r7qXik9Qo5kwYjRXFlqXGVRKgwsW8U3yjRUDRwNVTNdB4/E44teJ6HZ4proba4OOLOMbM1+Vk+4WEeqbCqokohW5sF33gE+ZEIGONjZq2yJRaWzGWAC6k5zh8LOgtUTlvYEQJb5/Tr5RV8ChUrQEQQAc8ER2TbcpjN9JTglmWVCKuYZY3ulaLibdC2BNsSJrJpNOAtiSX2jMpPoXDhG8W2bOxZgdOoj68f/zuSggLKptsKmg9mIUcYGU+WJDUAjrhY08WOQi7geYrrhHDs4oDnmSyeyXKtTL0cKnABQQHXgWjYZiA1TMYrfVcRsmOTZ/gpKEYh5xmqQxFCTrEC0l6SnJ9eHPdLgIpjgGMLtTGHK6ODjE4kS9ojThWuHZl0j3wC5ftKOmuoi1YTmnV0TmYT5Ew6uGD68dcDSmFbwoo6l/6xIXpHrpS0h51qok7N5K98wMzklPGMobm2qcQCEukuPJObo/p2bbRQgQIKjLQ0hkhmk5zqbi+hithV1EdaUKbKXfn6QSartDWvn1UMVfpSHfmzfpCcV5XdXI2gYlQUAyDPU0tTCNc1vB0/UUJlWy6t1duKTLp3KItNqOT4PJ4boTt5tmx907FDiFgYNfjGC9h1lqYkXuFI+clVob7aZn1zmB+fPk53oq+Esq3hdqrcBsCQySm/6kiyY80N7Nn8iSK67rEzDE5cnj5TZP3iQ1RjtJXm0G1c6WkikrmdhvC6actaalRsAZAPhLe2VdMxcJ7vf/hmCWVL9Vb2rHkIjMvxkyNkJ+r48mf/oKja46vHh/3HyPjjxCI2YRc6B7qKxok5dRy66VmeO/gyf3rPX7G6ZuN0JXmpUeGboTyMQltrhHUtNi8f+3fu33EPrQ0t0+2W2Oxd+5tEzHoaMu0cuX8Xv7alePU7h09wZuhtBIvqGGxoifDm6eN0D/expn7VNF1ttJbaaO2yZ4vzdqaQa3FgZwOdidO8cPQfmcgW7+WOFeGOjQf444O/z51tO2ckRzA4cZljF75B2hsD8pnl3bfVM+pf4IWjL3FpqBvP9zDqk/UnGBi/yIne79KbakeW0O+L+A1+XD47U1VWrwjx4F2NfPu916gKR3nmgSdprK6fYxqle+wsP+h8ma6x09M7gio0N7g8ur+R3sEf8vLxc2xbvYlYKEwyN0Qi3U0yO4TBzPFKbXGouCpcgKAKm1sj1FTZ/PTMq1z8t7Mc3nWIu7buprl2RRH1hDfGO13f5Bd9rzOSuTJDkKngKlRFbNrW2hjtpWO0pzCTyHRdYLmw4JFVYWW9y6dvr6Wp9QzPvPYsv/cvzzIyPlpEl/FS/PLKDxjO9M5axcIeqDB5EcvCEnv6s5yCT2FRM6jmz/zNDWFWr7T5Wfx94n3ni2jqws3cvGIfljgB9wdmYl6HIs+1y5zL54ni4/BCD2YKW1qjpHJj/PDk20VNIhZ3r3ucR274c/a2foGIXRNYOpsXhMvhMXt4cYPkUXwcXiBfRqF1RYhNq8O88u53uDzUU9QecWrY0Xwfe9Z8lrATW/hEBWZ/+vSvv5Fa5CDAEuaUrivc+8l6upLtvPCdfwo8MU5Dy/6Y8SxYSYpesuG1RbBahGIFLKI2oQprVoR4ZF8TJ3qP8uVv/QXHzvyIrpFOEuke+scv0DV2Cs9k8pXSkldwxXeLAplRzYrha8/tPfbBwjktxgK2wSBM3wBldVOIVXe4JCfe53sXP+KdgVoibgRfM2T8CTyTnVU6u5rWJ8dG+0X4msaqXhJZurNysQIWPGxBCNX8/l0by9/wyOowmck7nYWrMaX9ZsBTGBO0H/QySIeiZzDyEzX+iSO7jy5pIbHMJanZ5lnuuiwBz6dWbGrQfHEkAB6QRBkAvazQjhBHJY7ln3csuycXqko8v+voxFKu+GwUFGBEgxck6JLSXHSzy9/qA0lUBhAuAx0ocUs4hyXnLc/ujaR16Kn73xgPEvRIhYIsFHkFJDqS1LS9AnITUPrqtwjBFjElqKCDqnQJVqeKnhOxzonxzxuxe/ByQ+zbN35EjpScbZ9eKonmibwCXsXnK60vcakrg+pfA43lOij4oppSYRCkG7RD4BzQbonVaVS6YtZ4YvxTB1NBgkJpHeHjRLG9HsIm2vZb27fEXnz0nqZVli1JYEiELlXtRIiLWOfUN50Y0x1zc4PlBf3fgSCHtg78/a5777qldp0dsjscI11e2B78v/APUtdxHddxHddxHddxHdcxA/8Nah8Z0hX6vbsAAAAASUVORK5CYII=
diff --git a/qtc_packaging/debian_harmattan/copyright b/qtc_packaging/debian_harmattan/copyright
new file mode 100644 (file)
index 0000000..2aae273
--- /dev/null
@@ -0,0 +1,40 @@
+This package was debianized by Nguyễn Hồng Quân <hongquan@unknown> on
+Wed, 24 Oct 2012 22:43:19 +0700.
+
+It was downloaded from <url://example.com>
+
+Upstream Author(s):
+
+    <put author's name and email here>
+    <likewise for another author>
+
+Copyright:
+
+    <Copyright (C) YYYY Name OfAuthor>
+    <likewise for another author>
+
+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) 2012, Nguyễn Hồng Quân <hongquan@unknown> 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/qtc_packaging/debian_harmattan/manifest.aegis b/qtc_packaging/debian_harmattan/manifest.aegis
new file mode 100644 (file)
index 0000000..b41e391
--- /dev/null
@@ -0,0 +1,70 @@
+AutoGenerateAegisFile
+<!-- Aegis manifest declares the security credentials required by an
+     application to run correctly. By default, a manifest file will be
+     created or updated automatically as a part of build.
+
+     The detection of required credentials is based on static scan of
+     application binaries. In some cases, the scan may not be able to
+     detect the correct set of permissions. If this is the case, you must
+     declare the credentials required by your application in this file.
+
+     To create a manifest file automatically as a part of build (DEFAULT):
+
+      * Make sure this file starts with the string "AutoGenerateAegisFile" (without quotes).
+      * Alternatively, it can also be completely empty.
+
+     To provide a manifest yourself:
+
+      * List the correct credentials for the application in this file.
+      * Some commented-out examples of often required tokens are provided.
+      * Ensure the path to your application binary given in
+        '<for path="/path/to/app" />' is correct.
+      * Please do not request more credentials than what your application
+        actually requires.
+
+     To disable manifest file:
+
+      * Replace this file with a file starting with the string "NoAegisFile" (without quotes).
+      * Final application package will not contain a manifest.
+
+-->
+<aegis>
+       <request policy="add">
+
+               <!-- Make a GSM call, send text messages (SMS). -->
+       <!--
+               <credential name="Cellular" />
+       -->
+
+               <!-- Access Facebook social data. -->
+       <!--
+               <credential name="FacebookSocial" />
+       -->
+
+               <!-- Read access to data stored in tracker. -->
+       <!--
+               <credential name="TrackerReadAccess" />
+       -->
+
+               <!-- Read and write access to data stored in tracker. -->
+       <!--
+               <credential name="TrackerWriteAccess" />
+       -->
+
+               <!-- Read Location information. -->
+       <!--
+               <credential name="Location" />
+       -->
+
+               <!-- Access to Audio, Multimedia and Camera. -->
+       <!--
+               <credential name="GRP::pulse-access" />
+               <credential name="GRP::video" />
+               <credential name="GRP::audio" />
+       -->
+
+       </request>
+
+       <for path="/opt/mverbiste/bin/mverbiste" />
+       <for path="applauncherd-launcher::/usr/bin/applauncherd.bin" id="" />
+</aegis>
diff --git a/qtc_packaging/debian_harmattan/rules b/qtc_packaging/debian_harmattan/rules
new file mode 100755 (executable)
index 0000000..d6eac4a
--- /dev/null
@@ -0,0 +1,91 @@
+#!/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
+       # qmake PREFIX=/usr# Uncomment this line for use without Qt Creator
+
+       touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp  
+       dh_testdir
+
+       # Add here commands to compile the package.
+       # $(MAKE) # Uncomment this line for use without Qt Creator
+       #docbook-to-man debian/mverbiste.sgml > mverbiste.1
+
+       touch $@
+
+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/mverbiste.
+       $(MAKE) INSTALL_ROOT="$(CURDIR)"/debian/mverbiste install
+
+
+# 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 # Uncomment this line for use without Qt Creator
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/verbiste/FrenchVerbDictionary.cpp b/verbiste/FrenchVerbDictionary.cpp
new file mode 100644 (file)
index 0000000..2666f7c
--- /dev/null
@@ -0,0 +1,1253 @@
+/*  $Id: FrenchVerbDictionary.cpp,v 1.51 2012/04/24 02:46:05 sarrazip Exp $
+    FrenchVerbDictionary.cpp - Dictionary of verbs and conjugation templates
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#include "FrenchVerbDictionary.h"
+
+#include <assert.h>
+#include <iostream>
+#include <errno.h>
+#include <string.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
+using namespace std;
+using namespace verbiste;
+
+
+static bool trace = getenv("TRACE") != NULL;
+
+
+class AutoDoc
+{
+public:
+    AutoDoc(xmlDocPtr d) : doc(d) {}
+    ~AutoDoc() { if (doc != NULL) xmlFreeDoc(doc); }
+    xmlDocPtr get() const { return doc; }
+    bool operator ! () const { return doc == NULL; }
+private:
+    xmlDocPtr doc;
+
+    // Forbidden operations:
+    AutoDoc(const AutoDoc &);
+    AutoDoc &operator = (const AutoDoc &);
+};
+
+
+class AutoString
+{
+public:
+    AutoString(xmlChar *s) : str(s) {}
+    ~AutoString() { if (str != NULL) xmlFree(str); }
+    xmlChar *get() const { return str; }
+    bool operator ! () const { return str == NULL; }
+    size_t length() const { return str == NULL ? 0 : strlen((char *) str); }
+private:
+    xmlChar *str;
+
+    // Forbidden operations:
+    AutoString(const AutoString &);
+    AutoString &operator = (const AutoString &);
+};
+
+
+inline
+const xmlChar *
+XMLCHAR(const char *s)
+{
+    return (const xmlChar *) s;
+}
+
+
+inline
+int
+equal(const xmlChar *a, const char *b)
+{
+    return xmlStrcmp(a, XMLCHAR(b)) == 0;
+}
+
+
+inline
+int
+different(const xmlChar *a, const char *b)
+{
+    return !equal(a, b);
+}
+
+
+inline
+xmlChar *
+getProp(xmlNodePtr node, const char *propName)
+{
+    return xmlGetProp(node, XMLCHAR(propName));
+}
+
+
+inline
+xmlChar *
+getString(xmlDocPtr doc, xmlNodePtr node)
+{
+    return xmlNodeListGetString(doc, node, 1);
+}
+
+
+inline
+string
+operator + (const AutoString &a, const string &b)
+{
+    return (char *) a.get() + b;
+}
+
+
+inline
+string
+operator + (const string &a, const AutoString &b)
+{
+    return a + (char *) b.get();
+}
+
+
+inline
+Mode
+convertModeName(const xmlChar *modeName)
+{
+    return FrenchVerbDictionary::convertModeName((char *) modeName);
+}
+
+
+inline
+Tense
+convertTenseName(const xmlChar *tenseName)
+{
+    return FrenchVerbDictionary::convertTenseName((char *) tenseName);
+}
+
+
+// Latin-1 to ASCII conversion table (codes 0xC0 to 0xFF).
+// Some characters have bogus translations, but they are not used in French.
+//
+static const char *accentRemovalTable =
+            "AAAAAA_CEEEEIIII"
+            "DNOOOOOxOUUUUYbB"
+            "aaaaaa-ceeeeiiii"
+            "dnooooo/ouuuuyby";
+
+
+// Only works on Latin-1 characters.
+//
+inline wchar_t
+removeWideCharAccent(wchar_t c)
+{
+    if (c >= 0xC0 && c <= 0xFF)
+        c = (unsigned char) accentRemovalTable[c - 0xC0];
+    return c;
+}
+
+
+string
+FrenchVerbDictionary::removeUTF8Accents(const string &utf8String)
+{
+    wstring result = utf8ToWide(utf8String);
+    for (size_t i = 0; i < result.length(); ++i)
+        result[i] = removeWideCharAccent(result[i]);
+    return wideToUTF8(result);
+}
+
+
+void
+FrenchVerbDictionary::formUTF8UnaccentedVariants(const wstring &wideString,
+                                                size_t index,
+                                                vector<string> &utf8Variants)
+{
+    for ( ; index < wideString.length(); ++index)
+    {
+        wchar_t ch = wideString[index];
+        wchar_t unacc = removeWideCharAccent(ch);
+        if (ch != unacc)
+        {
+            wstring copy = wideString;
+            copy[index] = unacc;
+            assert(copy.length() == wideString.length());
+
+            utf8Variants.push_back(wideToUTF8(copy));
+            formUTF8UnaccentedVariants(copy, index + 1, utf8Variants);
+        }
+    }
+}
+
+
+void
+FrenchVerbDictionary::formUTF8UnaccentedVariants(const string &utf8String,
+                                                size_t index,
+                                                vector<string> &utf8Variants)
+{
+    wstring wideString = utf8ToWide(utf8String);
+    formUTF8UnaccentedVariants(wideString, index, utf8Variants);
+}
+
+
+void
+FrenchVerbDictionary::getXMLFilenames(string &conjFN, string &verbsFN, Language l)
+{
+    const char *libdatadir = getenv("LIBDATADIR");
+    if (libdatadir == NULL)
+        libdatadir = LIBDATADIR;
+    string languageCode = getLanguageCode(l);
+    conjFN  = libdatadir + string("/") + "conjugation-" + languageCode + ".xml";
+    verbsFN = libdatadir + string("/") + "verbs-" + languageCode + ".xml";
+}
+
+
+//static
+FrenchVerbDictionary::Language
+FrenchVerbDictionary::parseLanguageCode(const std::string &twoLetterCode)
+{
+    if (twoLetterCode == "fr")
+        return FRENCH;
+    if (twoLetterCode == "it")
+        return ITALIAN;
+    if (twoLetterCode == "el")
+        return GREEK;
+    return NO_LANGUAGE;
+}
+
+
+//static
+std::string
+FrenchVerbDictionary::getLanguageCode(Language l)
+{
+    switch (l)
+    {
+    case NO_LANGUAGE: return "";
+    case FRENCH: return "fr";
+    case ITALIAN: return "it";
+    case GREEK: return "el";
+    }
+    return "";
+}
+
+
+FrenchVerbDictionary::FrenchVerbDictionary(
+                                const string &conjugationFilename,
+                                const string &verbsFilename,
+                                bool includeWithoutAccents,
+                                Language _lang)
+                                        throw (logic_error)
+  : conjugSys(),
+    knownVerbs(),
+    aspirateHVerbs(),
+    inflectionTable(),
+    wideToUTF8Conv((iconv_t) -1),
+    utf8ToWideConv((iconv_t) -1),
+    verbTrie(*this),
+    lang(_lang)
+{
+    if (lang == NO_LANGUAGE)
+        throw logic_error("Invalid language code");
+    init(conjugationFilename, verbsFilename, includeWithoutAccents);
+}
+
+
+FrenchVerbDictionary::FrenchVerbDictionary(bool includeWithoutAccents)
+                                                throw (std::logic_error)
+  : conjugSys(),
+    knownVerbs(),
+    aspirateHVerbs(),
+    inflectionTable(),
+    wideToUTF8Conv((iconv_t) -1),
+    utf8ToWideConv((iconv_t) -1),
+    verbTrie(*this),
+    lang(FRENCH)
+{
+    string conjFN, verbsFN;
+    getXMLFilenames(conjFN, verbsFN, lang);
+
+    init(conjFN, verbsFN, includeWithoutAccents);
+}
+
+
+void
+FrenchVerbDictionary::init(const string &conjugationFilename,
+                            const string &verbsFilename,
+                            bool includeWithoutAccents)
+                                        throw (logic_error)
+{
+    wideToUTF8Conv = iconv_open("UTF-8", "WCHAR_T");
+    if (wideToUTF8Conv == (iconv_t) -1)
+        throw logic_error("conversion from wide characters to UTF-8 not supported");
+    utf8ToWideConv = iconv_open("WCHAR_T", "UTF-8");
+    if (utf8ToWideConv == (iconv_t) -1)
+        throw logic_error("conversion from UTF-8 to wide characters not supported");
+
+    #ifndef NDEBUG  // self-test for the wide character string conversions:
+    try
+    {
+        wstring w = utf8ToWide("ab");
+        assert(w.length() == 2);
+        assert(w[0] == 'a');
+        assert(w[1] == 'b');
+
+        const char u0[] = { '\xc3', '\xa2', 't', '\0' };  // 'a' with circumflex accent
+        w = utf8ToWide(u0);
+        assert(w.length() == 2);
+        assert(w[0] == 0xe2);
+        assert(w[1] == 't');
+
+        const char u1[] = { 't', '\xc3', '\xa2', '\0' };  // 'a' with circumflex accent
+        w = utf8ToWide(u1);
+        assert(w.length() == 2);
+        assert(w[0] == 't');
+        assert(w[1] == 0xe2);
+    }
+    catch (int e)
+    {
+        throw logic_error("self-test of utf8ToWide() failed");
+    }
+
+    try
+    {
+        string u = wideToUTF8(L"ab");
+        assert(u.length() == 2);
+        assert(u[0] == 'a');
+        assert(u[1] == 'b');
+    }
+    catch (int e)
+    {
+        throw logic_error("self-test of wideToUTF8() failed");
+    }
+    #endif  // ndef NDEBUG
+
+
+    {
+        for (int i = 0; i < 0xC0; i++)
+            latin1TolowerTable[i] = char(tolower(char(i)));
+        for (int i = 0xC0; i < 0xE0; i++)
+            latin1TolowerTable[i] = char(i + 0x20);
+        for (int i = 0xE0; i < 0x100; i++)
+            latin1TolowerTable[i] = char(i);
+    }
+
+    loadConjugationDatabase(conjugationFilename.c_str(), includeWithoutAccents);
+    loadVerbDatabase(verbsFilename.c_str(), includeWithoutAccents);
+
+    // Load additional verbs from $HOME/.verbiste/verbs-<lang>.xml, if present.
+    //
+    const char *home = getenv("HOME");
+    if (home != NULL)  // do nothing if $HOME not defined
+    {
+        string otherVerbsFilename = string(home) + "/.verbiste/verbs-" + getLanguageCode(lang) + ".xml";
+        struct stat statbuf;
+        if (stat(otherVerbsFilename.c_str(), &statbuf) == 0)  // if file exists
+        {
+            //cout << "otherVerbsFilename=" << otherVerbsFilename << endl;
+            loadVerbDatabase(otherVerbsFilename.c_str(), includeWithoutAccents);
+        }
+    }
+
+    if (trace)
+        cout << "FrenchVerbDictionary::init: trie takes "
+             << verbTrie.computeMemoryConsumption() << " bytes\n";
+}
+
+
+void
+FrenchVerbDictionary::loadConjugationDatabase(
+                                const char *conjugationFilename,
+                                bool includeWithoutAccents)
+                                        throw (logic_error)
+{
+    if (conjugationFilename == NULL)
+        throw invalid_argument("conjugationFilename");
+
+    AutoDoc conjDoc(xmlParseFile(conjugationFilename));
+    if (!conjDoc)
+        throw logic_error("could not parse " + string(conjugationFilename));
+
+    readConjugation(conjDoc.get(), includeWithoutAccents);
+}
+
+
+void
+FrenchVerbDictionary::loadVerbDatabase(
+                                const char *verbsFilename,
+                                bool includeWithoutAccents)
+                                        throw (logic_error)
+{
+    if (verbsFilename == NULL)
+        throw invalid_argument("verbsFilename");
+
+    AutoDoc verbsDoc(xmlParseFile(verbsFilename));
+    if (!verbsDoc)
+        throw logic_error("could not parse " + string(verbsFilename));
+
+    readVerbs(verbsDoc.get(), includeWithoutAccents);
+}
+
+
+void
+FrenchVerbDictionary::readConjugation(xmlDocPtr doc, bool includeWithoutAccents) throw(logic_error)
+{
+    const bool isItalian = (lang == ITALIAN);
+
+    xmlNodePtr rootNodePtr = xmlDocGetRootElement(doc);
+
+    if (rootNodePtr == NULL)
+        throw logic_error("empty conjugation document");
+
+    string langCode = getLanguageCode(lang);
+    if (different(rootNodePtr->name, ("conjugation-" + langCode).c_str()))
+    {
+        string msg = "wrong top node in conjugation document: got "
+                     + string((const char *) rootNodePtr->name)
+                     + ", expected conjugation-" + langCode;
+        throw logic_error(msg);
+    }
+
+    for (xmlNodePtr templ = rootNodePtr->xmlChildrenNode;
+                        templ != NULL;
+                        templ = templ->next)
+    {
+        if (different(templ->name, "template"))  // ignore junk between tags
+            continue;
+
+        string tname = getUTF8XmlProp(templ, "name");
+        if (tname.empty())
+            throw logic_error("missing template name attribute");
+
+        // The template name is the root and the termination,
+        // with a colon in between.  For example, "pla:cer".
+
+        if (tname.find(':') == string::npos)
+            throw logic_error("missing colon in template name");
+
+        // The use of the [] operator creates an empty conjugation
+        // template spec, to which we keep a reference:
+
+        TemplateSpec &theTemplateSpec = conjugSys[tname];
+
+        // Same idea:
+
+        TemplateInflectionTable &ti = inflectionTable[tname];
+
+        // For each mode (e.g., infinitive, indicative, conditional, etc):
+        for (xmlNodePtr mode = templ->xmlChildrenNode;
+                            mode != NULL;
+                            mode = mode->next)
+        {
+            if (equal(mode->name, "text") || equal(mode->name, "comment"))  // any text in this node is ignored
+                continue;
+
+            if (trace) cout << "readConjugation: mode node: '" << mode->name << "'" << endl;
+            Mode theMode = ::convertModeName(mode->name);
+            ModeSpec &theModeSpec = theTemplateSpec[theMode];
+
+            // For each tense in the mode:
+            for (xmlNodePtr tense = mode->xmlChildrenNode;
+                            tense != NULL;
+                                tense = tense->next)
+            {
+                if (equal(tense->name, "text") || equal(tense->name, "comment"))
+                    continue;
+
+                Tense theTense = ::convertTenseName(tense->name);
+                TenseSpec &theTenseSpec = theModeSpec[theTense];
+
+                // For each person in the tense:
+                int personCounter = 0;
+                for (xmlNodePtr person = tense->xmlChildrenNode;
+                                person != NULL;
+                                person = person->next)
+                {
+                    if (different(person->name, "p"))
+                        continue;
+
+                    personCounter++;
+
+                    theTenseSpec.push_back(PersonSpec());
+                    PersonSpec &thePersonSpec = theTenseSpec.back();
+
+                    // For each variant for this person:
+                    // (Note that most persons of most verbs have only
+                    // one variant.)
+                    for (xmlNodePtr inf = person->xmlChildrenNode;
+                                    inf != NULL;
+                                    inf = inf->next)
+                    {
+                        string variant = getUTF8XmlNodeText(
+                                                    doc, inf->xmlChildrenNode);
+                        thePersonSpec.push_back(InflectionSpec(variant, true));
+
+                        ModeTensePersonNumber mtpn(
+                                reinterpret_cast<const char *>(mode->name),
+                                reinterpret_cast<const char *>(tense->name),
+                                personCounter,
+                                true,
+                                isItalian);
+                        ti[variant].push_back(mtpn);
+
+                        if (includeWithoutAccents)
+                        {
+                            // Also include versions where some or all accents are missing.
+                            vector<string> unaccentedVariants;
+                            formUTF8UnaccentedVariants(variant, 0, unaccentedVariants);
+                            for (vector<string>::const_iterator it = unaccentedVariants.begin();
+                                                                it != unaccentedVariants.end(); ++it)
+                            {
+                                thePersonSpec.push_back(InflectionSpec(*it, false));
+                                mtpn.correct = false;  // 'false' marks this spelling as incorrect.
+                                ti[*it].push_back(mtpn);
+                            }
+                        }
+                    }
+                }
+            }
+        }
+    }
+}
+
+
+string
+FrenchVerbDictionary::getUTF8XmlNodeText(xmlDocPtr doc, xmlNodePtr node)
+                                                                throw(int)
+{
+    xmlChar *s = getString(doc, node);
+    if (s == NULL)
+        return string();
+    return reinterpret_cast<char *>(s);
+}
+
+
+string
+FrenchVerbDictionary::getUTF8XmlProp(xmlNodePtr node, const char *propName)
+                                                                throw(int)
+{
+    xmlChar *s = getProp(node, propName);
+    if (s == NULL)
+        return string();
+    return reinterpret_cast<char *>(s);
+}
+
+
+// Reads the given XML document and adds data to members knownVerbs,
+// aspirateHVerbs and verbTrie.
+//
+void
+FrenchVerbDictionary::readVerbs(xmlDocPtr doc,
+                                bool includeWithoutAccents)
+                                                throw(logic_error)
+{
+    if (trace)
+        cout << "readVerbs: start: includeWithoutAccents=" << includeWithoutAccents << endl;
+
+    xmlNodePtr rootNodePtr = xmlDocGetRootElement(doc);
+
+    if (rootNodePtr == NULL)
+        throw logic_error("empty verbs document");
+
+    string langCode = getLanguageCode(lang);
+    if (different(rootNodePtr->name, ("verbs-" + langCode).c_str()))
+        throw logic_error("wrong top node in verbs document");
+
+    for (xmlNodePtr v = rootNodePtr->xmlChildrenNode; v != NULL; v = v->next)
+    {
+        if (equal(v->name, "text") || equal(v->name, "comment"))
+            continue;
+
+        xmlNodePtr i = v->xmlChildrenNode;
+        if (i == NULL || i->xmlChildrenNode == NULL)
+            throw logic_error("missing <i> node");
+
+        string utf8Infinitive = getUTF8XmlNodeText(doc, i->xmlChildrenNode);
+        wstring wideInfinitive = utf8ToWide(utf8Infinitive);
+        if (wideInfinitive.empty())
+            throw logic_error("empty <i> node");
+        size_t lenInfinitive = wideInfinitive.length();
+        if (trace) cout << "utf8Infinitive='" << utf8Infinitive << "'\n";
+
+        if (i->next == NULL)
+            throw logic_error("unexpected end after <i> node");
+
+        xmlNodePtr t = i->next->next;
+        if (t == NULL)
+            throw logic_error("missing <t> node");
+
+        #if 0
+        cout << "t=" << t << ", t->xmlChildrenNode=" << t->xmlChildrenNode << "\n";
+        if (t->xmlChildrenNode == NULL)
+            cout << "  t->next=" << t->next << ", " << (t->next ? getUTF8XmlNodeText(doc, t->next->xmlChildrenNode) : 0) << endl;
+        #endif
+
+        // Get template name (e.g., "aim:er") in UTF-8.
+        string utf8TName = getUTF8XmlNodeText(doc, t->xmlChildrenNode);
+        if (utf8TName.empty())
+            throw logic_error("empty <t> node");
+        if (trace) cout << "  utf8TName='" << utf8TName << "'\n";
+
+        // Check that this template name (seen in verbs-*.xml) has been
+        // seen in conjugation-*.xml.
+        //
+        if (conjugSys.find(utf8TName) == conjugSys.end())
+            throw logic_error("unknown template name: " + utf8TName);
+
+        // Find the offset of the colon in the template name.
+        // For example: the offset is 3 in the case of "aim:er".
+        // Find this offset in a wide character string, because
+        // the offset in a UTF-8 string is in bytes, not characters.
+        //
+        wstring wideTName = utf8ToWide(utf8TName);
+        wstring::size_type posColon = wideTName.find(':');
+        if (posColon == wstring::npos)
+            throw logic_error("missing colon in <t> node");
+        assert(wideTName[posColon] == ':');
+
+
+        knownVerbs[utf8Infinitive].insert(utf8TName);
+
+        if (includeWithoutAccents)
+        {
+            // Also include versions where some of all accents are missing.
+            vector<string> unaccentedVariants;
+            formUTF8UnaccentedVariants(wideInfinitive, 0, unaccentedVariants);
+            for (vector<string>::const_iterator it = unaccentedVariants.begin();
+                                                it != unaccentedVariants.end(); ++it)
+            {
+                if (trace) cout << "  unaccvar: '" << *it << "'\n";
+                knownVerbs[*it].insert(utf8TName);
+            }
+        }
+
+        // <aspirate-h>: If this verb starts with an aspirate h, remember it:
+        if (t->next != NULL && t->next->next != NULL)
+            aspirateHVerbs.insert(utf8Infinitive);
+
+        // Insert the verb in the trie.
+        // A list of template names is associated to each verb in this trie.
+
+        size_t lenTermination = wideTName.length() - posColon - 1;
+        assert(lenTermination > 0);
+        assert(lenInfinitive >= lenTermination);
+
+        wstring wideVerbRadical(wideInfinitive, 0, lenInfinitive - lenTermination);
+        string utf8VerbRadical = wideToUTF8(wideVerbRadical);
+
+        insertVerbRadicalInTrie(utf8VerbRadical, utf8TName, utf8VerbRadical);
+
+        if (includeWithoutAccents)
+        {
+            // Also include versions where some of all accents are missing.
+            vector<string> unaccentedVariants;
+            formUTF8UnaccentedVariants(wideVerbRadical, 0, unaccentedVariants);
+            for (vector<string>::const_iterator it = unaccentedVariants.begin();
+                                                it != unaccentedVariants.end(); ++it)
+            {
+                insertVerbRadicalInTrie(*it, utf8TName, utf8VerbRadical);  // pass correct verb radical as 3rd argument
+            }
+        }
+    }
+
+    if (trace)
+        cout << "Number of known verbs (lang " << langCode << "): " << knownVerbs.size() << endl;
+}
+
+
+// String parameters expected to be in UTF-8.
+// Adds to 'verbTrie', which contains wide character strings.
+//
+void
+FrenchVerbDictionary::insertVerbRadicalInTrie(
+                                    const std::string &verbRadical,
+                                    const std::string &tname,
+                                    const std::string &correctVerbRadical)
+{
+    wstring wideVerbRadical = utf8ToWide(verbRadical);
+    if (trace)
+        cout << "insertVerbRadicalInTrie('"
+              << verbRadical << "' (len=" << wideVerbRadical.length()
+              << "), '" << tname
+              << "', '" << correctVerbRadical
+              << "')\n";
+
+    vector<TrieValue> **templateListPtr =
+                            verbTrie.getUserDataPointer(wideVerbRadical);
+    assert(templateListPtr != NULL);
+
+    // If a new entry was created for 'wideVerbRadical', then the associated
+    // user data pointer is null.  Make this pointer point to a new,
+    // empty vector of template names.
+    //
+    if (*templateListPtr == NULL)
+        *templateListPtr = new vector<TrieValue>();
+
+    // Associate the given template name to the given verb radical.
+    //
+    (*templateListPtr)->push_back(TrieValue(tname, correctVerbRadical));
+}
+
+
+FrenchVerbDictionary::~FrenchVerbDictionary()
+{
+    iconv_close(utf8ToWideConv);
+    iconv_close(wideToUTF8Conv);
+}
+
+
+const TemplateSpec *
+FrenchVerbDictionary::getTemplate(const string &templateName) const
+{
+    ConjugationSystem::const_iterator it = conjugSys.find(templateName);
+    if (it == conjugSys.end())
+        return NULL;
+    return &it->second;
+}
+
+
+ConjugationSystem::const_iterator
+FrenchVerbDictionary::beginConjugSys() const
+{
+    return conjugSys.begin();
+}
+
+
+ConjugationSystem::const_iterator
+FrenchVerbDictionary::endConjugSys() const
+{
+    return conjugSys.end();
+}
+
+
+const std::set<std::string> &
+FrenchVerbDictionary::getVerbTemplateSet(const char *infinitive) const
+{
+    static const std::set<std::string> emptySet;
+    if (infinitive == NULL)
+        return emptySet;
+    VerbTable::const_iterator it = knownVerbs.find(infinitive);
+    if (it == knownVerbs.end())
+        return emptySet;
+    return it->second;
+}
+
+
+const std::set<std::string> &
+FrenchVerbDictionary::getVerbTemplateSet(const string &infinitive) const
+{
+    return getVerbTemplateSet(infinitive.c_str());
+}
+
+
+VerbTable::const_iterator
+FrenchVerbDictionary::beginKnownVerbs() const
+{
+    return knownVerbs.begin();
+}
+
+
+VerbTable::const_iterator
+FrenchVerbDictionary::endKnownVerbs() const
+{
+    return knownVerbs.end();
+}
+
+
+const std::vector<ModeTensePersonNumber> *
+FrenchVerbDictionary::getMTPNForInflection(
+                                const std::string &templateName,
+                                const std::string &inflection) const
+{
+    InflectionTable::const_iterator i = inflectionTable.find(templateName);
+    if (i == inflectionTable.end())
+        return NULL;
+    const TemplateInflectionTable &ti = i->second;
+    TemplateInflectionTable::const_iterator j = ti.find(inflection);
+    if (j == ti.end())
+        return NULL;
+    return &j->second;
+}
+
+
+/*static*/
+Mode
+FrenchVerbDictionary::convertModeName(const char *modeName)
+{
+    Mode mode = INVALID_MODE;
+    if (modeName == NULL)
+        ;
+    else if (strcmp(modeName, "infinitive") == 0)
+        mode = INFINITIVE_MODE;
+    else if (strcmp(modeName, "indicative") == 0)
+        mode = INDICATIVE_MODE;
+    else if (strcmp(modeName, "conditional") == 0)
+        mode = CONDITIONAL_MODE;
+    else if (strcmp(modeName, "subjunctive") == 0)
+        mode = SUBJUNCTIVE_MODE;
+    else if (strcmp(modeName, "imperative") == 0)
+        mode = IMPERATIVE_MODE;
+    else if (strcmp(modeName, "participle") == 0)
+        mode = PARTICIPLE_MODE;
+    else if (strcmp(modeName, "gerund") == 0)
+        mode = GERUND_MODE;
+    else if (strcmp(modeName, "present-indicative") == 0)
+        mode = PRESENT_INDICATIVE;
+    else if (strcmp(modeName, "present-subjunctive") == 0)
+        mode = PRESENT_SUBJUNCTIVE;
+    else if (strcmp(modeName, "present-imperative") == 0)
+        mode = PRESENT_IMPERATIVE;
+    else if (strcmp(modeName, "present-gerund") == 0)
+        mode = PRESENT_GERUND;
+    else if (strcmp(modeName, "past-imperfect-indicative") == 0)
+        mode = PAST_IMPERFECT_INDICATIVE;
+    else if (strcmp(modeName, "past-perfect-indicative") == 0)
+        mode = PAST_PERFECT_INDICATIVE;
+    else if (strcmp(modeName, "past-perfect-subjunctive") == 0)
+        mode = PAST_PERFECT_SUBJUNCTIVE;
+    else if (strcmp(modeName, "past-perfect-imperative") == 0)
+        mode = PAST_PERFECT_IMPERATIVE;
+    else if (strcmp(modeName, "past-perfect-infinitive") == 0)
+        mode = PAST_PERFECT_INFINITIVE;
+
+    if (mode == INVALID_MODE)
+    {
+        if (trace) cout << "modeName='" << modeName << "'" << endl;
+        assert(!"Invalid mode");
+    }
+
+    return mode;
+}
+
+
+/*static*/
+Tense
+FrenchVerbDictionary::convertTenseName(const char *tenseName)
+{
+    Tense tense = INVALID_TENSE;
+    if (tenseName == NULL)
+        ;
+    else if (strcmp(tenseName, "infinitive-present") == 0)
+        tense = PRESENT_TENSE;
+    else if (strcmp(tenseName, "present") == 0)
+        tense = PRESENT_TENSE;
+    else if (strcmp(tenseName, "imperfect") == 0)
+        tense = IMPERFECT_TENSE;
+    else if (strcmp(tenseName, "future") == 0)
+        tense = FUTURE_TENSE;
+    else if (strcmp(tenseName, "simple-past") == 0)
+        tense = PAST_TENSE;
+    else if (strcmp(tenseName, "imperative-present") == 0)
+        tense = PRESENT_TENSE;
+    else if (strcmp(tenseName, "present-participle") == 0)
+        tense = PRESENT_TENSE;
+    else if (strcmp(tenseName, "past-participle") == 0)
+        tense = PAST_TENSE;
+    else if (strcmp(tenseName, "past") == 0)
+        tense = PAST_TENSE;
+    else if (strcmp(tenseName, "present-gerund") == 0)
+        tense = PRESENT_TENSE;
+    else if (strcmp(tenseName, "active") == 0)
+        tense = ACTIVE_TENSE;
+    else if (strcmp(tenseName, "passive") == 0)
+        tense = PASSIVE_TENSE;
+    else if (strcmp(tenseName, "imp-active") == 0)
+        tense = IMPERATIVE_ACTIVE_TENSE;
+    else if (strcmp(tenseName, "imp-passive") == 0)
+        tense = IMPERATIVE_PASSIVE_TENSE;
+    else if (strcmp(tenseName, "past-perfect") == 0)
+        tense = PAST_PERFECT;
+
+    if (tense == INVALID_TENSE)
+    {
+        if (trace) cout << "tenseName='" << tenseName << "'" << endl;
+        assert(!"Invalid tense");
+    }
+
+    return tense;
+}
+
+
+void
+FrenchVerbDictionary::deconjugate(const string &utf8ConjugatedVerb,
+                                std::vector<InflectionDesc> &results)
+{
+    verbTrie.setDestination(&results);
+
+    try
+    {
+        wstring w = utf8ToWide(utf8ConjugatedVerb);
+        (void) verbTrie.get(w);
+    }
+    catch (int e)  // exception throw by utf8towide()
+    {
+        // Wrong encoding (possibly Latin-1). Act as with unknown verb.
+    }
+
+    verbTrie.setDestination(NULL);
+}
+
+
+/*virtual*/
+void
+FrenchVerbDictionary::VerbTrie::onFoundPrefixWithUserData(
+                        const wstring &conjugatedVerb,
+                        wstring::size_type index,
+                        const vector<TrieValue> *templateList) const throw()
+{
+    assert(templateList != NULL);
+    if (trace)
+        wcout << "VerbTrie::onFoundPrefixWithUserData: start: conjugatedVerb='"
+              << conjugatedVerb << "', index=" << index
+              << ", templateList: " << templateList->size()
+              << ", results=" << results << endl;
+
+    if (results == NULL)
+        return;
+
+    const wstring term(conjugatedVerb, index);
+    const string utf8Term = fvd.wideToUTF8(term);
+
+    if (trace)
+        cout << "  utf8Term='" << utf8Term << "'\n";
+
+    /*
+        'templateList' contains the names of conjugated templates that might
+        apply to the conjugated verb.  We check each of them to see if there
+        is one that accepts the given termination 'term'.
+    */
+    for (vector<TrieValue>::const_iterator i = templateList->begin();
+                                           i != templateList->end(); i++)
+    {
+        const TrieValue &trieValue = *i;
+        const string &tname = trieValue.templateName;
+        const TemplateInflectionTable &ti =
+                                fvd.inflectionTable.find(tname)->second;
+        TemplateInflectionTable::const_iterator j = ti.find(utf8Term);
+        if (trace)
+            cout << "    tname='" << tname << "'\n";
+        if (j == ti.end())
+            continue;  // template 'tname' does not accept termination 'term'
+
+        // template 'tname' accepts 'term', so we produce some results.
+
+        string templateTerm(tname, tname.find(':') + 1);
+            // termination of the infinitive form
+        if (trace)
+            cout << "    templateTerm='" << templateTerm << "'\n";
+
+        const vector<ModeTensePersonNumber> &v = j->second;
+            // list of mode-tense-person combinations that can correspond
+            // to the conjugated verb's termination
+
+        for (vector<ModeTensePersonNumber>::const_iterator k = v.begin();
+                                                    k != v.end(); k++)
+        {
+            const ModeTensePersonNumber &mtpn = *k;
+
+            string infinitive = trieValue.correctVerbRadical + templateTerm;
+                // The infinitive of the conjugated verb is formed from its
+                // (correct) radical part and from the termination of the template name.
+                // Correct means with the proper accents. This allows the user
+                // to type "etaler" without the acute accent on the first "e"
+                // and obtain the conjugation for the correct verb, which has
+                // that accent.
+
+            if (trace)
+            {
+                const wstring radical(conjugatedVerb, 0, index);
+                cout << "VerbTrie::onFoundPrefixWithUserData: radical='"
+                    << fvd.wideToUTF8(radical) << "', templateTerm='" << templateTerm
+                    << "', tname='" << tname
+                    << "', correctVerbRadical='" << trieValue.correctVerbRadical
+                    << "', mtpn=("
+                    << mtpn.mode << ", "
+                    << mtpn.tense << ", "
+                    << (unsigned) mtpn.person << ", "
+                    << mtpn.plural << ", "
+                    << mtpn.correct << ")\n";
+            }
+
+            results->push_back(InflectionDesc(infinitive, tname, mtpn));
+                // the InflectionDesc object is an analysis of the
+                // conjugated verb
+        }
+    }
+}
+
+
+/*static*/
+const char *
+FrenchVerbDictionary::getModeName(Mode m)
+{
+    if (int(m) < int(INFINITIVE_MODE) || int(m) > int(PAST_PERFECT_INFINITIVE))
+    {
+        assert(!"FrenchVerbDictionary::getModeName() received invalid Mode value");
+        return NULL;
+    }
+
+    static const char *names[] =
+    {
+        "infinitive", "indicative", "conditional",
+        "subjunctive", "imperative", "participle",
+        "gerund",
+        "present indicative",
+        "present subjunctive",
+        "present imperative",
+        "present gerund",
+        "past imperfect indicative",
+        "past perfect indicative",
+        "past perfect subjunctive",
+        "past perfect imperative",
+        "past perfect infinitive",
+    };
+
+    size_t index = size_t(m) - 1;
+    assert(index < sizeof(names) / sizeof(names[0]));
+    return names[index];
+}
+
+
+/*static*/
+const char *
+FrenchVerbDictionary::getTenseName(Tense t)
+{
+    if (int(t) < int(PRESENT_TENSE) || int(t) > int(PAST_PERFECT))
+    {
+        assert(!"FrenchVerbDictionary::getTenseName() received invalid Tense value");
+        return NULL;
+    }
+
+    static const char *names[] =
+    {
+        "present", "past", "imperfect", "future",
+        "active", "passive", "active", "passive", "past perfect",
+    };
+
+    size_t index = size_t(t) - 1;
+    assert(index < sizeof(names) / sizeof(names[0]));
+    return names[index];
+}
+
+
+wstring
+FrenchVerbDictionary::tolowerWide(const wstring &wideString) const
+{
+    wstring result;
+    for (wstring::size_type len = wideString.length(), i = 0; i < len; i++)
+    {
+        wchar_t c = wideString[i];
+        if (c <= 0xFF)
+            result += (unsigned char) latin1TolowerTable[(unsigned char) c];
+        else
+            result += c;
+    }
+    return result;
+}
+
+
+//static
+bool
+FrenchVerbDictionary::isWideVowel(wchar_t c)
+{
+    if (strchr("aeiouyAEIOUY", (unsigned char) c) != NULL)
+        return true;
+    if (c < 0xc0 || c > 0xff)
+        return false;
+    return c != 0xc7 && c != 0xd0
+        && c != 0xd1 && c != 0xd7 && c != 0xde
+        && c != 0xe7
+        && c != 0xf0 && c != 0xf1 && c != 0xf7 && c != 0xfe;
+}
+
+
+wstring
+FrenchVerbDictionary::utf8ToWide(const string &utf8String) const throw(int)
+{
+    size_t inbytesleft = utf8String.length() + 1;  // number of *bytes* in UTF-8 string
+    size_t outbytesleft = inbytesleft * sizeof(wchar_t);  // oversized for safety
+    char *inbuf = strcpy(new char[inbytesleft], utf8String.c_str());
+    char *outbuf = new char[outbytesleft];
+
+    ICONV_CONST char *in = inbuf;
+    char *out = outbuf;
+    size_t initNumOutBytes = outbytesleft;
+    if (iconv(utf8ToWideConv, &in, &inbytesleft, &out, &outbytesleft) == (size_t) -1)
+    {
+        int e = errno;
+        delete [] inbuf;
+        delete [] outbuf;
+        throw e;
+    }
+
+    // iconv() has substracted the number of bytes produced
+    // from outbytesleft. This allows the computation of the
+    // number of wide characters in the result (excluding the
+    // terminating null character).
+    // See the iconv(3) man page for details.
+    //
+    const wchar_t *resultPtr = reinterpret_cast<wchar_t *>(outbuf);
+    size_t resultLen = (initNumOutBytes - outbytesleft) / sizeof(wchar_t) - 1;
+    assert(resultPtr[resultLen] == 0);
+
+    wstring result(resultPtr, resultLen);
+    assert(result.length() == resultLen);
+
+    delete [] inbuf;
+    delete [] outbuf;
+    return result;
+}
+
+
+string
+FrenchVerbDictionary::wideToUTF8(const wstring &wideString) const throw(int)
+{
+    size_t inbytesleft = (wideString.length() + 1) * sizeof(wchar_t);
+    size_t outbytesleft = inbytesleft;  // UTF-8 string takes no more room than wstring
+    char *inbuf = reinterpret_cast<char *>(memcpy(new char[inbytesleft], wideString.data(), inbytesleft));
+    char *outbuf = new char[outbytesleft];
+
+    ICONV_CONST char *in = inbuf;
+    char *out = outbuf;
+    if (iconv(wideToUTF8Conv, &in, &inbytesleft, &out, &outbytesleft) == (size_t) -1)
+    {
+        int e = errno;
+        delete [] inbuf;
+        delete [] outbuf;
+        throw e;
+    }
+
+    string result = outbuf;
+    delete [] inbuf;
+    delete [] outbuf;
+    return result;
+}
+
+
+/*static*/
+string
+FrenchVerbDictionary::getRadical(
+                        const string &infinitive,
+                        const string &templateName) throw(logic_error)
+{
+    string::size_type posColon = templateName.find(':');
+    if (posColon == string::npos)
+        throw logic_error("no colon found in template name");
+
+    string::size_type lenSuffix = templateName.length() - posColon - 1;
+    string::size_type lenInfPrefix = infinitive.length() - lenSuffix;
+    return string(infinitive, 0, lenInfPrefix);
+}
+
+
+bool
+FrenchVerbDictionary::generateTense(const string &radical,
+                                const TemplateSpec &templ,
+                                Mode mode,
+                                Tense tense,
+                                vector< vector<string> > &dest,
+                                bool includePronouns,
+                                bool aspirateH,
+                                bool isItalian) const throw()
+{
+    if (templ.find(mode) == templ.end())
+        return false;
+
+    const ModeSpec &modeSpec = templ.find(mode)->second;
+
+    if (modeSpec.find(tense) == modeSpec.end())
+        return false;
+
+    const TenseSpec &tenseSpec = modeSpec.find(tense)->second;
+
+    if (mode != INDICATIVE_MODE
+            && mode != CONDITIONAL_MODE
+            && mode != SUBJUNCTIVE_MODE)
+        includePronouns = false;
+
+    for (TenseSpec::const_iterator p = tenseSpec.begin();
+                                    p != tenseSpec.end(); p++)
+    {
+        dest.push_back(vector<string>());
+        for (PersonSpec::const_iterator i = p->begin(); i != p->end(); i++)
+        {
+            // Do not return spellings that are marked incorrect.
+            // They are in the knowledge base only to allow
+            // error-tolerant searches.
+            //
+            if (!(*i).isCorrect)
+                continue;
+
+            string pronoun;  // no pronoun by default
+
+            string v = radical + (*i).inflection;
+
+            if (includePronouns)
+            {
+                size_t noPers = p - tenseSpec.begin();
+                switch (noPers)
+                {
+                case 0:
+                    if (isItalian)
+                        pronoun = "io ";
+                    else
+                    {
+                        bool elideJe = false;
+                        if (!aspirateH)
+                        {
+                            wstring wideV = utf8ToWide(v);  // inefficient: converts all chars, only 1st needed
+                            wchar_t init = (wideV.empty() ? '\0' : wideV[0]);
+                            if (init == 'h' || init == 'H' || isWideVowel(init))
+                                elideJe = true;
+                        }
+                        pronoun = (elideJe ? "j'" : "je ");
+                    }
+                    break;
+                case 1: pronoun = "tu "; break;
+                case 2: pronoun = (isItalian ? "egli " : "il "); break;
+                case 3: pronoun = (isItalian ? "noi "  : "nous "); break;
+                case 4: pronoun = (isItalian ? "voi "  : "vous "); break;
+                case 5: pronoun = (isItalian ? "essi " : "ils "); break;
+                }
+
+                if (mode == SUBJUNCTIVE_MODE)
+                {
+                    const char *conj;
+                    if (isItalian)
+                        conj = "che ";
+                    else if (noPers == 2 || noPers == 5)
+                        conj = "qu'";
+                    else
+                        conj = "que ";
+                    pronoun = conj + pronoun;
+                }
+            }
+
+            dest.back().push_back(pronoun + v);
+        }
+    }
+
+    return true;
+}
+
+
+bool FrenchVerbDictionary::isVerbStartingWithAspirateH(
+                                const std::string &infinitive) const throw()
+{
+    return aspirateHVerbs.find(infinitive) != aspirateHVerbs.end();
+}
diff --git a/verbiste/FrenchVerbDictionary.h b/verbiste/FrenchVerbDictionary.h
new file mode 100644 (file)
index 0000000..358f430
--- /dev/null
@@ -0,0 +1,478 @@
+/*  $Id: FrenchVerbDictionary.h,v 1.44 2012/04/24 02:46:05 sarrazip Exp $
+    FrenchVerbDictionary.h - Dictionary of verbs and conjugation templates
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#ifndef _H_FrenchVerbDictionary
+#define _H_FrenchVerbDictionary
+
+#include <verbiste/c-api.h>
+#include <verbiste/misc-types.h>
+#include <verbiste/Trie.h>
+
+#include <libxml/xmlmemory.h>
+#include <libxml/parser.h>
+#include <iconv.h>
+
+#include <assert.h>
+#include <stdexcept>
+#include <vector>
+#include <set>
+#include <string>
+
+
+/** C++ namespace in which all of this library's names are defined. */
+namespace verbiste {
+
+
+/** French verbs and conjugation knowledge base.
+    The text processing done by this class is case-sensitive.
+*/
+class FrenchVerbDictionary
+{
+public:
+
+    enum Language { NO_LANGUAGE, FRENCH, ITALIAN, GREEK };
+
+    /** Returns the language identifier recognized in the given string.
+        @param  twoLetterCode           string containing a language code
+        @returns                        a member of the 'Language' enum,
+                                        or NO_LANGUAGE if the string was
+                                        not recognized
+    */
+    static Language parseLanguageCode(const std::string &twoLetterCode);
+
+    /** Returns the two-letter code that names the given language identifier.
+        @param  l               valid language identifier
+        @returns                empty string if 'l' is NO_LANGUAGE or invalid,
+                                or a twi-letter string otherwise
+    */
+    static std::string getLanguageCode(Language l);
+
+    /** Returns the full path names of the conjugation and verb XML files
+        for the given language code.
+        @param  conjFN          receives the full path of the conjugation template XML file
+        @param  verbsFN         receives the full path of the verb list XML file
+        @param  languageCode    "fr" for French or "it" for Italian
+    */
+    static void getXMLFilenames(std::string &conjFN, std::string &verbsFN,
+                                Language l);
+
+    /** Load a conjugation database.
+        @param    conjugationFilename   filename of the XML document that
+                                        defines all the conjugation templates
+        @param    verbsFilename         filename of the XML document that
+                                        defines all the known verbs and their
+                                        corresponding template
+        @param    includeWithoutAccents fill knowledge base with variants of
+                                        verbs where some or all accents are missing
+        @param    lang                  language of the dictionary
+        @throws   logic_error           for invalid arguments,
+                                        unparseable or unexpected XML documents
+    */
+    FrenchVerbDictionary(const std::string &conjugationFilename,
+                        const std::string &verbsFilename,
+                        bool includeWithoutAccents,
+                        Language lang)
+                                        throw (std::logic_error);
+
+    /** Load the French conjugation database.
+        Uses the default (hard-coded) location for the French dictionary's
+        data filenames.
+        @param    includeWithoutAccents include in the knowledge base variants
+                                        verbs where some or all accents are missing
+        @throws   logic_error           for invalid filename arguments,
+                                        unparseable or unexpected XML documents
+                                        (if verbs or template names are
+                                        mentioned, they are in Latin-1)
+    */
+    FrenchVerbDictionary(bool includeWithoutAccents) throw (std::logic_error);
+
+    /** Frees the memory used by this dictionary.
+    */
+    ~FrenchVerbDictionary();
+
+    /** Returns a conjugation template specification from its name.
+        @param    templateName  name of the desired template (e.g. "aim:er")
+        @returns                a pointer to the TemplateSpec object if found,
+                                or NULL otherwise
+    */
+    const TemplateSpec *getTemplate(const std::string &templateName) const;
+
+    /** Returns an iterator for the list of conjugation templates. */
+    ConjugationSystem::const_iterator beginConjugSys() const;
+
+    /** Returns an iterator for the end of the list of conjugation templates. */
+    ConjugationSystem::const_iterator endConjugSys() const;
+
+    /** Returns the set of templates used by a verb.
+        @param    infinitive    infinitive form of the verb in Latin-1
+                                (e.g., "manger", not "mange")
+        @returns                a set of template names of the form radical:termination
+                                in Latin-1 (e.g., "aim:er"),
+                                or an empty set if the verb is unknown
+                                or if 'infinitive' is NULL
+    */
+    const std::set<std::string> &getVerbTemplateSet(const char *infinitive) const;
+
+    /** Returns the template used by a verb.
+        @param    infinitive    infinitive form of the verb in Latin-1
+                                (e.g., "manger", not "mange")
+        @returns                a set of template names of the form radical:termination
+                                in Latin-1 (e.g., "aim:er"),
+                                or an empty set if the verb is unknown
+                                or NULL if the verb is unknown
+    */
+    const std::set<std::string> &getVerbTemplateSet(const std::string &infinitive) const;
+
+    /** Returns an iterator for the list of known verbs. */
+    VerbTable::const_iterator beginKnownVerbs() const;
+
+    /** Returns an iterator for the end of the list of known verbs. */
+    VerbTable::const_iterator endKnownVerbs() const;
+
+
+    /** Describes an inflection according to a given conjugation template.
+        If the given inflection is known to the given conjugation template,
+        the list of possible modes, tenses and persons is returned.
+        For example, the inflection "es" in the "aim:er" template
+        can be the 2nd person singular of the indicative present
+        ("tu aimes")
+        or the 2nd person singular of the subjunctive present.
+        ("que tu aimes").
+        Here, two ModeTensePersonNumber objects would be in the returned vector.
+
+        @param    templateName  name of the conjugation template to use
+                                (e.g., "aim:er")
+        @param    inflection    inflection to be described
+                                (e.g., "erions")
+        @returns                a pointer to a vector of ModeTensePersonNumber
+                                objects (which must not be modified nor
+                                destroyed), or NULL if the inflection was not
+                                known to the template
+    */
+    const std::vector<ModeTensePersonNumber> *getMTPNForInflection(
+                                        const std::string &templateName,
+                                        const std::string &inflection) const;
+
+    /** Converts an English mode name into the corresponding enumerated type.
+        @param        modeName        English mode name (infinitive, indicative, etc)
+        @returns                a member of the Mode enumeration
+                                (INVALID_MODE if 'modeName' is not known)
+    */
+    static Mode convertModeName(const char *modeName);
+
+    /** Converts an English tense name into the corresponding enumerated type.
+        @param        tenseName        English tense name (present, past, etc)
+        @returns                a member of the Tense enumeration
+                                (INVALID_MODE if 'modeName' is not known)
+    */
+    static Tense convertTenseName(const char *tenseName);
+
+    /** Analyzes a conjugated verb and finds all known possible cases.
+        @param   utf8ConjugatedVerb     conjugated French verb in UTF-8
+                                        (e.g., "aimerions")
+        @param   results        vector in which to store the inflection
+                                descriptions (this vector is not emptied
+                                before elements are stored in it);
+                                no elements are stored in this vector
+                                if the given conjugated verb is unknown
+    */
+    void deconjugate(const std::string &utf8ConjugatedVerb,
+                            std::vector<InflectionDesc> &results);
+
+    /** Returns the English name (in ASCII) of the given mode.
+    */
+    static const char *getModeName(Mode m);
+
+    /** Returns the English name (in ASCII) of the given tense.
+    */
+    static const char *getTenseName(Tense t);
+
+    /** Converts the Latin-1 characters of a wide character string to lower-case.
+        @param    wideString    Unicode character string to be converted
+        @returns                lower-case version of the character string
+    */
+    std::wstring tolowerWide(const std::wstring &wideString) const;
+
+    /** Determines if a Unicode character is lower-case.
+        Only works on Latin-1 characters.
+        @param      c           Unicode character code
+        @returns                true iff 'c' is a Latin-1 vowel.
+    */
+    static bool isWideVowel(wchar_t c);
+
+    /** Converts a UTF-8 string to a wide character string.
+        @param      utf8String  UTF-8 string to be converted
+        @returns                Unicode string
+    */
+    std::wstring utf8ToWide(const std::string &utf8String) const throw(int);
+
+    /** Converts a wide character string to a UTF-8 string.
+        @param      wideString  Unicode string to be converted
+        @returns                UTF-8 string
+    */
+    std::string wideToUTF8(const std::wstring &wideString) const throw(int);
+
+    /** Removes accents from accented letters in the given string.
+        @param   utf8String     UTF-8 string with accented characters
+        @returns                a UTF-8 string with the accents removed
+    */
+    std::string removeUTF8Accents(const std::string &utf8String);
+
+    /** Returns all unaccented variants of a wide character string.
+        If N letters are accented in 'utf8String', then 2^N variants
+        are returned, where each accented letter either keeps or loses
+        its accents.
+        For example, the word "été" has 3 unaccented variants:
+        "eté", "ete" and "éte".
+        @param    wideString    wide character string with accented characters
+        @param    index         pass zero (recursive calls to this function
+                                pass non-zero indices)
+        @param    utf8Variants  vector to which UTF-8 strings are added
+                                with push_back (this function does not
+                                clear the vector beforehand)
+    */
+    void formUTF8UnaccentedVariants(const std::wstring &wideString,
+                                        size_t index,
+                                        std::vector<std::string> &utf8Variants);
+
+    /** Returns all unaccented variants of a UTF-8 string.
+        If N letters are accented in 'utf8String', then 2^N variants
+        are returned, where each accented letter either keeps or loses
+        its accents.
+        For example, the word "été" has 3 unaccented variants:
+        "eté", "ete" and "éte".
+        @param    utf8String    UTF-8 string with accented characters
+        @param    index         pass zero (recursive calls to this function
+                                pass non-zero indices)
+        @param    utf8Variants  vector to which UTF-8 strings are added
+                                with push_back (this function does not
+                                clear the vector beforehand)
+    */
+    void formUTF8UnaccentedVariants(const std::string &utf8String,
+                                        size_t index,
+                                        std::vector<std::string> &utf8Variants);
+
+
+    /** Returns the content of an XML node in UTF-8.
+        @param    doc           the XML document
+        @param    node          the node of the XML document whose contents
+                                are to be extracted
+        @returns                a Latin-1 string representing the contents
+                                of the node; this string is empty the
+                                requested node does not exist
+        @throws    int          errno value set by iconv(3), in the case of a
+                                UTF-8 to Latin-1 conversion error
+    */
+    std::string getUTF8XmlNodeText(
+                        xmlDocPtr doc, xmlNodePtr node) throw(int);
+
+    /** Returns the content of an XML property in UTF-8.
+        For example, if 'node' represents <foo type='xyz'/>,
+        then passing "type" for 'propName' will return "xyz".
+        @param    node          the node of the XML document
+        @param    propName      the name of the property to extract
+        @returns                a Latin-1 string representing the contents
+                                of the property; this string is empty the
+                                requested property does not exist
+        @throws   int           errno value set by iconv(3), in the case of a
+                                UTF-8 to Latin-1 conversion error
+    */
+    std::string getUTF8XmlProp(
+                        xmlNodePtr node, const char *propName) throw(int);
+
+
+    /** Gets the radical part of an infinitive, according to a template name.
+        @param    infinitive    infinitive whose radical is requested
+        @param    templateName  name of the conjugation template that applies
+        @returns                a prefix of 'infinitive'
+        @throws   logic_error   the template name is invalid (no ':' found)
+    */
+    static std::string getRadical(
+                    const std::string &infinitive,
+                    const std::string &templateName) throw(std::logic_error);
+
+    /** Generates the conjugation of a verb for a given mode and tense.
+        The generated words are complete, they are not just inflections.
+        @param    radical       radical part of the verb to conjugate
+        @param    templ         conjugation template to apply
+        @param    mode          mode to use
+        @param    tense         tense to use
+        @param    dest          vector of vectors of strings into which to
+                                store the results; the result is a list of
+                                "persons", and a person is a list of
+                                "inflections"
+        @param    includePronouns put pronouns before conjugated verbs in the
+                                modes where pronouns are used
+        @param    aspirateH     notifies this function that the verb starts
+                                with an aspirate h (e.g., "hacher", which
+                                gives "je hache") instead of a silent h
+                                (e.g., "habiter", which gives "j'habite")
+        @param    isItalian     language used (true for Italian, false for French)
+        @returns                true for success, or false if the mode or
+                                tense is unknown.
+    */
+    bool generateTense(const std::string &radical,
+                        const TemplateSpec &templ,
+                        Mode mode,
+                        Tense tense,
+                        std::vector< std::vector<std::string> > &dest,
+                        bool includePronouns,
+                        bool aspirateH,
+                        bool isItalian) const throw();
+
+    /** Indicates if the given verb starts with an aspirate h.
+        An aspirate h means that one cannot make a contraction or liaison
+        in front of the word.  For example, "hacher" has an aspirate h
+        and this means that one says "je hache" and not "j'hache".
+        The verb "habiter" however does not have an aspirate h, so one
+        says "j'habite" and not "je habite".
+    */
+    bool isVerbStartingWithAspirateH(
+                                const std::string &infinitive) const throw();
+
+    /** Returns the code representing this dictionary's language.
+    */
+    Language getLanguage() const { return lang; }
+
+private:
+
+    // User data employed in the Verb Trie.
+    // Remembers the correct spelling of the verb, in case the user
+    // reached a trie entry through tolerance of missing accents.
+    // This way, if the user enters "etaler", the displayed conjugation
+    // will show the missing acute accent on the first "e".
+    //
+    class TrieValue
+    {
+    public:
+        TrieValue(const std::string &t, const std::string &r)
+        :   templateName(t), correctVerbRadical(r) {}
+
+        std::string templateName;
+        std::string correctVerbRadical;
+    };
+
+    /** Trie that contains all known verb radicals.
+        The associated information is a list of template names
+        that can apply to the radical.
+        The verb radicals and the template names are stored in Latin-1.
+    */
+    class VerbTrie : public Trie< std::vector<TrieValue> >
+    {
+    public:
+        const FrenchVerbDictionary &fvd;
+        std::vector<InflectionDesc> *results;
+
+        /** Constructs a trie that keeps a reference to the dictionary.
+            @param        d        reference to the verb dictionary
+        */
+        VerbTrie(const FrenchVerbDictionary &d)
+          : Trie< std::vector<TrieValue> >(true),
+            fvd(d),
+            results(NULL)
+        {
+        }
+
+        /** Callback invoked by the Trie<>::get() method.
+            Inherited from Trie<>.
+            This callback will be called for each prefix of the searched
+            string that corresponds to the radical of a known verb.
+            Stores data in the vector<InflectionDesc> designated by
+            the last call to setDestination().
+            @param        conjugatedVerb    the searched string
+            @param        index             length of the prefix
+            @param        templateList      list of conjugation templates that
+                                            might apply to the conjugated verb
+        */
+        virtual void onFoundPrefixWithUserData(
+                        const std::wstring &conjugatedVerb,
+                        std::wstring::size_type index,
+                        const std::vector<TrieValue> *templateList) const
+                                                                throw();
+
+        /** Sets the destination vector in which callback() stores results.
+            When the Trie<>::get() method is called on this object,
+            it may invoke the callback() virtual method.
+            callback() will store any results in the vector designated here.
+            After calling get(), iterate through the vector to obtain
+            the possible inflections of the conjugated verb.
+            @param        d        destination vector designated as the
+                                   repository for results (may be NULL)
+        */
+        void setDestination(std::vector<InflectionDesc> *d)
+        {
+            results = d;
+        }
+
+    private:
+        // Forbidden operations:
+        VerbTrie(const VerbTrie &);
+        VerbTrie &operator = (const VerbTrie &);
+    };
+
+    friend class VerbTrie;
+
+private:
+
+    ConjugationSystem conjugSys;
+    VerbTable knownVerbs;
+    std::set<std::string> aspirateHVerbs;
+    InflectionTable inflectionTable;
+    iconv_t wideToUTF8Conv;
+    iconv_t utf8ToWideConv;
+    char latin1TolowerTable[256];
+    VerbTrie verbTrie;
+    Language lang;
+
+private:
+
+    void init(const std::string &conjugationFilename,
+                        const std::string &verbsFilename,
+                        bool includeWithoutAccents)
+                                        throw (std::logic_error);
+    void loadConjugationDatabase(const char *conjugationFilename,
+                                bool includeWithoutAccents)
+                                        throw (std::logic_error);
+    void loadVerbDatabase(const char *verbsFilename,
+                        bool includeWithoutAccents)
+                                        throw (std::logic_error);
+    void readConjugation(xmlDocPtr doc,
+                        bool includeWithoutAccents) throw(std::logic_error);
+    static void generateOtherPastParticiple(const char *mascSing,
+                                        std::vector<std::string> &dest);
+    void readVerbs(xmlDocPtr doc,
+                   bool includeWithoutAccents)
+                                throw(std::logic_error);
+    void insertVerbRadicalInTrie(const std::string &verbRadical,
+                                    const std::string &tname,
+                                    const std::string &correctVerbRadical);
+
+    // Forbidden operations:
+    FrenchVerbDictionary(const FrenchVerbDictionary &x);
+    FrenchVerbDictionary &operator = (const FrenchVerbDictionary &x);
+};
+
+
+}  // namespace verbiste
+
+
+#endif  /* _H_FrenchVerbDictionary */
diff --git a/verbiste/Makefile.am b/verbiste/Makefile.am
new file mode 100644 (file)
index 0000000..3ce94e4
--- /dev/null
@@ -0,0 +1,52 @@
+# $Id: Makefile.am,v 1.11 2010/04/18 20:10:35 sarrazip Exp $
+
+lib_LTLIBRARIES = libverbiste-0.1.la
+
+libdatadir = $(datadir)/$(PACKAGE)-$(API)
+
+libverbiste_0_1_la_SOURCES = \
+       FrenchVerbDictionary.cpp \
+       FrenchVerbDictionary.h \
+       misc-types.cpp \
+       misc-types.h \
+       c-api.cpp \
+       c-api.h \
+       Trie.h
+
+libverbiste_0_1_la_CXXFLAGS = \
+       -I$(top_srcdir)/src \
+       -DLIBDATADIR=\"$(libdatadir)\" \
+       $(LIBXML2_CFLAGS)
+
+libverbiste_0_1_la_LIBADD = \
+       $(LIBXML2_LIBS)
+
+pkgincludedir = $(includedir)/$(PACKAGE)-$(API)/$(PACKAGE)
+pkginclude_HEADERS = \
+       misc-types.h \
+       c-api.h \
+       FrenchVerbDictionary.h \
+       Trie.cpp \
+       Trie.h
+
+TESTS = checkxml
+
+check_PROGRAMS = checkxml
+
+checkxml_SOURCES = checkxml.cpp
+
+checkxml_CXXFLAGS = \
+       -DVERBSFRXML=\"$(top_srcdir)/data/verbs-fr.xml\" \
+       -DCONJUGATIONFRXML=\"$(top_srcdir)/data/conjugation-fr.xml\" \
+       $(LIBXML2_CFLAGS)
+
+checkxml_LDADD = \
+       $(LIBXML2_LIBS)
+
+doc:
+       doxygen $(PACKAGE).dox
+       @echo "HTML documentation should now be in 'html' subdirectory."
+
+EXTRA_DIST = $(pkginclude_HEADERS) $(PACKAGE).dox
+
+MAINTAINERCLEANFILES = Makefile.in
diff --git a/verbiste/Makefile.in b/verbiste/Makefile.in
new file mode 100644 (file)
index 0000000..5375878
--- /dev/null
@@ -0,0 +1,845 @@
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+# $Id: Makefile.am,v 1.11 2010/04/18 20:10:35 sarrazip Exp $
+
+
+VPATH = @srcdir@
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+TESTS = checkxml$(EXEEXT)
+check_PROGRAMS = checkxml$(EXEEXT)
+subdir = src/verbiste
+DIST_COMMON = $(pkginclude_HEADERS) $(srcdir)/Makefile.am \
+       $(srcdir)/Makefile.in
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/macros/ac_compile_warnings.m4 \
+       $(top_srcdir)/macros/ac_prog_perl_modules.m4 \
+       $(top_srcdir)/macros/codeset.m4 \
+       $(top_srcdir)/macros/getopt_long.m4 \
+       $(top_srcdir)/macros/gettext.m4 $(top_srcdir)/macros/glibc2.m4 \
+       $(top_srcdir)/macros/glibc21.m4 $(top_srcdir)/macros/iconv.m4 \
+       $(top_srcdir)/macros/intdiv0.m4 $(top_srcdir)/macros/intmax.m4 \
+       $(top_srcdir)/macros/inttypes-pri.m4 \
+       $(top_srcdir)/macros/inttypes.m4 \
+       $(top_srcdir)/macros/inttypes_h.m4 \
+       $(top_srcdir)/macros/isc-posix.m4 \
+       $(top_srcdir)/macros/lcmessage.m4 \
+       $(top_srcdir)/macros/lib-ld.m4 \
+       $(top_srcdir)/macros/lib-link.m4 \
+       $(top_srcdir)/macros/lib-prefix.m4 \
+       $(top_srcdir)/macros/libtool.m4 \
+       $(top_srcdir)/macros/longdouble.m4 \
+       $(top_srcdir)/macros/longlong.m4 \
+       $(top_srcdir)/macros/ltoptions.m4 \
+       $(top_srcdir)/macros/ltsugar.m4 \
+       $(top_srcdir)/macros/ltversion.m4 \
+       $(top_srcdir)/macros/lt~obsolete.m4 \
+       $(top_srcdir)/macros/nls.m4 $(top_srcdir)/macros/po.m4 \
+       $(top_srcdir)/macros/printf-posix.m4 \
+       $(top_srcdir)/macros/progtest.m4 \
+       $(top_srcdir)/macros/signed.m4 \
+       $(top_srcdir)/macros/size_max.m4 \
+       $(top_srcdir)/macros/stdint_h.m4 \
+       $(top_srcdir)/macros/uintmax_t.m4 \
+       $(top_srcdir)/macros/ulonglong.m4 \
+       $(top_srcdir)/macros/wchar_t.m4 $(top_srcdir)/macros/wint_t.m4 \
+       $(top_srcdir)/macros/xsize.m4 $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+       $(ACLOCAL_M4)
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_CLEAN_FILES =
+CONFIG_CLEAN_VPATH_FILES =
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+    *) f=$$p;; \
+  esac;
+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
+am__install_max = 40
+am__nobase_strip_setup = \
+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
+am__nobase_strip = \
+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
+am__nobase_list = $(am__nobase_strip_setup); \
+  for p in $$list; do echo "$$p $$p"; done | \
+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
+    if (++n[$$2] == $(am__install_max)) \
+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
+    END { for (dir in files) print dir, files[dir] }'
+am__base_list = \
+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"
+LTLIBRARIES = $(lib_LTLIBRARIES)
+am__DEPENDENCIES_1 =
+libverbiste_0_1_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+am_libverbiste_0_1_la_OBJECTS =  \
+       libverbiste_0_1_la-FrenchVerbDictionary.lo \
+       libverbiste_0_1_la-misc-types.lo libverbiste_0_1_la-c-api.lo
+libverbiste_0_1_la_OBJECTS = $(am_libverbiste_0_1_la_OBJECTS)
+libverbiste_0_1_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
+       $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
+       $(libverbiste_0_1_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
+       $(LDFLAGS) -o $@
+am_checkxml_OBJECTS = checkxml-checkxml.$(OBJEXT)
+checkxml_OBJECTS = $(am_checkxml_OBJECTS)
+checkxml_DEPENDENCIES = $(am__DEPENDENCIES_1)
+checkxml_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
+       $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(checkxml_CXXFLAGS) \
+       $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+DEFAULT_INCLUDES = -I.@am__isrc@
+depcomp = $(SHELL) $(top_srcdir)/depcomp
+am__depfiles_maybe = depfiles
+am__mv = mv -f
+CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+       $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+       --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+       $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+CXXLD = $(CXX)
+CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+       --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
+       $(LDFLAGS) -o $@
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+       --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+       $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+CCLD = $(CC)
+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+       --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+       $(LDFLAGS) -o $@
+SOURCES = $(libverbiste_0_1_la_SOURCES) $(checkxml_SOURCES)
+DIST_SOURCES = $(libverbiste_0_1_la_SOURCES) $(checkxml_SOURCES)
+HEADERS = $(pkginclude_HEADERS)
+ETAGS = etags
+CTAGS = ctags
+am__tty_colors = \
+red=; grn=; lgn=; blu=; std=
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+pkgincludedir = $(includedir)/$(PACKAGE)-$(API)/$(PACKAGE)
+ACLOCAL = @ACLOCAL@
+ALLOCA = @ALLOCA@
+AMTAR = @AMTAR@
+API = @API@
+APPLET_CATEGORY = @APPLET_CATEGORY@
+APPLET_CATEGORY_FR = @APPLET_CATEGORY_FR@
+APPLET_DESCRIPTION = @APPLET_DESCRIPTION@
+APPLET_DESCRIPTION_FR = @APPLET_DESCRIPTION_FR@
+APPLET_FULL_NAME = @APPLET_FULL_NAME@
+APPLET_FULL_NAME_FR = @APPLET_FULL_NAME_FR@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
+CATOBJEXT = @CATOBJEXT@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+COPYRIGHT_YEARS = @COPYRIGHT_YEARS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DATADIRNAME = @DATADIRNAME@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DSYMUTIL = @DSYMUTIL@
+DUMPBIN = @DUMPBIN@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+FGREP = @FGREP@
+GENCAT = @GENCAT@
+GLIBC2 = @GLIBC2@
+GLIBC21 = @GLIBC21@
+GMSGFMT = @GMSGFMT@
+GREP = @GREP@
+GTK_CFLAGS = @GTK_CFLAGS@
+GTK_LIBS = @GTK_LIBS@
+GTK_MINVER = @GTK_MINVER@
+HAVE_ASPRINTF = @HAVE_ASPRINTF@
+HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
+HAVE_SNPRINTF = @HAVE_SNPRINTF@
+HAVE_WPRINTF = @HAVE_WPRINTF@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INSTOBJEXT = @INSTOBJEXT@
+INTLBISON = @INTLBISON@
+INTLLIBS = @INTLLIBS@
+INTLOBJS = @INTLOBJS@
+INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
+INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LIBGNOMEUI_CFLAGS = @LIBGNOMEUI_CFLAGS@
+LIBGNOMEUI_LIBS = @LIBGNOMEUI_LIBS@
+LIBGNOMEUI_MINVER = @LIBGNOMEUI_MINVER@
+LIBICONV = @LIBICONV@
+LIBINTL = @LIBINTL@
+LIBOBJS = @LIBOBJS@
+LIBPANELAPPLET_CFLAGS = @LIBPANELAPPLET_CFLAGS@
+LIBPANELAPPLET_LIBS = @LIBPANELAPPLET_LIBS@
+LIBPANELAPPLET_MINVER = @LIBPANELAPPLET_MINVER@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
+LIBXML2_LIBS = @LIBXML2_LIBS@
+LIBXML2_MINVER = @LIBXML2_MINVER@
+LIPO = @LIPO@
+LN_S = @LN_S@
+LTLIBICONV = @LTLIBICONV@
+LTLIBINTL = @LTLIBINTL@
+LTLIBOBJS = @LTLIBOBJS@
+MAKEINFO = @MAKEINFO@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MANUAL_DATE_EN = @MANUAL_DATE_EN@
+MANUAL_DATE_FR = @MANUAL_DATE_FR@
+MKDIR_P = @MKDIR_P@
+MKINSTALLDIRS = @MKINSTALLDIRS@
+MSGFMT = @MSGFMT@
+MSGMERGE = @MSGMERGE@
+NM = @NM@
+NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_FULL_NAME = @PACKAGE_FULL_NAME@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_SUMMARY_EN = @PACKAGE_SUMMARY_EN@
+PACKAGE_SUMMARY_FR = @PACKAGE_SUMMARY_FR@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PERL = @PERL@
+PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
+POSUB = @POSUB@
+RANLIB = @RANLIB@
+RELEASE = @RELEASE@
+SED = @SED@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
+USE_NLS = @USE_NLS@
+VERSION = @VERSION@
+XGETTEXT = @XGETTEXT@
+XMLLINT = @XMLLINT@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+builddir = @builddir@
+datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
+exec_prefix = @exec_prefix@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+lib_LTLIBRARIES = libverbiste-0.1.la
+libdatadir = $(datadir)/$(PACKAGE)-$(API)
+libverbiste_0_1_la_SOURCES = \
+       FrenchVerbDictionary.cpp \
+       FrenchVerbDictionary.h \
+       misc-types.cpp \
+       misc-types.h \
+       c-api.cpp \
+       c-api.h \
+       Trie.h
+
+libverbiste_0_1_la_CXXFLAGS = \
+       -I$(top_srcdir)/src \
+       -DLIBDATADIR=\"$(libdatadir)\" \
+       $(LIBXML2_CFLAGS)
+
+libverbiste_0_1_la_LIBADD = \
+       $(LIBXML2_LIBS)
+
+pkginclude_HEADERS = \
+       misc-types.h \
+       c-api.h \
+       FrenchVerbDictionary.h \
+       Trie.cpp \
+       Trie.h
+
+checkxml_SOURCES = checkxml.cpp
+checkxml_CXXFLAGS = \
+       -DVERBSFRXML=\"$(top_srcdir)/data/verbs-fr.xml\" \
+       -DCONJUGATIONFRXML=\"$(top_srcdir)/data/conjugation-fr.xml\" \
+       $(LIBXML2_CFLAGS)
+
+checkxml_LDADD = \
+       $(LIBXML2_LIBS)
+
+EXTRA_DIST = $(pkginclude_HEADERS) $(PACKAGE).dox
+MAINTAINERCLEANFILES = Makefile.in
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .cpp .lo .o .obj
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
+       @for dep in $?; do \
+         case '$(am__configure_deps)' in \
+           *$$dep*) \
+             ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
+               && { if test -f $@; then exit 0; else break; fi; }; \
+             exit 1;; \
+         esac; \
+       done; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/verbiste/Makefile'; \
+       $(am__cd) $(top_srcdir) && \
+         $(AUTOMAKE) --gnu src/verbiste/Makefile
+.PRECIOUS: Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+       @case '$?' in \
+         *config.status*) \
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+         *) \
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+       esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure:  $(am__configure_deps)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(am__aclocal_m4_deps):
+install-libLTLIBRARIES: $(lib_LTLIBRARIES)
+       @$(NORMAL_INSTALL)
+       test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
+       @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
+       list2=; for p in $$list; do \
+         if test -f $$p; then \
+           list2="$$list2 $$p"; \
+         else :; fi; \
+       done; \
+       test -z "$$list2" || { \
+         echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
+         $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
+       }
+
+uninstall-libLTLIBRARIES:
+       @$(NORMAL_UNINSTALL)
+       @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
+       for p in $$list; do \
+         $(am__strip_dir) \
+         echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
+         $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
+       done
+
+clean-libLTLIBRARIES:
+       -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
+       @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+         dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
+         test "$$dir" != "$$p" || dir=.; \
+         echo "rm -f \"$${dir}/so_locations\""; \
+         rm -f "$${dir}/so_locations"; \
+       done
+libverbiste-0.1.la: $(libverbiste_0_1_la_OBJECTS) $(libverbiste_0_1_la_DEPENDENCIES) 
+       $(libverbiste_0_1_la_LINK) -rpath $(libdir) $(libverbiste_0_1_la_OBJECTS) $(libverbiste_0_1_la_LIBADD) $(LIBS)
+
+clean-checkPROGRAMS:
+       @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
+       echo " rm -f" $$list; \
+       rm -f $$list || exit $$?; \
+       test -n "$(EXEEXT)" || exit 0; \
+       list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
+       echo " rm -f" $$list; \
+       rm -f $$list
+checkxml$(EXEEXT): $(checkxml_OBJECTS) $(checkxml_DEPENDENCIES) 
+       @rm -f checkxml$(EXEEXT)
+       $(checkxml_LINK) $(checkxml_OBJECTS) $(checkxml_LDADD) $(LIBS)
+
+mostlyclean-compile:
+       -rm -f *.$(OBJEXT)
+
+distclean-compile:
+       -rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkxml-checkxml.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libverbiste_0_1_la-FrenchVerbDictionary.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libverbiste_0_1_la-c-api.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libverbiste_0_1_la-misc-types.Plo@am__quote@
+
+.cpp.o:
+@am__fastdepCXX_TRUE@  $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
+
+.cpp.obj:
+@am__fastdepCXX_TRUE@  $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+
+.cpp.lo:
+@am__fastdepCXX_TRUE@  $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
+
+libverbiste_0_1_la-FrenchVerbDictionary.lo: FrenchVerbDictionary.cpp
+@am__fastdepCXX_TRUE@  $(LIBTOOL)  --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libverbiste_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libverbiste_0_1_la-FrenchVerbDictionary.lo -MD -MP -MF $(DEPDIR)/libverbiste_0_1_la-FrenchVerbDictionary.Tpo -c -o libverbiste_0_1_la-FrenchVerbDictionary.lo `test -f 'FrenchVerbDictionary.cpp' || echo '$(srcdir)/'`FrenchVerbDictionary.cpp
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/libverbiste_0_1_la-FrenchVerbDictionary.Tpo $(DEPDIR)/libverbiste_0_1_la-FrenchVerbDictionary.Plo
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='FrenchVerbDictionary.cpp' object='libverbiste_0_1_la-FrenchVerbDictionary.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(LIBTOOL)  --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libverbiste_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libverbiste_0_1_la-FrenchVerbDictionary.lo `test -f 'FrenchVerbDictionary.cpp' || echo '$(srcdir)/'`FrenchVerbDictionary.cpp
+
+libverbiste_0_1_la-misc-types.lo: misc-types.cpp
+@am__fastdepCXX_TRUE@  $(LIBTOOL)  --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libverbiste_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libverbiste_0_1_la-misc-types.lo -MD -MP -MF $(DEPDIR)/libverbiste_0_1_la-misc-types.Tpo -c -o libverbiste_0_1_la-misc-types.lo `test -f 'misc-types.cpp' || echo '$(srcdir)/'`misc-types.cpp
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/libverbiste_0_1_la-misc-types.Tpo $(DEPDIR)/libverbiste_0_1_la-misc-types.Plo
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='misc-types.cpp' object='libverbiste_0_1_la-misc-types.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(LIBTOOL)  --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libverbiste_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libverbiste_0_1_la-misc-types.lo `test -f 'misc-types.cpp' || echo '$(srcdir)/'`misc-types.cpp
+
+libverbiste_0_1_la-c-api.lo: c-api.cpp
+@am__fastdepCXX_TRUE@  $(LIBTOOL)  --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libverbiste_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libverbiste_0_1_la-c-api.lo -MD -MP -MF $(DEPDIR)/libverbiste_0_1_la-c-api.Tpo -c -o libverbiste_0_1_la-c-api.lo `test -f 'c-api.cpp' || echo '$(srcdir)/'`c-api.cpp
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/libverbiste_0_1_la-c-api.Tpo $(DEPDIR)/libverbiste_0_1_la-c-api.Plo
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='c-api.cpp' object='libverbiste_0_1_la-c-api.lo' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(LIBTOOL)  --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libverbiste_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libverbiste_0_1_la-c-api.lo `test -f 'c-api.cpp' || echo '$(srcdir)/'`c-api.cpp
+
+checkxml-checkxml.o: checkxml.cpp
+@am__fastdepCXX_TRUE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(checkxml_CXXFLAGS) $(CXXFLAGS) -MT checkxml-checkxml.o -MD -MP -MF $(DEPDIR)/checkxml-checkxml.Tpo -c -o checkxml-checkxml.o `test -f 'checkxml.cpp' || echo '$(srcdir)/'`checkxml.cpp
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/checkxml-checkxml.Tpo $(DEPDIR)/checkxml-checkxml.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='checkxml.cpp' object='checkxml-checkxml.o' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(checkxml_CXXFLAGS) $(CXXFLAGS) -c -o checkxml-checkxml.o `test -f 'checkxml.cpp' || echo '$(srcdir)/'`checkxml.cpp
+
+checkxml-checkxml.obj: checkxml.cpp
+@am__fastdepCXX_TRUE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(checkxml_CXXFLAGS) $(CXXFLAGS) -MT checkxml-checkxml.obj -MD -MP -MF $(DEPDIR)/checkxml-checkxml.Tpo -c -o checkxml-checkxml.obj `if test -f 'checkxml.cpp'; then $(CYGPATH_W) 'checkxml.cpp'; else $(CYGPATH_W) '$(srcdir)/checkxml.cpp'; fi`
+@am__fastdepCXX_TRUE@  $(am__mv) $(DEPDIR)/checkxml-checkxml.Tpo $(DEPDIR)/checkxml-checkxml.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     source='checkxml.cpp' object='checkxml-checkxml.obj' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(checkxml_CXXFLAGS) $(CXXFLAGS) -c -o checkxml-checkxml.obj `if test -f 'checkxml.cpp'; then $(CYGPATH_W) 'checkxml.cpp'; else $(CYGPATH_W) '$(srcdir)/checkxml.cpp'; fi`
+
+mostlyclean-libtool:
+       -rm -f *.lo
+
+clean-libtool:
+       -rm -rf .libs _libs
+install-pkgincludeHEADERS: $(pkginclude_HEADERS)
+       @$(NORMAL_INSTALL)
+       test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)"
+       @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
+       for p in $$list; do \
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+         echo "$$d$$p"; \
+       done | $(am__base_list) | \
+       while read files; do \
+         echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \
+         $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \
+       done
+
+uninstall-pkgincludeHEADERS:
+       @$(NORMAL_UNINSTALL)
+       @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
+       files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
+       test -n "$$files" || exit 0; \
+       echo " ( cd '$(DESTDIR)$(pkgincludedir)' && rm -f" $$files ")"; \
+       cd "$(DESTDIR)$(pkgincludedir)" && rm -f $$files
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+       unique=`for i in $$list; do \
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+         done | \
+         $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+             END { if (nonempty) { for (i in files) print i; }; }'`; \
+       mkid -fID $$unique
+tags: TAGS
+
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+               $(TAGS_FILES) $(LISP)
+       set x; \
+       here=`pwd`; \
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+       unique=`for i in $$list; do \
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+         done | \
+         $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+             END { if (nonempty) { for (i in files) print i; }; }'`; \
+       shift; \
+       if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+         test -n "$$unique" || unique=$$empty_fix; \
+         if test $$# -gt 0; then \
+           $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+             "$$@" $$unique; \
+         else \
+           $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+             $$unique; \
+         fi; \
+       fi
+ctags: CTAGS
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+               $(TAGS_FILES) $(LISP)
+       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+       unique=`for i in $$list; do \
+           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+         done | \
+         $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+             END { if (nonempty) { for (i in files) print i; }; }'`; \
+       test -z "$(CTAGS_ARGS)$$unique" \
+         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+            $$unique
+
+GTAGS:
+       here=`$(am__cd) $(top_builddir) && pwd` \
+         && $(am__cd) $(top_srcdir) \
+         && gtags -i $(GTAGS_ARGS) "$$here"
+
+distclean-tags:
+       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+
+check-TESTS: $(TESTS)
+       @failed=0; all=0; xfail=0; xpass=0; skip=0; \
+       srcdir=$(srcdir); export srcdir; \
+       list=' $(TESTS) '; \
+       $(am__tty_colors); \
+       if test -n "$$list"; then \
+         for tst in $$list; do \
+           if test -f ./$$tst; then dir=./; \
+           elif test -f $$tst; then dir=; \
+           else dir="$(srcdir)/"; fi; \
+           if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *[\ \     ]$$tst[\ \      ]*) \
+               xpass=`expr $$xpass + 1`; \
+               failed=`expr $$failed + 1`; \
+               col=$$red; res=XPASS; \
+             ;; \
+             *) \
+               col=$$grn; res=PASS; \
+             ;; \
+             esac; \
+           elif test $$? -ne 77; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *[\ \     ]$$tst[\ \      ]*) \
+               xfail=`expr $$xfail + 1`; \
+               col=$$lgn; res=XFAIL; \
+             ;; \
+             *) \
+               failed=`expr $$failed + 1`; \
+               col=$$red; res=FAIL; \
+             ;; \
+             esac; \
+           else \
+             skip=`expr $$skip + 1`; \
+             col=$$blu; res=SKIP; \
+           fi; \
+           echo "$${col}$$res$${std}: $$tst"; \
+         done; \
+         if test "$$all" -eq 1; then \
+           tests="test"; \
+           All=""; \
+         else \
+           tests="tests"; \
+           All="All "; \
+         fi; \
+         if test "$$failed" -eq 0; then \
+           if test "$$xfail" -eq 0; then \
+             banner="$$All$$all $$tests passed"; \
+           else \
+             if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
+             banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
+           fi; \
+         else \
+           if test "$$xpass" -eq 0; then \
+             banner="$$failed of $$all $$tests failed"; \
+           else \
+             if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
+             banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
+           fi; \
+         fi; \
+         dashes="$$banner"; \
+         skipped=""; \
+         if test "$$skip" -ne 0; then \
+           if test "$$skip" -eq 1; then \
+             skipped="($$skip test was not run)"; \
+           else \
+             skipped="($$skip tests were not run)"; \
+           fi; \
+           test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
+             dashes="$$skipped"; \
+         fi; \
+         report=""; \
+         if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
+           report="Please report to $(PACKAGE_BUGREPORT)"; \
+           test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
+             dashes="$$report"; \
+         fi; \
+         dashes=`echo "$$dashes" | sed s/./=/g`; \
+         if test "$$failed" -eq 0; then \
+           echo "$$grn$$dashes"; \
+         else \
+           echo "$$red$$dashes"; \
+         fi; \
+         echo "$$banner"; \
+         test -z "$$skipped" || echo "$$skipped"; \
+         test -z "$$report" || echo "$$report"; \
+         echo "$$dashes$$std"; \
+         test "$$failed" -eq 0; \
+       else :; fi
+
+distdir: $(DISTFILES)
+       @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+       list='$(DISTFILES)'; \
+         dist_files=`for file in $$list; do echo $$file; done | \
+         sed -e "s|^$$srcdirstrip/||;t" \
+             -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+       case $$dist_files in \
+         */*) $(MKDIR_P) `echo "$$dist_files" | \
+                          sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+                          sort -u` ;; \
+       esac; \
+       for file in $$dist_files; do \
+         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+         if test -d $$d/$$file; then \
+           dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+           if test -d "$(distdir)/$$file"; then \
+             find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+           fi; \
+           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+             cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+             find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+           fi; \
+           cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+         else \
+           test -f "$(distdir)/$$file" \
+           || cp -p $$d/$$file "$(distdir)/$$file" \
+           || exit 1; \
+         fi; \
+       done
+check-am: all-am
+       $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
+       $(MAKE) $(AM_MAKEFLAGS) check-TESTS
+check: check-am
+all-am: Makefile $(LTLIBRARIES) $(HEADERS)
+installdirs:
+       for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"; do \
+         test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+       done
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+       $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+         `test -z '$(STRIP)' || \
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+       -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+
+maintainer-clean-generic:
+       @echo "This command is intended for maintainers to use"
+       @echo "it deletes files that may require special tools to rebuild."
+       -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
+clean: clean-am
+
+clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
+       clean-libtool mostlyclean-am
+
+distclean: distclean-am
+       -rm -rf ./$(DEPDIR)
+       -rm -f Makefile
+distclean-am: clean-am distclean-compile distclean-generic \
+       distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+html-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-pkgincludeHEADERS
+
+install-dvi: install-dvi-am
+
+install-dvi-am:
+
+install-exec-am: install-libLTLIBRARIES
+
+install-html: install-html-am
+
+install-html-am:
+
+install-info: install-info-am
+
+install-info-am:
+
+install-man:
+
+install-pdf: install-pdf-am
+
+install-pdf-am:
+
+install-ps: install-ps-am
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+       -rm -rf ./$(DEPDIR)
+       -rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
+       mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS
+
+.MAKE: check-am install-am install-strip
+
+.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
+       clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
+       clean-libtool ctags distclean distclean-compile \
+       distclean-generic distclean-libtool distclean-tags distdir dvi \
+       dvi-am html html-am info info-am install install-am \
+       install-data install-data-am install-dvi install-dvi-am \
+       install-exec install-exec-am install-html install-html-am \
+       install-info install-info-am install-libLTLIBRARIES \
+       install-man install-pdf install-pdf-am \
+       install-pkgincludeHEADERS install-ps install-ps-am \
+       install-strip installcheck installcheck-am installdirs \
+       maintainer-clean maintainer-clean-generic mostlyclean \
+       mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
+       pdf pdf-am ps ps-am tags uninstall uninstall-am \
+       uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS
+
+
+doc:
+       doxygen $(PACKAGE).dox
+       @echo "HTML documentation should now be in 'html' subdirectory."
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/verbiste/Trie.cpp b/verbiste/Trie.cpp
new file mode 100644 (file)
index 0000000..be4735b
--- /dev/null
@@ -0,0 +1,301 @@
+/*  $Id: Trie.cpp,v 1.11 2011/01/08 19:07:36 sarrazip Exp $
+    Trie.cpp - Tree structure for string storage
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2005 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#include "Trie.h"
+
+#include <assert.h>
+#include <stdlib.h>
+#include <list>
+#include <iostream>
+
+
+namespace verbiste {
+
+
+template <class T>
+Trie<T>::Trie(bool _userDataFromNew)
+  : lambda(),
+    firstRow(new Row()),
+    userDataFromNew(_userDataFromNew)
+{
+}
+
+
+template <class T>
+Trie<T>::~Trie()
+{
+    firstRow->recursiveDelete(userDataFromNew);
+    delete firstRow;
+}
+
+
+template <class T>
+Trie<T>::Descriptor::Descriptor(Row *inferior /*= NULL*/)
+  : inferiorRow(inferior),
+    userData(NULL)
+{
+}
+
+
+template <class T>
+Trie<T>::Descriptor::~Descriptor()
+{
+}
+
+
+template <class T>
+void
+Trie<T>::Descriptor::recursiveDelete(bool deleteUserData)
+{
+    if (deleteUserData)
+    {
+        delete userData;
+        userData = NULL;
+    }
+    if (inferiorRow != NULL)
+    {
+        inferiorRow->recursiveDelete(deleteUserData);
+        delete inferiorRow;
+        inferiorRow = NULL;
+    }
+}
+
+
+template <class T>
+size_t
+Trie<T>::Descriptor::computeMemoryConsumption() const
+{
+    return sizeof(*this) + (inferiorRow != NULL ? inferiorRow->computeMemoryConsumption() : 0);
+}
+
+
+template <class T>
+size_t
+Trie<T>::CharDesc::computeMemoryConsumption() const
+{
+    return (sizeof(*this) - sizeof(desc)) + desc.computeMemoryConsumption();
+}
+
+
+template <class T>
+size_t
+Trie<T>::Row::computeMemoryConsumption() const
+{
+    size_t sum = 0;
+    for (typename std::vector<CharDesc>::const_iterator it = elements.begin(); it != elements.end(); ++it)
+        sum += it->computeMemoryConsumption();
+    return sizeof(*this) + sum;
+}
+
+
+template <class T>
+void
+Trie<T>::Row::recursiveDelete(bool deleteUserData)
+{
+    for (typename std::vector<CharDesc>::iterator it = elements.begin();
+                                        it != elements.end(); it++)
+        it->desc.recursiveDelete(deleteUserData);
+    elements.clear();
+}
+
+
+template <class T>
+typename Trie<T>::Descriptor *
+Trie<T>::Row::find(wchar_t unichar)
+{
+    for (typename std::vector<CharDesc>::iterator it = elements.begin();
+                                        it != elements.end(); it++)
+        if (it->unichar == unichar)
+            return &it->desc;
+
+    return NULL;
+}
+
+
+template <class T>
+typename Trie<T>::Descriptor &
+Trie<T>::Row::operator [] (wchar_t unichar)
+{
+    Descriptor *pd = find(unichar);
+    if (pd != NULL)
+        return *pd;
+
+    elements.push_back(CharDesc(unichar));
+    assert(elements.back().unichar == unichar);
+    return elements.back().desc;
+}
+
+
+///////////////////////////////////////////////////////////////////////////////
+
+
+template <class T>
+T *
+Trie<T>::add(const std::wstring &key, T *userData)
+{
+    if (key.empty())
+    {
+        T *old = lambda;
+        lambda = userData;
+        return old;
+    }
+
+    Descriptor *d = getDesc(firstRow, key, 0, true, false);
+    assert(d != NULL);
+    T *old = d->userData;
+    d->userData = userData;
+    return old;
+}
+
+
+template <class T>
+T *
+Trie<T>::get(const std::wstring &key) const
+{
+    if (lambda != NULL)
+        onFoundPrefixWithUserData(key, 0, lambda);
+
+    if (key.empty())
+        return lambda;
+
+    Descriptor *d = const_cast<Trie<T> *>(this)->getDesc(firstRow, key, 0, false, true);
+    return (d != NULL ? d->userData : NULL);
+}
+
+
+template <class T>
+T *
+Trie<T>::getWithDefault(const std::wstring &key, T *deFault)
+{
+    if (key.empty())
+    {
+        if (lambda == NULL)
+            lambda = deFault;
+        return lambda;
+    }
+
+    Descriptor *d = getDesc(firstRow, key, 0, true, false);
+    assert(d != NULL);
+    if (d->userData == NULL)
+        d->userData = deFault;
+    return d->userData;
+}
+
+
+template <class T>
+T **
+Trie<T>::getUserDataPointer(const std::wstring &key)
+{
+    if (key.empty())
+        return &lambda;
+
+    // Get descriptor associated with 'key' (and create a new entry
+    // if the key is not known).
+    //
+    Descriptor *d = getDesc(firstRow, key, 0, true, false);
+    assert(d != NULL);
+    return &d->userData;
+}
+
+
+template <class T>
+typename Trie<T>::Descriptor *
+Trie<T>::getDesc(Row *row,
+                const std::wstring &key,
+                std::wstring::size_type index,
+                bool create,
+                bool callFoundPrefixCallback)
+{
+    assert(row != NULL);
+    assert(index < key.length());
+
+    wchar_t unichar = key[index];  // the "expected" character
+    assert(unichar != '\0');
+
+    Descriptor *pd = row->find(unichar);
+
+    static bool trieTrace = getenv("TRACE") != NULL;
+    if (trieTrace)
+        std::wcout << "getDesc(row=" << row
+                   << ", key='" << key << "' (len=" << key.length()
+                   << "), index=" << index
+                   << ", create=" << create
+                   << ", call=" << callFoundPrefixCallback
+                   << "): unichar=" << unichar << ", pd=" << pd << "\n";
+
+    if (pd == NULL)  // if expected character not found
+    {
+        if (!create)
+            return NULL;
+
+        Descriptor &newDesc = (*row)[unichar];
+        assert(row->find(unichar) != NULL);
+        assert(row->find(unichar) == &newDesc);
+
+        if (index + 1 == key.length())  // if last char of string
+            return &newDesc;
+
+        // Create new descriptor that points to a new inferior row:
+        newDesc.inferiorRow = new Row();
+        assert(row->find(unichar)->inferiorRow == newDesc.inferiorRow);
+
+        return getDesc(newDesc.inferiorRow,
+                        key, index + 1, create, callFoundPrefixCallback);
+    }
+
+    if (trieTrace)
+        std::wcout << "getDesc: userData=" << pd->userData
+                   << ", inferiorRow=" << pd->inferiorRow
+                   << "\n";
+
+    if (callFoundPrefixCallback && pd->userData != NULL)
+        onFoundPrefixWithUserData(key, index + 1, pd->userData);  // virtual call
+
+    if (index + 1 == key.length())  // if reached end of key
+    {
+        if (trieTrace)
+            std::wcout << "getDesc: reached end of key\n";
+        return pd;
+    }
+
+    if (pd->inferiorRow == NULL)  // if pd is a leaf:
+    {
+        if (!create)
+            return NULL;  // not found
+
+        pd->inferiorRow = new Row();
+    }
+
+    return getDesc(pd->inferiorRow,
+                        key, index + 1, create, callFoundPrefixCallback);
+}
+
+
+template <class T>
+size_t
+Trie<T>::computeMemoryConsumption() const
+{
+    return sizeof(*this) + (firstRow != NULL ? firstRow->computeMemoryConsumption() : 0);
+}
+
+
+}  // namespace verbiste
diff --git a/verbiste/Trie.h b/verbiste/Trie.h
new file mode 100644 (file)
index 0000000..e4effce
--- /dev/null
@@ -0,0 +1,233 @@
+/*  $Id: Trie.h,v 1.15 2011/01/08 19:07:36 sarrazip Exp $
+    Trie.h - Tree structure for string storage
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2005 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#ifndef _H_Trie
+#define _H_Trie
+
+#include <string>
+#include <vector>
+
+
+namespace verbiste {
+
+
+/** Tree structure for (wide character) string storage.
+    @param        T     type of the user data attached to the stored strings;
+                        pointers to objects of type T will be stored in the
+                        trie, but no T object will be created, copied,
+                        assigned or destroyed by the trie.
+*/
+template <class T>
+class Trie
+{
+public:
+
+    /** Constructs an empty trie.
+        @param        userDataFromNew   determines if the destructor
+                                        must assume that all "user data"
+                                        pointers come from new and must
+                                        thus be destroyed with delete
+    */
+    Trie(bool userDataFromNew);
+
+
+    /** Destroys the trie and its contents.
+    */
+    virtual ~Trie();
+
+
+    /** Adds the given (wide character) key and associates it with
+        the given user data pointer.
+        @returns        the user data previously associated with the key,
+                        or NULL is no user data was associated
+    */
+    T *add(const std::wstring &key, T *userData);
+
+
+    /** Searches the trie with the given (wide character) key.
+        Invokes the virtual function onFoundPrefixWithUserData()
+        for each find.
+        @param  key         wide character string to search for
+        @returns            a pointer to the user data pointer
+                            associated with 'key', or NULL if
+                            nothing was found
+    */
+    T *get(const std::wstring &key) const;
+
+
+    T *getWithDefault(const std::wstring &key, T *deFault = NULL);
+
+
+    /** Obtains the address of the user data associated with 'key'
+        and adds an entry if necessary.
+        @returns        a non-null pointer to the user data pointer
+                        associated with 'key';
+                        if a new entry was created, the T * is null.
+    */
+    T **getUserDataPointer(const std::wstring &key);
+
+
+    /** Callback invoked by the Trie<>::get() method.
+        This callback will be called for each prefix of the searched
+        string for which the trie has some user data.
+        This method does nothing if it is not overridden in a derived class.
+        @param  key         the searched string
+        @param  index       length of the prefix
+        @param  userData    user data that is associated with the prefix
+    */
+    virtual void onFoundPrefixWithUserData(const std::wstring &/*key*/,
+                                        std::wstring::size_type /*index*/,
+                                        const T * /*userData*/) const
+                                                        throw()
+    {
+    }
+
+    /** Computes and returns the number of memory bytes consumed by
+        this object, excluding the size of the user data instances.
+        @returns                        number of bytes
+    */
+    size_t computeMemoryConsumption() const;
+
+private:
+
+    class Row;
+
+    class Descriptor
+    {
+    public:
+        /** Constructs a descriptor that can point to an inferior row.
+            @param        inferior        pointer to the inferior row
+                                            (may be NULL);
+                                        this pointer must have been obtained
+                                        through operator new
+        */
+        Descriptor(Row *inferior = NULL);
+
+        Descriptor(const Descriptor &d) : inferiorRow(d.inferiorRow), userData(d.userData) {}
+        Descriptor &operator = (const Descriptor &d)
+        {
+            if (&d != this) { inferiorRow = d.inferiorRow; userData = d.userData; }
+            return *this;
+        }
+
+        /** Destroys this object and calls operator delete on the inferior row.
+            Does not call operator delete on userData.
+        */
+        ~Descriptor();
+
+        /** Calls recursiveDelete() on *inferiorRow if inferiorRow is not NULL.
+            Then, calls operator delete that row and sets inferiorRow to NULL.
+            @param        deleteUserData        if true, operator delete is called
+                                            on userData (which may be NULL)
+        */
+        void recursiveDelete(bool deleteUserData);
+
+        /** Computes and returns the number of memory bytes consumed by
+            this object, excluding the size of the user data.
+            @returns                        number of bytes
+        */
+        size_t computeMemoryConsumption() const;
+
+        Row *inferiorRow;
+        T *userData;
+    };
+
+    struct CharDesc
+    {
+        wchar_t unichar;  // Unicode character code
+        Descriptor desc;
+
+        CharDesc(wchar_t u) : unichar(u), desc() {}
+
+        /** Computes and returns the number of memory bytes consumed by
+            this object, excluding the size of the Descriptor's user data.
+            @returns                        number of bytes
+        */
+        size_t computeMemoryConsumption() const;
+    };
+
+    class Row
+    {
+    public:
+        Row()
+          : elements()
+        {
+        }
+
+        /** Calls recursiveDelete() on each Descriptor in this row.
+            Then empties this row.
+            @param        deleteUserData        if true, operator delete is called
+                                            on the userData field of the
+                                        Descriptor objects
+        */
+        void recursiveDelete(bool deleteUserData);
+
+
+        /** Finds an element of this row whose (wide) character field is
+            equal to 'unichar'.
+            Returns NULL if no such element exists.
+        */
+        Descriptor *find(wchar_t unichar);
+
+        /** Finds or creates an element of this row whose char. field is 'unichar'.
+            If no such element exists, one is created using the
+            default constructor of the Descriptor class.
+        */
+        Descriptor &operator [] (wchar_t unichar);
+
+        /** Computes and returns the number of memory bytes consumed by
+            this object, excluding the size of the Descriptors' user data.
+            @returns                        number of bytes
+        */
+        size_t computeMemoryConsumption() const;
+
+    private:
+        std::vector<CharDesc> elements;  // average size should be about 1.4
+    };
+
+
+    Descriptor *getDesc(Row *row,
+                        const std::wstring &key,
+                        std::wstring::size_type index,
+                        bool create,
+                        bool callFoundPrefixCallback);
+
+
+    T *lambda;  // user data associated with the empty string key
+    Row *firstRow;  // must be created by operator new
+    bool userDataFromNew;
+
+
+    // Forbidden operations:
+    Trie(const Trie &);
+    Trie &operator = (const Trie &);
+
+};
+
+
+}  // namespace verbiste
+
+
+#include "Trie.cpp"
+
+
+#endif  /* _H_Trie */
diff --git a/verbiste/c-api.cpp b/verbiste/c-api.cpp
new file mode 100644 (file)
index 0000000..2e61a4d
--- /dev/null
@@ -0,0 +1,315 @@
+/*  $Id: c-api.cpp,v 1.14 2011/01/25 02:29:44 sarrazip Exp $
+    FrenchVerbDictionary.cpp - Dictionary of verbs and conjugation templates
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#include <verbiste/FrenchVerbDictionary.h>
+
+#include <verbiste/misc-types.h>
+
+#include <iostream>
+#include <errno.h>
+#include <string.h>
+
+using namespace std;
+using namespace verbiste;
+
+#define malloc @FORBIDDEN@
+#define free @FORBIDDEN@
+
+
+typedef vector<string> VS;
+typedef vector<VS> VVS;
+
+
+const Verbiste_ModeTense verbiste_valid_modes_and_tenses[] =
+{
+    { VERBISTE_INFINITIVE_MODE,   VERBISTE_PRESENT_TENSE },
+
+    { VERBISTE_INDICATIVE_MODE,   VERBISTE_PRESENT_TENSE },
+    { VERBISTE_INDICATIVE_MODE,   VERBISTE_IMPERFECT_TENSE },
+    { VERBISTE_INDICATIVE_MODE,   VERBISTE_FUTURE_TENSE },
+    { VERBISTE_INDICATIVE_MODE,   VERBISTE_PAST_TENSE },
+
+    { VERBISTE_CONDITIONAL_MODE,  VERBISTE_PRESENT_TENSE },
+
+    { VERBISTE_SUBJUNCTIVE_MODE,  VERBISTE_PRESENT_TENSE },
+    { VERBISTE_SUBJUNCTIVE_MODE,  VERBISTE_IMPERFECT_TENSE },
+
+    { VERBISTE_IMPERATIVE_MODE,   VERBISTE_PRESENT_TENSE },
+
+    { VERBISTE_PARTICIPLE_MODE,   VERBISTE_PRESENT_TENSE },
+    { VERBISTE_PARTICIPLE_MODE,   VERBISTE_PAST_TENSE },
+
+    { VERBISTE_GERUND_MODE,       VERBISTE_PRESENT_TENSE },  // Italian only
+
+    { VERBISTE_INVALID_MODE,      VERBISTE_INVALID_TENSE }  // marks the end
+};
+
+
+
+static FrenchVerbDictionary *fvd = NULL;
+static string constructionLogicError;
+
+
+/*  Returns a dynamically allocated copy of the given C string.
+    Example: char *p0 = strnew("foo"); delete [] p0;
+    Example: char *p1 = strnew(""); delete [] p1;
+    Example: char *p2 = strnew(NULL); delete [] p2;
+    @param        c_str         '\0'-terminated string; allowed to be NULL
+    @returns                    a pointer to an array of characters that was
+                                allocated by new[] and which must be destroyed
+                                by the caller with delete[]; if 'c_str' was
+                                NULL, the returned pointer is NULL.
+*/
+inline
+char *
+strnew(const char *c_str)
+{
+    if (c_str == NULL)
+        return NULL;
+    return strcpy(new char[strlen(c_str) + 1], c_str);
+}
+
+
+/*  Returns a dynamically allocated copy of the given string.
+    @param        s                string that contains no '\0' characters
+    @returns                        a pointer as with strnew(const char *)
+*/
+inline
+char *
+strnew(const string &s)
+{
+    return strnew(s.c_str());
+}
+
+
+int
+verbiste_init(const char *conjugation_filename, const char *verbs_filename, const char *lang_code)
+{
+    if (fvd != NULL)
+        return -1;
+    if (lang_code == NULL)
+        lang_code = "";
+
+    try
+    {
+        FrenchVerbDictionary::Language lang = FrenchVerbDictionary::parseLanguageCode(lang_code);
+        fvd = new FrenchVerbDictionary(conjugation_filename, verbs_filename, false, lang);
+    }
+    catch (logic_error &e)
+    {
+        constructionLogicError = e.what();
+        return -2;
+    }
+
+    return 0;
+}
+
+
+const char *
+verbiste_get_init_error()
+{
+    return constructionLogicError.c_str();
+}
+
+
+int
+verbiste_close(void)
+{
+    if (fvd == NULL)
+        return -1;
+
+    delete fvd;
+    fvd = NULL;
+    return 0;
+}
+
+
+void
+verbiste_free_string(char *str)
+{
+    delete [] str;
+}
+
+
+const char *
+verbiste_get_mode_name(Verbiste_Mode mode)
+{
+    return FrenchVerbDictionary::getModeName((Mode) mode);
+}
+
+
+const char *
+verbiste_get_tense_name(Verbiste_Tense tense)
+{
+    return FrenchVerbDictionary::getTenseName((Tense) tense);
+}
+
+
+static
+Verbiste_ModeTensePersonNumber *
+createModeTensePersonNumberArray(const vector<InflectionDesc> &vec)
+{
+    size_t vecSize = vec.size();
+
+    Verbiste_ModeTensePersonNumber *array =
+                        new Verbiste_ModeTensePersonNumber[vecSize + 1];
+    if (array == NULL)
+        return NULL;
+
+    for (size_t i = 0; i < vecSize; i++)
+    {
+        array[i].infinitive_verb = strnew(vec[i].infinitive.c_str());
+        vec[i].mtpn.dump(array[i]);
+    }
+
+    array[vecSize].infinitive_verb = NULL;
+    array[vecSize].mode = VERBISTE_INVALID_MODE;
+    array[vecSize].tense = VERBISTE_INVALID_TENSE;
+    array[vecSize].person = 0;
+    array[vecSize].plural = false;
+
+    return array;
+}
+
+
+Verbiste_ModeTensePersonNumber *
+verbiste_deconjugate(const char *verb)
+{
+    vector<InflectionDesc> vec;
+    fvd->deconjugate(verb, vec);
+    return createModeTensePersonNumberArray(vec);
+}
+
+
+void
+verbiste_free_mtpn_array(Verbiste_ModeTensePersonNumber *array)
+{
+    if (array == NULL)
+        return;
+
+    for (size_t i = 0; array[i].infinitive_verb != NULL; i++)
+        delete [] array[i].infinitive_verb;
+
+    delete [] array;
+}
+
+
+static
+int
+generateTense(VVS &conjug,
+                const char *infinitive,
+                const char *templateName,
+                Verbiste_Mode mode,
+                Verbiste_Tense tense,
+                bool include_pronouns)
+{
+    const TemplateSpec *templ = fvd->getTemplate(templateName);
+    if (templ == NULL)
+        return -2;
+    string radical = FrenchVerbDictionary::getRadical(infinitive, templateName);
+
+    fvd->generateTense(radical, *templ, (Mode) mode, (Tense) tense, conjug,
+                        include_pronouns,
+                        fvd->isVerbStartingWithAspirateH(infinitive),
+                        false);
+    return 0;
+}
+
+
+Verbiste_TemplateArray
+verbiste_get_verb_template_array(const char *infinitive_verb)
+{
+    if (infinitive_verb == NULL)
+        return NULL;
+    const std::set<std::string> &templateSet = fvd->getVerbTemplateSet(infinitive_verb);
+    if (templateSet.empty())
+        return NULL;
+
+    Verbiste_TemplateArray a = new char *[templateSet.size() + 1];
+    size_t i = 0;
+    for (std::set<std::string>::const_iterator it = templateSet.begin();
+                                               it != templateSet.end(); ++it, ++i)
+        a[i] = strnew(it->c_str());
+    a[i] = NULL;
+    return a;
+}
+
+
+static void
+free_string_array(char *array[])
+{
+    if (array == NULL)
+        return;
+    for (size_t i = 0; array[i] != NULL; ++i)
+        delete [] array[i];
+    delete [] array;
+}
+
+
+void
+verbiste_free_verb_template_array(Verbiste_TemplateArray array)
+{
+    free_string_array(array);
+}
+
+
+Verbiste_PersonArray
+verbiste_conjugate(const char *infinitive_verb,
+                   const char *template_name,
+                   const Verbiste_Mode mode,
+                   const Verbiste_Tense tense,
+                   int include_pronouns)
+{
+    VVS tenseConjug;
+    if (::generateTense(tenseConjug, infinitive_verb, template_name, mode, tense,
+                                                include_pronouns != 0) != 0)
+        return NULL;
+
+    size_t numPersons = tenseConjug.size();
+    Verbiste_PersonArray personArray =
+                                new Verbiste_InflectionArray[numPersons + 1];
+
+    for (size_t i = 0; i < numPersons; i++)
+    {
+        const VS &inflections = tenseConjug[i];
+        size_t numInf = inflections.size();
+        Verbiste_InflectionArray infArray = new char *[numInf + 1];
+        for (size_t j = 0; j < numInf; j++)
+            infArray[j] = strnew(inflections[j]);
+        infArray[numInf] = NULL;
+        personArray[i] = infArray;
+    }
+    personArray[numPersons] = NULL;
+    return personArray;
+}
+
+
+void
+verbiste_free_person_array(Verbiste_PersonArray array)
+{
+    if (array == NULL)
+        return;
+
+    for (size_t i = 0; array[i] != NULL; i++)
+        free_string_array(array[i]);
+    delete [] array;
+}
diff --git a/verbiste/c-api.h b/verbiste/c-api.h
new file mode 100644 (file)
index 0000000..bca392a
--- /dev/null
@@ -0,0 +1,256 @@
+/*  $Id: c-api.h,v 1.13 2011/01/25 03:16:39 sarrazip Exp $
+    FrenchVerbDictionary.h - Dictionary of verbs and conjugation templates
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#ifndef _H_c_api
+#define _H_c_api
+
+#include <stddef.h>
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+typedef enum
+{
+    VERBISTE_INVALID_MODE,
+    VERBISTE_INFINITIVE_MODE,
+    VERBISTE_INDICATIVE_MODE,
+    VERBISTE_CONDITIONAL_MODE,
+    VERBISTE_SUBJUNCTIVE_MODE,
+    VERBISTE_IMPERATIVE_MODE,
+    VERBISTE_PARTICIPLE_MODE,
+    VERBISTE_GERUND_MODE,
+
+    // Greek modes:
+    VERBISTE_PRESENT_INDICATIVE,
+    VERBISTE_PRESENT_SUBJUNCTIVE,
+    VERBISTE_PRESENT_IMPERATIVE,
+    VERBISTE_PRESENT_GERUND,
+    VERBISTE_PAST_IMPERFECT_INDICATIVE,
+    VERBISTE_PAST_PERFECT_INDICATIVE,
+    VERBISTE_PAST_PERFECT_SUBJUNCTIVE,
+    VERBISTE_PAST_PERFECT_IMPERATIVE,
+    VERBISTE_PAST_PERFECT_INFINITIVE
+
+/** Valid conjugation modes. */
+} Verbiste_Mode;
+
+typedef enum
+{
+    VERBISTE_INVALID_TENSE,
+    VERBISTE_PRESENT_TENSE,
+    VERBISTE_PAST_TENSE,
+    VERBISTE_IMPERFECT_TENSE,
+    VERBISTE_FUTURE_TENSE,
+    VERBISTE_ACTIVE_TENSE,
+    VERBISTE_PASSIVE_TENSE,
+    VERBISTE_IMPERATIVE_ACTIVE_TENSE,
+    VERBISTE_IMPERATIVE_PASSIVE_TENSE,
+    VERBISTE_PAST_PERFECT
+
+/** Valid conjugation tenses. */
+} Verbiste_Tense;
+
+/** List of conjugation template names (e.g., "aim:er").
+    The last character pointer in an array of this type is NULL.
+*/
+typedef char **Verbiste_TemplateArray;
+
+
+typedef struct
+{
+  char *infinitive_verb;
+  Verbiste_Mode   mode;
+  Verbiste_Tense  tense;
+  int person;  /* 1, 2, 3, or 0 for infinitive and participle modes */
+  int plural;  /* boolean indicating plural number instead of singular */
+  int correct;  /* boolean indicating if termination is correct or an error */
+
+/** Mode descriptor. */
+} Verbiste_ModeTensePersonNumber;
+
+
+/** List of strings, each string being an inflection (e.g., "assis").
+    The last character pointer in an array of this type is NULL.
+*/
+typedef char **Verbiste_InflectionArray;
+
+/** List of list of strings, each sublist being an inflection array.
+    The last Verbiste_InflectionArray pointer in an array of this type is NULL.
+*/
+typedef Verbiste_InflectionArray *Verbiste_PersonArray;
+
+
+typedef struct
+{
+  Verbiste_Mode mode;
+  Verbiste_Tense tense;
+} Verbiste_ModeTense;
+
+
+extern const Verbiste_ModeTense verbiste_valid_modes_and_tenses[];
+
+
+/** Initializes the French verb dictionary object.
+    This function must be called before any other function of this library.
+    If the construction of the object fails (i.e., -2 is returned),
+    call verbist_get_init_error() to obtain a text description of the failure.
+    @param  conjugation_filename        filename of the XML document that
+                                        defines all the conjugation templates
+    @param  verbs_filename              filename of the XML document that
+                                        defines all the known verbs and their
+                                        corresponding template
+    @param  lang_code                   "fr" for French, "it" for Italian
+    @returns                            0 on success,
+                                        -1 if the object has already been
+                                        initialized, or
+                                        -2 if the construction of the
+                                        object fails.
+*/
+int verbiste_init(const char *conjugation_filename,
+                  const char *verbs_filename,
+                  const char *lang_code);
+
+
+/** Gets a text description of the failure that occurred in verbiste_init().
+    This function must only be called if verbiste_init() has returned -2.
+    @returns                        the what() value of the logic_error expression
+                                thrown by the FrenchVerbDictionary constructor.
+*/
+const char *verbiste_get_init_error();
+
+
+/** Frees the resources associated with the French verb dictionary object.
+    This function should be called when this library's functionalities
+    are not needed anymore.
+    After this function has been called successfully, verbiste_init()
+    can be called again to reinitialize the dictionary object.
+    It must not be called if verbiste_init() failed.
+    @returns                        0 on success, or -1 if the object had not
+                                been initialized (or had already been destroyed)
+*/
+int verbiste_close(void);
+
+
+/** Frees the memory associated with the given string.
+    The string to deallocate must have been received from a function
+    of this API that specifically requires the deallocation to be
+    done with verbiste_free_string().
+    @param        str           string to deallocate
+*/
+void verbiste_free_string(char *str);
+
+
+/** Returns the ASCII English name of the given mode.
+    @param        mode          mode whose name is requested
+    @returns                    pointer to an internal string that gives the
+                                requested name
+*/
+const char *verbiste_get_mode_name(Verbiste_Mode mode);
+
+
+/** Returns the ASCII English name of the given tense.
+    @param        tense         tense whose name is requested
+    @returns                    pointer to an internal string that gives the
+                                requested name
+*/
+const char *verbiste_get_tense_name(Verbiste_Tense tense);
+
+
+/** Analyses a conjugated verb and describes how it is conjugated.
+    @param        verb          Latin-1 string containing the verb
+                                to deconjugate
+    @returns                    a dynamically allocated array
+                                which must be freed by a call to
+                                verbiste_free_mtpn_array();
+                                the strings in this array are in Latin-1
+*/
+Verbiste_ModeTensePersonNumber *verbiste_deconjugate(const char *verb);
+
+
+/** Frees the memory associated by the given array.
+    @param        array         array to be freed;
+                                must have been allocated by a function such as
+                                verbiste_deconjugate();
+                                nothing is done if 'array' is null
+*/
+void verbiste_free_mtpn_array(Verbiste_ModeTensePersonNumber *array);
+
+
+/** Returns the list of conjugation templates that apply to the given infinitive.
+    @param  infinitive_verb     Latin-1 string containing the infinitive
+    @returns                    an array of strings, the last element begin
+                                a null pointer; a NULL pointer is returned if
+                                the infinitive is unknown; this array must be
+                                passed to verbiste_free_verb_template_array()
+                                to free the memory
+*/
+Verbiste_TemplateArray verbiste_get_verb_template_array(const char *infinitive_verb);
+
+
+/** Frees the memory allocated by verbiste_get_verb_template_array().
+    @param  array               an array returned by verbiste_get_verb_template_array();
+                                can be NULL: this function does nothing in such a case
+*/
+void verbiste_free_verb_template_array(Verbiste_TemplateArray array);
+
+
+/** Conjugates a verb in a certain mode and tense.
+    @param  infinitiveVerb      Latin-1 infinitive form of the verb
+                                to be conjugated
+    @param  template_name       name of the conjugation template to use
+                                (e.g., "aim:er")
+    @param  mode                selected mode
+    @param  tense               selected tense
+    @param  include_pronouns    if non-zero, put pronouns before
+                                conjugated verbs in the modes where
+                                pronouns are used
+    @returns                    a dynamically allocated array
+                                which must be freed by a call to
+                                verbiste_free_person_array();
+                                the strings in this array
+                                are in Latin-1;
+                                returns NULL if an error occurs
+*/
+Verbiste_PersonArray verbiste_conjugate(const char *infinitive_verb,
+                                        const char *template_name,
+                                        const Verbiste_Mode mode,
+                                        const Verbiste_Tense tense,
+                                        int include_pronouns);
+
+
+/** Frees the memory associated by the given person array.
+    @param        array         array to be freed;
+                                must have been allocated by a function such as
+                                verbiste_conjugate();
+                                nothing is done if 'array' is null
+*/
+void verbiste_free_person_array(Verbiste_PersonArray array);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif  /* _H_c_api */
diff --git a/verbiste/checkxml.cpp b/verbiste/checkxml.cpp
new file mode 100644 (file)
index 0000000..76c9c09
--- /dev/null
@@ -0,0 +1,95 @@
+/*  $Id: checkxml.cpp,v 1.3 2010/04/24 22:54:57 sarrazip Exp $
+    checkxml.cpp - Checks on the integrity of the XML files
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2006 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#ifndef VERBSFRXML
+#error VERBSFRXML expected to be a macro designating the verbs-fr.xml file
+#endif
+
+#include <iostream>
+#include <set>
+#include <stdlib.h>
+
+#include <libxml/xmlmemory.h>
+#include <libxml/parser.h>
+
+using namespace std;
+
+
+static const string testName = "checkxml";
+
+int main()
+{
+    xmlDocPtr doc = xmlParseFile(VERBSFRXML);
+    if (doc == NULL)
+    {
+        cout << testName << ": could not open " << VERBSFRXML << endl;
+        return EXIT_FAILURE;
+    }
+
+    xmlNodePtr root = xmlDocGetRootElement(doc);
+    if (root == NULL)
+    {
+        cout << testName << ": could not get XML root element" << endl;
+        return EXIT_FAILURE;
+    }
+    if (xmlStrcmp(root->name, reinterpret_cast<const xmlChar *>("verbs-fr")) != 0)
+    {
+        cout << testName << ": root element is not <verbs-fr>" << endl;
+        return EXIT_FAILURE;
+    }
+
+    size_t numErrors = 0;
+    size_t vCounter = 0;
+    set<string> infinitiveSet;
+    for (xmlNodePtr v = root->xmlChildrenNode; v != NULL; v = v->next)
+    {
+        //cout << "v->name=\"" << v->name << "\"\n";
+        if (xmlStrcmp(v->name, reinterpret_cast<const xmlChar *>("text")) == 0
+                || xmlStrcmp(v->name, reinterpret_cast<const xmlChar *>("comment")) == 0)
+            continue;
+
+        ++vCounter;
+        xmlNodePtr i = v->xmlChildrenNode;
+        if (i == NULL || i->xmlChildrenNode == NULL)
+        {
+            cout << testName << ": missing <i> node at <v> #" << vCounter << endl;
+            ++numErrors;
+            continue;
+        }
+
+        string inf = reinterpret_cast<char *>(
+                            xmlNodeListGetString(doc, i->xmlChildrenNode, 1));
+        if (infinitiveSet.find(inf) != infinitiveSet.end())
+        {
+            cout << testName << ": infinitive \"" << inf
+                    << "\" found more than once at <v> #"
+                    << vCounter << endl;
+            ++numErrors;
+            continue;
+        }
+
+        infinitiveSet.insert(inf);
+    }
+
+    cout << numErrors << " error(s) found.\n";
+    return numErrors == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
+}
diff --git a/verbiste/misc-types.cpp b/verbiste/misc-types.cpp
new file mode 100644 (file)
index 0000000..1033492
--- /dev/null
@@ -0,0 +1,114 @@
+/*  $Id: misc-types.cpp,v 1.10 2010/07/04 05:49:51 sarrazip Exp $
+    misc-types.cpp - Miscellaneous types used by the dictionary class.
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#include <verbiste/misc-types.h>
+#include <verbiste/FrenchVerbDictionary.h>
+
+using namespace std;
+using namespace verbiste;
+
+
+void
+ModeTensePersonNumber::set(const char *modeName,
+                                const char *tenseName,
+                                int personNum,
+                                bool isCorrect,
+                                bool isItalian)
+{
+    correct = isCorrect;
+    mode = FrenchVerbDictionary::convertModeName(modeName);
+    tense = FrenchVerbDictionary::convertTenseName(tenseName);
+
+    if (mode == IMPERATIVE_MODE)
+    {
+        if (isItalian)
+        {
+            switch (personNum)
+            {
+            case 1: person = 2; plural = false; break;
+            case 2: person = 3; plural = false; break;
+            case 3: person = 1; plural = true; break;
+            case 4: person = 2; plural = true; break;
+            case 5: person = 3; plural = true; break;
+            default: assert(false); person = 0; plural = false;
+            }
+        }
+        else
+        {
+            if (personNum == 1)
+            {
+                person = 2;
+                plural = false;
+            }
+            else if (personNum == 2)
+            {
+                person = 1;
+                plural = true;
+            }
+            else if (personNum == 3)
+            {
+                person = 2;
+                plural = true;
+            }
+            else
+            {
+                person = 0;
+                plural = false;
+            }
+        }
+    }
+    else if (mode == INFINITIVE_MODE
+                || mode == INVALID_MODE
+                || personNum < 1 || personNum > 6)
+    {
+        person = 0;
+        plural = false;
+    }
+    else if (mode == PARTICIPLE_MODE)
+    {
+        assert(personNum >= 1 && personNum <= 4);
+        person = static_cast<unsigned char>(personNum <= 2 ? 4 : 5);
+                // convention: 4=masculine, 5=feminine
+        plural = (personNum == 2 || personNum == 4);
+    }
+    else if (mode == GERUND_MODE)
+    {
+        person = 0;
+        plural = false;
+    }
+    else
+    {
+        person = static_cast<unsigned char>((personNum - 1) % 3 + 1);
+        plural = (personNum > 3);
+    }
+}
+
+
+void
+ModeTensePersonNumber::dump(Verbiste_ModeTensePersonNumber &destination) const
+{
+    destination.mode = (Verbiste_Mode) mode;
+    destination.tense = (Verbiste_Tense) tense;
+    destination.person = (int) person;
+    destination.plural = (int) plural;
+    destination.correct = (int) correct;
+}
diff --git a/verbiste/misc-types.h b/verbiste/misc-types.h
new file mode 100644 (file)
index 0000000..52b8e20
--- /dev/null
@@ -0,0 +1,285 @@
+/*  $Id: misc-types.h,v 1.12 2011/01/26 02:03:28 sarrazip Exp $
+    misc-types.h - Miscellaneous types used by the dictionary class.
+
+    verbiste - French conjugation system
+    Copyright (C) 2003-2010 Pierre Sarrazin <http://sarrazip.com/>
+
+    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., 59 Temple Place - Suite 330, Boston, MA
+    02111-1307, USA.
+*/
+
+#ifndef _H_misc_types
+#define _H_misc_types
+
+#include <verbiste/c-api.h>
+
+#include <assert.h>
+#include <vector>
+#include <string>
+#include <map>
+#include <set>
+
+
+/**
+    Valid modes.
+*/
+enum Mode
+{
+    INVALID_MODE = VERBISTE_INVALID_MODE,
+    INFINITIVE_MODE = VERBISTE_INFINITIVE_MODE,
+    INDICATIVE_MODE = VERBISTE_INDICATIVE_MODE,
+    CONDITIONAL_MODE = VERBISTE_CONDITIONAL_MODE,
+    SUBJUNCTIVE_MODE = VERBISTE_SUBJUNCTIVE_MODE,
+    IMPERATIVE_MODE = VERBISTE_IMPERATIVE_MODE,
+    PARTICIPLE_MODE = VERBISTE_PARTICIPLE_MODE,
+    GERUND_MODE = VERBISTE_GERUND_MODE,
+
+    // Greek modes:
+    PRESENT_INDICATIVE = VERBISTE_PRESENT_INDICATIVE,
+    PRESENT_SUBJUNCTIVE = VERBISTE_PRESENT_SUBJUNCTIVE,
+    PRESENT_IMPERATIVE = VERBISTE_PRESENT_IMPERATIVE,
+    PRESENT_GERUND = VERBISTE_PRESENT_GERUND,
+    PAST_IMPERFECT_INDICATIVE = VERBISTE_PAST_IMPERFECT_INDICATIVE,
+    PAST_PERFECT_INDICATIVE = VERBISTE_PAST_PERFECT_INDICATIVE,
+    PAST_PERFECT_SUBJUNCTIVE = VERBISTE_PAST_PERFECT_SUBJUNCTIVE,
+    PAST_PERFECT_IMPERATIVE = VERBISTE_PAST_PERFECT_IMPERATIVE,
+    PAST_PERFECT_INFINITIVE = VERBISTE_PAST_PERFECT_INFINITIVE
+};
+
+
+/**
+    Valid tenses.
+*/
+enum Tense
+{
+    INVALID_TENSE = VERBISTE_INVALID_TENSE,
+    PRESENT_TENSE = VERBISTE_PRESENT_TENSE,
+    PAST_TENSE = VERBISTE_PAST_TENSE,
+    IMPERFECT_TENSE = VERBISTE_IMPERFECT_TENSE,
+    FUTURE_TENSE = VERBISTE_FUTURE_TENSE,
+
+    // Greek tenses:
+    ACTIVE_TENSE = VERBISTE_ACTIVE_TENSE,
+    PASSIVE_TENSE = VERBISTE_PASSIVE_TENSE,
+    IMPERATIVE_ACTIVE_TENSE = VERBISTE_IMPERATIVE_ACTIVE_TENSE,
+    IMPERATIVE_PASSIVE_TENSE = VERBISTE_IMPERATIVE_PASSIVE_TENSE,
+    PAST_PERFECT = VERBISTE_PAST_PERFECT
+};
+
+
+/**
+    Description of a verb inflection.
+    Gives the mode, tense and person of a conjugated verb.
+    The person is 1, 2 or 3 for je/nous, tu/vous, il/ils, except in
+    infinitive and participle mode, where it is always 0
+    since it does not apply.
+*/
+class ModeTensePersonNumber
+{
+public:
+
+    /** Mode (infinitive, indicative, etc). */
+    Mode mode;
+
+    /** Tense (present, past, etc). */
+    Tense tense;
+
+    /** Person (1, 2 or 3, or 0 in infinitive mode).
+        In participle mode, 1..4 means masc sing, masc plur,
+        fem sing, fem plur.
+    */
+    unsigned char person;
+
+    /** Number (true for plural, false for singular). */
+    bool plural;
+
+    /** Indicates if this termination is correct or an error. */
+    bool correct;
+
+
+    ModeTensePersonNumber(Mode m = INVALID_MODE,
+                    Tense t = INVALID_TENSE,
+                    unsigned char pers = 0,
+                    bool plur = false,
+                    bool isCorrect = true)
+      : mode(m), tense(t), person(pers), plural(plur), correct(isCorrect)
+    {
+        assert(mode <= PARTICIPLE_MODE);
+        assert(tense <= FUTURE_TENSE);
+        assert(person <= 3);
+    }
+
+
+    /** Constructs an object from English mode and tense names.
+        Calls the set() method.
+        @param    modeName      mode name known to method
+                                FrenchVerbDictionary::convertModeName()
+        @param    tenseName     tense name known to method
+                                FrenchVerbDictionary::convertTenseName()
+        @param    personNum     person "counter" (1--6, except for imperative
+                                mode, where it must be 1--3; ignored for
+                                infinitive and participle modes)
+        @param    isCorrect     indicates if this termination is correct
+                                or an error
+    */
+    ModeTensePersonNumber(const char *modeName,
+                    const char *tenseName,
+                    int personNum,
+                    bool isCorrect,
+                    bool isItalian)
+      : mode(INVALID_MODE), tense(INVALID_TENSE), person(0), plural(false), correct(false)
+    {
+        set(modeName, tenseName, personNum, isCorrect, isItalian);
+    }
+
+
+    /** Initializes an object from English mode and tense names.
+        Call the set() method.
+        @param    modeName      mode name known to method
+                                FrenchVerbDictionary::convertModeName()
+        @param    tenseName     tense name known to method
+                                FrenchVerbDictionary::convertTenseName()
+        @param    personNum     person "counter" (1--6, except for imperative
+                                mode, where it must be 1--3; ignored for
+                                infinitive mode); for participle mode, must be
+                                1..4 (masc sing, masc plur, fem sing, fem plur)
+        @param    isCorrect     indicates if this termination is correct
+                                or an error
+        @param    isItalian     true for Italian, false for French
+    */
+    void set(const char *modeName, const char *tenseName, int personNum, bool isCorrect, bool isItalian);
+
+
+    /**
+        Dumps the fields of this object into those of the destination object.
+        @param    destination   object whose fields (mode, tense, person,
+                                number) are assigned with values taken
+                                from this object
+    */
+    void dump(Verbiste_ModeTensePersonNumber &destination) const;
+};
+
+
+struct InflectionSpec
+{
+    std::string inflection;
+    bool isCorrect;
+
+    InflectionSpec(const std::string &inf, bool c) : inflection(inf), isCorrect(c) {}
+};
+
+
+/** List of inflections. */
+typedef std::vector<InflectionSpec> PersonSpec;
+
+
+/** List of persons (1, 3 or 6 persons depending on the mode and tense). */
+typedef std::vector<PersonSpec> TenseSpec;
+
+
+/**
+    Mode specification.
+    Contains tense specifications indexed by Tense values.
+*/
+typedef std::map<Tense, TenseSpec> ModeSpec;
+
+
+/**
+    Conjugation template specification.
+    Contains mode specifications indexed by Mode values.
+*/
+typedef std::map<Mode, ModeSpec> TemplateSpec;
+
+
+/**
+    Conjugation system for the known verbs of a language.
+    Contains conjugation templates indexed by template names.
+*/
+typedef std::map<std::string, TemplateSpec> ConjugationSystem;
+
+
+/**
+    Table of template names indexed by verb infinitive.
+    If the verb "abaisser" follows the "aim:er" conjugation template,
+    then a VerbTable would contain an entry where the key is "abaisser"
+    and the value is a set containing "aim:er".
+    An infinitive can be associated with more than one template.
+*/
+typedef std::map< std::string, std::set<std::string> > VerbTable;
+
+
+/**
+    Table that describes the mode, tense and person of a number of inflections.
+    For example, in the "aim:er" conjugation template, the inflection
+    (termination) "e" is associated with:
+
+    - the 1st person singular of the indicative present;
+
+    - the 3rd person singular of the indicative present;
+
+    - the 1st person singular of the subjunctive present;
+
+    - the 3rd person singular of the subjunctive present;
+
+    - the 2nd person singular of the imperative present.
+
+    Thus, in this table, the key "e" would be be associated with a vector
+    of five objects representing these five mode-tense-person combinations.
+*/
+typedef std::map<std::string, std::vector<ModeTensePersonNumber> >
+                                            TemplateInflectionTable;
+
+
+/**
+    Table of template inflection tables, indexed by template names.
+    For example, a key "aim:er" would be associated with a template
+    inflection table that gives all inflections (terminations) that are
+    accepted by the "aim:er" conjugation template (e.g., "e", "es",
+    "ons", etc).
+*/
+typedef std::map<std::string, TemplateInflectionTable> InflectionTable;
+
+
+/**
+    Description of a conjugated verb's inflection.
+*/
+class InflectionDesc
+{
+public:
+
+    /** Infinitive form of the conjugated verb (UTF-8). */
+    std::string infinitive;
+
+    /** Conjugated template used by the verb (e.g. "aim:er") (UTF-8). */
+    std::string templateName;
+
+    /** Mode, tense, person and number of the inflection. */
+    ModeTensePersonNumber mtpn;
+
+    /**
+        Constructs an inflection description from optional arguments.
+    */
+    InflectionDesc(const std::string &inf = "",
+                const std::string &tname = "",
+                ModeTensePersonNumber m = ModeTensePersonNumber())
+      : infinitive(inf),
+        templateName(tname),
+        mtpn(m)
+    {
+    }
+};
+
+
+#endif  /* _H_misc_types */
diff --git a/verbiste/verbiste.dox b/verbiste/verbiste.dox
new file mode 100644 (file)
index 0000000..1545301
--- /dev/null
@@ -0,0 +1,921 @@
+# Doxyfile 1.2.14
+
+# This file describes the settings to be used by the documentation system
+# doxygen (www.doxygen.org) for a project
+#
+# All text after a hash (#) is considered a comment and will be ignored
+# The format is:
+#       TAG = value [value, ...]
+# For lists items can also be appended using:
+#       TAG += value [value, ...]
+# Values that contain spaces should be placed between quotes (" ")
+
+#---------------------------------------------------------------------------
+# General configuration options
+#---------------------------------------------------------------------------
+
+# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
+# by quotes) that should identify the project.
+
+PROJECT_NAME           = Verbiste
+
+# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
+# This could be handy for archiving the generated documentation or 
+# if some version control system is used.
+
+PROJECT_NUMBER         = 0.1
+
+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
+# base path where the generated documentation will be put. 
+# If a relative path is entered, it will be relative to the location 
+# where doxygen was started. If left blank the current directory will be used.
+
+OUTPUT_DIRECTORY       = 
+
+# The OUTPUT_LANGUAGE tag is used to specify the language in which all 
+# documentation generated by doxygen is written. Doxygen will use this 
+# information to generate all constant output in the proper language. 
+# The default language is English, other supported languages are: 
+# Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, 
+# German, Greek, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, 
+# Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish.
+
+OUTPUT_LANGUAGE        = English
+
+# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
+# documentation are documented, even if no documentation was available. 
+# Private class members and static file members will be hidden unless 
+# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
+
+EXTRACT_ALL            = YES
+
+# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
+# will be included in the documentation.
+
+EXTRACT_PRIVATE        = NO
+
+# If the EXTRACT_STATIC tag is set to YES all static members of a file 
+# will be included in the documentation.
+
+EXTRACT_STATIC         = YES
+
+# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
+# defined locally in source files will be included in the documentation. 
+# If set to NO only classes defined in header files are included.
+
+EXTRACT_LOCAL_CLASSES  = YES
+
+# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
+# undocumented members of documented classes, files or namespaces. 
+# If set to NO (the default) these members will be included in the 
+# various overviews, but no documentation section is generated. 
+# This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_MEMBERS     = NO
+
+# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
+# undocumented classes that are normally visible in the class hierarchy. 
+# If set to NO (the default) these class will be included in the various 
+# overviews. This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_CLASSES     = NO
+
+# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 
+# include brief member descriptions after the members that are listed in 
+# the file and class documentation (similar to JavaDoc). 
+# Set to NO to disable this.
+
+BRIEF_MEMBER_DESC      = YES
+
+# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
+# the brief description of a member or function before the detailed description. 
+# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
+# brief descriptions will be completely suppressed.
+
+REPEAT_BRIEF           = YES
+
+# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 
+# Doxygen will generate a detailed section even if there is only a brief 
+# description.
+
+ALWAYS_DETAILED_SEC    = NO
+
+# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited 
+# members of a class in the documentation of that class as if those members were 
+# ordinary class members. Constructors, destructors and assignment operators of 
+# the base classes will not be shown.
+
+INLINE_INHERITED_MEMB  = NO
+
+# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
+# path before files name in the file list and in the header files. If set 
+# to NO the shortest path that makes the file name unique will be used.
+
+FULL_PATH_NAMES        = NO
+
+# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
+# can be used to strip a user defined part of the path. Stripping is 
+# only done if one of the specified strings matches the left-hand part of 
+# the path. It is allowed to use relative paths in the argument list.
+
+STRIP_FROM_PATH        = 
+
+# The INTERNAL_DOCS tag determines if documentation 
+# that is typed after a \internal command is included. If the tag is set 
+# to NO (the default) then the documentation will be excluded. 
+# Set it to YES to include the internal documentation.
+
+INTERNAL_DOCS          = NO
+
+# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
+# doxygen to hide any special comment blocks from generated source code 
+# fragments. Normal C and C++ comments will always remain visible.
+
+STRIP_CODE_COMMENTS    = YES
+
+# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
+# file names in lower case letters. If set to YES upper case letters are also 
+# allowed. This is useful if you have classes or files whose names only differ 
+# in case and if your file system supports case sensitive file names. Windows 
+# users are adviced to set this option to NO.
+
+CASE_SENSE_NAMES       = YES
+
+# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 
+# (but less readable) file names. This can be useful is your file systems 
+# doesn't support long names like on DOS, Mac, or CD-ROM.
+
+SHORT_NAMES            = NO
+
+# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
+# will show members with their full class and namespace scopes in the 
+# documentation. If set to YES the scope will be hidden.
+
+HIDE_SCOPE_NAMES       = NO
+
+# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
+# will generate a verbatim copy of the header file for each class for 
+# which an include is specified. Set to NO to disable this.
+
+VERBATIM_HEADERS       = YES
+
+# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
+# will put list of the files that are included by a file in the documentation 
+# of that file.
+
+SHOW_INCLUDE_FILES     = YES
+
+# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
+# will interpret the first line (until the first dot) of a JavaDoc-style 
+# comment as the brief description. If set to NO, the JavaDoc 
+# comments  will behave just like the Qt-style comments (thus requiring an 
+# explict @brief command for a brief description.
+
+JAVADOC_AUTOBRIEF      = YES
+
+# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
+# member inherits the documentation from any documented member that it 
+# reimplements.
+
+INHERIT_DOCS           = YES
+
+# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
+# is inserted in the documentation for inline members.
+
+INLINE_INFO            = YES
+
+# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
+# will sort the (detailed) documentation of file and class members 
+# alphabetically by member name. If set to NO the members will appear in 
+# declaration order.
+
+SORT_MEMBER_DOCS       = YES
+
+# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 
+# tag is set to YES, then doxygen will reuse the documentation of the first 
+# member in the group (if any) for the other members of the group. By default 
+# all members of a group must be documented explicitly.
+
+DISTRIBUTE_GROUP_DOC   = NO
+
+# The TAB_SIZE tag can be used to set the number of spaces in a tab. 
+# Doxygen uses this value to replace tabs by spaces in code fragments.
+
+TAB_SIZE               = 8
+
+# The GENERATE_TODOLIST tag can be used to enable (YES) or 
+# disable (NO) the todo list. This list is created by putting \todo 
+# commands in the documentation.
+
+GENERATE_TODOLIST      = YES
+
+# The GENERATE_TESTLIST tag can be used to enable (YES) or 
+# disable (NO) the test list. This list is created by putting \test 
+# commands in the documentation.
+
+GENERATE_TESTLIST      = YES
+
+# The GENERATE_BUGLIST tag can be used to enable (YES) or 
+# disable (NO) the bug list. This list is created by putting \bug 
+# commands in the documentation.
+
+GENERATE_BUGLIST       = YES
+
+# This tag can be used to specify a number of aliases that acts 
+# as commands in the documentation. An alias has the form "name=value". 
+# For example adding "sideeffect=\par Side Effects:\n" will allow you to 
+# put the command \sideeffect (or @sideeffect) in the documentation, which 
+# will result in a user defined paragraph with heading "Side Effects:". 
+# You can put \n's in the value part of an alias to insert newlines.
+
+ALIASES                = 
+
+# The ENABLED_SECTIONS tag can be used to enable conditional 
+# documentation sections, marked by \if sectionname ... \endif.
+
+ENABLED_SECTIONS       = 
+
+# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 
+# the initial value of a variable or define consist of for it to appear in 
+# the documentation. If the initializer consists of more lines than specified 
+# here it will be hidden. Use a value of 0 to hide initializers completely. 
+# The appearance of the initializer of individual variables and defines in the 
+# documentation can be controlled using \showinitializer or \hideinitializer 
+# command in the documentation regardless of this setting.
+
+MAX_INITIALIZER_LINES  = 30
+
+# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 
+# only. Doxygen will then generate output that is more tailored for C. 
+# For instance some of the names that are used will be different. The list 
+# of all members will be omitted, etc.
+
+OPTIMIZE_OUTPUT_FOR_C  = NO
+
+# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 
+# at the bottom of the documentation of classes and structs. If set to YES the 
+# list will mention the files that were used to generate the documentation.
+
+SHOW_USED_FILES        = YES
+
+#---------------------------------------------------------------------------
+# configuration options related to warning and progress messages
+#---------------------------------------------------------------------------
+
+# The QUIET tag can be used to turn on/off the messages that are generated 
+# by doxygen. Possible values are YES and NO. If left blank NO is used.
+
+QUIET                  = NO
+
+# The WARNINGS tag can be used to turn on/off the warning messages that are 
+# generated by doxygen. Possible values are YES and NO. If left blank 
+# NO is used.
+
+WARNINGS               = YES
+
+# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
+# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
+# automatically be disabled.
+
+WARN_IF_UNDOCUMENTED   = YES
+
+# The WARN_FORMAT tag determines the format of the warning messages that 
+# doxygen can produce. The string should contain the $file, $line, and $text 
+# tags, which will be replaced by the file and line number from which the 
+# warning originated and the warning text.
+
+WARN_FORMAT            = "$file:$line: $text"
+
+# The WARN_LOGFILE tag can be used to specify a file to which warning 
+# and error messages should be written. If left blank the output is written 
+# to stderr.
+
+WARN_LOGFILE           = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the input files
+#---------------------------------------------------------------------------
+
+# The INPUT tag can be used to specify the files and/or directories that contain 
+# documented source files. You may enter file names like "myfile.cpp" or 
+# directories like "/usr/src/myproject". Separate the files or directories 
+# with spaces.
+
+INPUT                  = 
+
+# If the value of the INPUT tag contains directories, you can use the 
+# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
+# and *.h) to filter out the source-files in the directories. If left 
+# blank the following patterns are tested: 
+# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 
+# *.h++ *.idl *.odl
+
+FILE_PATTERNS          = 
+
+# The RECURSIVE tag can be used to turn specify whether or not subdirectories 
+# should be searched for input files as well. Possible values are YES and NO. 
+# If left blank NO is used.
+
+RECURSIVE              = NO
+
+# The EXCLUDE tag can be used to specify files and/or directories that should 
+# excluded from the INPUT source files. This way you can easily exclude a 
+# subdirectory from a directory tree whose root is specified with the INPUT tag.
+
+EXCLUDE                = 
+
+# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories 
+# that are symbolic links (a Unix filesystem feature) are excluded from the input.
+
+EXCLUDE_SYMLINKS       = NO
+
+# If the value of the INPUT tag contains directories, you can use the 
+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
+# certain files from those directories.
+
+EXCLUDE_PATTERNS       = *.c *.cpp
+
+# The EXAMPLE_PATH tag can be used to specify one or more files or 
+# directories that contain example code fragments that are included (see 
+# the \include command).
+
+EXAMPLE_PATH           = 
+
+# If the value of the EXAMPLE_PATH tag contains directories, you can use the 
+# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
+# and *.h) to filter out the source-files in the directories. If left 
+# blank all files are included.
+
+EXAMPLE_PATTERNS       = 
+
+# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 
+# searched for input files to be used with the \include or \dontinclude 
+# commands irrespective of the value of the RECURSIVE tag. 
+# Possible values are YES and NO. If left blank NO is used.
+
+EXAMPLE_RECURSIVE      = NO
+
+# The IMAGE_PATH tag can be used to specify one or more files or 
+# directories that contain image that are included in the documentation (see 
+# the \image command).
+
+IMAGE_PATH             = 
+
+# The INPUT_FILTER tag can be used to specify a program that doxygen should 
+# invoke to filter for each input file. Doxygen will invoke the filter program 
+# by executing (via popen()) the command <filter> <input-file>, where <filter> 
+# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
+# input file. Doxygen will then use the output that the filter program writes 
+# to standard output.
+
+INPUT_FILTER           = 
+
+# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 
+# INPUT_FILTER) will be used to filter the input files when producing source 
+# files to browse.
+
+FILTER_SOURCE_FILES    = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to source browsing
+#---------------------------------------------------------------------------
+
+# If the SOURCE_BROWSER tag is set to YES then a list of source files will 
+# be generated. Documented entities will be cross-referenced with these sources.
+
+SOURCE_BROWSER         = NO
+
+# Setting the INLINE_SOURCES tag to YES will include the body 
+# of functions and classes directly in the documentation.
+
+INLINE_SOURCES         = NO
+
+# If the REFERENCED_BY_RELATION tag is set to YES (the default) 
+# then for each documented function all documented 
+# functions referencing it will be listed.
+
+REFERENCED_BY_RELATION = YES
+
+# If the REFERENCES_RELATION tag is set to YES (the default) 
+# then for each documented function all documented entities 
+# called/used by that function will be listed.
+
+REFERENCES_RELATION    = YES
+
+#---------------------------------------------------------------------------
+# configuration options related to the alphabetical class index
+#---------------------------------------------------------------------------
+
+# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
+# of all compounds will be generated. Enable this if the project 
+# contains a lot of classes, structs, unions or interfaces.
+
+ALPHABETICAL_INDEX     = NO
+
+# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
+# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
+# in which this list will be split (can be a number in the range [1..20])
+
+COLS_IN_ALPHA_INDEX    = 5
+
+# In case all classes in a project start with a common prefix, all 
+# classes will be put under the same header in the alphabetical index. 
+# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
+# should be ignored while generating the index headers.
+
+IGNORE_PREFIX          = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the HTML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
+# generate HTML output.
+
+GENERATE_HTML          = YES
+
+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `html' will be used as the default path.
+
+HTML_OUTPUT            = html
+
+# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 
+# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 
+# doxygen will generate files with .html extension.
+
+HTML_FILE_EXTENSION    = .html
+
+# The HTML_HEADER tag can be used to specify a personal HTML header for 
+# each generated HTML page. If it is left blank doxygen will generate a 
+# standard header.
+
+HTML_HEADER            = 
+
+# The HTML_FOOTER tag can be used to specify a personal HTML footer for 
+# each generated HTML page. If it is left blank doxygen will generate a 
+# standard footer.
+
+HTML_FOOTER            = 
+
+# The HTML_STYLESHEET tag can be used to specify a user defined cascading 
+# style sheet that is used by each HTML page. It can be used to 
+# fine-tune the look of the HTML output. If the tag is left blank doxygen 
+# will generate a default style sheet
+
+HTML_STYLESHEET        = 
+
+# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 
+# files or namespaces will be aligned in HTML using tables. If set to 
+# NO a bullet list will be used.
+
+HTML_ALIGN_MEMBERS     = YES
+
+# If the GENERATE_HTMLHELP tag is set to YES, additional index files 
+# will be generated that can be used as input for tools like the 
+# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 
+# of the generated HTML documentation.
+
+GENERATE_HTMLHELP      = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 
+# controls if a separate .chi index file is generated (YES) or that 
+# it should be included in the master .chm file (NO).
+
+GENERATE_CHI           = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 
+# controls whether a binary table of contents is generated (YES) or a 
+# normal table of contents (NO) in the .chm file.
+
+BINARY_TOC             = NO
+
+# The TOC_EXPAND flag can be set to YES to add extra items for group members 
+# to the contents of the Html help documentation and to the tree view.
+
+TOC_EXPAND             = NO
+
+# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
+# top of each HTML page. The value NO (the default) enables the index and 
+# the value YES disables it.
+
+DISABLE_INDEX          = NO
+
+# This tag can be used to set the number of enum values (range [1..20]) 
+# that doxygen will group on one line in the generated HTML documentation.
+
+ENUM_VALUES_PER_LINE   = 4
+
+# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
+# generated containing a tree-like index structure (just like the one that 
+# is generated for HTML Help). For this to work a browser that supports 
+# JavaScript and frames is required (for instance Mozilla, Netscape 4.0+, 
+# or Internet explorer 4.0+). Note that for large projects the tree generation 
+# can take a very long time. In such cases it is better to disable this feature. 
+# Windows users are probably better off using the HTML help feature.
+
+GENERATE_TREEVIEW      = NO
+
+# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 
+# used to set the initial width (in pixels) of the frame in which the tree 
+# is shown.
+
+TREEVIEW_WIDTH         = 250
+
+#---------------------------------------------------------------------------
+# configuration options related to the LaTeX output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
+# generate Latex output.
+
+GENERATE_LATEX         = YES
+
+# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `latex' will be used as the default path.
+
+LATEX_OUTPUT           = latex
+
+# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
+# LaTeX documents. This may be useful for small projects and may help to 
+# save some trees in general.
+
+COMPACT_LATEX          = NO
+
+# The PAPER_TYPE tag can be used to set the paper type that is used 
+# by the printer. Possible values are: a4, a4wide, letter, legal and 
+# executive. If left blank a4wide will be used.
+
+PAPER_TYPE             = a4wide
+
+# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
+# packages that should be included in the LaTeX output.
+
+EXTRA_PACKAGES         = 
+
+# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
+# the generated latex document. The header should contain everything until 
+# the first chapter. If it is left blank doxygen will generate a 
+# standard header. Notice: only use this tag if you know what you are doing!
+
+LATEX_HEADER           = 
+
+# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
+# is prepared for conversion to pdf (using ps2pdf). The pdf file will 
+# contain links (just like the HTML output) instead of page references 
+# This makes the output suitable for online browsing using a pdf viewer.
+
+PDF_HYPERLINKS         = NO
+
+# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 
+# plain latex in the generated Makefile. Set this option to YES to get a 
+# higher quality PDF documentation.
+
+USE_PDFLATEX           = NO
+
+# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
+# command to the generated LaTeX files. This will instruct LaTeX to keep 
+# running if errors occur, instead of asking the user for help. 
+# This option is also used when generating formulas in HTML.
+
+LATEX_BATCHMODE        = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the RTF output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
+# The RTF output is optimised for Word 97 and may not look very pretty with 
+# other RTF readers or editors.
+
+GENERATE_RTF           = NO
+
+# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `rtf' will be used as the default path.
+
+RTF_OUTPUT             = rtf
+
+# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
+# RTF documents. This may be useful for small projects and may help to 
+# save some trees in general.
+
+COMPACT_RTF            = NO
+
+# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
+# will contain hyperlink fields. The RTF file will 
+# contain links (just like the HTML output) instead of page references. 
+# This makes the output suitable for online browsing using WORD or other 
+# programs which support those fields. 
+# Note: wordpad (write) and others do not support links.
+
+RTF_HYPERLINKS         = NO
+
+# Load stylesheet definitions from file. Syntax is similar to doxygen's 
+# config file, i.e. a series of assigments. You only have to provide 
+# replacements, missing definitions are set to their default value.
+
+RTF_STYLESHEET_FILE    = 
+
+# Set optional variables used in the generation of an rtf document. 
+# Syntax is similar to doxygen's config file.
+
+RTF_EXTENSIONS_FILE    = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the man page output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
+# generate man pages
+
+GENERATE_MAN           = NO
+
+# The MAN_OUTPUT tag is used to specify where the man pages will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `man' will be used as the default path.
+
+MAN_OUTPUT             = man
+
+# The MAN_EXTENSION tag determines the extension that is added to 
+# the generated man pages (default is the subroutine's section .3)
+
+MAN_EXTENSION          = .3
+
+# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 
+# then it will generate one additional man file for each entity 
+# documented in the real man page(s). These additional files 
+# only source the real man page, but without them the man command 
+# would be unable to find the correct page. The default is NO.
+
+MAN_LINKS              = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the XML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_XML tag is set to YES Doxygen will 
+# generate an XML file that captures the structure of 
+# the code including all documentation. Note that this 
+# feature is still experimental and incomplete at the 
+# moment.
+
+GENERATE_XML           = NO
+
+#---------------------------------------------------------------------------
+# configuration options for the AutoGen Definitions output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 
+# generate an AutoGen Definitions (see autogen.sf.net) file 
+# that captures the structure of the code including all 
+# documentation. Note that this feature is still experimental 
+# and incomplete at the moment.
+
+GENERATE_AUTOGEN_DEF   = NO
+
+#---------------------------------------------------------------------------
+# Configuration options related to the preprocessor   
+#---------------------------------------------------------------------------
+
+# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
+# evaluate all C-preprocessor directives found in the sources and include 
+# files.
+
+ENABLE_PREPROCESSING   = YES
+
+# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
+# names in the source code. If set to NO (the default) only conditional 
+# compilation will be performed. Macro expansion can be done in a controlled 
+# way by setting EXPAND_ONLY_PREDEF to YES.
+
+MACRO_EXPANSION        = NO
+
+# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
+# then the macro expansion is limited to the macros specified with the 
+# PREDEFINED and EXPAND_AS_PREDEFINED tags.
+
+EXPAND_ONLY_PREDEF     = NO
+
+# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
+# in the INCLUDE_PATH (see below) will be search if a #include is found.
+
+SEARCH_INCLUDES        = YES
+
+# The INCLUDE_PATH tag can be used to specify one or more directories that 
+# contain include files that are not input files but should be processed by 
+# the preprocessor.
+
+INCLUDE_PATH           = 
+
+# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
+# patterns (like *.h and *.hpp) to filter out the header-files in the 
+# directories. If left blank, the patterns specified with FILE_PATTERNS will 
+# be used.
+
+INCLUDE_FILE_PATTERNS  = 
+
+# The PREDEFINED tag can be used to specify one or more macro names that 
+# are defined before the preprocessor is started (similar to the -D option of 
+# gcc). The argument of the tag is a list of macros of the form: name 
+# or name=definition (no spaces). If the definition and the = are 
+# omitted =1 is assumed.
+
+PREDEFINED             = 
+
+# If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then 
+# this tag can be used to specify a list of macro names that should be expanded. 
+# The macro definition that is found in the sources will be used. 
+# Use the PREDEFINED tag if you want to use a different macro definition.
+
+EXPAND_AS_DEFINED      = 
+
+# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 
+# doxygen's preprocessor will remove all function-like macros that are alone 
+# on a line and do not end with a semicolon. Such function macros are typically 
+# used for boiler-plate code, and will confuse the parser if not removed.
+
+SKIP_FUNCTION_MACROS   = YES
+
+#---------------------------------------------------------------------------
+# Configuration::addtions related to external references   
+#---------------------------------------------------------------------------
+
+# The TAGFILES tag can be used to specify one or more tagfiles.
+
+TAGFILES               = 
+
+# When a file name is specified after GENERATE_TAGFILE, doxygen will create 
+# a tag file that is based on the input files it reads.
+
+GENERATE_TAGFILE       = 
+
+# If the ALLEXTERNALS tag is set to YES all external classes will be listed 
+# in the class index. If set to NO only the inherited external classes 
+# will be listed.
+
+ALLEXTERNALS           = NO
+
+# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 
+# in the modules index. If set to NO, only the current project's groups will 
+# be listed.
+
+EXTERNAL_GROUPS        = YES
+
+# The PERL_PATH should be the absolute path and name of the perl script 
+# interpreter (i.e. the result of `which perl').
+
+PERL_PATH              = /usr/bin/perl
+
+#---------------------------------------------------------------------------
+# Configuration options related to the dot tool   
+#---------------------------------------------------------------------------
+
+# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 
+# generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or 
+# super classes. Setting the tag to NO turns the diagrams off. Note that this 
+# option is superceded by the HAVE_DOT option below. This is only a fallback. It is 
+# recommended to install and use dot, since it yield more powerful graphs.
+
+CLASS_DIAGRAMS         = YES
+
+# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
+# available from the path. This tool is part of Graphviz, a graph visualization 
+# toolkit from AT&T and Lucent Bell Labs. The other options in this section 
+# have no effect if this option is set to NO (the default)
+
+HAVE_DOT               = NO
+
+# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for each documented class showing the direct and 
+# indirect inheritance relations. Setting this tag to YES will force the 
+# the CLASS_DIAGRAMS tag to NO.
+
+CLASS_GRAPH            = YES
+
+# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for each documented class showing the direct and 
+# indirect implementation dependencies (inheritance, containment, and 
+# class references variables) of the class with other documented classes.
+
+COLLABORATION_GRAPH    = YES
+
+# If set to YES, the inheritance and collaboration graphs will show the 
+# relations between templates and their instances.
+
+TEMPLATE_RELATIONS     = YES
+
+# If set to YES, the inheritance and collaboration graphs will hide 
+# inheritance and usage relations if the target is undocumented 
+# or is not a class.
+
+HIDE_UNDOC_RELATIONS   = YES
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 
+# tags are set to YES then doxygen will generate a graph for each documented 
+# file showing the direct and indirect include dependencies of the file with 
+# other documented files.
+
+INCLUDE_GRAPH          = YES
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 
+# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 
+# documented header file showing the documented files that directly or 
+# indirectly include this file.
+
+INCLUDED_BY_GRAPH      = YES
+
+# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 
+# will graphical hierarchy of all classes instead of a textual one.
+
+GRAPHICAL_HIERARCHY    = YES
+
+# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 
+# generated by dot. Possible values are gif, jpg, and png
+# If left blank gif will be used.
+
+DOT_IMAGE_FORMAT       = gif
+
+# The tag DOT_PATH can be used to specify the path where the dot tool can be 
+# found. If left blank, it is assumed the dot tool can be found on the path.
+
+DOT_PATH               = 
+
+# The DOTFILE_DIRS tag can be used to specify one or more directories that 
+# contain dot files that are included in the documentation (see the 
+# \dotfile command).
+
+DOTFILE_DIRS           = 
+
+# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 
+# (in pixels) of the graphs generated by dot. If a graph becomes larger than 
+# this value, doxygen will try to truncate the graph, so that it fits within 
+# the specified constraint. Beware that most browsers cannot cope with very 
+# large images.
+
+MAX_DOT_GRAPH_WIDTH    = 1024
+
+# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 
+# (in pixels) of the graphs generated by dot. If a graph becomes larger than 
+# this value, doxygen will try to truncate the graph, so that it fits within 
+# the specified constraint. Beware that most browsers cannot cope with very 
+# large images.
+
+MAX_DOT_GRAPH_HEIGHT   = 1024
+
+# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 
+# generate a legend page explaining the meaning of the various boxes and 
+# arrows in the dot generated graphs.
+
+GENERATE_LEGEND        = YES
+
+# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 
+# remove the intermedate dot files that are used to generate 
+# the various graphs.
+
+DOT_CLEANUP            = YES
+
+#---------------------------------------------------------------------------
+# Configuration::addtions related to the search engine   
+#---------------------------------------------------------------------------
+
+# The SEARCHENGINE tag specifies whether or not a search engine should be 
+# used. If set to NO the values of all tags below this one will be ignored.
+
+SEARCHENGINE           = NO
+
+# The CGI_NAME tag should be the name of the CGI script that 
+# starts the search engine (doxysearch) with the correct parameters. 
+# A script with this name will be generated by doxygen.
+
+CGI_NAME               = search.cgi
+
+# The CGI_URL tag should be the absolute URL to the directory where the 
+# cgi binaries are located. See the documentation of your http daemon for 
+# details.
+
+CGI_URL                = 
+
+# The DOC_URL tag should be the absolute URL to the directory where the 
+# documentation is located. If left blank the absolute path to the 
+# documentation, with file:// prepended to it, will be used.
+
+DOC_URL                = 
+
+# The DOC_ABSPATH tag should be the absolute path to the directory where the 
+# documentation is located. If left blank the directory on the local machine 
+# will be used.
+
+DOC_ABSPATH            = 
+
+# The BIN_ABSPATH tag must point to the directory where the doxysearch binary 
+# is installed.
+
+BIN_ABSPATH            = /usr/local/bin/
+
+# The EXT_DOC_PATHS tag can be used to specify one or more paths to 
+# documentation generated for other projects. This allows doxysearch to search 
+# the documentation for these projects as well.
+
+EXT_DOC_PATHS          =