foray-commit Mailing List for FOray (Page 48)
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
(139) |
Apr
(98) |
May
(250) |
Jun
(394) |
Jul
(84) |
Aug
(13) |
Sep
(420) |
Oct
(186) |
Nov
(1) |
Dec
(3) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(108) |
Feb
(202) |
Mar
(291) |
Apr
(247) |
May
(374) |
Jun
(227) |
Jul
(231) |
Aug
(60) |
Sep
(31) |
Oct
(45) |
Nov
(18) |
Dec
|
| 2008 |
Jan
(38) |
Feb
(71) |
Mar
(142) |
Apr
|
May
(59) |
Jun
(6) |
Jul
(10) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
(12) |
Feb
(4) |
Mar
(88) |
Apr
(121) |
May
(17) |
Jun
(30) |
Jul
|
Aug
(5) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2010 |
Jan
(11) |
Feb
(76) |
Mar
(11) |
Apr
|
May
(11) |
Jun
|
Jul
|
Aug
(44) |
Sep
(14) |
Oct
(7) |
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(9) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(168) |
| 2017 |
Jan
(77) |
Feb
(11) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
(1) |
Apr
(6) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
(88) |
Mar
(118) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(141) |
| 2021 |
Jan
(170) |
Feb
(20) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(62) |
Nov
(189) |
Dec
(162) |
| 2022 |
Jan
(201) |
Feb
(118) |
Mar
(8) |
Apr
|
May
(2) |
Jun
(47) |
Jul
(19) |
Aug
(14) |
Sep
(3) |
Oct
|
Nov
(28) |
Dec
(235) |
| 2023 |
Jan
(112) |
Feb
(23) |
Mar
(2) |
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(70) |
Sep
(92) |
Oct
(20) |
Nov
(1) |
Dec
(1) |
| 2024 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
(14) |
Jun
(11) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2025 |
Jan
(10) |
Feb
(29) |
Mar
|
Apr
(162) |
May
(245) |
Jun
(83) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
|
From: <vic...@us...> - 2022-07-04 17:00:23
|
Revision: 12701
http://sourceforge.net/p/foray/code/12701
Author: victormote
Date: 2022-07-04 17:00:20 +0000 (Mon, 04 Jul 2022)
Log Message:
-----------
Properly lex char sequence that starts with punctuation.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java 2022-07-04 02:57:33 UTC (rev 12700)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java 2022-07-04 17:00:20 UTC (rev 12701)
@@ -280,17 +280,18 @@
/* First token. */
switch(breakTypes[0]) {
- case BREAK_CHAR: {
- /* Sequence starts with a break. Add the empty dummy word that signals that fact. */
+ case WORD_CHAR: {
+ /* Sequence starts with a word. */
+ inWord = true;
+ break;
+ }
+ default: {
+ /* Sequence starts with non-word content. Add the empty dummy token to signal that fact. */
tokens.add(StringUtils.EMPTY_STRING);
inWord = false;
break;
}
- default: {
- /* Sequence starts with a word. */
- inWord = true;
}
- }
/* Iterate all remaining tokens. */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-07-04 02:57:36
|
Revision: 12700
http://sourceforge.net/p/foray/code/12700
Author: victormote
Date: 2022-07-04 02:57:33 +0000 (Mon, 04 Jul 2022)
Log Message:
-----------
1. Dictionary additions. 2. Improvements to spell-checker.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-GBR.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-USA.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-GBR.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-GBR.dict.xml 2022-07-02 22:22:23 UTC (rev 12699)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-GBR.dict.xml 2022-07-04 02:57:33 UTC (rev 12700)
@@ -15,6 +15,7 @@
eng-Latn-ZZZ.dict.xml.
-->
+<w><t>be-hove</t><verb><regular-root/></verb></w>
<w><t>co=la-bour-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ful-fil</t><verb/></w>
<w><t>ful-fils</t><verb><vu><singular/></vu></verb></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-USA.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-USA.dict.xml 2022-07-02 22:22:23 UTC (rev 12699)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-USA.dict.xml 2022-07-04 02:57:33 UTC (rev 12700)
@@ -15,6 +15,7 @@
eng-Latn-ZZZ.dict.xml.
-->
+<w><t>be-hoove</t><verb><regular-root/></verb></w>
<w><t>co=la-bor-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ful-fill</t><verb><regular-root/></verb></w>
<w><t>ful-fill-ment</t><noun/></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-07-02 22:22:23 UTC (rev 12699)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-07-04 02:57:33 UTC (rev 12700)
@@ -7,6 +7,7 @@
<axsl-dictionary language="eng" script="Latn" hard-hyphen-char="="
soft-hyphen-char="-">
+<w><t>be-hoof</t><noun/></w>
<w><t>Car-tha-gen-i-an</t><noun><pluralizable/><convertible-to-possessive/></noun></w><!-- Carthaginian. -->
<w><t>hum-bleth</t></w>
<w><t>Kal-a-bar</t></w><!-- Calabar -->
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 22:22:23 UTC (rev 12699)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-04 02:57:33 UTC (rev 12700)
@@ -408,7 +408,7 @@
<w><t>ab-o-li-tion-ised</t></w>
<w><t>ab-o-li-tion-is-ing</t></w>
<w><t>ab-o-li-tion-ism</t></w>
-<w><t>ab-o-li-tion-ist</t></w>
+<w><t>ab-o-li-tion-ist</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ab-o-li-tion-ize</t></w>
<w><t>ab-o-li-tion-ized</t></w>
<w><t>ab-o-li-tion-iz-ing</t></w>
@@ -1304,7 +1304,7 @@
<w><t>ac-knowl-edge-ment</t></w>
<w><t>ac-knowl-edg-er</t></w>
<w><t>ac-knowl-edg-ing</t></w>
-<w><t>ac-knowl-edg-ment</t></w>
+<w><t>ac-knowl-edg-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ack-ton</t></w>
<w><t>ac-lau-rin</t></w>
<w><t>ac-le</t></w>
@@ -2008,7 +2008,7 @@
<w><t>ad-mis-si-bly</t></w>
<w><t>ad-mis-sion</t></w>
<w><t>ad-mis-sive</t></w>
-<w><t>ad-mit</t></w>
+<w><t>ad-mit</t><verb><regular-root/></verb></w>
<w><t>ad-mit-ta-ble</t></w>
<w><t>ad-mit-tance</t></w>
<w><t>ad-mit-ted</t></w>
@@ -2654,7 +2654,7 @@
<w><t>af-firm-a-to-ry</t></w>
<w><t>af-firm-er</t></w>
<w><t>af-firm-ing-ly</t></w>
-<w><t>af-fix</t></w>
+<w><t>af-fix</t><verb><regular-root/></verb></w>
<w><t>af-fix-al</t></w>
<w><t>af-fix-a-tion</t></w>
<w><t>af-fix-er</t></w>
@@ -3123,7 +3123,7 @@
<w><t>a-gree-ing</t></w>
<w><t>a-gree-ing-ly</t></w>
<w><t>A-gree-ment</t></w>
-<w><t>a-gree-ment</t></w>
+<w><t>a-gree-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>a-gré-gé</t></w>
<w><t>a-gré-mens</t></w>
<w><t>a-gré-ment</t></w>
@@ -3184,6 +3184,7 @@
<w><t>a-gu-ra</t></w>
<w><t>a-gu-roth</t></w>
<w><t>A-gy-ieus</t></w>
+<w><t>ah</t><interjection/></w>
<w><t>a-ha</t></w>
<w><t>A-hab</t></w>
<w><t>a-han-ka-ra</t></w>
@@ -4366,7 +4367,7 @@
<w><t>al-lo-typ-ic</t></w>
<w><t>all-ov-er</t></w>
<w><t>all=o-ver</t></w>
-<w><t>al-low</t></w>
+<w><t>al-low</t><verb><regular-root/></verb></w>
<w><t>al-low-a-ble</t></w>
<w><t>al-low-a-ble-ness</t></w>
<w><t>al-low-a-bly</t></w>
@@ -5305,7 +5306,7 @@
<w><t>A-mo-ry</t></w>
<w><t>A-mos</t></w>
<w><t>am-o-site</t></w>
-<w><t>a-mount</t></w>
+<w><t>a-mount</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>a-mour</t></w>
<w><t>a-mour=pro-pre</t></w>
<w><t>a-mowt</t></w>
@@ -6561,7 +6562,7 @@
<w><t>an-nounc-er</t></w>
<w><t>an-nounc-ing</t></w>
<phrase><t>an-no ur-bis con-di-tae</t></phrase>
-<w><t>an-noy</t></w>
+<w><t>an-noy</t><verb><regular-root/></verb></w>
<w><t>an-noy-ance</t></w>
<w><t>an-noy-er</t></w>
<w><t>an-noy-ing</t></w>
@@ -6844,7 +6845,7 @@
<w><t>ant-he-lix</t></w>
<w><t>an-thel-min-thic</t></w>
<w><t>an-thel-min-tic</t></w>
-<w><t>an-them</t></w>
+<w><t>an-them</t><noun><pluralizable/></noun></w>
<w><t>an-the-ma</t></w>
<w><t>an-the-ma-ta</t></w>
<w><t>an-the-mi-a</t></w>
@@ -8585,7 +8586,7 @@
<w><t>ap-pre-ci-a-to-ri-ly</t></w>
<w><t>ap-pre-cia-to-ry</t></w>
<w><t>ap-pre-ci-a-to-ry</t></w>
-<w><t>ap-pre-hend</t></w>
+<w><t>ap-pre-hend</t><verb><regular-root/></verb></w>
<w><t>ap-pre-hend-er</t></w>
<w><t>ap-pre-hen-si-bil-i-ty</t></w>
<w><t>ap-pre-hen-si-ble</t></w>
@@ -8673,7 +8674,7 @@
<w><t>a-pri-o-ris-ti-cal-ly</t></w>
<w><t>a-pri-or-i-ty</t></w>
<w><t>a-p-ri-tif</t></w>
-<w><t>a-pron</t></w>
+<w><t>a-pron</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>a-pron-like</t></w>
<phrase><t>a-pron stage</t></phrase>
<w><t>ap-ro-pos</t></w>
@@ -9282,7 +9283,7 @@
<w><t>ar-gu-fy</t></w>
<w><t>ar-gu-fy-ing</t></w>
<w><t>ar-gu-ing</t></w>
-<w><t>ar-gu-ment</t></w>
+<w><t>ar-gu-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ar-gu-men-ta-tion</t></w>
<w><t>ar-gu-men-ta-tious</t></w>
<w><t>ar-gu-men-ta-tive</t></w>
@@ -9355,8 +9356,9 @@
<w><t>A-ri-o-sto</t></w>
<w><t>Ar-i-o-vis-tus</t></w>
<w><t>A-ris-be</t></w>
-<w><t>a-rise</t></w>
-<w><t>a-ris-en</t></w>
+<w><t>a-rise</t><verb><regular-root value="false"/></verb></w>
+<w><t>a-ris-en</t><verb><regular-root value="false"/></verb></w>
+<w><t>a-ris-ing</t><verb><regular-root value="false"/></verb></w>
<w><t>a-ris-ta</t></w>
<w><t>A-ris-ta</t></w>
<w><t>Ar-is-tae-us</t></w>
@@ -9614,7 +9616,7 @@
<w><t>Ar-re-pho-ri-a</t></w>
<w><t>Ar-re-pho-roi</t></w>
<w><t>Ar-re-pho-ros</t></w>
-<w><t>ar-rest</t></w>
+<w><t>ar-rest</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ar-rest-a-ble</t></w>
<w><t>ar-rest-er</t></w>
<w><t>ar-rest-ing</t></w>
@@ -9950,7 +9952,7 @@
<w><t>as-ca-ri-a-sis</t></w>
<w><t>as-ca-rid</t></w>
<w><t>as-car-i-dole</t></w>
-<w><t>as-cend</t></w>
+<w><t>as-cend</t><verb><regular-root/></verb></w>
<w><t>as-cend-a-ble</t></w>
<w><t>as-cend-ance</t></w>
<w><t>as-cend-an-cy</t></w>
@@ -10208,7 +10210,7 @@
<w><t>as-pi-rate</t></w>
<w><t>as-pi-rat-ed</t></w>
<w><t>as-pi-rat-ing</t></w>
-<w><t>as-pi-ra-tion</t></w>
+<w><t>as-pi-ra-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>as-pi-ra-tor</t></w>
<w><t>as-pir-a-to-ry</t></w>
<w><t>as-pire</t></w>
@@ -10232,7 +10234,7 @@
<w><t>as-sa-gai-ing</t></w>
<w><t>as-sai</t></w>
<w><t>as-sa-i</t></w>
-<w><t>as-sail</t></w>
+<w><t>as-sail</t><verb><regular-root/></verb></w>
<w><t>as-sail-a-ble</t></w>
<w><t>as-sail-a-ble-ness</t></w>
<w><t>as-sail-ant</t></w>
@@ -10935,7 +10937,7 @@
<w><t>at-tach-er</t></w>
<w><t>at-ta-chés</t></w>
<w><t>at-tach-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
-<w><t>at-tack</t></w>
+<w><t>at-tack</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>at-tack-a-ble</t></w>
<w><t>at-tack-er</t></w>
<w><t>at-tain</t><verb><regular-root/></verb></w>
@@ -10967,7 +10969,7 @@
<w><t>at-tend-ing</t></w>
<w><t>at-tend-ing-ly</t></w>
<w><t>at-tent</t></w>
-<w><t>at-ten-tion</t></w>
+<w><t>at-ten-tion</t><noun><pluralizable/></noun></w>
<w><t>at-ten-tion-al</t></w>
<w><t>at-ten-tion=get-ting</t></w>
<w><t>at-ten-tive</t></w>
@@ -11042,13 +11044,13 @@
<w><t>at-tor-ney-ship</t></w>
<w><t>at-tor-neys=in=fact</t></w>
<w><t>at-torn-ment</t></w>
-<w><t>at-tract</t></w>
+<w><t>at-tract</t><verb><regular-root/></verb></w>
<w><t>at-tract-a-ble</t></w>
<w><t>at-tract-a-ble-ness</t></w>
<w><t>at-tract-ant</t></w>
<w><t>at-tract-er</t></w>
<w><t>at-tract-ing-ly</t></w>
-<w><t>at-trac-tion</t></w>
+<w><t>at-trac-tion</t><noun><singular/><convertible-to-possessive/></noun></w>
<w><t>at-trac-tion-al-ly</t></w>
<phrase><t>at-trac-tion sphere</t></phrase>
<w><t>at-trac-tive</t></w>
@@ -14700,8 +14702,8 @@
<w><t>Beg-hard</t></w>
<w><t>Beg-in</t></w>
<w><t>be-gin</t><verb><regular-root value="false"/></verb></w>
-<w><t>be-gin-ner</t></w>
-<w><t>be-gin-ning</t></w>
+<w><t>be-gin-ner</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>be-gin-ning</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>be-gins</t><verb><regular-root value="false"/></verb></w>
<w><t>be-gird</t></w>
<w><t>be-gird-ed</t></w>
@@ -14769,11 +14771,6 @@
<w><t>be-hold-en</t></w>
<w><t>be-hold-er</t></w>
<w><t>be-hold-ing</t></w>
-<w><t>be-hoof</t></w>
-<w><t>be-hoove</t></w>
-<w><t>be-hooved</t></w>
-<w><t>be-hoov-ing</t></w>
-<w><t>be-hove</t></w>
<w><t>Beh-rens</t></w>
<w><t>Beh-ring</t></w>
<w><t>Behr-man</t></w>
@@ -17165,7 +17162,7 @@
<w><t>Bli-da</t></w>
<w><t>bli-er</t></w>
<w><t>Bligh</t></w>
-<w><t>blight</t></w>
+<w><t>blight</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>blight-er</t></w>
<w><t>blight-ies</t></w>
<w><t>blight-ing-ly</t></w>
@@ -17533,7 +17530,7 @@
<w><t>blue-y</t></w>
<w><t>Blu-ey</t></w>
<w><t>blu-ey</t></w>
-<w><t>bluff</t></w>
+<w><t>bluff</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>bluff-a-ble</t></w>
<w><t>bluff-er</t></w>
<w><t>bluff-ly</t></w>
@@ -18569,7 +18566,7 @@
<w><t>Bot-ti-cel-li</t></w>
<w><t>Bot-ti-cel-li-an</t></w>
<w><t>Bot-ti-neau</t></w>
-<w><t>bot-tle</t></w>
+<w><t>bot-tle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>bot-tle-brush</t></w>
<w><t>bot-tle=feed</t></w>
<phrase><t>bot-tle gourd</t></phrase>
@@ -18679,7 +18676,7 @@
<w><t>bounc-ing-ly</t></w>
<w><t>bounc-y</t></w>
<w><t>boun-cy</t></w>
-<w><t>bound</t></w>
+<w><t>bound</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb><adjective/></w>
<w><t>bound-a-ble</t></w>
<w><t>bound-a-ry</t></w>
<phrase><t>bound-a-ry lay-er</t></phrase>
@@ -18769,7 +18766,7 @@
<w><t>Bov-ril</t></w>
<w><t>bov-ver</t></w>
<phrase><t>bov-ver boots</t></phrase>
-<w><t>bow</t></w>
+<w><t>bow</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>bow col-lec-tor</t></phrase>
<phrase><t>bow com-pass</t></phrase>
<w><t>Bow-ditch</t></w>
@@ -18849,7 +18846,7 @@
<w><t>bow-yang</t></w>
<w><t>bow-yangs</t></w>
<w><t>bow-yer</t></w>
-<w><t>box</t></w>
+<w><t>box</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>box-ball</t></w>
<w><t>box-ber-ry</t></w>
<w><t>box-board</t></w>
@@ -19348,7 +19345,7 @@
<phrase><t>break e-ven</t></phrase>
<w><t>break=e-ven</t></w>
<phrase><t>break-e-ven chart</t></phrase>
-<w><t>break-fast</t></w>
+<w><t>break-fast</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>break-fast-er</t></w>
<w><t>break-fast-less</t></w>
<w><t>break-front</t></w>
@@ -20589,7 +20586,7 @@
<w><t>bull-doz-er</t></w>
<w><t>bull-doz-ing</t></w>
<w><t>Bul-ler</t></w>
-<w><t>bul-let</t></w>
+<w><t>bul-let</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>bul-let-ed</t></w>
<w><t>bul-let-head</t></w>
<w><t>bul-let-head-ed</t></w>
@@ -21056,9 +21053,10 @@
<phrase><t>bush law-yer</t></phrase>
<w><t>bush-less</t></w>
<w><t>bush-like</t></w>
-<w><t>bush-man</t></w>
+<w><t>bush-man</t><noun><singular/><convertible-to-possessive/></noun></w>
<w><t>Bush-man</t></w>
<w><t>bush-mas-ter</t></w>
+<w><t>bush-men</t><noun><plural/><convertible-to-possessive/></noun></w>
<w><t>Bush-nell</t></w>
<phrase><t>bush oys-ter</t></phrase>
<w><t>bush-pig</t></w>
@@ -21344,7 +21342,7 @@
<w><t>bys-si-no-sis</t></w>
<w><t>bys-sus</t></w>
<w><t>bys-sus-es</t></w>
-<w><t>by-stand-er</t></w>
+<w><t>by-stand-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>by-street</t></w>
<w><t>by=talk</t></w>
<w><t>byte</t></w>
@@ -21764,7 +21762,7 @@
<w><t>ca-jol-ing-ly</t></w>
<w><t>Ca-jun</t></w>
<w><t>caj-u-put</t></w>
-<w><t>cake</t></w>
+<w><t>cake</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cake-walk</t></w>
<w><t>cake-walk-er</t></w>
<w><t>cak-ing</t></w>
@@ -22602,7 +22600,7 @@
<w><t>can-ner-y</t></w>
<w><t>Cannes</t></w>
<w><t>can-ne-tille</t></w>
-<w><t>can-ni-bal</t></w>
+<w><t>can-ni-bal</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>can-ni-bal-ise</t></w>
<w><t>can-ni-bal-ism</t></w>
<w><t>can-ni-bal-is-tic</t></w>
@@ -23005,7 +23003,7 @@
<w><t>cap-sul-ized</t></w>
<w><t>cap-sul-iz-ing</t></w>
<w><t>Capt</t></w>
-<w><t>cap-tain</t></w>
+<w><t>cap-tain</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cap-tain-cy</t></w>
<phrase><t>cap-tain’s bis-cuit</t></phrase>
<w><t>cap-tain-ship</t></w>
@@ -23098,7 +23096,7 @@
<w><t>ca-rat-a-cus</t></w>
<w><t>Ca-ra-tin-ga</t></w>
<w><t>Ca-ra-vag-gio</t></w>
-<w><t>car-a-van</t></w>
+<w><t>car-a-van</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>car-a-van-er</t></w>
<w><t>car-a-van-ing</t></w>
<w><t>car-a-van-ist</t></w>
@@ -24312,14 +24310,13 @@
<w><t>ca-thep-sin</t></w>
<w><t>ca-thep-tic</t></w>
<w><t>Cath-er</t></w>
-<w><t>Cath-er-ine</t></w>
-<w><t>Cath-e-rine</t></w>
-<phrase><t>Cath-e-rine de’ Med-i-ci</t></phrase>
-<phrase><t>Cath-e-rine I</t></phrase>
-<phrase><t>Cath-e-rine II</t></phrase>
-<phrase><t>Cath-e-rine of Ar-a-gon</t></phrase>
-<phrase><t>Cath-e-rine of Si-en-a</t></phrase>
-<phrase><t>cath-e-rine wheel</t></phrase>
+<w><t>Cath-er-ine</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<phrase><t>Cath-er-ine de’ Med-i-ci</t></phrase>
+<phrase><t>Cath-er-ine I</t></phrase>
+<phrase><t>Cath-er-ine II</t></phrase>
+<phrase><t>Cath-er-ine of Ar-a-gon</t></phrase>
+<phrase><t>Cath-er-ine of Si-en-a</t></phrase>
+<phrase><t>cath-er-ine wheel</t></phrase>
<w><t>Cath-er-yn</t></w>
<w><t>cath-e-ter</t></w>
<w><t>cath-e-ter-ise</t></w>
@@ -25230,7 +25227,7 @@
<w><t>cer-ti-fi-a-ble</t></w>
<w><t>cer-ti-fi-a-ble-ness</t></w>
<w><t>cer-ti-fi-a-bly</t></w>
-<w><t>cer-tif-i-cate</t></w>
+<w><t>cer-tif-i-cate</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cer-tif-i-cat-ed</t></w>
<phrase><t>cer-tif-i-cate of in-cor-po-ra-tion</t></phrase>
<phrase><t>cer-tif-i-cate of or-i-gin</t></phrase>
@@ -25418,7 +25415,7 @@
<w><t>chain=smok-er</t></w>
<w><t>chain-stitch</t></w>
<w><t>chain-work</t></w>
-<w><t>chair</t></w>
+<w><t>chair</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>chair-borne</t></w>
<w><t>chair-la-dy</t></w>
<w><t>chair-less</t></w>
@@ -26170,7 +26167,7 @@
<w><t>che-ders</t></w>
<w><t>chee-cha-co</t></w>
<w><t>chee-cha-ko</t></w>
-<w><t>cheek</t></w>
+<w><t>cheek</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cheek-bone</t></w>
<w><t>cheek-i-er</t></w>
<w><t>cheek-i-est</t></w>
@@ -26382,7 +26379,7 @@
<phrase><t>Cher-o-kee rose</t></phrase>
<w><t>che-root</t></w>
<w><t>Cher-ry</t></w>
-<w><t>cher-ry</t></w>
+<w><t>cher-ry</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cher-ry=bob</t></w>
<phrase><t>cher-ry bran-dy</t></phrase>
<phrase><t>cher-ry lau-rel</t></phrase>
@@ -26428,7 +26425,7 @@
<w><t>chess-es</t></w>
<w><t>chess-man</t></w>
<w><t>chess-tree</t></w>
-<w><t>chest</t></w>
+<w><t>chest</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ches-ter</t></w>
<w><t>ches-ter-bed</t></w>
<w><t>Ches-ter-field</t></w>
@@ -28168,7 +28165,7 @@
<w><t>cit-i-fy</t></w>
<w><t>cit-i-fy-ing</t></w>
<w><t>cit-ing</t></w>
-<w><t>cit-i-zen</t></w>
+<w><t>cit-i-zen</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cit-i-zen-ess</t></w>
<w><t>cit-i-zen-ly</t></w>
<w><t>cit-i-zen-ry</t></w>
@@ -28348,7 +28345,7 @@
<w><t>clamp-er</t></w>
<w><t>clam-shell</t></w>
<w><t>clam-worm</t></w>
-<w><t>clan</t></w>
+<w><t>clan</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>clan-des-tine</t></w>
<w><t>clan-des-tine-ly</t></w>
<w><t>clan-des-tine-ness</t></w>
@@ -28583,7 +28580,7 @@
<w><t>Clay-ton</t></w>
<w><t>clay-to-ni-a</t></w>
<w><t>Cle-a</t></w>
-<w><t>clean</t></w>
+<w><t>clean</t><verb><regular-root/></verb><adjective><extensible/></adjective></w>
<w><t>clean-a-ble</t></w>
<w><t>clean-er</t></w>
<w><t>clean=hand-ed</t></w>
@@ -28606,7 +28603,7 @@
<w><t>Cle-an-tha</t></w>
<w><t>Cle-an-thes</t></w>
<w><t>clean-up</t></w>
-<w><t>clear</t></w>
+<w><t>clear</t><verb><regular-root/></verb><adjective><extensible/></adjective></w>
<w><t>clear-a-ble</t></w>
<w><t>clear-ance</t></w>
<phrase><t>clear a-way</t></phrase>
@@ -28812,7 +28809,7 @@
<w><t>cli-ma-tol-o-gist</t></w>
<w><t>cli-ma-tol-o-gy</t></w>
<w><t>cli-max</t></w>
-<w><t>climb</t></w>
+<w><t>climb</t><verb><regular-root/></verb></w>
<w><t>climb-a-ble</t></w>
<w><t>climb-er</t></w>
<w><t>climb-ing</t></w>
@@ -29027,7 +29024,7 @@
<w><t>clo-sured</t></w>
<w><t>clo-sur-ing</t></w>
<w><t>clot</t></w>
-<w><t>cloth</t></w>
+<w><t>cloth</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cloth-bound</t></w>
<w><t>clothe</t><verb><regular-root/></verb></w>
<w><t>clothes</t></w>
@@ -29306,7 +29303,7 @@
<w><t>coast-wards</t></w>
<w><t>coast-ways</t></w>
<w><t>coast-wise</t></w>
-<w><t>coat</t></w>
+<w><t>coat</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>coat ar-mour</t></phrase>
<w><t>Coat-bridge</t></w>
<w><t>coat-dress</t></w>
@@ -29498,7 +29495,7 @@
<w><t>co-coa</t></w>
<phrase><t>co-coa bean</t></phrase>
<phrase><t>co-coa but-ter</t></phrase>
-<w><t>co-coa-nut</t></w>
+<w><t>co-coa-nut</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>co-co-bo-la</t></w>
<w><t>co-co-bo-lo</t></w>
<phrase><t>co-co de mer</t></phrase>
@@ -29506,7 +29503,7 @@
<w><t>co-con-scious</t></w>
<w><t>co-con-scious-ly</t></w>
<w><t>co-con-scious-ness</t></w>
-<w><t>co-co-nut</t></w>
+<w><t>co-co-nut</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>co-co-nut but-ter</t></phrase>
<phrase><t>co-co-nut ice</t></phrase>
<phrase><t>co-co-nut mat-ting</t></phrase>
@@ -30083,7 +30080,7 @@
<w><t>col-lin-si-a</t></w>
<phrase><t>Col-lins Street Farm-er</t></phrase>
<w><t>Col-lins-ville</t></w>
-<w><t>col-li-sion</t></w>
+<w><t>col-li-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>col-li-sion-al</t></w>
<w><t>col-lo-blast</t></w>
<w><t>col-lo-cate</t></w>
@@ -30187,7 +30184,7 @@
<w><t>col-o-nised</t></w>
<w><t>col-o-nis-er</t></w>
<w><t>col-o-nis-ing</t></w>
-<w><t>col-o-nist</t></w>
+<w><t>col-o-nist</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>col-o-ni-tis</t></w>
<w><t>col-o-niz-a-bil-i-ty</t></w>
<w><t>col-o-niz-a-ble</t></w>
@@ -31698,7 +31695,7 @@
<w><t>con-fig-u-ra-tive</t></w>
<w><t>con-fig-ure</t></w>
<w><t>con-fin-a-ble</t></w>
-<w><t>con-fine</t></w>
+<w><t>con-fine</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>con-fine-a-ble</t></w>
<w><t>con-fined</t></w>
<w><t>con-fin-ed-ly</t></w>
@@ -31938,8 +31935,7 @@
<w><t>con-jec-tur-a-bly</t></w>
<w><t>con-jec-tur-al</t></w>
<w><t>con-jec-tur-al-ly</t></w>
-<w><t>con-jec-ture</t></w>
-<w><t>con-jec-tured</t></w>
+<w><t>con-jec-ture</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>con-jec-tur-er</t></w>
<w><t>con-jec-tur-ing</t></w>
<w><t>con-join</t></w>
@@ -32400,7 +32396,7 @@
<w><t>con-sum-ing</t></w>
<w><t>con-sum-ing-ly</t></w>
<w><t>con-sum-ing-ness</t></w>
-<w><t>con-sum-mate</t></w>
+<w><t>con-sum-mate</t><verb><regular-root/></verb></w>
<w><t>con-sum-mate-ly</t></w>
<w><t>con-sum-ma-tion</t></w>
<w><t>con-sum-ma-tive</t></w>
@@ -33034,7 +33030,7 @@
<w><t>cook-ware</t></w>
<w><t>Cook-y</t></w>
<w><t>cook-y</t></w>
-<w><t>cool</t></w>
+<w><t>cool</t><verb><regular-root/></verb><adjective><extensible/></adjective></w>
<w><t>coo-la-bah</t></w>
<w><t>coo-la-mon</t></w>
<w><t>cool-ant</t></w>
@@ -35042,7 +35038,7 @@
<phrase><t>cre-dence ta-ble</t></phrase>
<w><t>cre-den-dum</t></w>
<w><t>cre-dent</t></w>
-<w><t>cre-den-tial</t></w>
+<w><t>cre-den-tial</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cre-den-tialed</t></w>
<w><t>cre-dent-ly</t></w>
<w><t>cre-den-za</t></w>
@@ -35729,7 +35725,7 @@
<w><t>crow-ber-ry</t></w>
<phrase><t>crow black-bird</t></phrase>
<w><t>crow-boot</t></w>
-<w><t>crowd</t></w>
+<w><t>crowd</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>crowd-ed</t></w>
<w><t>crowd-ed-ly</t></w>
<w><t>crowd-ed-ness</t></w>
@@ -36732,7 +36728,7 @@
<w><t>cu-tin-iz-ing</t></w>
<w><t>cu-tis</t></w>
<w><t>cut-las</t></w>
-<w><t>cut-lass</t></w>
+<w><t>cut-lass</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cut-lass-fish</t></w>
<phrase><t>cut-lass fish</t></phrase>
<w><t>cut-lass-fish-es</t></w>
@@ -37247,7 +37243,7 @@
<w><t>Dag-en-ham</t></w>
<w><t>Da-ge-stan</t></w>
<w><t>dag-ga</t></w>
-<w><t>dag-ger</t></w>
+<w><t>dag-ger</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dag-ger-board</t></w>
<w><t>dag-ging</t></w>
<w><t>dag-gle</t></w>
@@ -37507,10 +37503,10 @@
<w><t>Da-na-va</t></w>
<w><t>dan-bur-ite</t></w>
<w><t>Dan-bur-y</t></w>
-<w><t>dance</t></w>
+<w><t>dance</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>dance-a-bil-i-ty</t></w>
<w><t>dance-a-ble</t></w>
-<w><t>danc-er</t></w>
+<w><t>danc-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dan-cette</t></w>
<w><t>dan-cet-té</t></w>
<w><t>dan-cet-tée</t></w>
@@ -37752,7 +37748,7 @@
<w><t>Das-cy-lus</t></w>
<w><t>Da-se-hra</t></w>
<w><t>da-sein</t></w>
-<w><t>dash</t></w>
+<w><t>dash</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>dash-board</t></w>
<w><t>dashed</t></w>
<w><t>dash-ed-ly</t></w>
@@ -38817,7 +38813,7 @@
<w><t>def-e-cat-ed</t></w>
<w><t>def-e-cat-ing</t></w>
<w><t>def-e-ca-tion</t></w>
-<w><t>de-fect</t></w>
+<w><t>de-fect</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>de-fect-i-bil-i-ty</t></w>
<w><t>de-fect-i-ble</t></w>
<w><t>de-fec-tion</t></w>
@@ -39629,7 +39625,7 @@
<w><t>de-mog-ra-phist</t></w>
<w><t>de-mog-ra-phy</t></w>
<w><t>dem-oi-selle</t></w>
-<w><t>de-mol-ish</t></w>
+<w><t>de-mol-ish</t><verb><regular-root/></verb></w>
<w><t>de-mol-ish-er</t></w>
<w><t>de-mol-ish-ment</t></w>
<w><t>dem-o-li-tion</t></w>
@@ -40606,7 +40602,7 @@
<w><t>de-spair-ing</t></w>
<w><t>des-pair-ing-ly</t></w>
<w><t>des-pair-ing-ness</t></w>
-<w><t>des-patch</t></w>
+<w><t>des-patch</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>des-patch-er</t></w>
<w><t>Des-pen-ser</t></w>
<w><t>des-per-a-do</t></w>
@@ -42478,7 +42474,7 @@
<w><t>dis-an-nul-ling</t></w>
<w><t>dis-an-nul-ment</t></w>
<w><t>dis-a-noint</t></w>
-<w><t>dis-ap-pear</t></w>
+<w><t>dis-ap-pear</t><verb><regular-root/></verb></w>
<w><t>dis-ap-pear-ance</t></w>
<w><t>dis-ap-point</t></w>
<w><t>dis-ap-point-ed</t></w>
@@ -42521,7 +42517,7 @@
<w><t>dis-as-trous</t></w>
<w><t>dis-as-trous-ly</t></w>
<w><t>dis-as-trous-ness</t></w>
-<w><t>dis-a-vow</t></w>
+<w><t>dis-a-vow</t><verb><regular-root/></verb></w>
<w><t>dis-a-vow-al</t></w>
<w><t>dis-a-vow-ed-ly</t></w>
<w><t>dis-a-vow-er</t></w>
@@ -42593,7 +42589,7 @@
<phrase><t>disc har-row</t></phrase>
<w><t>dis-ci</t></w>
<w><t>dis-ci-flo-ral</t></w>
-<w><t>dis-ci-ple</t></w>
+<w><t>dis-ci-ple</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dis-ci-ple-like</t></w>
<w><t>dis-ci-ple-ship</t></w>
<phrase><t>Dis-ci-ples of Christ</t></phrase>
@@ -42796,7 +42792,7 @@
<w><t>dis-dain-ful</t></w>
<w><t>dis-dain-ful-ly</t></w>
<w><t>dis-dain-ful-ness</t></w>
-<w><t>dis-ease</t></w>
+<w><t>dis-ease</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dis-eased</t></w>
<w><t>dis-eas-ed-ly</t></w>
<w><t>dis-eas-ed-ness</t></w>
@@ -43307,7 +43303,7 @@
<w><t>dis-pu-ta-tious-ness</t></w>
<w><t>dis-put-a-tive</t></w>
<w><t>dis-pu-ta-tive</t></w>
-<w><t>dis-pute</t></w>
+<w><t>dis-pute</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>dis-put-ed</t></w>
<w><t>dis-pute-less</t></w>
<w><t>dis-put-er</t></w>
@@ -44057,7 +44053,7 @@
<w><t>doc-tri-nal-ly</t></w>
<w><t>doc-trine</t></w>
<phrase><t>doc-trine of de-scent</t></phrase>
-<w><t>doc-u-ment</t></w>
+<w><t>doc-u-ment</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>doc-u-men-tal</t></w>
<w><t>doc-u-men-ta-ri-ly</t></w>
<w><t>doc-u-men-ta-ry</t></w>
@@ -44331,7 +44327,7 @@
<w><t>dom</t></w>
<w><t>DOM</t></w>
<w><t>Do-magk</t></w>
-<w><t>do-main</t></w>
+<w><t>do-main</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>do-ma-ni-al</t></w>
<w><t>dome</t></w>
<w><t>domed</t></w>
@@ -44513,13 +44509,14 @@
<w><t>doo-lie</t></w>
<w><t>Doo-lit-tle</t></w>
<w><t>doo-ly</t></w>
-<w><t>doom</t></w>
+<w><t>doom</t><noun/></w>
+<w><t>doomed</t><adjective><extensible value="false"/></adjective></w>
<w><t>dooms</t></w>
<w><t>dooms-day</t></w>
<phrase><t>Dooms-day Book</t></phrase>
<w><t>doom-watch-er</t></w>
<w><t>Doon</t></w>
-<w><t>door</t></w>
+<w><t>door</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>door-bell</t></w>
<w><t>door-brand</t></w>
<w><t>door-case</t></w>
@@ -44728,7 +44725,7 @@
<w><t>Dou-a-la</t></w>
<w><t>Dou-ay</t></w>
<phrase><t>Dou-ay Bi-ble</t></phrase>
-<w><t>dou-ble</t></w>
+<w><t>dou-ble</t><verb><regular-root/></verb></w>
<w><t>dou-ble=act-ing</t></w>
<w><t>dou-ble=ac-tion</t></w>
<phrase><t>dou-ble a-gent</t></phrase>
@@ -45128,7 +45125,7 @@
<w><t>drae-ger-man</t></w>
<w><t>draff</t></w>
<w><t>draff-y</t></w>
-<w><t>draft</t></w>
+<w><t>draft</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>draft-a-ble</t></w>
<phrase><t>draft dodg-er</t></phrase>
<w><t>draft-ee</t></w>
@@ -45407,7 +45404,7 @@
<w><t>drib-ble</t></w>
<w><t>drib-bler</t></w>
<w><t>drib-blet</t></w>
-<w><t>drib-let</t></w>
+<w><t>drib-let</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>driech</t></w>
<w><t>dried</t></w>
<w><t>driegh</t></w>
@@ -45566,7 +45563,7 @@
<w><t>drov-er</t></w>
<w><t>dro-ver</t></w>
<w><t>drov-ing</t></w>
-<w><t>drown</t></w>
+<w><t>drown</t><verb><regular-root/></verb></w>
<w><t>drown-er</t></w>
<w><t>drowse</t></w>
<w><t>drow-si-er</t></w>
@@ -45605,7 +45602,7 @@
<w><t>dru-id-i-cal</t></w>
<w><t>dru-id-ism</t></w>
<w><t>dru-i-dol-o-gy</t></w>
-<w><t>drum</t></w>
+<w><t>drum</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>drum-beat</t></w>
<w><t>drum-beat-er</t></w>
<w><t>drum-ble</t></w>
@@ -45841,7 +45838,6 @@
<w><t>Duis-burg</t></w>
<w><t>Duis-burg=Ham-born</t></w>
<w><t>duit</t></w>
-<w><t>du-ka</t></w>
<w><t>Du-kas</t></w>
<w><t>Duke</t></w>
<w><t>duke</t></w>
@@ -46265,7 +46261,7 @@
<w><t>dyb-buk</t></w>
<w><t>dyb-bu-kim</t></w>
<w><t>dyb-buks</t></w>
-<w><t>dye</t></w>
+<w><t>dye</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>dye-a-ble</t></w>
<w><t>dye-ing</t></w>
<w><t>dye-line</t></w>
@@ -47330,7 +47326,7 @@
<w><t>e-ges-ta</t></w>
<w><t>e-ges-tion</t></w>
<w><t>e-ges-tive</t></w>
-<w><t>egg</t></w>
+<w><t>egg</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>egg and an-chor</t></phrase>
<w><t>eg-gar</t></w>
<w><t>egg-beat-er</t></w>
@@ -48337,7 +48333,7 @@
<w><t>em-bel-lish</t></w>
<w><t>em-bel-lish-er</t></w>
<w><t>em-bel-lish-ment</t></w>
-<w><t>em-ber</t></w>
+<w><t>em-ber</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Em-ber days</t></phrase>
<phrase><t>em-ber goose</t></phrase>
<phrase><t>Em-ber week</t></phrase>
@@ -48597,7 +48593,7 @@
<w><t>e-mot-ed</t></w>
<w><t>e-mot-er</t></w>
<w><t>e-mot-ing</t></w>
-<w><t>e-mo-tion</t></w>
+<w><t>e-mo-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>e-mo-tion-a-ble</t></w>
<w><t>e-mo-tion-al</t></w>
<w><t>e-mo-tion-al-ise</t></w>
@@ -48929,12 +48925,12 @@
<w><t>en-core</t></w>
<w><t>en-cored</t></w>
<w><t>en-cor-ing</t></w>
-<w><t>en-coun-ter</t></w>
+<w><t>en-coun-ter</t><verb><regular-root/></verb></w>
<w><t>en-coun-ter-er</t></w>
<phrase><t>en-coun-ter group</t></phrase>
<w><t>en-cour-age</t></w>
<w><t>en-cour-aged</t></w>
-<w><t>en-cour-age-ment</t></w>
+<w><t>en-cour-age-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>en-cour-ag-er</t></w>
<w><t>en-cour-ag-ing</t></w>
<w><t>en-cour-ag-ing-ly</t></w>
@@ -49428,7 +49424,7 @@
<w><t>en-list-ee</t></w>
<w><t>en-list-er</t></w>
<w><t>en-list-ment</t></w>
-<w><t>en-liv-en</t></w>
+<w><t>en-liv-en</t><verb><regular-root/></verb></w>
<w><t>en-liv-en-er</t></w>
<w><t>en-liv-en-ing-ly</t></w>
<w><t>en-liv-en-ment</t></w>
@@ -49561,7 +49557,7 @@
<w><t>en-shrin-ing</t></w>
<w><t>en-shroud</t></w>
<w><t>en-si-form</t></w>
-<w><t>en-sign</t></w>
+<w><t>en-sign</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>en-sign-cy</t></w>
<w><t>en-sign-ship</t></w>
<w><t>en-si-la-bil-i-ty</t></w>
@@ -49661,7 +49657,7 @@
<w><t>en-ter-o-zo-a</t></w>
<w><t>en-ter-o-zo-an</t></w>
<w><t>en-ter-o-zo-on</t></w>
-<w><t>en-ter-prise</t></w>
+<w><t>en-ter-prise</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>En-ter-prise</t></w>
<w><t>en-ter-prise-less</t></w>
<w><t>en-ter-pris-er</t></w>
@@ -52205,7 +52201,7 @@
<w><t>ex-cerpt-i-ble</t></w>
<w><t>ex-cerp-tion</t></w>
<w><t>ex-cerp-tor</t></w>
-<w><t>ex-cess</t></w>
+<w><t>ex-cess</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ex-cess de-mand</t></phrase>
<w><t>ex-ces-sive</t></w>
<w><t>ex-ces-sive-ly</t></w>
@@ -52483,7 +52479,7 @@
<w><t>ex-haled</t></w>
<w><t>ex-ha-lent</t></w>
<w><t>ex-hal-ing</t></w>
-<w><t>ex-haust</t></w>
+<w><t>ex-haust</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ex-haust-er</t></w>
<w><t>ex-haust-i-bil-i-ty</t></w>
<w><t>ex-haust-i-ble</t></w>
@@ -55878,8 +55874,9 @@
<w><t>Fish-er</t></w>
<w><t>fish-er</t></w>
<w><t>fish-er-ies</t></w>
-<w><t>fish-er-man</t></w>
+<w><t>fish-er-man</t><noun><singular/><convertible-to-possessive/></noun></w>
<phrase><t>fish-er-man’s bend</t></phrase>
+<w><t>fish-er-men</t><noun><plural/><convertible-to-possessive/></noun></w>
<w><t>fish-er-y</t></w>
<w><t>fish-es</t></w>
<w><t>Fish-es</t></w>
@@ -56642,7 +56639,7 @@
<w><t>flood-like</t></w>
<w><t>flood-lit</t></w>
<w><t>flood-wa-ter</t></w>
-<w><t>floor</t></w>
+<w><t>floor</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>floor-age</t></w>
<w><t>floor-board</t></w>
<w><t>floor-cloth</t></w>
@@ -56946,7 +56943,7 @@
<w><t>flut-i-est</t></w>
<w><t>flut-ing</t></w>
<w><t>flut-ist</t></w>
-<w><t>flut-ter</t></w>
+<w><t>flut-ter</t><verb><regular-root/></verb></w>
<w><t>flut-ter-board</t></w>
<w><t>flut-ter-er</t></w>
<w><t>flut-ter-ing-ly</t></w>
@@ -57505,7 +57502,7 @@
<phrase><t>for-eign bill</t></phrase>
<w><t>for-eign=born</t></w>
<phrase><t>for-eign cor-res-pond-ent</t></phrase>
-<w><t>for-eign-er</t></w>
+<w><t>for-eign-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>for-eign ex-change</t></phrase>
<w><t>for-eign=flag</t></w>
<w><t>for-eign-ism</t></w>
@@ -58183,7 +58180,7 @@
<w><t>Fra-cas-to-ri-us</t></w>
<w><t>Frack-ville</t></w>
<w><t>frac-ta-ble</t></w>
-<w><t>frac-tion</t></w>
+<w><t>frac-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>frac-tion-al</t></w>
<phrase><t>frac-tion-al cur-ren-cy</t></phrase>
<phrase><t>frac-tion-al dis-til-la-tion</t></phrase>
@@ -58219,7 +58216,7 @@
<w><t>frag-ile</t></w>
<w><t>frag-ile-ly</t></w>
<w><t>fra-gil-i-ty</t></w>
-<w><t>frag-ment</t></w>
+<w><t>frag-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>frag-men-tal</t></w>
<w><t>frag-men-tal-ly</t></w>
<w><t>frag-men-tar-i-ly</t></w>
@@ -58465,7 +58462,7 @@
<w><t>Fred-rich</t></w>
<w><t>Fred-rik</t></w>
<w><t>Fred-rik-stad</t></w>
-<w><t>free</t></w>
+<w><t>free</t><verb><regular-root/></verb><adjective/></w>
<phrase><t>free a-gent</t></phrase>
<phrase><t>free a-long-side ship</t></phrase>
<w><t>free=as-so-ci-ate</t></w>
@@ -58515,7 +58512,7 @@
<w><t>free-load-ing</t></w>
<w><t>free-ly</t></w>
<w><t>free=ma-chin-ing</t></w>
-<w><t>free-man</t></w>
+<w><t>free-man</t><noun><convertible-to-possessive/></noun></w>
<w><t>Free-man</t></w>
<w><t>free-mar-tin</t></w>
<w><t>free-ma-son</t></w>
@@ -58660,7 +58657,7 @@
<phrase><t>fre-quen-cy band</t></phrase>
<phrase><t>fre-quen-cy dis-tri-bu-tion</t></phrase>
<phrase><t>fre-quen-cy mod-u-la-tion</t></phrase>
-<w><t>fre-quent</t></w>
+<w><t>fre-quent</t><verb><regular-root/></verb><adjective></adjective></w>
<w><t>fre-quent-a-ble</t></w>
<w><t>fre-quen-ta-tion</t></w>
<w><t>fre-quen-ta-tive</t></w>
@@ -59247,6 +59244,7 @@
<w><t>ful-filled</t><adjective/></w>
<w><t>ful-fill-er</t></w>
<w><t>ful-fill-ing</t><adjective/></w>
+<w><t>ful-fill-ment</t><noun/></w>
<w><t>Ful-gen-cio</t></w>
<w><t>ful-gent</t></w>
<w><t>ful-gent-ly</t></w>
@@ -60125,7 +60123,7 @@
<w><t>gam-boge</t></w>
<w><t>gam-bo-gi-an</t></w>
<w><t>gam-boised</t></w>
-<w><t>gam-bol</t></w>
+<w><t>gam-bol</t><noun><pluralizable/></noun></w>
<w><t>gam-boled</t></w>
<w><t>gam-bol-ing</t></w>
<w><t>gam-bolled</t></w>
@@ -60760,7 +60758,7 @@
<w><t>ga-za-bo</t></w>
<w><t>Gaz-an-ku-lu</t></w>
<phrase><t>Ga-za Strip</t></phrase>
-<w><t>gaze</t></w>
+<w><t>gaze</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ga-ze-bo</t></w>
<w><t>gaze-hound</t></w>
<w><t>gaze-less</t></w>
@@ -61174,7 +61172,7 @@
<w><t>gen-tian-in</t></w>
<phrase><t>gen-tian vi-o-let</t></phrase>
<w><t>gen-til</t></w>
-<w><t>gen-tile</t></w>
+<w><t>gen-tile</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Gen-tile</t></w>
<w><t>Gen-ti-le</t></w>
<w><t>gen-ti-lesse</t></w>
@@ -62176,7 +62174,7 @@
<w><t>Gla-ser</t></w>
<w><t>Glas-gow</t></w>
<w><t>Glas-pell</t></w>
-<w><t>glass</t></w>
+<w><t>glass</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Glass</t></w>
<w><t>glass=blow-er</t></w>
<w><t>glass-blow-ing</t></w>
@@ -63625,7 +63623,7 @@
<w><t>Graf</t></w>
<w><t>Graf-en</t></w>
<w><t>graf-fi-to</t></w>
-<w><t>graft</t></w>
+<w><t>graft</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>graft-age</t></w>
<w><t>graft-er</t></w>
<phrase><t>graft hy-brid</t></phrase>
@@ -64730,7 +64728,7 @@
<w><t>ground-less-ness</t></w>
<w><t>ground-ling</t></w>
<w><t>ground-mass</t></w>
-<w><t>ground-nut</t></w>
+<w><t>ground-nut</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ground-plot</t></w>
<phrase><t>ground pro-vi-sions</t></phrase>
<w><t>ground-sel</t></w>
@@ -64772,7 +64770,7 @@
<w><t>grout-i-est</t></w>
<w><t>grouts</t></w>
<w><t>grout-y</t></w>
-<w><t>grove</t></w>
+<w><t>grove</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Grove</t></w>
<w><t>grov-el</t></w>
<w><t>grov-eled</t></w>
@@ -66564,7 +66562,7 @@
<w><t>Hals</t></w>
<w><t>Hal-sey</t></w>
<w><t>Häl-sing-borg</t></w>
-<w><t>halt</t></w>
+<w><t>halt</t><verb><regular-root/></verb></w>
<w><t>Hal-tem-price</t></w>
<w><t>halt-er</t></w>
<w><t>hal-ter</t></w>
@@ -66587,7 +66585,7 @@
<w><t>hal-yard</t></w>
<w><t>Hal-y-si-tes</t></w>
<w><t>Ham</t></w>
-<w><t>ham</t></w>
+<w><t>ham</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ha-ma</t></w>
<w><t>Ham-a-dan</t></w>
<phrase><t>Ham-a-dor Ham-e-d</t></phrase>
@@ -66707,7 +66705,7 @@
<phrase><t>Han Cit-ies</t></phrase>
<w><t>Han-cock</t></w>
<w><t>Hand</t></w>
-<w><t>hand</t></w>
+<w><t>hand</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>hand-bag</t></w>
<w><t>hand-ball</t></w>
<w><t>hand-ball-er</t></w>
@@ -66754,7 +66752,7 @@
<w><t>hand-i-ly</t></w>
<w><t>hand-i-ness</t></w>
<w><t>hand-i-work</t></w>
-<w><t>hand-ker-chief</t></w>
+<w><t>hand-ker-chief</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>han-dle</t></w>
<w><t>han-dle-a-ble</t></w>
<w><t>han-dle-bar</t></w>
@@ -67914,7 +67912,7 @@
<phrase><t>heat seek-er</t></phrase>
<w><t>heat-stroke</t></w>
<w><t>heaume</t></w>
-<w><t>heave</t></w>
+<w><t>heave</t><verb><regular-root/></verb></w>
<w><t>heave-less</t></w>
<w><t>heav-en</t></w>
<w><t>heav-en=born</t></w>
@@ -68144,7 +68142,7 @@
<w><t>Hei-fetz</t></w>
<w><t>heigh</t></w>
<w><t>height</t></w>
-<w><t>height-en</t></w>
+<w><t>height-en</t><verb><regular-root/></verb></w>
<w><t>height-en-er</t></w>
<w><t>heighth</t></w>
<w><t>height=to=pa-per</t></w>
@@ -68388,7 +68386,7 @@
<w><t>hel-ot-ry</t></w>
<w><t>help</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>help-a-ble</t></w>
-<w><t>help-er</t></w>
+<w><t>help-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>help-ful</t></w>
<w><t>help-ful-ly</t></w>
<w><t>help-ful-ness</t></w>
@@ -69790,7 +69788,7 @@
<w><t>Hin-de-mith</t></w>
<w><t>Hin-den-burg</t></w>
<phrase><t>Hin-den-burg line</t></phrase>
-<w><t>hind-er</t></w>
+<w><t>hind-er</t><verb><regular-root/></verb></w>
<w><t>hin-der</t></w>
<w><t>hin-der-er</t></w>
<w><t>hin-der-ing-ly</t></w>
@@ -69906,7 +69904,7 @@
<w><t>Hi-ram</t></w>
<w><t>Hi-ra-nu-ma</t></w>
<w><t>hir-cine</t></w>
-<w><t>hire</t></w>
+<w><t>hire</t><verb><regular-root/></verb></w>
<w><t>hire-a-ble</t></w>
<w><t>hire-ling</t></w>
<w><t>hire=pur-chase</t></w>
@@ -70258,7 +70256,7 @@
<w><t>hoise</t></w>
<w><t>hois-ing</t></w>
<w><t>Hoi-sing-ton</t></w>
-<w><t>hoist</t></w>
+<w><t>hoist</t><verb><regular-root/></verb></w>
<w><t>hoist-er</t></w>
<w><t>hoist-way</t></w>
<w><t>hoi-ty=toi-ty</t></w>
@@ -71583,7 +71581,7 @@
<w><t>Hud</t></w>
<w><t>Hud-ders-field</t></w>
<w><t>Hud-die</t></w>
-<w><t>hud-dle</t></w>
+<w><t>hud-dle</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>hud-dler</t></w>
<w><t>Hud-dle-ston</t></w>
<w><t>hud-dling-ly</t></w>
@@ -71912,7 +71910,7 @@
<w><t>hur-dy=gur-dist</t></w>
<w><t>hur-dy=gur-dy</t></w>
<w><t>hur-dy=gur-dy-ist</t></w>
-<w><t>hurl</t></w>
+<w><t>hurl</t><verb><regular-root/></verb></w>
<w><t>hurl-er</t></w>
<w><t>hurl-ey</t></w>
<w><t>hur-ley</t></w>
@@ -74903,7 +74901,7 @@
<w><t>im-press-i-ble-ness</t></w>
<w><t>im-press-i-bly</t></w>
<w><t>im-pres-sing</t></w>
-<w><t>im-pres-sion</t></w>
+<w><t>im-pres-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>im-pres-sion-a-bil-i-ty</t></w>
<w><t>im-pres-sion-a-ble</t></w>
<w><t>im-pres-sion-a-ble-ness</t></w>
@@ -74993,7 +74991,7 @@
<w><t>im-pugn-ment</t></w>
<w><t>im-pu-is-sance</t></w>
<w><t>im-pu-is-sant</t></w>
-<w><t>im-pulse</t></w>
+<w><t>im-pulse</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>im-pulse buy-ing</t></phrase>
<phrase><t>im-pulse tur-bine</t></phrase>
<w><t>im-pul-sion</t></w>
@@ -76109,7 +76107,7 @@
<w><t>in-duce</t></w>
<w><t>in-duced</t></w>
<phrase><t>in-duced drag</t></phrase>
-<w><t>in-duce-ment</t></w>
+<w><t>in-duce-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-duc-er</t></w>
<w><t>in-duc-i-ble</t></w>
<w><t>in-duc-ing</t></w>
@@ -76442,7 +76440,7 @@
<w><t>in-fer</t></w>
<w><t>in-fer-a-ble</t></w>
<w><t>in-fer-a-bly</t></w>
-<w><t>in-fer-ence</t></w>
+<w><t>in-fer-ence</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-fer-en-tial</t></w>
<w><t>in-fer-en-tial-ly</t></w>
<w><t>In-fer-i</t></w>
@@ -78568,7 +78566,7 @@
<w><t>in-ter-pre-ta-tion-al</t></w>
<w><t>in-ter-pre-ta-tive</t></w>
<w><t>in-ter-pre-ta-tive-ly</t></w>
-<w><t>in-ter-pret-er</t></w>
+<w><t>in-ter-pret-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-ter-pret-er-ship</t></w>
<w><t>in-ter-pre-tive</t></w>
<w><t>in-ter-pre-tive-ly</t></w>
@@ -78852,7 +78850,7 @@
<w><t>in-ter-vein</t></w>
<w><t>in-ter-vein-al</t></w>
<w><t>in-ter-vein-ous</t></w>
-<w><t>in-ter-vene</t></w>
+<w><t>in-ter-vene</t><verb><regular-root/></verb></w>
<w><t>in-ter-vened</t></w>
<w><t>in-ter-ven-er</t></w>
<w><t>in-ter-ven-ient</t></w>
@@ -78944,7 +78942,7 @@
<w><t>in-ti-mate-ness</t></w>
<w><t>in-ti-mat-er</t></w>
<w><t>in-ti-mat-ing</t></w>
-<w><t>in-ti-ma-tion</t></w>
+<w><t>in-ti-ma-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-time</t></w>
<w><t>in-tim-i-date</t></w>
<w><t>in-tim-i-dat-ed</t></w>
@@ -80911,7 +80909,7 @@
<w><t>Jaque-lee</t></w>
<w><t>Ja-ques</t></w>
<w><t>Jaques=Dal-croze</t></w>
-<w><t>jar</t></w>
+<w><t>jar</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ja-rash</t></w>
<w><t>jar-di-ni</t></w>
<w><t>jar-di-niere</t></w>
@@ -82091,7 +82089,7 @@
<phrase><t>jun-ior wel-ter-weight</t></phrase>
<w><t>ju-ni-per</t></w>
<w><t>Jun-ius</t></w>
-<w><t>junk</t></w>
+<w><t>junk</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Jun-ker</t></w>
<w><t>Jun-ker-dom</t></w>
<w><t>Jun-ker-ism</t></w>
@@ -86085,7 +86083,7 @@
<w><t>la-vol-ta</t></w>
<w><t>La-vonne</t></w>
<w><t>lav-rock</t></w>
-<w><t>law</t></w>
+<w><t>law</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Law</t></w>
<w><t>law=a-bid-ing</t></w>
<phrase><t>law a-gent</t></phrase>
@@ -86776,11 +86774,12 @@
<w><t>Le-nard</t></w>
<w><t>Len-ca</t></w>
<w><t>Len-clos</t></w>
-<w><t>lend</t></w>
+<w><t>lend</t><verb><regular-root value="false"/></verb></w>
<w><t>lend-a-ble</t></w>
<w><t>lend-er</t></w>
<w><t>lend-ing</t></w>
<phrase><t>lend-ing li-brar-y</t></phrase>
+<w><t>lends</t><verb><regular-root value="false"/></verb></w>
<w><t>le-nes</t></w>
<w><t>L’En-fant</t></w>
<w><t>Leng-len</t></w>
@@ -89594,7 +89593,7 @@
<w><t>lowe</t></w>
<w><t>Low-ell</t></w>
<w><t>Low-er</t></w>
-<w><t>low-er</t></w>
+<w><t>low-er</t><verb><regular-root/></verb></w>
<w><t>low-er-a-ble</t></w>
<phrase><t>Low-er Aus-tri-a</t></phrase>
<phrase><t>Low-er Bur-ma</t></phrase>
@@ -90022,7 +90021,7 @@
<w><t>Lu-net-ta</t></w>
<w><t>lu-nette</t></w>
<w><t>Lu-né-ville</t></w>
-<w><t>lung</t></w>
+<w><t>lung</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>lun-gan</t></w>
<w><t>lunge</t></w>
<w><t>lun-gee</t></w>
@@ -92048,7 +92047,7 @@
<w><t>mar-ces-cence</t></w>
<w><t>mar-ces-cent</t></w>
<w><t>March</t></w>
-<w><t>march</t></w>
+<w><t>march</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Marche</t></w>
<w><t>Mar-che</t></w>
<w><t>Mär-chen</t></w>
@@ -92645,7 +92644,7 @@
<w><t>Mas-sa-chu-set</t></w>
<w><t>Mas-sa-chu-setts</t></w>
<phrase><t>Mas-sa-chu-setts Bay</t></phrase>
-<w><t>mas-sa-cre</t></w>
+<w><t>mas-sa-cre</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>mas-sage</t></w>
<w><t>mas-saged</t></w>
<w><t>mas-sag-er</t></w>
@@ -92777,7 +92776,7 @@
<w><t>Ma-su-ri-a</t></w>
<w><t>ma-su-ri-um</t></w>
<w><t>Ma-su-ry</t></w>
-<w><t>mat</t></w>
+<w><t>mat</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Mat-a-be-le</t></w>
<w><t>Mat-a-be-le-land</t></w>
<w><t>Ma-ta-di</t></w>
@@ -93302,7 +93301,7 @@
<w><t>mea-gre</t></w>
<w><t>mea-gre-ly</t></w>
<w><t>mea-gre-ness</t></w>
-<w><t>meal</t></w>
+<w><t>meal</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>meal-ie</t></w>
<phrase><t>meal-ie meal</t></phrase>
<w><t>meal-i-er</t></w>
@@ -93319,9 +93318,10 @@
<w><t>meal-y-mouth-ed-ly</t></w>
<w><t>meal-y=mouth-ed-ness</t></w>
<w><t>mean</t></w>
-<w><t>me-an-der</t></w>
+<w><t>me-an-der</t><verb><regular-root/></verb></w>
<w><t>Me-an-der</t></w>
<w><t>me-an-der-er</t></w>
+<w><t>me-an-der-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>mean de-vi-a-tion</t></phrase>
<phrase><t>mean dis-tance</t></phrase>
<w><t>me-an-drous</t></w>
@@ -96593,8 +96593,7 @@
<phrase><t>mis-sing link</t></phrase>
<w><t>mis-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Mis-sion</t></w>
-<w><t>mis-sion-ar-ies</t></w>
-<w><t>mis-sion-ar-y</t></w>
+<w><t>mis-sion-ar-y</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Mis-sion-ar-y Ridge</t></phrase>
<w><t>mis-sion-er</t></w>
<w><t>mis-sis</t></w>
@@ -97180,7 +97179,7 @@
<w><t>mole-hill</t></w>
<w><t>mole-skin</t></w>
<w><t>mole-skins</t></w>
-<w><t>mo-lest</t></w>
+<w><t>mo-lest</t><verb><regular-root/></verb></w>
<w><t>mo-les-ta-tion</t></w>
<w><t>mo-lest-er</t></w>
<w><t>Mo-li</t></w>
@@ -97951,7 +97950,7 @@
<w><t>mo-rain-al</t></w>
<w><t>mo-raine</t></w>
<w><t>mo-rain-ic</t></w>
-<w><t>mor-al</t></w>
+<w><t>mor-al</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<w><t>mo-rale</t></w>
<phrase><t>mor-al haz-ard</t></phrase>
<w><t>mor-al-ise</t></w>
@@ -98065,7 +98064,7 @@
<w><t>morn</t></w>
<w><t>mor-nay</t></w>
<w><t>Mor-nay</t></w>
-<w><t>morn-ing</t></w>
+<w><t>morn-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>morn-ing coat</t></phrase>
<phrase><t>morn-ing dress</t></phrase>
<w><t>morn-ing=glo-ry</t></w>
@@ -100349,7 +100348,7 @@
<w><t>Ne-a-pol-i-tan</t></w>
<phrase><t>Ne-a-pol-i-tan ice cream</t></phrase>
<phrase><t>Ne-a-pol-i-tan sixth</t></phrase>
-<w><t>near</t><adjective><extensible/></adjective></w>
+<w><t>near</t><verb><regular-root/></verb><adjective><extensible/></adjective></w>
<w><t>near-by</t></w>
<w><t>Nearch</t></w>
<w><t>Ne-arc-tic</t></w>
@@ -100357,7 +100356,7 @@
<w><t>near-ness</t></w>
<w><t>near-side</t></w>
<w><t>near=sight-ed</t></w>
-<w><t>neat</t></w>
+<w><t>neat</t><adjective><extensible/></adjective></w>
<w><t>neat-en</t></w>
<w><t>neath</t></w>
<w><t>neat-ly</t></w>
@@ -101857,8 +101856,9 @@
<w><t>no-bil-i-ty</t></w>
<w><t>no-ble</t><adjective><extensible/></adjective></w>
<phrase><t>no-ble art</t></phrase>
-<w><t>no-ble-man</t></w>
+<w><t>no-ble-man</t><noun><singular/></noun></w>
<w><t>no-ble-man-ly</t></w>
+<w><t>no-ble-men</t><noun><plural/></noun></w>
<w><t>no-ble=mind-ed</t></w>
<w><t>no-ble=mind-ed-ly</t></w>
<w><t>no-ble=mind-ed-ness</t></w>
@@ -108129,7 +108129,8 @@
<w><t>oar-like</t></w>
<w><t>oar-lock</t></w>
<w><t>oars</t></w>
-<w><t>oars-man</t></w>
+<w><t>oars-man</t><noun><singular/><convertible-to-possessive/></noun></w>
+<w><t>oars-men</t><noun><pluralizable/></noun></w>
<w><t>OAS</t></w>
<w><t>o-a-sis</t></w>
<w><t>o-a-sit-hous-es</t></w>
@@ -108351,7 +108352,7 @@
<w><t>ob-ser-vant</t></w>
<w><t>Ob-ser-van-tine</t></w>
<w><t>ob-serv-ant-ly</t></w>
-<w><t>ob-ser-va-tion</t></w>
+<w><t>ob-ser-va-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ob-ser-va-tion car</t></phrase>
<phrase><t>ob-ser-va-tion post</t></phrase>
<w><t>ob-serv-a-to-ry</t></w>
@@ -109636,6 +109637,7 @@
<phrase><t>o-pen-ing time</t></phrase>
<phrase><t>o-pen let-ter</t></phrase>
<w><t>o-pen=let-ter</t></w>
+<w><t>o-pen-ly</t><adverb/></w>
<phrase><t>o-pen mar-ket</t></phrase>
<phrase><t>o-pen mar-ket op-er-a-tions</t></phrase>
<w><t>o-pen=mind-ed</t></w>
@@ -114022,7 +114024,7 @@
<w><t>pa-ca</t></w>
<w><t>Pac-ce-ka</t></w>
<w><t>pac-cha</t></w>
-<w><t>pace</t></w>
+<w><t>pace</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pa-ce</t></w>
<w><t>paced</t></w>
<w><t>pace-mak-er</t></w>
@@ -114796,6 +114798,7 @@
<w><t>pan-go-lin</t></w>
<phrase><t>Pan-go Pan-go</t></phrase>
<w><t>pan-guin-gue</t></w>
+<w><t>Pang-we</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pan-han-dle</t></w>
<w><t>pan-han-dler</t></w>
<w><t>pan-head</t></w>
@@ -115937,7 +115940,7 @@
<w><t>passed</t></w>
<w><t>pas-sel</t></w>
<w><t>passe-men-terie</t></w>
-<w><t>pas-sen-ger</t></w>
+<w><t>pas-sen-ger</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pas-sen-ger pi-geon</t></phrase>
<w><t>passe=par-tout</t></w>
<w><t>passe-pied</t></w>
@@ -116292,7 +116295,7 @@
<w><t>pat-ter</t></w>
<w><t>pat-ter-er</t></w>
<w><t>pat-ter-ist</t></w>
-<w><t>pat-tern</t></w>
+<w><t>pat-tern</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pat-tern-a-ble</t></w>
<w><t>pat-tern-er</t></w>
<w><t>pat-tern-less</t></w>
@@ -119561,7 +119564,7 @@
<w><t>pick-i-est</t></w>
<w><t>pick-in</t></w>
<w><t>pick-ings</t></w>
-<w><t>pick-le</t></w>
+<w><t>pick-le</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pick-led</t></w>
<w><t>pick-lock</t></w>
<w><t>Pick-ney</t></w>
@@ -119611,7 +119614,7 @@
<w><t>pic-to-ri-al-i-za-tion</t></w>
<w><t>pic-to-ri-al-ly</t></w>
<w><t>pic-to-ri-al-ness</t></w>
-<w><t>pic-ture</t></w>
+<w><t>pic-ture</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pic-ture card</t></phrase>
<w><t>pic-tured</t></w>
<w><t>pic-ture-go-er</t></w>
@@ -119716,7 +119719,7 @@
<w><t>pi-e-zo-met-ric</t></w>
<w><t>pi-e-zom-e-try</t></w>
<w><t>pif-fle</t></w>
-<w><t>pig</t></w>
+<w><t>pig</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Pi-galle</t></w>
<w><t>pig-boat</t></w>
<w><t>pi-geon</t></w>
@@ -120089,7 +120092,7 @@
<w><t>pi-pa</t></w>
<w><t>pip-age</t></w>
<w><t>pi-pal</t></w>
-<w><t>pipe</t></w>
+<w><t>pipe</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pipe-clay</t></w>
<phrase><t>pipe clean-er</t></phrase>
<w><t>pipe-fish</t></w>
@@ -120150,7 +120153,7 @@
<w><t>pi-ra-nha</t></w>
<w><t>pi-ra-rat-ed</t></w>
<w><t>pi-ra-rat-ing</t></w>
-<w><t>pi-rate</t></w>
+<w><t>pi-rate</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pi-rate-like</t></w>
<w><t>pi-rat-i-cal</t></w>
<w><t>pi-rat-i-cal-ly</t></w>
@@ -120547,7 +120550,7 @@
<w><t>plant</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>plant-a-ble</t></w>
<w><t>Plan-tag-e-net</t></w>
-<w><t>plan-tain</t></w>
+<w><t>plan-tain</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>plan-tain=eat-er</t></w>
<phrase><t>plan-tain lil-y</t></phrase>
<w><t>plan-tar</t></w>
@@ -120807,9 +120810,10 @@
<w><t>pleas-a-ble</t></w>
<w><t>pleas-ance</t></w>
<w><t>Pleas-ant</t></w>
-<w><t>pleas-ant</t></w>
+<w><t>pleas-ant</t><adjective><extensible/></adjective></w>
<phrase><t>Pleas-ant Is-land</t></phrase>
-<w><t>pleas-ant-ness</t></w>
+<w><t>pleas-ant-ly</t><adverb/></w>
+<w><t>pleas-ant-ness</t><noun/></w>
<w><t>Pleas-an-ton</t></w>
<w><t>pleas-ant-ry</t></w>
<w><t>Pleas-ant-ville</t></w>
@@ -120855,7 +120859,7 @@
<w><t>plec-tron</t></w>
<w><t>plec-trum</t></w>
<w><t>pled</t></w>
-<w><t>pledge</t></w>
+<w><t>pledge</t><verb><regular-root/></verb></w>
<w><t>pledge-a-ble</t></w>
<w><t>pledg-ee</t></w>
<w><t>pledge-less</t></w>
@@ -121159,7 +121163,7 @@
<w><t>plu-vi-os-i-ty</t></w>
<w><t>plu-vi-ous</t></w>
<w><t>Plu-vi-us</t></w>
-<w><t>ply</t></w>
+<w><t>ply</t><verb><regular-root/></verb></w>
<w><t>ply-er</t></w>
<w><t>ply-ing</t></w>
<w><t>ply-ing-ly</t></w>
@@ -121500,7 +121504,7 @@
<w><t>Po-lar-oid</t></w>
<phrase><t>po-lar se-quence</t></phrase>
<w><t>pol-der</t></w>
-<w><t>pole</t></w>
+<w><t>pole</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Pole</t></w>
<w><t>pole-ax</t></w>
<w><t>pole-axe</t></w>
@@ -122175,7 +122179,7 @@
<w><t>pop-u-lar-ly</t></w>
<phrase><t>pop-u-lar mu-sic</t></phrase>
<phrase><t>pop-u-lar sov-er-eign-ty</t></phrase>
-<w><t>pop-u-late</t></w>
+<w><t>pop-u-late</t><verb><regular-root/></verb></w>
<w><t>pop-u-la-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pop-u-la-tion-al</t></w>
<phrase><t>pop-u-la-tion ex-plo-sion</t></phrase>
@@ -122934,10 +122938,11 @@
<phrase><t>po-tas-si-um per-man-ga-nate</t></phrase>
<phrase><t>po-tas-si-um sul-phate</t></phrase>
<w><t>po-ta-tion</t></w>
-<w><t>po-ta-to</t></w>
+<w><t>po-ta-to</t><noun><singular/><convertible-to-possessive/></noun></w>
<phrase><t>po-ta-to bee-tle</t></phrase>
<phrase><t>po-ta-to chip</t></phrase>
<phrase><t>po-ta-to crisp</t></phrase>
+<w><t>po-ta-toes</t><noun><plural/></noun></w>
<w><t>po-ta-to-ry</t></w>
<w><t>Pot-a-wat-o-mi</t></w>
<w><t>pot-bel-lied</t></w>
@@ -123076,7 +123081,7 @@
<w><t>pound-al</t></w>
<w><t>pound-er</t></w>
<w><t>pound=fool-ish</t></w>
-<w><t>pour</t></w>
+<w><t>pour</t><verb><regular-root/></verb></w>
<w><t>pour-a-bil-i-ty</t></w>
<w><t>pour-a-ble</t></w>
<w><t>pour-boire</t></w>
@@ -123178,7 +123183,7 @@
<phrase><t>prac-ti-cal joke</t></phrase>
<w><t>prac-ti-cal-ly</t></w>
<w><t>prac-ti-cal-ness</t></w>
-<w><t>prac-tice</t></w>
+<w><t>prac-tice</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>prac-ticed</t></w>
<w><t>prac-tic-er</t></w>
<w><t>prac-tic-ing</t></w>
@@ -123954,6 +123959,7 @@
<w><t>pre-con-cern</t></w>
<w><t>pre-con-cern-ment</t></w>
<w><t>pre-con-cert</t></w>
+<w><t>pre-con-cert-ed</t><adjective/></w>
<w><t>pre-con-cert-ed-ly</t></w>
<w><t>pre-con-cert-ed-ness</t></w>
<w><t>pre-con-ces-sion</t></w>
@@ -126963,7 +126969,7 @@
<w><t>pri-mus-es</t></w>
<phrase><t>pri-mus in-ter pa-res</t></phrase>
<w><t>prin</t></w>
-<w><t>prince</t></w>
+<w><t>prince</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Prince</t></w>
<phrase><t>Prince Al-bert</t></phrase>
<phrase><t>prince con-sort</t></phrase>
@@ -127272,7 +127278,7 @@
<w><t>pro=Ca-thol-i-cism</t></w>
<w><t>pro-c-bal</t></w>
<w><t>pro-ce-dure</t></w>
-<w><t>pro-ceed</t></w>
+<w><t>pro-ceed</t><verb><regular-root/></verb></w>
<w><t>pro-ceed-er</t></w>
<w><t>pro-ceed-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pro-ceeds</t></w>
@@ -128257,7 +128263,8 @@
<w><t>Pros-per</t></w>
<w><t>pros-per-i-ty</t></w>
<w><t>Pros-per-o</t></w>
-<w><t>pros-per-ous</t></w>
+<w><t>pros-per-ous</t><adjective><extensible value="false"/></adjective></w>
+<w><t>pros-per-ous-ly</t><adverb/></w>
<w><t>pros-per-ous-ness</t></w>
<w><t>pros-pho-ra</t></w>
<w><t>pros-pho-ron</t></w>
@@ -129851,7 +129858,7 @@
<w><t>pur-plish</t></w>
<w><t>pur-plish-ness</t></w>
<w><t>pur-ply</t></w>
-<w><t>pur-port</t></w>
+<w><t>pur-port</t><verb><regular-root/></verb></w>
<w><t>pur-pôrt</t></w>
<w><t>pûr-pôrt</t></w>
<w><t>pur-pose</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
@@ -131404,7 +131411,7 @@
<w><t>quest</t></w>
<w><t>quest-er</t></w>
<w><t>quest-ing-ly</t></w>
-<w><t>ques-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>ques-tion</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ques-tion-a-bil-i-ty</t></w>
<w><t>ques-tion-a-ble</t></w>
<w><t>ques-tion-a-ble-ness</t></w>
@@ -132360,7 +132367,7 @@
<w><t>ran-sack</t></w>
<w><t>ran-sack-er</t></w>
<w><t>ran-seur</t></w>
-<w><t>ran-som</t></w>
+<w><t>ran-som</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Ran-som</t></w>
<w><t>Ran-some</t></w>
<w><t>ran-som-er</t></w>
@@ -132706,7 +132713,7 @@
<phrase><t>raw ma-te-ri-al</t></phrase>
<w><t>raw-ness</t></w>
<w><t>Raws-thorne</t></w>
-<w><t>ray</t></w>
+<w><t>ray</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ray</t></w>
<w><t>ra-ya</t></w>
<w><t>ra-yah</t></w>
@@ -133508,7 +133515,8 @@
<w><t>re-cit-er</t></w>
<w><t>re-cit-ing</t></w>
<w><t>reck</t></w>
-<w><t>reck-less</t></w>
+<w><t>reck-less</t><adjective><extensible value="false"/></adjective></w>
+<w><t>reck-less-ly</t><adverb/></w>
<w><t>Reck-ling-hau-sen</t></w>
<w><t>reck-on</t></w>
<w><t>reck-on-a-ble</t></w>
@@ -133515,7 +133523,7 @@
<w><t>reck-on-er</t></w>
<w><t>reck-on-ing</t></w>
<w><t>re-clad</t></w>
-<w><t>re-claim</t></w>
+<w><t>re-claim</t><verb><regular-root/></verb></w>
<w><t>re-claim-a-ble</t></w>
<w><t>re-claim-ant</t></w>
<w><t>re-claim-er</t></w>
@@ -133577,7 +133585,7 @@
<w><t>rec-og-niz-er</t></w>
<w><t>rec-og-niz-ing</t></w>
<w><t>re-cog-ni-zor</t></w>
-<w><t>re-coil</t></w>
+<w><t>re-coil</t><verb><regular-root/></verb></w>
<w><t>re-coil-ing-ly</t></w>
<w><t>re-coin</t></w>
<w><t>re-coin-age</t></w>
@@ -134318,7 +134326,7 @@
<w><t>re-ëch-o</t></w>
<w><t>re=ech-o</t></w>
<w><t>Reed</t></w>
-<w><t>reed</t></w>
+<w><t>reed</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ree-da</t></w>
<w><t>reed-bird</t></w>
<w><t>reed-buck</t></w>
@@ -134700,7 +134708,7 @@
<w><t>re-form-a-ble</t></w>
<w><t>re-form-a-ble-ness</t></w>
<w><t>Ref-or-ma-tion</t></w>
-<w><t>ref-or-ma-tion</t></w>
+<w><t>ref-or-ma-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-form-a-tive</t></w>
<w><t>re-form-a-tive-ly</t></w>
<w><t>re-form-a-tive-ness</t></w>
@@ -134755,7 +134763,7 @@
<w><t>re-fram-ing</t></w>
<w><t>re-fran-gi-ble</t></w>
<w><t>re-freeze</t></w>
-<w><t>re-fresh</t></w>
+<w><t>re-fresh</t><verb><regular-root/></verb></w>
<w><t>re-fresh-en</t></w>
<w><t>re-fresh-er</t></w>
<phrase><t>re-fresh-er course</t></phrase>
@@ -135433,7 +135441,7 @@
<w><t>reiv-ing</t></w>
<w><t>re-jail</t></w>
<w><t>Ré-jane</t></w>
-<w><t>re-ject</t></w>
+<w><t>re-ject</t><verb><regular-root/></verb></w>
<w><t>re-ject-a-ble</t></w>
<w><t>re-ject-ee</t></w>
<w><t>re-ject-er</t></w>
@@ -135609,7 +135617,7 @@
<phrase><t>re-lief map</t></phrase>
<w><t>re-li-er</t></w>
<w><t>re-liev-a-ble</t></w>
-<w><t>re-lieve</t></w>
+<w><t>re-lieve</t><verb><regular-root/></verb></w>
<w><t>re-lieved</t></w>
<w><t>re-liev-ed-ly</t></w>
<w><t>re-liev-er</t></w>
@@ -135772,7 +135780,7 @@
<w><t>re-me-di-a-tion</t></w>
<w><t>rem-e-died</t></w>
<w><t>rem-e-di-less</t></w>
-<w><t>rem-e-dy</t></w>
+<w><t>rem-e-dy</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>rem-e-dy-ing</t></w>
<w><t>re-melt</t></w>
<w><t>re-mem-ber</t><verb><regular-root/></verb></w>
@@ -136161,7 +136169,7 @@
<w><t>re-pag-i-na-tion</t></w>
<w><t>re-paid</t><verb><regular-ro...
[truncated message content] |
|
From: <vic...@us...> - 2022-07-02 22:22:27
|
Revision: 12699
http://sourceforge.net/p/foray/code/12699
Author: victormote
Date: 2022-07-02 22:22:23 +0000 (Sat, 02 Jul 2022)
Log Message:
-----------
Convert remaining apostrophes to typographical apostrophes.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionarySorter.java
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 22:14:48 UTC (rev 12698)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 22:22:23 UTC (rev 12699)
@@ -68,13 +68,13 @@
<w><t>Aar-gau</t></w>
<w><t>Aar-hus</t></w>
<w><t>Aar-on</t></w>
-<phrase><t>Aa-ron's beard</t></phrase>
-<w><t>Aa-ron's=beard</t></w>
-<phrase><t>Aa-ron's rod</t></phrase>
<w><t>Aa-ron-ic</t></w>
<w><t>Aa-ron-i-cal</t></w>
<w><t>Aa-ron-ite</t></w>
<w><t>Aar-on-it-ic</t></w>
+<phrase><t>Aa-ron’s beard</t></phrase>
+<w><t>Aa-ron’s=beard</t></w>
+<phrase><t>Aa-ron’s rod</t></phrase>
<w><t>ab-a</t></w>
<w><t>a-ba</t></w>
<w><t>a-bac</t></w>
@@ -1675,8 +1675,6 @@
<w><t>A-dal</t></w>
<w><t>Ad-al-bert</t></w>
<w><t>Ad-am</t></w>
-<phrase><t>Ad-am's ap-ple</t></phrase>
-<w><t>Ad-am's=nee-dle</t></w>
<w><t>Ad-a-ma</t></w>
<w><t>Ad-am=and=Eve</t></w>
<w><t>ad-a-mant</t></w>
@@ -1690,7 +1688,9 @@
<w><t>Ad-am-ite</t></w>
<w><t>Ad-am-it-ic</t></w>
<w><t>Ad-ams</t></w>
+<phrase><t>Ad-am’s ap-ple</t></phrase>
<w><t>ad-ams-ite</t></w>
+<w><t>Ad-am’s=nee-dle</t></w>
<phrase><t>Ad-ams=Stokes syn-drome</t></phrase>
<w><t>A-da-na</t></w>
<w><t>A-da-pa</t></w>
@@ -1723,9 +1723,9 @@
<w><t>ad-den-dum</t></w>
<w><t>add-er</t></w>
<w><t>ad-der</t></w>
-<w><t>ad-der's=meat</t></w>
-<w><t>ad-der's=mouth</t></w>
-<w><t>ad-der's=tongue</t></w>
+<w><t>ad-der’s=meat</t></w>
+<w><t>ad-der’s=mouth</t></w>
+<w><t>ad-der’s=tongue</t></w>
<w><t>add-i-ble</t></w>
<w><t>ad-dict</t></w>
<w><t>ad-dict-ed</t></w>
@@ -1737,8 +1737,8 @@
<w><t>Ad-ding-ton</t></w>
<phrase><t>Ad-dis Ab-a-ba</t></phrase>
<w><t>Ad-di-son</t></w>
-<phrase><t>Ad-di-son's dis-ease</t></phrase>
<w><t>Ad-di-so-ni-an</t></w>
+<phrase><t>Ad-di-son’s dis-ease</t></phrase>
<w><t>ad-dit-a-ment</t></w>
<w><t>ad-dit-a-men-ta-ry</t></w>
<w><t>ad-di-tion</t></w>
@@ -2600,7 +2600,7 @@
<w><t>af-fa-bly</t></w>
<w><t>af-fair</t></w>
<w><t>af-faire</t></w>
-<phrase><t>af-faire d'hon-neur</t></phrase>
+<phrase><t>af-faire d’hon-neur</t></phrase>
<w><t>af-fairs</t></w>
<w><t>af-fect</t></w>
<w><t>af-fec-ta-tion</t></w>
@@ -3283,9 +3283,9 @@
<w><t>aim-less-ness</t></w>
<w><t>ain</t></w>
<w><t>a-in</t></w>
-<w><t>ain't</t></w>
<w><t>aî-né</t></w>
<w><t>aî-née</t></w>
+<w><t>ain’t</t></w>
<w><t>Ain-tab</t></w>
<w><t>Ai-nu</t></w>
<w><t>air</t></w>
@@ -4150,8 +4150,6 @@
<w><t>al-kyl-ic</t></w>
<w><t>al-kyne</t></w>
<w><t>all</t></w>
-<w><t>al-l'an-ti-ca</t></w>
-<w><t>all'ot-ta-va</t></w>
<w><t>Al-la</t></w>
<phrase><t>al-la bre-ve</t></phrase>
<w><t>al-la-ches-the-sia</t></w>
@@ -4162,6 +4160,7 @@
<w><t>Al-lan=a=Dale</t></w>
<w><t>al-lan-ite</t></w>
<w><t>al-la-nit-ic</t></w>
+<w><t>al-l’an-ti-ca</t></w>
<w><t>al-lan-to-ic</t></w>
<w><t>al-lan-toid</t></w>
<w><t>al-lan-toi-dal</t></w>
@@ -4358,6 +4357,7 @@
<w><t>al-lot-ro-pism</t></w>
<w><t>al-lot-ro-py</t></w>
<w><t>al-lot-ta-ble</t></w>
+<w><t>all’ot-ta-va</t></w>
<w><t>al-lot-ted</t></w>
<w><t>al-lot-tee</t></w>
<w><t>al-lot-ter</t></w>
@@ -5037,7 +5037,6 @@
<w><t>a-merc-er</t></w>
<w><t>a-merc-ing</t></w>
<w><t>A-mer-i-ca</t></w>
-<phrase><t>A-mer-i-ca's Cup</t></phrase>
<w><t>A-mer-i-can</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>A-mer-i-ca-na</t></w>
<phrase><t>A-mer-i-can al-oe</t></phrase>
@@ -5069,6 +5068,7 @@
<phrase><t>A-mer-i-can Sa-mo-a</t></phrase>
<phrase><t>A-mer-i-can Stand-ard Ver-sion</t></phrase>
<phrase><t>A-mer-i-can tryp-a-no-so-mi-a-sis</t></phrase>
+<phrase><t>A-mer-i-ca’s Cup</t></phrase>
<w><t>am-er-i-ci-um</t></w>
<w><t>A-me-ri-go</t></w>
<phrase><t>A-mer-i-go Ve-spuc-ci</t></phrase>
@@ -5225,7 +5225,6 @@
<w><t>am-mo-no-lyz-ing</t></w>
<w><t>am-moph-i-lous</t></w>
<w><t>am-mu-ni-tion</t></w>
-<w><t>amn't</t></w>
<w><t>am-ne-sia</t></w>
<w><t>am-ne-si-a</t></w>
<w><t>am-ne-si-ac</t></w>
@@ -5241,6 +5240,7 @@
<w><t>am-ni-ons</t></w>
<w><t>am-ni-ote</t></w>
<w><t>am-ni-ot-ic</t></w>
+<w><t>amn’t</t></w>
<w><t>am-o-bar-bi-tal</t></w>
<w><t>a-moe-ba</t></w>
<w><t>am-oe-bae-an</t></w>
@@ -5555,7 +5555,6 @@
<w><t>a-myx-or-rhe-a</t></w>
<w><t>a-myx-or-rhoe-a</t></w>
<w><t>an</t></w>
-<w><t>an't</t></w>
<w><t>an-a</t></w>
<w><t>a-na</t></w>
<w><t>an-a-bae-na</t></w>
@@ -5986,9 +5985,9 @@
<w><t>An-dre-ot-ti</t></w>
<w><t>An-drés</t></w>
<w><t>An-drew</t></w>
-<w><t>An-drew's=cross</t></w>
<w><t>An-drewes</t></w>
<w><t>An-drews</t></w>
+<w><t>An-drew’s=cross</t></w>
<w><t>An-dre-yev</t></w>
<w><t>an-dro-cen-tric</t></w>
<w><t>An-dro-cle-a</t></w>
@@ -6143,8 +6142,6 @@
<w><t>an-ge-kok</t></w>
<w><t>an-gel</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>An-gel</t></w>
-<phrase><t>an-gel's tears</t></phrase>
-<w><t>an-gel's=trum-pet</t></w>
<w><t>An-ge-la</t></w>
<phrase><t>an-gel cake</t></phrase>
<w><t>An-ge-le-no</t></w>
@@ -6174,6 +6171,8 @@
<w><t>an-gel-ol-o-gy</t></w>
<phrase><t>an-gel shark</t></phrase>
<w><t>an-gels=on=horse-back</t></w>
+<phrase><t>an-gel’s tears</t></phrase>
+<w><t>an-gel’s=trum-pet</t></w>
<w><t>an-ge-lus</t></w>
<w><t>An-ge-lus</t></w>
<w><t>An-ge-lyn</t></w>
@@ -6711,6 +6710,7 @@
<phrase><t>an-swer for</t></phrase>
<w><t>an-swer-less</t></w>
<w><t>an-swer-less-ly</t></w>
+<w><t>an’t</t></w>
<w><t>ant</t><noun><pluralizable/></noun></w>
<w><t>an-ta</t></w>
<w><t>ant-a-ap-i-ces</t></w>
@@ -8325,7 +8325,7 @@
<w><t>a-pos-tille</t></w>
<w><t>a-pos-tle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>a-pos-tle-hood</t></w>
-<phrase><t>A-pos-tles' Creed</t></phrase>
+<phrase><t>A-pos-tles’ Creed</t></phrase>
<w><t>a-pos-tle-ship</t></w>
<phrase><t>a-pos-tle spoon</t></phrase>
<w><t>a-pos-to-late</t></w>
@@ -8349,8 +8349,8 @@
<w><t>a-pos-tro-phized</t></w>
<w><t>a-pos-tro-phiz-ing</t></w>
<w><t>a-poth-e-car-ies</t></w>
-<phrase><t>a-poth-e-car-ies' meas-ure</t></phrase>
-<phrase><t>a-poth-e-car-ies' weight</t></phrase>
+<phrase><t>a-poth-e-car-ies’ meas-ure</t></phrase>
+<phrase><t>a-poth-e-car-ies’ weight</t></phrase>
<w><t>a-poth-e-car-y</t></w>
<w><t>ap-o-the-ci-a</t></w>
<w><t>ap-o-the-cial</t></w>
@@ -8793,7 +8793,7 @@
<w><t>A-ra-bi-an</t></w>
<phrase><t>A-ra-bi-an cam-el</t></phrase>
<phrase><t>A-ra-bi-an Des-ert</t></phrase>
-<phrase><t>A-ra-bi-an Nights' En-ter-tain-ment</t></phrase>
+<phrase><t>A-ra-bi-an Nights’ En-ter-tain-ment</t></phrase>
<phrase><t>A-ra-bi-an Sea</t></phrase>
<w><t>Ar-a-bic</t></w>
<phrase><t>Ar-a-bic nu-mer-al</t></phrase>
@@ -9068,8 +9068,8 @@
<w><t>Ar-chi-me-de-an</t></w>
<phrase><t>Ar-chi-me-de-an screw</t></phrase>
<w><t>Ar-chi-me-des</t></w>
-<phrase><t>Ar-chi-me-des' prin-ci-ple</t></phrase>
-<phrase><t>Ar-chi-me-des' screw</t></phrase>
+<phrase><t>Ar-chi-me-des’ prin-ci-ple</t></phrase>
+<phrase><t>Ar-chi-me-des’ screw</t></phrase>
<w><t>ar-chine</t></w>
<w><t>arch-ing</t></w>
<w><t>ar-chi-pe-lag-ic</t></w>
@@ -9179,7 +9179,6 @@
<w><t>Ar-e-ïth-o-üs</t></w>
<w><t>A-rei-us</t></w>
<w><t>A-rel-ia</t></w>
-<w><t>aren't</t></w>
<w><t>a-re-na</t></w>
<w><t>ar-e-na-ceous</t></w>
<phrase><t>a-re-na the-a-tre</t></phrase>
@@ -9191,6 +9190,7 @@
<w><t>ar-e-nos-i-ty</t></w>
<w><t>ar-e-nous</t></w>
<w><t>A-ren-sky</t></w>
+<w><t>aren’t</t></w>
<w><t>ar-e-o-cen-tric</t></w>
<w><t>ar-e-og-ra-phy</t></w>
<w><t>a-re-o-la</t></w>
@@ -10765,7 +10765,7 @@
<w><t>Ath-ie</t></w>
<w><t>a-thirst</t></w>
<w><t>ath-lete</t></w>
-<phrase><t>ath-lete's foot</t></phrase>
+<phrase><t>ath-lete’s foot</t></phrase>
<w><t>ath-let-ic</t></w>
<w><t>ath-let-i-cal-ly</t></w>
<w><t>ath-let-i-cism</t></w>
@@ -11675,7 +11675,7 @@
<w><t>Au-zout</t></w>
<w><t>a-va</t></w>
<w><t>A-va</t></w>
-<w><t>a-va'</t></w>
+<w><t>a-va’</t></w>
<w><t>av-a-da-vat</t></w>
<w><t>a-vail</t><verb><regular-root/></verb></w>
<w><t>a-vail-a-bil-i-ty</t></w>
@@ -11827,8 +11827,8 @@
<w><t>av-o-cet</t></w>
<w><t>av-o-di-re</t></w>
<w><t>A-vo-ga-dro</t></w>
-<phrase><t>A-vo-ga-dro's law</t></phrase>
<phrase><t>A-vo-ga-dro con-stant</t></phrase>
+<phrase><t>A-vo-ga-dro’s law</t></phrase>
<w><t>a-void</t><verb><regular-root/></verb></w>
<w><t>a-void-a-ble</t></w>
<w><t>a-void-a-bly</t></w>
@@ -12138,7 +12138,7 @@
<w><t>Bá-bí</t></w>
<w><t>ba-biche</t></w>
<w><t>ba-bied</t></w>
-<w><t>ba-bies'=breath</t></w>
+<w><t>ba-bies’=breath</t></w>
<w><t>bab-i-rous-sa</t></w>
<w><t>bab-i-ru-sa</t></w>
<w><t>bab-i-rus-sa</t></w>
@@ -12160,8 +12160,6 @@
<w><t>Ba-bur</t></w>
<w><t>ba-bush-ka</t></w>
<w><t>ba-by</t></w>
-<w><t>ba-by's=breath</t></w>
-<w><t>ba-by's=slip-pers</t></w>
<w><t>ba-by=blue=eyes</t></w>
<phrase><t>ba-by bo-nus</t></phrase>
<w><t>Ba-by=bounc-er</t></w>
@@ -12180,9 +12178,11 @@
<w><t>Bab-y-lo-ni-an</t></w>
<phrase><t>Bab-y-lo-ni-an cap-tiv-i-ty</t></phrase>
<w><t>Bab-y-lon-ish</t></w>
+<w><t>ba-by’s=breath</t></w>
<w><t>ba-by=sit</t></w>
<w><t>ba-by=sit-ter</t></w>
<phrase><t>ba-by snatch-er</t></phrase>
+<w><t>ba-by’s=slip-pers</t></w>
<phrase><t>ba-by talk</t></phrase>
<w><t>ba-by=tears</t></w>
<phrase><t>ba-by tooth</t></phrase>
@@ -12224,9 +12224,6 @@
<w><t>Bach-a-rach</t></w>
<w><t>Bach-el-ler</t></w>
<w><t>bach-e-lor</t></w>
-<w><t>bach-e-lor's</t></w>
-<w><t>bach-e-lor's=but-ton</t></w>
-<w><t>bach-e-lor's=but-tons</t></w>
<w><t>bach-e-lor=at=arms</t></w>
<w><t>bach-e-lor-dom</t></w>
<phrase><t>bach-e-lor girl</t></phrase>
@@ -12236,7 +12233,10 @@
<w><t>bach-e-lor-ly</t></w>
<phrase><t>Bach-e-lor of Arts</t></phrase>
<phrase><t>Bach-e-lor of Sci-ence</t></phrase>
+<w><t>bach-e-lor’s</t></w>
<w><t>bach-e-lors=at=arms</t></w>
+<w><t>bach-e-lor’s=but-ton</t></w>
+<w><t>bach-e-lor’s=but-tons</t></w>
<phrase><t>Bach trum-pet</t></phrase>
<w><t>ba-cil-lar</t></w>
<w><t>bac-il-lar-y</t></w>
@@ -12572,7 +12572,6 @@
<w><t>bag-work</t></w>
<w><t>bag-worm</t></w>
<w><t>bah</t></w>
-<w><t>Ba-ha'-ul-lah</t></w>
<phrase><t>Ba-h-a Blan-ca</t></phrase>
<w><t>ba-ha-dur</t></w>
<w><t>Ba-hai</t></w>
@@ -12585,6 +12584,7 @@
<w><t>Ba-ha-mas</t></w>
<w><t>Ba-ha-mi-an</t></w>
<phrase><t>Ba-ha-sa In-do-ne-si-a</t></phrase>
+<w><t>Ba-ha’-ul-lah</t></w>
<w><t>Ba-há-ul-lah</t></w>
<w><t>Ba-há-ul-láh</t></w>
<w><t>Ba-ha-wal-pur</t></w>
@@ -12623,7 +12623,7 @@
<w><t>bail-out</t></w>
<w><t>bails-man</t></w>
<w><t>Bai-ly</t></w>
-<phrase><t>Bai-ly's beads</t></phrase>
+<phrase><t>Bai-ly’s beads</t></phrase>
<w><t>Bain</t></w>
<w><t>Bain-bridge</t></w>
<w><t>bain-ite</t></w>
@@ -12656,9 +12656,9 @@
<w><t>bak-er</t></w>
<w><t>Bak-er</t></w>
<w><t>Ba-ker</t></w>
-<phrase><t>bak-er's doz-en</t></phrase>
<w><t>bak-er-ies</t></w>
<w><t>ba-ker-like</t></w>
+<phrase><t>bak-er’s doz-en</t></phrase>
<w><t>Bak-ers-field</t></w>
<w><t>bak-er-y</t></w>
<w><t>bake-shop</t></w>
@@ -13132,8 +13132,8 @@
<w><t>bank-book</t></w>
<phrase><t>bank dis-count</t></phrase>
<w><t>bank-er</t></w>
-<phrase><t>bank-er's card</t></phrase>
-<phrase><t>bank-er's or-der</t></phrase>
+<phrase><t>bank-er’s card</t></phrase>
+<phrase><t>bank-er’s or-der</t></phrase>
<w><t>bank-et</t></w>
<w><t>ban-ket</t></w>
<w><t>Bank-head</t></w>
@@ -13288,11 +13288,11 @@
<w><t>bar-be-qu-ing</t></w>
<w><t>Bar-ber</t></w>
<w><t>bar-ber</t></w>
-<phrase><t>bar-ber's itch</t></phrase>
<w><t>Bar-be-ra</t></w>
<w><t>bar-ber-ite</t></w>
<w><t>bar-ber-ry</t></w>
<w><t>bar-ber-shop</t></w>
+<phrase><t>bar-ber’s itch</t></phrase>
<w><t>bar-ber=sur-geon</t></w>
<w><t>Bar-ber-ton</t></w>
<w><t>bar-bet</t></w>
@@ -13670,7 +13670,7 @@
<w><t>Barth-i-an</t></w>
<w><t>Barth-i-an-ism</t></w>
<w><t>Bar-thol-di</t></w>
-<phrase><t>Bar-tho-lin's glands</t></phrase>
+<phrase><t>Bar-tho-lin’s glands</t></phrase>
<w><t>Bar-tho-lo-me-u</t></w>
<w><t>Bar-thol-o-mew</t></w>
<w><t>Bar-thou</t></w>
@@ -14136,7 +14136,7 @@
<w><t>bawd-y-hous-es</t></w>
<w><t>bawl</t></w>
<w><t>bawl-er</t></w>
-<w><t>baw-s'nt</t></w>
+<w><t>baw-s’nt</t></w>
<w><t>baw-tie</t></w>
<w><t>baw-ty</t></w>
<w><t>Bax</t></w>
@@ -14285,7 +14285,6 @@
<w><t>bean-y</t></w>
<w><t>Bear</t></w>
<w><t>bear</t><noun><singular/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
-<w><t>bear's=breech-es</t></w>
<w><t>bear-a-ble</t></w>
<w><t>bear-a-ble-ness</t></w>
<w><t>bear-a-bly</t></w>
@@ -14323,6 +14322,7 @@
<w><t>bear-like</t></w>
<w><t>Bé-ar-naise</t></w>
<w><t>bear-paw</t></w>
+<w><t>bear’s=breech-es</t></w>
<w><t>bear-skin</t></w>
<w><t>bear-wood</t></w>
<w><t>beast</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
@@ -14521,8 +14521,8 @@
<w><t>Bed-ling-ton</t></w>
<w><t>Bed-ling-ton-shire</t></w>
<phrase><t>Bed-ling-ton ter-ri-er</t></phrase>
-<phrase><t>Bed-loe's Is-land</t></phrase>
<phrase><t>Bed-loe Is-land</t></phrase>
+<phrase><t>Bed-loe’s Is-land</t></phrase>
<w><t>bed-mak-er</t></w>
<w><t>bed-mak-ing</t></w>
<w><t>bed-mate</t></w>
@@ -14682,9 +14682,6 @@
<w><t>be-get-ter</t></w>
<w><t>be-get-ting</t></w>
<w><t>beg-gar</t></w>
-<w><t>beg-gar's=lice</t></w>
-<w><t>beg-gar's=tick</t></w>
-<w><t>beg-gar's=ticks</t></w>
<w><t>beg-gar-dom</t></w>
<w><t>beg-gar-hood</t></w>
<w><t>beg-gar-ies</t></w>
@@ -14692,6 +14689,9 @@
<w><t>beg-gar-li-ness</t></w>
<w><t>beg-gar-ly</t></w>
<w><t>beg-gar=my=neigh-bour</t></w>
+<w><t>beg-gar’s=lice</t></w>
+<w><t>beg-gar’s=tick</t></w>
+<w><t>beg-gar’s=ticks</t></w>
<w><t>beg-gar=tick</t></w>
<w><t>beg-gar=ticks</t></w>
<w><t>beg-gar-weed</t></w>
@@ -15398,8 +15398,8 @@
<w><t>Bern-is</t></w>
<w><t>Ber-nouil-li</t></w>
<w><t>Ber-noul-li</t></w>
-<phrase><t>Ber-noul-li's prin-ci-ple</t></phrase>
<w><t>Ber-noul-li-an</t></w>
+<phrase><t>Ber-noul-li’s prin-ci-ple</t></phrase>
<w><t>Bern-stein</t></w>
<w><t>Bern-storff</t></w>
<w><t>Ber-o-ë</t></w>
@@ -16503,9 +16503,6 @@
<w><t>Birch-ite</t></w>
<w><t>Bird</t></w>
<w><t>bird</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
-<phrase><t>bird's=foot tre-foil</t></phrase>
-<phrase><t>bird's=nest fun-gus</t></phrase>
-<phrase><t>bird's=nest or-chid</t></phrase>
<w><t>bird-bath</t></w>
<w><t>bird-brain</t></w>
<w><t>bird-brained</t></w>
@@ -16530,9 +16527,12 @@
<phrase><t>bird of par-a-dise</t></phrase>
<phrase><t>bird of pas-sage</t></phrase>
<phrase><t>bird pep-per</t></phrase>
-<w><t>birds'=nest-ing</t></w>
<w><t>Birds-bor-o</t></w>
<w><t>bird-seed</t></w>
+<phrase><t>bird’s=foot tre-foil</t></phrase>
+<phrase><t>bird’s=nest fun-gus</t></phrase>
+<w><t>birds’=nest-ing</t></w>
+<phrase><t>bird’s=nest or-chid</t></phrase>
<phrase><t>bird spi-der</t></phrase>
<phrase><t>bird ta-ble</t></phrase>
<w><t>bird=watch-er</t></w>
@@ -16612,10 +16612,6 @@
<w><t>bish</t></w>
<w><t>bish-op</t></w>
<w><t>Bish-op</t></w>
-<w><t>bish-op's=cap</t></w>
-<phrase><t>bish-op's mi-tre</t></phrase>
-<phrase><t>bish-op's weed</t></phrase>
-<w><t>bish-op's=weed</t></w>
<phrase><t>Bish-op Auck-land</t></phrase>
<w><t>bish-op-bird</t></w>
<w><t>bish-oped</t></w>
@@ -16623,7 +16619,11 @@
<w><t>bish-op-less</t></w>
<w><t>bish-op-like</t></w>
<w><t>bish-op-ric</t></w>
+<w><t>bish-op’s=cap</t></w>
<phrase><t>bish-op sleeve</t></phrase>
+<phrase><t>bish-op’s mi-tre</t></phrase>
+<phrase><t>bish-op’s weed</t></phrase>
+<w><t>bish-op’s=weed</t></w>
<w><t>Bish-op-ville</t></w>
<w><t>bis-hy-drox-y-cou-ma-rin</t></w>
<w><t>Bi-si-tun</t></w>
@@ -17118,8 +17118,8 @@
<w><t>bleb-by</t></w>
<w><t>bleed</t></w>
<w><t>bleed-er</t></w>
-<phrase><t>bleed-er's dis-ease</t></phrase>
<phrase><t>bleed-er re-sis-tor</t></phrase>
+<phrase><t>bleed-er’s dis-ease</t></phrase>
<w><t>bleed-ing</t></w>
<phrase><t>bleed-ing heart</t></phrase>
<w><t>bleep</t></w>
@@ -17585,8 +17585,6 @@
<w><t>B-me</t></w>
<w><t>BMJ</t></w>
<w><t>BMus</t></w>
-<w><t>bo's'n</t></w>
-<w><t>bo'-s'n</t></w>
<w><t>bo-a</t></w>
<w><t>Bo-ab-dil</t></w>
<w><t>BOAC</t></w>
@@ -17643,7 +17641,7 @@
<w><t>boat-man-ship</t></w>
<w><t>boats-man</t></w>
<w><t>boat-swain</t></w>
-<phrase><t>boat-swain's chair</t></phrase>
+<phrase><t>boat-swain’s chair</t></phrase>
<w><t>boat-tail</t></w>
<w><t>boat-wright</t></w>
<w><t>boat-yard</t></w>
@@ -17883,7 +17881,7 @@
<w><t>Bo-kha-ra</t></w>
<w><t>Bo-kha-ran</t></w>
<phrase><t>Bo-kha-ra rug</t></phrase>
-<w><t>Bok-m'</t></w>
+<w><t>Bok-m’</t></w>
<w><t>bok-ma-kie-rie</t></w>
<w><t>bo-ko</t></w>
<w><t>Bo-ko-to</t></w>
@@ -18315,7 +18313,7 @@
<w><t>bop-ping</t></w>
<w><t>bop-ster</t></w>
<w><t>bor</t></w>
-<w><t>Bo-r'</t></w>
+<w><t>Bo-r’</t></w>
<w><t>bo-ra</t></w>
<w><t>bor-a-ble</t></w>
<phrase><t>Bo-ra Bo-ra</t></phrase>
@@ -18457,6 +18455,8 @@
<w><t>bosk-i-ness</t></w>
<w><t>Bos-kop</t></w>
<w><t>bosk-y</t></w>
+<w><t>bo’s’n</t></w>
+<w><t>bo’-s’n</t></w>
<w><t>Bos-ni-a</t></w>
<phrase><t>Bos-ni-a and Her-ze-go-vi-na</t></phrase>
<w><t>Bos-ni-an</t></w>
@@ -18900,7 +18900,7 @@
<w><t>boy-o</t></w>
<phrase><t>Bo-yo-ma Falls</t></phrase>
<w><t>boy-os</t></w>
-<phrase><t>Boys' Bri-gade</t></phrase>
+<phrase><t>Boys’ Bri-gade</t></phrase>
<w><t>boy-sen-ber-ry</t></w>
<w><t>Boz</t></w>
<w><t>Boz-ca-a-da</t></w>
@@ -18911,7 +18911,6 @@
<w><t>BPC</t></w>
<w><t>bpi</t></w>
<w><t>bpt</t></w>
-<w><t>br'er</t></w>
<w><t>bra</t></w>
<w><t>braa-ta</t></w>
<w><t>braa-tas</t></w>
@@ -19115,7 +19114,7 @@
<w><t>bram-bling</t></w>
<w><t>bram-bly</t></w>
<w><t>Bram-ley</t></w>
-<phrase><t>Bram-ley's seed-ling</t></phrase>
+<phrase><t>Bram-ley’s seed-ling</t></phrase>
<w><t>Bram-well</t></w>
<w><t>bran</t></w>
<w><t>Bran</t></w>
@@ -19475,6 +19474,7 @@
<w><t>brent</t></w>
<w><t>Bren-ta-no</t></w>
<w><t>Brent-wood</t></w>
+<w><t>br’er</t></w>
<w><t>Bres</t></w>
<w><t>Bre-scia</t></w>
<w><t>Bre-scian</t></w>
@@ -19519,8 +19519,8 @@
<w><t>brew-age</t></w>
<w><t>brew-er</t></w>
<w><t>Brew-er</t></w>
-<phrase><t>brew-er's yeast</t></phrase>
<w><t>brew-er-ies</t></w>
+<phrase><t>brew-er’s yeast</t></phrase>
<w><t>brew-er-y</t></w>
<w><t>brew-house</t></w>
<w><t>brew-hous-es</t></w>
@@ -19657,7 +19657,6 @@
<w><t>Brig-house</t></w>
<w><t>Bright</t></w>
<w><t>bright</t><adjective><extensible/></adjective></w>
-<phrase><t>Bright's dis-ease</t></phrase>
<w><t>bright-en</t><verb><regular-root/></verb></w>
<w><t>bright-en-er</t></w>
<w><t>bright-ish</t></w>
@@ -19665,6 +19664,7 @@
<w><t>bright-ness</t></w>
<w><t>Bright-on</t></w>
<w><t>brights</t></w>
+<phrase><t>Bright’s dis-ease</t></phrase>
<w><t>Bright-wa-ters</t></w>
<w><t>bright-work</t></w>
<w><t>Brig-id</t></w>
@@ -20358,7 +20358,7 @@
<w><t>buck-ler</t></w>
<w><t>buck-ler=fern</t></w>
<w><t>Buck-ley</t></w>
-<phrase><t>Buck-ley's chance</t></phrase>
+<phrase><t>Buck-ley’s chance</t></phrase>
<w><t>buck-ling</t></w>
<w><t>Buck-ner</t></w>
<w><t>buck-o</t></w>
@@ -20627,8 +20627,8 @@
<w><t>bull-necked</t></w>
<w><t>bull-nose</t></w>
<w><t>bull-ock</t></w>
-<phrase><t>bull-ock's heart</t></phrase>
-<w><t>bul-lock's=heart</t></w>
+<phrase><t>bull-ock’s heart</t></phrase>
+<w><t>bul-lock’s=heart</t></w>
<w><t>bull-ock-y</t></w>
<w><t>bul-lous</t></w>
<w><t>bull-pen</t></w>
@@ -21095,7 +21095,7 @@
<w><t>bus-kined</t></w>
<w><t>bus-load</t></w>
<w><t>bus-man</t></w>
-<phrase><t>bus-man's hol-i-day</t></phrase>
+<phrase><t>bus-man’s hol-i-day</t></phrase>
<w><t>Bu-so-ni</t></w>
<w><t>Bus-ra</t></w>
<w><t>Bus-rah</t></w>
@@ -21137,14 +21137,14 @@
<w><t>Butch</t></w>
<w><t>butch</t></w>
<w><t>butch-er</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
-<w><t>butch-er's</t></w>
-<w><t>butch-er's=broom</t></w>
-<phrase><t>butch-er's hook</t></phrase>
<w><t>butch-er-bird</t></w>
<w><t>butch-er-er</t></w>
<w><t>butch-er-ies</t></w>
<w><t>butch-er-li-ness</t></w>
<w><t>butch-er-ly</t></w>
+<w><t>butch-er’s</t></w>
+<w><t>butch-er’s=broom</t></w>
+<phrase><t>butch-er’s hook</t></phrase>
<w><t>butch-er-y</t></w>
<w><t>Bute</t></w>
<w><t>Bu-te-nandt</t></w>
@@ -21270,10 +21270,10 @@
<w><t>buy</t></w>
<w><t>buy-a-ble</t></w>
<w><t>buy-er</t></w>
-<phrase><t>buy-ers' mar-ket</t></phrase>
+<phrase><t>buy-ers’ mar-ket</t></phrase>
<w><t>buy-ing</t></w>
<phrase><t>buy in-to</t></phrase>
-<phrase><t>Buys Bal-lot's Law</t></phrase>
+<phrase><t>Buys Bal-lot’s Law</t></phrase>
<w><t>buzz</t></w>
<w><t>buz-zard</t></w>
<w><t>buz-zard-like</t></w>
@@ -21369,9 +21369,7 @@
<w><t>C/N</t></w>
<w><t>c/n</t></w>
<w><t>c/o</t></w>
-<w><t>C's</t></w>
<w><t>C=3</t></w>
-<w><t>ca'can-ny</t></w>
<w><t>Caa-ba</t></w>
<w><t>Ca-an-thus</t></w>
<w><t>CAB</t></w>
@@ -21495,6 +21493,7 @@
<w><t>ca-bu-ya</t></w>
<w><t>Ca-ca</t></w>
<w><t>ca-ca-na-pa</t></w>
+<w><t>ca’can-ny</t></w>
<w><t>ca-ca-o</t></w>
<w><t>ca-ca-os</t></w>
<w><t>cac-cia</t></w>
@@ -21934,9 +21933,9 @@
<w><t>Ca-le-tor</t></w>
<w><t>Ca-lex-i-co</t></w>
<w><t>calf</t></w>
-<phrase><t>calf's=foot jel-ly</t></phrase>
<w><t>calf-less</t></w>
<w><t>calf-like</t></w>
+<phrase><t>calf’s=foot jel-ly</t></phrase>
<w><t>calf-skin</t></w>
<w><t>Cal-ga-ry</t></w>
<w><t>Cal-houn</t></w>
@@ -22210,8 +22209,6 @@
<w><t>Cam-den</t></w>
<w><t>came</t></w>
<w><t>cam-el</t></w>
-<phrase><t>cam-el's hair</t></phrase>
-<w><t>cam-el's=hair</t></w>
<w><t>cam-el-eer</t></w>
<w><t>cam-el-hair</t></w>
<w><t>Ca-mel-lia</t></w>
@@ -22222,6 +22219,8 @@
<w><t>Ca-mel-o-par-da-lis</t></w>
<w><t>Ca-mel-o-par-dus</t></w>
<w><t>Cam-e-lot</t></w>
+<phrase><t>cam-el’s hair</t></phrase>
+<w><t>cam-el’s=hair</t></w>
<w><t>Cam-em-bert</t></w>
<w><t>Ca-me-nae</t></w>
<w><t>cam-e-o</t></w>
@@ -22374,7 +22373,6 @@
<w><t>cam-wood</t></w>
<w><t>Can</t></w>
<w><t>can</t></w>
-<w><t>can't</t></w>
<w><t>Ca-na</t></w>
<w><t>Ca-naan</t></w>
<w><t>Ca-naan-ite</t></w>
@@ -22694,6 +22692,7 @@
<w><t>can-so</t></w>
<w><t>Can-so</t></w>
<w><t>canst</t></w>
+<w><t>can’t</t></w>
<w><t>Cant</t></w>
<w><t>cant</t></w>
<w><t>Cantab</t></w>
@@ -22799,7 +22798,6 @@
<w><t>Cao-da-ism</t></w>
<w><t>caou-tchouc</t></w>
<w><t>cap</t></w>
-<w><t>Cap'n</t></w>
<w><t>ca-pa</t></w>
<w><t>ca-pa-bil-i-ty</t></w>
<w><t>Ca-pa-blan-ca</t></w>
@@ -22924,6 +22922,7 @@
<w><t>ca-pit-u-lum</t></w>
<w><t>cap-less</t></w>
<w><t>cap-lin</t></w>
+<w><t>Cap’n</t></w>
<w><t>ca-po</t></w>
<phrase><t>cap of main-te-nance</t></phrase>
<w><t>ca-pon</t></w>
@@ -23007,8 +23006,8 @@
<w><t>cap-sul-iz-ing</t></w>
<w><t>Capt</t></w>
<w><t>cap-tain</t></w>
-<phrase><t>cap-tain's bis-cuit</t></phrase>
<w><t>cap-tain-cy</t></w>
+<phrase><t>cap-tain’s bis-cuit</t></phrase>
<w><t>cap-tain-ship</t></w>
<w><t>cap-tion</t></w>
<w><t>cap-tion-less</t></w>
@@ -23544,7 +23543,6 @@
<w><t>Car-nus</t></w>
<w><t>car-ny</t></w>
<w><t>Car-o</t></w>
-<phrase><t>Car-o's ac-id</t></phrase>
<w><t>car-ob</t></w>
<w><t>ca-roche</t></w>
<w><t>car-ol</t></w>
@@ -23570,6 +23568,7 @@
<w><t>car-o-lus-es</t></w>
<w><t>car-om</t></w>
<w><t>ca-roon</t></w>
+<phrase><t>Car-o’s ac-id</t></phrase>
<w><t>car-o-tene</t></w>
<w><t>ca-rot-e-noid</t></w>
<w><t>Ca-roth-ers</t></w>
@@ -24060,10 +24059,6 @@
<phrase><t>ca-sus bel-li</t></phrase>
<w><t>Cas-well</t></w>
<w><t>cat</t></w>
-<phrase><t>cat's cra-dle</t></phrase>
-<phrase><t>cat's py-ja-mas</t></phrase>
-<phrase><t>cat's whisk-er</t></phrase>
-<phrase><t>cat's whisk-ers</t></phrase>
<w><t>cat-a-bap-tist</t></w>
<w><t>ca-tab-a-sis</t></w>
<w><t>cat-a-bol-ic</t></w>
@@ -24319,7 +24314,7 @@
<w><t>Cath-er</t></w>
<w><t>Cath-er-ine</t></w>
<w><t>Cath-e-rine</t></w>
-<phrase><t>Cath-e-rine de' Med-i-ci</t></phrase>
+<phrase><t>Cath-e-rine de’ Med-i-ci</t></phrase>
<phrase><t>Cath-e-rine I</t></phrase>
<phrase><t>Cath-e-rine II</t></phrase>
<phrase><t>Cath-e-rine of Ar-a-gon</t></phrase>
@@ -24399,7 +24394,7 @@
<w><t>cat-nap-ping</t></w>
<w><t>cat-nip</t></w>
<w><t>Ca-to</t></w>
-<w><t>cat=o'=moun-tain</t></w>
+<w><t>cat=o’=moun-tain</t></w>
<w><t>Ca-ton</t></w>
<w><t>Ca-tons-ville</t></w>
<w><t>ca-top-tric</t></w>
@@ -24407,12 +24402,16 @@
<w><t>ca-top-tri-cal-ly</t></w>
<w><t>ca-top-trics</t></w>
<w><t>Ca-tre-us</t></w>
+<phrase><t>cat’s cra-dle</t></phrase>
<w><t>Cats-kill</t></w>
<phrase><t>Cats-kill Moun-tains</t></phrase>
<w><t>Cats-kills</t></w>
<w><t>cats-paw</t></w>
+<phrase><t>cat’s py-ja-mas</t></phrase>
<w><t>cat-stick</t></w>
<w><t>cat-sup</t></w>
+<phrase><t>cat’s whisk-er</t></phrase>
+<phrase><t>cat’s whisk-ers</t></phrase>
<w><t>Catt</t></w>
<w><t>cat-tail</t></w>
<w><t>cat-ta-lo</t></w>
@@ -25332,11 +25331,6 @@
<w><t>CGM</t></w>
<w><t>CGS</t></w>
<phrase><t>cgs u-nits</t></phrase>
-<w><t>Ch'an</t></w>
-<w><t>ch'in</t></w>
-<w><t>Ch'in</t></w>
-<w><t>Ch'ing</t></w>
-<w><t>Ch'ing=y-an</t></w>
<w><t>chab-a-zite</t></w>
<w><t>Chab-lis</t></w>
<w><t>chab-lis</t></w>
@@ -25393,7 +25387,7 @@
<phrase><t>chaf-ing dish</t></phrase>
<w><t>cha-gal</t></w>
<w><t>Cha-gall</t></w>
-<phrase><t>Cha-gas' dis-ease</t></phrase>
+<phrase><t>Cha-gas’ dis-ease</t></phrase>
<w><t>Cha-ga-tai</t></w>
<w><t>Cha-gres</t></w>
<w><t>cha-grin</t></w>
@@ -25593,6 +25587,7 @@
<phrase><t>Champs -ly-s</t></phrase>
<w><t>champ-y</t></w>
<w><t>Cham-y-ne</t></w>
+<w><t>Ch’an</t></w>
<w><t>Cha-naan</t></w>
<w><t>Chanc</t></w>
<w><t>chance</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
@@ -25642,7 +25637,7 @@
<w><t>Chang</t></w>
<w><t>chang-a-ble</t></w>
<w><t>Chang-an</t></w>
-<w><t>Chang-chia-k'ou</t></w>
+<w><t>Chang-chia-k’ou</t></w>
<w><t>Chang-chia-kow</t></w>
<w><t>Chang-chow</t></w>
<w><t>Chang-chow-fu</t></w>
@@ -26228,9 +26223,9 @@
<w><t>chee-tah</t></w>
<w><t>cheez-it</t></w>
<w><t>chef</t></w>
-<w><t>chef=d'oeu-vre</t></w>
+<w><t>chef=d’oeu-vre</t></w>
<w><t>Che-foo</t></w>
-<w><t>chefs=d'oeu-vre</t></w>
+<w><t>chefs=d’oeu-vre</t></w>
<phrase><t>Che Gue-va-ra</t></phrase>
<w><t>Che-ha-lis</t></w>
<w><t>chei-li-tis</t></w>
@@ -26728,6 +26723,8 @@
<w><t>chimp</t></w>
<w><t>chim-pan-zee</t></w>
<w><t>Chi-mu</t></w>
+<w><t>ch’in</t></w>
+<w><t>Ch’in</t></w>
<w><t>chin</t></w>
<w><t>Chin</t></w>
<w><t>chi-n</t></w>
@@ -26785,9 +26782,11 @@
<phrase><t>Chi-nese wind-lass</t></phrase>
<phrase><t>Chi-nese wood oil</t></phrase>
<w><t>chin-fest</t></w>
+<w><t>Ch’ing</t></w>
<w><t>Ching</t></w>
<w><t>Ching-hai</t></w>
<w><t>Ching-tao</t></w>
+<w><t>Ch’ing=y-an</t></w>
<w><t>chink</t></w>
<w><t>Chink</t></w>
<w><t>chin-ka-pin</t></w>
@@ -27569,7 +27568,7 @@
<w><t>chuck-ling-ly</t></w>
<phrase><t>chuck wag-on</t></phrase>
<w><t>chuck-wal-la</t></w>
-<w><t>chuck=will's=wid-ow</t></w>
+<w><t>chuck=will’s=wid-ow</t></w>
<w><t>chuck-y</t></w>
<w><t>chud-dah</t></w>
<w><t>chud-dar</t></w>
@@ -28173,7 +28172,7 @@
<w><t>cit-i-zen-ess</t></w>
<w><t>cit-i-zen-ly</t></w>
<w><t>cit-i-zen-ry</t></w>
-<phrase><t>Cit-i-zens' Band</t></phrase>
+<phrase><t>Cit-i-zens’ Band</t></phrase>
<w><t>cit-i-zen-ship</t></w>
<w><t>Ci-tlal-te-petl</t></w>
<w><t>Ci-tlal-t-petl</t></w>
@@ -28701,7 +28700,7 @@
<w><t>Cle-o-ne</t></w>
<w><t>Cle-o-pat-ra</t></w>
<w><t>Cle-o-pa-tra</t></w>
-<phrase><t>Cle-o-pat-ra's Nee-dle</t></phrase>
+<phrase><t>Cle-o-pat-ra’s Nee-dle</t></phrase>
<w><t>Cle-o-strat-us</t></w>
<w><t>Cle-o-ta</t></w>
<w><t>Cle-o-the-ra</t></w>
@@ -29350,8 +29349,8 @@
<w><t>cob-bing</t></w>
<w><t>cob-ble</t></w>
<w><t>cob-bler</t></w>
-<phrase><t>cob-bler's wax</t></phrase>
<w><t>cob-blers</t></w>
+<phrase><t>cob-bler’s wax</t></phrase>
<w><t>cob-bles</t></w>
<w><t>cob-ble-stone</t></w>
<w><t>cob-bra</t></w>
@@ -30046,7 +30045,7 @@
<w><t>col-lem-bo-lan</t></w>
<w><t>col-len-chy-ma</t></w>
<w><t>col-len-chym-a-tous</t></w>
-<phrase><t>Col-les' frac-ture</t></phrase>
+<phrase><t>Col-les’ frac-ture</t></phrase>
<w><t>col-let</t></w>
<w><t>col-let-ed</t></w>
<w><t>col-let-ing</t></w>
@@ -30539,7 +30538,7 @@
<w><t>com-mea-sure</t></w>
<w><t>com-meas-ured</t></w>
<w><t>com-meas-ur-ing</t></w>
-<phrase><t>com-me-di-a dell'ar-te</t></phrase>
+<phrase><t>com-me-di-a dell’ar-te</t></phrase>
<w><t>com-mem-o-ra-ble</t></w>
<w><t>com-mem-o-rate</t></w>
<w><t>com-mem-o-rat-ed</t></w>
@@ -31440,7 +31439,7 @@
<w><t>con-cor-po-rat-ed</t></w>
<w><t>con-cor-po-rat-ing</t></w>
<w><t>con-cor-po-ra-tion</t></w>
-<phrase><t>con-cours d'-l-gance</t></phrase>
+<phrase><t>con-cours d’-l-gance</t></phrase>
<w><t>con-course</t></w>
<w><t>con-cres-cence</t></w>
<w><t>con-crete</t></w>
@@ -31626,7 +31625,7 @@
<w><t>con-fec-tion-ar-y</t></w>
<w><t>con-fec-tion-er</t></w>
<w><t>con-fec-tion-er-ies</t></w>
-<phrase><t>con-fec-tion-ers' sug-ar</t></phrase>
+<phrase><t>con-fec-tion-ers’ sug-ar</t></phrase>
<w><t>con-fec-tion-er-y</t></w>
<w><t>con-fed-er-a-cy</t></w>
<w><t>Con-fed-er-a-cy</t></w>
@@ -33074,8 +33073,6 @@
<w><t>co=op</t></w>
<w><t>coop-er</t></w>
<w><t>Coo-per</t></w>
-<phrase><t>Coo-per's Creek</t></phrase>
-<phrase><t>Coo-per's hawk</t></phrase>
<w><t>coop-er-age</t></w>
<w><t>co-op-er-ate</t></w>
<w><t>co-öp-er-ate</t></w>
@@ -33103,6 +33100,8 @@
<w><t>co-öp-er-a-tor</t></w>
<w><t>co=op-er-a-tor</t></w>
<w><t>coop-er-ite</t></w>
+<phrase><t>Coo-per’s Creek</t></phrase>
+<phrase><t>Coo-per’s hawk</t></phrase>
<w><t>Coo-pers-town</t></w>
<w><t>coop-er-y</t></w>
<w><t>coop-e-ry</t></w>
@@ -34114,7 +34113,7 @@
<w><t>cot-ton-mouth</t></w>
<phrase><t>cot-ton on</t></phrase>
<phrase><t>cot-ton pick-er</t></phrase>
-<w><t>cot-ton-pick-in'</t></w>
+<w><t>cot-ton-pick-in’</t></w>
<w><t>cot-ton-pick-ing</t></w>
<w><t>cot-ton=pick-ing</t></w>
<w><t>cot-ton-seed</t></w>
@@ -34162,7 +34161,7 @@
<w><t>cough-er</t></w>
<phrase><t>cough mix-ture</t></phrase>
<w><t>could</t></w>
-<w><t>could-n't</t></w>
+<w><t>could-n’t</t></w>
<w><t>cou-lee</t></w>
<w><t>cou-lée</t></w>
<w><t>cou-li-bia-ca</t></w>
@@ -34171,9 +34170,9 @@
<w><t>cou-loirs</t></w>
<w><t>cou-lomb</t></w>
<w><t>Cou-lomb</t></w>
-<phrase><t>Cou-lomb's law</t></phrase>
<phrase><t>Cou-lomb field</t></phrase>
<w><t>cou-lomb-me-ter</t></w>
+<phrase><t>Cou-lomb’s law</t></phrase>
<w><t>cou-lom-e-ter</t></w>
<w><t>Coul-ter</t></w>
<w><t>coul-ter</t></w>
@@ -34402,9 +34401,9 @@
<phrase><t>coun-ty town</t></phrase>
<w><t>coup</t></w>
<w><t>cou-p</t></w>
-<phrase><t>coup d'-tat</t></phrase>
<phrase><t>coup de fou-dre</t></phrase>
<phrase><t>coup de th-a-tre</t></phrase>
+<phrase><t>coup d’-tat</t></phrase>
<w><t>coupe</t></w>
<w><t>cou-pé</t></w>
<w><t>couped</t></w>
@@ -34623,7 +34622,7 @@
<w><t>cow-pat</t></w>
<w><t>cow-pea</t></w>
<w><t>Cow-per</t></w>
-<phrase><t>Cow-per's glands</t></phrase>
+<phrase><t>Cow-per’s glands</t></phrase>
<phrase><t>cow pil-low</t></phrase>
<w><t>cow-poke</t></w>
<phrase><t>cow po-ny</t></phrase>
@@ -34638,7 +34637,6 @@
<w><t>cow-tail</t></w>
<w><t>cox</t></w>
<w><t>Cox</t></w>
-<phrase><t>Cox's Or-ange Pip-pin</t></phrase>
<w><t>cox-a</t></w>
<w><t>cox-ae</t></w>
<w><t>cox-al</t></w>
@@ -34652,6 +34650,7 @@
<w><t>Cox-ey</t></w>
<w><t>Cox-sack-ie</t></w>
<phrase><t>Cox-sack-ie vi-rus</t></phrase>
+<phrase><t>Cox’s Or-ange Pip-pin</t></phrase>
<w><t>cox-swain</t></w>
<w><t>coy</t></w>
<w><t>Coy</t></w>
@@ -35492,7 +35491,7 @@
<w><t>Croe-sus-es</t></w>
<w><t>croft</t></w>
<w><t>croft-er</t></w>
-<phrase><t>Crohn's dis-ease</t></phrase>
+<phrase><t>Crohn’s dis-ease</t></phrase>
<w><t>croi-sette</t></w>
<w><t>crois-sant</t></w>
<w><t>cro-jack</t></w>
@@ -36044,6 +36043,7 @@
<phrase><t>crys-tal sys-tem</t></phrase>
<phrase><t>crys-tal vi-o-let</t></phrase>
<w><t>cr-zette</t></w>
+<w><t>C’s</t></w>
<w><t>CSB</t></w>
<w><t>csc</t></w>
<w><t>CSC</t></w>
@@ -36281,8 +36281,8 @@
<w><t>cul-tus</t></w>
<w><t>cul-tus-es</t></w>
<w><t>cul-ver</t></w>
-<phrase><t>Cul-ver's root</t></phrase>
<w><t>cul-ver-in</t></w>
+<phrase><t>Cul-ver’s root</t></phrase>
<w><t>cul-vert</t></w>
<w><t>cum</t></w>
<w><t>Cu-mae</t></w>
@@ -36382,11 +36382,11 @@
<w><t>cup-ful</t></w>
<w><t>cup-hold-er</t></w>
<w><t>Cu-pid</t></w>
-<phrase><t>Cu-pid's bow</t></phrase>
-<w><t>cu-pid's=bow</t></w>
-<w><t>Cu-pid's=dart</t></w>
<w><t>cu-pid-i-nous</t></w>
<w><t>cu-pid-i-ty</t></w>
+<phrase><t>Cu-pid’s bow</t></phrase>
+<w><t>cu-pid’s=bow</t></w>
+<w><t>Cu-pid’s=dart</t></w>
<w><t>cup-like</t></w>
<w><t>cu-po-la</t></w>
<w><t>cu-po-lat-ed</t></w>
@@ -36430,7 +36430,7 @@
<w><t>cu-ra-riz-ing</t></w>
<w><t>cu-ras-sow</t></w>
<w><t>cu-rate</t></w>
-<phrase><t>cu-rate's egg</t></phrase>
+<phrase><t>cu-rate’s egg</t></phrase>
<w><t>cu-rate-ship</t></w>
<w><t>cu-rat-ic</t></w>
<w><t>cur-a-tive</t></w>
@@ -36481,8 +36481,8 @@
<w><t>Cu-ri-a-ti-i</t></w>
<w><t>cu-rie</t></w>
<w><t>Cu-rie</t></w>
-<phrase><t>Cu-rie's law</t></phrase>
<phrase><t>Cu-rie point</t></phrase>
+<phrase><t>Cu-rie’s law</t></phrase>
<phrase><t>Cu-rie=Weiss law</t></phrase>
<w><t>cur-ing</t></w>
<w><t>cu-ri-o</t></w>
@@ -36639,7 +36639,7 @@
<w><t>cush-i-er</t></w>
<w><t>cush-i-est</t></w>
<w><t>Cush-ing</t></w>
-<phrase><t>Cush-ing's dis-ease</t></phrase>
+<phrase><t>Cush-ing’s dis-ease</t></phrase>
<w><t>cush-ion</t></w>
<w><t>cush-ion-less</t></w>
<w><t>cush-ion-like</t></w>
@@ -37031,7 +37031,7 @@
<w><t>Cyr-il</t></w>
<w><t>Cy-ril-lic</t></w>
<w><t>Cy-ril-lus</t></w>
-<w><t>Cyr=l'é-cole</t></w>
+<w><t>Cyr=l’é-cole</t></w>
<w><t>cyr-to-sis</t></w>
<w><t>cyr-to-style</t></w>
<w><t>Cy-rus</t></w>
@@ -37159,20 +37159,6 @@
<w><t>D/L</t></w>
<w><t>D/O</t></w>
<w><t>D/W</t></w>
-<w><t>d'ac-cord</t></w>
-<w><t>d'Al-bert</t></w>
-<w><t>d'A-lem-bert</t></w>
-<w><t>D'Am-boise</t></w>
-<w><t>D'An-nun-zio</t></w>
-<w><t>d'Ar-blay</t></w>
-<w><t>D'Ar-rest</t></w>
-<w><t>D'Av-e-nant</t></w>
-<phrase><t>D'En-tre-cas-teaux Is-lands</t></phrase>
-<w><t>D'I-ber-ville</t></w>
-<w><t>d'In-dy</t></w>
-<w><t>D'In-ze-o</t></w>
-<w><t>D's</t></w>
-<w><t>D'Ur-fey</t></w>
<w><t>dab</t></w>
<w><t>dab-ber</t></w>
<w><t>dab-bing</t></w>
@@ -37182,6 +37168,7 @@
<w><t>dab-ster</t></w>
<phrase><t>da ca-po</t></phrase>
<w><t>Dac-ca</t></w>
+<w><t>d’ac-cord</t></w>
<w><t>dace</t></w>
<w><t>dac-es</t></w>
<w><t>da-cha</t></w>
@@ -37342,7 +37329,7 @@
<w><t>da-ker=hen</t></w>
<w><t>Dakh-la</t></w>
<w><t>dakh-ma</t></w>
-<phrase><t>Da-kin's so-lu-tion</t></phrase>
+<phrase><t>Da-kin’s so-lu-tion</t></phrase>
<w><t>da-koit</t></w>
<w><t>da-koit-ies</t></w>
<w><t>da-koit-y</t></w>
@@ -37356,10 +37343,12 @@
<phrase><t>Da-lai La-ma</t></phrase>
<w><t>da-lan</t></w>
<w><t>da-la-si</t></w>
+<w><t>d’Al-bert</t></w>
<w><t>Dal-croze</t></w>
<w><t>dale</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Dale</t></w>
<w><t>da-led</t></w>
+<w><t>d’A-lem-bert</t></w>
<w><t>Da-lén</t></w>
<w><t>Dales</t></w>
<w><t>dales-man</t></w>
@@ -37391,11 +37380,11 @@
<phrase><t>dal seg-no</t></phrase>
<w><t>dal-ton</t></w>
<w><t>Dal-ton</t></w>
-<phrase><t>Dal-ton's law</t></phrase>
<w><t>Dal-to-ni-an</t></w>
<w><t>dal-ton-ic</t></w>
<w><t>dal-ton-ism</t></w>
<phrase><t>Dal-ton plan</t></phrase>
+<phrase><t>Dal-ton’s law</t></phrase>
<w><t>Da-ly</t></w>
<w><t>Dal-yce</t></w>
<w><t>Dal-y-more</t></w>
@@ -37437,10 +37426,11 @@
<phrase><t>dam-ask steel</t></phrase>
<w><t>Dá-ma-so</t></w>
<w><t>Da-mas-tes</t></w>
+<w><t>D’Am-boise</t></w>
<w><t>Dame</t></w>
<w><t>dame</t></w>
-<phrase><t>dame's rock-et</t></phrase>
-<phrase><t>dame's vi-o-let</t></phrase>
+<phrase><t>dame’s rock-et</t></phrase>
+<phrase><t>dame’s vi-o-let</t></phrase>
<w><t>dame-wort</t></w>
<w><t>dam-fool</t></w>
<w><t>dam-fool-ish</t></w>
@@ -37606,6 +37596,7 @@
<w><t>Dan-mark</t></w>
<w><t>Dann</t></w>
<w><t>Dan-ne-mo-ra</t></w>
+<w><t>D’An-nun-zio</t></w>
<w><t>dan-ny</t></w>
<w><t>Dan-ny</t></w>
<w><t>Da-no=Nor-we-gian</t></w>
@@ -37646,6 +37637,7 @@
<w><t>Dar-a</t></w>
<w><t>dar-af</t></w>
<w><t>dar-bies</t></w>
+<w><t>d’Ar-blay</t></w>
<w><t>dar-by</t></w>
<phrase><t>Dar-by and Joan</t></phrase>
<w><t>Dar-by-ite</t></w>
@@ -37661,7 +37653,7 @@
<w><t>dare-dev-il</t></w>
<w><t>dare-dev-il-ry</t></w>
<w><t>dare-dev-il-try</t></w>
-<w><t>dare-n't</t></w>
+<w><t>dare-n’t</t></w>
<w><t>dar-er</t></w>
<w><t>Dar-es</t></w>
<w><t>dare-say</t></w>
@@ -37734,6 +37726,7 @@
<w><t>da-ro-gha</t></w>
<w><t>dar-raign</t></w>
<w><t>Dar-rell</t></w>
+<w><t>D’Ar-rest</t></w>
<w><t>Dar-row</t></w>
<w><t>dart</t></w>
<w><t>dart-board</t></w>
@@ -37747,7 +37740,6 @@
<w><t>darts</t></w>
<w><t>Dar-von</t></w>
<w><t>Dar-win</t></w>
-<phrase><t>Dar-win's finch-es</t></phrase>
<w><t>Dar-win-i-an</t></w>
<phrase><t>Dar-win-i-an the-o-ry</t></phrase>
<w><t>Dar-win-ism</t></w>
@@ -37754,6 +37746,7 @@
<w><t>Dar-win-ist</t></w>
<w><t>Dar-win-is-tic</t></w>
<w><t>Dar-win-ite</t></w>
+<phrase><t>Dar-win’s finch-es</t></phrase>
<w><t>Dar-yl</t></w>
<w><t>Da-sa-ha-ra</t></w>
<w><t>Das-cy-lus</t></w>
@@ -37774,10 +37767,10 @@
<w><t>Dasht=e=Ka-vir</t></w>
<w><t>Dasht=i=Ka-vir</t></w>
<w><t>dash-y</t></w>
-<w><t>das-n't</t></w>
+<w><t>das-n’t</t></w>
<w><t>das-sie</t></w>
<w><t>Das-sin</t></w>
-<w><t>dass-n't</t></w>
+<w><t>dass-n’t</t></w>
<w><t>das-tard</t></w>
<w><t>das-tard-li-ness</t></w>
<w><t>das-tard-ly</t></w>
@@ -37862,6 +37855,7 @@
<w><t>daut-ie</t></w>
<w><t>Da-vao</t></w>
<w><t>Dave</t></w>
+<w><t>D’Av-e-nant</t></w>
<w><t>Dav-e-nant</t></w>
<w><t>Da-vene</t></w>
<w><t>Dav-en-port</t></w>
@@ -38013,8 +38007,8 @@
<phrase><t>dead-ly night-shade</t></phrase>
<phrase><t>dead-ly sins</t></phrase>
<w><t>dead-man</t></w>
-<phrase><t>dead man's fin-gers</t></phrase>
-<phrase><t>dead man's han-dle</t></phrase>
+<phrase><t>dead man’s fin-gers</t></phrase>
+<phrase><t>dead man’s han-dle</t></phrase>
<w><t>dead-ness</t></w>
<w><t>dead=net-tle</t></w>
<w><t>dead-pan</t></w>
@@ -39963,6 +39957,7 @@
<w><t>den-ti-tion</t></w>
<w><t>den-toid</t></w>
<w><t>Den-ton</t></w>
+<phrase><t>D’En-tre-cas-teaux Is-lands</t></phrase>
<w><t>den-ture</t></w>
<w><t>de-nu-cle-ar-ise</t></w>
<w><t>de-nu-cle-ar-ize</t></w>
@@ -40989,16 +40984,6 @@
<w><t>de-vice-ful-ly</t></w>
<w><t>de-vice-ful-ness</t></w>
<w><t>dev-il</t></w>
-<phrase><t>dev-il's ad-vo-cate</t></phrase>
-<phrase><t>dev-il's bit</t></phrase>
-<w><t>dev-il's=bit</t></w>
-<phrase><t>dev-il's coach=horse</t></phrase>
-<phrase><t>dev-il's darn-ing nee-dle</t></phrase>
-<phrase><t>dev-il's food cake</t></phrase>
-<phrase><t>Dev-il's Is-land</t></phrase>
-<w><t>dev-il's=pin-cush-ion</t></w>
-<w><t>dev-il's=tongue</t></w>
-<w><t>dev-il's=walk-ing=stick</t></w>
<w><t>dev-iled</t></w>
<w><t>dev-il-fish</t></w>
<w><t>dev-il-fish-es</t></w>
@@ -41014,7 +40999,17 @@
<w><t>dev-il=may=care</t></w>
<w><t>dev-il-ment</t></w>
<w><t>dev-il-ry</t></w>
+<phrase><t>dev-il’s ad-vo-cate</t></phrase>
+<phrase><t>dev-il’s bit</t></phrase>
+<w><t>dev-il’s=bit</t></w>
+<phrase><t>dev-il’s coach=horse</t></phrase>
+<phrase><t>dev-il’s darn-ing nee-dle</t></phrase>
+<phrase><t>dev-il’s food cake</t></phrase>
+<phrase><t>Dev-il’s Is-land</t></phrase>
<w><t>dev-ils=on=horse-back</t></w>
+<w><t>dev-il’s=pin-cush-ion</t></w>
+<w><t>dev-il’s=tongue</t></w>
+<w><t>dev-il’s=walk-ing=stick</t></w>
<w><t>dev-il-try</t></w>
<w><t>dev-il-wood</t></w>
<w><t>De-vine</t></w>
@@ -41518,6 +41513,7 @@
<w><t>dib-ble</t></w>
<w><t>dib-buk</t></w>
<w><t>Di-be-li-us</t></w>
+<w><t>D’I-ber-ville</t></w>
<w><t>Di-boll</t></w>
<w><t>di-brach</t></w>
<w><t>di-bran-chi-ate</t></w>
@@ -41660,7 +41656,7 @@
<w><t>did-ger-i-doo</t></w>
<w><t>did-i-coy</t></w>
<w><t>Did-love</t></w>
-<w><t>did-n't</t></w>
+<w><t>did-n’t</t></w>
<w><t>di-do</t></w>
<w><t>Di-do</t></w>
<w><t>di-drachm</t></w>
@@ -42079,6 +42075,7 @@
<w><t>Di-nar-ic</t></w>
<phrase><t>Di-nar-ic Alps</t></phrase>
<w><t>din-dle</t></w>
+<w><t>d’In-dy</t></w>
<w><t>Din-dy-me-ne</t></w>
<w><t>dine</t></w>
<w><t>din-er</t></w>
@@ -42137,6 +42134,7 @@
<w><t>dint-less</t></w>
<w><t>Di-nu-ba</t></w>
<w><t>Din-wid-die</t></w>
+<w><t>D’In-ze-o</t></w>
<w><t>dioc</t></w>
<phrase><t>Di-o Cas-si-us</t></phrase>
<w><t>di-oc-e-san</t></w>
@@ -43998,7 +43996,7 @@
<w><t>dob-ber=in</t></w>
<w><t>dob-bin</t></w>
<w><t>dob-by</t></w>
-<phrase><t>Do-bell's so-lu-tion</t></phrase>
+<phrase><t>Do-bell’s so-lu-tion</t></phrase>
<phrase><t>Do-ber-man pin-scher</t></phrase>
<w><t>do-bie</t></w>
<w><t>Do-bie</t></w>
@@ -44115,7 +44113,7 @@
<w><t>do-er</t></w>
<w><t>does</t></w>
<w><t>doe-skin</t></w>
-<w><t>does-n't</t></w>
+<w><t>does-n’t</t></w>
<w><t>do-est</t></w>
<w><t>do-eth</t></w>
<w><t>doff</t></w>
@@ -44426,7 +44424,6 @@
<w><t>Dom-r-my=la=Pu-celle</t></w>
<w><t>Don</t></w>
<w><t>don</t></w>
-<w><t>don't</t></w>
<w><t>Do-na</t></w>
<w><t>do-na</t></w>
<w><t>do-ña</t></w>
@@ -44470,9 +44467,9 @@
<w><t>Don-i-zet-ti</t></w>
<w><t>don-jon</t></w>
<w><t>don-key</t></w>
-<phrase><t>don-key's years</t></phrase>
<phrase><t>don-key der-by</t></phrase>
<phrase><t>don-key jack-et</t></phrase>
+<phrase><t>don-key’s years</t></phrase>
<phrase><t>don-key vote</t></phrase>
<w><t>don-key=work</t></w>
<w><t>Don-na</t></w>
@@ -44500,6 +44497,7 @@
<w><t>don-sie</t></w>
<w><t>don-sy</t></w>
<w><t>don’t</t></w>
+<w><t>don’t</t></w>
<w><t>Do-nus</t></w>
<w><t>do-nut</t></w>
<w><t>don-zel</t></w>
@@ -44937,7 +44935,7 @@
<w><t>dove-kie</t></w>
<w><t>dove-like</t></w>
<w><t>Do-ver</t></w>
-<phrase><t>Do-ver's pow-der</t></phrase>
+<phrase><t>Do-ver’s pow-der</t></phrase>
<w><t>dove-tail</t></w>
<w><t>dove-tailed</t></w>
<w><t>dove-tail-er</t></w>
@@ -44982,7 +44980,6 @@
<w><t>Dow-met-al</t></w>
<w><t>Down</t></w>
<w><t>down</t></w>
-<phrase><t>Down's syn-drome</t></phrase>
<w><t>down=and=out-er</t></w>
<w><t>down-at=the=heel</t></w>
<w><t>down-beat</t></w>
@@ -45028,6 +45025,7 @@
<w><t>downs</t></w>
<w><t>Downs</t></w>
<w><t>down-spout</t></w>
+<phrase><t>Down’s syn-drome</t></phrase>
<w><t>down-stage</t></w>
<w><t>down-stair</t></w>
<w><t>down-stairs</t></w>
@@ -45160,9 +45158,6 @@
<w><t>dra-go-man</t></w>
<w><t>drag-o-man-ic</t></w>
<w><t>drag-on</t></w>
-<phrase><t>drag-on's blood</t></phrase>
-<w><t>drag-on's=head</t></w>
-<w><t>drag-on's=tongue</t></w>
<w><t>drag-on-ess</t></w>
<w><t>drag-on-et</t></w>
<w><t>drag-on-fly</t></w>
@@ -45171,6 +45166,9 @@
<w><t>drag-on-like</t></w>
<w><t>drag-on-nade</t></w>
<w><t>drag-on-root</t></w>
+<phrase><t>drag-on’s blood</t></phrase>
+<w><t>drag-on’s=head</t></w>
+<w><t>drag-on’s=tongue</t></w>
<phrase><t>drag-on tree</t></phrase>
<w><t>dra-goon</t></w>
<w><t>dra-goon-age</t></w>
@@ -45682,6 +45680,7 @@
<w><t>dry-salt-er-y</t></w>
<w><t>Drys-dale</t></w>
<phrase><t>Dry Tor-tu-gas</t></phrase>
+<w><t>D’s</t></w>
<w><t>DSc</t></w>
<w><t>DSC</t></w>
<w><t>D-sel-dorf</t></w>
@@ -45690,9 +45689,9 @@
<w><t>dsp</t></w>
<w><t>DST</t></w>
<w><t>D=state</t></w>
-<w><t>DT's</t></w>
<w><t>d-tente</t></w>
<w><t>DTL</t></w>
+<w><t>DT’s</t></w>
<w><t>du-ad</t></w>
<w><t>du-al</t></w>
<w><t>Du-a-la</t></w>
@@ -46120,6 +46119,7 @@
<w><t>du-ress</t></w>
<w><t>du-ress-or</t></w>
<w><t>Du-rex</t></w>
+<w><t>D’Ur-fey</t></w>
<w><t>Dur-ga</t></w>
<w><t>dur-gah</t></w>
<w><t>Dur-ham</t></w>
@@ -46191,8 +46191,8 @@
<phrase><t>Dutch elm dis-ease</t></phrase>
<phrase><t>Dutch Gui-an-a</t></phrase>
<w><t>Dutch-man</t></w>
-<w><t>Dutch-man's=breech-es</t></w>
-<w><t>Dutch-man's=pipe</t></w>
+<w><t>Dutch-man’s=breech-es</t></w>
+<w><t>Dutch-man’s=pipe</t></w>
<phrase><t>Dutch met-al</t></phrase>
<phrase><t>Dutch New Guin-ea</t></phrase>
<phrase><t>Dutch ov-en</t></phrase>
@@ -46271,11 +46271,11 @@
<w><t>dye-line</t></w>
<w><t>Dy-er</t></w>
<w><t>dy-er</t></w>
-<w><t>dy-er's=broom</t></w>
-<w><t>dy-er's=green-weed</t></w>
-<phrase><t>dy-er's rock-et</t></phrase>
-<w><t>dy-er's=weed</t></w>
+<w><t>dy-er’s=broom</t></w>
+<w><t>dy-er’s=green-weed</t></w>
+<phrase><t>dy-er’s rock-et</t></phrase>
<w><t>Dy-ers-ville</t></w>
+<w><t>dy-er’s=weed</t></w>
<w><t>dye-stuff</t></w>
<w><t>dye-weed</t></w>
<w><t>dye-wood</t></w>
@@ -46427,8 +46427,6 @@
<w><t>Dzu-gash-vi-li</t></w>
<w><t>Dzun-ga-ri-a</t></w>
<w><t>Dzyu-bin</t></w>
-<w><t>e'en</t></w>
-<w><t>e'er</t></w>
<w><t>e-a-bly</t></w>
<w><t>each</t></w>
<phrase><t>each oth-er</t></phrase>
@@ -46866,7 +46864,7 @@
<w><t>e-con-o-mized</t></w>
<w><t>e-con-o-miz-er</t></w>
<w><t>e-con-o-miz-ing</t></w>
-<phrase><t>E-con-o-mo's dis-ease</t></phrase>
+<phrase><t>E-con-o-mo’s dis-ease</t></phrase>
<w><t>E-con-o-my</t></w>
<w><t>e-con-o-my</t></w>
<w><t>e-cor-ch</t></w>
@@ -47186,6 +47184,8 @@
<w><t>eel-pout</t></w>
<w><t>eel-worm</t></w>
<w><t>eel-y</t></w>
+<w><t>e’en</t></w>
+<w><t>e’er</t></w>
<w><t>ee-rie</t></w>
<w><t>ee-ri-er</t></w>
<w><t>ee-ri-est</t></w>
@@ -47464,10 +47464,10 @@
<w><t>ein-kan-ter</t></w>
<w><t>ein-korn</t></w>
<w><t>Ein-stein</t></w>
-<phrase><t>Ein-stein's law</t></phrase>
<w><t>Ein-stein-i-an</t></w>
<w><t>ein-stein-i-um</t></w>
<phrase><t>Ein-stein shift</t></phrase>
+<phrase><t>Ein-stein’s law</t></phrase>
<w><t>Eint-ho-ven</t></w>
<w><t>E-io-ne-us</t></w>
<w><t>Eir-e</t></w>
@@ -47956,9 +47956,6 @@
<w><t>El-e-o-nore</t></w>
<w><t>el-e-op-tene</t></w>
<w><t>el-e-phant</t></w>
-<w><t>el-e-phant's</t></w>
-<w><t>el-e-phant's=ear</t></w>
-<w><t>el-e-phant's=foot</t></w>
<w><t>el-e-phan-ta</t></w>
<phrase><t>el-e-phant bird</t></phrase>
<phrase><t>el-e-phant foot</t></phrase>
@@ -47967,7 +47964,10 @@
<w><t>el-e-phan-ti-a-sis</t></w>
<w><t>el-e-phan-tine</t></w>
<w><t>el-e-phan-toid</t></w>
+<w><t>el-e-phant’s</t></w>
<phrase><t>el-e-phant seal</t></phrase>
+<w><t>el-e-phant’s=ear</t></w>
+<w><t>el-e-phant’s=foot</t></w>
<phrase><t>el-e-phant shrew</t></phrase>
<w><t>eleu-in</t></w>
<w><t>El-eu-sin-i-a</t></w>
@@ -48862,7 +48862,7 @@
<w><t>en-chain-ment</t></w>
<w><t>en-chant</t></w>
<w><t>en-chant-er</t></w>
-<phrase><t>en-chant-er's night-shade</t></phrase>
+<phrase><t>en-chant-er’s night-shade</t></phrase>
<w><t>en-chant-ing</t></w>
<w><t>en-chant-ing-ness</t></w>
<w><t>en-chant-ment</t></w>
@@ -49318,7 +49318,7 @@
<w><t>Eng-lish-ism</t></w>
<w><t>Eng-lish-ly</t></w>
<w><t>Eng-lish-man</t></w>
-<phrase><t>Eng-lish-man's tie</t></phrase>
+<phrase><t>Eng-lish-man’s tie</t></phrase>
<w><t>Eng-lish-ness</t></w>
<w><t>Eng-lish-ry</t></w>
<phrase><t>Eng-lish set-ter</t></phrase>
@@ -49759,7 +49759,7 @@
<w><t>en-to-zo-ic</t></w>
<w><t>en-to-zo-on</t></w>
<w><t>en-tr</t></w>
-<w><t>en-tr'acte</t></w>
+<w><t>en-tr’acte</t></w>
<w><t>en-tra-da</t></w>
<w><t>en-trails</t></w>
<w><t>en-train</t></w>
@@ -51918,7 +51918,6 @@
<w><t>Ev-att</t></w>
<w><t>Eve</t></w>
<w><t>eve</t></w>
-<phrase><t>Eve's pud-ding</t></phrase>
<w><t>e-vec-tion</t></w>
<w><t>e-vec-tion-al</t></w>
<w><t>Ev-e-leen</t></w>
@@ -52002,6 +52001,7 @@
<w><t>eve-ry-where</t></w>
<w><t>eve-ry-where=dense</t></w>
<w><t>Eve-sham</t></w>
+<phrase><t>Eve’s pud-ding</t></phrase>
<w><t>e-vict</t></w>
<w><t>e-vict-ee</t></w>
<w><t>e-vic-tion</t></w>
@@ -53414,7 +53414,6 @@
<w><t>Ezr</t></w>
<w><t>Ez-ra</t></w>
<w><t>Ez-zard</t></w>
-<w><t>F's</t></w>
<w><t>fab</t></w>
<w><t>fa-ba-ceous</t></w>
<w><t>Fa-bens</t></w>
@@ -54227,7 +54226,6 @@
<w><t>fat-head</t></w>
<w><t>Fa-ther</t></w>
<w><t>fa-ther</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
-<phrase><t>Fa-ther's Day</t></phrase>
<phrase><t>Fa-ther Christ-mas</t></phrase>
<phrase><t>fa-ther con-fes-sor</t></phrase>
<w><t>fa-ther-hood</t></w>
@@ -54238,6 +54236,7 @@
<w><t>fa-ther-like</t></w>
<w><t>fa-ther-li-ness</t></w>
<w><t>fa-ther-ly</t></w>
+<phrase><t>Fa-ther’s Day</t></phrase>
<w><t>fa-thers=in=law</t></w>
<phrase><t>Fa-ther Time</t></phrase>
<w><t>fath-o-gram</t></w>
@@ -54829,9 +54828,9 @@
<w><t>fer-i-ty</t></w>
<w><t>Fer-man-agh</t></w>
<w><t>Fer-mat</t></w>
-<phrase><t>Fer-mat's last the-o-rem</t></phrase>
-<phrase><t>Fer-mat's prin-ci-ple</t></phrase>
<w><t>fer-ma-ta</t></w>
+<phrase><t>Fer-mat’s last the-o-rem</t></phrase>
+<phrase><t>Fer-mat’s prin-ci-ple</t></phrase>
<w><t>fer-ment</t></w>
<w><t>fer-ment-a-bil-i-ty</t></w>
<w><t>fer-ment-a-ble</t></w>
@@ -55626,9 +55625,8 @@
<phrase><t>fine struc-ture</t></phrase>
<w><t>fin-foot</t></w>
<w><t>fin=foot-ed</t></w>
-<phrase><t>Fin-gal's Cave</t></phrase>
+<phrase><t>Fin-gal’s Cave</t></phrase>
<w><t>fin-ger</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
-<phrase><t>fin-ger's breadth</t></phrase>
<w><t>fin-ger-board</t></w>
<phrase><t>fin-ger bowl</t></phrase>
<w><t>fin-ger-breadth</t></w>
@@ -55645,6 +55643,7 @@
<phrase><t>fin-ger paint-ing</t></phrase>
<phrase><t>fin-ger post</t></phrase>
<w><t>fin-ger-print</t></w>
+<phrase><t>fin-ger’s breadth</t></phrase>
<w><t>fin-ger-stall</t></w>
<phrase><t>fin-ger tight</t></phrase>
<w><t>fin-ger-tip</t></w>
@@ -55880,7 +55879,7 @@
<w><t>fish-er</t></w>
<w><t>fish-er-ies</t></w>
<w><t>fish-er-man</t></w>
-<phrase><t>fish-er-man's bend</t></phrase>
+<phrase><t>fish-er-man’s bend</t></phrase>
<w><t>fish-er-y</t></w>
<w><t>fish-es</t></w>
<w><t>Fish-es</t></w>
@@ -55990,7 +55989,7 @@
<phrase><t>five hun-dred</t></phrase>
<w><t>five=leg-ged</t></w>
<phrase><t>Five Na-tions</t></phrase>
-<phrase><t>five=o'clock shad-ow</t></phrase>
+<phrase><t>five=o’clock shad-ow</t></phrase>
<w><t>five-pen-ny</t></w>
<w><t>five-pins</t></w>
<w><t>fiv-er</t></w>
@@ -56012,9 +56011,9 @@
<phrase><t>fixed=point rep-re-sen-ta-tion</t></phrase>
<phrase><t>fixed sat-el-lite</t></phrase>
<w><t>fix-er</t></w>
-<w><t>fix-in's</t></w>
<w><t>fix-ing</t></w>
<w><t>fix-ings</t></w>
+<w><t>fix-in’s</t></w>
<w><t>fix-i-ty</t></w>
<w><t>fixt</t></w>
<w><t>fix-ture</t></w>
@@ -56401,7 +56400,7 @@
<phrase><t>Fleet-wood Mac</t></phrase>
<w><t>Flem</t></w>
<w><t>Flem-ing</t></w>
-<phrase><t>Flem-ing's rules</t></phrase>
+<phrase><t>Flem-ing’s rules</t></phrase>
<w><t>Flem-ing-ton</t></w>
<w><t>Flem-ish</t></w>
<phrase><t>Flem-ish bond</t></phrase>
@@ -57254,9 +57253,6 @@
<w><t>food-stuff</t></w>
<w><t>foo-fa-raw</t></w>
<w><t>fool</t></w>
-<phrase><t>fool's er-rand</t></phrase>
-<phrase><t>fool's par-a-dise</t></phrase>
-<w><t>fool's=pars-ley</t></w>
<w><t>fool-er-ies</t></w>
<w><t>fool-er-y</t></w>
<w><t>fool-fish</t></w>
@@ -57272,6 +57268,9 @@
<w><t>fool-ish-ness</t></w>
<w><t>fool-proof</t></w>
<w><t>fools-cap</t></w>
+<phrase><t>fool’s er-rand</t></phrase>
+<phrase><t>fool’s par-a-dise</t></phrase>
+<w><t>fool’s=pars-ley</t></w>
<w><t>foot</t></w>
<w><t>Foot</t></w>
<w><t>foot-age</t></w>
@@ -58047,9 +58046,9 @@
<phrase><t>foun-da-tion stone</t></phrase>
<w><t>found-ed</t><verb><regular-root value="false"/></verb></w>
<w><t>found-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
-<phrase><t>found-er's type</t></phrase>
<w><t>foun-der-ous</t></w>
-<phrase><t>foun-ders' shares</t></phrase>
+<phrase><t>foun-ders’ shares</t></phrase>
+<phrase><t>found-er’s type</t></phrase>
<w><t>found-ing</t><noun><convertible-to-possessive/></noun></w>
<phrase><t>found-ing fa-ther</t></phrase>
<w><t>found-ling</t></w>
@@ -58719,11 +58718,11 @@
<w><t>fri-a-ble</t></w>
<w><t>fri-a-ble-ness</t></w>
<w><t>fri-ar</t></w>
-<phrase><t>fri-ar's bal-sam</t></phrase>
-<phrase><t>fri-ar's lan-tern</t></phrase>
<w><t>fri-ar-bird</t></w>
<w><t>fri-ar-ies</t></w>
<phrase><t>Fri-ar Mi-nor</t></phrase>
+<phrase><t>fri-ar’s bal-sam</t></phrase>
+<phrase><t>fri-ar’s lan-tern</t></phrase>
<phrase><t>Fri-ar Tuck</t></phrase>
<w><t>fri-ar-y</t></w>
<w><t>frib-ble</t></w>
@@ -59158,6 +59157,7 @@
<phrase><t>fry-ing pan</t></phrase>
<w><t>fry-pan</t></w>
<w><t>fry=pan</t></w>
+<w><t>F’s</t></w>
<w><t>FSA</t></w>
<w><t>FSH</t></w>
<w><t>FSK</t></w>
@@ -59276,8 +59276,8 @@
<w><t>full=bot-tomed</t></w>
<w><t>full-er</t></w>
<w><t>Ful-ler</t></w>
-<phrase><t>full-er's earth</t></phrase>
-<phrase><t>full-er's tea-sel</t></phrase>
+<phrase><t>full-er’s earth</t></phrase>
+<phrase><t>full-er’s tea-sel</t></phrase>
<w><t>Ful-ler-ton</t></w>
<w><t>full=fash-ioned</t></w>
<w><t>full=fron-tal</t></w>
@@ -60748,7 +60748,7 @@
<w><t>Gayle</t></w>
<w><t>Gay-lord</t></w>
<w><t>Gay=Lus-sac</t></w>
-<phrase><t>Gay=Lus-sac's law</t></phrase>
+<phrase><t>Gay=Lus-sac’s law</t></phrase>
<w><t>gay-lus-site</t></w>
<w><t>gay-ly</t></w>
<w><t>gay-ness</t></w>
@@ -60803,7 +60803,6 @@
<w><t>GDR</t></w>
<w><t>gds</t></w>
<w><t>Gdy-nia</t></w>
-<w><t>Ge'ez</t></w>
<w><t>gean</t></w>
<w><t>ge-an-ti-cli-nal</t></w>
<w><t>ge-an-ti-cline</t></w>
@@ -60836,6 +60835,7 @@
<w><t>gee-pound</t></w>
<w><t>geese</t></w>
<w><t>geest</t></w>
+<w><t>Ge’ez</t></w>
<w><t>Ge-ez</t></w>
<w><t>gee-zer</t></w>
<phrase><t>ge-fil-te fish</t></phrase>
@@ -61188,7 +61188,6 @@
<w><t>gen-tle-folks</t></w>
<w><t>gen-tle-hood</t></w>
<w><t>gen-tle-man</t></w>
-<phrase><t>gen-tle-man's a-gree-ment</t></phrase>
<w><t>gen-tle-man=at=arms</t></w>
<w><t>gen-tle-man=com-mon-er</t></w>
<w><t>gen-tle-man=farm-er</t></w>
@@ -61196,12 +61195,13 @@
<w><t>gen-tle-man-li-ness</t></w>
<w><t>gen-tle-man-ly</t></w>
<w><t>gen-tle-man=pen-sion-er</t></w>
+<phrase><t>gen-tle-man’s a-gree-ment</t></phrase>
<w><t>gen-tle-men</t><noun><plural/></noun></w>
-<phrase><t>gen-tle-men's a-gree-ment</t></phrase>
<w><t>gen-tle-men=at=arms</t></w>
<w><t>gen-tle-men=com-mon-ers</t></w>
<w><t>gen-tle-men=farm-ers</t></w>
<w><t>gen-tle-men=pen-sion-ers</t></w>
+<phrase><t>gen-tle-men’s a-gree-ment</t></phrase>
<w><t>gen-tle-ness</t></w>
<w><t>gen-tle=voiced</t></w>
<w><t>gen-tle-wom-an</t></w>
@@ -61681,7 +61681,6 @@
<w><t>Gia-co-muz-zo</t></w>
<w><t>Giam-bat-tis-ta</t></w>
<w><t>gi-ant</t></w>
-<phrase><t>Gi-ant's Cause-way</t></phrase>
<w><t>gi-ant-ess</t></w>
<w><t>gi-ant-ism</t></w>
<phrase><t>gi-ant kill-er</t></phrase>
@@ -61689,6 +61688,7 @@
<phrase><t>gi-ant pan-da</t></phrase>
<phrase><t>gi-ant plan-et</t></phrase>
<phrase><t>gi-ant pow-der</t></phrase>
+<phrase><t>Gi-ant’s Cause-way</t></phrase>
<phrase><t>gi-ant star</t></phrase>
<phrase><t>gi-ant tor-toise</t></phrase>
<w><t>giaour</t></w>
@@ -62013,7 +62013,7 @@
<w><t>gi-sant</t></w>
<w><t>gi-sarme</t></w>
<w><t>Gis-borne</t></w>
-<phrase><t>Gis-card d'Es-taing</t></phrase>
+<phrase><t>Gis-card d’Es-taing</t></phrase>
<w><t>Gi-selle</t></w>
<w><t>Gish</t></w>
<w><t>gis-mo</t></w>
@@ -62207,9 +62207,9 @@
<w><t>glass-y=eyed</t></w>
<w><t>Glas-ton-bur-y</t></w>
<w><t>Glas-we-gian</t></w>
-<phrase><t>Glau-ber's salt</t></phrase>
<w><t>glau-ber-ite</t></w>
<phrase><t>Glau-ber salt</t></phrase>
+<phrase><t>Glau-ber’s salt</t></phrase>
<w><t>Glau-ce</t></w>
<w><t>glau-ces-cence</t></w>
<w><t>glau-ces-cent</t></w>
@@ -62835,7 +62835,6 @@
<w><t>Go-clen-i-us</t></w>
<w><t>God</t><noun><singular/><convertible-to-possessive/></noun></w>
<w><t>god</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
-<phrase><t>God's a-cre</t></phrase>
<w><t>Go-dard</t></w>
<w><t>Go-da-va-ri</t></w>
<w><t>God=aw-ful</t></w>
@@ -62892,6 +62891,7 @@
<w><t>Go-dow-sky</t></w>
<w><t>god-par-ent</t></w>
<w><t>go-droon</t></w>
+<phrase><t>God’s a-cre</t></phrase>
<w><t>god-send</t></w>
<w><t>god-sent</t></w>
<w><t>god-ship</t></w>
@@ -62959,10 +62959,10 @@
<w><t>gol-darn</t></w>
<w><t>gol-darned</t></w>
<w><t>gol-darned-est</t></w>
-<phrase><t>Gold-bach's con-jec-ture</t></phrase>
+<phrase><t>Gold-bach’s con-jec-ture</t></phrase>
<phrase><t>gold ba-sis</t></phrase>
<w><t>gold-beat-er</t></w>
-<phrase><t>gold-beat-er's skin</t></phrase>
+<phrase><t>gold-beat-er’s skin</t></phrase>
<w><t>gold-beat-ing</t></w>
<w><t>gold=beat-ing</t></w>
<phrase><t>gold bee-tle</t></phrase>
@@ -63661,7 +63661,6 @@
<w><t>gral-la-to-ri-al</t></w>
<w><t>Gram</t></w>
<w><t>gram</t></w>
-<phrase><t>Gram's meth-od</t></phrase>
<w><t>gra-ma</t></w>
<phrase><t>gra-ma grass</t></phrase>
<w><t>gram-a-ry</t></w>
@@ -63706,6 +63705,7 @@
<w><t>gramps</t></w>
<w><t>gram-pus</t></w>
<w><t>gram-pus-es</t></w>
+<phrase><t>Gram’s meth-od</t></phrase>
<w><t>gra-na</t></w>
<w><t>Gra-na-da</t></w>
<w><t>gran-a-dil-la</t></w>
@@ -63826,9 +63826,9 @@
<w><t>Gran-jon</t></w>
<w><t>gran-nie</t></w>
<w><t>gran-ny</t></w>
-<phrase><t>gran-ny's knot</t></phrase>
<phrase><t>gran-ny flat</t></phrase>
<phrase><t>gran-ny knot</t></phrase>
+<phrase><t>gran-ny’s knot</t></phrase>
<phrase><t>Gran-ny Smith</t></phrase>
<w><t>gran-o-di-o-rite</t></w>
<w><t>gran-o-lith</t></w>
@@ -64021,7 +64021,7 @@
<w><t>gra-va-men</t></w>
<w><t>gra-va-vam-i-na</t></w>
<w><t>grave</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb><adjective><extensible value="false"/></adjective></w>
-<!-- Don't use. Too difficult to disambiguate. <w><t>gra-ve</t></w> -->
+<!-- Don’t use. Too difficult to disambiguate. <w><t>gra-ve</t></w> -->
<w><t>grave-clothes</t></w>
<w><t>grave-dig-ger</t></w>
<w><t>grav-el</t></w>
@@ -64046,7 +64046,7 @@
<w><t>grave-rob-ber</t></w>
<w><t>grave-rob-bing</t></w>
<w><t>Graves</t></w>
-<phrase><t>Graves' dis-ease</t></phrase>
+<phrase><t>Graves’ dis-ease</t></phrase>
<w><t>Graves-end</t></w>
<w><t>grav-est</t></w>
<w><t>grave-stone</t></w>
@@ -64370,7 +64370,7 @@
<w><t>Gre-no-ble</t></w>
<w><t>Gren-ville</t></w>
<w><t>Gresh-am</t></w>
-<phrase><t>Gresh-am's law</t></phrase>
+<phrase><t>Gresh-am’s law</t></phrase>
<w><t>gres-so-ri-al</t></w>
<w><t>gres-so-ri-ous</t></w>
<w><t>Gret-a</t></w>
@@ -65087,7 +65087,7 @@
<w><t>guid-ing</t></w>
<w><t>guid-ing-ly</t></w>
<w><t>Gui-do</t></w>
-<phrase><t>Gui-do d'A-rez-zo</t></phrase>
+<phrase><t>Gui-do d’A-rez-zo</t></phrase>
<w><t>gui-don</t></w>
<w><t>Gui-do-ni-an</t></w>
<w><t>guid-wil-lie</t></w>
@@ -65302,8 +65302,8 @@
<w><t>gun-stock-ing</t></w>
<w><t>Gun-ter</t></w>
<w><t>gun-ter</t></w>
-<phrase><t>Gun-ter's chain</t></phrase>
<phrase><t>gun-ter rig</t></phrase>
+<phrase><t>Gun-ter’s chain</t></phrase>
<w><t>Gun-ters-ville</t></w>
<w><t>gun-ther</t></w>
<w><t>Gun-ther</t></w>
@@ -65631,9 +65631,6 @@
<w><t>gyve</t></w>
<w><t>gyv-ing</t></w>
<w><t>G-za</t></w>
-<w><t>h'm</t></w>
-<w><t>ha'-p'orth</t></w>
-<w><t>ha'-pen-ny</t></w>
<w><t>HAA</t></w>
<w><t>haaf</t></w>
<w><t>Haag</t></w>
@@ -65769,10 +65766,10 @@
<w><t>hadj-i</t></w>
<w><t>hadj-is</t></w>
<w><t>Had-ley</t></w>
-<w><t>had-n't</t></w>
+<w><t>had-n’t</t></w>
<w><t>Ha-dra-maut</t></w>
<w><t>Ha-dri-an</t></w>
-<phrase><t>Ha-dri-an's Wall</t></phrase>
+<phrase><t>Ha-dri-an’s Wall</t></phrase>
<w><t>had-ron</t></w>
<w><t>had-ro-saur</t></w>
<w><t>ha-dro-saur-us</t></w>
@@ -65988,14 +65985,13 @@
<w><t>hail-stoned</t></w>
<w><t>hail-storm</t></w>
<w><t>Hail-wood</t></w>
-<w><t>hain't</t></w>
<w><t>Hai-nan</t></w>
<phrase><t>Hai-nan Tao</t></phrase>
<w><t>Hai-nault</t></w>
<w><t>Hai-naut</t></w>
+<w><t>hain’t</t></w>
<w><t>Hai-phong</t></w>
<w><t>hair</t></w>
-<w><t>hair's-breadth</t></w>
<w><t>hair-ball</t></w>
<w><t>hair-brained</t></w>
<w><t>hair-breadth</t></w>
@@ -66023,6 +66019,7 @@
<w><t>hair=rais-er</t></w>
<w><t>hair=rais-ing</t></w>
<phrase><t>hair re-stor-er</t></phrase>
+<w><t>hair’s-breadth</t></w>
<w><t>hair-split-ter</t></w>
<w><t>hair-split-ting</t></w>
<w><t>hair-spring</t></w>
@@ -66485,7 +66482,7 @@
<w><t>Hal-ler</t></w>
<w><t>Hal-letts-ville</t></w>
<w><t>Hal-ley</t></w>
-<phrase><t>Hal-ley's Com-et</t></phrase>
+<phrase><t>Hal-ley’s Com-et</t></phrase>
<w><t>Hal-li</t></w>
<w><t>hal-liard</t></w>
<w><t>Hal-lie</t></w>
@@ -66505,10 +66502,10 @@
<w><t>hal-loo-ing</t></w>
<w><t>hal-loth</t></w>
<w><t>hal-low</t></w>
-<w><t>Hal-low-e'en</t></w>
<w><t>hal-lowed</t></w>
<w><t>hal-lowed-ly</t></w>
<w><t>hal-lowed-ness</t></w>
+<w><t>Hal-low-e’en</t></w>
<w><t>Hal-low-een</t></w>
<w><t>Hal-lo-well</t></w>
<w><t>hal-low-er</t></w>
@@ -66701,7 +66698,6 @@
<w><t>ham-za</t></w>
<w><t>ham-zah</t></w>
<w><t>Han</t></w>
-<w><t>han't</t></w>
<w><t>han-ap</t></w>
<w><t>han-a-per</t></w>
<w><t>Ha-na-si</t></w>
@@ -66891,11 +66887,12 @@
<w><t>han-selled</t></w>
<w><t>han-sel-ling</t></w>
<w><t>Han-sen</t></w>
-<phrase><t>Han-sen's dis-ease</t></phrase>
+<phrase><t>Han-sen’s dis-ease</t></phrase>
<w><t>Hanse-town</t></w>
<w><t>han-som</t></w>
<w><t>Han-son</t></w>
<w><t>Han-steen</t></w>
+<w><t>han’t</t></w>
<w><t>hant</t></w>
<w><t>Hants</t></w>
<w><t>Ha-...
[truncated message content] |
|
From: <vic...@us...> - 2022-07-02 22:14:51
|
Revision: 12698
http://sourceforge.net/p/foray/code/12698
Author: victormote
Date: 2022-07-02 22:14:48 +0000 (Sat, 02 Jul 2022)
Log Message:
-----------
Handle apostrophes better.
Modified Paths:
--------------
trunk/foray/foray-common/src/main/java/org/foray/common/primitive/StringUtils.java
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Word4a.java
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java
Modified: trunk/foray/foray-common/src/main/java/org/foray/common/primitive/StringUtils.java
===================================================================
--- trunk/foray/foray-common/src/main/java/org/foray/common/primitive/StringUtils.java 2022-07-02 18:31:42 UTC (rev 12697)
+++ trunk/foray/foray-common/src/main/java/org/foray/common/primitive/StringUtils.java 2022-07-02 22:14:48 UTC (rev 12698)
@@ -352,6 +352,44 @@
}
/**
+ * Removes all occurrences of a given Unicode codepoint from a {@link StringBuilder}.
+ * @param builder The StringBuilder in which the replacement should occur.
+ * @param codePoint The codepoint to be deleted.
+ */
+ public static void deleteAll(final StringBuilder builder, final int codePoint) {
+ final int charCount = Character.charCount(codePoint);
+ for (int index = 0; index < builder.length(); index ++) {
+ final int c = builder.codePointAt(index);
+ if (c == codePoint) {
+ builder.delete(index, index + charCount);
+ }
+ }
+ }
+
+ /**
+ * Converts all uppercase characters in a {@link StringBuilder} to lowercase.
+ * @param builder The StringBuilder in which the replacement should occur.
+ */
+ public static void toLowercase(final StringBuilder builder) {
+ for (int index = 0; index < builder.length(); index ++) {
+ final int c = builder.codePointAt(index);
+ final int lower = Character.toLowerCase(c);
+ if (c != lower) {
+ final int deleteSize = Character.charCount(c);
+ builder.delete(index, index + deleteSize);
+ final int addSize = Character.charCount(lower);
+ if (addSize == 1) {
+ builder.insert(index, (char) lower);
+ } else {
+ builder.insert(index, Character.highSurrogate(lower));
+ index ++;
+ builder.insert(index, Character.lowSurrogate(lower));
+ }
+ }
+ }
+ }
+
+ /**
* Computes the length of all or part of a null-terminated char array. The null character is
* 0x00.
* @param charArray The array which contains the null-terminated string.
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 18:31:42 UTC (rev 12697)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 22:14:48 UTC (rev 12698)
@@ -10263,7 +10263,7 @@
<w><t>as-se-ga-ing</t></w>
<w><t>as-sem-bl</t></w>
<w><t>as-sem-blage</t></w>
-<w><t>as-sem-ble</t></w>
+<w><t>as-sem-ble</t><verb><regular-root/></verb></w>
<w><t>as-sem-blé</t></w>
<w><t>as-sem-bled</t></w>
<w><t>as-sem-bler</t></w>
@@ -14325,7 +14325,7 @@
<w><t>bear-paw</t></w>
<w><t>bear-skin</t></w>
<w><t>bear-wood</t></w>
-<w><t>beast</t></w>
+<w><t>beast</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>beast-ie</t></w>
<w><t>beast-ings</t></w>
<w><t>beast-li-er</t></w>
@@ -30911,7 +30911,7 @@
<w><t>com-pat-i-ble</t></w>
<w><t>com-pat-i-ble-ness</t></w>
<w><t>com-pat-i-bly</t></w>
-<w><t>com-pat-ri-ot</t></w>
+<w><t>com-pat-ri-ot</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>com-pa-tri-ot</t></w>
<w><t>com-pa-tri-ot-ic</t></w>
<w><t>com-pa-tri-ot-ism</t></w>
@@ -35028,7 +35028,7 @@
<w><t>cre-a-tive-ly</t></w>
<w><t>cre-a-tive-ness</t></w>
<w><t>cre-a-tiv-i-ty</t></w>
-<w><t>cre-a-tor</t></w>
+<w><t>cre-a-tor</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Cre-a-tor</t></w>
<w><t>cre-a-tor-ship</t></w>
<w><t>crea-tur-al</t></w>
@@ -44499,10 +44499,10 @@
<phrase><t>Don Quix-ote</t></phrase>
<w><t>don-sie</t></w>
<w><t>don-sy</t></w>
+<w><t>don’t</t></w>
<w><t>Do-nus</t></w>
<w><t>do-nut</t></w>
<w><t>don-zel</t></w>
-<w><t>don’t</t></w>
<w><t>doo-dad</t></w>
<w><t>doo-dah</t></w>
<w><t>doo-dle</t></w>
@@ -54743,7 +54743,7 @@
<w><t>fen</t></w>
<w><t>fe-na-gle</t></w>
<w><t>fe-na-gler</t></w>
-<w><t>fence</t></w>
+<w><t>fence</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>fence-like</t></w>
<w><t>fence-post</t></w>
<w><t>fenc-er</t></w>
@@ -86328,7 +86328,7 @@
<w><t>leant</t></w>
<w><t>lean=to</t></w>
<w><t>Lea-o</t></w>
-<w><t>leap</t></w>
+<w><t>leap</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>leap-er</t></w>
<w><t>leap-frog</t></w>
<w><t>leap-frogged</t></w>
@@ -108103,19 +108103,6 @@
<w><t>Nyx</t></w>
<w><t>NZBC</t></w>
<w><t>o/c</t></w>
-<w><t>O'Ca-sey</t></w>
-<w><t>o'clock</t></w>
-<w><t>O'Con-nell</t></w>
-<w><t>O'Con-nor</t></w>
-<w><t>O'Don-o-van</t></w>
-<w><t>o'er</t></w>
-<w><t>O'Fal-lon</t></w>
-<w><t>O'Fao-láin</t></w>
-<w><t>O'Fla-her-ty</t></w>
-<w><t>O'Har-a</t></w>
-<w><t>O'Hig-gins</t></w>
-<w><t>O'Kel-ley</t></w>
-<w><t>O'Neill</t></w>
<w><t>oaf</t></w>
<w><t>oaf-ish</t></w>
<w><t>oaf-ish-ly</t></w>
@@ -108472,6 +108459,7 @@
<w><t>O-cal-a</t></w>
<w><t>OCAM</t></w>
<w><t>oc-a-ri-na</t></w>
+<w><t>O’Ca-sey</t></w>
<w><t>Oc-cam</t></w>
<phrase><t>Oc-cam's ra-zor</t></phrase>
<w><t>Oc-cam-ism</t></w>
@@ -108605,7 +108593,10 @@
<w><t>ock-er</t></w>
<w><t>Ock-ham</t></w>
<phrase><t>Ock-ham's ra-zor</t></phrase>
+<w><t>o’clock</t></w>
<w><t>Oc-nus</t></w>
+<w><t>O’Con-nell</t></w>
+<w><t>O’Con-nor</t></w>
<w><t>O-con-o-mo-woc</t></w>
<w><t>O-con-to</t></w>
<w><t>o-co-til-lo</t></w>
@@ -108743,6 +108734,7 @@
<w><t>o-dom-e-ter</t></w>
<w><t>o-do-met-ri-cal</t></w>
<w><t>o-dom-e-try</t></w>
+<w><t>O’Don-o-van</t></w>
<w><t>od-on-tal-gi-a</t></w>
<w><t>o-don-tal-gia</t></w>
<w><t>o-don-tal-gic</t></w>
@@ -108820,6 +108812,7 @@
<w><t>Oe-nop-i-des</t></w>
<w><t>Oe-no-pi-on</t></w>
<w><t>Oe-o-nus</t></w>
+<w><t>o’er</t></w>
<w><t>oer-sted</t></w>
<w><t>Oer-sted</t></w>
<w><t>Oe-sel</t></w>
@@ -108836,6 +108829,8 @@
<w><t>oeu-vre</t></w>
<w><t>oeu-vres</t></w>
<w><t>of</t></w>
+<w><t>O’Fal-lon</t></w>
+<w><t>O’Fao-láin</t></w>
<w><t>o-fay</t></w>
<w><t>off</t></w>
<w><t>Of-fa</t></w>
@@ -108942,6 +108937,7 @@
<w><t>off-take</t></w>
<phrase><t>off the rec-ord</t></phrase>
<phrase><t>off=year e-lec-tion</t></phrase>
+<w><t>O’Fla-her-ty</t></w>
<w><t>OFM</t></w>
<w><t>OFS</t></w>
<w><t>oft</t></w>
@@ -108979,8 +108975,10 @@
<w><t>O-gyg-i-an</t></w>
<w><t>Og-y-gus</t></w>
<w><t>oh</t><interjection/></w>
+<w><t>O’Har-a</t></w>
<phrase><t>O Hen-ry</t></phrase>
<w><t>OHG</t></w>
+<w><t>O’Hig-gins</t></w>
<w><t>Ohi-o</t></w>
<w><t>O-hi-o</t></w>
<w><t>Oh-len-schl-ger</t></w>
@@ -109052,6 +109050,7 @@
<phrase><t>O-ke-fe-no-kee Swamp</t></phrase>
<w><t>Ok-e-ghem</t></w>
<w><t>O-ke-ghem</t></w>
+<w><t>O’Kel-ley</t></w>
<w><t>O-ke-mah</t></w>
<w><t>O-ken</t></w>
<w><t>o-key=doke</t></w>
@@ -109386,6 +109385,7 @@
<w><t>one=hand-ed</t></w>
<w><t>O-nei-da</t></w>
<w><t>one=i-de-aed</t></w>
+<w><t>O’Neill</t></w>
<w><t>o-nei-ric</t></w>
<w><t>o-nei-ro-crit-ic</t></w>
<w><t>o-nei-ro-crit-i-cal</t></w>
@@ -109404,6 +109404,7 @@
<w><t>on-er-ous</t></w>
<w><t>on-er-ous-ly</t></w>
<w><t>on-er-ous-ness</t></w>
+<w><t>one’s</t><adjective><possessive/></adjective></w>
<w><t>one-self</t></w>
<w><t>one=sid-ed</t></w>
<w><t>one=sid-ed-ly</t></w>
@@ -109413,7 +109414,6 @@
<w><t>one=up</t></w>
<w><t>one=up-man-ship</t></w>
<phrase><t>one=way tick-et</t></phrase>
-<w><t>one’s</t><adjective><possessive/></adjective></w>
<w><t>on-go-ing</t></w>
<w><t>on-i-cism</t></w>
<w><t>o-ni-o-ma-ni-a</t></w>
@@ -145702,7 +145702,7 @@
<w><t>ser-ow</t></w>
<w><t>Ser-pa-sil</t></w>
<w><t>Ser-pens</t></w>
-<w><t>ser-pent</t></w>
+<w><t>ser-pent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ser-pen-ti-form</t></w>
<w><t>ser-pen-tine</t></w>
<w><t>ser-pen-tin-i-za-tion</t></w>
@@ -156618,7 +156618,7 @@
<w><t>Sum-ter</t></w>
<w><t>Su-my</t></w>
<w><t>Sun</t></w>
-<w><t>sun</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>sun</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Su-nay</t></w>
<w><t>sun-back</t></w>
<w><t>sun-bake</t></w>
@@ -165674,7 +165674,7 @@
<w><t>troph-o-zo-ite</t></w>
<w><t>tro-phy</t></w>
<w><t>tro-phy-less</t></w>
-<w><t>trop-ic</t></w>
+<w><t>trop-ic</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>trop-i-cal</t></w>
<w><t>trop-i-cal-ih</t></w>
<w><t>trop-i-cal-ise</t></w>
@@ -186624,7 +186624,8 @@
<w><t>your</t></w>
<w><t>your'n</t></w>
<w><t>yours</t></w>
-<w><t>your-self</t></w>
+<w><t>your-self</t><noun><singular/></noun></w>
+<w><t>your-selves</t><noun><plural/></noun></w>
<phrase><t>yours tru-ly</t></phrase>
<w><t>yous</t></w>
<w><t>youse</t></w>
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Word4a.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Word4a.java 2022-07-02 18:31:42 UTC (rev 12697)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Word4a.java 2022-07-02 22:14:48 UTC (rev 12698)
@@ -30,6 +30,7 @@
import org.foray.common.primitive.CharSequenceUtils;
import org.foray.common.primitive.NumberUtils;
+import org.foray.common.primitive.StringUtils;
import org.axsl.fotree.text.FoDiscretionaryHyphen;
import org.axsl.fotree.text.FoWord;
@@ -78,9 +79,23 @@
final FoWordSegment segment = wordSegmentAt(index);
builder.append(segment.getText());
}
- return builder.toString();
+ return builder;
}
+ /**
+ * Returns the content of this word, adjusted for collating.
+ * Specifically, all "’" characters are removed, and the remaining content is converted to lowercase.
+ * @return The collating content for this word.
+ */
+ public CharSequence getCollatingContent() {
+ final CharSequence actualContent = getActualContent();
+ final StringBuilder builder = actualContent instanceof StringBuilder ?
+ (StringBuilder) actualContent : new StringBuilder(actualContent);
+ StringUtils.deleteAll(builder, '’');
+ StringUtils.toLowercase(builder);
+ return builder;
+ }
+
@Override
public CharSequence getNormalizedContent() {
final StringBuilder builder = new StringBuilder();
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java 2022-07-02 18:31:42 UTC (rev 12697)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java 2022-07-02 22:14:48 UTC (rev 12698)
@@ -370,7 +370,7 @@
case "w": {
final StringWord word = new StringWord(this.currentPartsOfSpeech, this.currentSegments);
final String actualContent = word.getActualContent().toString();
- checkCollation(actualContent);
+ checkCollation(actualContent, word.getCollatingContent().toString());
/* Is it an existing ambiguous word? */
if (this.ambiguousWordMap.containsKey(actualContent)) {
@@ -455,7 +455,7 @@
case "phrase": {
final StringWord word = new StringWord(this.currentPartsOfSpeech, this.currentSegments);
final String actualContent = word.getActualContent().toString();
- checkCollation(actualContent);
+ checkCollation(actualContent, word.getCollatingContent().toString());
break;
}
case "vf": break;
@@ -499,25 +499,25 @@
/**
* Checks the collation of the sequence in the dictionary input to see if items are out of order.
- * @param actualContent The current content being checked for collation.
+ * @param actualContent The display content of the word being tested.
+ * @param collatingContent The current content being checked for collation.
*/
- private void checkCollation(final String actualContent) {
+ private void checkCollation(final String actualContent, final String collatingContent) {
if (! this.logDictionaryProblems) {
return;
}
- final String actualContentLowercase = actualContent.toLowerCase();
if (this.collator == null) {
- final String normalized = Normalizer.normalize(actualContentLowercase, Normalizer.Form.NFKD);
+ final String normalized = Normalizer.normalize(collatingContent, Normalizer.Form.NFKD);
if (normalized.compareTo(this.lastWord) < 0) {
warningMessage("Out of sequence (Unicode compatibility decomposition): " + actualContent);
}
this.lastWord = normalized;
} else {
- if (this.collator.compare(actualContentLowercase, this.lastWord) < 0) {
+ if (this.collator.compare(collatingContent, this.lastWord) < 0) {
warningMessage("Out of sequence (Collator " +
this.currentDictionary.orthography.toLocale().toString() + "): " + actualContent);
}
- this.lastWord = actualContentLowercase;
+ this.lastWord = collatingContent;
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-07-02 18:31:58
|
Revision: 12697
http://sourceforge.net/p/foray/code/12697
Author: victormote
Date: 2022-07-02 18:31:42 +0000 (Sat, 02 Jul 2022)
Log Message:
-----------
1. Add collator concept to DictionarySorter. 2. Use same to sort the main English dictionary.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionarySorter.java
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 17:48:48 UTC (rev 12696)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 18:31:42 UTC (rev 12697)
@@ -55,13 +55,6 @@
<w><t>&</t></w>
<w><t>a</t></w>
-<phrase><t>a cap-pel-la</t></phrase>
-<phrase><t>a for-ti-o-ri</t></phrase>
-<phrase><t>a go-go</t></phrase>
-<phrase><t>a pos-te-ri-o-ri</t></phrase>
-<phrase><t>a pri-o-ri</t></phrase>
-<phrase><t>a tem-po</t></phrase>
-<w><t>a=plen-ty</t></w>
<w><t>a-a</t></w>
<w><t>aaaaaaaaaa</t><noun><convertible-to-possessive/></noun><comment>Pseudo-word used as a replacement for omitted word elements.</comment></w>
<w><t>Aa-chen</t></w>
@@ -76,14 +69,12 @@
<w><t>Aar-hus</t></w>
<w><t>Aar-on</t></w>
<phrase><t>Aa-ron's beard</t></phrase>
+<w><t>Aa-ron's=beard</t></w>
<phrase><t>Aa-ron's rod</t></phrase>
-<w><t>Aa-ron's=beard</t></w>
<w><t>Aa-ron-ic</t></w>
<w><t>Aa-ron-i-cal</t></w>
<w><t>Aa-ron-ite</t></w>
<w><t>Aar-on-it-ic</t></w>
-<phrase><t>ab in-i-ti-o</t></phrase>
-<phrase><t>ab o-vo</t></phrase>
<w><t>ab-a</t></w>
<w><t>a-ba</t></w>
<w><t>a-bac</t></w>
@@ -158,6 +149,8 @@
<w><t>Ab-bas-side</t></w>
<w><t>ab-ba-tial</t></w>
<w><t>Ab-be</t></w>
+<w><t>ab-bé</t></w>
+<w><t>ab-bés</t></w>
<w><t>ab-bess</t></w>
<w><t>Abbe-vil-e-an</t></w>
<w><t>Ab-be-ville</t></w>
@@ -164,9 +157,9 @@
<w><t>Abbe-vill-i-an</t></w>
<w><t>Ab-bey</t></w>
<w><t>ab-bey</t></w>
-<phrase><t>Ab-bey The-a-tre</t></phrase>
<w><t>ab-bey-stead</t></w>
<w><t>ab-bey-stede</t></w>
+<phrase><t>Ab-bey The-a-tre</t></phrase>
<w><t>Ab-bie</t></w>
<w><t>ab-bot</t></w>
<w><t>Ab-bot</t></w>
@@ -183,8 +176,6 @@
<w><t>ab-bre-vi-a-tion</t></w>
<w><t>ab-bre-vi-a-tor</t></w>
<w><t>Ab-by</t></w>
-<w><t>ab-bé</t></w>
-<w><t>ab-bés</t></w>
<w><t>ab-cou-lomb</t></w>
<w><t>Abd=al=Ka-dir</t></w>
<w><t>Abd=al=Rah-man</t></w>
@@ -225,11 +216,12 @@
<w><t>a-bed</t></w>
<w><t>A-bed-ne-go</t></w>
<w><t>A-bel</t></w>
-<w><t>A-bel=me-ho-lah</t></w>
<w><t>Ab-e-lard</t></w>
+<w><t>Ab-é-lard</t></w>
<w><t>a-bele</t></w>
<w><t>A-be-li-an</t></w>
<phrase><t>A-be-li-an group</t></phrase>
+<w><t>A-bel=me-ho-lah</t></w>
<w><t>a-bel-mosk</t></w>
<w><t>A-be-nez-ra</t></w>
<w><t>Ab-e-o-ku-ta</t></w>
@@ -297,6 +289,7 @@
<w><t>Ab-ing-don</t></w>
<w><t>Ab-ing-ger</t></w>
<w><t>Ab-ing-ton</t></w>
+<phrase><t>ab in-i-ti-o</t></phrase>
<w><t>A-bin-o-am</t></w>
<w><t>A-bin-o-em</t></w>
<w><t>a-bi-o-gen-e-sis</t></w>
@@ -353,10 +346,9 @@
<w><t>ab-laut</t></w>
<w><t>a-blaze</t></w>
<w><t>a-ble</t></w>
-<phrase><t>a-ble rat-ing</t></phrase>
<w><t>a-ble=bod-ied</t></w>
+<w><t>a-ble=bod-ied-ness</t></w>
<phrase><t>a-ble=bod-ied sea-man</t></phrase>
-<w><t>a-ble=bod-ied-ness</t></w>
<w><t>ab-le-gate</t></w>
<w><t>a-bleph-a-rous</t></w>
<w><t>a-blep-si-a</t></w>
@@ -364,6 +356,7 @@
<w><t>a-blep-ti-cal</t></w>
<w><t>a-blep-ti-cal-ly</t></w>
<w><t>a-bler</t></w>
+<phrase><t>a-ble rat-ing</t></phrase>
<w><t>a-blest</t></w>
<w><t>a-blings</t></w>
<w><t>a-blins</t></w>
@@ -385,7 +378,6 @@
<w><t>Ab-ner</t></w>
<phrase><t>Ab-ney lev-el</t></phrase>
<w><t>ab-nor-mal</t></w>
-<phrase><t>ab-nor-mal psy-chol-o-gy</t></phrase>
<w><t>ab-nor-mal-cy</t></w>
<w><t>ab-nor-mal-ise</t></w>
<w><t>ab-nor-mal-ised</t></w>
@@ -396,6 +388,7 @@
<w><t>ab-nor-mal-iz-ing</t></w>
<w><t>ab-nor-mal-ly</t></w>
<w><t>ab-nor-mal-ness</t></w>
+<phrase><t>ab-nor-mal psy-chol-o-gy</t></phrase>
<w><t>ab-nor-mi-ty</t></w>
<w><t>ab-o</t></w>
<w><t>Ab-o</t></w>
@@ -424,8 +417,8 @@
<w><t>ab-o-ma-sum</t></w>
<w><t>ab-o-ma-sus</t></w>
<w><t>a-bom-i-na-ble</t></w>
+<w><t>a-bom-i-na-ble-ness</t></w>
<phrase><t>a-bom-i-na-ble snow-man</t></phrase>
-<w><t>a-bom-i-na-ble-ness</t></w>
<w><t>a-bom-i-na-bly</t></w>
<w><t>a-bom-i-nate</t></w>
<w><t>a-bom-i-nat-ed</t></w>
@@ -467,9 +460,10 @@
<w><t>a-bout=face</t></w>
<w><t>a-bout=ship</t></w>
<w><t>a-bove</t></w>
+<w><t>a-bove-board</t></w>
<phrase><t>a-bove board</t></phrase>
-<w><t>a-bove-board</t></w>
<w><t>a-bove-ground</t></w>
+<phrase><t>ab o-vo</t></phrase>
<w><t>a-box</t></w>
<w><t>abp</t></w>
<w><t>abr</t></w>
@@ -533,19 +527,19 @@
<w><t>ab-seil</t></w>
<w><t>ab-sence</t></w>
<w><t>ab-sent</t></w>
-<phrase><t>ab-sent with-out leave</t></phrase>
-<w><t>ab-sent=mind-ed</t></w>
-<w><t>ab-sent=mind-ed-ness</t></w>
<w><t>ab-sen-ta-tion</t></w>
-<phrase><t>ab-sen-te re-o</t></phrase>
<w><t>ab-sen-tee</t></w>
+<w><t>ab-sen-tee-ism</t></w>
<phrase><t>ab-sen-tee land-lord</t></phrase>
-<w><t>ab-sen-tee-ism</t></w>
<w><t>ab-sent-er</t></w>
+<phrase><t>ab-sen-te re-o</t></phrase>
<w><t>ab-sen-ti-a</t></w>
<w><t>ab-sent-ly</t></w>
+<w><t>ab-sent=mind-ed</t></w>
<w><t>ab-sent-mind-ed-ly</t></w>
+<w><t>ab-sent=mind-ed-ness</t></w>
<w><t>ab-sent-ness</t></w>
+<phrase><t>ab-sent with-out leave</t></phrase>
<w><t>absinth</t></w>
<w><t>ab-sinth</t></w>
<w><t>ab-sinthe</t></w>
@@ -558,10 +552,12 @@
<phrase><t>ab-so-lute al-co-hol</t></phrase>
<phrase><t>ab-so-lute ceil-ing</t></phrase>
<phrase><t>ab-so-lute hu-mid-i-ty</t></phrase>
+<w><t>ab-so-lute-ly</t></w>
<phrase><t>ab-so-lute mag-ni-tude</t></phrase>
<phrase><t>ab-so-lute ma-jor-i-ty</t></phrase>
<phrase><t>ab-so-lute mon-ar-chy</t></phrase>
<phrase><t>ab-so-lute mu-sic</t></phrase>
+<w><t>ab-so-lute-ness</t></w>
<phrase><t>ab-so-lute pitch</t></phrase>
<phrase><t>ab-so-lute tem-per-a-ture</t></phrase>
<phrase><t>ab-so-lute u-nit</t></phrase>
@@ -568,8 +564,6 @@
<phrase><t>ab-so-lute val-ue</t></phrase>
<phrase><t>ab-so-lute vis-cos-i-ty</t></phrase>
<phrase><t>ab-so-lute ze-ro</t></phrase>
-<w><t>ab-so-lute-ly</t></w>
-<w><t>ab-so-lute-ness</t></w>
<w><t>ab-so-lu-tion</t></w>
<w><t>ab-so-lut-ism</t></w>
<w><t>ab-so-lut-ist</t></w>
@@ -625,13 +619,11 @@
<w><t>ab-sti-nent</t></w>
<w><t>ab-sti-nent-ly</t></w>
<w><t>ab-stract</t></w>
-<phrase><t>ab-stract ex-pres-sion-ism</t></phrase>
-<phrase><t>ab-stract noun</t></phrase>
-<phrase><t>ab-stract of ti-tle</t></phrase>
<w><t>ab-stract-ed</t></w>
<w><t>ab-stract-ed-ly</t></w>
<w><t>ab-stract-ed-ness</t></w>
<w><t>ab-stract-er</t></w>
+<phrase><t>ab-stract ex-pres-sion-ism</t></phrase>
<w><t>ab-strac-tion</t></w>
<w><t>ab-strac-tion-al</t></w>
<w><t>ab-strac-tion-ism</t></w>
@@ -641,6 +633,8 @@
<w><t>ab-strac-tive-ness</t></w>
<w><t>ab-stract-ly</t></w>
<w><t>ab-stract-ness</t></w>
+<phrase><t>ab-stract noun</t></phrase>
+<phrase><t>ab-stract of ti-tle</t></phrase>
<w><t>ab-stric-tion</t></w>
<w><t>ab-struse</t></w>
<w><t>ab-struse-ly</t></w>
@@ -651,10 +645,9 @@
<w><t>ab-surd-ly</t></w>
<w><t>ab-surd-ness</t></w>
<w><t>Ab-syr-tus</t></w>
-<phrase><t>Ab-u Dha-bi</t></phrase>
-<phrase><t>Ab-u Sim-bel</t></phrase>
<w><t>A-bu=Bakr</t></w>
<w><t>A-bu=Bekr</t></w>
+<phrase><t>Ab-u Dha-bi</t></phrase>
<w><t>A-bu-kir</t></w>
<phrase><t>A-bu-kir Bay</t></phrase>
<w><t>A-bul-fe-da</t></w>
@@ -671,6 +664,7 @@
<w><t>a-buse</t></w>
<w><t>a-bused</t></w>
<w><t>a-bus-er</t></w>
+<phrase><t>Ab-u Sim-bel</t></phrase>
<w><t>a-bus-ing</t></w>
<w><t>a-bu-sive</t></w>
<w><t>a-bu-sive-ly</t></w>
@@ -699,8 +693,6 @@
<w><t>Ab-ys-sin-i-a</t></w>
<w><t>Ab-ys-sin-i-an</t></w>
<phrase><t>Ab-ys-sin-i-an cat</t></phrase>
-<w><t>Ab-é-lard</t></w>
-<w><t>ac=glob-u-lin</t></w>
<w><t>A-ca-cal-lis</t></w>
<w><t>a-ca-cia</t></w>
<w><t>ac-a-deme</t></w>
@@ -707,10 +699,10 @@
<w><t>ac-a-dem-i-a</t></w>
<w><t>ac-a-de-mi-a</t></w>
<w><t>ac-a-dem-ic</t></w>
-<phrase><t>ac-a-dem-ic dress</t></phrase>
<w><t>ac-a-dem-i-cal</t></w>
<w><t>ac-a-dem-i-cal-ly</t></w>
<w><t>ac-a-dem-i-cals</t></w>
+<phrase><t>ac-a-dem-ic dress</t></phrase>
<w><t>a-cad-e-mi-cian</t></w>
<w><t>ac-a-dem-i-cism</t></w>
<w><t>a-cad-e-mise</t></w>
@@ -747,6 +739,7 @@
<w><t>a-cap-ni-a</t></w>
<w><t>a-cap-ni-al</t></w>
<w><t>a-cap-pel-la</t></w>
+<phrase><t>a cap-pel-la</t></phrase>
<w><t>A-ca-pul-co</t></w>
<w><t>a-car-di-a</t></w>
<w><t>a-car-di-ac</t></w>
@@ -821,8 +814,6 @@
<w><t>ac-cept-er</t></w>
<w><t>ac-cep-tor</t></w>
<w><t>ac-cess</t></w>
-<phrase><t>ac-cess road</t></phrase>
-<phrase><t>ac-cess time</t></phrase>
<w><t>ac-ces-sa-ri-ly</t></w>
<w><t>ac-ces-sa-ri-ness</t></w>
<w><t>ac-ces-sa-ry</t></w>
@@ -830,8 +821,8 @@
<w><t>ac-ces-si-ble</t></w>
<w><t>ac-ces-si-bly</t></w>
<w><t>ac-ces-sion</t></w>
+<w><t>ac-ces-sion-al</t></w>
<phrase><t>ac-ces-sion num-ber</t></phrase>
-<w><t>ac-ces-sion-al</t></w>
<w><t>ac-ces-so-ri-al</t></w>
<w><t>ac-ces-so-ri-i</t></w>
<w><t>ac-ces-so-ri-ly</t></w>
@@ -843,13 +834,13 @@
<w><t>ac-ces-so-ry</t></w>
<phrase><t>ac-ces-so-ry fruit</t></phrase>
<phrase><t>ac-ces-so-ry nerve</t></phrase>
+<phrase><t>ac-cess road</t></phrase>
+<phrase><t>ac-cess time</t></phrase>
<w><t>ac-ciac-ca-tu-ra</t></w>
<w><t>ac-ciac-catu-ras</t></w>
<w><t>ac-ciac-ca-tu-re</t></w>
<w><t>ac-ci-dence</t></w>
<w><t>ac-ci-dent</t></w>
-<phrase><t>ac-ci-dent in-sur-ance</t></phrase>
-<w><t>ac-ci-dent=prone</t></w>
<w><t>ac-ci-den-tal</t></w>
<w><t>ac-ci-den-tal-ism</t></w>
<w><t>ac-ci-den-tal-ist</t></w>
@@ -856,6 +847,8 @@
<w><t>ac-ci-den-tal-i-ty</t></w>
<w><t>ac-ci-den-tal-ly</t></w>
<w><t>ac-ci-den-tal-ness</t></w>
+<phrase><t>ac-ci-dent in-sur-ance</t></phrase>
+<w><t>ac-ci-dent=prone</t></w>
<w><t>ac-ci-die</t></w>
<w><t>ac-cip-i-ter</t></w>
<w><t>ac-cip-i-tral</t></w>
@@ -894,9 +887,9 @@
<w><t>ac-com-mo-dat-ing-ly</t></w>
<w><t>ac-com-mo-da-tion</t></w>
<phrase><t>ac-com-mo-da-tion ad-dress</t></phrase>
+<w><t>ac-com-mo-da-tion-al</t></w>
<phrase><t>ac-com-mo-da-tion bill</t></phrase>
<phrase><t>ac-com-mo-da-tion lad-der</t></phrase>
-<w><t>ac-com-mo-da-tion-al</t></w>
<w><t>ac-com-mo-da-tive</t></w>
<w><t>ac-com-mo-da-tive-ness</t></w>
<w><t>ac-com-mo-da-tor</t></w>
@@ -926,8 +919,8 @@
<w><t>ac-cord-ing</t></w>
<w><t>ac-cord-ing-ly</t></w>
<w><t>ac-cor-di-on</t></w>
+<w><t>ac-cor-di-on-ist</t></w>
<phrase><t>ac-cor-di-on pleats</t></phrase>
-<w><t>ac-cor-di-on-ist</t></w>
<w><t>ac-cost</t></w>
<w><t>ac-cost-a-ble</t></w>
<w><t>ac-cost-ed</t></w>
@@ -936,10 +929,6 @@
<w><t>ac-coucheuse</t></w>
<w><t>ac-cou-cheuse</t></w>
<w><t>ac-count</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
-<phrase><t>ac-count day</t></phrase>
-<phrase><t>ac-count for</t></phrase>
-<phrase><t>ac-count pay-a-ble</t></phrase>
-<phrase><t>ac-count re-ceiv-a-ble</t></phrase>
<w><t>ac-count-a-bil-i-ty</t></w>
<w><t>ac-count-a-ble</t></w>
<w><t>ac-count-a-ble-ness</t></w>
@@ -947,7 +936,11 @@
<w><t>ac-count-an-cy</t></w>
<w><t>ac-count-ant</t></w>
<w><t>ac-count-ant-ship</t></w>
+<phrase><t>ac-count day</t></phrase>
+<phrase><t>ac-count for</t></phrase>
<w><t>ac-count-ing</t></w>
+<phrase><t>ac-count pay-a-ble</t></phrase>
+<phrase><t>ac-count re-ceiv-a-ble</t></phrase>
<w><t>ac-cou-ple-ment</t></w>
<w><t>ac-cou-ter</t></w>
<w><t>ac-cou-terment</t></w>
@@ -1069,8 +1062,8 @@
<w><t>ac-et-an-i-lide</t></w>
<w><t>ac-et-a-nis-i-dine</t></w>
<w><t>ac-e-tate</t></w>
+<w><t>ac-e-tat-ed</t></w>
<phrase><t>ac-e-tate ray-on</t></phrase>
-<w><t>ac-e-tat-ed</t></w>
<w><t>ac-e-ta-tion</t></w>
<w><t>ac-et-a-zol-a-mide</t></w>
<w><t>A-ce-tes</t></w>
@@ -1128,6 +1121,7 @@
<w><t>a-ce-tyl-meth-yl-car-bi-nol</t></w>
<phrase><t>ac-e-tyl-sal-i-cyl-ic ac-id</t></phrase>
<w><t>ace-y=deuc-y</t></w>
+<w><t>ac=glob-u-lin</t></w>
<w><t>A-chab</t></w>
<w><t>A-chad</t></w>
<w><t>A-chae-a</t></w>
@@ -1170,11 +1164,11 @@
<w><t>a-chiev-ing</t></w>
<w><t>a-chi-la-ry</t></w>
<w><t>Ach-ill</t></w>
-<phrase><t>Ach-ill Is-land</t></phrase>
<w><t>Ach-il-le-an</t></w>
<w><t>A-chil-les</t></w>
<phrase><t>A-chil-les heel</t></phrase>
<phrase><t>A-chil-les ten-don</t></phrase>
+<phrase><t>Ach-ill Is-land</t></phrase>
<w><t>A-chim-a-as</t></w>
<w><t>A-chim-e-lech</t></w>
<w><t>a-chim-e-nes</t></w>
@@ -1202,10 +1196,10 @@
<w><t>ach-ro-mat</t></w>
<w><t>ach-ro-mate</t></w>
<w><t>ach-ro-mat-ic</t></w>
+<w><t>ach-ro-mat-i-cal-ly</t></w>
<phrase><t>ach-ro-mat-ic col-or</t></phrase>
+<w><t>ach-ro-ma-tic-i-ty</t></w>
<phrase><t>ach-ro-mat-ic lens</t></phrase>
-<w><t>ach-ro-mat-i-cal-ly</t></w>
-<w><t>ach-ro-ma-tic-i-ty</t></w>
<w><t>a-chro-ma-tin</t></w>
<w><t>a-chro-ma-tise</t></w>
<w><t>a-chro-ma-tised</t></w>
@@ -1233,18 +1227,14 @@
<w><t>a-cic-u-lat-ed</t></w>
<w><t>a-cic-u-lum</t></w>
<w><t>ac-id</t></w>
+<w><t>Ac-i-dal-i-um</t></w>
+<w><t>Ac-i-dan-the-ra</t></w>
<phrase><t>ac-id drop</t></phrase>
-<phrase><t>ac-id rock</t></phrase>
-<phrase><t>ac-id soil</t></phrase>
-<phrase><t>ac-id test</t></phrase>
-<phrase><t>ac-id val-ue</t></phrase>
+<w><t>ac-i-de-mi-a</t></w>
<w><t>ac-id=fast</t></w>
<w><t>ac-id=fast-ness</t></w>
<w><t>ac-id=form-ing</t></w>
<w><t>ac-id=head</t></w>
-<w><t>Ac-i-dal-i-um</t></w>
-<w><t>Ac-i-dan-the-ra</t></w>
-<w><t>ac-i-de-mi-a</t></w>
<w><t>a-cid-ic</t></w>
<w><t>a-cid-i-fi-a-ble</t></w>
<w><t>a-cid-i-fi-ca-tion</t></w>
@@ -1272,6 +1262,9 @@
<phrase><t>ac-i-doph-i-lus milk</t></phrase>
<w><t>ac-i-do-sis</t></w>
<w><t>ac-i-dot-ic</t></w>
+<phrase><t>ac-id rock</t></phrase>
+<phrase><t>ac-id soil</t></phrase>
+<phrase><t>ac-id test</t></phrase>
<w><t>a-cid-u-lant</t></w>
<w><t>a-cid-u-late</t></w>
<w><t>a-cid-u-lat-ed</t></w>
@@ -1280,6 +1273,7 @@
<w><t>a-cid-u-lent</t></w>
<w><t>a-cid-u-lous</t></w>
<w><t>ac-i-du-ric</t></w>
+<phrase><t>ac-id val-ue</t></phrase>
<w><t>ac-id-y</t></w>
<w><t>ac-i-er-ate</t></w>
<w><t>ac-i-er-at-ed</t></w>
@@ -1347,9 +1341,9 @@
<w><t>acor-a-ble</t></w>
<w><t>a-corn</t></w>
<phrase><t>a-corn bar-na-cle</t></phrase>
+<w><t>a-corned</t></w>
<phrase><t>a-corn valve</t></phrase>
<phrase><t>a-corn worm</t></phrase>
-<w><t>a-corned</t></w>
<w><t>a-cos-mism</t></w>
<w><t>a-cos-mist</t></w>
<w><t>a-cos-mis-tic</t></w>
@@ -1362,13 +1356,13 @@
<w><t>a-cous-mas</t></w>
<w><t>a-cous-ma-ta</t></w>
<w><t>a-cous-tic</t></w>
-<phrase><t>a-cous-tic fea-ture</t></phrase>
-<phrase><t>a-cous-tic nerve</t></phrase>
-<phrase><t>a-cous-tic pho-net-ics</t></phrase>
<w><t>a-cous-ti-cal</t></w>
<w><t>a-cous-ti-cal-ly</t></w>
+<phrase><t>a-cous-tic fea-ture</t></phrase>
<w><t>ac-ous-ti-cian</t></w>
<w><t>a-cous-ti-cian</t></w>
+<phrase><t>a-cous-tic nerve</t></phrase>
+<phrase><t>a-cous-tic pho-net-ics</t></phrase>
<w><t>a-cous-tics</t></w>
<w><t>acpt</t></w>
<w><t>ac-quaint</t></w>
@@ -1405,10 +1399,10 @@
<w><t>a-cral-de-hyde</t></w>
<w><t>A-cre</t></w>
<w><t>a-cre</t></w>
+<w><t>a-cre-age</t></w>
+<w><t>a-cred</t></w>
<w><t>a-cre=foot</t></w>
<w><t>a-cre=inch</t></w>
-<w><t>a-cre-age</t></w>
-<w><t>a-cred</t></w>
<w><t>A-c-res</t></w>
<w><t>ac-rid</t></w>
<w><t>ac-ri-dine</t></w>
@@ -1512,7 +1506,6 @@
<w><t>ac-ryl-yl</t></w>
<w><t>ac-ry-lyl</t></w>
<w><t>act</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
-<phrase><t>act of con-tri-tion</t></phrase>
<w><t>Ac-ta</t></w>
<w><t>act-a-bil-i-ty</t></w>
<w><t>act-a-ble</t></w>
@@ -1571,13 +1564,13 @@
<w><t>ac-ti-no-u-ra-ni-um</t></w>
<w><t>ac-ti-no-zo-an</t></w>
<w><t>ac-tion</t></w>
+<w><t>ac-tion-a-ble</t></w>
+<w><t>ac-tion-a-bly</t></w>
+<w><t>ac-tion-less</t></w>
<phrase><t>ac-tion paint-ing</t></phrase>
<phrase><t>ac-tion po-ten-tial</t></phrase>
<phrase><t>ac-tion re-play</t></phrase>
<phrase><t>ac-tion sta-tions</t></phrase>
-<w><t>ac-tion-a-ble</t></w>
-<w><t>ac-tion-a-bly</t></w>
-<w><t>ac-tion-less</t></w>
<w><t>Ac-tis</t></w>
<w><t>Ac-ti-um</t></w>
<w><t>ac-ti-vate</t></w>
@@ -1591,9 +1584,9 @@
<w><t>ac-tive</t></w>
<phrase><t>ac-tive du-ty</t></phrase>
<phrase><t>ac-tive list</t></phrase>
-<phrase><t>ac-tive serv-ice</t></phrase>
<w><t>ac-tive-ly</t></w>
<w><t>ac-tive-ness</t></w>
+<phrase><t>ac-tive serv-ice</t></phrase>
<w><t>ac-tiv-ism</t></w>
<w><t>ac-tiv-ist</t></w>
<w><t>ac-tiv-i-ty</t></w>
@@ -1600,13 +1593,14 @@
<w><t>ac-tiv-ize</t></w>
<w><t>ac-tiv-ized</t></w>
<w><t>ac-tiv-iz-ing</t></w>
+<phrase><t>act of con-tri-tion</t></phrase>
<w><t>ac-to-my-o-sin</t></w>
<w><t>Ac-ton</t></w>
<w><t>ac-ton</t></w>
<w><t>Ac-tor</t></w>
<w><t>ac-tor</t></w>
+<w><t>Ac-tor-i-dae</t></w>
<w><t>ac-tor=proof</t></w>
-<w><t>Ac-tor-i-dae</t></w>
<w><t>ac-tress</t></w>
<w><t>ac-tu-al</t></w>
<w><t>ac-tu-al-ise</t></w>
@@ -1666,13 +1660,6 @@
<w><t>ac-yl-at-ing</t></w>
<w><t>ac-yl-a-tion</t></w>
<w><t>a-cyl-o-in</t></w>
-<phrase><t>ad ho-mi-nem</t></phrase>
-<phrase><t>ad in-fi-ni-tum</t></phrase>
-<phrase><t>ad in-ter-im</t></phrase>
-<phrase><t>ad li-tem</t></phrase>
-<phrase><t>ad nau-se-am</t></phrase>
-<phrase><t>ad va-lo-rem</t></phrase>
-<w><t>ad=lib</t></w>
<w><t>A-da</t></w>
<w><t>A-da-bel</t></w>
<w><t>A-da-belle</t></w>
@@ -1690,8 +1677,8 @@
<w><t>Ad-am</t></w>
<phrase><t>Ad-am's ap-ple</t></phrase>
<w><t>Ad-am's=nee-dle</t></w>
+<w><t>Ad-a-ma</t></w>
<w><t>Ad-am=and=Eve</t></w>
-<w><t>Ad-a-ma</t></w>
<w><t>ad-a-mant</t></w>
<w><t>ad-a-man-tine</t></w>
<w><t>Ad-a-mas</t></w>
@@ -1703,8 +1690,8 @@
<w><t>Ad-am-ite</t></w>
<w><t>Ad-am-it-ic</t></w>
<w><t>Ad-ams</t></w>
+<w><t>ad-ams-ite</t></w>
<phrase><t>Ad-ams=Stokes syn-drome</t></phrase>
-<w><t>ad-ams-ite</t></w>
<w><t>A-da-na</t></w>
<w><t>A-da-pa</t></w>
<w><t>a-dapt</t><verb><regular-root/></verb></w>
@@ -1718,9 +1705,9 @@
<w><t>a-dapt-er</t></w>
<w><t>a-dap-tion</t></w>
<w><t>a-dap-tive</t></w>
-<phrase><t>a-dap-tive ra-di-a-tion</t></phrase>
<w><t>a-dap-tive-ly</t></w>
<w><t>a-dap-tive-ness</t></w>
+<phrase><t>a-dap-tive ra-di-a-tion</t></phrase>
<w><t>a-dap-tor</t></w>
<w><t>A-dar</t></w>
<phrase><t>A-dar She-ni</t></phrase>
@@ -1730,8 +1717,8 @@
<w><t>add-a-ble</t></w>
<w><t>Ad-dams</t></w>
<w><t>ad-dax</t></w>
+<w><t>add-ed-ly</t></w>
<phrase><t>add-ed sixth</t></phrase>
-<w><t>add-ed-ly</t></w>
<w><t>ad-dend</t></w>
<w><t>ad-den-dum</t></w>
<w><t>add-er</t></w>
@@ -1860,6 +1847,7 @@
<w><t>ad-he-sive-ness</t></w>
<w><t>ad-hib-it</t></w>
<w><t>ad-hi-bi-tion</t></w>
+<phrase><t>ad ho-mi-nem</t></phrase>
<w><t>ad-i-a-bat</t></w>
<w><t>ad-i-a-bat-ic</t></w>
<w><t>ad-i-a-bat-i-cal-ly</t></w>
@@ -1885,6 +1873,8 @@
<w><t>A-di-granth</t></w>
<w><t>A-din</t></w>
<w><t>A-di-na</t></w>
+<phrase><t>ad in-fi-ni-tum</t></phrase>
+<phrase><t>ad in-ter-im</t></phrase>
<w><t>ad-i-os</t></w>
<w><t>a-di-os</t></w>
<w><t>ad-i-pate</t></w>
@@ -1961,7 +1951,9 @@
<w><t>Ad-ler</t></w>
<w><t>Ad-le-ri-an</t></w>
<w><t>Ad-ley</t></w>
+<w><t>ad=lib</t></w>
<phrase><t>A-d-lie Coast</t></phrase>
+<phrase><t>ad li-tem</t></phrase>
<w><t>Ad-mah</t></w>
<w><t>ad-man</t></w>
<w><t>ad-mass</t></w>
@@ -2039,6 +2031,7 @@
<w><t>Ad-nan</t></w>
<w><t>ad-nate</t></w>
<w><t>ad-na-tion</t></w>
+<phrase><t>ad nau-se-am</t></phrase>
<w><t>ad-nom-i-nal</t></w>
<w><t>ad-noun</t></w>
<w><t>a-do</t></w>
@@ -2088,8 +2081,8 @@
<w><t>a-dorn-ing-ly</t></w>
<w><t>a-dorn-ment</t></w>
<w><t>a-dor-no</t></w>
+<w><t>a-dor-sé</t></w>
<w><t>a-dorsed</t></w>
-<w><t>a-dor-sé</t></w>
<w><t>A-dou-la</t></w>
<w><t>A-do-wa</t></w>
<w><t>a-down</t></w>
@@ -2099,15 +2092,15 @@
<w><t>A-dras-tos</t></w>
<w><t>A-dras-tus</t></w>
<w><t>ad-re-nal</t></w>
-<phrase><t>ad-re-nal gland</t></phrase>
-<phrase><t>ad-re-nal in-suf-fi-cien-cy</t></phrase>
<w><t>ad-re-nal-ec-to-mize</t></w>
<w><t>ad-re-nal-ec-to-mized</t></w>
<w><t>ad-re-nal-ec-to-miz-ing</t></w>
<w><t>ad-re-nal-ec-to-my</t></w>
+<phrase><t>ad-re-nal gland</t></phrase>
<w><t>A-dren-al-in</t></w>
<w><t>A-dren-a-lin</t></w>
<w><t>a-dren-a-line</t></w>
+<phrase><t>ad-re-nal in-suf-fi-cien-cy</t></phrase>
<w><t>ad-ren-er-gic</t></w>
<w><t>a-dre-nin</t></w>
<w><t>a-dre-nine</t></w>
@@ -2186,12 +2179,13 @@
<w><t>A-du-wa</t></w>
<w><t>adv</t></w>
<w><t>Ad-vai-ta</t></w>
+<phrase><t>ad va-lo-rem</t></phrase>
<w><t>ad-vance</t></w>
-<phrase><t>ad-vance guard</t></phrase>
-<phrase><t>ad-vance poll</t></phrase>
<w><t>ad-vanced</t></w>
<phrase><t>ad-vanced gas=cooled re-ac-tor</t></phrase>
+<phrase><t>ad-vance guard</t></phrase>
<w><t>ad-vance-ment</t></w>
+<phrase><t>ad-vance poll</t></phrase>
<w><t>ad-vanc-er</t></w>
<w><t>ad-vanc-es</t></w>
<w><t>ad-vanc-ing</t></w>
@@ -2207,7 +2201,6 @@
<w><t>ad-ve-nae</t></w>
<w><t>Ad-vent</t></w>
<w><t>ad-vent</t></w>
-<phrase><t>Ad-vent Sun-day</t></phrase>
<w><t>Ad-vent-ism</t></w>
<w><t>Ad-vent-ist</t></w>
<w><t>ad-ven-ti-ti-a</t></w>
@@ -2217,10 +2210,11 @@
<w><t>ad-ven-ti-tious-ness</t></w>
<w><t>ad-ven-tive</t></w>
<w><t>ad-ven-tive-ly</t></w>
+<phrase><t>Ad-vent Sun-day</t></phrase>
<w><t>ad-ven-ture</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
-<phrase><t>ad-ven-ture play-ground</t></phrase>
<w><t>ad-ven-tured</t></w>
<w><t>ad-ven-ture-ful</t></w>
+<phrase><t>ad-ven-ture play-ground</t></phrase>
<w><t>ad-ven-tur-er</t></w>
<w><t>ad-ven-ture-some</t></w>
<w><t>ad-ven-ture-some-ly</t></w>
@@ -2242,9 +2236,9 @@
<w><t>ad-ver-sa-tive</t></w>
<w><t>ad-ver-sa-tive-ly</t></w>
<w><t>ad-verse</t></w>
-<phrase><t>ad-verse pos-ses-sion</t></phrase>
<w><t>ad-verse-ly</t></w>
<w><t>ad-verse-ness</t></w>
+<phrase><t>ad-verse pos-ses-sion</t></phrase>
<w><t>ad-ver-si-ty</t></w>
<w><t>ad-vert</t></w>
<w><t>ad-vert-ence</t></w>
@@ -2282,8 +2276,8 @@
<w><t>ad-vo-caat</t></w>
<w><t>ad-vo-ca-cy</t></w>
<w><t>ad-vo-cate</t><noun><pluralizable/><convertible-to-possessive/></noun><verb/></w>
+<w><t>ad-vo-cat-ed</t></w>
<phrase><t>Ad-vo-cate De-pute</t></phrase>
-<w><t>ad-vo-cat-ed</t></w>
<w><t>ad-vo-cat-ing</t></w>
<w><t>ad-vo-ca-tion</t></w>
<w><t>ad-voc-a-to-ry</t></w>
@@ -2315,6 +2309,7 @@
<w><t>ae-de-a-gal</t></w>
<w><t>ae-de-a-gus</t></w>
<w><t>a-e-des</t></w>
+<w><t>a-ë-des</t></w>
<w><t>ae-dic-u-la</t></w>
<w><t>ae-di-cule</t></w>
<w><t>Ae-dil-berct</t></w>
@@ -2322,7 +2317,9 @@
<w><t>ae-dile-ship</t></w>
<w><t>ae-dil-i-tian</t></w>
<w><t>ae-doe-a-gus</t></w>
+<w><t>A-ë-don</t></w>
<w><t>Ae-e-tes</t></w>
+<w><t>Ae-ë-tes</t></w>
<w><t>Ae-gae-on</t></w>
<w><t>Ae-ga-tes</t></w>
<w><t>Ae-ge-an</t></w>
@@ -2361,6 +2358,7 @@
<w><t>Ae-ne-id</t></w>
<w><t>A-e-ne-o-lith-ic</t></w>
<w><t>a-e-ne-ous</t></w>
+<w><t>a-ë-ne-ous</t></w>
<w><t>Ae-ni-us</t></w>
<w><t>Ae-o-li-a</t></w>
<w><t>Ae-o-li-an</t></w>
@@ -2383,30 +2381,40 @@
<w><t>ae-rar-i-an</t></w>
<w><t>ae-rar-i-um</t></w>
<w><t>aer-ate</t></w>
+<w><t>aër-ate</t></w>
<w><t>aer-at-ed</t></w>
<w><t>aer-at-ing</t></w>
<w><t>aer-a-tion</t></w>
<w><t>aer-a-tor</t></w>
+<w><t>aër-a-tor</t></w>
<w><t>aer-en-chy-ma</t></w>
<w><t>Aer-i-a</t></w>
<w><t>aer-i-al</t></w>
-<phrase><t>aer-i-al lad-der</t></phrase>
-<phrase><t>aer-i-al per-spec-tive</t></phrase>
-<phrase><t>aer-i-al ping-pong</t></phrase>
+<w><t>aër-i-al</t></w>
<w><t>aer-i-al-ist</t></w>
+<w><t>aër-i-al-ist</t></w>
<w><t>aer-i-al-i-ty</t></w>
+<w><t>aër-i-al-i-ty</t></w>
+<phrase><t>aer-i-al lad-der</t></phrase>
<w><t>aer-i-al-ly</t></w>
+<w><t>aër-i-al-ly</t></w>
<w><t>aer-i-al-ness</t></w>
+<w><t>aër-i-al-ness</t></w>
+<phrase><t>aer-i-al per-spec-tive</t></phrase>
+<phrase><t>aer-i-al ping-pong</t></phrase>
<w><t>aer-ie</t></w>
<w><t>aer-ies</t></w>
<w><t>aer-if-er-ous</t></w>
+<w><t>aër-if-er-ous</t></w>
<w><t>aer-i-fi-ca-tion</t></w>
+<w><t>aër-i-fi-ca-tion</t></w>
<w><t>aer-i-fied</t></w>
<w><t>aer-i-form</t></w>
+<w><t>aër-i-form</t></w>
<w><t>aer-i-fy</t></w>
+<w><t>aër-i-fy</t></w>
<w><t>aer-i-fy-ing</t></w>
<w><t>aer-o</t></w>
-<phrase><t>aer-o en-gine</t></phrase>
<w><t>aer-o-bac-te-ri-o-log-i-cal</t></w>
<w><t>aer-o-bac-te-ri-o-log-i-cal-ly</t></w>
<w><t>aer-o-bac-te-ri-ol-o-gist</t></w>
@@ -2444,6 +2452,7 @@
<w><t>aer-o-e-las-tic-i-ty</t></w>
<w><t>aer-o-e-las-tics</t></w>
<w><t>aer-o-em-bo-lism</t></w>
+<phrase><t>aer-o en-gine</t></phrase>
<w><t>aer-o-foil</t></w>
<w><t>aer-o-gel</t></w>
<w><t>aer-o-gen-ic</t></w>
@@ -2451,6 +2460,7 @@
<w><t>aer-og-e-nous</t></w>
<w><t>aer-o-gram</t></w>
<w><t>aer-o-gramme</t></w>
+<w><t>aér-o-gramme</t></w>
<w><t>aer-o-graph</t></w>
<w><t>aer-og-ra-pher</t></w>
<w><t>aer-o-graph-ic</t></w>
@@ -2486,6 +2496,7 @@
<w><t>aer-o-neu-ro-sis</t></w>
<w><t>ae-ron-o-my</t></w>
<w><t>aer-o-pause</t></w>
+<w><t>A-ër-o-pe</t></w>
<w><t>aer-o-pha-gia</t></w>
<w><t>aer-o-pha-gi-a</t></w>
<w><t>aer-oph-a-gist</t></w>
@@ -2528,6 +2539,7 @@
<w><t>ae-ru-gi-nous</t></w>
<w><t>ae-ru-go</t></w>
<w><t>aer-y</t></w>
+<w><t>aër-y</t></w>
<w><t>Ae-sa-cus</t></w>
<w><t>Aes-chi-nes</t></w>
<w><t>Aes-chy-le-an</t></w>
@@ -2575,7 +2587,6 @@
<w><t>Ae-to-li-a</t></w>
<w><t>Ae-to-li-an</t></w>
<w><t>Ae-to-lus</t></w>
-<w><t>Ae-ë-tes</t></w>
<w><t>a-faced</t></w>
<w><t>a-fac-ing</t></w>
<w><t>a-far</t></w>
@@ -2680,6 +2691,7 @@
<w><t>af-fric-a-tive</t></w>
<w><t>af-fright</t></w>
<w><t>af-front</t></w>
+<w><t>af-fron-té</t></w>
<w><t>af-front-ed-ly</t></w>
<w><t>af-front-ed-ness</t></w>
<w><t>af-front-er</t></w>
@@ -2686,12 +2698,11 @@
<w><t>af-front-ing-ly</t></w>
<w><t>af-fron-tive</t></w>
<w><t>af-fron-tive-ness</t></w>
-<w><t>af-fron-té</t></w>
<w><t>af-fu-sion</t></w>
<w><t>af-ghan</t></w>
<w><t>Af-ghan</t></w>
+<w><t>af-ghan-ets</t></w>
<phrase><t>Af-ghan hound</t></phrase>
-<w><t>af-ghan-ets</t></w>
<w><t>Af-ghan-i</t></w>
<w><t>af-ghan-i</t></w>
<w><t>Af-ghan-i-stan</t></w>
@@ -2711,6 +2722,7 @@
<w><t>a-fore-said</t></w>
<w><t>a-fore-thought</t></w>
<w><t>a-fore-time</t></w>
+<phrase><t>a for-ti-o-ri</t></phrase>
<w><t>a-foul</t></w>
<w><t>a-fraid</t></w>
<w><t>Af-ra-mer-i-can</t></w>
@@ -2721,9 +2733,6 @@
<w><t>Af-ric</t></w>
<w><t>Af-ri-ca</t></w>
<w><t>Af-ri-can</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
-<phrase><t>Af-ri-can lil-y</t></phrase>
-<phrase><t>Af-ri-can ma-hog-a-ny</t></phrase>
-<phrase><t>Af-ri-can vi-o-let</t></phrase>
<w><t>Af-ri-can-der</t></w>
<w><t>Af-ri-can-der-ism</t></w>
<w><t>Af-ri-can-ise</t></w>
@@ -2733,7 +2742,10 @@
<w><t>Af-ri-can-ize</t></w>
<w><t>Af-ri-can-ized</t></w>
<w><t>Af-ri-can-iz-ing</t></w>
+<phrase><t>Af-ri-can lil-y</t></phrase>
+<phrase><t>Af-ri-can ma-hog-a-ny</t></phrase>
<w><t>Af-ri-can-thro-pus</t></w>
+<phrase><t>Af-ri-can vi-o-let</t></phrase>
<w><t>Af-ri-kaans</t></w>
<w><t>Af-ri-kan-der</t></w>
<w><t>Af-ri-kan-der-ism</t></w>
@@ -2745,15 +2757,14 @@
<w><t>Af-ro</t></w>
<w><t>Af-ro=A-mer-i-can</t></w>
<w><t>Af-ro=A-sian</t></w>
+<w><t>Af-ro-a-si-at-ic</t></w>
<w><t>Af-ro=A-si-at-ic</t></w>
<w><t>Af-ro=chain</t></w>
<w><t>Af-ro=comb</t></w>
<w><t>Af-ro=Cu-ban</t></w>
-<w><t>Af-ro-a-si-at-ic</t></w>
<w><t>af-ror-mo-si-a</t></w>
<w><t>aft</t></w>
<w><t>af-ter</t></w>
-<w><t>af-ter=din-ner</t></w>
<w><t>af-ter-birth</t></w>
<w><t>af-ter-bod-ies</t></w>
<w><t>af-ter-bod-y</t></w>
@@ -2766,6 +2777,7 @@
<w><t>af-ter-cool-er</t></w>
<w><t>af-ter-damp</t></w>
<w><t>af-ter-deck</t></w>
+<w><t>af-ter=din-ner</t></w>
<w><t>af-ter-ef-fect</t></w>
<w><t>af-ter-glow</t></w>
<w><t>af-ter-growth</t></w>
@@ -2799,8 +2811,6 @@
<w><t>aft-most</t></w>
<w><t>A-fyon</t></w>
<w><t>a-ga</t></w>
-<phrase><t>A-ga Khan</t></phrase>
-<phrase><t>A-ga Khan IV</t></phrase>
<w><t>Ag-a-bus</t></w>
<w><t>Ag-a-cles</t></w>
<w><t>A-ga-dir</t></w>
@@ -2807,6 +2817,8 @@
<w><t>A-gag</t></w>
<w><t>a-gain</t></w>
<w><t>a-gainst</t></w>
+<phrase><t>A-ga Khan</t></phrase>
+<phrase><t>A-ga Khan IV</t></phrase>
<w><t>a-gal</t></w>
<w><t>ag-a-lite</t></w>
<w><t>a-gal-loch</t></w>
@@ -2829,6 +2841,7 @@
<w><t>ag-a-mous</t></w>
<w><t>ag-a-my</t></w>
<w><t>A-ga-na</t></w>
+<w><t>A-ga-ña</t></w>
<w><t>Ag-a-nip-pe</t></w>
<w><t>Ag-a-nus</t></w>
<w><t>ag-a-pan-thus</t></w>
@@ -2849,8 +2862,8 @@
<w><t>A-gas-tya</t></w>
<w><t>ag-a-ta</t></w>
<w><t>ag-ate</t></w>
+<w><t>ag-ate-like</t></w>
<phrase><t>ag-ate line</t></phrase>
-<w><t>ag-ate-like</t></w>
<w><t>ag-ate-ware</t></w>
<w><t>Ag-a-tha</t></w>
<w><t>Ag-a-thar-chi-des</t></w>
@@ -2865,19 +2878,15 @@
<w><t>A-ga-ve</t></w>
<w><t>a-ga-ve</t></w>
<w><t>a-gaze</t></w>
-<w><t>A-ga-ña</t></w>
<w><t>ag-ba</t></w>
<w><t>agcy</t></w>
<w><t>age</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
-<phrase><t>age har-den-ing</t></phrase>
-<phrase><t>age of con-sent</t></phrase>
-<phrase><t>Age of Rea-son</t></phrase>
-<w><t>age=old</t></w>
<w><t>a-ged</t></w>
<w><t>a-ged-ly</t></w>
<w><t>a-ged-ness</t></w>
<w><t>A-gee</t></w>
<w><t>a-gee</t></w>
+<phrase><t>age har-den-ing</t></phrase>
<w><t>age-ing</t></w>
<w><t>Ag-e-la-us</t></w>
<w><t>age-less</t></w>
@@ -2895,12 +2904,15 @@
<w><t>A-ge-nois</t></w>
<w><t>A-ge-nor</t></w>
<w><t>a-gent</t></w>
-<phrase><t>a-gent of pro-duc-tion</t></phrase>
-<phrase><t>a-gent pro-vo-ca-teur</t></phrase>
<w><t>a-gent=gen-er-al</t></w>
<w><t>a-gen-tial</t></w>
<w><t>a-gen-ti-val</t></w>
<w><t>a-gen-tive</t></w>
+<phrase><t>a-gent of pro-duc-tion</t></phrase>
+<phrase><t>a-gent pro-vo-ca-teur</t></phrase>
+<phrase><t>age of con-sent</t></phrase>
+<phrase><t>Age of Rea-son</t></phrase>
+<w><t>age=old</t></w>
<w><t>ag-er-a-tum</t></w>
<w><t>a-geu-si-a</t></w>
<w><t>a-geu-sic</t></w>
@@ -3050,6 +3062,7 @@
<w><t>a-go</t></w>
<w><t>a-gog</t></w>
<w><t>a-gog-ics</t></w>
+<phrase><t>a go-go</t></phrase>
<w><t>ag-on</t></w>
<w><t>Ag-on</t></w>
<w><t>ag-o-nal</t></w>
@@ -3100,6 +3113,7 @@
<w><t>a-grar-i-an-ly</t></w>
<w><t>A-grau-los</t></w>
<w><t>a-grav-ic</t></w>
+<w><t>a-gré-a-tion</t></w>
<w><t>a-gree</t></w>
<w><t>a-gree-a-bil-i-ty</t></w>
<w><t>a-gree-a-ble</t></w>
@@ -3110,6 +3124,9 @@
<w><t>a-gree-ing-ly</t></w>
<w><t>A-gree-ment</t></w>
<w><t>a-gree-ment</t></w>
+<w><t>a-gré-gé</t></w>
+<w><t>a-gré-mens</t></w>
+<w><t>a-gré-ment</t></w>
<w><t>a-gres-tal</t></w>
<w><t>a-gres-tic</t></w>
<w><t>ag-ri-busi-ness</t></w>
@@ -3151,10 +3168,6 @@
<w><t>A-gro-te-ra</t></w>
<w><t>a-ground</t></w>
<w><t>ag-ryp-not-ic</t></w>
-<w><t>a-gré-a-tion</t></w>
-<w><t>a-gré-gé</t></w>
-<w><t>a-gré-mens</t></w>
-<w><t>a-gré-ment</t></w>
<w><t>agt</t></w>
<w><t>A-gua-dil-la</t></w>
<w><t>a-guar-dien-te</t></w>
@@ -3220,10 +3233,11 @@
<w><t>A-ias</t></w>
<w><t>ai-blins</t></w>
<w><t>aid</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
+<w><t>A-ï-da</t></w>
<w><t>Ai-dan</t></w>
<w><t>aide</t></w>
+<w><t>aide=mé-moire</t></w>
<w><t>aide=m-moire</t></w>
-<w><t>aide=mé-moire</t></w>
<w><t>aid-er</t></w>
<w><t>aides=mé-moire</t></w>
<w><t>aid-ful</t></w>
@@ -3270,54 +3284,30 @@
<w><t>ain</t></w>
<w><t>a-in</t></w>
<w><t>ain't</t></w>
+<w><t>aî-né</t></w>
+<w><t>aî-née</t></w>
<w><t>Ain-tab</t></w>
<w><t>Ai-nu</t></w>
<w><t>air</t></w>
<w><t>A-ir</t></w>
+<w><t>A-ïr</t></w>
<phrase><t>air a-lert</t></phrase>
+<w><t>air-bill</t></w>
<phrase><t>air blad-der</t></phrase>
-<phrase><t>air chief mar-shal</t></phrase>
-<phrase><t>air com-mo-dore</t></phrase>
-<phrase><t>air con-di-tion-ing</t></phrase>
-<phrase><t>air cor-ri-dor</t></phrase>
-<phrase><t>air cov-er</t></phrase>
-<phrase><t>air cur-tain</t></phrase>
-<phrase><t>air cush-ion</t></phrase>
-<phrase><t>air cyl-in-der</t></phrase>
-<phrase><t>air em-bo-lism</t></phrase>
-<phrase><t>air host-ess</t></phrase>
-<phrase><t>air jack-et</t></phrase>
-<phrase><t>air let-ter</t></phrase>
-<phrase><t>air mar-shal</t></phrase>
-<phrase><t>Air Of-fic-er</t></phrase>
-<phrase><t>air pock-et</t></phrase>
-<phrase><t>air pow-er</t></phrase>
-<phrase><t>air ri-fle</t></phrase>
-<phrase><t>air sta-tion</t></phrase>
-<phrase><t>air ter-mi-nal</t></phrase>
-<phrase><t>air traf-fic</t></phrase>
-<phrase><t>air tur-bine</t></phrase>
-<phrase><t>air ves-i-cle</t></phrase>
-<phrase><t>air vice=mar-shal</t></phrase>
-<w><t>air=breath-er</t></w>
-<w><t>air=con-di-tion</t></w>
-<w><t>air=hard-en-ing</t></w>
-<w><t>air=in-take</t></w>
-<w><t>air=mind-ed</t></w>
-<w><t>air=mind-ed-ness</t></w>
-<phrase><t>air=raid ward-en</t></phrase>
-<phrase><t>air=sea res-cue</t></phrase>
-<w><t>air=to=sur-face</t></w>
-<phrase><t>air=traf-fic con-trol</t></phrase>
-<w><t>air=twist-ed</t></w>
-<w><t>air-bill</t></w>
<w><t>air-boat</t></w>
<w><t>air-borne</t></w>
<w><t>air-bra-sive</t></w>
+<w><t>air=breath-er</t></w>
<w><t>air-brick</t></w>
<w><t>air-brush</t></w>
<w><t>air-burst</t></w>
<w><t>air-bus</t></w>
+<phrase><t>air chief mar-shal</t></phrase>
+<phrase><t>air com-mo-dore</t></phrase>
+<w><t>air=con-di-tion</t></w>
+<phrase><t>air con-di-tion-ing</t></phrase>
+<phrase><t>air cor-ri-dor</t></phrase>
+<phrase><t>air cov-er</t></phrase>
<w><t>air-craft</t></w>
<phrase><t>air-craft car-ri-er</t></phrase>
<phrase><t>air-craft cloth</t></phrase>
@@ -3327,6 +3317,9 @@
<w><t>air-crafts-wom-en</t></w>
<w><t>air-crew</t></w>
<w><t>air-crew-man</t></w>
+<phrase><t>air cur-tain</t></phrase>
+<phrase><t>air cush-ion</t></phrase>
+<phrase><t>air cyl-in-der</t></phrase>
<w><t>Air-drie</t></w>
<w><t>air-dried</t></w>
<w><t>air-drome</t></w>
@@ -3335,6 +3328,7 @@
<w><t>air-drop-ping</t></w>
<w><t>air-dry-ing</t></w>
<w><t>Aire-dale</t></w>
+<phrase><t>air em-bo-lism</t></phrase>
<w><t>air-field</t></w>
<w><t>air-flow</t></w>
<w><t>air-foil</t></w>
@@ -3341,13 +3335,18 @@
<w><t>air-frame</t></w>
<w><t>air-glow</t></w>
<w><t>air-graph</t></w>
+<w><t>air=hard-en-ing</t></w>
<w><t>air-head</t></w>
+<phrase><t>air host-ess</t></phrase>
<w><t>air-i-er</t></w>
<w><t>air-i-est</t></w>
<w><t>air-i-ly</t></w>
<w><t>air-i-ness</t></w>
<w><t>air-ing</t></w>
+<w><t>air=in-take</t></w>
+<phrase><t>air jack-et</t></phrase>
<w><t>air-less</t></w>
+<phrase><t>air let-ter</t></phrase>
<w><t>air-lift</t></w>
<w><t>air-light</t></w>
<w><t>air-like</t></w>
@@ -3358,12 +3357,21 @@
<w><t>air-mail</t></w>
<w><t>air-man</t></w>
<w><t>air-man-ship</t></w>
+<phrase><t>air mar-shal</t></phrase>
+<w><t>air=mind-ed</t></w>
+<w><t>air=mind-ed-ness</t></w>
+<phrase><t>Air Of-fic-er</t></phrase>
<w><t>air-plane</t></w>
<w><t>air-plot</t></w>
+<phrase><t>air pock-et</t></phrase>
<w><t>air-port</t></w>
+<phrase><t>air pow-er</t></phrase>
<w><t>air-proof</t></w>
+<phrase><t>air=raid ward-en</t></phrase>
+<phrase><t>air ri-fle</t></phrase>
<w><t>airs</t></w>
<w><t>air-screw</t></w>
+<phrase><t>air=sea res-cue</t></phrase>
<w><t>air-ship</t></w>
<w><t>air-sick</t></w>
<w><t>air-sick-ness</t></w>
@@ -3371,13 +3379,22 @@
<w><t>air-sick-slak-ing</t></w>
<w><t>air-space</t></w>
<w><t>air-speed</t></w>
+<phrase><t>air sta-tion</t></phrase>
<w><t>air-stream</t></w>
<w><t>air-strip</t></w>
<w><t>airt</t></w>
+<phrase><t>air ter-mi-nal</t></phrase>
<w><t>airth</t></w>
<w><t>air-tight</t></w>
<w><t>air-tight-ly</t></w>
<w><t>air-tight-ness</t></w>
+<w><t>air=to=sur-face</t></w>
+<phrase><t>air traf-fic</t></phrase>
+<phrase><t>air=traf-fic con-trol</t></phrase>
+<phrase><t>air tur-bine</t></phrase>
+<w><t>air=twist-ed</t></w>
+<phrase><t>air ves-i-cle</t></phrase>
+<phrase><t>air vice=mar-shal</t></phrase>
<w><t>air-wash</t></w>
<w><t>air-waves</t></w>
<w><t>air-way</t></w>
@@ -3464,21 +3481,6 @@
<w><t>A-ku-ta-ga-wa</t></w>
<w><t>ak-va-vit</t></w>
<w><t>Ak-yab</t></w>
-<phrase><t>al den-te</t></phrase>
-<phrase><t>Al Fai-y</t></phrase>
-<phrase><t>Al Fat-ah</t></phrase>
-<phrase><t>Al Ha-sa</t></phrase>
-<phrase><t>Al Ho-fuf</t></phrase>
-<phrase><t>Al Hu-fuf</t></phrase>
-<phrase><t>Al Ma-di-nah</t></phrase>
-<phrase><t>Al Man-s-rah</t></phrase>
-<phrase><t>Al Man-su-rah</t></phrase>
-<phrase><t>Al Si-rat</t></phrase>
-<w><t>al=Fus-tat</t></w>
-<w><t>Al=Ga-zel</t></w>
-<w><t>Al=Is-kan-da-rî-yah</t></w>
-<w><t>al=Sa-hih</t></w>
-<w><t>al=Uz-za</t></w>
<w><t>a-la</t></w>
<w><t>A-la</t></w>
<w><t>Al-a-bam-a</t><noun><convertible-to-possessive/></noun></w>
@@ -3532,8 +3534,8 @@
<w><t>A-lar-cón</t></w>
<w><t>Al-a-ric</t></w>
<w><t>a-larm</t><noun><pluralizable/><convertible-to-possessive/></noun><verb></verb></w>
+<w><t>a-larm-a-ble</t></w>
<phrase><t>a-larm clock</t></phrase>
-<w><t>a-larm-a-ble</t></w>
<w><t>a-larm-ed</t><adjective/></w>
<w><t>a-larm-ed-ly</t></w>
<w><t>a-larm-ing-ly</t></w>
@@ -3545,9 +3547,9 @@
<w><t>a-las</t></w>
<w><t>A-las-ka</t></w>
<phrase><t>A-las-ka High-way</t></phrase>
+<w><t>A-las-kan</t></w>
<phrase><t>A-las-ka Pen-in-su-la</t></phrase>
<phrase><t>A-las-ka Range</t></phrase>
-<w><t>A-las-kan</t></w>
<w><t>Al-as-tair</t></w>
<w><t>Al-as-ter</t></w>
<w><t>A-las-tor</t></w>
@@ -3558,9 +3560,9 @@
<w><t>alb</t></w>
<w><t>al-ba</t></w>
<w><t>Al-ba</t></w>
-<phrase><t>Al-ba Lon-ga</t></phrase>
<w><t>Al-ba-ce-te</t></w>
<w><t>al-ba-core</t></w>
+<phrase><t>Al-ba Lon-ga</t></phrase>
<w><t>Al-ba-my-cin</t></w>
<w><t>Al-ban</t></w>
<w><t>Al-ba-ne-se</t></w>
@@ -3582,15 +3584,16 @@
<w><t>Al-be-marle</t></w>
<phrase><t>Al-be-marle Sound</t></phrase>
<w><t>Al-ben</t></w>
+<w><t>Al-bé-niz</t></w>
<w><t>al-ber-go</t></w>
<w><t>Al-ber-ich</t></w>
<w><t>Al-be-ro-ni</t></w>
<w><t>Al-bert</t></w>
<w><t>al-bert</t></w>
+<w><t>Al-ber-ta</t></w>
<phrase><t>Al-bert Ed-ward</t></phrase>
+<w><t>Al-ber-ti</t></w>
<phrase><t>Al-bert I</t></phrase>
-<w><t>Al-ber-ta</t></w>
-<w><t>Al-ber-ti</t></w>
<w><t>Al-ber-ti-na</t></w>
<w><t>Al-ber-tine</t></w>
<w><t>Al-ber-tist</t></w>
@@ -3653,7 +3656,6 @@
<w><t>al-bur-nous</t></w>
<w><t>al-bur-num</t></w>
<w><t>Al-bu-ry</t></w>
-<w><t>Al-bé-niz</t></w>
<w><t>al-cade</t></w>
<w><t>Al-cae-us</t></w>
<w><t>al-ca-hest</t></w>
@@ -3661,11 +3663,11 @@
<w><t>al-caide</t></w>
<w><t>al-cai-de</t></w>
<w><t>Al-ca-ids</t></w>
+<w><t>Al-ca-lá</t></w>
<w><t>al-cal-de</t></w>
<w><t>al-ca-lig-e-nes</t></w>
-<w><t>Al-ca-lá</t></w>
+<w><t>Al-can-dre</t></w>
<phrase><t>Al-can High-way</t></phrase>
-<w><t>Al-can-dre</t></w>
<w><t>al-cap-ton</t></w>
<w><t>al-cap-ton-u-ri-a</t></w>
<w><t>Al-cath-o-us</t></w>
@@ -3745,11 +3747,12 @@
<w><t>al-de-hyde</t></w>
<w><t>al-de-hy-dic</t></w>
<w><t>Al-den</t></w>
+<phrase><t>al den-te</t></phrase>
<w><t>al-der</t></w>
<w><t>Al-der</t></w>
<phrase><t>al-der buck-thorn</t></phrase>
+<w><t>al-der-fly</t></w>
<phrase><t>al-der fly</t></phrase>
-<w><t>al-der-fly</t></w>
<w><t>al-der-man</t></w>
<w><t>al-der-man-cy</t></w>
<w><t>al-der-man-ic</t></w>
@@ -3803,16 +3806,16 @@
<w><t>A-le-ksan-dro-pol</t></w>
<w><t>A-le-ksan-drovsk</t></w>
<w><t>A-le-m</t></w>
+<w><t>A-le-mán</t></w>
<w><t>Al-e-man-ni</t></w>
<w><t>Al-e-man-nic</t></w>
<w><t>A-lem-bert</t></w>
<w><t>a-lem-bic</t></w>
<w><t>a-lem-bi-cat-ed</t></w>
-<w><t>A-le-mán</t></w>
<w><t>A-len-con</t></w>
+<w><t>A-len-çon</t></w>
<phrase><t>A-len-con lace</t></phrase>
<w><t>A-lene</t></w>
-<w><t>A-len-çon</t></w>
<w><t>A-lep</t></w>
<w><t>a-leph</t></w>
<w><t>a-leph=null</t></w>
@@ -3857,14 +3860,14 @@
<w><t>al-ex-an-der</t></w>
<phrase><t>Al-ex-an-der Ar-chi-pel-a-go</t></phrase>
<phrase><t>Al-ex-an-der I</t></phrase>
-<phrase><t>Al-ex-an-der I Is-land</t></phrase>
<phrase><t>Al-ex-an-der II</t></phrase>
<phrase><t>Al-ex-an-der III</t></phrase>
+<phrase><t>Al-ex-an-der I Is-land</t></phrase>
<phrase><t>Al-ex-an-der Nev-ski</t></phrase>
+<w><t>al-ex-an-ders</t></w>
+<w><t>Al-ex-an-der-son</t></w>
<phrase><t>Al-ex-an-der the Great</t></phrase>
<phrase><t>Al-ex-an-der VI</t></phrase>
-<w><t>al-ex-an-ders</t></w>
-<w><t>Al-ex-an-der-son</t></w>
<w><t>Al-ex-an-dra</t></w>
<w><t>A-le-xan-dre</t></w>
<w><t>Al-ex-an-dret-ta</t></w>
@@ -3889,8 +3892,10 @@
<w><t>ale-yard</t></w>
<w><t>alfa</t></w>
<w><t>Al-fa-dir</t></w>
+<phrase><t>Al Fai-y</t></phrase>
<w><t>al-fal-fa</t></w>
<w><t>Al-fa-ra-bi-us</t></w>
+<phrase><t>Al Fat-ah</t></phrase>
<w><t>Al-fe-o</t></w>
<w><t>Alf-heim</t></w>
<w><t>Al-fie</t></w>
@@ -3898,17 +3903,18 @@
<w><t>al-fil-a-ri-a</t></w>
<w><t>al-fil-e-ri-a</t></w>
<w><t>Al-fon-so</t></w>
+<w><t>Al-fon-son</t></w>
<phrase><t>Al-fon-so XIII</t></phrase>
-<w><t>Al-fon-son</t></w>
<w><t>al-for-ja</t></w>
<w><t>Al-fra-ga-nus</t></w>
<w><t>Al-fred</t></w>
-<phrase><t>Al-fred the Great</t></phrase>
<w><t>Al-fre-da</t></w>
<w><t>Al-fre-do</t></w>
+<phrase><t>Al-fred the Great</t></phrase>
<w><t>al-fres-co</t></w>
<w><t>Al-fric</t></w>
<w><t>Al-fur</t></w>
+<w><t>al=Fus-tat</t></w>
<w><t>alg</t></w>
<w><t>al-ga</t></w>
<w><t>al-gae</t></w>
@@ -3917,11 +3923,12 @@
<w><t>Al-gar</t></w>
<w><t>al-ga-ro-ba</t></w>
<w><t>al-gar-ro-ba</t></w>
+<w><t>Al=Ga-zel</t></w>
<w><t>al-ge-bra</t></w>
<w><t>al-ge-bra-ic</t></w>
-<phrase><t>al-ge-bra-ic num-ber</t></phrase>
<w><t>al-ge-bra-i-cal</t></w>
<w><t>al-ge-bra-i-cal-ly</t></w>
+<phrase><t>al-ge-bra-ic num-ber</t></phrase>
<w><t>al-ge-bra-ist</t></w>
<w><t>Al-ge-ci-ras</t></w>
<w><t>Al-ger</t></w>
@@ -3982,21 +3989,23 @@
<w><t>Al-gy</t></w>
<w><t>Al-ham-bra</t></w>
<w><t>Al-ham-bresque</t></w>
+<phrase><t>Al Ha-sa</t></phrase>
<w><t>Al-ha-zen</t></w>
+<phrase><t>Al Ho-fuf</t></phrase>
+<phrase><t>Al Hu-fuf</t></phrase>
<w><t>A-li</t></w>
-<phrase><t>A-li Ba-ba</t></phrase>
-<phrase><t>A-li Pa-sha</t></phrase>
<w><t>A-li-a-cen-sis</t></w>
<w><t>alias</t></w>
<w><t>a-li-as</t></w>
<w><t>a-li-as-es</t></w>
+<phrase><t>A-li Ba-ba</t></phrase>
<w><t>al-i-bi</t></w>
<w><t>al-i-bil-i-ty</t></w>
<w><t>al-i-ble</t></w>
<w><t>Al-i-can-te</t></w>
<w><t>Al-ice</t></w>
+<w><t>Al-ice=in=Won-der-land</t></w>
<phrase><t>Al-ice Springs</t></phrase>
-<w><t>Al-ice=in=Won-der-land</t></w>
<w><t>Al-ice-ville</t></w>
<w><t>A-li-cia</t></w>
<w><t>Al-ick</t></w>
@@ -4048,6 +4057,7 @@
<w><t>a-lin-ing</t></w>
<w><t>a-li-no-tum</t></w>
<w><t>Al-i-oth</t></w>
+<phrase><t>A-li Pa-sha</t></phrase>
<w><t>al-i-ped</t></w>
<w><t>al-i-phat-ic</t></w>
<w><t>al-ip-te-ri-a</t></w>
@@ -4056,6 +4066,7 @@
<w><t>Al-i-quip-pa</t></w>
<w><t>al-i-quot</t></w>
<w><t>A-li-sa</t></w>
+<w><t>Al=Is-kan-da-rî-yah</t></w>
<w><t>Al-i-son</t></w>
<w><t>A-lis-sa</t></w>
<w><t>a-list</t></w>
@@ -4081,14 +4092,13 @@
<w><t>al-ka-les-cen-cy</t></w>
<w><t>al-ka-les-cent</t></w>
<w><t>al-ka-li</t></w>
-<phrase><t>al-ka-li flat</t></phrase>
-<phrase><t>al-ka-li met-al</t></phrase>
-<phrase><t>al-ka-li soil</t></phrase>
<w><t>al-kal-ic</t></w>
<w><t>al-ka-li-fi-a-ble</t></w>
<w><t>al-ka-li-fied</t></w>
+<phrase><t>al-ka-li flat</t></phrase>
<w><t>al-ka-li-fy</t></w>
<w><t>al-ka-li-fy-ing</t></w>
+<phrase><t>al-ka-li met-al</t></phrase>
<w><t>al-ka-lim-e-ter</t></w>
<w><t>al-ka-li-met-ric</t></w>
<w><t>al-ka-li-met-ri-cal-ly</t></w>
@@ -4108,6 +4118,7 @@
<w><t>al-ka-lised</t></w>
<w><t>al-ka-lis-er</t></w>
<w><t>al-ka-lis-ing</t></w>
+<phrase><t>al-ka-li soil</t></phrase>
<w><t>al-ka-liz-a-ble</t></w>
<w><t>al-ka-li-za-tion</t></w>
<w><t>al-ka-lize</t></w>
@@ -4141,27 +4152,12 @@
<w><t>all</t></w>
<w><t>al-l'an-ti-ca</t></w>
<w><t>all'ot-ta-va</t></w>
-<w><t>all=A-mer-i-can</t></w>
-<w><t>all=a-round</t></w>
-<w><t>all=em-brac-ing</t></w>
-<w><t>all=ex-pense</t></w>
-<w><t>all=ex-pens-es=paid</t></w>
-<w><t>all=fired-ly</t></w>
-<phrase><t>all=fly-ing tail</t></phrase>
-<w><t>all=im-por-tant</t></w>
-<w><t>all=in</t></w>
-<w><t>all=in-clu-sive</t></w>
-<w><t>all=o-ver</t></w>
-<w><t>all=pow-er-ful</t></w>
-<w><t>all=pur-pose</t></w>
-<w><t>all=round-er</t></w>
-<w><t>all=weath-er</t></w>
<w><t>Al-la</t></w>
<phrase><t>al-la bre-ve</t></phrase>
-<phrase><t>al-la pri-ma</t></phrase>
<w><t>al-la-ches-the-sia</t></w>
<w><t>Al-lah</t></w>
<w><t>Al-lah-a-bad</t></w>
+<w><t>all=A-mer-i-can</t></w>
<w><t>Al-lan</t></w>
<w><t>Al-lan=a=Dale</t></w>
<w><t>al-lan-ite</t></w>
@@ -4170,7 +4166,9 @@
<w><t>al-lan-toid</t></w>
<w><t>al-lan-toi-dal</t></w>
<w><t>al-lan-to-is</t></w>
+<phrase><t>al-la pri-ma</t></phrase>
<w><t>al-lar-gan-do</t></w>
+<w><t>all=a-round</t></w>
<w><t>al-la-tive</t></w>
<w><t>al-lay</t></w>
<w><t>al-layed</t></w>
@@ -4221,6 +4219,7 @@
<w><t>al-le-lu-ia</t></w>
<w><t>al-le-lu-iat-ic</t></w>
<w><t>al-le-mande</t></w>
+<w><t>all=em-brac-ing</t></w>
<w><t>al-le-mont-ite</t></w>
<w><t>Al-len</t></w>
<w><t>Al-len-by</t></w>
@@ -4243,10 +4242,14 @@
<w><t>al-le-vi-a-tive</t></w>
<w><t>al-le-vi-a-tor</t></w>
<w><t>al-le-vi-a-to-ry</t></w>
+<w><t>all=ex-pense</t></w>
+<w><t>all=ex-pens-es=paid</t></w>
<w><t>al-ley</t></w>
<phrase><t>al-ley cat</t></phrase>
<w><t>al-ley-fired-est</t></w>
<w><t>al-ley-way</t></w>
+<w><t>all=fired-ly</t></w>
+<phrase><t>all=fly-ing tail</t></phrase>
<w><t>All-hal-low-mas</t></w>
<w><t>All-hal-lows</t></w>
<w><t>All-hal-low-tide</t></w>
@@ -4264,10 +4267,13 @@
<w><t>al-li-gat-ed</t></w>
<w><t>al-li-gat-ing</t></w>
<w><t>al-li-ga-tor</t></w>
+<w><t>al-li-ga-tor-fish</t></w>
+<w><t>al-li-ga-tor-fish-es</t></w>
<phrase><t>al-li-ga-tor pear</t></phrase>
<phrase><t>al-li-ga-tor pep-per</t></phrase>
-<w><t>al-li-ga-tor-fish</t></w>
-<w><t>al-li-ga-tor-fish-es</t></w>
+<w><t>all=im-por-tant</t></w>
+<w><t>all=in</t></w>
+<w><t>all=in-clu-sive</t></w>
<w><t>al-li-sion</t></w>
<w><t>Al-li-son</t></w>
<w><t>al-lit-er-ate</t></w>
@@ -4316,8 +4322,8 @@
<w><t>al-lo-mor-phic</t></w>
<w><t>al-lo-mor-phism</t></w>
<w><t>al-longe</t></w>
+<w><t>al-lon-gé</t></w>
<w><t>al-long-es</t></w>
-<w><t>al-lon-gé</t></w>
<w><t>al-lo-nym</t></w>
<w><t>al-lon-y-mous</t></w>
<w><t>al-lon-y-mous-ly</t></w>
@@ -4359,6 +4365,7 @@
<w><t>al-lo-type</t></w>
<w><t>al-lo-typ-ic</t></w>
<w><t>all-ov-er</t></w>
+<w><t>all=o-ver</t></w>
<w><t>al-low</t></w>
<w><t>al-low-a-ble</t></w>
<w><t>al-low-a-ble-ness</t></w>
@@ -4371,7 +4378,10 @@
<w><t>al-low-ed-ly</t></w>
<w><t>al-loy</t></w>
<phrase><t>al-loyed junc-tion</t></phrase>
+<w><t>all=pow-er-ful</t></w>
+<w><t>all=pur-pose</t></w>
<w><t>all-round</t></w>
+<w><t>all=round-er</t></w>
<w><t>all-seed</t></w>
<w><t>all-spice</t></w>
<w><t>All-ston</t></w>
@@ -4397,12 +4407,13 @@
<w><t>al-lu-vi-um</t></w>
<w><t>al-lu-vi-ums</t></w>
<w><t>All-var</t></w>
+<w><t>all=weath-er</t></w>
<w><t>al-ly</t></w>
<w><t>al-lyl</t></w>
<phrase><t>al-lyl al-co-hol</t></phrase>
+<w><t>al-lyl-ic</t></w>
<phrase><t>al-lyl res-in</t></phrase>
<phrase><t>al-lyl sul-phide</t></phrase>
-<w><t>al-lyl-ic</t></w>
<w><t>al-lyl-thi-o-u-re-a</t></w>
<w><t>Al-lyn</t></w>
<w><t>Al-lyne</t></w>
@@ -4409,19 +4420,22 @@
<w><t>all-you</t></w>
<w><t>al-ma</t></w>
<w><t>Al-ma</t></w>
-<phrase><t>al-ma ma-ter</t></phrase>
<w><t>Al-ma=A-ta</t></w>
-<w><t>Al-ma=Tad-e-ma</t></w>
<w><t>al-ma-can-tar</t></w>
<w><t>Al-ma-d</t></w>
<w><t>Al-ma-da</t></w>
<w><t>Al-ma-dén</t></w>
+<phrase><t>Al Ma-di-nah</t></phrase>
<w><t>Al-ma-gest</t></w>
<w><t>al-mah</t></w>
+<phrase><t>al-ma ma-ter</t></phrase>
<w><t>al-ma-nac</t></w>
<w><t>al-man-dine</t></w>
<w><t>al-man-dite</t></w>
<w><t>Al-ma-non</t></w>
+<phrase><t>Al Man-s-rah</t></phrase>
+<phrase><t>Al Man-su-rah</t></phrase>
+<w><t>Al-ma=Tad-e-ma</t></w>
<w><t>al-me</t></w>
<w><t>al-meh</t></w>
<w><t>Al-me-lo</t></w>
@@ -4428,11 +4442,11 @@
<w><t>al-me-mar</t></w>
<w><t>Al-me-r-a</t></w>
<w><t>Al-me-ri-a</t></w>
+<w><t>Al-me-rí-a</t></w>
<w><t>Al-me-ri-an</t></w>
<w><t>Al-mer-ic</t></w>
<w><t>alm-er-ies</t></w>
<w><t>alm-er-y</t></w>
-<w><t>Al-me-rí-a</t></w>
<w><t>al-might-i-ly</t></w>
<w><t>al-might-i-ness</t></w>
<w><t>al-might-y</t></w>
@@ -4445,8 +4459,8 @@
<w><t>al-mon</t></w>
<w><t>al-mond</t></w>
<w><t>al-mond=eyed</t></w>
+<w><t>al-mond-like</t></w>
<w><t>al-mond=shaped</t></w>
-<w><t>al-mond-like</t></w>
<w><t>al-mond-y</t></w>
<w><t>al-mon-er</t></w>
<w><t>al-mon-ry</t></w>
@@ -4513,8 +4527,8 @@
<w><t>al-pen-glow</t></w>
<w><t>al-pen-horn</t></w>
<w><t>al-pen-stock</t></w>
+<w><t>Alpes=de=Haute=Pro-vence</t></w>
<phrase><t>Alpes Ma-ri-times</t></phrase>
-<w><t>Alpes=de=Haute=Pro-vence</t></w>
<w><t>Alpes=Ma-ri-times</t></w>
<w><t>al-pes-trine</t></w>
<w><t>Al-pet-ra-gi-us</t></w>
@@ -4521,15 +4535,6 @@
<w><t>al-pha</t></w>
<w><t>Al-pha</t></w>
<phrase><t>al-pha and o-me-ga</t></phrase>
-<phrase><t>Al-pha Cen-tau-ri</t></phrase>
-<phrase><t>al-pha i-ron</t></phrase>
-<phrase><t>al-pha par-ti-cle</t></phrase>
-<phrase><t>al-pha priv-a-tive</t></phrase>
-<phrase><t>al-pha ray</t></phrase>
-<phrase><t>al-pha rhythm</t></phrase>
-<w><t>al-pha=hy-poph-a-mine</t></w>
-<w><t>al-pha=naph-thol</t></w>
-<w><t>al-pha=naph-thyl-thi-o-u-re-a</t></w>
<w><t>al-pha-bet</t></w>
<w><t>al-pha-bet-ic</t></w>
<w><t>al-pha-bet-i-cal</t></w>
@@ -4543,14 +4548,23 @@
<w><t>al-pha-bet-ized</t></w>
<w><t>al-pha-bet-iz-er</t></w>
<w><t>al-pha-bet-iz-ing</t></w>
+<phrase><t>Al-pha Cen-tau-ri</t></phrase>
<w><t>Al-phae-a</t></w>
+<w><t>al-pha=hy-poph-a-mine</t></w>
+<phrase><t>al-pha i-ron</t></phrase>
<w><t>al-pha-mer-ic</t></w>
<w><t>al-pha-mer-i-cal</t></w>
<w><t>al-pha-mer-i-cal-ly</t></w>
+<w><t>al-pha=naph-thol</t></w>
+<w><t>al-pha=naph-thyl-thi-o-u-re-a</t></w>
<w><t>alpha-numeric</t></w>
<w><t>al-pha-nu-mer-ic</t></w>
<w><t>al-pha-nu-mer-i-cal</t></w>
<w><t>al-pha-nu-mer-i-cal-ly</t></w>
+<phrase><t>al-pha par-ti-cle</t></phrase>
+<phrase><t>al-pha priv-a-tive</t></phrase>
+<phrase><t>al-pha ray</t></phrase>
+<phrase><t>al-pha rhythm</t></phrase>
<w><t>Al-phe-si-boe-a</t></w>
<w><t>Al-phe-us</t></w>
<w><t>al-phit-o-man-cy</t></w>
@@ -4571,28 +4585,30 @@
<w><t>Al-sace</t></w>
<w><t>Al-sace=Lor-raine</t></w>
<w><t>Al-sace=Lorrain-er</t></w>
+<w><t>al=Sa-hih</t></w>
<w><t>Al-sa-tia</t></w>
<w><t>Al-sa-tian</t></w>
<w><t>al-sike</t></w>
<w><t>al-si-na-ceous</t></w>
<w><t>Al-sip</t></w>
+<phrase><t>Al Si-rat</t></phrase>
<w><t>al-so</t></w>
+<w><t>Al-son</t></w>
<w><t>al-so=ran</t></w>
-<w><t>Al-son</t></w>
<w><t>Al-ston</t></w>
<w><t>alt</t></w>
<w><t>Al-ta</t></w>
<w><t>Al-ta-de-na</t></w>
<w><t>Al-tai</t></w>
-<phrase><t>Al-tai Moun-tains</t></phrase>
<w><t>Al-ta-ian</t></w>
<w><t>Al-ta-ic</t></w>
+<phrase><t>Al-tai Moun-tains</t></phrase>
<w><t>Al-tair</t></w>
<w><t>Al-ta-ir</t></w>
<w><t>Al-ta-mi-ra</t></w>
<w><t>al-tar</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>al-tar-age</t></w>
<phrase><t>al-tar boy</t></phrase>
-<w><t>al-tar-age</t></w>
<w><t>al-tar-piece</t></w>
<w><t>Al-ta-vis-ta</t></w>
<w><t>Al-tay</t></w>
@@ -4600,7 +4616,6 @@
<w><t>Alt-dorf</t></w>
<w><t>Alt-dor-fer</t></w>
<w><t>al-ter</t></w>
-<phrase><t>al-ter e-go</t></phrase>
<w><t>al-ter-a-bil-i-ty</t></w>
<w><t>al-ter-a-ble</t></w>
<w><t>al-ter-a-ble-ness</t></w>
@@ -4613,6 +4628,7 @@
<w><t>al-ter-cat-ing</t></w>
<w><t>al-ter-ca-tion</t></w>
<phrase><t>al-tered chord</t></phrase>
+<phrase><t>al-ter e-go</t></phrase>
<w><t>al-tern</t></w>
<w><t>al-ter-nant</t></w>
<w><t>al-ter-nate</t></w>
@@ -4642,7 +4658,6 @@
<w><t>al-tho</t></w>
<w><t>alt-horn</t></w>
<w><t>al-though</t></w>
-<w><t>al-ti=ri-lie-vi</t></w>
<w><t>al-ti-graph</t></w>
<w><t>al-tim-e-ter</t></w>
<w><t>al-ti-met-ri-cal</t></w>
@@ -4649,19 +4664,20 @@
<w><t>al-tim-e-try</t></w>
<w><t>al-ti-met-tri-cal-ly</t></w>
<w><t>Al-ti-pla-no</t></w>
+<w><t>al-ti=ri-lie-vi</t></w>
<w><t>al-tis-si-mo</t></w>
<w><t>al-ti-tude</t></w>
<w><t>al-ti-tu-di-nal</t></w>
<w><t>al-to</t></w>
<phrase><t>al-to clef</t></phrase>
-<phrase><t>al-to horn</t></phrase>
-<w><t>al-to=re-lie-vo</t></w>
-<w><t>al-to=ri-lie-vo</t></w>
<w><t>al-to-cu-mu-lus</t></w>
<w><t>al-to-geth-er</t></w>
+<phrase><t>al-to horn</t></phrase>
<w><t>Al-ton</t></w>
<w><t>Al-to-na</t></w>
<w><t>Al-too-na</t></w>
+<w><t>al-to=re-lie-vo</t></w>
+<w><t>al-to=ri-lie-vo</t></w>
<w><t>al-to-stra-tus</t></w>
<w><t>al-tri-cial</t></w>
<w><t>Al-trin-cham</t></w>
@@ -4707,6 +4723,7 @@
<w><t>a-lu-no-gen</t></w>
<w><t>al-ure</t></w>
<w><t>al-u-ta-ceous</t></w>
+<w><t>al=Uz-za</t></w>
<w><t>Al-va</t></w>
<w><t>Al-vah</t></w>
<w><t>Al-van</t></w>
@@ -4960,6 +4977,7 @@
<w><t>a-me-bo-cyte</t></w>
<w><t>a-me-boid</t></w>
<w><t>a-me-boid-ism</t></w>
+<w><t>A-mé-dée</t></w>
<w><t>a-meer</t></w>
<w><t>a-meer-ate</t></w>
<w><t>a-mei-o-sis</t></w>
@@ -4981,12 +4999,11 @@
<w><t>am-e-lo-blas-tic</t></w>
<w><t>a-men</t></w>
<w><t>A-men</t></w>
-<phrase><t>a-men cor-ner</t></phrase>
-<w><t>A-men=Ra</t></w>
<w><t>a-me-na-bil-i-ty</t></w>
<w><t>a-me-na-ble</t></w>
<w><t>a-me-na-ble-ness</t></w>
<w><t>a-me-na-bly</t></w>
+<phrase><t>a-men cor-ner</t></phrase>
<w><t>a-mend</t></w>
<w><t>a-mend-a-ble</t></w>
<w><t>a-mend-a-tory</t></w>
@@ -5005,6 +5022,7 @@
<w><t>a-men-or-rhoe-a</t></w>
<w><t>a-men-or-rhoe-al</t></w>
<w><t>a-men-or-rhoe-ic</t></w>
+<w><t>A-men=Ra</t></w>
<w><t>am-ent</t></w>
<w><t>a-ment</t></w>
<w><t>am-en-ta-ceous</t></w>
@@ -5021,6 +5039,7 @@
<w><t>A-mer-i-ca</t></w>
<phrase><t>A-mer-i-ca's Cup</t></phrase>
<w><t>A-mer-i-can</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>A-mer-i-ca-na</t></w>
<phrase><t>A-mer-i-can al-oe</t></phrase>
<phrase><t>A-mer-i-can Beau-ty</t></phrase>
<phrase><t>A-mer-i-can cha-me-le-on</t></phrase>
@@ -5031,12 +5050,6 @@
<phrase><t>A-mer-i-can foot-ball</t></phrase>
<phrase><t>A-mer-i-can In-di-an</t></phrase>
<phrase><t>A-mer-i-can In-di-an Move-ment</t></phrase>
-<phrase><t>A-mer-i-can plan</t></phrase>
-<phrase><t>A-mer-i-can Rev-o-lu-tion</t></phrase>
-<phrase><t>A-mer-i-can Sa-mo-a</t></phrase>
-<phrase><t>A-mer-i-can Stand-ard Ver-sion</t></phrase>
-<phrase><t>A-mer-i-can tryp-a-no-so-mi-a-sis</t></phrase>
-<w><t>A-mer-i-ca-na</t></w>
<w><t>A-mer-i-can-ise</t></w>
<w><t>A-mer-i-can-ised</t></w>
<w><t>A-mer-i-can-is-er</t></w>
@@ -5051,6 +5064,11 @@
<w><t>A-mer-i-can-iz-ing</t></w>
<w><t>A-mer-i-can-ly</t></w>
<w><t>A-mer-i-ca-no</t></w>
+<phrase><t>A-mer-i-can plan</t></phrase>
+<phrase><t>A-mer-i-can Rev-o-lu-tion</t></phrase>
+<phrase><t>A-mer-i-can Sa-mo-a</t></phrase>
+<phrase><t>A-mer-i-can Stand-ard Ver-sion</t></phrase>
+<phrase><t>A-mer-i-can tryp-a-no-so-mi-a-sis</t></phrase>
<w><t>am-er-i-ci-um</t></w>
<w><t>A-me-ri-go</t></w>
<phrase><t>A-mer-i-go Ve-spuc-ci</t></phrase>
@@ -5131,7 +5149,6 @@
<w><t>a-min-i-ty</t></w>
<w><t>a-mi-no</t></w>
<phrase><t>a-mi-no ac-id</t></phrase>
-<phrase><t>a-mi-no res-in</t></phrase>
<w><t>a-mi-no-ben-zene</t></w>
<phrase><t>a-mi-no-ben-zo-ic ac-id</t></phrase>
<w><t>a-mi-no-phe-nol</t></w>
@@ -5139,6 +5156,7 @@
<w><t>a-mi-no-phyl-line</t></w>
<w><t>a-mi-no-plast</t></w>
<w><t>a-mi-no-py-rine</t></w>
+<phrase><t>a-mi-no res-in</t></phrase>
<w><t>A-min-to-re</t></w>
<w><t>a-mir</t></w>
<w><t>a-mir-ate</t></w>
@@ -5171,10 +5189,10 @@
<w><t>am-mo-nate</t></w>
<w><t>am-mo-nia</t></w>
<w><t>am-mo-ni-a</t></w>
-<phrase><t>am-mo-ni-a so-lu-tion</t></phrase>
<w><t>am-mo-ni-ac</t></w>
<w><t>am-mo-ni-a-cal</t></w>
<w><t>am-mo-ni-a-cum</t></w>
+<phrase><t>am-mo-ni-a so-lu-tion</t></phrase>
<w><t>am-mo-ni-ate</t></w>
<w><t>am-mo-ni-at-ed</t></w>
<w><t>am-mo-ni-at-ing</t></w>
@@ -5237,13 +5255,12 @@
<w><t>a-mok</t></w>
<w><t>a-mo-le</t></w>
<w><t>A-mon</t></w>
-<w><t>A-mon=Ra</t></w>
<w><t>a-mong</t></w>
<w><t>a-mongst</t></w>
+<w><t>A-mon=Ra</t></w>
<w><t>a-mon-til-la-do</t></w>
<w><t>A-mo-pa-on</t></w>
<w><t>A-mor</t></w>
-<phrase><t>a-mor pa-tri-ae</t></phrase>
<w><t>a-mo-ra</t></w>
<w><t>a-mo-ra-im</t></w>
<w><t>a-mor-al</t></w>
@@ -5264,6 +5281,7 @@
<w><t>am-o-rous</t></w>
<w><t>am-o-rous-ly</t></w>
<w><t>am-o-rous-ness</t></w>
+<phrase><t>a-mor pa-tri-ae</t></phrase>
<w><t>a-mor-phism</t></w>
<w><t>a-mor-phous</t></w>
<w><t>a-mor-phous-ly</t></w>
@@ -5300,6 +5318,8 @@
<w><t>Am-pe-los</t></w>
<w><t>am-per-age</t></w>
<w><t>am-pere</t></w>
+<w><t>am-père</t></w>
+<w><t>Am-père</t></w>
<w><t>am-pere=hour</t></w>
<w><t>am-pere=turn</t></w>
<w><t>am-per-o-met-ric</t></w>
@@ -5454,8 +5474,6 @@
<w><t>Am-py-ci-des</t></w>
<w><t>Am-py-cus</t></w>
<w><t>Am-pyx</t></w>
-<w><t>am-père</t></w>
-<w><t>Am-père</t></w>
<w><t>Am-ram</t></w>
<w><t>Am-ra-tian</t></w>
<w><t>Am-ra-va-ti</t></w>
@@ -5469,8 +5487,8 @@
<w><t>am-trac</t></w>
<w><t>am-track</t></w>
<w><t>amu</t></w>
+<w><t>a-muck</t></w>
<phrase><t>A-mu Dar-ya</t></phrase>
-<w><t>a-muck</t></w>
<w><t>a-mu-gis</t></w>
<w><t>am-u-let</t></w>
<w><t>A-mu-li-us</t></w>
@@ -5511,13 +5529,13 @@
<w><t>a-myg-da-loi-dal</t></w>
<w><t>a-myg-dule</t></w>
<w><t>am-yl</t></w>
+<w><t>am-y-la-ceous</t></w>
<phrase><t>am-yl ac-e-tate</t></phrase>
<phrase><t>am-yl al-co-hol</t></phrase>
-<phrase><t>am-yl ni-trite</t></phrase>
-<w><t>am-y-la-ceous</t></w>
<w><t>am-yl-ase</t></w>
<w><t>am-yl-ene</t></w>
<w><t>a-myl-ic</t></w>
+<phrase><t>am-yl ni-trite</t></phrase>
<w><t>a-myl-o-gen</t></w>
<w><t>am-y-loid</t></w>
<w><t>am-y-loi-dal</t></w>
@@ -5536,11 +5554,8 @@
<w><t>Am-y-tha-on</t></w>
<w><t>a-myx-or-rhe-a</t></w>
<w><t>a-myx-or-rhoe-a</t></w>
-<w><t>A-mé-dée</t></w>
<w><t>an</t></w>
-<phrase><t>AN Oth-er</t></phrase>
<w><t>an't</t></w>
-<w><t>an=end</t></w>
<w><t>an-a</t></w>
<w><t>a-na</t></w>
<w><t>an-a-bae-na</t></w>
@@ -5658,13 +5673,11 @@
<w><t>an-a-gram-ma-tized</t></w>
<w><t>an-a-gram-ma-tiz-ing</t></w>
<w><t>An-a-heim</t></w>
+<w><t>An-a-kim</t></w>
<phrase><t>a-nak ku-ching</t></phrase>
-<w><t>An-a-kim</t></w>
<w><t>anal</t></w>
<w><t>a-nal</t></w>
<phrase><t>a-nal ca-nal</t></phrase>
-<phrase><t>a-nal fin</t></phrase>
-<phrase><t>a-nal in-ter-course</t></phrase>
<w><t>a-nal-cime</t></w>
<w><t>a-nal-cite</t></w>
<w><t>an-a-lec-ta</t></w>
@@ -5675,9 +5688,11 @@
<w><t>an-a-lem-ma-ta</t></w>
<w><t>an-a-lem-mat-ic</t></w>
<w><t>an-a-lep-tic</t></w>
+<phrase><t>a-nal fin</t></phrase>
<w><t>an-al-ge-si-a</t></w>
<w><t>an-al-ge-sic</t></w>
<w><t>an-al-gi-a</t></w>
+<phrase><t>a-nal in-ter-course</t></phrase>
<w><t>a-nal-ly</t></w>
<w><t>an-a-log</t></w>
<phrase><t>an-a-log com-put-er</t></phrase>
@@ -5715,10 +5730,10 @@
<phrase><t>a-nal-y-sis si-tus</t></phrase>
<w><t>an-a-lyst</t></w>
<w><t>an-a-lyt-ic</t></w>
-<phrase><t>an-a-lyt-ic psy-chol-o-gy</t></phrase>
<w><t>an-a-lyt-i-cal</t></w>
<phrase><t>an-a-lyt-i-cal ge-om-e-try</t></phrase>
<w><t>an-a-lyt-i-cal-ly</t></w>
+<phrase><t>an-a-lyt-ic psy-chol-o-gy</t></phrase>
<w><t>an-a-lyt-ics</t></w>
<w><t>an-a-ly-tique</t></w>
<w><t>an-a-lyz-a-bil-i-ty</t></w>
@@ -5765,6 +5780,7 @@
<w><t>an-a-plas-tic</t></w>
<w><t>an-a-plas-ty</t></w>
<w><t>an-a-ple-ro-sis</t></w>
+<w><t>A-ná-po-lis</t></w>
<w><t>an-ap-o-phys-i-al</t></w>
<w><t>an-a-poph-y-sis</t></w>
<w><t>an-ap-tot-ic</t></w>
@@ -5828,8 +5844,8 @@
<w><t>An-a-tol-ic</t></w>
<w><t>an-a-tom-ic</t></w>
<w><t>an-a-tom-i-cal</t></w>
+<w><t>an-a-tom-i-cal-ly</t></w>
<phrase><t>an-a-tom-i-cal snuff-box</t></phrase>
-<w><t>an-a-tom-i-cal-ly</t></w>
<w><t>an-a-tom-i-co-path-o-log-i-cal</t></w>
<w><t>a-nat-o-mi-sa-tion</t></w>
<w><t>a-nat-o-mise</t></w>
@@ -5869,8 +5885,6 @@
<w><t>An-chin-o-ë</t></w>
<w><t>An-chi-ses</t></w>
<w><t>an-chor</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
-<phrase><t>an-chor man</t></phrase>
-<phrase><t>an-chor ring</t></phrase>
<w><t>an-chor-a-ble</t></w>
<w><t>an-chor-age</t></w>
<w><t>An-chor-age</t></w>
@@ -5884,6 +5898,8 @@
<w><t>an-chor-less</t></w>
<w><t>an-chor-like</t></w>
<w><t>an-chor-man</t></w>
+<phrase><t>an-chor man</t></phrase>
+<phrase><t>an-chor ring</t></phrase>
<w><t>an-chor-y</t></w>
<w><t>an-cho-vet-a</t></w>
<w><t>an-cho-vy</t></w>
@@ -5899,9 +5915,9 @@
<w><t>an-cient</t></w>
<phrase><t>An-cient Greek</t></phrase>
<phrase><t>an-cient his-to-ry</t></phrase>
-<phrase><t>An-cient of Days</t></phrase>
<w><t>an-cient-ly</t></w>
<w><t>an-cient-ness</t></w>
+<phrase><t>An-cient of Days</t></phrase>
<w><t>an-cient-ry</t></w>
<w><t>an-ci-le</t></w>
<w><t>an-cil-i-a</t></w>
@@ -5912,6 +5928,7 @@
<w><t>An-ci-us</t></w>
<w><t>An-co-hu-ma</t></w>
<w><t>an-con</t></w>
+<w><t>An-cón</t></w>
<w><t>An-co-na</t></w>
<w><t>an-co-na</t></w>
<w><t>an-co-nal</t></w>
@@ -5920,7 +5937,6 @@
<w><t>an-con-oid</t></w>
<w><t>an-cré</t></w>
<w><t>an-cy-los-to-mi-a-sis</t></w>
-<w><t>An-cón</t></w>
<w><t>and</t></w>
<w><t>and/or</t></w>
<w><t>An-da-lu-cí-a</t></w>
@@ -5928,9 +5944,9 @@
<w><t>An-da-lu-si-a</t></w>
<w><t>an-da-lu-site</t></w>
<w><t>An-da-man</t></w>
+<w><t>An-da-man-ese</t></w>
<phrase><t>An-da-man Is-lands</t></phrase>
<phrase><t>An-da-man Sea</t></phrase>
-<w><t>An-da-man-ese</t></w>
<w><t>an-da-men-to</t></w>
<w><t>an-dan-te</t></w>
<w><t>an-dan-ti-no</t></w>
@@ -5959,7 +5975,...
[truncated message content] |
|
From: <vic...@us...> - 2022-07-02 17:48:50
|
Revision: 12696
http://sourceforge.net/p/foray/code/12696
Author: victormote
Date: 2022-07-02 17:48:48 +0000 (Sat, 02 Jul 2022)
Log Message:
-----------
Manually re-sort some entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 17:48:24 UTC (rev 12695)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-07-02 17:48:48 UTC (rev 12696)
@@ -186905,9 +186905,9 @@
<phrase><t>ze-ro in</t></phrase>
<phrase><t>ze-ro stage</t></phrase>
<w><t>ze-ro=di-vi-sor</t></w>
-<w><t>ze-ro=ra-ted</t></w>
<w><t>ze-roed</t></w>
<w><t>ze-ro-ing</t></w>
+<w><t>ze-ro=ra-ted</t></w>
<w><t>ze-roth</t></w>
<w><t>Ze-rub-ba-bel</t></w>
<w><t>Zer-van</t></w>
@@ -187054,6 +187054,7 @@
<phrase><t>zo-di-a-cal con-stel-la-tion</t></phrase>
<phrase><t>zo-di-a-cal light</t></phrase>
<w><t>Zo-e</t></w>
+<w><t>Zo-ë</t></w>
<w><t>zo-e-a</t></w>
<w><t>zo-e-trope</t></w>
<w><t>Zof-fa-ny</t></w>
@@ -187069,8 +187070,8 @@
<w><t>zom-bie</t></w>
<w><t>Zo-na</t></w>
<w><t>zon-al</t></w>
+<w><t>zon-al-ly</t></w>
<phrase><t>zon-al soil</t></phrase>
-<w><t>zon-al-ly</t></w>
<w><t>zon-a-ry</t></w>
<w><t>zon-ate</t></w>
<w><t>zo-nat-ed</t></w>
@@ -187088,65 +187089,107 @@
<w><t>zon-ule</t></w>
<w><t>zoo</t></w>
<w><t>zo-o-chem-i-cal</t></w>
+<w><t>zo-ö-chem-i-cal</t></w>
<w><t>zo-o-chem-is-try</t></w>
+<w><t>zo-ö-chem-is-try</t></w>
<w><t>zo-o-chore</t></w>
+<w><t>zo-ö-chore</t></w>
<w><t>zo-o-ge-o-graph-i-cal-ly</t></w>
+<w><t>zo-ö-ge-o-graph-i-cal-ly</t></w>
<w><t>zo-o-ge-og-ra-phy</t></w>
<w><t>zo-o-gle-al</t></w>
+<w><t>zo-ö-gle-al</t></w>
<w><t>zo-o-gloe-a</t></w>
+<w><t>zo-ö-gloe-a</t></w>
<w><t>zo-o-gloe-al</t></w>
+<w><t>zo-ö-gloe-al</t></w>
<w><t>zo-o-graft-ing</t></w>
+<w><t>zo-ö-graft-ing</t></w>
<w><t>zo-og-ra-pher</t></w>
+<w><t>zo-ög-ra-pher</t></w>
<w><t>zo-o-graph-ic</t></w>
+<w><t>zo-ö-graph-ic</t></w>
<w><t>zo-og-ra-phy</t></w>
+<w><t>zo-ög-ra-phy</t></w>
<w><t>zo-oid</t></w>
<w><t>zool</t></w>
<w><t>zo-ol-a-ter</t></w>
+<w><t>zo-öl-a-ter</t></w>
<w><t>zo-ol-a-trous</t></w>
+<w><t>zo-öl-a-trous</t></w>
<w><t>zo-ol-a-try</t></w>
<w><t>zo-o-log-ic</t></w>
+<w><t>zo-ö-log-ic</t></w>
<w><t>zo-o-log-i-cal</t></w>
+<w><t>zo-ö-log-i-cal</t></w>
<phrase><t>zo-o-log-i-cal gar-den</t></phrase>
<w><t>zo-o-log-i-cal-ly</t></w>
+<w><t>zo-ö-log-i-cal-ly</t></w>
<w><t>zo-ol-o-gist</t></w>
+<w><t>zo-öl-o-gist</t></w>
<w><t>zo-ol-o-gy</t></w>
+<w><t>zo-öl-o-gy</t></w>
<w><t>zoom</t></w>
<w><t>zo-o-met-ric</t></w>
+<w><t>zo-ö-met-ric</t></w>
<w><t>zo-om-e-try</t></w>
+<w><t>zo-öm-e-try</t></w>
<w><t>zo-o-morph</t></w>
+<w><t>zo-ö-morph</t></w>
<w><t>zo-o-mor-phic</t></w>
+<w><t>zo-ö-mor-phic</t></w>
<w><t>zo-o-mor-phism</t></w>
<w><t>zo-on</t></w>
<w><t>zo-on-al</t></w>
+<w><t>zo-ön-al</t></w>
<w><t>zo-on-o-sis</t></w>
+<w><t>zo-ön-o-sis</t></w>
<w><t>zo-oph-a-gous</t></w>
<w><t>zo-o-phile</t></w>
<w><t>zo-o-phil-i-a</t></w>
<w><t>zo-o-phil-ic</t></w>
+<w><t>zo-ö-phil-ic</t></w>
<w><t>zo-oph-i-lism</t></w>
<w><t>zo-oph-i-lous</t></w>
+<w><t>zo-öph-i-lous</t></w>
<w><t>zo-o-pho-bi-a</t></w>
+<w><t>zo-ö-pho-bi-a</t></w>
<w><t>zo-oph-o-bous</t></w>
+<w><t>zo-öph-o-bous</t></w>
<w><t>zo-oph-o-ri</t></w>
<w><t>zo-o-phor-ic</t></w>
+<w><t>zo-ö-phor-ic</t></w>
<w><t>zo-oph-o-rus</t></w>
<w><t>zo-o-phyte</t></w>
<w><t>zo-o-plank-ton</t></w>
+<w><t>zo-ö-plank-ton</t></w>
<w><t>zo-o-plas-tic</t></w>
+<w><t>zo-ö-plas-tic</t></w>
<w><t>zo-o-plas-ty</t></w>
+<w><t>zo-ö-plas-ty</t></w>
<w><t>zo-o-sperm</t></w>
+<w><t>zo-ö-sperm</t></w>
<w><t>zo-o-sper-mat-ic</t></w>
+<w><t>zo-ö-sper-mat-ic</t></w>
<w><t>zo-o-spo-ran-gi-a</t></w>
<w><t>zo-o-spo-ran-gi-al</t></w>
+<w><t>zo-ö-spo-ran-gi-al</t></w>
<w><t>zo-o-spo-ran-gi-um</t></w>
+<w><t>zo-ö-spo-ran-gi-um</t></w>
<w><t>zo-o-spore</t></w>
+<w><t>zo-ö-spore</t></w>
<w><t>zo-os-ter-ol</t></w>
<w><t>zo-o-tech-nics</t></w>
<w><t>zo-o-tom-ic</t></w>
+<w><t>zo-ö-tom-ic</t></w>
<w><t>zo-o-tom-i-cal-ly</t></w>
+<w><t>zo-ö-tom-i-cal-ly</t></w>
<w><t>zo-ot-o-mist</t></w>
+<w><t>zo-öt-o-mist</t></w>
<w><t>zo-ot-o-my</t></w>
+<w><t>zo-öt-o-my</t></w>
<w><t>zo-o-tox-in</t></w>
+<w><t>zo-ö-tox-in</t></w>
<w><t>zoot-y</t></w>
<w><t>Zo-phar</t></w>
<w><t>zo-pho-ri</t></w>
@@ -187172,49 +187215,6 @@
<w><t>zounds</t></w>
<w><t>zow-ie</t></w>
<w><t>zoy-si-a</t></w>
-<w><t>Zo-ë</t></w>
-<w><t>zo-ö-chem-i-cal</t></w>
-<w><t>zo-ö-chem-is-try</t></w>
-<w><t>zo-ö-chore</t></w>
-<w><t>zo-ö-ge-o-graph-i-cal-ly</t></w>
-<w><t>zo-ö-gle-al</t></w>
-<w><t>zo-ö-gloe-a</t></w>
-<w><t>zo-ö-gloe-al</t></w>
-<w><t>zo-ö-graft-ing</t></w>
-<w><t>zo-ög-ra-pher</t></w>
-<w><t>zo-ö-graph-ic</t></w>
-<w><t>zo-ög-ra-phy</t></w>
-<w><t>zo-öl-a-ter</t></w>
-<w><t>zo-öl-a-trous</t></w>
-<w><t>zo-ö-log-ic</t></w>
-<w><t>zo-ö-log-i-cal</t></w>
-<w><t>zo-ö-log-i-cal-ly</t></w>
-<w><t>zo-öl-o-gist</t></w>
-<w><t>zo-öl-o-gy</t></w>
-<w><t>zo-ö-met-ric</t></w>
-<w><t>zo-öm-e-try</t></w>
-<w><t>zo-ö-morph</t></w>
-<w><t>zo-ö-mor-phic</t></w>
-<w><t>zo-ön-al</t></w>
-<w><t>zo-ön-o-sis</t></w>
-<w><t>zo-ö-phil-ic</t></w>
-<w><t>zo-öph-i-lous</t></w>
-<w><t>zo-ö-pho-bi-a</t></w>
-<w><t>zo-öph-o-bous</t></w>
-<w><t>zo-ö-phor-ic</t></w>
-<w><t>zo-ö-plank-ton</t></w>
-<w><t>zo-ö-plas-tic</t></w>
-<w><t>zo-ö-plas-ty</t></w>
-<w><t>zo-ö-sperm</t></w>
-<w><t>zo-ö-sper-mat-ic</t></w>
-<w><t>zo-ö-spo-ran-gi-al</t></w>
-<w><t>zo-ö-spo-ran-gi-um</t></w>
-<w><t>zo-ö-spore</t></w>
-<w><t>zo-ö-tom-ic</t></w>
-<w><t>zo-ö-tom-i-cal-ly</t></w>
-<w><t>zo-öt-o-mist</t></w>
-<w><t>zo-öt-o-my</t></w>
-<w><t>zo-ö-tox-in</t></w>
<w><t>ZPG</t></w>
<w><t>Zsig-mon-dy</t></w>
<w><t>Zu'l-ka-dah</t></w>
@@ -187232,6 +187232,8 @@
<w><t>Zu-lu-land</t></w>
<w><t>Zun-gar-i-a</t></w>
<w><t>Zun-ga-ri-a</t></w>
+<w><t>Zu-ñi</t></w>
+<w><t>Zu-ñi-an</t></w>
<w><t>zun-yite</t></w>
<w><t>Zu-pus</t></w>
<w><t>Zur-ba-r</t></w>
@@ -187240,8 +187242,6 @@
<w><t>Zu-rich</t></w>
<w><t>Zur-v</t></w>
<phrase><t>Zuy-der Zee</t></phrase>
-<w><t>Zu-ñi</t></w>
-<w><t>Zu-ñi-an</t></w>
<w><t>Zweig</t></w>
<w><t>Zwick-au</t></w>
<w><t>Zwick-y</t></w>
@@ -187248,8 +187248,8 @@
<w><t>zwie-back</t></w>
<w><t>Zwing-li</t></w>
<w><t>Zwing-li-an</t></w>
+<w><t>zwit-ter-i-on</t></w>
<w><t>zwit-ter=i-on</t></w>
-<w><t>zwit-ter-i-on</t></w>
<w><t>zwit-ter-i-on-ic</t></w>
<w><t>Zwol-le</t></w>
<w><t>Zwor-y-kin</t></w>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-07-02 17:48:32
|
Revision: 12695
http://sourceforge.net/p/foray/code/12695
Author: victormote
Date: 2022-07-02 17:48:24 +0000 (Sat, 02 Jul 2022)
Log Message:
-----------
Include phrases in collation test.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java 2022-07-02 17:23:40 UTC (rev 12694)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java 2022-07-02 17:48:24 UTC (rev 12695)
@@ -370,22 +370,7 @@
case "w": {
final StringWord word = new StringWord(this.currentPartsOfSpeech, this.currentSegments);
final String actualContent = word.getActualContent().toString();
- if (this.logDictionaryProblems) {
- final String actualContentLowercase = actualContent.toLowerCase();
- if (this.collator == null) {
- final String normalized = Normalizer.normalize(actualContentLowercase, Normalizer.Form.NFKD);
- if (normalized.compareTo(this.lastWord) < 0) {
- warningMessage("Out of sequence (Unicode compatibility decomposition): " + actualContent);
- }
- this.lastWord = normalized;
- } else {
- if (this.collator.compare(actualContentLowercase, this.lastWord) < 0) {
- warningMessage("Out of sequence (Collator " +
- this.currentDictionary.orthography.toLocale().toString() + "): " + actualContent);
- }
- this.lastWord = actualContentLowercase;
- }
- }
+ checkCollation(actualContent);
/* Is it an existing ambiguous word? */
if (this.ambiguousWordMap.containsKey(actualContent)) {
@@ -467,7 +452,12 @@
break;
}
case "axsl-dictionaries": break;
- case "phrase": break;
+ case "phrase": {
+ final StringWord word = new StringWord(this.currentPartsOfSpeech, this.currentSegments);
+ final String actualContent = word.getActualContent().toString();
+ checkCollation(actualContent);
+ break;
+ }
case "vf": break;
case "lemma": break;
case "regular-root": break;
@@ -507,6 +497,29 @@
}
}
+ /**
+ * Checks the collation of the sequence in the dictionary input to see if items are out of order.
+ * @param actualContent The current content being checked for collation.
+ */
+ private void checkCollation(final String actualContent) {
+ if (! this.logDictionaryProblems) {
+ return;
+ }
+ final String actualContentLowercase = actualContent.toLowerCase();
+ if (this.collator == null) {
+ final String normalized = Normalizer.normalize(actualContentLowercase, Normalizer.Form.NFKD);
+ if (normalized.compareTo(this.lastWord) < 0) {
+ warningMessage("Out of sequence (Unicode compatibility decomposition): " + actualContent);
+ }
+ this.lastWord = normalized;
+ } else {
+ if (this.collator.compare(actualContentLowercase, this.lastWord) < 0) {
+ warningMessage("Out of sequence (Collator " +
+ this.currentDictionary.orthography.toLocale().toString() + "): " + actualContent);
+ }
+ this.lastWord = actualContentLowercase;
+ }
+ }
/**
* Create a pseudo-string instance.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-07-02 17:23:42
|
Revision: 12694
http://sourceforge.net/p/foray/code/12694
Author: victormote
Date: 2022-07-02 17:23:40 +0000 (Sat, 02 Jul 2022)
Log Message:
-----------
Use Collator and/or Normalizer to check order of content.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java 2022-06-28 22:00:51 UTC (rev 12693)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java 2022-07-02 17:23:40 UTC (rev 12694)
@@ -50,11 +50,14 @@
import org.xml.sax.XMLReader;
import java.io.IOException;
+import java.text.Collator;
+import java.text.Normalizer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
+import java.util.Locale;
import java.util.Map;
import java.util.Set;
@@ -132,6 +135,9 @@
/** The last parsed word, used to verify alphabetical order. */
private String lastWord = StringUtils.EMPTY_STRING;
+ /** Collator used to check the order of entries in the dictionary. */
+ private Collator collator;
+
/**
* Parses a given InputStream and places the parsed information into the dictionary.
* @param inputSource The input source to parse.
@@ -305,6 +311,14 @@
throw new SAXException("Attribute hard-hyphen-char must have exactly one char.");
}
this.currentDictionary.hardHyphenChar = hard.charAt(0);
+ final Locale locale = this.currentDictionary.orthography.toLocale();
+ if (locale != null) {
+ this.collator = Collator.getInstance(locale);
+ this.collator.setDecomposition(Collator.FULL_DECOMPOSITION);
+ /* Catch differences between characters that have different diacritical markings, but treat lowercase
+ * and uppercase the same. */
+ this.collator.setStrength(Collator.SECONDARY);
+ }
break;
}
case "axsl-dictionaries": break;
@@ -358,10 +372,19 @@
final String actualContent = word.getActualContent().toString();
if (this.logDictionaryProblems) {
final String actualContentLowercase = actualContent.toLowerCase();
- if (actualContentLowercase.compareTo(this.lastWord) < 0) {
- warningMessage("Out of alphabetical sequence: " + actualContent);
+ if (this.collator == null) {
+ final String normalized = Normalizer.normalize(actualContentLowercase, Normalizer.Form.NFKD);
+ if (normalized.compareTo(this.lastWord) < 0) {
+ warningMessage("Out of sequence (Unicode compatibility decomposition): " + actualContent);
+ }
+ this.lastWord = normalized;
+ } else {
+ if (this.collator.compare(actualContentLowercase, this.lastWord) < 0) {
+ warningMessage("Out of sequence (Collator " +
+ this.currentDictionary.orthography.toLocale().toString() + "): " + actualContent);
+ }
+ this.lastWord = actualContentLowercase;
}
- this.lastWord = actualContentLowercase;
}
/* Is it an existing ambiguous word? */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-28 22:00:54
|
Revision: 12693
http://sourceforge.net/p/foray/code/12693
Author: victormote
Date: 2022-06-28 22:00:51 +0000 (Tue, 28 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/DictionaryParser.java
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-06-26 19:49:34 UTC (rev 12692)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-06-28 22:00:51 UTC (rev 12693)
@@ -7,6 +7,7 @@
<axsl-dictionary language="eng" script="Latn" hard-hyphen-char="="
soft-hyphen-char="-">
+<w><t>Car-tha-gen-i-an</t><noun><pluralizable/><convertible-to-possessive/></noun></w><!-- Carthaginian. -->
<w><t>hum-bleth</t></w>
<w><t>Kal-a-bar</t></w><!-- Calabar -->
<w><t>Kam-e-run</t></w><!-- Cameroon -->
@@ -18,6 +19,7 @@
<w><t>pre-ëm-i-nent-ly</t><adverb/></w>
<w><t>seek-est</t></w>
<w><t>speak-eth</t></w>
+<w><t>un-lade</t><verb><regular-root/></verb></w>
<w><t>walk-eth</t></w>
</axsl-dictionary>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-26 19:49:34 UTC (rev 12692)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-28 22:00:51 UTC (rev 12693)
@@ -63,7 +63,7 @@
<phrase><t>a tem-po</t></phrase>
<w><t>a=plen-ty</t></w>
<w><t>a-a</t></w>
-<w><t>aaaaaaaaaa</t><noun><convertible-to-possessive/></noun></w><!-- Pseudo-word used as a replacement for omitted word elements. -->
+<w><t>aaaaaaaaaa</t><noun><convertible-to-possessive/></noun><comment>Pseudo-word used as a replacement for omitted word elements.</comment></w>
<w><t>Aa-chen</t></w>
<w><t>Aal-borg</t></w>
<w><t>Aa-le-sund</t></w>
@@ -371,7 +371,7 @@
<w><t>a-bloom</t></w>
<w><t>ab-lu-ent</t></w>
<w><t>a-blush</t></w>
-<w><t>ab-lu-tion</t></w>
+<w><t>ab-lu-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ab-lu-tion-ar-y</t></w>
<w><t>a-bly</t></w>
<w><t>ab-mho</t></w>
@@ -401,7 +401,7 @@
<w><t>Ab-o</t></w>
<w><t>a-board</t></w>
<w><t>a-board-age</t></w>
-<w><t>a-bode</t></w>
+<w><t>a-bode</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ab-ohm</t></w>
<w><t>a-boi-deau</t></w>
<w><t>a-boi-teau</t></w>
@@ -461,7 +461,7 @@
<phrase><t>Aboukir Bay</t></phrase>
<w><t>a-bou-li-a</t></w>
<w><t>a-bou-lic</t></w>
-<w><t>a-bound</t></w>
+<w><t>a-bound</t><verb><regular-root/></verb></w>
<w><t>a-bound-ing-ly</t></w>
<w><t>a-bout</t></w>
<w><t>a-bout=face</t></w>
@@ -4606,7 +4606,7 @@
<w><t>al-ter-a-ble-ness</t></w>
<w><t>al-ter-a-bly</t></w>
<w><t>al-ter-ant</t></w>
-<w><t>al-ter-a-tion</t></w>
+<w><t>al-ter-a-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>al-ter-a-tive</t></w>
<w><t>al-ter-cate</t></w>
<w><t>al-ter-cat-ed</t></w>
@@ -4825,7 +4825,7 @@
<w><t>a-maz-ing</t></w>
<w><t>a-maz-ing-ly</t></w>
<w><t>am-a-zon</t></w>
-<w><t>Am-a-zon</t></w>
+<w><t>Am-a-zon</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>am-a-zon ant</t></phrase>
<w><t>A-ma-zo-nas</t></w>
<w><t>Am-a-zo-ni-an</t></w>
@@ -6363,7 +6363,7 @@
<w><t>an-i-mad-ver-sion-al</t></w>
<w><t>an-i-mad-vert</t></w>
<w><t>an-i-mad-vert-er</t></w>
-<w><t>an-i-mal</t></w>
+<w><t>an-i-mal</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>an-i-mal hus-band-ry</t></phrase>
<phrase><t>an-i-mal king-dom</t></phrase>
<phrase><t>an-i-mal mag-net-ism</t></phrase>
@@ -6448,7 +6448,7 @@
<w><t>an-ker-ite</t></w>
<w><t>ankh</t></w>
<w><t>An-king</t></w>
-<w><t>an-kle</t></w>
+<w><t>an-kle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>an-kle sock</t></phrase>
<w><t>an-kle=deep</t></w>
<w><t>an-kle-bone</t></w>
@@ -6693,7 +6693,7 @@
<w><t>an-swer-er</t></w>
<w><t>an-swer-less</t></w>
<w><t>an-swer-less-ly</t></w>
-<w><t>ant</t></w>
+<w><t>ant</t><noun><pluralizable/></noun></w>
<w><t>ant=pip-it</t></w>
<w><t>an-ta</t></w>
<w><t>ant-a-ap-i-ces</t></w>
@@ -8011,7 +8011,7 @@
<w><t>ap-a-thy</t></w>
<w><t>ap-a-tite</t></w>
<w><t>Ap-a-tu-ri-a</t></w>
-<w><t>ape</t></w>
+<w><t>ape</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ape=man</t></w>
<w><t>a-peak</t></w>
<w><t>a-peek</t></w>
@@ -8944,7 +8944,7 @@
<w><t>Ar-ces-i-la-us</t></w>
<w><t>Ar-ces-i-us</t></w>
<w><t>arc-form</t></w>
-<w><t>arch</t></w>
+<w><t>arch</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ar-chae-an</t></w>
<w><t>Ar-chae-o-cy-a-thid</t></w>
<w><t>arch-ae-o-cyte</t></w>
@@ -9824,7 +9824,7 @@
<w><t>ar-ti-san</t></w>
<w><t>ar-ti-san-al</t></w>
<w><t>ar-ti-san-ship</t></w>
-<w><t>art-ist</t></w>
+<w><t>art-ist</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ar-tiste</t></w>
<w><t>ar-tis-tic</t></w>
<w><t>ar-tis-ti-cal</t></w>
@@ -10923,7 +10923,7 @@
<w><t>at-tain-a-ble-ness</t></w>
<w><t>at-tain-der</t></w>
<w><t>at-tain-er</t></w>
-<w><t>at-tain-ment</t></w>
+<w><t>at-tain-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>at-taint</t></w>
<w><t>at-tain-ture</t></w>
<w><t>At-tal-la</t></w>
@@ -10959,7 +10959,7 @@
<w><t>at-ten-u-at-ing</t></w>
<w><t>at-ten-u-a-tion</t></w>
<w><t>at-ten-u-a-tor</t></w>
-<w><t>at-test</t></w>
+<w><t>at-test</t><verb><regular-root/></verb></w>
<w><t>at-test-a-ble</t></w>
<w><t>at-test-ant</t></w>
<w><t>at-tes-ta-tion</t></w>
@@ -12398,7 +12398,7 @@
<w><t>back-wards</t></w>
<w><t>back-wash</t></w>
<w><t>back-wash-er</t></w>
-<w><t>back-wa-ter</t></w>
+<w><t>back-wa-ter</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>back-wind</t></w>
<w><t>back-wind-ed</t></w>
<w><t>back-wind-ing</t></w>
@@ -13007,7 +13007,7 @@
<phrase><t>Ban-bur-y cake</t></phrase>
<w><t>banc</t></w>
<w><t>Ban-croft</t></w>
-<w><t>band</t></w>
+<w><t>band</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>band spec-trum</t></phrase>
<w><t>band=ga-la</t></w>
<phrase><t>band=pass fil-ter</t></phrase>
@@ -14144,7 +14144,7 @@
<w><t>Bax</t></w>
<w><t>Bax-ley</t></w>
<w><t>Bax-ter</t></w>
-<w><t>bay</t></w>
+<w><t>bay</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>bay win-dow</t></phrase>
<w><t>ba-ya</t></w>
<w><t>ba-ya-dere</t></w>
@@ -14221,7 +14221,7 @@
<w><t>bea-con-age</t></w>
<w><t>bea-con-less</t></w>
<w><t>Bea-cons-field</t></w>
-<w><t>bead</t></w>
+<w><t>bead</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>bead=ru-by</t></w>
<w><t>bead-ed</t></w>
<w><t>bead-er</t></w>
@@ -14694,9 +14694,10 @@
<w><t>Beg-giat-o-a</t></w>
<w><t>Beg-hard</t></w>
<w><t>Beg-in</t></w>
-<w><t>be-gin</t></w>
+<w><t>be-gin</t><verb><regular-root value="false"/></verb></w>
<w><t>be-gin-ner</t></w>
<w><t>be-gin-ning</t></w>
+<w><t>be-gins</t><verb><regular-root value="false"/></verb></w>
<w><t>be-gird</t></w>
<w><t>be-gird-ed</t></w>
<w><t>be-gird-ing</t></w>
@@ -14871,7 +14872,7 @@
<w><t>be-live</t></w>
<w><t>Be-lize</t></w>
<w><t>Bell</t></w>
-<w><t>bell</t></w>
+<w><t>bell</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>bell hea-ther</t></phrase>
<phrase><t>bell mag-pie</t></phrase>
<phrase><t>bell met-al</t></phrase>
@@ -14967,9 +14968,8 @@
<w><t>be-loid</t></w>
<w><t>Be-loit</t></w>
<w><t>bel-o-man-cy</t></w>
-<w><t>be-long</t></w>
-<w><t>be-long-ing</t></w>
-<w><t>be-long-ings</t></w>
+<w><t>be-long</t><verb><regular-root/></verb></w>
+<w><t>be-long-ing</t><noun><pluralizable/></noun></w>
<w><t>bel-o-noid</t></w>
<w><t>Be-lo-rus-sia</t></w>
<w><t>Be-lo-rus-sian</t></w>
@@ -14983,7 +14983,7 @@
<w><t>Bel-pre</t></w>
<w><t>Bel-sen</t></w>
<w><t>Bel-shaz-zar</t></w>
-<w><t>belt</t></w>
+<w><t>belt</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Bel-tane</t></w>
<w><t>belt-course</t></w>
<w><t>belt-ed</t></w>
@@ -17616,7 +17616,7 @@
<w><t>boast-ful-ness</t></w>
<w><t>boast-ing-ly</t></w>
<w><t>boast-less</t></w>
-<w><t>boat</t></w>
+<w><t>boat</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>boat=billed her-on</t></phrase>
<w><t>boat-a-ble</t></w>
<w><t>boat-age</t></w>
@@ -17879,7 +17879,7 @@
<w><t>Bo-land</t></w>
<w><t>bo-lar</t></w>
<w><t>bo-las</t></w>
-<w><t>bold</t></w>
+<w><t>bold</t><adjective><extensible/></adjective></w>
<w><t>bold-face</t></w>
<w><t>bold-faced</t></w>
<w><t>bold-fac-ed-ly</t></w>
@@ -18061,7 +18061,7 @@
<w><t>bonds-wom-en</t></w>
<w><t>bond-wom-an</t></w>
<w><t>bond-wom-en</t></w>
-<w><t>bone</t></w>
+<w><t>bone</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>bone chi-na</t></phrase>
<phrase><t>bone i-dle</t></phrase>
<phrase><t>bone of con-ten-tion</t></phrase>
@@ -18169,7 +18169,7 @@
<w><t>boo-hooed</t></w>
<w><t>boo-hoo-ing</t></w>
<w><t>boo-ing</t></w>
-<w><t>book</t></w>
+<w><t>book</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>book in-to</t></phrase>
<phrase><t>book of ac-count</t></phrase>
<phrase><t>Book of Chang-es</t></phrase>
@@ -18859,7 +18859,7 @@
<w><t>box-room</t></w>
<w><t>box-thorn</t></w>
<w><t>box-wood</t></w>
-<w><t>boy</t></w>
+<w><t>boy</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>bo-yar</t></w>
<w><t>bo-yard</t></w>
<w><t>bo-yard-ism</t></w>
@@ -21005,7 +21005,7 @@
<w><t>bu-se-ra</t></w>
<w><t>bus-es</t></w>
<w><t>Bush</t></w>
-<w><t>bush</t></w>
+<w><t>bush</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>bush jack-et</t></phrase>
<phrase><t>bush law-yer</t></phrase>
<phrase><t>bush oys-ter</t></phrase>
@@ -21477,6 +21477,7 @@
<w><t>ca-bling</t></w>
<w><t>cab-man</t></w>
<w><t>ca-bob</t></w>
+<w><t>cab-o-ceer</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ca-boched</t></w>
<w><t>cab-o-chon</t></w>
<w><t>ca-bo-ché</t></w>
@@ -23750,7 +23751,7 @@
<phrase><t>Car-te-si-an co-or-di-nates</t></phrase>
<w><t>Carte-sian-ism</t></w>
<w><t>cart-ful</t></w>
-<w><t>Car-thage</t></w>
+<w><t>Car-thage</t><noun><convertible-to-possessive/></noun></w>
<w><t>Car-tha-gin-i-an</t></w>
<w><t>Car-thal</t></w>
<w><t>cart-horse</t></w>
@@ -25762,7 +25763,7 @@
<w><t>chap-tal-ize</t></w>
<w><t>chap-tal-ized</t></w>
<w><t>chap-tal-iz-ing</t></w>
-<w><t>chap-ter</t></w>
+<w><t>chap-ter</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>chap-ter-al</t></w>
<w><t>chap-ter-house</t></w>
<w><t>chap-trel</t></w>
@@ -28835,7 +28836,7 @@
<w><t>cling-ing-ness</t></w>
<w><t>cling-stone</t></w>
<w><t>cling-y</t></w>
-<w><t>clin-ic</t></w>
+<w><t>clin-ic</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>clin-i-cal</t></w>
<phrase><t>clin-i-cal ther-mom-e-ter</t></phrase>
<w><t>clin-i-cal-ly</t></w>
@@ -30116,7 +30117,7 @@
<w><t>col-lo-phore</t></w>
<w><t>colloq</t></w>
<w><t>col-lo-qui-a</t></w>
-<w><t>col-lo-qui-al</t></w>
+<w><t>col-lo-qui-al</t><adjective><extensible value="false"/></adjective></w>
<w><t>col-lo-qui-al-ism</t></w>
<w><t>col-lo-qui-al-ist</t></w>
<w><t>col-lo-qui-al-ly</t></w>
@@ -30540,7 +30541,7 @@
<phrase><t>com-mand-ing of-fic-er</t></phrase>
<w><t>com-mand-ing-ness</t></w>
<w><t>com-mand-less</t></w>
-<w><t>com-mand-ment</t></w>
+<w><t>com-mand-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>com-man-do</t></w>
<w><t>com-meas-ur-a-ble</t></w>
<w><t>com-meas-ure</t></w>
@@ -30559,7 +30560,7 @@
<w><t>com-mem-o-ra-tive-ness</t></w>
<w><t>com-mem-o-ra-tor</t></w>
<w><t>com-mem-o-ra-to-ry</t></w>
-<w><t>com-mence</t></w>
+<w><t>com-mence</t><verb><regular-root/></verb></w>
<w><t>com-mence-a-ble</t></w>
<w><t>com-menced</t></w>
<w><t>com-mence-ment</t></w>
@@ -30881,7 +30882,7 @@
<w><t>com-pared</t></w>
<w><t>com-par-er</t></w>
<w><t>com-par-ing</t></w>
-<w><t>com-par-i-son</t></w>
+<w><t>com-par-i-son</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>com-par-sa</t></w>
<w><t>com-part</t></w>
<w><t>com-par-ti-men-to</t></w>
@@ -31421,11 +31422,9 @@
<w><t>con-clave</t></w>
<w><t>con-clav-ist</t></w>
<w><t>con-clud-a-ble</t></w>
-<w><t>con-clude</t></w>
-<w><t>con-clud-ed</t></w>
+<w><t>con-clude</t><verb><regular-root/></verb></w>
<w><t>con-clud-er</t></w>
<w><t>con-clud-i-ble</t></w>
-<w><t>con-clud-ing</t></w>
<w><t>con-clu-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>con-clu-sion-al</t></w>
<w><t>con-clu-sion-al-ly</t></w>
@@ -32119,7 +32118,7 @@
<w><t>con-scrip-tion</t></w>
<w><t>con-scrip-tion-al</t></w>
<w><t>con-scrip-tion-ist</t></w>
-<w><t>con-se-crate</t></w>
+<w><t>con-se-crate</t><verb><regular-root/></verb></w>
<w><t>con-se-crat-ed</t></w>
<w><t>con-se-crat-ed-ness</t></w>
<w><t>con-se-crat-er</t></w>
@@ -32648,7 +32647,7 @@
<w><t>con-tract-i-bly</t></w>
<w><t>con-trac-tile</t></w>
<w><t>con-trac-til-i-ty</t></w>
-<w><t>con-trac-tion</t></w>
+<w><t>con-trac-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>con-trac-tion-al</t></w>
<w><t>con-trac-tive</t></w>
<w><t>con-trac-tive-ly</t></w>
@@ -32710,7 +32709,7 @@
<w><t>con-trar-i-ous-ness</t></w>
<w><t>con-tra-ri-wise</t></w>
<w><t>con-tra-ry</t></w>
-<w><t>con-trast</t></w>
+<w><t>con-trast</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>con-trast-a-ble</t></w>
<w><t>con-trast-a-bly</t></w>
<w><t>con-traste</t></w>
@@ -32974,7 +32973,7 @@
<w><t>con-vo-lut-ed-ness</t></w>
<w><t>con-vo-lute-ly</t></w>
<w><t>con-vo-lut-ing</t></w>
-<w><t>con-vo-lu-tion</t></w>
+<w><t>con-vo-lu-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>con-vo-lu-tion-al</t></w>
<w><t>con-vo-lu-tion-ar-y</t></w>
<w><t>con-volve</t></w>
@@ -34183,7 +34182,7 @@
<w><t>count-a-bly</t></w>
<w><t>count-down</t></w>
<w><t>Coun-tee</t></w>
-<w><t>coun-te-nance</t></w>
+<w><t>coun-te-nance</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>coun-te-nanced</t></w>
<w><t>coun-te-nanc-er</t></w>
<w><t>coun-te-nanc-ing</t></w>
@@ -35021,7 +35020,7 @@
<w><t>Cre-a-tor</t></w>
<w><t>cre-a-tor-ship</t></w>
<w><t>crea-tur-al</t></w>
-<w><t>crea-ture</t></w>
+<w><t>crea-ture</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>crea-ture com-forts</t></phrase>
<w><t>crea-ture-li-ness</t></w>
<w><t>crea-ture-ly</t></w>
@@ -37365,7 +37364,7 @@
<w><t>da-lan</t></w>
<w><t>da-la-si</t></w>
<w><t>Dal-croze</t></w>
-<w><t>dale</t></w>
+<w><t>dale</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Dale</t></w>
<w><t>da-led</t></w>
<w><t>Dales</t></w>
@@ -37575,7 +37574,7 @@
<w><t>Dan-ford</t></w>
<w><t>dang</t></w>
<w><t>danged</t></w>
-<w><t>dan-ger</t></w>
+<w><t>dan-ger</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>dan-ger mon-ey</t></phrase>
<w><t>dan-ger-less</t></w>
<w><t>dan-ger-ous</t></w>
@@ -38902,7 +38901,7 @@
<w><t>de-fib-ril-la-tor</t></w>
<w><t>de-fi-bril-la-tor</t></w>
<w><t>de-fi-cience</t></w>
-<w><t>de-fi-cien-cy</t></w>
+<w><t>de-fi-cien-cy</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>de-fi-cien-cy dis-ease</t></phrase>
<w><t>de-fi-cient</t></w>
<w><t>de-fi-cient-ly</t></w>
@@ -40052,7 +40051,7 @@
<w><t>de-pend-ant-ly</t></w>
<w><t>de-pend-ence</t></w>
<w><t>de-pend-en-cy</t></w>
-<w><t>de-pend-ent</t></w>
+<w><t>de-pend-ent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>de-pend-ent clause</t></phrase>
<phrase><t>de-pend-ent var-i-a-ble</t></phrase>
<w><t>de-pend-ent-ly</t></w>
@@ -40414,7 +40413,7 @@
<w><t>de-scend</t><verb><regular-root/></verb></w>
<w><t>de-scend-a-bil-i-ty</t></w>
<w><t>de-scend-a-ble</t></w>
-<w><t>de-scend-ant</t></w>
+<w><t>de-scend-ant</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>De-scend-ant</t></w>
<w><t>de-scend-ent</t></w>
<w><t>de-scend-er</t></w>
@@ -40431,10 +40430,8 @@
<w><t>de-scrib-a-bil-i-ty</t></w>
<w><t>de-scrib-a-ble</t></w>
<w><t>de-scrib-a-bly</t></w>
-<w><t>de-scribe</t></w>
-<w><t>de-scribed</t></w>
+<w><t>de-scribe</t><verb><regular-root/></verb></w>
<w><t>de-scrib-er</t></w>
-<w><t>de-scrib-ing</t></w>
<w><t>de-scried</t></w>
<w><t>de-scri-er</t></w>
<w><t>de-scrip-tion</t></w>
@@ -41059,7 +41056,7 @@
<w><t>de-vo-tion-al-i-ty</t></w>
<w><t>de-vo-tion-al-ly</t></w>
<w><t>de-vo-tion-al-ness</t></w>
-<w><t>de-vour</t></w>
+<w><t>de-vour</t><verb><regular-root/></verb></w>
<w><t>de-vour-er</t></w>
<w><t>de-vour-ing-ly</t></w>
<w><t>de-vour-ing-ness</t></w>
@@ -41275,7 +41272,7 @@
<w><t>di-al</t></w>
<phrase><t>di-al gauge</t></phrase>
<phrase><t>di-al tone</t></phrase>
-<w><t>di-a-lect</t></w>
+<w><t>di-a-lect</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>di-a-lect at-las</t></phrase>
<phrase><t>di-a-lect ge-og-ra-phy</t></phrase>
<w><t>di-a-lec-tal</t></w>
@@ -41721,7 +41718,7 @@
<w><t>Die-trich</t></w>
<w><t>diff</t></w>
<w><t>dif-fer</t><verb><regular-root/></verb></w>
-<w><t>dif-fer-ence</t></w>
+<w><t>dif-fer-ence</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dif-fer-enced</t></w>
<w><t>dif-fer-enc-ing</t></w>
<w><t>dif-fer-ent</t></w>
@@ -41791,7 +41788,7 @@
<w><t>Dig-by</t></w>
<w><t>di-gen-e-sis</t></w>
<w><t>di-ge-net-ic</t></w>
-<w><t>di-gest</t></w>
+<w><t>di-gest</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Di-gest</t></w>
<w><t>di-gest-ant</t></w>
<w><t>di-ges-tant</t></w>
@@ -42714,7 +42711,7 @@
<w><t>dis-cour-te-ous-ly</t></w>
<w><t>dis-cour-te-ous-ness</t></w>
<w><t>dis-cour-te-sy</t></w>
-<w><t>dis-cov-er</t></w>
+<w><t>dis-cov-er</t><verb><regular-root/></verb></w>
<w><t>dis-cov-er-a-ble</t></w>
<w><t>dis-cov-er-a-bly</t></w>
<w><t>dis-cov-er-er</t></w>
@@ -42916,7 +42913,7 @@
<w><t>dis-gust-ing</t></w>
<w><t>dis-gust-ing-ly</t></w>
<w><t>dis-gust-ing-ness</t></w>
-<w><t>dish</t></w>
+<w><t>dish</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>dis-ha-bille</t></w>
<w><t>dis-ha-bit-u-ate</t></w>
<w><t>dis-ha-bit-u-at-ed</t></w>
@@ -43211,7 +43208,7 @@
<w><t>dis-plac-er</t></w>
<w><t>dis-plac-ing</t></w>
<w><t>dis-plant</t></w>
-<w><t>dis-play</t></w>
+<w><t>dis-play</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>dis-played</t></w>
<w><t>dis-play-er</t></w>
<w><t>dis-please</t></w>
@@ -45122,7 +45119,7 @@
<w><t>drafts-man</t></w>
<w><t>drafts-man-ship</t></w>
<w><t>draft-y</t></w>
-<w><t>drag</t></w>
+<w><t>drag</t><verb><regular-root/></verb></w>
<w><t>dra-g</t></w>
<w><t>drag-ger</t></w>
<w><t>drag-ging</t></w>
@@ -45420,7 +45417,7 @@
<w><t>dri-ly</t></w>
<w><t>Drin</t></w>
<w><t>Dri-na</t></w>
-<w><t>drink</t></w>
+<w><t>drink</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
<w><t>drink-a-bil-i-ty</t></w>
<w><t>drink-a-ble</t></w>
<w><t>drink-a-ble-ness</t></w>
@@ -45430,6 +45427,7 @@
<phrase><t>drink-ing foun-tain</t></phrase>
<phrase><t>drink-ing wa-ter</t></phrase>
<phrase><t>drink-ing=up time</t></phrase>
+<w><t>drinks</t><verb><regular-root value="false"/></verb></w>
<w><t>Drink-wa-ter</t></w>
<w><t>drip</t></w>
<w><t>drip-o-la-tor</t></w>
@@ -45453,7 +45451,7 @@
<w><t>driv-el-ling</t></w>
<w><t>driv-el-ling-ly</t></w>
<w><t>driv-en</t></w>
-<w><t>driv-er</t></w>
+<w><t>driv-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>driv-er ant</t></phrase>
<w><t>driv-er-less</t></w>
<w><t>drive-way</t></w>
@@ -46220,7 +46218,7 @@
<w><t>dwell-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dwelt</t></w>
<w><t>Dwight</t></w>
-<w><t>dwin-dle</t></w>
+<w><t>dwin-dle</t><verb><regular-root/></verb></w>
<w><t>dwine</t></w>
<w><t>dwin-ing</t></w>
<w><t>dwt</t></w>
@@ -46461,7 +46459,7 @@
<w><t>EAM</t></w>
<w><t>Ea-nes</t></w>
<w><t>ean-ling</t></w>
-<w><t>ear</t></w>
+<w><t>ear</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ear trum-pet</t></phrase>
<w><t>ear=mind-ed</t></w>
<w><t>ear=pierc-ing</t></w>
@@ -47207,7 +47205,7 @@
<w><t>ef-face-ment</t></w>
<w><t>ef-fac-er</t></w>
<w><t>ef-fac-ing</t></w>
-<w><t>ef-fect</t></w>
+<w><t>ef-fect</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ef-fect-er</t></w>
<w><t>ef-fec-ter</t></w>
<w><t>ef-fect-i-ble</t></w>
@@ -48403,7 +48401,7 @@
<w><t>em-bow-er</t></w>
<w><t>em-bow-ment</t></w>
<w><t>em-boî-té</t></w>
-<w><t>em-brace</t></w>
+<w><t>em-brace</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>em-brace-a-ble</t></w>
<w><t>em-braced</t></w>
<w><t>em-brace-ment</t></w>
@@ -50387,10 +50385,8 @@
<w><t>ep-i-zo-öt-i-cal-ly</t></w>
<w><t>ep-i-zo-ö-ty</t></w>
<w><t>EPNS</t></w>
-<w><t>ep-och</t></w>
-<w><t>e-poch</t></w>
+<w><t>ep-och</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ep-och=mak-ing</t></w>
-<w><t>e-poch=mak-ing</t></w>
<w><t>ep-och-al</t></w>
<w><t>ep-och-al-ly</t></w>
<w><t>ep-ode</t></w>
@@ -52057,7 +52053,7 @@
<w><t>e-vok-er</t></w>
<w><t>e-vok-ing</t></w>
<w><t>ev-o-lute</t></w>
-<w><t>ev-o-lu-tion</t></w>
+<w><t>ev-o-lu-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>e-vo-lu-tion</t></w>
<w><t>ev-o-lu-tion-al</t></w>
<w><t>ev-o-lu-tion-al-ly</t></w>
@@ -52134,7 +52130,7 @@
<w><t>ex-ag-ger-at-ed-ly</t></w>
<w><t>ex-ag-ger-at-ing</t></w>
<w><t>ex-ag-ger-at-ing-ly</t></w>
-<w><t>ex-ag-ger-a-tion</t></w>
+<w><t>ex-ag-ger-a-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-ag-ger-a-tive</t></w>
<w><t>ex-ag-ger-a-tive-ly</t></w>
<w><t>ex-ag-ger-a-tor</t></w>
@@ -52159,7 +52155,7 @@
<w><t>ex-am-in-er</t></w>
<w><t>ex-am-in-ing</t></w>
<w><t>ex-am-in-ing-ly</t></w>
-<w><t>ex-am-ple</t></w>
+<w><t>ex-am-ple</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-an-i-mate</t></w>
<w><t>ex-an-i-ma-tion</t></w>
<w><t>ex-an-them</t></w>
@@ -52641,7 +52637,7 @@
<w><t>ex-or-cis-ing</t></w>
<w><t>ex-or-cism</t></w>
<w><t>ex-or-cis-mal</t></w>
-<w><t>ex-or-cist</t></w>
+<w><t>ex-or-cist</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-or-cize</t></w>
<w><t>ex-or-cized</t></w>
<w><t>ex-or-ciz-er</t></w>
@@ -52696,7 +52692,7 @@
<w><t>ex-pan-si-bil-i-ty</t></w>
<w><t>ex-pan-si-ble</t></w>
<w><t>ex-pan-sile</t></w>
-<w><t>ex-pan-sion</t></w>
+<w><t>ex-pan-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ex-pan-sion bolt</t></phrase>
<w><t>ex-pan-sion-al</t></w>
<w><t>ex-pan-sion-ar-y</t></w>
@@ -53267,7 +53263,7 @@
<w><t>ex-trem-est</t></w>
<w><t>ex-trem-ism</t></w>
<w><t>ex-trem-ist</t></w>
-<w><t>ex-trem-i-ty</t></w>
+<w><t>ex-trem-i-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-tre-mum</t></w>
<w><t>ex-tri-ca-ble</t></w>
<w><t>ex-tri-cate</t></w>
@@ -53342,7 +53338,7 @@
<w><t>eye=pop-per</t></w>
<w><t>eye=pop-ping</t></w>
<w><t>eye-a-ble</t></w>
-<w><t>eye-ball</t></w>
+<w><t>eye-ball</t><noun><pluralizable/></noun></w>
<w><t>eye-bar</t></w>
<w><t>eye-bath</t></w>
<w><t>eye-beam</t></w>
@@ -53349,7 +53345,7 @@
<w><t>eye-black</t></w>
<w><t>eye-bolt</t></w>
<w><t>eye-bright</t></w>
-<w><t>eye-brow</t></w>
+<w><t>eye-brow</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>eye-cup</t></w>
<w><t>eyed</t></w>
<w><t>eye-drop-per</t></w>
@@ -53953,7 +53949,7 @@
<w><t>fan-fish-es</t></w>
<w><t>fan-fold</t></w>
<w><t>Fang</t></w>
-<w><t>fang</t></w>
+<w><t>fang</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Fan-gi-o</t></w>
<w><t>fan-gle</t></w>
<w><t>fan-gled</t></w>
@@ -54074,7 +54070,7 @@
<w><t>farl</t></w>
<w><t>farle</t></w>
<w><t>Far-ley</t></w>
-<w><t>farm</t></w>
+<w><t>farm</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>farm-a-ble</t></w>
<w><t>farm-er</t></w>
<w><t>Far-mer</t></w>
@@ -54197,7 +54193,7 @@
<phrase><t>fast=breed-er re-ac-tor</t></phrase>
<w><t>fast=mov-ing</t></w>
<w><t>fast-back</t></w>
-<w><t>fas-ten</t></w>
+<w><t>fas-ten</t><verb><regular-root/></verb></w>
<w><t>fas-ten-er</t></w>
<w><t>fas-ten-ing</t></w>
<w><t>fas-tid-i-ous</t></w>
@@ -55365,7 +55361,7 @@
<w><t>fig-ging</t></w>
<w><t>fig-gy</t></w>
<w><t>figh</t></w>
-<w><t>fight</t></w>
+<w><t>fight</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
<w><t>fight-a-ble</t></w>
<w><t>fight-er</t></w>
<w><t>fight-er=bomb-er</t></w>
@@ -55376,6 +55372,7 @@
<phrase><t>fight-ing fish</t></phrase>
<phrase><t>fight-ing top</t></phrase>
<w><t>fight-ing-ly</t></w>
+<w><t>fights</t><verb><regular-root value="false"/></verb></w>
<w><t>fig-ment</t></w>
<w><t>Fi-gue-res</t></w>
<w><t>fig-u-line</t></w>
@@ -55600,11 +55597,12 @@
<w><t>fin-ca</t></w>
<w><t>finch</t></w>
<w><t>Finch-ley</t></w>
-<w><t>find</t></w>
+<w><t>find</t><noun/><verb><regular-root value="false"/></verb></w>
<w><t>find-a-ble</t></w>
<w><t>find-er</t></w>
<w><t>find-ing</t></w>
<w><t>Find-lay</t></w>
+<w><t>finds</t><verb><regular-root value="false"/></verb></w>
<w><t>fine</t></w>
<w><t>fi-ne</t></w>
<phrase><t>Fi-ne Gael</t></phrase>
@@ -55628,7 +55626,7 @@
<w><t>fi-nes-tra</t></w>
<w><t>fin-foot</t></w>
<phrase><t>Fin-gal's Cave</t></phrase>
-<w><t>fin-ger</t></w>
+<w><t>fin-ger</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>fin-ger bowl</t></phrase>
<phrase><t>fin-ger paint-ing</t></phrase>
<phrase><t>fin-ger post</t></phrase>
@@ -55933,7 +55931,7 @@
<w><t>fis-sured</t></w>
<w><t>fis-sure-less</t></w>
<w><t>fis-sur-ing</t></w>
-<w><t>fist</t></w>
+<w><t>fist</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>fist-fight</t></w>
<w><t>fist-ful</t></w>
<w><t>fist-i-an-a</t></w>
@@ -56485,6 +56483,7 @@
<w><t>flick-er-y</t></w>
<w><t>flied</t></w>
<w><t>fli-er</t></w>
+<w><t>flies</t><noun><plural/></noun><verb><regular-root value="false"/></verb></w>
<w><t>flight</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>flight ar-row</t></phrase>
<phrase><t>flight en-gi-neer</t></phrase>
@@ -57476,10 +57475,11 @@
<w><t>fore-fa-ther-ly</t></w>
<w><t>fore-feel</t></w>
<w><t>fore-feel-ing</t></w>
+<w><t>fore-feet</t><noun><plural/></noun></w>
<w><t>fore-felt</t></w>
<w><t>fore-fend</t></w>
<w><t>fore-fin-ger</t></w>
-<w><t>fore-foot</t></w>
+<w><t>fore-foot</t><noun><singular/></noun></w>
<w><t>fore-front</t></w>
<w><t>fore-gath-er</t></w>
<w><t>fore-gift</t></w>
@@ -58022,7 +58022,7 @@
<w><t>fought</t></w>
<w><t>fought-en</t></w>
<w><t>Fou-ji-ta</t></w>
-<w><t>foul</t></w>
+<w><t>foul</t><verb><regular-root/></verb><adjective><extensible/></adjective></w>
<w><t>foul=up</t></w>
<w><t>fou-lard</t></w>
<w><t>foul-brood</t></w>
@@ -61568,7 +61568,7 @@
<w><t>ges-tur-ing</t></w>
<w><t>Ge-su-al-do</t></w>
<w><t>ge-sund-heit</t></w>
-<w><t>get</t></w>
+<w><t>get</t><verb><regular-root value="false"/></verb></w>
<phrase><t>get a-bout</t></phrase>
<phrase><t>get a-cross</t></phrase>
<phrase><t>get a-head</t></phrase>
@@ -61588,6 +61588,7 @@
<w><t>Geth</t></w>
<w><t>Geth-sem-a-ne</t></w>
<w><t>geth-se-man-ic</t></w>
+<w><t>gets</t><verb><regular-root value="false"/></verb></w>
<w><t>get-ta-ble</t></w>
<w><t>get-ter</t></w>
<w><t>get-ter-ing</t></w>
@@ -62308,7 +62309,7 @@
<w><t>G-lich-ing-en</t></w>
<w><t>glid-der</t></w>
<w><t>glid-der-y</t></w>
-<w><t>glide</t></w>
+<w><t>glide</t><verb><regular-root/></verb></w>
<w><t>glid-ed</t></w>
<w><t>glid-er</t></w>
<w><t>glid-ing</t></w>
@@ -62796,7 +62797,7 @@
<w><t>goal-mouth</t></w>
<w><t>goal-tend-er</t></w>
<w><t>go-an-na</t></w>
-<w><t>goat</t></w>
+<w><t>goat</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Goat</t></w>
<phrase><t>goat an-te-lope</t></phrase>
<w><t>goat-ee</t></w>
@@ -63487,7 +63488,7 @@
<w><t>Gouv-er-neur</t></w>
<w><t>gov</t></w>
<w><t>Gov</t></w>
-<w><t>gov-ern</t></w>
+<w><t>gov-ern</t><verb><regular-root/></verb></w>
<w><t>gov-ern-a-bil-i-ty</t></w>
<w><t>gov-ern-a-ble</t></w>
<w><t>gov-ern-a-ble-ness</t></w>
@@ -63670,7 +63671,7 @@
<w><t>gra-min-e-ous-ness</t></w>
<w><t>gram-i-niv-o-rous</t></w>
<w><t>gram-ma-logue</t></w>
-<w><t>gram-mar</t></w>
+<w><t>gram-mar</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>gram-mar school</t></phrase>
<w><t>gram-mar-i-an</t></w>
<w><t>gram-mar-less</t></w>
@@ -64771,7 +64772,7 @@
<w><t>Groves</t></w>
<w><t>grov-et</t></w>
<w><t>Grow</t></w>
-<w><t>grow</t></w>
+<w><t>grow</t><verb><regular-root value="false"/></verb></w>
<phrase><t>grow in-to</t></phrase>
<w><t>grow-a-ble</t></w>
<w><t>grow-an</t></w>
@@ -64785,6 +64786,7 @@
<w><t>grown</t></w>
<w><t>grown=up-ness</t></w>
<w><t>grown-up</t></w>
+<w><t>grows</t><verb><regular-root value="false"/></verb></w>
<w><t>growth</t></w>
<w><t>groyne</t></w>
<phrase><t>groz-ing i-ron</t></phrase>
@@ -66979,7 +66981,7 @@
<w><t>har-bin-gers=of=spring</t></w>
<w><t>har-bin-ger-ship</t></w>
<w><t>Har-bo-na</t></w>
-<w><t>har-bor</t></w>
+<w><t>har-bor</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>har-bor-age</t></w>
<w><t>har-bor-er</t></w>
<w><t>har-bor-less</t></w>
@@ -67250,7 +67252,7 @@
<w><t>har-ry</t></w>
<w><t>Har-ry</t></w>
<w><t>har-ry-ing</t></w>
-<w><t>harsh</t></w>
+<w><t>harsh</t><adjective><extensible/></adjective></w>
<w><t>harsh-en</t></w>
<w><t>harsh-ly</t></w>
<w><t>harsh-ness</t></w>
@@ -67389,7 +67391,7 @@
<w><t>hatch-er</t></w>
<w><t>hatch-er-ies</t></w>
<w><t>hatch-er-y</t></w>
-<w><t>hatch-et</t></w>
+<w><t>hatch-et</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>hatch-et job</t></phrase>
<phrase><t>hatch-et man</t></phrase>
<w><t>hatch-et-faced</t></w>
@@ -67687,7 +67689,7 @@
<w><t>head-ing</t></w>
<w><t>head-lamp</t></w>
<w><t>Head-land</t></w>
-<w><t>head-land</t></w>
+<w><t>head-land</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>head-ledge</t></w>
<w><t>head-less</t></w>
<w><t>head-less-ness</t></w>
@@ -67777,7 +67779,7 @@
<w><t>health-ward</t></w>
<w><t>health-y</t></w>
<w><t>Hea-ly</t></w>
-<w><t>heap</t></w>
+<w><t>heap</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>heap-er</t></w>
<w><t>heap-ing</t></w>
<w><t>heap-y</t></w>
@@ -68095,7 +68097,7 @@
<w><t>heed-less-ly</t></w>
<w><t>heed-less-ness</t></w>
<w><t>hee-haw</t></w>
-<w><t>heel</t></w>
+<w><t>heel</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>heel-ball</t></w>
<w><t>heeled</t></w>
<w><t>heel-er</t></w>
@@ -68385,7 +68387,7 @@
<w><t>hel-ot-age</t></w>
<w><t>hel-ot-ism</t></w>
<w><t>hel-ot-ry</t></w>
-<w><t>help</t></w>
+<w><t>help</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>help-a-ble</t></w>
<w><t>help-er</t></w>
<w><t>help-ful</t></w>
@@ -68872,7 +68874,7 @@
<w><t>Her-cu-lis</t></w>
<w><t>Her-cy-na</t></w>
<w><t>Her-cyn-i-an</t></w>
-<w><t>herd</t></w>
+<w><t>herd</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>herd in-stinct</t></phrase>
<w><t>herd-er</t></w>
<w><t>Her-der</t></w>
@@ -69646,7 +69648,7 @@
<w><t>high-jack</t></w>
<w><t>high-jack-er</t></w>
<w><t>High-land</t></w>
-<w><t>high-land</t></w>
+<w><t>high-land</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>High-land cat-tle</t></phrase>
<phrase><t>High-land fling</t></phrase>
<phrase><t>High-land Re-gion</t></phrase>
@@ -70268,7 +70270,7 @@
<w><t>Hol-arc-tic</t></w>
<w><t>Hol-bein</t></w>
<w><t>Hol-brook</t></w>
-<w><t>hold</t></w>
+<w><t>hold</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
<phrase><t>hold o-ver</t></phrase>
<phrase><t>hold to-geth-er</t></phrase>
<w><t>hold=up</t></w>
@@ -70289,7 +70291,7 @@
<w><t>hold-o-ver</t></w>
<w><t>Hol-dredge</t></w>
<w><t>hold-up</t></w>
-<w><t>hole</t></w>
+<w><t>hole</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>hole=and=cor-ner</t></w>
<w><t>hole=in=cor-ner</t></w>
<w><t>hole-less</t></w>
@@ -71027,7 +71029,7 @@
<w><t>hor-mone</t></w>
<w><t>hor-mon-ic</t></w>
<w><t>Hor-muz</t></w>
-<w><t>horn</t></w>
+<w><t>horn</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Horn</t></w>
<phrase><t>Horn of Af-ri-ca</t></phrase>
<phrase><t>horn of plen-ty</t></phrase>
@@ -71438,10 +71440,11 @@
<w><t>house-top</t></w>
<w><t>house-wares</t></w>
<w><t>house-warm-ing</t></w>
-<w><t>house-wife</t></w>
+<w><t>house-wife</t><noun><singular/><convertible-to-possessive/></noun></w>
<w><t>house-wife-li-ness</t></w>
<w><t>house-wife-ly</t></w>
<w><t>house-wif-er-y</t></w>
+<w><t>house-wives</t><noun><plural/></noun></w>
<w><t>house-work</t></w>
<w><t>house-work-er</t></w>
<w><t>house-wreck-er</t></w>
@@ -72004,7 +72007,7 @@
<w><t>Hu-tu</t></w>
<w><t>hutz-pah</t></w>
<w><t>Hux-lei-an</t></w>
-<w><t>Hux-ley</t></w>
+<w><t>Hux-ley</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Hux-ley-an</t></w>
<w><t>Huy-gens</t></w>
<w><t>Huys-mans</t></w>
@@ -73599,7 +73602,7 @@
<w><t>id-dhi</t></w>
<w><t>ide</t></w>
<w><t>I-de-a</t></w>
-<w><t>i-de-a</t></w>
+<w><t>i-de-a</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>i-de-a-ful</t></w>
<w><t>i-de-a-is-tic</t></w>
<w><t>i-de-al</t></w>
@@ -74497,7 +74500,7 @@
<w><t>im-par-ka-tion</t></w>
<w><t>im-parl</t></w>
<w><t>im-par-lance</t></w>
-<w><t>im-part</t></w>
+<w><t>im-part</t><verb><regular-root/></verb></w>
<w><t>im-part-a-ble</t></w>
<w><t>im-par-ta-tion</t></w>
<w><t>im-part-er</t></w>
@@ -74749,7 +74752,7 @@
<w><t>im-plead</t></w>
<w><t>im-plead-a-ble</t></w>
<w><t>im-plead-er</t></w>
-<w><t>im-ple-ment</t></w>
+<w><t>im-ple-ment</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>im-ple-men-tal</t></w>
<w><t>im-ple-men-ta-tion</t></w>
<w><t>im-ple-ment-er</t></w>
@@ -74868,7 +74871,7 @@
<w><t>im-prac-ti-cal</t></w>
<w><t>im-prac-ti-cal-i-ty</t></w>
<w><t>im-prac-ti-cal-ness</t></w>
-<w><t>im-pre-cate</t></w>
+<w><t>im-pre-cate</t><verb><regular-root/></verb></w>
<w><t>im-pre-cat-ed</t></w>
<w><t>im-pre-cat-ing</t></w>
<w><t>im-pre-ca-tion</t></w>
@@ -75686,7 +75689,7 @@
<w><t>in-cur-rence</t></w>
<w><t>in-cur-rent</t></w>
<w><t>in-cur-ring</t></w>
-<w><t>in-cur-sion</t></w>
+<w><t>in-cur-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-cur-sive</t></w>
<w><t>in-cur-vate</t></w>
<w><t>in-cur-va-ture</t></w>
@@ -75955,7 +75958,7 @@
<w><t>in-dig-nant</t></w>
<w><t>in-dig-nant-ly</t></w>
<w><t>in-dig-na-tion</t></w>
-<w><t>in-dig-ni-ty</t></w>
+<w><t>in-dig-ni-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-dign-ly</t></w>
<w><t>in-di-go</t></w>
<phrase><t>in-di-go blue</t></phrase>
@@ -76568,7 +76571,7 @@
<w><t>in-fla-tor</t></w>
<w><t>in-flect</t></w>
<w><t>in-flect-ed-ness</t></w>
-<w><t>in-flec-tion</t></w>
+<w><t>in-flec-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-flec-tion-al</t></w>
<w><t>in-flec-tion-al-ly</t></w>
<w><t>in-flec-tion-less</t></w>
@@ -77178,7 +77181,7 @@
<w><t>in-scru-ta-ble-ness</t></w>
<w><t>in-scru-ta-bly</t></w>
<w><t>in-sculp</t></w>
-<w><t>in-sect</t></w>
+<w><t>in-sect</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>In-sec-ta</t></w>
<w><t>in-sec-tan</t></w>
<w><t>in-sec-tar-i-a</t></w>
@@ -78260,7 +78263,7 @@
<w><t>in-ter-lo-cat-ed</t></w>
<w><t>in-ter-lo-cat-ing</t></w>
<w><t>in-ter-lo-ca-tion</t></w>
-<w><t>in-ter-lock</t></w>
+<w><t>in-ter-lock</t><verb><regular-root/></verb></w>
<w><t>in-ter-lock-er</t></w>
<phrase><t>in-ter-lock-ing di-rec-tor-ates</t></phrase>
<w><t>in-ter-loc-u-lar</t></w>
@@ -79366,10 +79369,8 @@
<w><t>in-voice</t></w>
<w><t>in-voiced</t></w>
<w><t>in-voic-ing</t></w>
-<w><t>in-voke</t></w>
-<w><t>in-voked</t></w>
+<w><t>in-voke</t><verb><regular-root/></verb></w>
<w><t>in-vok-er</t></w>
-<w><t>in-vok-ing</t></w>
<w><t>in-vol-u-cel</t></w>
<w><t>in-vol-u-cel-ate</t></w>
<w><t>in-vol-u-cel-lum</t></w>
@@ -80038,7 +80039,7 @@
<w><t>Is-lam-ize</t></w>
<w><t>Is-lam-ized</t></w>
<w><t>Is-lam-iz-ing</t></w>
-<w><t>is-land</t></w>
+<w><t>is-land</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>is-land of Reil</t></phrase>
<phrase><t>is-land u-ni-verse</t></phrase>
<w><t>is-land-er</t></w>
@@ -81765,7 +81766,7 @@
<w><t>jounc-ing</t></w>
<w><t>jour</t></w>
<w><t>Jour-dan</t></w>
-<w><t>jour-nal</t></w>
+<w><t>jour-nal</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>jour-nal box</t></phrase>
<w><t>jour-nal-ar-y</t></w>
<w><t>jour-nal-ese</t></w>
@@ -81782,7 +81783,7 @@
<w><t>jour-nal-ized</t></w>
<w><t>jour-nal-iz-er</t></w>
<w><t>jour-nal-iz-ing</t></w>
-<w><t>jour-ney</t></w>
+<w><t>jour-ney</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>jour-neyed</t></w>
<w><t>jour-ney-er</t></w>
<w><t>jour-ney-ing</t><noun><pluralizable/></noun></w>
@@ -82025,7 +82026,7 @@
<phrase><t>jum-bo jet</t></phrase>
<w><t>jum-buck</t></w>
<w><t>Jum-na</t></w>
-<w><t>jump</t></w>
+<w><t>jump</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>jump=up</t></w>
<w><t>jump-a-ble</t></w>
<w><t>jump-er</t></w>
@@ -82192,10 +82193,8 @@
<w><t>jus-ti-fi-ca-tive</t></w>
<w><t>jus-tif-i-ca-to-ry</t></w>
<w><t>jus-ti-fi-ca-to-ry</t></w>
-<w><t>jus-ti-fied</t></w>
<w><t>jus-ti-fi-er</t></w>
-<w><t>jus-ti-fy</t></w>
-<w><t>jus-ti-fy-ing</t></w>
+<w><t>jus-ti-fy</t><verb><regular-root/></verb></w>
<w><t>jus-ti-fy-ing-ly</t></w>
<w><t>Jus-tin</t></w>
<phrase><t>Jus-tin Mar-tyr</t></phrase>
@@ -83375,7 +83374,7 @@
<w><t>kil-ij</t></w>
<w><t>Kil-i-man-ja-ro</t></w>
<w><t>Kil-ken-ny</t></w>
-<w><t>kill</t></w>
+<w><t>kill</t><verb><regular-root/></verb></w>
<w><t>kill-a-ble</t></w>
<w><t>Kil-lar-ney</t></w>
<w><t>kill-dee</t></w>
@@ -83773,7 +83772,7 @@
<w><t>Kit-tan-ning</t></w>
<w><t>kit-ted</t></w>
<w><t>kit-tel</t></w>
-<w><t>kit-ten</t></w>
+<w><t>kit-ten</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>kit-ten-ish</t></w>
<w><t>kit-ten-ish-ly</t></w>
<w><t>kit-ten-ish-ness</t></w>
@@ -85054,7 +85053,7 @@
<w><t>Lag-o-mor-pha</t></w>
<w><t>lag-o-mor-phic</t></w>
<w><t>lag-o-mor-phous</t></w>
-<w><t>la-goon</t></w>
+<w><t>la-goon</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>La-goon Is-lands</t></phrase>
<w><t>la-goon-al</t></w>
<w><t>La-gos</t></w>
@@ -85399,7 +85398,7 @@
<w><t>land-lub-ber-ly</t></w>
<w><t>land-lub-bing</t></w>
<w><t>land-man</t></w>
-<w><t>land-mark</t></w>
+<w><t>land-mark</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>land-mass</t></w>
<w><t>Lan-do</t></w>
<w><t>Lan-don</t></w>
@@ -85732,7 +85731,8 @@
<w><t>Lars</t></w>
<w><t>Lar-sa</t></w>
<w><t>lar-um</t></w>
-<w><t>lar-va</t></w>
+<w><t>lar-va</t><noun><singular/></noun></w>
+<w><t>lar-vae</t><noun><plural/></noun></w>
<w><t>lar-val</t></w>
<w><t>lar-vate</t></w>
<w><t>lar-vi-cid-al</t></w>
@@ -86453,7 +86453,7 @@
<w><t>lec-tion-ar-y</t></w>
<w><t>lec-tor</t></w>
<w><t>lec-tor-ate</t></w>
-<w><t>lec-ture</t></w>
+<w><t>lec-ture</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>lec-tured</t></w>
<w><t>lec-tur-er</t></w>
<w><t>lec-ture-ship</t></w>
@@ -88443,7 +88443,7 @@
<w><t>lit-i-gate</t></w>
<w><t>lit-i-gat-ed</t></w>
<w><t>lit-i-gat-ing</t></w>
-<w><t>lit-i-ga-tion</t></w>
+<w><t>lit-i-ga-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>lit-i-ga-tor</t></w>
<w><t>li-ti-gi-os-i-ty</t></w>
<w><t>li-ti-gious</t></w>
@@ -89361,9 +89361,10 @@
<phrase><t>Los An-ge-les</t></phrase>
<w><t>los-a-ble</t></w>
<w><t>los-a-ble-ness</t></w>
-<w><t>lose</t></w>
+<w><t>lose</t><verb><regular-root value="false"/></verb></w>
<w><t>lo-sel</t></w>
<w><t>los-er</t></w>
+<w><t>loses</t><verb><regular-root value="false"/></verb></w>
<w><t>Lo-sey</t></w>
<w><t>los-ing</t></w>
<w><t>los-ing-ly</t></w>
@@ -92206,7 +92207,7 @@
<phrase><t>ma-rine in-sur-ance</t></phrase>
<phrase><t>ma-rine rail-way</t></phrase>
<w><t>Mar-i-ner</t></w>
-<w><t>mar-i-ner</t></w>
+<w><t>mar-i-ner</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ma-ri-net-ti</t></w>
<w><t>Ma-ri-ni</t></w>
<w><t>Ma-ri-no</t></w>
@@ -93598,12 +93599,13 @@
<w><t>meer-kat</t></w>
<w><t>meer-schaum</t></w>
<w><t>Mee-rut</t></w>
-<w><t>meet</t></w>
+<w><t>meet</t><verb><regular-root value="false"/></verb></w>
<w><t>meet-er</t></w>
<w><t>meet-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>meet-ing house</t></phrase>
<w><t>meet-ly</t></w>
<w><t>meet-ness</t></w>
+<w><t>meets</t><verb><regular-root value="false"/></verb></w>
<w><t>Me-fi-tis</t></w>
<w><t>Meg</t></w>
<w><t>meg-a-bit</t></w>
@@ -95726,7 +95728,7 @@
<w><t>mind-less-ness</t></w>
<w><t>Min-do-ro</t></w>
<w><t>Mind-szen-ty</t></w>
-<w><t>mine</t></w>
+<w><t>mine</t><noun><pluralizable/><convertible-to-possessive/></noun><pronoun/></w>
<phrase><t>mine de-tec-tor</t></phrase>
<w><t>mine-a-ble</t></w>
<w><t>mine-field</t></w>
@@ -97407,7 +97409,7 @@
<w><t>Monk</t></w>
<w><t>monk</t></w>
<w><t>monk-er-y</t></w>
-<w><t>mon-key</t></w>
+<w><t>mon-key</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>mon-key bread</t></phrase>
<phrase><t>mon-key busi-ness</t></phrase>
<phrase><t>mon-key flow-er</t></phrase>
@@ -97712,7 +97714,7 @@
<w><t>Mon-si-gno-ri</t></w>
<w><t>mon-soon</t></w>
<w><t>mon-soon-al</t></w>
-<w><t>mon-ster</t></w>
+<w><t>mon-ster</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>mon-strance</t></w>
<w><t>mon-stros-i-ty</t></w>
<w><t>mon-strous</t></w>
@@ -98117,7 +98119,7 @@
<phrase><t>mor-tal-i-ty rate</t></phrase>
<phrase><t>mor-tal-i-ty ta-ble</t></phrase>
<w><t>mor-tal-ly</t></w>
-<w><t>mor-tar</t></w>
+<w><t>mor-tar</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>mor-tar-board</t></w>
<w><t>mor-tar-less</t></w>
<w><t>mor-tar-y</t></w>
@@ -98357,7 +98359,7 @@
<w><t>Moul-mein</t></w>
<w><t>moult</t></w>
<w><t>Moul-trie</t></w>
-<w><t>mound</t></w>
+<w><t>mound</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Mound</t></w>
<phrase><t>Mound Build-er</t></phrase>
<w><t>mound=build-er</t></w>
@@ -99159,7 +99161,7 @@
<w><t>mus-ca-va-do</t></w>
<w><t>mus-cic-o-lous</t></w>
<w><t>mus-cid</t></w>
-<w><t>mus-cle</t></w>
+<w><t>mus-cle</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>mus-cle fi-bre</t></phrase>
<phrase><t>mus-cle sense</t></phrase>
<w><t>mus-cle=bound</t></w>
@@ -99240,7 +99242,7 @@
<w><t>mus-keg</t></w>
<w><t>Mus-ke-gon</t></w>
<w><t>mus-kel-lunge</t></w>
-<w><t>mus-ket</t></w>
+<w><t>mus-ket</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>mus-ket-eer</t></w>
<w><t>mus-ket-ry</t></w>
<w><t>Mus-kho-ge-an</t></w>
@@ -100006,7 +100008,7 @@
<w><t>nar-rat-er</t></w>
<w><t>nar-rat-ing</t></w>
<w><t>nar-ra-tion</t></w>
-<w><t>nar-ra-tive</t></w>
+<w><t>nar-ra-tive</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>nar-ra-tive-ly</t></w>
<w><t>nar-ra-tor</t></w>
<w><t>nar-row</t></w>
@@ -100199,7 +100201,7 @@
<w><t>nat-u-ral-ise</t></w>
<w><t>nat-u-ral-is-er</t></w>
<w><t>nat-u-ral-ism</t></w>
-<w><t>nat-u-ral-ist</t></w>
+<w><t>nat-u-ral-ist</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>nat-u-ral-is-tic</t></w>
<w><t>nat-u-ral-is-ti-cal-ly</t></w>
<w><t>nat-u-ral-i-za-tion</t></w>
@@ -100238,7 +100240,7 @@
<w><t>Na-u-ru</t></w>
<w><t>Na-u-ru-an</t></w>
<w><t>nau-se-a</t></w>
-<w><t>nau-se-ate</t></w>
+<w><t>nau-se-ate</t><verb><regular-root/></verb></w>
<w><t>nau-se-at-ed</t></w>
<w><t>nau-se-at-ing</t></w>
<w><t>nau-se-at-ing-ly</t></w>
@@ -100413,7 +100415,7 @@
<w><t>ne-ces-si-tude</t></w>
<w><t>ne-ces-si-ty</t></w>
<w><t>Ne-cho</t></w>
-<w><t>neck</t></w>
+<w><t>neck</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Neck-ar</t></w>
<w><t>neck-band</t></w>
<w><t>neck-cloth</t></w>
@@ -100583,7 +100585,7 @@
<w><t>ne-go-ti-a-ble</t></w>
<w><t>ne-go-ti-ant</t></w>
<w><t>ne-go-ti-ate</t><verb><regular-root/></verb></w>
-<w><t>ne-go-ti-a-tion</t></w>
+<w><t>ne-go-ti-a-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ne-go-ti-a-tor</t></w>
<w><t>Ne-gr</t></w>
<w><t>Ne-gress</t></w>
@@ -100955,7 +100957,7 @@
<w><t>ness-ler-ized</t></w>
<w><t>ness-ler-iz-ing</t></w>
<w><t>Nes-sus</t></w>
-<w><t>nest</t></w>
+<w><t>nest</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>nest-a-ble</t></w>
<w><t>nest-ed</t></w>
<w><t>nest-er</t></w>
@@ -107585,7 +107587,7 @@
<w><t>noth-ing</t></w>
<w><t>noth-ing-ness</t></w>
<w><t>no-thus</t></w>
-<w><t>no-tice</t></w>
+<w><t>no-tice</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>no-tice board</t></phrase>
<w><t>no-tice-a-bil-i</t></w>
<w><t>no-tice-a-ble</t></w>
@@ -107641,7 +107643,7 @@
<w><t>nou-me-nal-ly</t></w>
<w><t>nou-me-non</t></w>
<w><t>Nou-mé-a</t></w>
-<w><t>noun</t></w>
+<w><t>noun</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>noun-al-ly</t></w>
<w><t>nou-rice</t></w>
<w><t>nour-ish</t></w>
@@ -107667,7 +107669,7 @@
<w><t>no-va-tion</t></w>
<w><t>No-va-to</t></w>
<phrase><t>No-va-ya Zem-lya</t></phrase>
-<w><t>nov-el</t></w>
+<w><t>nov-el</t><noun><plural/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<w><t>nov-el-ese</t></w>
<w><t>nov-el-ette</t></w>
<w><t>nov-el-et-tish</t></w>
@@ -108411,7 +108413,7 @@
<w><t>ob-strep-er-ous</t></w>
<w><t>ob-strep-er-ous-ly</t></w>
<w><t>ob-strep-er-ous-ness</t></w>
-<w><t>ob-struct</t></w>
+<w><t>ob-struct</t><verb><regular-root/></verb></w>
<w><t>ob-struct-ed-ly</t></w>
<w><t>ob-struct-er</t></w>
<w><t>ob-struct-ing-ly</t></w>
@@ -108481,7 +108483,7 @@
<w><t>Oc-cam-is-tic</t></w>
<w><t>Oc-cam-ite</t></w>
<w><t>occas</t></w>
-<w><t>oc-ca-sion</t></w>
+<w><t>oc-ca-sion</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>oc-ca-sion-al</t></w>
<phrase><t>oc-ca-sion-al li-cence</t></phrase>
<phrase><t>oc-ca-sion-al ta-ble</t></phrase>
@@ -108490,7 +108492,6 @@
<w><t>oc-ca-sion-al-i-ty</t></w>
<w><t>oc-ca-sion-al-ly</t></w>
<w><t>oc-ca-sion-al-ness</t></w>
-<w><t>oc-ca-sions</t></w>
<w><t>Oc-ci-dent</t></w>
<w><t>oc-ci-dent</t></w>
<w><t>Oc-ci-den-tal</t></w>
@@ -108541,11 +108542,9 @@
<w><t>oc-cu-pi-a-ble</t></w>
<w><t>oc-cu-pi-er</t></w>
<w><t>oc-cu-py</t><verb><regular-root/></verb></w>
-<w><t>oc-cur</t></w>
-<w><t>oc-curred</t></w>
-<w><t>oc-cur-rence</t></w>
+<w><t>oc-cur</t><verb><regular-root/></verb></w>
+<w><t>oc-cur-rence</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>oc-cur-rent</t></w>
-<w><t>oc-cur-ring</t></w>
<w><t>o-cean</t></w>
<phrase><t>o-cean grey-hound</t></phrase>
<phrase><t>O-cean of Storms</t></phrase>
@@ -109951,7 +109950,7 @@
<w><t>or-bic-u-lat-ed</t></w>
<w><t>or-bic-u-late-ly</t></w>
<w><t>or-bic-u-la-tion</t></w>
-<w><t>or-bit</t></w>
+<w><t>or-bit</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>or-bit-al</t></w>
<phrase><t>or-bit-al ve-loc-i-ty</t></phrase>
<w><t>or-bi-ta-le</t></w>
@@ -110229,7 +110228,7 @@
<w><t>Or-mond</t></w>
<w><t>Or-muz</t></w>
<w><t>Or-muzd</t></w>
-<w><t>or-na-ment</t></w>
+<w><t>or-na-ment</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>or-na-men-tal</t></w>
<w><t>or-na-men-tal-i-ty</t></w>
<w><t>or-na-men-tal-ly</t></w>
@@ -110572,9 +110571,10 @@
<w><t>os-ten-so-ri-a</t></w>
<w><t>os-ten-so-ri-um</t></w>
<w><t>os-ten-so-ry</t></w>
-<w><t>os-ten-ta-tion</t></w>
-<w><t>os-ten-ta-tious-ly</t></w>
-<w><t>os-ten-ta-tious-ness</t></w>
+<w><t>os-ten-ta-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>os-ten-ta-tious</t><adjective><extensible value="false"/></adjective></w>
+<w><t>os-ten-ta-tious-ly</t><adverb/></w>
+<w><t>os-ten-ta-tious-ness</t><noun/></w>
<w><t>os-te-o-ar-thri-tis</t></w>
<w><t>os-te-o-blast</t></w>
<w><t>os-te-o-blas-tic</t></w>
@@ -111189,7 +111189,7 @@
<w><t>out-li-er</t></w>
<w><t>out-light-en</t></w>
<w><t>out-limn</t></w>
-<w><t>out-line</t></w>
+<w><t>out-line</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>out-lined</t></w>
<w><t>out-lin-ger</t></w>
<w><t>out-lin-ing</t></w>
@@ -112892,7 +112892,7 @@
<w><t>o-ver-log-i-cal</t></w>
<w><t>o-ver-log-i-cal-i-ty</t></w>
<w><t>o-ver-long</t></w>
-<w><t>o-ver-look</t></w>
+<w><t>o-ver-look</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>o-ver-look-er</t></w>
<w><t>o-ver-loose</t></w>
<w><t>o-ver-lord</t></w>
@@ -113818,7 +113818,7 @@
<w><t>owl-ish-ness</t></w>
<w><t>owl-like</t></w>
<w><t>own</t></w>
-<w><t>own-er</t></w>
+<w><t>own-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>own-er-ship</t></w>
<w><t>O-wos-so</t></w>
<w><t>owse</t></w>
@@ -114540,7 +114540,7 @@
<w><t>pal-li-um</t></w>
<w><t>pal-lor</t></w>
<w><t>pal-ly</t></w>
-<w><t>palm</t></w>
+<w><t>palm</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>palm civ-et</t></phrase>
<phrase><t>palm sug-ar</t></phrase>
<phrase><t>Palm Sun-day</t></phrase>
@@ -115144,7 +115144,7 @@
<w><t>par-a-cu-sis</t></w>
<w><t>par-a-cy-e-sis</t></w>
<w><t>par-a-cys-ti-tis</t></w>
-<w><t>pa-rade</t></w>
+<w><t>pa-rade</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pa-rade-ful</t></w>
<w><t>pa-rade-less</t></w>
<w><t>pa-rade-like</t></w>
@@ -115731,9 +115731,10 @@
<w><t>part=tim-er</t></w>
<w><t>part=writ-ing</t></w>
<w><t>par-tak-a-ble</t></w>
-<w><t>par-take</t></w>
+<w><t>par-take</t><verb><regular-root value="false"/></verb></w>
<w><t>par-tak-en</t></w>
<w><t>par-tak-er</t></w>
+<w><t>par-takes</t><verb><regular-root value="false"/></verb></w>
<w><t>par-tak-ing</t></w>
<w><t>par-tan</t></w>
<w><t>part-ed</t></w>
@@ -115788,7 +115789,7 @@
<w><t>par-ti-cip-i-al-i-za-tion</t></w>
<w><t>par-ti-cip-i-al-ly</t></w>
<w><t>par-ti-ci-ple</t></w>
-<w><t>par-ti-cle</t></w>
+<w><t>par-ti-cle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>par-ti-cle sep-ar-a-tion</t></phrase>
<w><t>par-ti-cle-cel-er-a-tor</t></w>
<w><t>par-tic-u-lar</t><noun><pluralizable/></noun><adjective/></w>
@@ -115833,7 +115834,7 @@
<w><t>part-ners</t></w>
<w><t>part-ner-ship</t></w>
<w><t>par-ton</t></w>
-<w><t>par-took</t></w>
+<w><t>par-took</t><verb><regular-root value="false"/></verb></w>
<w><t>par-tridge</t></w>
<w><t>par-tridge=wood</t></w>
<w><t>par-tridge-ber-ry</t></w>
@@ -115961,7 +115962,7 @@
<phrase><t>pass-ing tone</t></phrase>
<w><t>pass-ing-ly</t></w>
<w><t>pass-ing-ness</t></w>
-<w><t>pas-sion</t></w>
+<w><t>pas-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Pas-sion</t></w>
<phrase><t>pas-sion fruit</t></phrase>
<phrase><t>Pas-sion play</t></phrase>
@@ -116499,7 +116500,7 @@
<w><t>peag</t></w>
<w><t>peage</t></w>
<w><t>pea-hen</t></w>
-<w><t>peak</t></w>
+<w><t>peak</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Peak Dis-trict</t></phrase>
<w><t>Peake</t></w>
<w><t>peaked</t></w>
@@ -117756,7 +117757,7 @@
<w><t>per-i-scope</t></w>
<w><t>per-i-scop-ic</t></w>
<w><t>per-i-scop-i-cal</t></w>
-<w><t>per-ish</t></w>
+<w><t>per-ish</t><verb><regular-root/></verb></w>
<w><t>per-ish-a-bil-i-ty</t></w>
<w><t>per-ish-a-ble</t></w>
<w><t>per-ish-a-ble-ness</t></w>
@@ -119254,7 +119255,7 @@
<w><t>phr</t></w>
<w><t>phras-al</t></w>
<phrase><t>phras-al verb</t></phrase>
-<w><t>phrase</t></w>
+<w><t>phrase</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>phrase mark-er</t></phrase>
<phrase><t>phrase=struc-ture rule</t></phrase>
<w><t>phra-se-o-gram</t></w>
@@ -119836,7 +119837,7 @@
<w><t>pil-lage</t></w>
<w><t>pil-laged</t></w>
<w><t>pil-lag-ing</t></w>
-<w><t>pil-lar</t></w>
+<w><t>pil-lar</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pil-lar box</t></phrase>
<w><t>pil-lar=and=breast</t></w>
<w><t>pil-lared</t></w>
@@ -120250,7 +120251,7 @@
<w><t>pitch-a-ble</t></w>
<w><t>pitch-blende</t></w>
<phrase><t>pitched bat-tle</t></phrase>
-<w><t>pitch-er</t></w>
+<w><t>pitch-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pitch-er plant</t></phrase>
<w><t>pitch-er-ful</t></w>
<w><t>pitch-er-like</t></w>
@@ -120641,7 +120642,7 @@
<w><t>Pla-ta-nis-ti-us</t></w>
<w><t>plat-band</t></w>
<w><t>Plate</t></w>
-<w><t>plate</t></w>
+<w><t>plate</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>plate ar-mour</t></phrase>
<phrase><t>plate tec-ton-ics</t></phrase>
<w><t>plat-eau</t></w>
@@ -121212,6 +121213,7 @@
<w><t>pneu-mo-no-ul-tra-mi-cro-scop-ic-sil-i-co-vol-ca-no-co-ni-o-sis</t></w>
<w><t>pneu-mo-no-ul-tra-mi-cro-scop-ic-sil-i-co-vol-ca-no-ko-ni-o-sis</t></w>
<w><t>pneu-mo-tho-rax</t></w>
+<w><t>Po</t><noun><convertible-to-possessive/></noun></w>
<w><t>po-a-ceous</t></w>
<w><t>poach</t></w>
<w><t>poach-a-ble</t></w>
@@ -122397,8 +122399,7 @@
<w><t>poss</t></w>
<w><t>pos-se</t></w>
<phrase><t>pos-se co-mi-ta-tus</t></phrase>
-<w><t>pos-sess</t></w>
-<w><t>pos-sessed</t></w>
+<w><t>pos-sess</t><verb><regular-root/></verb></w>
<w><t>pos-ses-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pos-ses-sive</t></w>
<w><t>pos-ses-sive-ness</t></w>
@@ -122413,7 +122414,7 @@
<w><t>pos-sie</t></w>
<w><t>pos-sum</t></w>
<w><t>pos-sy</t></w>
-<w><t>post</t></w>
+<w><t>post</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>post ex-change</t></phrase>
<phrase><t>post me-rid-i-em</t></phrase>
<phrase><t>post of-fice</t></phrase>
@@ -122899,7 +122900,7 @@
<w><t>post-zyg-ap-o-phys-e-al</t></w>
<w><t>post-zyg-ap-o-phys-i-al</t></w>
<w><t>po-sy</t></w>
-<w><t>pot</t></w>
+<w><t>pot</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pot liq-uor</t></phrase>
<phrase><t>pot mar-i-gold</t></phrase>
<w><t>pot=liq-uor</t></w>
@@ -123066,7 +123067,7 @@
<w><t>pounc-ing</t></w>
<w><t>pounc-ing-ly</t></w>
<w><t>Pound</t></w>
-<w><t>pound</t></w>
+<w><t>pound</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pound=fool-ish</t></w>
<w><t>pound-age</t></w>
<w><t>pound-al</t></w>
@@ -123827,7 +123828,7 @@
<w><t>pre-cen-tor</t></w>
<w><t>pre-cen-to-ri-al</t></w>
<w><t>pre-cen-tor-ship</t></w>
-<w><t>pre-cept</t></w>
+<w><t>pre-cept</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pre-cep-tive</t></w>
<w><t>pre-cep-tive-ly</t></w>
<w><t>pre-cep-tor</t></w>
@@ -124947,7 +124948,7 @@
<w><t>pre-fec-tur-al</t></w>
<w><t>pre-fec-ture</t></w>
<w><t>pre-fec-un-da-tion</t></w>
-<w><t>pre-fer</t></w>
+<w><t>pre-fer</t><verb><regular-root/></verb></w>
<w><t>pref-er-a-bil-i-ty</t></w>
<w><t>pref-er-a-ble</t></w>
<w><t>pref-er-a-ble-ness</t></w>
@@ -127745,7 +127746,7 @@
<w><t>pro-in-ter-ven-tion</t></w>
<w><t>pro-in-vest-ment</t></w>
<w><t>pro-ir-ri-ga-tion</t></w>
-<w><t>proj-ect</t></w>
+<w><t>proj-ect</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pro-ject-a-ble</t></w>
<w><t>pro-jec-tile</t></w>
<w><t>pro-ject-ing-ly</t></w>
@@ -127895,7 +127896,7 @@
<w><t>pro-mon-ar-chy</t></w>
<w><t>pro-mo-nop-o-lis-tic</t></w>
<w><t>pro-mo-nop-o-ly</t></w>
-<w><t>prom-on-to-ry</t></w>
+<w><t>prom-on-to-ry</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pro-mote</t></w>
<w><t>pro-mot-ed</t></w>
<w><t>pro-mot-er</t></w>
@@ -128359,8 +128360,8 @@
<w><t>pro-tec-tor-ship</t></w>
<w><t>pro-tec-to-ry</t></w>
<w><t>pro-tec-tress</t></w>
-<w><t>pro-te-ge</t></w>
-<w><t>pro-te-gee</t></w>
+<w><t>pro-te-ge</t><noun><masculine/></noun></w>
+<w><t>pro-te-gee</t><noun><feminine/></noun></w>
<w><t>pro-teid</t></w>
<w><t>pro-te-i-form</t></w>
<w><t>pro-tein</t></w>
@@ -128522,6 +128523,7 @@
<w><t>pro-tu-ran</t></w>
<w><t>pro-tyl</t></w>
<w><t>pro-tyle</t></w>
+<w><t>pro-té-gé</t></w>
<w><t>pro-té-gée</t></w>
<w><t>proud</t></w>
<w><t>Prou-dhon</t></w>
@@ -128564,10 +128566,10 @@
<w><t>prov-erb-like</t></w>
<w><t>Prov-erbs</t></w>
<w><t>pro-vid-a-ble</t></w>
-<w><t>pro-vide</t></w>
+<w><t>pro-vide</t><verb><regular-root/></verb></w>
<w><t>pro-vid-ed</t></w>
<w><t>Prov-i-dence</t></w>
-<w><t>prov-i-dence</t></w>
+<w><t>prov-i-dence</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>prov-i-dent</t></w>
<phrase><t>prov-i-dent club</t></phrase>
<phrase><t>prov-i-dent so-ci-e-ty</t></phrase>
@@ -129432,7 +129434,7 @@
<w><t>pub-lic=spir-it-ed</t></w>
<w><t>pub-lic=u-til-i-ty</t></w>
<w><t>pub-li-can</t></w>
-<w><t>pub-li-ca-tion</t></w>
+<w><t>pub-li-ca-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pub-li-cise</t></w>
<w><t>pub-li-cist</t></w>
<w><t>pub-lic-i-ty</t></w>
@@ -133428,8 +133430,7 @@
<w><t>re-ceiv-a-bil-i-ty</t></w>
<w><t>re-ceiv-a-ble</t></w>
<w><t>re-ceiv-a-ble-ness</t></w>
-<w><t>re-ceive</t></w>
-<w><t>re-ceived</t></w>
+<w><t>re-ceive</t><verb><regular-root/></verb></w>
<phrase><t>Re-ceived Pro-nun-ci-a-tion</t></phrase>
<w><t>re-ceiv-er</t></w>
<w><t>re-ceiv-er-ship</t></w>
@@ -134807,9 +134808,7 @@
<w><t>re-fur-nish</t></w>
<w><t>re-fus-a-ble</t></w>
<w><t>re-fus-al</t></w>
-<w><t>ref-use</t></w>
-<w><t>re-fuse</t></w>
-<w><t>re-fused</t></w>
+<w><t>ref-use</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>re-fus-er</t></w>
<w><t>re-fus-ing</t></w>
<w><t>re-fu-ta-bil-i-ty</t></w>
@@ -135611,7 +135610,7 @@
<w><t>re-light-ing</t></w>
<w><t>re-li-gieuse</t></w>
<w><t>re-li-gieux</t></w>
-<w><t>re-li-gion</t></w>
+<w><t>re-li-gion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-li-gion-ism</t></w>
<w><t>re-li-gion-ist</t></w>
<w><t>re-li-gion-is-tic</t></w>
@@ -135715,7 +135714,8 @@
<w><t>re-mapped</t></w>
<w><t>re-map-ping</t></w>
<w><t>re-mark</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
-<w><t>re-mark-a-ble</t></w>
+<w><t>re-mark-a-ble</t><adjective><extensible value="false"/></adjective></w>
+<w><t>re-mark-a-bly</t><adverb/></w>
<w><t>re-mark-er</t></w>
<w><t>re-mar-ket</t></w>
<w><t>Re-marque</t></w>
@@ -135921,7 +135921,7 @@
<w><t>re-mu-ner-a-bil-i-ty</t></w>
<w><t>re-mu-ner-a-ble</t></w>
<w><t>re-mu-ner-a-bly</t></w>
-<w><t>re-mu-ner-ate</t></w>
+<w><t>re-mu-ner-ate</t><verb><regular-root/></verb></w>
<w><t>re-mu-ner-a-tion</t></w>
<w><t>re-mu-ner-a-tive</t></w>
<w><t>re-mu-ner-a-tive-ly</t></w>
@@ -135956,7 +135956,7 @@
<w><t>re-nav-i-ga-tion</t></w>
<w><t>ren-con-tre</t></w>
<w><t>rend</t></w>
-<w><t>rend-er</t></w>
+<w><t>rend-er</t><verb><regular-root/></verb></w>
<w><t>ren-der</t></w>
<w><t>ren-der-a-ble</t></w>
<w><t>ren-der-er</...
[truncated message content] |
|
From: <vic...@us...> - 2022-06-26 19:49:37
|
Revision: 12692
http://sourceforge.net/p/foray/code/12692
Author: victormote
Date: 2022-06-26 19:49:34 +0000 (Sun, 26 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-06-25 15:23:29 UTC (rev 12691)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-06-26 19:49:34 UTC (rev 12692)
@@ -8,6 +8,9 @@
soft-hyphen-char="-">
<w><t>hum-bleth</t></w>
+<w><t>Kal-a-bar</t></w><!-- Calabar -->
+<w><t>Kam-e-run</t></w><!-- Cameroon -->
+<w><t>Kam-e-runs</t></w><!-- Related to Cameroon -->
<w><t>lov-eth</t></w>
<w><t>oth-er-ways</t><adjective/><adverb/></w>
<w><t>per-suad-est</t><verb/></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-25 15:23:29 UTC (rev 12691)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-26 19:49:34 UTC (rev 12692)
@@ -441,7 +441,7 @@
<w><t>ab-o-rig-i-nal-i-ty</t></w>
<w><t>ab-o-rig-i-nal-ly</t></w>
<w><t>Ab-o-rig-i-ne</t></w>
-<w><t>ab-o-rig-i-ne</t></w>
+<w><t>ab-o-rig-i-ne</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>a-born-ing</t></w>
<w><t>a-bort</t></w>
<w><t>a-bor-ti-cide</t></w>
@@ -1993,7 +1993,7 @@
<w><t>ad-mi-ra-ble</t></w>
<w><t>ad-mi-ra-ble-ness</t></w>
<w><t>ad-mi-ra-bly</t></w>
-<w><t>ad-mi-ral</t></w>
+<w><t>ad-mi-ral</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ad-mi-ral</t></w>
<w><t>ad-mi-ral-ship</t></w>
<w><t>ad-mi-ral-ty</t></w>
@@ -2720,7 +2720,7 @@
<w><t>a-fresh</t></w>
<w><t>Af-ric</t></w>
<w><t>Af-ri-ca</t></w>
-<w><t>Af-ri-can</t></w>
+<w><t>Af-ri-can</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<phrase><t>Af-ri-can lil-y</t></phrase>
<phrase><t>Af-ri-can ma-hog-a-ny</t></phrase>
<phrase><t>Af-ri-can vi-o-let</t></phrase>
@@ -2868,7 +2868,7 @@
<w><t>A-ga-ña</t></w>
<w><t>ag-ba</t></w>
<w><t>agcy</t></w>
-<w><t>age</t></w>
+<w><t>age</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>age har-den-ing</t></phrase>
<phrase><t>age of con-sent</t></phrase>
<phrase><t>Age of Rea-son</t></phrase>
@@ -5020,7 +5020,7 @@
<w><t>a-merc-ing</t></w>
<w><t>A-mer-i-ca</t></w>
<phrase><t>A-mer-i-ca's Cup</t></phrase>
-<w><t>A-mer-i-can</t></w>
+<w><t>A-mer-i-can</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>A-mer-i-can al-oe</t></phrase>
<phrase><t>A-mer-i-can Beau-ty</t></phrase>
<phrase><t>A-mer-i-can cha-me-le-on</t></phrase>
@@ -5859,7 +5859,7 @@
<w><t>an-ba</t></w>
<w><t>an-bur-y</t></w>
<w><t>An-cae-us</t></w>
-<w><t>an-ces-tor</t></w>
+<w><t>an-ces-tor</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>an-ces-tral</t></w>
<w><t>an-ces-tral-ly</t></w>
<w><t>an-ces-tress</t></w>
@@ -5868,7 +5868,7 @@
<w><t>An-chi-a-le</t></w>
<w><t>An-chin-o-ë</t></w>
<w><t>An-chi-ses</t></w>
-<w><t>an-chor</t></w>
+<w><t>an-chor</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>an-chor man</t></phrase>
<phrase><t>an-chor ring</t></phrase>
<w><t>an-chor-a-ble</t></w>
@@ -6539,7 +6539,7 @@
<w><t>an-no-ta-tor</t></w>
<w><t>an-no-ta-to-ry</t></w>
<w><t>an-not-i-nous</t></w>
-<w><t>an-nounce</t></w>
+<w><t>an-nounce</t><verb><regular-root/></verb></w>
<w><t>an-nounce-a-ble</t></w>
<w><t>an-nounced</t></w>
<w><t>an-nounce-ment</t></w>
@@ -10096,6 +10096,7 @@
<w><t>A-si-at-i-cal-ly</t></w>
<w><t>a-side</t></w>
<w><t>a-sid-er-ite</t></w>
+<w><t>asien-to</t></w>
<w><t>A-si-ne</t></w>
<w><t>as-i-nine</t></w>
<w><t>as-i-nine-ly</t></w>
@@ -10136,7 +10137,7 @@
<phrase><t>as-par-tic ac-id</t></phrase>
<w><t>As-pa-sia</t></w>
<w><t>A-spa-si-a</t></w>
-<w><t>as-pect</t></w>
+<w><t>as-pect</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>as-pect ra-ti-o</t></phrase>
<w><t>as-pec-tant</t></w>
<w><t>as-pec-tu-al</t></w>
@@ -10304,6 +10305,7 @@
<w><t>as-sid-u-ous</t></w>
<w><t>as-sid-u-ous-ly</t></w>
<w><t>as-sid-u-ous-ness</t></w>
+<w><t>assien-to</t></w>
<w><t>as-sign</t><verb><regular-root/></verb></w>
<w><t>as-sign-a-bil-i-ty</t></w>
<w><t>as-sign-a-ble</t></w>
@@ -10383,7 +10385,7 @@
<w><t>As-su-er-us</t></w>
<w><t>as-sum-a-ble</t></w>
<w><t>as-sum-a-bly</t></w>
-<w><t>as-sume</t></w>
+<w><t>as-sume</t><verb><regular-root/></verb></w>
<w><t>as-sumed</t></w>
<w><t>as-sum-ed-ly</t></w>
<w><t>as-sum-er</t></w>
@@ -10938,7 +10940,7 @@
<w><t>at-tend-ance</t></w>
<phrase><t>at-tend-ance al-low-ance</t></phrase>
<phrase><t>at-tend-ance cen-tre</t></phrase>
-<w><t>at-tend-ant</t></w>
+<w><t>at-tend-ant</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<w><t>at-tend-ant-ly</t></w>
<w><t>at-tend-er</t></w>
<w><t>at-tend-ing</t></w>
@@ -11397,7 +11399,7 @@
<w><t>au-thor-i-ta-tive</t></w>
<w><t>au-thor-i-ta-tive-ly</t></w>
<w><t>au-thor-i-ta-tive-ness</t></w>
-<w><t>au-thor-i-ty</t></w>
+<w><t>au-thor-i-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>au-thor-iz-a-ble</t></w>
<w><t>au-thor-i-za-tion</t></w>
<w><t>au-thor-ize</t></w>
@@ -11654,7 +11656,7 @@
<w><t>A-va</t></w>
<w><t>a-va'</t></w>
<w><t>av-a-da-vat</t></w>
-<w><t>a-vail</t></w>
+<w><t>a-vail</t><verb><regular-root/></verb></w>
<w><t>a-vail-a-bil-i-ty</t></w>
<w><t>a-vail-a-ble</t></w>
<w><t>a-vail-a-ble-ness</t></w>
@@ -13564,7 +13566,7 @@
<w><t>bar-rack</t></w>
<w><t>bar-rack-er</t></w>
<w><t>bar-racks</t></w>
-<w><t>bar-ra-coon</t></w>
+<w><t>bar-ra-coon</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>bar-ra-cou-ta</t></w>
<w><t>bar-ra-cu-da</t></w>
<w><t>bar-ra-cu-di-na</t></w>
@@ -14772,7 +14774,7 @@
<w><t>Bei-der-becke</t></w>
<w><t>beige</t></w>
<w><t>bei-gel</t></w>
-<w><t>be-ing</t></w>
+<w><t>be-ing</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
<w><t>Bei-ra</t></w>
<w><t>Bei-rut</t></w>
<w><t>be-jab-bers</t></w>
@@ -18330,7 +18332,7 @@
<w><t>bor-del-lo</t></w>
<w><t>Bor-den</t></w>
<w><t>Bor-den-town</t></w>
-<w><t>bor-der</t></w>
+<w><t>bor-der</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Bor-der</t></w>
<phrase><t>bor-der ter-ri-er</t></phrase>
<w><t>bor-de-reau</t></w>
@@ -19683,7 +19685,7 @@
<w><t>brine-less</t></w>
<phrase><t>Bri-nell num-ber</t></phrase>
<w><t>brin-er</t></w>
-<w><t>bring</t></w>
+<w><t>bring</t><verb><regular-root value="false"/></verb></w>
<w><t>Br-ing</t></w>
<phrase><t>bring a-bout</t></phrase>
<phrase><t>bring for-ward</t></phrase>
@@ -19691,6 +19693,7 @@
<w><t>bring-er</t></w>
<w><t>bring-ing</t></w>
<w><t>bring-ing=up</t></w>
+<w><t>brings</t><verb><regular-root value="false"/></verb></w>
<w><t>brin-i-er</t></w>
<w><t>brin-i-est</t></w>
<w><t>brin-i-ness</t></w>
@@ -21801,7 +21804,7 @@
<w><t>ca-lam-i-tous</t></w>
<w><t>ca-lam-i-tous-ly</t></w>
<w><t>ca-lam-i-tous-ness</t></w>
-<w><t>ca-lam-i-ty</t></w>
+<w><t>ca-lam-i-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cal-a-mon-din</t></w>
<phrase><t>cal-a-mon-din or-ange</t></phrase>
<w><t>cal-a-mus</t></w>
@@ -22641,7 +22644,7 @@
<w><t>Can-nu-late</t></w>
<w><t>can-nu-la-tion</t></w>
<w><t>can-ny</t></w>
-<w><t>ca-noe</t></w>
+<w><t>ca-noe</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ca-noed</t></w>
<w><t>ca-noe-ing</t></w>
<w><t>ca-noe-ist</t></w>
@@ -23023,7 +23026,7 @@
<w><t>cap-tiv-i-ty</t></w>
<w><t>cap-tor</t></w>
<w><t>cap-tur-a-ble</t></w>
-<w><t>cap-ture</t></w>
+<w><t>cap-ture</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>cap-tured</t></w>
<w><t>cap-tur-er</t></w>
<w><t>cap-tur-ing</t></w>
@@ -23032,7 +23035,7 @@
<w><t>Cap-u-a-nus</t></w>
<w><t>ca-puche</t></w>
<w><t>ca-puched</t></w>
-<w><t>cap-u-chin</t></w>
+<w><t>cap-u-chin</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Cap-u-chin</t></w>
<w><t>Cap-u-let</t></w>
<w><t>ca-put</t></w>
@@ -23999,7 +24002,7 @@
<w><t>cas-ti-gate</t></w>
<w><t>cas-ti-gat-ed</t></w>
<w><t>cas-ti-gat-ing</t></w>
-<w><t>cas-ti-ga-tion</t></w>
+<w><t>cas-ti-ga-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cas-ti-ga-tive</t></w>
<w><t>cas-ti-ga-tor</t></w>
<w><t>cas-ti-ga-to-ry</t></w>
@@ -24348,8 +24351,8 @@
<w><t>cath-o-do=lu-mi-nes-cent</t></w>
<w><t>cath-o-do-lu-mi-nes-cence</t></w>
<w><t>cath-o-do-lu-mi-nes-cent</t></w>
-<w><t>Cath-o-lic</t></w>
-<w><t>cath-o-lic</t></w>
+<w><t>Cath-o-lic</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>cath-o-lic</t><adjective><extensible value="false"/></adjective></w>
<phrase><t>Cath-o-lic Church</t></phrase>
<phrase><t>Cath-o-lic E-pis-tles</t></phrase>
<w><t>ca-thol-i-cal-ly</t></w>
@@ -25065,7 +25068,7 @@
<w><t>cen-tu-ri-al</t></w>
<w><t>cen-tu-ried</t></w>
<w><t>cen-tu-ri-on</t></w>
-<w><t>cen-tu-ry</t></w>
+<w><t>cen-tu-ry</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>cen-tu-ry plant</t></phrase>
<w><t>ceorl</t></w>
<w><t>ceorl-ish</t></w>
@@ -25177,7 +25180,7 @@
<w><t>cer-e-mo-ni-ous</t></w>
<w><t>cer-e-mo-ni-ous-ly</t></w>
<w><t>cer-e-mo-ni-ous-ness</t></w>
-<w><t>cer-e-mo-ny</t></w>
+<w><t>cer-e-mo-ny</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Ce-ren-kov</t></w>
<w><t>cer-e-ous</t></w>
<w><t>Ce-res</t></w>
@@ -25393,7 +25396,7 @@
<w><t>Chai-kov-ski</t></w>
<w><t>Cha-im</t></w>
<w><t>Chain</t></w>
-<w><t>chain</t></w>
+<w><t>chain</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>chain let-ter</t></phrase>
<phrase><t>chain light-ning</t></phrase>
<phrase><t>chain print-er</t></phrase>
@@ -25579,7 +25582,7 @@
<w><t>Cham-y-ne</t></w>
<w><t>Cha-naan</t></w>
<w><t>Chanc</t></w>
-<w><t>chance</t></w>
+<w><t>chance</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>chance=med-ley</t></w>
<w><t>chance-ful</t></w>
<w><t>chance-ful-ly</t></w>
@@ -25943,7 +25946,7 @@
<w><t>char-ta</t></w>
<w><t>chart-a-ble</t></w>
<w><t>char-ta-ceous</t></w>
-<w><t>char-ter</t></w>
+<w><t>char-ter</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>char-ter col-o-ny</t></phrase>
<phrase><t>char-ter mem-ber</t></phrase>
<phrase><t>char-ter par-ty</t></phrase>
@@ -25981,7 +25984,7 @@
<w><t>Cha-ryb-dis</t></w>
<w><t>char-à-cin</t></w>
<w><t>Chase</t></w>
-<w><t>chase</t></w>
+<w><t>chase</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>chase-a-ble</t></w>
<w><t>chas-er</t></w>
<w><t>cha-shit-su</t></w>
@@ -26567,7 +26570,7 @@
<w><t>chid-ed</t></w>
<w><t>chid-er</t></w>
<w><t>chid-ing-ly</t></w>
-<w><t>chief</t></w>
+<w><t>chief</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Chief Ed-u-ca-tion Of-fic-er</t></phrase>
<phrase><t>chief jus-tice</t></phrase>
<phrase><t>chief pet-ty of-fic-er</t></phrase>
@@ -27913,7 +27916,7 @@
<w><t>cir-ci-nate</t></w>
<w><t>cir-ci-nate-ly</t></w>
<w><t>Cir-ci-nus</t></w>
-<w><t>cir-cle</t></w>
+<w><t>cir-cle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cir-cle=in</t></w>
<w><t>cir-cle=out</t></w>
<w><t>cir-cler</t></w>
@@ -29090,7 +29093,7 @@
<w><t>cloy-ing-ly</t></w>
<w><t>cloy-ing-ness</t></w>
<w><t>Clo-ë</t></w>
-<w><t>club</t></w>
+<w><t>club</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>club sand-wich</t></phrase>
<w><t>club-a-bil-i-ty</t></w>
<w><t>club-a-ble</t></w>
@@ -30205,7 +30208,7 @@
<w><t>col-on-nad-ed</t></w>
<w><t>Col-on-say</t></w>
<w><t>co-lo-nus</t></w>
-<w><t>col-o-ny</t></w>
+<w><t>col-o-ny</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Col-o-phon</t></w>
<w><t>col-o-phon</t></w>
<w><t>Col-o-pho-ni-an</t></w>
@@ -30519,7 +30522,7 @@
<phrase><t>com-ma but-ter-fly</t></phrase>
<w><t>Com-mack</t></w>
<w><t>Com-ma-ger</t></w>
-<w><t>com-mand</t></w>
+<w><t>com-mand</t><verb><regular-root/></verb></w>
<phrase><t>com-mand guid-ance</t></phrase>
<phrase><t>com-mand mod-ule</t></phrase>
<phrase><t>com-mand pa-per</t></phrase>
@@ -30848,7 +30851,7 @@
<w><t>com-pand-er</t></w>
<w><t>com-pan-der</t></w>
<w><t>com-pa-nied</t></w>
-<w><t>com-pan-ion</t></w>
+<w><t>com-pan-ion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>com-pan-ion set</t></phrase>
<w><t>com-pan-ion-a-bil-i-ty</t></w>
<w><t>com-pan-ion-a-ble</t></w>
@@ -31476,7 +31479,7 @@
<w><t>con-cu-bi-nage</t></w>
<w><t>con-cu-bi-nar-ies</t></w>
<w><t>con-cu-bi-nar-y</t></w>
-<w><t>con-cu-bine</t></w>
+<w><t>con-cu-bine</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>con-cu-pis-cence</t></w>
<w><t>con-cu-pis-cent</t></w>
<w><t>con-cu-pis-ci-ble</t></w>
@@ -31494,7 +31497,7 @@
<w><t>con-cyc-lic</t></w>
<w><t>Con-d</t></w>
<w><t>Con-da-mine</t></w>
-<w><t>con-demn</t></w>
+<w><t>con-demn</t><verb><regular-root/></verb></w>
<w><t>con-dem-na-ble</t></w>
<w><t>con-dem-na-bly</t></w>
<w><t>con-dem-na-tion</t></w>
@@ -32349,7 +32352,7 @@
<w><t>con-string-ing</t></w>
<w><t>con-stru-a-bil-i-ty</t></w>
<w><t>con-stru-a-ble</t></w>
-<w><t>con-struct</t></w>
+<w><t>con-struct</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>con-struct-er</t></w>
<w><t>con-struct-i-ble</t></w>
<w><t>con-struc-tion</t></w>
@@ -32836,7 +32839,7 @@
<w><t>con-ven-ient-ly</t></w>
<w><t>con-ven-ing</t></w>
<w><t>con-ven-or</t></w>
-<w><t>con-vent</t></w>
+<w><t>con-vent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>con-ven-ti-cle</t></w>
<w><t>con-ven-ti-cler</t></w>
<w><t>con-ven-tic-u-lar</t></w>
@@ -32891,7 +32894,7 @@
<w><t>con-ver-sion-al</t></w>
<w><t>con-ver-sion-ar-y</t></w>
<w><t>con-ver-sus</t></w>
-<w><t>con-vert</t></w>
+<w><t>con-vert</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>con-vert-a-plane</t></w>
<w><t>con-ver-ta-plane</t></w>
<w><t>con-vert-ed</t></w>
@@ -32930,7 +32933,7 @@
<w><t>con-vey-or-ized</t></w>
<w><t>con-vey-or-iz-er</t></w>
<w><t>con-vey-or-iz-ing</t></w>
-<w><t>con-vict</t></w>
+<w><t>con-vict</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>con-vict-a-ble</t></w>
<w><t>con-vict-fish</t></w>
<w><t>con-vict-fish-es</t></w>
@@ -34338,7 +34341,7 @@
<w><t>count-less</t></w>
<w><t>coun-tri-fied</t></w>
<w><t>coun-tri-fied-ness</t></w>
-<w><t>coun-try</t></w>
+<w><t>coun-try</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<phrase><t>coun-try club</t></phrase>
<phrase><t>coun-try cous-in</t></phrase>
<phrase><t>coun-try dance</t></phrase>
@@ -34440,7 +34443,7 @@
<w><t>cour-te-zan</t></w>
<w><t>court-house</t></w>
<w><t>court-hous-es</t></w>
-<w><t>cour-ti-er</t></w>
+<w><t>cour-ti-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Court-land</t></w>
<w><t>court-li-er</t></w>
<w><t>court-li-est</t></w>
@@ -35730,7 +35733,7 @@
<w><t>crow-keep-er</t></w>
<w><t>Crow-ley</t></w>
<w><t>Crown</t></w>
-<w><t>crown</t></w>
+<w><t>crown</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>Crown A-gent</t></phrase>
<phrase><t>crown and an-chor</t></phrase>
<phrase><t>crown col-o-ny</t></phrase>
@@ -35771,7 +35774,7 @@
<w><t>cru-ci-fi-cial</t></w>
<w><t>cru-ci-fied</t></w>
<w><t>cru-ci-fi-er</t></w>
-<w><t>cru-ci-fix</t></w>
+<w><t>cru-ci-fix</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cru-ci-fix-ion</t></w>
<w><t>Cru-ci-fix-ion</t></w>
<w><t>cru-ci-form</t></w>
@@ -35794,7 +35797,7 @@
<w><t>cru-el-heart-ed</t></w>
<w><t>cru-el-ly</t></w>
<w><t>cru-el-ness</t></w>
-<w><t>cru-el-ty</t></w>
+<w><t>cru-el-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cru-et</t></w>
<w><t>Cruik-shank</t></w>
<w><t>cruise</t></w>
@@ -39873,7 +39876,7 @@
<w><t>de-not-ing</t></w>
<w><t>de-no-tive</t></w>
<w><t>de-noue-ment</t></w>
-<w><t>de-nounce</t></w>
+<w><t>de-nounce</t><verb><regular-root/></verb></w>
<w><t>de-nounced</t></w>
<w><t>de-nounce-ment</t></w>
<w><t>de-nounc-er</t></w>
@@ -40741,11 +40744,11 @@
<w><t>de-tailed</t></w>
<w><t>de-tailed-ly</t></w>
<w><t>de-tailed-ness</t></w>
-<w><t>de-tain</t></w>
+<w><t>de-tain</t><verb><regular-root/></verb></w>
<w><t>de-tain-a-ble</t></w>
<w><t>de-tain-er</t></w>
<w><t>de-tain-ment</t></w>
-<w><t>de-tect</t></w>
+<w><t>de-tect</t><verb><regular-root/></verb></w>
<w><t>de-tect-a-ble</t></w>
<w><t>de-tec-ta-phone</t></w>
<w><t>de-tect-i-ble</t></w>
@@ -41986,7 +41989,7 @@
<w><t>dime</t></w>
<phrase><t>dime nov-el</t></phrase>
<w><t>di-men-hy-dri-nate</t></w>
-<w><t>di-men-sion</t></w>
+<w><t>di-men-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>di-men-sion-al</t></w>
<w><t>di-men-sion-al-i-ty</t></w>
<w><t>di-men-sion-al-ly</t></w>
@@ -42315,7 +42318,7 @@
<w><t>Di-rae</t></w>
<w><t>dir-dum</t></w>
<w><t>dire</t></w>
-<w><t>di-rect</t></w>
+<w><t>di-rect</t><verb><regular-root/></verb></w>
<phrase><t>di-rect ac-cess</t></phrase>
<phrase><t>di-rect ac-tion</t></phrase>
<phrase><t>di-rect cur-rent</t></phrase>
@@ -42421,8 +42424,7 @@
<w><t>dis-ac-cred-it</t></w>
<w><t>dis-ac-cus-tom</t></w>
<w><t>dis-ac-cus-tomed-ness</t></w>
-<w><t>dis-ad-vant-age</t></w>
-<w><t>dis-ad-van-tage</t></w>
+<w><t>dis-ad-van-tage</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>dis-ad-van-taged</t></w>
<w><t>dis-ad-van-ta-geous</t></w>
<w><t>dis-ad-van-ta-geous-ly</t></w>
@@ -43786,7 +43788,7 @@
<w><t>di-ver-sion-al</t></w>
<w><t>di-ver-sion-ar-y</t></w>
<w><t>di-ver-si-ty</t></w>
-<w><t>di-vert</t></w>
+<w><t>di-vert</t><verb><regular-root/></verb></w>
<w><t>di-vert-ed-ly</t></w>
<w><t>di-vert-er</t></w>
<w><t>di-vert-i-ble</t></w>
@@ -44823,7 +44825,7 @@
<w><t>dou-blure</t></w>
<w><t>dou-bly</t></w>
<w><t>Doubs</t></w>
-<w><t>doubt</t></w>
+<w><t>doubt</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>doubt-a-ble</t></w>
<w><t>doubt-a-bly</t></w>
<w><t>doubt-er</t></w>
@@ -46215,7 +46217,7 @@
<w><t>Dwayne</t></w>
<w><t>dwell</t></w>
<w><t>dwell-er</t></w>
-<w><t>dwell-ing</t></w>
+<w><t>dwell-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dwelt</t></w>
<w><t>Dwight</t></w>
<w><t>dwin-dle</t></w>
@@ -49351,7 +49353,7 @@
<w><t>en-graved</t></w>
<w><t>en-grav-er</t></w>
<w><t>en-grav-ing</t></w>
-<w><t>en-gross</t></w>
+<w><t>en-gross</t><verb><regular-root/></verb></w>
<w><t>en-gros-sed-ly</t></w>
<w><t>en-gross-er</t></w>
<w><t>en-gross-ing</t></w>
@@ -51169,7 +51171,7 @@
<w><t>es-ti-ma-ble</t></w>
<w><t>es-ti-ma-ble-ness</t></w>
<w><t>es-ti-ma-bly</t></w>
-<w><t>es-ti-mate</t></w>
+<w><t>es-ti-mate</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>es-ti-mat-ed</t></w>
<w><t>es-ti-mat-ing</t></w>
<w><t>es-ti-mat-ing-ly</t></w>
@@ -51732,7 +51734,7 @@
<w><t>Eu-ro-mart</t></w>
<w><t>Eu-ro-pa</t></w>
<w><t>Eu-rope</t></w>
-<w><t>Eu-ro-pe-an</t></w>
+<w><t>Eu-ro-pe-an</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<phrase><t>Eu-ro-pe-an E-co-nom-ic Com-mu-ni-ty</t></phrase>
<phrase><t>Eu-ro-pe-an let-ter tel-e-gram</t></phrase>
<phrase><t>Eu-ro-pe-an plan</t></phrase>
@@ -52015,7 +52017,7 @@
<w><t>ev-i-den-tial-ly</t></w>
<w><t>ev-i-den-tia-ry</t></w>
<w><t>ev-i-dent-ly</t></w>
-<w><t>e-vil</t></w>
+<w><t>e-vil</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<phrase><t>e-vil eye</t></phrase>
<phrase><t>E-vil One</t></phrase>
<w><t>e-vil=eyed</t></w>
@@ -52186,7 +52188,7 @@
<w><t>ex-ca-vat-ing</t></w>
<w><t>ex-ca-va-tion</t></w>
<w><t>ex-ca-va-tor</t></w>
-<w><t>ex-ceed</t></w>
+<w><t>ex-ceed</t><verb><regular-root/></verb></w>
<w><t>ex-ceed-a-ble</t></w>
<w><t>ex-ceed-er</t></w>
<w><t>ex-ceed-ing</t></w>
@@ -52205,7 +52207,7 @@
<w><t>ex-cep-a-ble</t></w>
<w><t>ex-cept</t></w>
<w><t>ex-cept-ing</t></w>
-<w><t>ex-cep-tion</t></w>
+<w><t>ex-cep-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-cep-tion-a-ble</t></w>
<w><t>ex-cep-tion-a-ble-ness</t></w>
<w><t>ex-cep-tion-a-bly</t></w>
@@ -52366,7 +52368,7 @@
<w><t>ex-cul-pa-tion</t></w>
<w><t>ex-cul-pa-to-ry</t></w>
<w><t>ex-cur-rent</t></w>
-<w><t>ex-cur-sion</t></w>
+<w><t>ex-cur-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-cur-sion-al</t></w>
<w><t>ex-cur-sion-ar-y</t></w>
<w><t>ex-cur-sion-ist</t></w>
@@ -52724,7 +52726,7 @@
<w><t>ex-pect-ant</t></w>
<w><t>ex-pec-tant</t></w>
<w><t>ex-pect-ant-ly</t></w>
-<w><t>ex-pec-ta-tion</t></w>
+<w><t>ex-pec-ta-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-pect-a-tive</t></w>
<phrase><t>ex-pect-ed val-ue</t></phrase>
<w><t>ex-pect-er</t></w>
@@ -52787,7 +52789,7 @@
<w><t>ex-pe-ri-en-tial-ist</t></w>
<w><t>ex-pe-ri-en-tial-is-tic</t></w>
<w><t>ex-pe-ri-en-tial-ly</t></w>
-<w><t>ex-per-i-ment</t></w>
+<w><t>ex-per-i-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-per-i-men-tal</t></w>
<w><t>ex-per-i-men-tal-ise</t></w>
<w><t>ex-per-i-men-tal-ism</t></w>
@@ -53503,7 +53505,7 @@
<w><t>fa-cil-i-ta-tion</t></w>
<w><t>fa-cil-i-ta-tive</t></w>
<w><t>fa-cil-i-ta-tor</t></w>
-<w><t>fa-cil-i-ty</t></w>
+<w><t>fa-cil-i-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>fac-ing</t></w>
<w><t>fa-cin-o-rous</t></w>
<w><t>fa-con-ne</t></w>
@@ -53544,7 +53546,7 @@
<w><t>fac-tor-ized</t></w>
<w><t>fac-tor-iz-ing</t></w>
<w><t>fac-tor-ship</t></w>
-<w><t>fac-to-ry</t></w>
+<w><t>fac-to-ry</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>fac-to-ry farm</t></phrase>
<phrase><t>fac-to-ry ship</t></phrase>
<w><t>fac-to-ry-like</t></w>
@@ -53653,7 +53655,7 @@
<w><t>faint-ness</t></w>
<w><t>faints</t></w>
<w><t>fai-né-ant</t></w>
-<w><t>fair</t></w>
+<w><t>fair</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible/></adjective></w>
<phrase><t>fair cop-y</t></phrase>
<w><t>fair=mind-ed</t></w>
<w><t>fair=spo-ken</t></w>
@@ -54708,7 +54710,7 @@
<w><t>fe-luc-ca</t></w>
<w><t>fel-wort</t></w>
<w><t>fem</t></w>
-<w><t>fe-male</t></w>
+<w><t>fe-male</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<phrase><t>fe-male im-per-son-a-tor</t></phrase>
<phrase><t>fe-male suf-frage</t></phrase>
<w><t>fe-male-ness</t></w>
@@ -55023,7 +55025,7 @@
<w><t>fet-e-ri-ta</t></w>
<w><t>fe-tial</t></w>
<w><t>fe-ti-a-les</t></w>
-<w><t>fet-ich</t></w>
+<w><t>fet-ich</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>fet-ich-ism</t></w>
<w><t>fet-ich-ist</t></w>
<w><t>fet-ich-is-tic</t></w>
@@ -55388,7 +55390,7 @@
<w><t>fig-ur-a-tive</t></w>
<w><t>fig-ur-a-tive-ly</t></w>
<w><t>fig-ur-a-tive-ness</t></w>
-<w><t>fig-ure</t></w>
+<w><t>fig-ure</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>fig-ure eight</t></phrase>
<phrase><t>fig-ure of eight</t></phrase>
<phrase><t>fig-ure of speech</t></phrase>
@@ -55820,7 +55822,7 @@
<phrase><t>fir-ing pin</t></phrase>
<phrase><t>fir-ing squad</t></phrase>
<w><t>fir-kin</t></w>
-<w><t>firm</t></w>
+<w><t>firm</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible/></adjective></w>
<w><t>fir-ma-ment</t></w>
<w><t>fir-ma-men-tal</t></w>
<w><t>fir-man</t></w>
@@ -57321,7 +57323,7 @@
<w><t>foot-sore-ness</t></w>
<w><t>foot-stalk</t></w>
<w><t>foot-stall</t></w>
-<w><t>foot-step</t></w>
+<w><t>foot-step</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>foot-stock</t></w>
<w><t>foot-stone</t></w>
<w><t>foot-stool</t></w>
@@ -58039,7 +58041,7 @@
<w><t>foun-da-tion-al-ly</t></w>
<w><t>foun-da-tion-ar-y</t></w>
<w><t>found-ed</t><verb><regular-root value="false"/></verb></w>
-<w><t>found-er</t></w>
+<w><t>found-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>found-er's type</t></phrase>
<w><t>foun-der-ous</t></w>
<phrase><t>foun-ders' shares</t></phrase>
@@ -60227,7 +60229,7 @@
<w><t>Ga-ne-sa</t></w>
<w><t>Ga-ne-sha</t></w>
<w><t>ga-nev</t></w>
-<w><t>gang</t></w>
+<w><t>gang</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Gan-ga jal</t></phrase>
<w><t>gang-bang</t></w>
<w><t>gang-board</t></w>
@@ -60335,7 +60337,7 @@
<w><t>gar-dant</t></w>
<w><t>gard-brace</t></w>
<w><t>garde=man-ger</t></w>
-<w><t>gar-den</t></w>
+<w><t>gar-den</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Gar-den</t></w>
<phrase><t>gar-den cen-tre</t></phrase>
<phrase><t>gar-den cit-y</t></phrase>
@@ -63493,7 +63495,7 @@
<w><t>gov-ern-ess</t></w>
<w><t>gov-er-ness</t></w>
<w><t>gov-er-ness-y</t></w>
-<w><t>gov-ern-ment</t></w>
+<w><t>gov-ern-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>gov-ern-ment is-sue</t></phrase>
<w><t>gov-ern-ment=in=ex-ile</t></w>
<w><t>gov-ern-men-tal</t></w>
@@ -63503,8 +63505,8 @@
<w><t>gov-er-nor=gen-er-al</t></w>
<w><t>gov-er-nor=gen-er-al-ship</t></w>
<w><t>gov-er-nor-ship</t></w>
-<w><t>govt</t></w>
-<w><t>Govt</t></w>
+<w><t>govt</t><abbrev referenced-word="government"/></w>
+<w><t>Govt</t><abbrev referenced-word="Government"/></w>
<w><t>gow-an</t></w>
<w><t>Go-wan-da</t></w>
<w><t>gow-aned</t></w>
@@ -63567,7 +63569,7 @@
<w><t>gra-da-tion</t></w>
<w><t>gra-da-tion-al</t></w>
<w><t>gra-da-tion-al-ly</t></w>
-<w><t>grade</t></w>
+<w><t>grade</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>grade crick-et</t></phrase>
<phrase><t>grade cros-sing</t></phrase>
<w><t>grad-ed</t></w>
@@ -64935,7 +64937,7 @@
<w><t>guar-an-ty</t></w>
<w><t>guar-an-ty-ing</t></w>
<w><t>Gua-ra-ní</t></w>
-<w><t>guard</t></w>
+<w><t>guard</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>guard-a-ble</t></w>
<w><t>Guar-da-fui</t></w>
<w><t>Guar-da-fu-i</t></w>
@@ -65685,7 +65687,7 @@
<w><t>ha-bi-tant</t></w>
<w><t>ha-bi-tants</t></w>
<w><t>hab-i-tat</t></w>
-<w><t>hab-i-ta-tion</t></w>
+<w><t>hab-i-ta-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>hab-i-ta-tion-al</t></w>
<w><t>hab-it-ed</t></w>
<w><t>ha-bit-u-al</t></w>
@@ -71989,7 +71991,7 @@
<phrase><t>hus-tle up</t></phrase>
<w><t>hus-tler</t></w>
<w><t>Hus-ton</t></w>
-<w><t>hut</t></w>
+<w><t>hut</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>hut cir-cle</t></phrase>
<w><t>hutch</t></w>
<w><t>hutch-ie</t></w>
@@ -74133,7 +74135,7 @@
<w><t>ilth</t></w>
<w><t>Il-ya</t></w>
<w><t>I-ma</t></w>
-<w><t>im-age</t></w>
+<w><t>im-age</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>im-age con-vert-er</t></phrase>
<phrase><t>im-age in-ten-si-fi-er</t></phrase>
<phrase><t>im-age or-thi-con</t></phrase>
@@ -74804,7 +74806,7 @@
<w><t>im-poned</t></w>
<w><t>im-po-nent</t></w>
<w><t>im-pon-ing</t></w>
-<w><t>im-port</t></w>
+<w><t>im-port</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>im-port-a-bil-i-ty</t></w>
<w><t>im-port-a-ble</t></w>
<w><t>im-por-tance</t></w>
@@ -76580,7 +76582,7 @@
<w><t>in-flex-ion</t></w>
<w><t>in-flex-ion-al-ly</t></w>
<w><t>in-flex-ion-less</t></w>
-<w><t>in-flict</t></w>
+<w><t>in-flict</t><verb><regular-root/></verb></w>
<w><t>in-flict-a-ble</t></w>
<w><t>in-flict-er</t></w>
<w><t>in-flic-tion</t></w>
@@ -77981,7 +77983,7 @@
<w><t>in-ter-de-ter-mined</t></w>
<w><t>in-ter-de-ter-min-ing</t></w>
<w><t>in-ter-de-vour</t></w>
-<w><t>in-ter-dict</t></w>
+<w><t>in-ter-dict</t><verb><regular-root/></verb></w>
<phrase><t>in-ter-dict list</t></phrase>
<w><t>in-ter-dic-tion</t></w>
<w><t>in-ter-dic-tor</t></w>
@@ -79202,7 +79204,7 @@
<w><t>in-vad-a-ble</t></w>
<w><t>in-vade</t></w>
<w><t>in-vad-ed</t></w>
-<w><t>in-vad-er</t></w>
+<w><t>in-vad-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-vad-ing</t></w>
<w><t>in-vag-i-na-ble</t></w>
<w><t>in-vag-i-nate</t></w>
@@ -81266,7 +81268,7 @@
<w><t>jest-ing</t></w>
<w><t>jest-ing-ly</t></w>
<w><t>Je-su</t></w>
-<w><t>Jes-u-it</t></w>
+<w><t>Jes-u-it</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Jes-u-it-ic</t></w>
<w><t>Jes-u-it-i-cal</t></w>
<w><t>Jes-u-it-i-cal-ly</t></w>
@@ -83567,7 +83569,7 @@
<w><t>King-chow</t></w>
<w><t>king-craft</t></w>
<w><t>king-cup</t></w>
-<w><t>king-dom</t></w>
+<w><t>king-dom</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>king-dom come</t></phrase>
<w><t>king-dom-less</t></w>
<w><t>king-fish</t></w>
@@ -88888,7 +88890,7 @@
<w><t>loft-less</t></w>
<w><t>lofts-man</t></w>
<w><t>loft-y</t></w>
-<w><t>log</t></w>
+<w><t>log</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>log=log</t></w>
<w><t>lo-gan</t></w>
<w><t>Lo-gan</t></w>
@@ -91694,7 +91696,7 @@
<w><t>Ma-ni</t></w>
<w><t>Ma-ni-a</t></w>
<w><t>ma-ni-a</t></w>
-<w><t>ma-ni-ac</t></w>
+<w><t>ma-ni-ac</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ma-ni-a-cal</t></w>
<w><t>ma-ni-a-cal-ly</t></w>
<w><t>man-ic</t></w>
@@ -93337,6 +93339,7 @@
<w><t>mean-ing-ly</t></w>
<w><t>mean-ing-ness</t></w>
<w><t>mean-ly</t></w>
+<w><t>mean-ness</t><noun/></w>
<w><t>means</t></w>
<phrase><t>means of pro-duc-tion</t></phrase>
<w><t>mean-spir-it-ed</t></w>
@@ -93439,7 +93442,7 @@
<w><t>Me-da</t></w>
<w><t>me-dail-lon</t></w>
<w><t>me-da-ka</t></w>
-<w><t>med-al</t></w>
+<w><t>med-al</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Med-al of Hon-or</t></phrase>
<phrase><t>med-al play</t></phrase>
<w><t>med-aled</t></w>
@@ -94182,7 +94185,7 @@
<w><t>mer-chan-dised</t></w>
<w><t>mer-chan-dis-er</t></w>
<w><t>mer-chan-dis-ing</t></w>
-<w><t>mer-chant</t></w>
+<w><t>mer-chant</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>mer-chant bank</t></phrase>
<phrase><t>mer-chant na-vy</t></phrase>
<phrase><t>mer-chant prince</t></phrase>
@@ -95940,7 +95943,7 @@
<w><t>mi-ra-cid-i-a</t></w>
<w><t>mi-ra-cid-i-al</t></w>
<w><t>mi-ra-cid-i-um</t></w>
-<w><t>mir-a-cle</t></w>
+<w><t>mir-a-cle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>mir-a-cle play</t></phrase>
<w><t>mi-rac-u-lous</t></w>
<w><t>mi-rac-u-lous-ly</t></w>
@@ -98220,7 +98223,7 @@
<w><t>moth</t></w>
<w><t>moth=eat-en</t></w>
<w><t>moth-ball</t></w>
-<w><t>moth-er</t></w>
+<w><t>moth-er</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>Moth-er Car-ey's chick-en</t></phrase>
<phrase><t>moth-er coun-try</t></phrase>
<phrase><t>Moth-er Goose</t></phrase>
@@ -98339,7 +98342,7 @@
<w><t>mou-lage</t></w>
<w><t>mould</t></w>
<w><t>mould-board</t></w>
-<w><t>mould-er</t></w>
+<w><t>mould-er</t><verb><regular-root/></verb></w>
<w><t>mould-i-er</t></w>
<w><t>mould-ies</t></w>
<w><t>mould-i-est</t></w>
@@ -98434,7 +98437,7 @@
<w><t>Mous-tie-ri-an</t></w>
<w><t>mous-y</t></w>
<w><t>mou-tarde</t></w>
-<w><t>mouth</t></w>
+<w><t>mouth</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>mouth or-gan</t></phrase>
<w><t>mouth=wa-ter-ing</t></w>
<w><t>mouth-breed-er</t></w>
@@ -100205,7 +100208,7 @@
<w><t>nat-u-ral-iz-er</t></w>
<w><t>nat-u-ral-iz-ing</t></w>
<w><t>nat-u-ral-ly</t></w>
-<w><t>na-ture</t></w>
+<w><t>na-ture</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>na-ture strip</t></phrase>
<phrase><t>na-ture stud-y</t></phrase>
<phrase><t>na-ture trail</t></phrase>
@@ -100579,7 +100582,7 @@
<w><t>ne-go-tia-ble</t></w>
<w><t>ne-go-ti-a-ble</t></w>
<w><t>ne-go-ti-ant</t></w>
-<w><t>ne-go-ti-ate</t></w>
+<w><t>ne-go-ti-ate</t><verb><regular-root/></verb></w>
<w><t>ne-go-ti-a-tion</t></w>
<w><t>ne-go-ti-a-tor</t></w>
<w><t>Ne-gr</t></w>
@@ -100625,6 +100628,7 @@
<w><t>neigh</t></w>
<w><t>neigh-bor</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>neigh-bor-hood</t></w>
+<w><t>neigh-bor-ing</t></w>
<w><t>neigh-bor-less</t></w>
<w><t>neigh-bor-li-ness</t></w>
<w><t>neigh-bor-ly</t></w>
@@ -107864,7 +107868,7 @@
<w><t>Nu-ma-nus</t></w>
<w><t>numb</t></w>
<w><t>num-bat</t></w>
-<w><t>num-ber</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>num-ber</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>num-ber line</t></phrase>
<phrase><t>num-ber off</t></phrase>
<phrase><t>num-ber one</t></phrase>
@@ -108358,8 +108362,7 @@
<w><t>ob-serv-a-ble</t></w>
<w><t>ob-serv-a-ble-ness</t></w>
<w><t>ob-serv-a-bly</t></w>
-<w><t>ob-serv-ance</t></w>
-<w><t>ob-ser-vance</t></w>
+<w><t>ob-serv-ance</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ob-ser-vant</t></w>
<w><t>Ob-ser-van-tine</t></w>
<w><t>ob-serv-ant-ly</t></w>
@@ -108390,7 +108393,7 @@
<w><t>ob-so-lete-ly</t></w>
<w><t>ob-so-lete-ness</t></w>
<w><t>ob-so-let-ing</t></w>
-<w><t>ob-sta-cle</t></w>
+<w><t>ob-sta-cle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ob-sta-cle race</t></phrase>
<w><t>obstet</t></w>
<w><t>ob-stet-ric</t></w>
@@ -109652,7 +109655,7 @@
<w><t>op-er-ant</t></w>
<phrase><t>op-er-ant con-di-tion-ing</t></phrase>
<w><t>op-er-at-a-ble</t></w>
-<w><t>op-er-ate</t></w>
+<w><t>op-er-ate</t><verb><regular-root/></verb></w>
<w><t>op-er-at-ic</t></w>
<phrase><t>op-er-at-ing ta-ble</t></phrase>
<phrase><t>op-er-at-ing the-a-tre</t></phrase>
@@ -114164,7 +114167,7 @@
<w><t>pae-o-ny</t></w>
<w><t>Pa-e-siel-lo</t></w>
<w><t>Paes-tum</t></w>
-<w><t>pa-gan</t></w>
+<w><t>pa-gan</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<w><t>pa-gan-dom</t></w>
<w><t>Pa-ga-ni-ni</t></w>
<w><t>pa-gan-ise</t></w>
@@ -116074,7 +116077,7 @@
<w><t>pa-ta-gi-a</t></w>
<w><t>pa-ta-gi-um</t></w>
<w><t>Pat-a-go-ni-a</t></w>
-<w><t>patch</t></w>
+<w><t>patch</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>patch pock-et</t></phrase>
<w><t>patch-a-ble</t></w>
<w><t>patch-er</t></w>
@@ -116972,12 +116975,12 @@
<w><t>pe-nal-ize</t></w>
<w><t>pe-nal-ized</t></w>
<w><t>pe-nal-iz-ing</t></w>
-<w><t>pen-al-ty</t></w>
+<w><t>pen-al-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pen-al-ty ar-e-a</t></phrase>
<phrase><t>pen-al-ty box</t></phrase>
<phrase><t>pen-al-ty kill-er</t></phrase>
<phrase><t>pen-al-ty rates</t></phrase>
-<w><t>pen-ance</t></w>
+<w><t>pen-ance</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pen-ance-less</t></w>
<w><t>pe-nang</t></w>
<w><t>Pe-nang</t></w>
@@ -117679,7 +117682,7 @@
<w><t>per-i-neu-ri-cal</t></w>
<w><t>per-i-neu-ri-tis</t></w>
<w><t>per-i-neu-ri-um</t></w>
-<w><t>pe-ri-od</t></w>
+<w><t>pe-ri-od</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pe-ri-od piece</t></phrase>
<w><t>per-i-o-date</t></w>
<w><t>pe-ri-o-date</t></w>
@@ -120547,7 +120550,7 @@
<phrase><t>plan-tain lil-y</t></phrase>
<w><t>plan-tain=eat-er</t></w>
<w><t>plan-tar</t></w>
-<w><t>plan-ta-tion</t></w>
+<w><t>plan-ta-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Plan-ta-tion</t></w>
<w><t>plan-ta-tion-like</t></w>
<w><t>plant-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
@@ -121092,7 +121095,7 @@
<w><t>plu-mule</t></w>
<w><t>plu-mu-lose</t></w>
<w><t>plum-y</t></w>
-<w><t>plun-der</t></w>
+<w><t>plun-der</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>plun-der-a-ble</t></w>
<w><t>plun-der-age</t></w>
<w><t>plunge</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
@@ -122107,7 +122110,7 @@
<w><t>Po-pa-yán</t></w>
<w><t>pop-corn</t></w>
<w><t>Pope</t></w>
-<w><t>pope</t></w>
+<w><t>pope</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pope-dom</t></w>
<w><t>pope-less</t></w>
<w><t>pope-like</t></w>
@@ -122396,7 +122399,7 @@
<phrase><t>pos-se co-mi-ta-tus</t></phrase>
<w><t>pos-sess</t></w>
<w><t>pos-sessed</t></w>
-<w><t>pos-ses-sion</t></w>
+<w><t>pos-ses-sion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pos-ses-sive</t></w>
<w><t>pos-ses-sive-ness</t></w>
<w><t>pos-ses-sor</t></w>
@@ -125515,7 +125518,7 @@
<w><t>pre-mid-night</t></w>
<w><t>pre-mid-sum-mer</t></w>
<w><t>pre-mie</t></w>
-<w><t>prem-ier</t></w>
+<w><t>pre-mier</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<w><t>prem-i-ere</t></w>
<w><t>pre-miere</t></w>
<w><t>pre-miered</t></w>
@@ -126679,7 +126682,7 @@
<w><t>pre-ven-ient</t></w>
<w><t>pre-ve-ni-ent</t></w>
<w><t>pre-ven-ient-ly</t></w>
-<w><t>pre-vent</t></w>
+<w><t>pre-vent</t><verb><regular-root/></verb></w>
<w><t>pre-ven-ta-tive</t></w>
<w><t>pre-vent-er</t></w>
<w><t>pre-vent-ing-ly</t></w>
@@ -126838,7 +126841,7 @@
<w><t>pride-less</t></w>
<w><t>pride-less-ly</t></w>
<w><t>pri-er</t></w>
-<w><t>priest</t></w>
+<w><t>priest</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>priest=rid-den</t></w>
<w><t>priest-craft</t></w>
<w><t>priest-ess</t></w>
@@ -127035,8 +127038,8 @@
<w><t>pris-mat-i-cal-ly</t></w>
<w><t>pris-ma-toid</t></w>
<w><t>pris-moid</t></w>
-<w><t>pris-on</t></w>
-<w><t>pris-on-er</t></w>
+<w><t>pris-on</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>pris-on-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pris-on-er of war</t></phrase>
<phrase><t>pris-on-er's base</t></phrase>
<w><t>pris-on-like</t></w>
@@ -127093,7 +127096,7 @@
<phrase><t>Priv-y Coun-cil</t></phrase>
<phrase><t>priv-y purse</t></phrase>
<phrase><t>priv-y seal</t></phrase>
-<w><t>prize</t></w>
+<w><t>prize</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>prize mon-ey</t></phrase>
<w><t>prize-fight</t></w>
<w><t>prize-fight-er</t></w>
@@ -127593,8 +127596,9 @@
<w><t>pro-fem-i-nist</t></w>
<w><t>pro-fer-ment</t></w>
<w><t>pro-fert</t></w>
-<w><t>pro-fess</t></w>
-<w><t>pro-fessed</t></w>
+<w><t>pro-fess</t><verb><regular-root/></verb></w>
+<w><t>pro-fessed</t><adjective><extensible value="false"/></adjective></w>
+<w><t>pro-fess-ed-ly</t><adverb/></w>
<w><t>pro-fes-sion</t></w>
<w><t>pro-fes-sion-al</t></w>
<w><t>pro-fes-sion-al-ise</t></w>
@@ -127627,7 +127631,7 @@
<w><t>pro-fil-er</t></w>
<w><t>pro-fil-ing</t></w>
<w><t>Pro-fi-lom-e-ter</t></w>
-<w><t>prof-it</t></w>
+<w><t>prof-it</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>prof-it and loss</t></phrase>
<w><t>prof-it=and=loss</t></w>
<w><t>prof-it=shar-ing</t></w>
@@ -127987,7 +127991,7 @@
<w><t>prop-a-gan-dize</t></w>
<w><t>prop-a-gan-dized</t></w>
<w><t>prop-a-gan-diz-ing</t></w>
-<w><t>prop-a-gate</t></w>
+<w><t>prop-a-gate</t><verb><regular-root/></verb></w>
<w><t>prop-a-ga-tion</t></w>
<w><t>prop-a-ga-tion-al</t></w>
<w><t>prop-a-ga-tive</t></w>
@@ -128573,7 +128577,7 @@
<w><t>prov-i-dent-ness</t></w>
<w><t>pro-vid-er</t></w>
<w><t>pro-vid-ing</t></w>
-<w><t>prov-ince</t></w>
+<w><t>prov-ince</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Prov-ince-town</t></w>
<w><t>pro-vin-cial</t></w>
<w><t>pro-vin-cial-ism</t></w>
@@ -129695,7 +129699,7 @@
<w><t>pu-ni-er</t></w>
<w><t>pu-ni-est</t></w>
<w><t>pu-ni-ness</t></w>
-<w><t>pun-ish</t></w>
+<w><t>pun-ish</t><verb><regular-root/></verb></w>
<w><t>pun-ish-a-ble</t></w>
<w><t>pun-ish-er</t></w>
<w><t>pun-ish-ment</t></w>
@@ -129769,7 +129773,7 @@
<w><t>pur-chas-a-ble</t></w>
<w><t>pur-chase</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>pur-chase tax</t></phrase>
-<w><t>pur-chas-er</t></w>
+<w><t>pur-chas-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pur-da</t></w>
<w><t>pur-dah</t></w>
<w><t>pure</t></w>
@@ -130507,7 +130511,7 @@
<w><t>quan-ti-tive</t></w>
<w><t>quan-ti-tive-ly</t></w>
<w><t>quan-ti-tive-ness</t></w>
-<w><t>quan-ti-ty</t></w>
+<w><t>quan-ti-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>quan-ti-ty sur-vey-or</t></phrase>
<phrase><t>quan-ti-ty the-o-ry</t></phrase>
<w><t>quan-ti-za-tion</t></w>
@@ -131467,7 +131471,7 @@
<w><t>qui-es-cen-cy</t></w>
<w><t>qui-es-cent</t></w>
<w><t>qui-es-cent-ly</t></w>
-<w><t>qui-et</t></w>
+<w><t>qui-et</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>qui-et-en</t></w>
<w><t>qui-et-en-er</t></w>
<w><t>qui-et-er</t></w>
@@ -133018,7 +133022,7 @@
<w><t>re-al-lot-ted</t></w>
<w><t>re-al-lot-ting</t></w>
<w><t>re-al-ly</t></w>
-<w><t>realm</t></w>
+<w><t>realm</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Re-al-po-li-tik</t></w>
<w><t>re-al-po-li-tik</t></w>
<w><t>re-als</t></w>
@@ -133097,7 +133101,7 @@
<w><t>re-ap-prove</t></w>
<w><t>re-ap-proved</t></w>
<w><t>re-ap-prov-ing</t></w>
-<w><t>rear</t></w>
+<w><t>rear</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>rear ad-mi-ral</t></phrase>
<phrase><t>rear=view mir-ror</t></phrase>
<w><t>re-ar-bi-trate</t></w>
@@ -133637,7 +133641,7 @@
<w><t>re-com-menced</t></w>
<w><t>re-com-mence-ment</t></w>
<w><t>re-com-menc-ing</t></w>
-<w><t>rec-om-mend</t></w>
+<w><t>rec-om-mend</t><verb><regular-root/></verb></w>
<w><t>rec-om-mend-a-ble</t></w>
<w><t>rec-om-men-da-tion</t></w>
<w><t>rec-om-mend-a-to-ry</t></w>
@@ -133855,7 +133859,7 @@
<w><t>re-cru-des-cen-cy</t></w>
<w><t>re-cru-des-cent</t></w>
<w><t>re-cru-desc-ing</t></w>
-<w><t>re-cruit</t></w>
+<w><t>re-cruit</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>re-cruit-a-ble</t></w>
<w><t>re-cruit-er</t></w>
<w><t>re-cruit-ment</t></w>
@@ -134486,7 +134490,7 @@
<w><t>re-e-rupt</t></w>
<w><t>re-e-rup-tion</t></w>
<w><t>reest</t></w>
-<w><t>re-es-tab-lish</t></w>
+<w><t>re-es-tab-lish</t><verb><regular-root/></verb></w>
<w><t>re-es-tab-lish-ment</t></w>
<w><t>re-es-ti-mate</t></w>
<w><t>re-es-ti-mat-ed</t></w>
@@ -134643,7 +134647,7 @@
<w><t>re-flect-i-ble</t></w>
<phrase><t>re-flect-ing tel-e-scope</t></phrase>
<w><t>re-flect-ing-ly</t></w>
-<w><t>re-flec-tion</t></w>
+<w><t>re-flec-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>re-flec-tion den-si-ty</t></phrase>
<w><t>re-flec-tive</t></w>
<w><t>re-flec-tive-ly</t></w>
@@ -135152,7 +135156,7 @@
<w><t>reif</t></w>
<w><t>re-i-fy</t></w>
<w><t>Rei-gate</t></w>
-<w><t>reign</t></w>
+<w><t>reign</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>Reign of Ter-ror</t></phrase>
<w><t>re-ig-nite</t></w>
<w><t>re-ig-nit-ed</t></w>
@@ -135585,7 +135589,7 @@
<w><t>re-lib-er-ate</t></w>
<w><t>re-lib-er-at-ed</t></w>
<w><t>re-lib-er-at-ing</t></w>
-<w><t>rel-ic</t></w>
+<w><t>rel-ic</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-li-cense</t></w>
<w><t>re-li-censed</t></w>
<w><t>re-li-cens-ing</t></w>
@@ -135622,7 +135626,7 @@
<w><t>re-lined</t></w>
<w><t>re-lin-ing</t></w>
<w><t>re-link</t></w>
-<w><t>re-lin-quish</t></w>
+<w><t>re-lin-quish</t><verb><regular-root/></verb></w>
<w><t>re-lin-quish-er</t></w>
<w><t>re-lin-quish-ment</t></w>
<w><t>rel-i-quar-ies</t></w>
@@ -136806,7 +136810,7 @@
<w><t>res-i-den-ar-ies</t></w>
<w><t>res-i-dence</t></w>
<w><t>res-i-den-cy</t></w>
-<w><t>res-i-dent</t></w>
+<w><t>res-i-dent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>res-i-dent com-mis-sion-er</t></phrase>
<w><t>res-i-den-tial</t></w>
<w><t>res-i-den-tiar-y</t></w>
@@ -136928,7 +136932,7 @@
<w><t>res-or-cin-ol-phthal-e-in</t></w>
<w><t>re-sorp-tion</t></w>
<w><t>re-sorp-tive</t></w>
-<w><t>re-sort</t></w>
+<w><t>re-sort</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>re-sought</t></w>
<w><t>re-sound</t></w>
<w><t>re-sound-ing-ly</t></w>
@@ -138654,7 +138658,7 @@
<w><t>rit-a</t></w>
<w><t>Ri-ta</t></w>
<w><t>ri-tar-dan-do</t></w>
-<w><t>rite</t></w>
+<w><t>rite</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>rite of pas-sage</t></phrase>
<w><t>rite-less</t></w>
<w><t>rite-less-ness</t></w>
@@ -138692,7 +138696,7 @@
<w><t>ri-val-ry</t></w>
<w><t>rive</t></w>
<w><t>riv-en</t></w>
-<w><t>riv-er</t></w>
+<w><t>riv-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>riv-er horse</t></phrase>
<w><t>Ri-ve-ra</t></w>
<w><t>Riv-er-bank</t></w>
@@ -138800,7 +138804,7 @@
<w><t>rob-bing</t></w>
<w><t>Rob-bins</t></w>
<w><t>Rob-bins-dale</t></w>
-<w><t>robe</t></w>
+<w><t>robe</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>robe=de=cham-bre</t></w>
<w><t>robe-less</t></w>
<w><t>rob-er</t></w>
@@ -142949,7 +142953,7 @@
<phrase><t>se ten-ant</t></phrase>
<w><t>se'n-night</t></w>
<w><t>se=nore</t></w>
-<w><t>sea</t></w>
+<w><t>sea</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>sea an-chor</t></phrase>
<phrase><t>sea a-nem-o-ne</t></phrase>
<phrase><t>sea bis-cuit</t></phrase>
@@ -145863,7 +145867,7 @@
<w><t>set-tle-a-ble</t></w>
<w><t>set-tled-ly</t></w>
<w><t>set-tled-ness</t></w>
-<w><t>set-tle-ment</t></w>
+<w><t>set-tle-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>set-tler</t></w>
<w><t>set-tling</t></w>
<w><t>set-tlings</t></w>
@@ -145957,7 +145961,7 @@
<w><t>sew-ing</t></w>
<phrase><t>sew-ing ma-chine</t></phrase>
<w><t>sewn</t></w>
-<w><t>sex</t></w>
+<w><t>sex</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>sex ap-peal</t></phrase>
<phrase><t>sex chro-mo-some</t></phrase>
<phrase><t>sex hor-mone</t></phrase>
@@ -148210,7 +148214,7 @@
<w><t>siz-a-bly</t></w>
<w><t>siz-ar</t></w>
<w><t>siz-ar-ship</t></w>
-<w><t>size</t></w>
+<w><t>size</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>size-a-ble</t></w>
<w><t>size-a-ble-ness</t></w>
<w><t>size-a-bly</t></w>
@@ -148615,8 +148619,8 @@
<w><t>slave-hold-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>slave-hold-ing</t></w>
<w><t>Sla-ven-ska</t></w>
-<w><t>slav-er</t></w>
-<w><t>slav-er-y</t></w>
+<w><t>slav-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>slav-er-y</t><noun><convertible-to-possessive/></noun></w>
<w><t>slav-ey</t></w>
<w><t>Slav-ic</t></w>
<w><t>slav-ing</t></w>
@@ -148992,7 +148996,7 @@
<w><t>smack-er-oo</t></w>
<w><t>smack-er-oos</t></w>
<w><t>smack-ing</t></w>
-<w><t>small</t></w>
+<w><t>small</t><adjective><extensible/></adjective></w>
<phrase><t>small cal-o-rie</t></phrase>
<phrase><t>small cap-i-tal</t></phrase>
<phrase><t>small cir-cle</t></phrase>
@@ -149191,7 +149195,7 @@
<w><t>smug</t></w>
<w><t>smug-ger</t></w>
<w><t>smug-gest</t></w>
-<w><t>smug-gle</t></w>
+<w><t>smug-gle</t><verb><regular-root/></verb></w>
<w><t>smug-gler</t></w>
<w><t>smug-ly</t></w>
<w><t>smug-ness</t></w>
@@ -150478,7 +150482,7 @@
<w><t>Sour</t></w>
<w><t>sour</t></w>
<phrase><t>sour cher-ry</t></phrase>
-<w><t>source</t></w>
+<w><t>source</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>source pro-gram</t></phrase>
<w><t>source-ful</t></w>
<w><t>source-ful-ness</t></w>
@@ -150602,7 +150606,7 @@
<w><t>Sou-tine</t></w>
<w><t>sout-ter</t></w>
<w><t>sou-ve-nir</t></w>
-<w><t>sov-er-eign</t></w>
+<w><t>sov-er-eign</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>sov-er-eign-ly</t></w>
<w><t>sov-er-eign-ty</t></w>
<w><t>So-vetsk</t></w>
@@ -150731,7 +150735,7 @@
<w><t>span-gle</t></w>
<w><t>Spang-ler</t></w>
<w><t>span-gly</t></w>
-<w><t>Span-iard</t></w>
+<w><t>Span-iard</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>span-iel</t></w>
<w><t>span-iel-like</t></w>
<w><t>Span-ish</t></w>
@@ -154069,7 +154073,7 @@
<w><t>stream-y</t></w>
<w><t>Strea-tor</t></w>
<w><t>streek</t></w>
-<w><t>street</t></w>
+<w><t>street</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>street Ar-ab</t></phrase>
<phrase><t>street pi-an-o</t></phrase>
<w><t>street-car</t></w>
@@ -154194,7 +154198,7 @@
<w><t>string-piece</t></w>
<w><t>string-y</t></w>
<w><t>string-y=bark</t></w>
-<w><t>strip</t></w>
+<w><t>strip</t><verb><regular-root/></verb></w>
<phrase><t>strip car-toon</t></phrase>
<phrase><t>strip crop-ping</t></phrase>
<phrase><t>strip light-ing</t></phrase>
@@ -155258,7 +155262,7 @@
<w><t>sub-ja-cent</t></w>
<w><t>sub-ja-cent-ly</t></w>
<w><t>sub-jack</t></w>
-<w><t>sub-ject</t></w>
+<w><t>sub-ject</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>sub-ject cat-a-logue</t></phrase>
<phrase><t>sub-ject mat-ter</t></phrase>
<w><t>sub-ject=rais-ing</t></w>
@@ -155859,7 +155863,7 @@
<w><t>sub-sta-tion</t></w>
<w><t>sub-ster-nal</t></w>
<w><t>sub-stit-u-ent</t></w>
-<w><t>sub-sti-tute</t></w>
+<w><t>sub-sti-tute</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>sub-sti-tut-ed</t></w>
<w><t>sub-sti-tut-ing</t></w>
<w><t>sub-sti-tu-tion</t></w>
@@ -157775,7 +157779,7 @@
<w><t>sup-per-time</t></w>
<w><t>sup-ping</t></w>
<w><t>suppl</t></w>
-<w><t>sup-plant</t></w>
+<w><t>sup-plant</t><verb><regular-root/></verb></w>
<w><t>sup-plan-ta-tion</t></w>
<w><t>sup-plant-er</t></w>
<w><t>sup-ple</t></w>
@@ -157834,7 +157838,7 @@
<w><t>sup-pos-i-tive</t></w>
<w><t>sup-pos-i-tive-ly</t></w>
<w><t>sup-pos-i-to-ry</t></w>
-<w><t>sup-press</t></w>
+<w><t>sup-press</t><verb><regular-root/></verb></w>
<w><t>sup-pres-sion</t></w>
<w><t>sup-pres-sive</t></w>
<phrase><t>sup-pres-sor grid</t></phrase>
@@ -160157,7 +160161,7 @@
<w><t>taws</t></w>
<w><t>tawse</t></w>
<w><t>taw-yer</t></w>
-<w><t>tax</t></w>
+<w><t>tax</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>tax a-void-ance</t></phrase>
<phrase><t>tax e-va-sion</t></phrase>
<phrase><t>tax ha-ven</t></phrase>
@@ -162147,7 +162151,7 @@
<w><t>tho-ri-um</t></w>
<phrase><t>tho-ri-um di-ox-ide</t></phrase>
<phrase><t>tho-ri-um se-ries</t></phrase>
-<w><t>thorn</t></w>
+<w><t>thorn</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Thorn</t></w>
<phrase><t>thorn ap-ple</t></phrase>
<w><t>thorn-back</t></w>
@@ -162214,8 +162218,10 @@
<w><t>Thra-cian</t></w>
<w><t>Thra-ci-an</t></w>
<w><t>Thra-co=Phryg-i-an</t></w>
+<w><t>thral-dom</t></w>
<w><t>Thrale</t></w>
<w><t>thrall</t></w>
+<w><t>thrall-dom</t></w>
<w><t>thrash</t></w>
<w><t>thrash-er</t></w>
<w><t>thrash-ing</t></w>
@@ -163985,7 +163991,7 @@
<w><t>tra-bec-u-late</t></w>
<w><t>Trab-zon</t></w>
<w><t>tra-cass-e-rie</t></w>
-<w><t>trace</t></w>
+<w><t>trace</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>trace el-e-ment</t></phrase>
<w><t>trace-a-bil-i-ty</t></w>
<w><t>trace-a-ble</t></w>
@@ -164492,7 +164498,7 @@
<w><t>trans-lat-a-bil-i-ty</t></w>
<w><t>trans-lat-a-ble</t></w>
<w><t>trans-lat-a-ble-ness</t></w>
-<w><t>trans-late</t></w>
+<w><t>trans-late</t><verb><regular-root/></verb></w>
<w><t>trans-la-tion</t></w>
<w><t>trans-la-tion-al</t></w>
<w><t>trans-la-tion-al-ly</t></w>
@@ -164613,7 +164619,7 @@
<w><t>trans-po-ni-bil-i-ty</t></w>
<w><t>trans-po-ni-ble</t></w>
<w><t>trans-pon-tine</t></w>
-<w><t>trans-port</t></w>
+<w><t>trans-port</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>trans-port ca-f</t></phrase>
<w><t>trans-por-ta-tion</t></w>
<w><t>trans-port-ed</t></w>
@@ -164818,7 +164824,7 @@
<w><t>trea-son-ous</t></w>
<w><t>trea-son-ous-ly</t></w>
<w><t>treas-ur-a-ble</t></w>
-<w><t>treas-ure</t></w>
+<w><t>treas-ure</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>treas-ure hunt</t></phrase>
<w><t>treas-ure=house</t></w>
<w><t>treas-ure=trove</t></w>
@@ -164838,7 +164844,7 @@
<w><t>treat</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>trea-tise</t></w>
<w><t>treat-ment</t></w>
-<w><t>trea-ty</t></w>
+<w><t>trea-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>trea-ty port</t></phrase>
<w><t>trea-ty-less</t></w>
<w><t>Treb-bia</t></w>
@@ -166176,7 +166182,7 @@
<w><t>tu-mu-li</t></w>
<w><t>tu-mu-lose</t></w>
<w><t>tu-mu-lous</t></w>
-<w><t>tu-mult</t></w>
+<w><t>tu-mult</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>tu-mul-tu-ous</t></w>
<w><t>tu-mul-tu-ous-ly</t></w>
<w><t>tu-mul-tu-ous-ness</t></w>
@@ -180996,7 +181002,7 @@
<w><t>vi-comte</t></w>
<w><t>vi-com-tesse</t></w>
<w><t>vi-con-ti-el</t></w>
-<w><t>vic-tim</t></w>
+<w><t>vic-tim</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>vic-tim-hood</t></w>
<w><t>vic-tim-ise</t></w>
<w><t>vic-tim-ised</t></w>
@@ -181062,7 +181068,7 @@
<phrase><t>Vi-dhan Sa-bha</t></phrase>
<w><t>vid-i-con</t></w>
<w><t>vid-ya</t></w>
-<w><t>vie</t></w>
+<w><t>vie</t><verb><regular-root/></verb></w>
<w><t>Vi-en-na</t></w>
<phrase><t>Vi-en-na Un-ion</t></phrase>
<w><t>Vienne</t></w>
@@ -182520,7 +182526,7 @@
<w><t>wap-per-jaw</t></w>
<w><t>wap-per-jawed</t></w>
<w><t>wap-ping</t></w>
-<w><t>war</t></w>
+<w><t>war</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>War</t></w>
<phrase><t>war ba-by</t></phrase>
<phrase><t>war bon-net</t></phrase>
@@ -182608,7 +182614,7 @@
<w><t>warmth</t></w>
<w><t>warmth-less</t></w>
<w><t>warmth-less-ness</t></w>
-<w><t>warn</t></w>
+<w><t>warn</t><verb><regular-root/></verb></w>
<w><t>warn-er</t></w>
<w><t>War-ner</t></w>
<w><t>warn-ing</t></w>
@@ -182670,7 +182676,7 @@
<w><t>wase</t></w>
<w><t>Wa-se-ca</t></w>
<w><t>Wash</t></w>
-<w><t>wash</t></w>
+<w><t>wash</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>wash draw-ing</t></phrase>
<w><t>wash=leath-er</t></w>
<w><t>wash=up</t></w>
@@ -184402,7 +184408,7 @@
<w><t>whin-ny-ing</t></w>
<w><t>whin-stone</t></w>
<w><t>whin-y</t></w>
-<w><t>whip</t></w>
+<w><t>whip</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>whip scor-pi-on</t></phrase>
<w><t>whip=crack-er</t></w>
<w><t>whip-cord</t></w>
@@ -185312,7 +185318,7 @@
<w><t>with-drawn-ness</t></w>
<w><t>with-drew</t></w>
<w><t>withe</t></w>
-<w><t>with-er</t></w>
+<w><t>with-er</t><verb><regular-root/></verb></w>
<w><t>With-er</t></w>
<w><t>with-ered-ness</t></w>
<w><t>with-er-er</t></w>
@@ -185319,7 +185325,7 @@
<w><t>with-er-ing-ly</t></w>
<w><t>with-er-ite</t></w>
<w><t>With-ers</t></w>
-<w><t>with-ers</t></w>
+<w><t>with-ers</t><noun><plural/></noun></w>
<w><t>with-er-shins</t></w>
<w><t>With-er-spoon</t></w>
<w><t>with-held</t></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml 2022-06-25 15:23:29 UTC (rev 12691)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml 2022-06-26 19:49:34 UTC (rev 12692)
@@ -10,4 +10,8 @@
<!--
-->
+<w><t>en</t></w>
+<w><t>masse</t></w>
+
+
</axsl-dictionary>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-25 15:23:29 UTC (rev 12691)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-26 19:49:34 UTC (rev 12692)
@@ -13,7 +13,9 @@
<w><t>ann-um</t></w>
<w><t>bel-li</t></w>
<w><t>ca-sus</t></w>
+<w><t>de</t></w>
<w><t>et</t></w>
+<w><t>fide</t></w>
<w><t>fit</t></w>
<w><t>in</t></w>
<w><t>in-fi-del-i-um</t></w>
@@ -22,6 +24,7 @@
<w><t>pa-ra-tus</t></w>
<w><t>part-i-bus</t></w>
<w><t>per</t></w>
+<w><t>prop-a-gan-da</t></w>
<w><t>sem-per</t></w>
</axsl-dictionary>
Modified: trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-25 15:23:29 UTC (rev 12691)
+++ trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-26 19:49:34 UTC (rev 12692)
@@ -8,6 +8,7 @@
<match-rule-list id="eng-Latn-match-rules">
<match desc="Arabic digits">^[0-9]+$</match>
+ <match desc="Formatted Arabic digits">^[0-9]{1,3},([0-9]{3})+$(\.[0-9]*)?</match>
<match desc="Uppercase Roman numerals">^[IVXLCDM]+$</match>
<match desc="Lowercase Roman numerals">^[ivxlcdm]+$</match>
<match desc="Currency">^[$£][0-9]+[0-9,\.]*$</match>
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-25 15:23:29 UTC (rev 12691)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-26 19:49:34 UTC (rev 12692)
@@ -152,7 +152,7 @@
/** The list of elements that should never be straddled by a word. */
private List<String> elementTerminalList = Arrays.asList(new String[] {"Para", "Sidenote", "Signature", "EmDash",
"PoetryLine", "Title", "Subtitle", "Dateline", "TitlePara", "TitleAbbrev", "LineBreak", "CopyrightDate",
- "BookmarkTitle", "Addressee", "EnDash"});
+ "Addressee", "EnDash", "InlineContent", "Caption", "Head1", "Head2"});
/** Map whose key is elements that are actually tokens for text, and whose value is that text. */
private Map<String, String> textElementMap = new HashMap<String, String>();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-25 15:23:31
|
Revision: 12691
http://sourceforge.net/p/foray/code/12691
Author: victormote
Date: 2022-06-25 15:23:29 +0000 (Sat, 25 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-24 21:25:04 UTC (rev 12690)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-25 15:23:29 UTC (rev 12691)
@@ -935,7 +935,7 @@
<w><t>ac-cou-cheur</t></w>
<w><t>ac-coucheuse</t></w>
<w><t>ac-cou-cheuse</t></w>
-<w><t>ac-count</t></w>
+<w><t>ac-count</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>ac-count day</t></phrase>
<phrase><t>ac-count for</t></phrase>
<phrase><t>ac-count pay-a-ble</t></phrase>
@@ -1707,7 +1707,7 @@
<w><t>ad-ams-ite</t></w>
<w><t>A-da-na</t></w>
<w><t>A-da-pa</t></w>
-<w><t>a-dapt</t></w>
+<w><t>a-dapt</t><verb><regular-root/></verb></w>
<w><t>a-dapt-a-bil-i-ty</t></w>
<w><t>a-dapt-a-ble</t></w>
<w><t>a-dapt-a-ble-ness</t></w>
@@ -2156,7 +2156,7 @@
<w><t>ad-u-la-tor</t></w>
<w><t>ad-u-la-to-ry</t></w>
<w><t>A-dul-la-mite</t></w>
-<w><t>a-dult</t></w>
+<w><t>a-dult</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>a-dul-ter-ant</t></w>
<w><t>a-dul-ter-ate</t></w>
<w><t>a-dul-ter-at-ed</t></w>
@@ -9510,7 +9510,7 @@
<w><t>Arm-strong</t></w>
<w><t>Arm-strong=Jones</t></w>
<w><t>ar-mure</t></w>
-<w><t>ar-my</t></w>
+<w><t>ar-my</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ar-my ant</t></phrase>
<phrase><t>Ar-my List</t></phrase>
<phrase><t>ar-my worm</t></phrase>
@@ -10351,7 +10351,7 @@
<w><t>as-so-ci-at-ed</t></w>
<phrase><t>as-so-ci-at-ed state-hood</t></phrase>
<w><t>as-so-ci-at-ing</t></w>
-<w><t>as-so-ci-a-tion</t></w>
+<w><t>as-so-ci-a-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>as-so-ci-a-tion foot-ball</t></phrase>
<w><t>as-so-ci-a-tion-al</t></w>
<w><t>as-so-ci-a-tion-ism</t></w>
@@ -10929,7 +10929,7 @@
<w><t>at-tar</t></w>
<w><t>at-tem-per</t></w>
<w><t>at-tem-per-a-tor</t></w>
-<w><t>at-tempt</t></w>
+<w><t>at-tempt</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>at-tempt-a-bil-i-ty</t></w>
<w><t>at-tempt-a-ble</t></w>
<w><t>at-tempt-er</t></w>
@@ -11799,7 +11799,7 @@
<w><t>a-vo</t></w>
<w><t>A-vo-ca</t></w>
<w><t>av-o-ca-do</t></w>
-<w><t>av-o-ca-tion</t></w>
+<w><t>av-o-ca-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>a-voc-a-to-ry</t></w>
<w><t>av-o-cet</t></w>
<w><t>av-o-di-re</t></w>
@@ -11806,7 +11806,7 @@
<w><t>A-vo-ga-dro</t></w>
<phrase><t>A-vo-ga-dro con-stant</t></phrase>
<phrase><t>A-vo-ga-dro's law</t></phrase>
-<w><t>a-void</t></w>
+<w><t>a-void</t><verb><regular-root/></verb></w>
<w><t>a-void-a-ble</t></w>
<w><t>a-void-a-bly</t></w>
<w><t>a-void-ance</t></w>
@@ -13389,7 +13389,7 @@
<w><t>bar-est</t></w>
<w><t>bar-es-the-sia</t></w>
<w><t>bar-fly</t></w>
-<w><t>bar-gain</t></w>
+<w><t>bar-gain</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>bar-gain a-way</t></phrase>
<phrase><t>bar-gain for</t></phrase>
<phrase><t>bar-gain on</t></phrase>
@@ -18038,7 +18038,7 @@
<w><t>bon-bon</t></w>
<w><t>bon-bon-nière</t></w>
<w><t>bonce</t></w>
-<w><t>bond</t></w>
+<w><t>bond</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Bond</t></w>
<phrase><t>bond pa-per</t></phrase>
<phrase><t>bond wash-ing</t></phrase>
@@ -19285,7 +19285,7 @@
<w><t>bra-zil</t></w>
<phrase><t>bra-zil nut</t></phrase>
<w><t>bra-zil-e-in</t></w>
-<w><t>Bra-zil-ian</t></w>
+<w><t>Bra-zil-ian</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective><extensible value="false"/></adjective></w>
<w><t>bra-zil-ian-ite</t></w>
<w><t>braz-i-lin</t></w>
<w><t>bra-zil-ite</t></w>
@@ -19364,7 +19364,7 @@
<w><t>breast-plow</t></w>
<w><t>breast-stroke</t></w>
<w><t>breast-sum-mer</t></w>
-<w><t>breast-work</t></w>
+<w><t>breast-work</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>breath</t></w>
<w><t>breath=tak-ing</t></w>
<w><t>breath-a-ble</t></w>
@@ -20493,7 +20493,7 @@
<w><t>build-a-ble</t></w>
<w><t>build-ed</t></w>
<w><t>build-er</t></w>
-<w><t>build-ing</t></w>
+<w><t>build-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>build-ing line</t></phrase>
<phrase><t>build-ing so-ci-e-ty</t></phrase>
<w><t>build-ing-less</t></w>
@@ -21113,7 +21113,7 @@
<w><t>bu-tat</t></w>
<w><t>Butch</t></w>
<w><t>butch</t></w>
-<w><t>butch-er</t></w>
+<w><t>butch-er</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>butch-er's</t></w>
<phrase><t>butch-er's hook</t></phrase>
<w><t>butch-er's=broom</t></w>
@@ -25816,7 +25816,7 @@
<w><t>cha-rette</t></w>
<w><t>charg-a=plate</t></w>
<w><t>charg-a-ble</t></w>
-<w><t>charge</t></w>
+<w><t>charge</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>charge ac-count</t></phrase>
<phrase><t>charge den-si-ty</t></phrase>
<phrase><t>charge of quar-ters</t></phrase>
@@ -25903,7 +25903,7 @@
<w><t>Char-lye</t></w>
<w><t>Char-lyn</t></w>
<w><t>Char-lyne</t></w>
-<w><t>charm</t></w>
+<w><t>charm</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>charm-ed-ly</t></w>
<w><t>charm-er</t></w>
<w><t>Char-meuse</t></w>
@@ -29037,7 +29037,7 @@
<w><t>clo-tured</t></w>
<w><t>clo-tur-ing</t></w>
<w><t>clou</t></w>
-<w><t>cloud</t></w>
+<w><t>cloud</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>cloud cham-ber</t></phrase>
<w><t>cloud=cuck-oo=land</t></w>
<w><t>cloud-age</t></w>
@@ -30528,7 +30528,7 @@
<w><t>command-a-ble</t></w>
<w><t>com-man-dant</t></w>
<w><t>com-man-deer</t></w>
-<w><t>com-mand-er</t></w>
+<w><t>com-mand-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>com-mand-er in chief</t></phrase>
<w><t>com-mand-er-ies</t></w>
<w><t>com-mand-er-ship</t></w>
@@ -30648,7 +30648,7 @@
<w><t>com-mis-sion-aire</t></w>
<w><t>com-mis-sion-al</t></w>
<phrase><t>com-mis-sioned of-fic-er</t></phrase>
-<w><t>com-mis-sion-er</t></w>
+<w><t>com-mis-sion-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>com-mis-sion-er for oaths</t></phrase>
<w><t>com-mis-sion-er-ship</t></w>
<w><t>com-mis-sive</t></w>
@@ -30661,7 +30661,7 @@
<w><t>com-mit-ta-ble</t></w>
<w><t>com-mit-tal</t></w>
<w><t>com-mit-ted</t></w>
-<w><t>com-mit-tee</t></w>
+<w><t>com-mit-tee</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>com-mit-tee-ism</t></w>
<w><t>com-mit-tee-man</t></w>
<w><t>com-mit-tee-ship</t></w>
@@ -31538,7 +31538,7 @@
<w><t>con-di-men-ta-ry</t></w>
<w><t>con-dis-ci-ple</t></w>
<w><t>Con-dit</t></w>
-<w><t>con-di-tion</t></w>
+<w><t>con-di-tion</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>con-di-tion-al</t></w>
<w><t>con-di-tion-al-i-ty</t></w>
<w><t>con-di-tion-al-ly</t></w>
@@ -32132,7 +32132,7 @@
<w><t>con-sen-su-al-ly</t></w>
<w><t>con-sen-sus</t></w>
<w><t>con-sen-sus-es</t></w>
-<w><t>con-sent</t></w>
+<w><t>con-sent</t><noun/><verb><regular-root/></verb></w>
<w><t>con-sen-ta-ne-i-ty</t></w>
<w><t>con-sen-ta-ne-ous</t></w>
<w><t>con-sen-ta-ne-ous-ly</t></w>
@@ -32439,7 +32439,7 @@
<w><t>con-ta-gious-ness</t></w>
<w><t>con-ta-gium</t></w>
<w><t>con-ta-gi-um</t></w>
-<w><t>con-tain</t></w>
+<w><t>con-tain</t><verb><regular-root/></verb></w>
<w><t>con-tain-a-ble</t></w>
<w><t>con-tained</t></w>
<w><t>con-tain-ed-ly</t></w>
@@ -32503,9 +32503,9 @@
<w><t>con-temp-tu-ous</t></w>
<w><t>con-temp-tu-ous-ly</t></w>
<w><t>con-temp-tu-ous-ness</t></w>
-<w><t>con-tend</t></w>
+<w><t>con-tend</t><verb><regular-root/></verb></w>
<w><t>con-tend-ing-ly</t></w>
-<w><t>con-tent</t></w>
+<w><t>con-tent</t><noun><pluralizable/></noun><adjective/></w>
<phrase><t>con-tent word</t></phrase>
<w><t>con-tent-a-ble</t></w>
<w><t>con-tent-ed</t></w>
@@ -32546,7 +32546,7 @@
<w><t>con-ti-nence</t></w>
<w><t>con-ti-nen-cy</t></w>
<w><t>Con-ti-nent</t></w>
-<w><t>con-ti-nent</t></w>
+<w><t>con-ti-nent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Con-ti-nen-tal</t></w>
<w><t>con-ti-nen-tal</t></w>
<phrase><t>con-ti-nen-tal break-fast</t></phrase>
@@ -35276,7 +35276,7 @@
<w><t>cri-key</t></w>
<w><t>Crile</t></w>
<w><t>crim</t></w>
-<w><t>crime</t></w>
+<w><t>crime</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>crime pas-sio-nel</t></phrase>
<w><t>Cri-me-a</t></w>
<w><t>Cri-me-an</t></w>
@@ -35799,7 +35799,7 @@
<w><t>Cruik-shank</t></w>
<w><t>cruise</t></w>
<phrase><t>cruise mis-sile</t></phrase>
-<w><t>cruis-er</t></w>
+<w><t>cruis-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cruis-er-weight</t></w>
<w><t>cruise-way</t></w>
<w><t>cruis-ing</t></w>
@@ -37661,7 +37661,7 @@
<w><t>Dar-da-nus</t></w>
<w><t>Dar-dic</t></w>
<w><t>Dare</t></w>
-<w><t>dare</t></w>
+<w><t>dare</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>dare-dev-il</t></w>
<w><t>dare-dev-il-ry</t></w>
<w><t>dare-dev-il-try</t></w>
@@ -37687,7 +37687,7 @@
<phrase><t>Da-ri-us III</t></phrase>
<w><t>Da-rién</t></w>
<w><t>Dar-jee-ling</t></w>
-<w><t>dark</t></w>
+<w><t>dark</t><adjective><extensible/></adjective></w>
<phrase><t>Dark Ag-es</t></phrase>
<phrase><t>Dark Con-ti-nent</t></phrase>
<phrase><t>dark glass-es</t></phrase>
@@ -38076,7 +38076,7 @@
<w><t>deaf-mute-ness</t></w>
<w><t>deaf-ness</t></w>
<w><t>Dea-kin</t></w>
-<w><t>deal</t></w>
+<w><t>deal</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
<w><t>de-a-late</t></w>
<w><t>de-a-lat-ed</t></w>
<w><t>de-a-la-tion</t></w>
@@ -38084,9 +38084,10 @@
<w><t>deal-er-ship</t></w>
<w><t>deal-fish</t></w>
<w><t>deal-fish-es</t></w>
-<w><t>deal-ing</t></w>
+<w><t>deal-ing</t><noun><pluralizable/></noun><verb><regular-root value="false"/></verb></w>
<w><t>deal-ings</t></w>
-<w><t>dealt</t></w>
+<w><t>deals</t><verb><regular-root value="false"/></verb></w>
+<w><t>dealt</t><verb><regular-root value="false"/></verb></w>
<w><t>de-am-bu-la-to-ry</t></w>
<w><t>de-am-i-dase</t></w>
<w><t>de-am-i-nase</t></w>
@@ -38118,7 +38119,7 @@
<w><t>dear-ness</t></w>
<w><t>dearth</t></w>
<w><t>dear-y</t></w>
-<w><t>death</t></w>
+<w><t>death</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Death</t></w>
<phrase><t>death ad-der</t></phrase>
<phrase><t>death cer-ti-fi-cate</t></phrase>
@@ -39261,7 +39262,7 @@
<w><t>de-le-gal-ize</t></w>
<w><t>de-le-gal-ized</t></w>
<w><t>de-le-gal-iz-ing</t></w>
-<w><t>del-e-gate</t></w>
+<w><t>del-e-gate</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>del-e-gat-ed</t></w>
<w><t>del-e-gat-ing</t></w>
<w><t>del-e-ga-tion</t></w>
@@ -40019,7 +40020,7 @@
<w><t>de-paint</t></w>
<w><t>de-part</t></w>
<w><t>de-part-ed</t></w>
-<w><t>de-part-ment</t></w>
+<w><t>de-part-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>de-part-ment store</t></phrase>
<w><t>de-part-men-tal</t></w>
<w><t>de-part-ment-al-ise</t></w>
@@ -40187,7 +40188,7 @@
<w><t>dep-re-date</t></w>
<w><t>dep-re-dat-ed</t></w>
<w><t>dep-re-dat-ing</t></w>
-<w><t>dep-re-da-tion</t></w>
+<w><t>dep-re-da-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dep-re-da-tion-ist</t></w>
<w><t>dep-re-da-tor</t></w>
<w><t>dep-re-da-to-ry</t></w>
@@ -40218,7 +40219,7 @@
<w><t>dep-side</t></w>
<w><t>dept</t></w>
<w><t>Dept-ford</t></w>
-<w><t>depth</t></w>
+<w><t>depth</t><noun><pluralizable/></noun></w>
<phrase><t>depth of fo-cus</t></phrase>
<phrase><t>depth psy-chol-o-gy</t></phrase>
<w><t>dep-u-rate</t></w>
@@ -40536,7 +40537,7 @@
<w><t>de-sir-a-ble</t></w>
<w><t>de-sir-a-ble-ness</t></w>
<w><t>de-sir-a-bly</t></w>
-<w><t>de-sire</t></w>
+<w><t>de-sire</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>de-sired</t></w>
<w><t>de-sired-ly</t></w>
<w><t>de-sired-ness</t></w>
@@ -41758,7 +41759,7 @@
<w><t>dif-frac-tive-ness</t></w>
<w><t>dif-frac-tom-e-ter</t></w>
<w><t>dif-fu-sate</t></w>
-<w><t>dif-fuse</t></w>
+<w><t>dif-fuse</t><verb><regular-root/></verb></w>
<phrase><t>dif-fused junc-tion</t></phrase>
<w><t>dif-fus-ed-ly</t></w>
<w><t>dif-fus-ed-ness</t></w>
@@ -42506,7 +42507,7 @@
<w><t>dis-a-vow-al</t></w>
<w><t>dis-a-vow-ed-ly</t></w>
<w><t>dis-a-vow-er</t></w>
-<w><t>dis-band</t></w>
+<w><t>dis-band</t><verb><regular-root/></verb></w>
<w><t>dis-band-ment</t></w>
<w><t>dis-bar</t></w>
<w><t>dis-bar-ment</t></w>
@@ -42932,7 +42933,7 @@
<phrase><t>dish-cloth gourd</t></phrase>
<w><t>dish-clout</t></w>
<w><t>dish-cross</t></w>
-<w><t>dis-heart-en</t></w>
+<w><t>dis-heart-en</t><verb><regular-root/></verb></w>
<w><t>dis-heart-en-er</t></w>
<w><t>dis-heart-en-ing-ly</t></w>
<w><t>dis-heart-en-ment</t></w>
@@ -43138,7 +43139,7 @@
<w><t>dis-pas-sion-ate</t></w>
<w><t>dis-pas-sion-ate-ly</t></w>
<w><t>dis-pas-sion-ate-ness</t></w>
-<w><t>dis-patch</t></w>
+<w><t>dis-patch</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>dis-patch box</t></phrase>
<phrase><t>dis-patch case</t></phrase>
<phrase><t>dis-patch rid-er</t></phrase>
@@ -47644,6 +47645,7 @@
<w><t>e-lec-tion</t></w>
<w><t>e-lec-tion-eer</t></w>
<w><t>e-lec-tion-eer-er</t></w>
+<w><t>e-lec-tion-eer-ing</t><noun/></w>
<w><t>e-lec-tive</t></w>
<w><t>e-lec-tive-ly</t></w>
<w><t>e-lec-tive-ness</t></w>
@@ -49006,10 +49008,10 @@
<w><t>end-dam-age</t></w>
<w><t>end-dam-aged</t></w>
<w><t>end-dam-ag-ing</t></w>
-<w><t>en-dear</t></w>
+<w><t>en-dear</t><verb><regular-root/></verb></w>
<w><t>en-dear-ing-ly</t></w>
<w><t>en-dear-ment</t></w>
-<w><t>en-deav-or</t></w>
+<w><t>en-deav-or</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>en-deav-or-er</t></w>
<w><t>En-de-cott</t></w>
<w><t>endemic</t></w>
@@ -49416,7 +49418,7 @@
<w><t>en-larg-er</t></w>
<w><t>en-larg-ing</t></w>
<w><t>en-larg-ing-ly</t></w>
-<w><t>en-light-en</t></w>
+<w><t>en-light-en</t><verb><regular-root/></verb></w>
<w><t>en-light-ened-ly</t></w>
<w><t>en-light-ened-ness</t></w>
<w><t>en-light-en-er</t></w>
@@ -49424,7 +49426,7 @@
<w><t>En-light-en-ment</t></w>
<w><t>en-light-en-ment</t></w>
<w><t>En-lil</t></w>
-<w><t>en-list</t></w>
+<w><t>en-list</t><verb><regular-root/></verb></w>
<phrase><t>en-list-ed man</t></phrase>
<w><t>en-list-ee</t></w>
<w><t>en-list-er</t></w>
@@ -51947,7 +51949,7 @@
<w><t>e-ven-ness</t></w>
<w><t>e-vens</t></w>
<w><t>e-ven-song</t></w>
-<w><t>e-vent</t></w>
+<w><t>e-vent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>e-vent ho-ri-zon</t></phrase>
<w><t>e-vent-ful</t></w>
<w><t>e-vent-ful-ly</t></w>
@@ -52903,7 +52905,7 @@
<w><t>ex-po-nen-tial-ly</t></w>
<w><t>ex-pon-i-ble</t></w>
<w><t>ex-po-ni-ble</t></w>
-<w><t>ex-port</t></w>
+<w><t>ex-port</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>ex-port re-ject</t></phrase>
<w><t>ex-port-a-ble</t></w>
<w><t>ex-por-ta-tion</t></w>
@@ -54184,7 +54186,7 @@
<w><t>fash-ion-mon-ger</t></w>
<w><t>Fa-sho-da</t></w>
<w><t>Fass-bin-der</t></w>
-<w><t>fast</t></w>
+<w><t>fast</t><verb><regular-root/></verb><adjective><extensible/></adjective></w>
<w><t>Fast</t></w>
<phrase><t>fast mo-tion</t></phrase>
<phrase><t>fast neu-tron</t></phrase>
@@ -55725,7 +55727,7 @@
<w><t>Fir-dau-si</t></w>
<w><t>Fir-dou-si</t></w>
<w><t>Fir-du-si</t></w>
-<w><t>fire</t></w>
+<w><t>fire</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>fire a-larm</t></phrase>
<phrase><t>fire a-way</t></phrase>
<phrase><t>fire bri-gade</t></phrase>
@@ -56603,7 +56605,7 @@
<w><t>floc-cu-lent-ly</t></w>
<w><t>floc-cu-lus</t></w>
<w><t>floc-cus</t></w>
-<w><t>flock</t></w>
+<w><t>flock</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>flock-bed</t></w>
<w><t>flock-i-er</t></w>
<w><t>flock-i-est</t></w>
@@ -57386,7 +57388,7 @@
<w><t>for-borne</t></w>
<w><t>for-by</t></w>
<w><t>for-bye</t></w>
-<w><t>force</t></w>
+<w><t>force</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>force ma-jeure</t></phrase>
<w><t>force-a-ble</t></w>
<w><t>forced</t></w>
@@ -58041,6 +58043,7 @@
<phrase><t>found-er's type</t></phrase>
<w><t>foun-der-ous</t></w>
<phrase><t>foun-ders' shares</t></phrase>
+<w><t>found-ing</t><noun><convertible-to-possessive/></noun></w>
<phrase><t>found-ing fa-ther</t></phrase>
<w><t>found-ling</t></w>
<w><t>foun-drous</t></w>
@@ -59081,7 +59084,7 @@
<w><t>frug-ging</t></w>
<w><t>fru-giv-or-ous</t></w>
<w><t>fru-giv-o-rous</t></w>
-<w><t>fruit</t></w>
+<w><t>fruit</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>fruit bod-y</t></phrase>
<phrase><t>fruit cock-tail</t></phrase>
<phrase><t>fruit ma-chine</t></phrase>
@@ -63698,7 +63701,7 @@
<w><t>Gra-na-dos</t></w>
<w><t>gran-a-ry</t></w>
<w><t>gra-na-ry</t></w>
-<w><t>grand</t></w>
+<w><t>grand</t><adjective><extensible/></adjective></w>
<phrase><t>Grand Ba-ha-ma</t></phrase>
<phrase><t>Grand Ca-nal</t></phrase>
<phrase><t>Grand Ca-nar-y</t></phrase>
@@ -66961,7 +66964,7 @@
<w><t>Ha-rap-pa</t></w>
<w><t>Ha-rap-pan</t></w>
<w><t>Ha-rar</t></w>
-<w><t>har-ass</t></w>
+<w><t>har-ass</t><verb><regular-root/></verb></w>
<w><t>har-ass-a-ble</t></w>
<w><t>har-assed</t></w>
<w><t>har-assed-ly</t></w>
@@ -66989,7 +66992,7 @@
<w><t>har-bour-ous</t></w>
<w><t>har-bour-side</t></w>
<w><t>har-bour-ward</t></w>
-<w><t>hard</t></w>
+<w><t>hard</t><adjective><extensible/></adjective></w>
<phrase><t>hard ci-der</t></phrase>
<phrase><t>hard cop-y</t></phrase>
<phrase><t>hard la-bour</t></phrase>
@@ -67352,7 +67355,7 @@
<w><t>haste-ful-ly</t></w>
<w><t>haste-less</t></w>
<w><t>haste-less-ness</t></w>
-<w><t>has-ten</t></w>
+<w><t>has-ten</t><verb><regular-root/></verb></w>
<w><t>has-ten-er</t></w>
<w><t>hast-i-er</t></w>
<w><t>hast-i-est</t></w>
@@ -68050,7 +68053,7 @@
<w><t>heder</t></w>
<w><t>he-der</t></w>
<w><t>he-ders</t></w>
-<w><t>hedge</t></w>
+<w><t>hedge</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>hedge gar-lic</t></phrase>
<phrase><t>hedge hys-sop</t></phrase>
<phrase><t>hedge spar-row</t></phrase>
@@ -68807,7 +68810,7 @@
<w><t>Her-a-klid</t></w>
<w><t>Her-a-kli-dan</t></w>
<w><t>He-ra-kli-on</t></w>
-<w><t>her-ald</t></w>
+<w><t>her-ald</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>he-ral-dic</t></w>
<w><t>he-ral-di-cal-ly</t></w>
<w><t>her-ald-ist</t></w>
@@ -70157,7 +70160,7 @@
<w><t>Ho-dei-da</t></w>
<w><t>Ho-der</t></w>
<w><t>hodge</t></w>
-<w><t>Hodge</t></w>
+<w><t>Hodge</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Hodg-en-ville</t></w>
<w><t>hodge-podge</t></w>
<w><t>Hodg-es</t></w>
@@ -70997,7 +71000,7 @@
<w><t>Ho-ra-tius</t></w>
<phrase><t>Ho-ra-ti-us Co-cles</t></phrase>
<w><t>Hor-cus</t></w>
-<w><t>horde</t></w>
+<w><t>horde</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>hord-ed</t></w>
<w><t>hor-de-in</t></w>
<w><t>hor-de-o-lum</t></w>
@@ -73733,7 +73736,7 @@
<w><t>I-do-ism</t></w>
<w><t>I-do-ist</t></w>
<w><t>I-do-is-tic</t></w>
-<w><t>i-dol</t></w>
+<w><t>i-dol</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>I-do-la</t></w>
<w><t>i-dol-a-ter</t></w>
<w><t>i-dol-a-tress</t></w>
@@ -74088,7 +74091,7 @@
<w><t>il-lu-so-ry</t></w>
<w><t>illust</t></w>
<w><t>il-lus-trat-a-ble</t></w>
-<w><t>il-lus-trate</t></w>
+<w><t>il-lus-trate</t><verb><regular-root/></verb></w>
<w><t>il-lus-trat-ed</t></w>
<w><t>il-lus-trat-ing</t></w>
<w><t>il-lus-tra-tion</t></w>
@@ -78560,7 +78563,7 @@
<w><t>in-ter-po-si-tion</t></w>
<w><t>in-ter-pour</t></w>
<w><t>in-ter-pres-sure</t></w>
-<w><t>in-ter-pret</t></w>
+<w><t>in-ter-pret</t><verb><regular-root/></verb></w>
<w><t>in-ter-pret-a-bil-i-ty</t></w>
<w><t>in-ter-pret-a-ble</t></w>
<w><t>in-ter-pret-a-ble-ness</t></w>
@@ -81311,7 +81314,7 @@
<phrase><t>jeu d'es-prit</t></phrase>
<phrase><t>jeu-nesse do-r</t></phrase>
<w><t>Jev-ons</t></w>
-<w><t>Jew</t></w>
+<w><t>Jew</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Jew=bait-er</t></w>
<w><t>Jew=bait-ing</t></w>
<w><t>jew-el</t></w>
@@ -81801,7 +81804,7 @@
<w><t>jowl-i-er</t></w>
<w><t>jowl-i-est</t></w>
<w><t>jowl-y</t></w>
-<w><t>joy</t></w>
+<w><t>joy</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Joy</t></w>
<w><t>joy-ance</t></w>
<w><t>Joyce</t></w>
@@ -81885,7 +81888,7 @@
<w><t>Ju-de-an</t></w>
<w><t>Ju-dette</t></w>
<w><t>Ju-dez-mo</t></w>
-<w><t>judge</t></w>
+<w><t>judge</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>judge ad-vo-cate</t></phrase>
<phrase><t>judge ad-vo-cate gen-er-al</t></phrase>
<w><t>judge-a-ble</t></w>
@@ -84549,6 +84552,7 @@
<w><t>KWIC</t></w>
<w><t>KWOC</t></w>
<w><t>KWT</t></w>
+<w><t>Ky</t><abbrev referenced-word="Kentucky"/></w>
<w><t>Ky-ack</t></w>
<w><t>ky-ack</t></w>
<w><t>ky-ak</t></w>
@@ -87534,7 +87538,7 @@
<w><t>Li-do</t></w>
<w><t>li-do-caine</t></w>
<w><t>Lie</t></w>
-<w><t>lie</t></w>
+<w><t>lie</t><noun><pluralizable/></noun><verb><regular-root value="false"/></verb></w>
<phrase><t>lie de-tec-tor</t></phrase>
<w><t>lie=a-bed</t></w>
<w><t>lie=by</t></w>
@@ -87566,6 +87570,7 @@
<phrase><t>Lie-por Le-pa-ya</t></phrase>
<w><t>li-er</t></w>
<w><t>li-erne</t></w>
+<w><t>lies</t><verb><regular-root value="false"/></verb></w>
<w><t>li-est</t></w>
<w><t>Lies-tal</t></w>
<w><t>Li-e-tu-va</t></w>
@@ -87859,7 +87864,7 @@
<w><t>lim-i-nal</t></w>
<w><t>lim-i-ness</t></w>
<w><t>lim-ing</t></w>
-<w><t>lim-it</t></w>
+<w><t>lim-it</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>lim-it man</t></phrase>
<phrase><t>lim-it point</t></phrase>
<w><t>lim-it-a-ble</t></w>
@@ -89234,6 +89239,7 @@
<w><t>Lo-pe</t></w>
<phrase><t>Lo-pe de Ve-ga</t></phrase>
<w><t>lop-er</t></w>
+<w><t>Lo-pez</t></w>
<w><t>loph-o-branch</t></w>
<w><t>lo-pho-branch</t></w>
<w><t>loph-o-bran-chi-ate</t></w>
@@ -91906,7 +91912,7 @@
<w><t>man-u-fac-to-ry</t></w>
<w><t>man-u-fac-tur-a-ble</t></w>
<w><t>man-u-fac-tur-al</t></w>
-<w><t>man-u-fac-ture</t></w>
+<w><t>man-u-fac-ture</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>man-u-fac-tured</t></w>
<w><t>man-u-fac-tur-er</t></w>
<w><t>man-u-fac-tur-ing</t></w>
@@ -92243,7 +92249,7 @@
<w><t>mark-er</t></w>
<w><t>mark-er=off</t></w>
<w><t>mar-kers=off</t></w>
-<w><t>mar-ket</t></w>
+<w><t>mar-ket</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>mar-ket gar-den</t></phrase>
<phrase><t>mar-ket gar-den-ing</t></phrase>
<phrase><t>mar-ket mam-my</t></phrase>
@@ -92942,7 +92948,7 @@
<w><t>mat-ted</t></w>
<w><t>Mat-te-o</t></w>
<w><t>Mat-te-ot-ti</t></w>
-<w><t>mat-ter</t></w>
+<w><t>mat-ter</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>mat-ter of course</t></phrase>
<phrase><t>mat-ter of fact</t></phrase>
<w><t>mat-ter=of=fact</t></w>
@@ -95755,7 +95761,7 @@
<w><t>min-e-ver</t></w>
<w><t>Ming</t></w>
<w><t>minge</t></w>
-<w><t>min-gle</t></w>
+<w><t>min-gle</t><verb><regular-root/></verb></w>
<w><t>min-gle-ment</t></w>
<w><t>min-gler</t></w>
<w><t>Min-grel</t></w>
@@ -98459,7 +98465,7 @@
<w><t>move-less</t></w>
<w><t>move-less-ly</t></w>
<w><t>move-less-ness</t></w>
-<w><t>move-ment</t></w>
+<w><t>move-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>mov-er</t></w>
<w><t>mov-ie</t></w>
<phrase><t>mov-ie cam-er-a</t></phrase>
@@ -108888,11 +108894,11 @@
<phrase><t>of-fice hours</t></phrase>
<w><t>of-fice-hold-er</t></w>
<w><t>of-fice-less</t></w>
-<w><t>of-fic-er</t></w>
+<w><t>of-fic-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>of-fic-er of arms</t></phrase>
<w><t>of-fi-ce-ri-al</t></w>
<w><t>Of-fi-cial</t></w>
-<w><t>of-fi-cial</t></w>
+<w><t>of-fi-cial</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective/></w>
<phrase><t>Of-fi-cial Re-ceiv-er</t></phrase>
<phrase><t>Of-fi-cial Ref-er-ee</t></phrase>
<phrase><t>Of-fi-cial So-lic-i-tor</t></phrase>
@@ -113934,7 +113940,7 @@
<w><t>o-yes</t></w>
<w><t>o-yez</t></w>
<w><t>O-yo</t></w>
-<w><t>oys-ter</t></w>
+<w><t>oys-ter</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>oys-ter bed</t></phrase>
<phrase><t>oys-ter crab</t></phrase>
<phrase><t>oys-ter pink</t></phrase>
@@ -113997,6 +114003,7 @@
<w><t>o-ö-sphore</t></w>
<w><t>o-ö-spor-ic</t></w>
<w><t>o-ö-tid</t></w>
+<w><t>p</t><abbrev referenced-word="post, as in 'post meridian' or 'p. m."/></w>
<w><t>P=Celt-ic</t></w>
<phrase><t>p=n junc-tion</t></phrase>
<w><t>p=type</t></w>
@@ -115451,7 +115458,7 @@
<w><t>paren</t></w>
<w><t>pa-ren-chy-ma</t></w>
<w><t>par-en-chym-a-tous</t></w>
-<w><t>par-ent</t></w>
+<w><t>par-ent</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>par-ent-age</t></w>
<w><t>pa-ren-tal</t></w>
<w><t>Par-en-ta-li-a</t></w>
@@ -115905,8 +115912,7 @@
<w><t>pas-quin-ad-ed</t></w>
<w><t>pas-quin-ad-er</t></w>
<w><t>pas-quin-ad-ing</t></w>
-<w><t>pass</t></w>
-<w><t>pas-s</t></w>
+<w><t>pass</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>pass o-ver</t></phrase>
<w><t>pass-a-ble</t></w>
<w><t>pass-a-ble-ness</t></w>
@@ -118029,7 +118035,7 @@
<w><t>per-sist-ent-ly</t></w>
<w><t>Per-sius</t></w>
<w><t>per-snick-et-y</t></w>
-<w><t>per-son</t></w>
+<w><t>per-son</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Per-son</t></w>
<w><t>per-son=to=per-son</t></w>
<w><t>per-so-na</t></w>
@@ -119637,7 +119643,7 @@
<w><t>pie-bald</t></w>
<w><t>pie-bald-ly</t></w>
<w><t>pie-bald-ness</t></w>
-<w><t>piece</t></w>
+<w><t>piece</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>piece-meal</t></w>
<w><t>piec-er</t></w>
<w><t>piece-wise</t></w>
@@ -119938,7 +119944,7 @@
<w><t>Pin-dar-i-cal-ly</t></w>
<w><t>pind-ling</t></w>
<w><t>Pin-dus</t></w>
-<w><t>pine</t></w>
+<w><t>pine</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>pine mar-ten</t></phrase>
<phrase><t>pine nee-dle</t></phrase>
<w><t>pin-e-al</t></w>
@@ -120433,7 +120439,7 @@
<w><t>plaice</t></w>
<w><t>plaid</t></w>
<w><t>plaid-ed</t></w>
-<w><t>plain</t></w>
+<w><t>plain</t><noun><pluralizable/></noun><adjective><extensible/></adjective></w>
<phrase><t>plain choc-o-late</t></phrase>
<phrase><t>plain sail-ing</t></phrase>
<w><t>plain=spo-ken</t></w>
@@ -121560,7 +121566,8 @@
<w><t>po-lit-i-cal-ize</t></w>
<w><t>po-lit-i-cal-ized</t></w>
<w><t>po-lit-i-cal-iz-ing</t></w>
-<w><t>pol-i-ti-cian</t></w>
+<w><t>po-lit-i-cal-ly</t><adverb/></w>
+<w><t>pol-i-ti-cian</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>po-lit-i-cise</t></w>
<w><t>po-lit-i-cised</t></w>
<w><t>po-lit-i-cis-ing</t></w>
@@ -122085,7 +122092,7 @@
<w><t>poop</t></w>
<w><t>Po-o-p</t></w>
<w><t>Po-o-pó</t></w>
-<w><t>poor</t></w>
+<w><t>poor</t><adjective><extensible/></adjective></w>
<phrase><t>poor re-la-tion</t></phrase>
<w><t>poor=spir-it-ed</t></w>
<w><t>poor-house</t></w>
@@ -122162,7 +122169,7 @@
<w><t>pop-u-lar-iz-er</t></w>
<w><t>pop-u-lar-ly</t></w>
<w><t>pop-u-late</t></w>
-<w><t>pop-u-la-tion</t></w>
+<w><t>pop-u-la-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pop-u-la-tion ex-plo-sion</t></phrase>
<w><t>pop-u-la-tion-al</t></w>
<w><t>pop-u-la-tion-less</t></w>
@@ -122366,7 +122373,7 @@
<w><t>pos-ing-ly</t></w>
<w><t>pos-it</t></w>
<w><t>pos-i-tif</t></w>
-<w><t>po-si-tion</t></w>
+<w><t>po-si-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>po-si-tion ef-fect</t></phrase>
<w><t>po-si-tion-al</t></w>
<phrase><t>po-si-tion-al no-ta-tion</t></phrase>
@@ -125748,7 +125755,7 @@
<w><t>pre-pal-a-tal</t></w>
<w><t>pre-pal-a-tine</t></w>
<w><t>pre-pa-le-o-lith-ic</t></w>
-<w><t>prep-a-ra-tion</t></w>
+<w><t>prep-a-ra-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pre-par-a-tive</t></w>
<w><t>pre-par-a-tive-ly</t></w>
<w><t>pre-par-a-tor</t></w>
@@ -126502,7 +126509,7 @@
<w><t>pre-temp-ta-tion</t></w>
<w><t>pre-tence</t></w>
<w><t>pre-tence-less</t></w>
-<w><t>pre-tend</t></w>
+<w><t>pre-tend</t><verb><regular-root/></verb></w>
<w><t>pre-tend-ed</t></w>
<w><t>pre-tend-ed-ly</t></w>
<w><t>pre-tend-er</t></w>
@@ -126994,7 +127001,7 @@
<w><t>prin-ta-nier</t></w>
<w><t>prin-ta-nière</t></w>
<phrase><t>print-ed cir-cuit</t></phrase>
-<w><t>print-er</t></w>
+<w><t>print-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>print-er's dev-il</t></phrase>
<w><t>print-er-ies</t></w>
<w><t>prin-ter-like</t></w>
@@ -127409,7 +127416,7 @@
<w><t>pro-cit-y</t></w>
<w><t>pro-civ-ic</t></w>
<w><t>pro-ci-vil-ian</t></w>
-<w><t>pro-claim</t></w>
+<w><t>pro-claim</t><verb><regular-root/></verb></w>
<w><t>pro-claim-er</t></w>
<w><t>proc-la-ma-tion</t></w>
<w><t>pro-clas-si-cal</t></w>
@@ -127534,7 +127541,7 @@
<phrase><t>pro-duc-er goods</t></phrase>
<phrase><t>pro-duc-er's goods</t></phrase>
<w><t>pro-duc-ing</t></w>
-<w><t>prod-uct</t></w>
+<w><t>prod-uct</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pro-duc-tile</t></w>
<w><t>pro-duc-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pro-duc-tion line</t></phrase>
@@ -127637,7 +127644,7 @@
<w><t>prof-li-gate-ness</t></w>
<w><t>prof-lu-ent</t></w>
<w><t>pro-for-eign</t></w>
-<w><t>pro-found</t></w>
+<w><t>pro-found</t><adjective><extensible/></adjective></w>
<w><t>pro-found-ly</t></w>
<w><t>pro-found-ness</t></w>
<w><t>pro-fun-da</t></w>
@@ -128369,7 +128376,7 @@
<w><t>prot-er-o-type</t></w>
<w><t>Pro-te-ro-zo-ic</t></w>
<w><t>Pro-tes-i-la-us</t></w>
-<w><t>pro-test</t></w>
+<w><t>pro-test</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>pro-test-a-ble</t></w>
<w><t>Prot-es-tant</t></w>
<w><t>Prot-es-tant-ism</t></w>
@@ -128573,7 +128580,7 @@
<w><t>pro-vin-ci-al-i-ty</t></w>
<w><t>pro-vin-cial-ly</t></w>
<phrase><t>prov-ing ground</t></phrase>
-<w><t>pro-vi-sion</t></w>
+<w><t>pro-vi-sion</t><noun><pluralizable/></noun></w>
<w><t>pro-vi-sion-al</t></w>
<w><t>Pro-vi-sion-al</t></w>
<w><t>pro-vi-sion-al-i-ty</t></w>
@@ -129871,7 +129878,7 @@
<w><t>pur-sued</t></w>
<w><t>pur-su-er</t></w>
<w><t>pur-su-ing</t></w>
-<w><t>pur-suit</t></w>
+<w><t>pur-suit</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pur-sui-vant</t></w>
<w><t>purs-y</t></w>
<w><t>pur-sy</t></w>
@@ -132890,7 +132897,7 @@
<w><t>re-ad-dres-sing</t></w>
<w><t>re-ad-drest</t></w>
<w><t>Reade</t></w>
-<w><t>read-er</t></w>
+<w><t>read-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>read-er-ship</t></w>
<w><t>read-ied</t></w>
<w><t>read-i-er</t></w>
@@ -133128,7 +133135,7 @@
<w><t>rear-wards</t></w>
<w><t>re-as-cend</t></w>
<w><t>re-as-cent</t></w>
-<w><t>rea-son</t></w>
+<w><t>rea-son</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>rea-son-a-bil-i-ty</t></w>
<w><t>rea-son-a-ble</t></w>
<w><t>rea-son-a-ble-ness</t></w>
@@ -134779,7 +134786,7 @@
<w><t>re-fu-el-ling</t></w>
<w><t>ref-uge</t></w>
<w><t>ref-uged</t></w>
-<w><t>ref-u-gee</t></w>
+<w><t>ref-u-gee</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ref-ug-ing</t></w>
<w><t>re-fu-gi-um</t></w>
<w><t>re-ful-gence</t></w>
@@ -134904,7 +134911,7 @@
<w><t>re-gi-na</t></w>
<w><t>Re-gi-na</t></w>
<w><t>Re-gi-o-mon-ta-nus</t></w>
-<w><t>re-gion</t></w>
+<w><t>re-gion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-gion-al</t></w>
<phrase><t>re-gion-al en-ter-i-tis</t></phrase>
<w><t>re-gion-al-ism</t></w>
@@ -134994,7 +135001,7 @@
<w><t>re-gres-sive-ly</t></w>
<w><t>re-gres-sive-ness</t></w>
<w><t>re-gres-sor</t></w>
-<w><t>re-gret</t></w>
+<w><t>re-gret</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>re-gret-a-ble</t></w>
<w><t>re-gret-a-ble-ness</t></w>
<w><t>re-gret-a-bly</t></w>
@@ -135973,7 +135980,7 @@
<w><t>re-neu-tral-ize</t></w>
<w><t>re-neu-tral-ized</t></w>
<w><t>re-neu-tral-iz-ing</t></w>
-<w><t>re-new</t></w>
+<w><t>re-new</t><verb><regular-root/></verb></w>
<w><t>re-new-al</t></w>
<w><t>re-new-ed-ly</t></w>
<w><t>re-new-er</t></w>
@@ -136032,7 +136039,7 @@
<w><t>re-nown-less</t></w>
<w><t>Rens-se-laer</t></w>
<w><t>rens-se-laer-ite</t></w>
-<w><t>rent</t></w>
+<w><t>rent</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>rent-a-bil-i-ty</t></w>
<w><t>rent-a-ble</t></w>
<w><t>rent-al</t></w>
@@ -136138,6 +136145,7 @@
<w><t>re-pag-i-nat-ed</t></w>
<w><t>re-pag-i-nat-ing</t></w>
<w><t>re-pag-i-na-tion</t></w>
+<w><t>re-paid</t><verb><regular-root value="false"/></verb></w>
<w><t>re-paint</t></w>
<w><t>re-pair</t></w>
<w><t>re-pair-a-ble</t></w>
@@ -136180,9 +136188,10 @@
<w><t>re-paved</t></w>
<w><t>re-pav-ing</t></w>
<w><t>re-pawn</t></w>
-<w><t>re-pay</t></w>
+<w><t>re-pay</t><verb><regular-root value="false"/></verb></w>
<w><t>re-pay-a-ble</t></w>
<w><t>re-pay-ment</t></w>
+<w><t>re-pays</t><verb><regular-root value="false"/></verb></w>
<w><t>re-peal</t></w>
<w><t>Re-peal</t></w>
<w><t>re-peal-a-bil-i-ty</t></w>
@@ -136397,7 +136406,7 @@
<w><t>re-pre-scribe</t></w>
<w><t>re-pre-scribed</t></w>
<w><t>re-pre-scrib-ing</t></w>
-<w><t>rep-re-sent</t></w>
+<w><t>rep-re-sent</t><verb><regular-root/></verb></w>
<w><t>rep-re-sen-ta-tion</t></w>
<w><t>rep-re-sen-ta-tion-al</t></w>
<w><t>rep-re-sen-ta-tion-al-ism</t></w>
@@ -136888,7 +136897,7 @@
<w><t>res-o-lute</t></w>
<w><t>res-o-lute-ly</t></w>
<w><t>res-o-lute-ness</t></w>
-<w><t>res-o-lu-tion</t></w>
+<w><t>res-o-lu-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>res-o-lu-tion-er</t></w>
<w><t>res-o-lu-tion-ist</t></w>
<w><t>re-sol-u-tive</t></w>
@@ -138381,7 +138390,7 @@
<w><t>rif-fler</t></w>
<w><t>riff-raff</t></w>
<w><t>Rif-i</t></w>
-<w><t>ri-fle</t></w>
+<w><t>ri-fle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>rif-le green</t></phrase>
<phrase><t>ri-fle gre-nade</t></phrase>
<phrase><t>ri-fle range</t></phrase>
@@ -138551,7 +138560,7 @@
<w><t>ring-ing-ness</t></w>
<w><t>ring-lead-er</t></w>
<w><t>ring-less</t></w>
-<w><t>ring-let</t></w>
+<w><t>ring-let</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ring-let-ed</t></w>
<w><t>ring-like</t></w>
<w><t>ring-mas-ter</t></w>
@@ -138815,8 +138824,7 @@
<w><t>Rob-i-nette</t></w>
<phrase><t>rob-ing room</t></phrase>
<w><t>ro-bin-i-a</t></w>
-<w><t>Rob-in-son</t></w>
-<w><t>Ro-bin-son</t></w>
+<w><t>Rob-in-son</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ro-ble</t></w>
<w><t>Ro-bo-am</t></w>
<w><t>ro-bomb</t></w>
@@ -139846,7 +139854,7 @@
<w><t>ru-gu-lose</t></w>
<w><t>Ruhr</t></w>
<w><t>ruin</t></w>
-<w><t>ru-in</t></w>
+<w><t>ru-in</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ru-in-a-ble</t></w>
<w><t>ru-in-a-tion</t></w>
<w><t>ru-in-er</t></w>
@@ -140345,7 +140353,7 @@
<w><t>sac-ro-sci-at-ic</t></w>
<w><t>sac-rum</t></w>
<w><t>sa-crum</t></w>
-<w><t>sad</t></w>
+<w><t>sad</t><adjective><extensible/></adjective></w>
<w><t>sa-da-qat</t></w>
<w><t>Sa-dat</t></w>
<w><t>sad-den</t></w>
@@ -140498,7 +140506,7 @@
<w><t>sail=o-ver</t></w>
<w><t>sail-boat</t></w>
<w><t>sail-cloth</t></w>
-<w><t>sail-er</t></w>
+<w><t>sail-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>sail-fish</t></w>
<w><t>sail-fish-es</t></w>
<w><t>sail-ing</t></w>
@@ -142039,7 +142047,7 @@
<w><t>sca-tos-co-py</t></w>
<w><t>scatt</t></w>
<w><t>scat-ted</t></w>
-<w><t>scat-ter</t></w>
+<w><t>scat-ter</t><verb><regular-root/></verb></w>
<phrase><t>scat-ter pin</t></phrase>
<phrase><t>scat-ter rug</t></phrase>
<w><t>scat-ter=gun</t></w>
@@ -145342,7 +145350,7 @@
<w><t>sen-sum</t></w>
<w><t>sen-su-ous</t></w>
<w><t>sent</t></w>
-<w><t>sen-tence</t></w>
+<w><t>sen-tence</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>sen-tence con-nec-tor</t></phrase>
<phrase><t>sen-tence stress</t></phrase>
<phrase><t>sen-tence sub-sti-tute</t></phrase>
@@ -146131,7 +146139,7 @@
<w><t>Shai-tan</t></w>
<w><t>Sha-ka</t></w>
<w><t>shak-a-ble</t></w>
-<w><t>shake</t></w>
+<w><t>shake</t><noun><pluralizable/></noun><verb><regular-root value="false"/></verb></w>
<w><t>shake-a-ble</t></w>
<w><t>shake-down</t></w>
<w><t>shake-fork</t></w>
@@ -146320,7 +146328,7 @@
<w><t>sharp-ly</t></w>
<w><t>sharp-ness</t></w>
<w><t>Sharps-burg</t></w>
-<w><t>sharp-shoot-er</t></w>
+<w><t>sharp-shoot-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>sharp-shoot-ing</t></w>
<w><t>Sharps-ville</t></w>
<w><t>sharp-y</t></w>
@@ -146497,7 +146505,7 @@
<w><t>shel-duck</t></w>
<w><t>She-le-pin</t></w>
<w><t>shelf</t></w>
-<w><t>shell</t></w>
+<w><t>shell</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>shell jack-et</t></phrase>
<w><t>shel-lack</t></w>
<w><t>shel-lack-ing</t></w>
@@ -146707,7 +146715,7 @@
<w><t>Shin-to-is-tic</t></w>
<w><t>shin-ty</t></w>
<w><t>shin-y</t></w>
-<w><t>ship</t></w>
+<w><t>ship</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>ship chan-dler</t></phrase>
<phrase><t>ship mon-ey</t></phrase>
<phrase><t>ship's bis-cuit</t></phrase>
@@ -148600,11 +148608,11 @@
<w><t>slaugh-ter-ous-ly</t></w>
<w><t>Slav</t></w>
<w><t>slav</t></w>
-<w><t>slave</t></w>
+<w><t>slave</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>slave cyl-in-der</t></phrase>
<phrase><t>Slave Riv-er</t></phrase>
<w><t>slave=driv-er</t></w>
-<w><t>slave-hold-er</t></w>
+<w><t>slave-hold-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>slave-hold-ing</t></w>
<w><t>Sla-ven-ska</t></w>
<w><t>slav-er</t></w>
@@ -148785,7 +148793,7 @@
<w><t>slip-noose</t></w>
<w><t>slip-o-ver</t></w>
<w><t>slip-page</t></w>
-<w><t>slip-per</t></w>
+<w><t>slip-per</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>slip-per bath</t></phrase>
<phrase><t>slip-per sat-in</t></phrase>
<w><t>slip-per-i-er</t></w>
@@ -150351,8 +150359,9 @@
<w><t>sor-ri-est</t></w>
<w><t>sor-ri-ly</t></w>
<w><t>sor-ri-ness</t></w>
-<w><t>sor-row</t></w>
+<w><t>sor-row</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>sor-row-er</t></w>
+<w><t>sor-row-ful</t></w>
<w><t>sor-row-ful-ly</t></w>
<w><t>sor-row-ful-ness</t></w>
<w><t>sor-row-ing</t><adjective/></w>
@@ -150424,7 +150433,7 @@
<w><t>soul-less</t></w>
<w><t>soul-like</t></w>
<w><t>Soult</t></w>
-<w><t>sound</t></w>
+<w><t>sound</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Sound</t></w>
<phrase><t>sound bar-ri-er</t></phrase>
<phrase><t>sound ef-fect</t></phrase>
@@ -151825,7 +151834,7 @@
<w><t>spor-u-lat-ing</t></w>
<w><t>spor-u-la-tion</t></w>
<w><t>spor-ule</t></w>
-<w><t>spot</t></w>
+<w><t>spot</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>spot=on</t></w>
<w><t>spot-less</t></w>
<w><t>spot-less-ly</t></w>
@@ -151907,7 +151916,7 @@
<w><t>spright-ly</t></w>
<w><t>sprig-tail</t></w>
<w><t>spring</t></w>
-<w><t>Spring</t></w>
+<w><t>Spring</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>spring bal-ance</t></phrase>
<phrase><t>spring chick-en</t></phrase>
<phrase><t>spring fe-ver</t></phrase>
@@ -152231,7 +152240,8 @@
<w><t>sqush-i-est</t></w>
<w><t>sqush-y</t></w>
<w><t>squush</t></w>
-<w><t>Sra</t></w>
+<w><t>Sr</t><abbrev referenced-word="senior, señor"/></w>
+<w><t>Sra</t><abbrev referenced-word="señora"/></w>
<w><t>s-rac</t></w>
<w><t>Sr-bi-ja</t></w>
<w><t>SRC</t></w>
@@ -152684,7 +152694,7 @@
<w><t>stat-a-ble</t></w>
<w><t>stat-am-pere</t></w>
<w><t>sta-tant</t></w>
-<w><t>state</t></w>
+<w><t>state</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>state cap-i-tal-ism</t></phrase>
<phrase><t>State pris-on</t></phrase>
<phrase><t>state ser-vic-es</t></phrase>
@@ -152728,7 +152738,7 @@
<w><t>stat-i-cal-ly</t></w>
<w><t>stat-ics</t></w>
<w><t>stat-ing</t></w>
-<w><t>sta-tion</t></w>
+<w><t>sta-tion</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>sta-tion house</t></phrase>
<phrase><t>sta-tion wag-on</t></phrase>
<w><t>sta-tion=to=sta-tion</t></w>
@@ -154250,7 +154260,7 @@
<w><t>strong=mind-ed-ness</t></w>
<w><t>strong-bark</t></w>
<w><t>strong-box</t></w>
-<w><t>strong-hold</t></w>
+<w><t>strong-hold</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>strong-ish</t></w>
<w><t>strong-ly</t><adverb/></w>
<w><t>strong-man</t></w>
@@ -156154,7 +156164,7 @@
<w><t>suc-cu-len-cy</t></w>
<w><t>suc-cu-lent</t></w>
<w><t>suc-cu-lent-ly</t></w>
-<w><t>suc-cumb</t></w>
+<w><t>suc-cumb</t><verb><regular-root/></verb></w>
<w><t>suc-cumb-er</t></w>
<w><t>suc-cur-sal</t></w>
<w><t>suc-cuss</t></w>
@@ -157792,11 +157802,11 @@
<w><t>sup-pli-cate</t></w>
<w><t>sup-pli-cat-ed</t></w>
<w><t>sup-pli-cat-ing</t></w>
-<w><t>sup-pli-ca-tion</t></w>
+<w><t>sup-pli-ca-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>sup-pli-ca-to-ry</t></w>
<w><t>sup-plied</t></w>
<w><t>sup-pli-er</t></w>
-<w><t>sup-ply</t></w>
+<w><t>sup-ply</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>sup-ply-ing</t></w>
<w><t>sup-port</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>sup-port-a-bil-i-ty</t></w>
@@ -157972,7 +157982,7 @@
<w><t>sur-li-ness</t></w>
<w><t>sur-ly</t></w>
<w><t>sur-mis-a-ble</t></w>
-<w><t>sur-mise</t></w>
+<w><t>sur-mise</t><verb><regular-root/></verb></w>
<w><t>sur-mised-ly</t></w>
<w><t>sur-mis-er</t></w>
<w><t>sur-mount</t></w>
@@ -159533,7 +159543,7 @@
<phrase><t>talk-ing book</t></phrase>
<w><t>talk-ing=to</t></w>
<w><t>talk-y</t></w>
-<w><t>tall</t></w>
+<w><t>tall</t><adjective><extensible/></adjective></w>
<phrase><t>tall pop-py</t></phrase>
<w><t>Tal-la-de-ga</t></w>
<w><t>tal-lage</t></w>
@@ -160023,7 +160033,7 @@
<w><t>tas-sie</t></w>
<w><t>Tas-so</t></w>
<w><t>Tas-sy</t></w>
-<w><t>taste</t></w>
+<w><t>taste</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>tast-ed</t></w>
<w><t>taste-ful</t></w>
<w><t>taste-ful-ly</t></w>
@@ -160743,7 +160753,7 @@
<w><t>ten-ant-ry</t></w>
<w><t>tench</t></w>
<w><t>tench-es</t></w>
-<w><t>tend</t></w>
+<w><t>tend</t><verb><regular-root/></verb></w>
<w><t>tend-ance</t></w>
<w><t>ten-den-cious</t></w>
<w><t>ten-den-cious-ly</t></w>
@@ -161465,7 +161475,7 @@
<w><t>that</t></w>
<w><t>that's</t></w>
<w><t>that=a-way</t></w>
-<w><t>thatch</t></w>
+<w><t>thatch</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Thatch</t></w>
<w><t>That-cher</t></w>
<w><t>thatch-ing</t></w>
@@ -164045,7 +164055,7 @@
<w><t>trac-trix</t></w>
<w><t>Tra-cy</t></w>
<w><t>trad</t></w>
-<w><t>trade</t></w>
+<w><t>trade</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>trade ac-cept-ance</t></phrase>
<phrase><t>trade cy-cle</t></phrase>
<phrase><t>trade dis-count</t></phrase>
@@ -164056,7 +164066,7 @@
<w><t>trade=un-ion-ism</t></w>
<w><t>trade=un-ion-ist</t></w>
<w><t>trade-mark</t></w>
-<w><t>trad-er</t></w>
+<w><t>trad-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>trad-er-ship</t></w>
<phrase><t>trades un-ion</t></phrase>
<phrase><t>Trades Un-ion Con-gress</t></phrase>
@@ -164299,8 +164309,7 @@
<w><t>trans-ca-lent</t></w>
<w><t>Trans-cau-ca-sia</t></w>
<w><t>trans-ceiv-er</t></w>
-<w><t>trans-cend</t></w>
-<w><t>tran-scend</t></w>
+<w><t>tran-scend</t><verb><regular-root/></verb></w>
<w><t>tran-scend-ence</t></w>
<w><t>tran-scend-en-cy</t></w>
<w><t>trans-cend-ent</t></w>
@@ -165624,7 +165633,7 @@
<w><t>Trond-hjem</t></w>
<w><t>trondh-jem-ite</t></w>
<w><t>trone</t></w>
-<w><t>troop</t></w>
+<w><t>troop</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>troop car-ri-er</t></phrase>
<w><t>troop-er</t></w>
<w><t>troop-ship</t></w>
@@ -166330,7 +166339,7 @@
<w><t>Turk</t></w>
<phrase><t>Turk's=cap lil-y</t></phrase>
<w><t>Tur-ke-stan</t></w>
-<w><t>tur-key</t></w>
+<w><t>tur-key</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Tur-key</t></w>
<phrase><t>tur-key buz-zard</t></phrase>
<phrase><t>tur-key cock</t></phrase>
@@ -166592,7 +166601,7 @@
<phrase><t>twin=lens re-flex</t></phrase>
<w><t>twin-ber-ry</t></w>
<w><t>twin-born</t></w>
-<w><t>twine</t></w>
+<w><t>twine</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>twine-a-ble</t></w>
<w><t>twin-er</t></w>
<w><t>twin-flow-er</t></w>
@@ -171706,6 +171715,7 @@
<w><t>un-feel-ing-ness</t></w>
<w><t>un-feign-a-ble</t></w>
<w><t>un-feigned</t><adjective/></w>
+<w><t>un-feign-ed-ly</t><adverb/></w>
<w><t>un-feign-ing</t></w>
<w><t>un-fe-lic-i-tat-ed</t></w>
<w><t>un-fe-lic-i-tat-ing</t></w>
@@ -179422,7 +179432,7 @@
<w><t>u-shab-ti-u</t></w>
<w><t>Ush-ant</t></w>
<w><t>Ush-as</t></w>
-<w><t>ush-er</t></w>
+<w><t>ush-er</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Ush-er</t></w>
<w><t>ush-er-ette</t></w>
<w><t>USIA</t></w>
@@ -179519,7 +179529,7 @@
<w><t>U-tril-lo</t></w>
<w><t>U-tsu-no-mi-ya</t></w>
<phrase><t>Ut-tar Pra-desh</t></phrase>
-<w><t>ut-ter</t></w>
+<w><t>ut-ter</t><verb><regular-root/></verb><adjective><extensible value="false"/></adjective></w>
<phrase><t>ut-ter bar-ris-ter</t></phrase>
<w><t>ut-ter-a-ble</t></w>
<w><t>ut-ter-ance</t></w>
@@ -180829,7 +180839,7 @@
<w><t>vetch</t></w>
<w><t>vetch-like</t></w>
<w><t>vetch-ling</t></w>
-<w><t>vet-er-an</t></w>
+<w><t>vet-er-an</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>vet-er-an car</t></phrase>
<phrase><t>Vet-er-ans Day</t></phrase>
<w><t>vet-er-i-nar-i-an</t></w>
@@ -184468,7 +184478,7 @@
<phrase><t>Whit Sun-day</t></phrase>
<w><t>Whit-a-ker</t></w>
<w><t>Whit-by</t></w>
-<w><t>White</t></w>
+<w><t>White</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>white</t></w>
<phrase><t>white ad-mi-ral</t></phrase>
<phrase><t>white al-ka-li</t></phrase>
@@ -184836,7 +184846,7 @@
<w><t>Wilkes=Bar-re</t></w>
<w><t>Wil-kie</t></w>
<w><t>Wil-kins</t></w>
-<w><t>will</t></w>
+<w><t>will</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>will=less-ness</t></w>
<w><t>Wil-la-bel</t></w>
<w><t>Wil-la-belle</t></w>
@@ -185375,6 +185385,7 @@
<w><t>wkly</t></w>
<w><t>Wla-dy-slaw</t></w>
<w><t>WLM</t></w>
+<w><t>Wm</t><abbrev referenced-word="William"/></w>
<w><t>wmk</t></w>
<w><t>WMO</t></w>
<w><t>WNP</t></w>
@@ -185794,7 +185805,7 @@
<w><t>wors-er</t></w>
<w><t>wor-set</t></w>
<w><t>Wor-ship</t></w>
-<w><t>wor-ship</t></w>
+<w><t>wor-ship</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>wor-shiped</t></w>
<w><t>wor-ship-ful</t></w>
<w><t>wor-ship-ful-ly</t></w>
@@ -185921,7 +185932,7 @@
<w><t>wring</t></w>
<w><t>wring-er</t></w>
<w><t>wring-ing</t></w>
-<w><t>wrin-kle</t></w>
+<w><t>wrin-kle</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>wrin-kle-a-ble</t></w>
<w><t>wrin-kled-ness</t></w>
<w><t>wrin-kle-less</t></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-24 21:25:04 UTC (rev 12690)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-25 15:23:29 UTC (rev 12691)
@@ -4,7 +4,7 @@
PUBLIC "-//aXSL//DTD Dictionary V0.1//EN"
"http://www.axsl.org/dtds/0.1/en/axsl-dictionary.dtd">
-<axsl-dictionary language="ita" script="Latn" hard-hyphen-char="="
+<axsl-dictionary language="lat" script="Latn" hard-hyphen-char="="
soft-hyphen-char="-">
<!--
@@ -11,6 +11,8 @@
-->
<w><t>ann-um</t></w>
+<w><t>bel-li</t></w>
+<w><t>ca-sus</t></w>
<w><t>et</t></w>
<w><t>fit</t></w>
<w><t>in</t></w>
@@ -17,7 +19,9 @@
<w><t>in-fi-del-i-um</t></w>
<w><t>nas-ci-tur</t></w>
<w><t>non</t></w>
+<w><t>pa-ra-tus</t></w>
<w><t>part-i-bus</t></w>
<w><t>per</t></w>
+<w><t>sem-per</t></w>
</axsl-dictionary>
Modified: trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-24 21:25:04 UTC (rev 12690)
+++ trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-25 15:23:29 UTC (rev 12691)
@@ -16,6 +16,7 @@
<match desc="English ordinal ending in 3">^[0-9]*3r?d$"</match>
<match desc="English ordinal ending in 0 or 4 thru 9">^[0-9]*[04-9]th$</match>
<match desc="A single capital letter, such as a person's initial">^[A-Z]$</match>
+ <match desc="Contracted year">^’[0-9]+$</match>
</match-rule-list>
<derivative-pattern-list id="eng-Latn-derivative-patterns">
@@ -171,6 +172,22 @@
<derivative-type type="superlative" desc="single-syllable root"/>
</derivative-rule>
</derivative-pattern>
+ <derivative-pattern desc="ends with certain double consonants, then /-er/">
+ <match>^([a-zA-Z\-]+)([d])(\2)er$</match>
+ <replace>$1$2</replace>
+ <derivative-rule>
+ <adjective><extensible/></adjective>
+ <derivative-type type="comparative"/>
+ </derivative-rule>
+ </derivative-pattern>
+ <derivative-pattern desc="ends with certain double consonants, then /-est/">
+ <match>^([a-zA-Z\-]+)([d])(\2)est$</match>
+ <replace>$1$2</replace>
+ <derivative-rule>
+ <adjective><extensible/></adjective>
+ <derivative-type type="superlative"/>
+ </derivative-rule>
+ </derivative-pattern>
</derivative-pattern-list>
<derivative-factory-list id="eng-Latn-derivatives">
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-24 21:25:04 UTC (rev 12690)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-25 15:23:29 UTC (rev 12691)
@@ -152,7 +152,7 @@
/** The list of elements that should never be straddled by a word. */
private List<String> elementTerminalList = Arrays.asList(new String[] {"Para", "Sidenote", "Signature", "EmDash",
"PoetryLine", "Title", "Subtitle", "Dateline", "TitlePara", "TitleAbbrev", "LineBreak", "CopyrightDate",
- "BookmarkTitle"});
+ "BookmarkTitle", "Addressee", "EnDash"});
/** Map whose key is elements that are actually tokens for text, and whose value is that text. */
private Map<String, String> textElementMap = new HashMap<String, String>();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-24 21:25:07
|
Revision: 12690
http://sourceforge.net/p/foray/code/12690
Author: victormote
Date: 2022-06-24 21:25:04 +0000 (Fri, 24 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-24 12:24:13 UTC (rev 12689)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-24 21:25:04 UTC (rev 12690)
@@ -912,7 +912,7 @@
<w><t>ac-com-plish-a-ble</t></w>
<w><t>ac-com-plished</t></w>
<w><t>ac-com-plish-er</t></w>
-<w><t>ac-com-plish-ment</t></w>
+<w><t>ac-com-plish-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ac-compt</t></w>
<w><t>ac-cord</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ac-cord-a-ble</t></w>
@@ -1975,7 +1975,7 @@
<w><t>ad-min</t></w>
<w><t>ad-min-i-cle</t></w>
<w><t>ad-mi-nic-u-lar</t></w>
-<w><t>ad-min-is-ter</t></w>
+<w><t>ad-min-is-ter</t><verb><regular-root/></verb></w>
<w><t>ad-min-is-tra-ble</t></w>
<w><t>ad-min-is-trant</t></w>
<w><t>ad-min-is-trate</t></w>
@@ -9575,7 +9575,7 @@
<w><t>ar-range</t></w>
<w><t>ar-range-a-ble</t></w>
<w><t>ar-ranged</t></w>
-<w><t>ar-range-ment</t></w>
+<w><t>ar-range-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ar-rang-er</t></w>
<w><t>ar-rang-ing</t></w>
<w><t>ar-rant</t></w>
@@ -13125,7 +13125,7 @@
<w><t>ban-jo</t></w>
<w><t>ban-jo-ist</t></w>
<w><t>Ban-jul</t></w>
-<w><t>bank</t></w>
+<w><t>bank</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>bank ac-cept-ance</t></phrase>
<phrase><t>bank ac-count</t></phrase>
<phrase><t>bank an-nu-i-ties</t></phrase>
@@ -14281,7 +14281,7 @@
<w><t>bean-stalk</t></w>
<w><t>bean-y</t></w>
<w><t>Bear</t></w>
-<w><t>bear</t></w>
+<w><t>bear</t><noun><singular/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
<phrase><t>bear gar-den</t></phrase>
<w><t>bear's=breech-es</t></w>
<w><t>bear=bait-ing</t></w>
@@ -15110,7 +15110,7 @@
<w><t>ben-e-fi-ci-at-ed</t></w>
<w><t>ben-e-fi-ci-at-ing</t></w>
<w><t>Ben-e-fit</t></w>
-<w><t>ben-e-fit</t></w>
+<w><t>ben-e-fit</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>ben-e-fit as-so-ci-a-tion</t></phrase>
<phrase><t>ben-e-fit of cler-gy</t></phrase>
<w><t>ben-e-fit-ed</t></w>
@@ -15530,7 +15530,7 @@
<w><t>be-stir</t></w>
<w><t>be-stirred</t></w>
<w><t>be-stir-ring</t></w>
-<w><t>be-stow</t></w>
+<w><t>be-stow</t><verb><regular-root/></verb></w>
<w><t>be-stow-al</t></w>
<w><t>be-stow-ment</t></w>
<w><t>be-strad-dle</t></w>
@@ -25736,7 +25736,7 @@
<w><t>chap-er-on-less</t></w>
<w><t>chap-fall-en</t></w>
<w><t>chap-i-ter</t></w>
-<w><t>chap-lain</t></w>
+<w><t>chap-lain</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>chap-lain-cy</t></w>
<w><t>chap-lain-ry</t></w>
<w><t>chap-lain-ship</t></w>
@@ -28676,7 +28676,7 @@
<w><t>clem-ming</t></w>
<w><t>Clem-my</t></w>
<w><t>Clem-on</t></w>
-<w><t>clench</t></w>
+<w><t>clench</t><verb><regular-root/></verb></w>
<w><t>Cle-o</t></w>
<w><t>Cle-o-bis</t></w>
<w><t>Cle-o-bu-lus</t></w>
@@ -28703,7 +28703,8 @@
<w><t>clere-sto-ry</t></w>
<w><t>cler-gy</t></w>
<w><t>cler-gy-like</t></w>
-<w><t>cler-gy-man</t></w>
+<w><t>cler-gy-man</t><noun><singular/><convertible-to-possessive/></noun></w>
+<w><t>cler-gy-men</t><noun><plural/><convertible-to-possessive/></noun></w>
<w><t>cler-ic</t></w>
<w><t>cler-i-cal</t></w>
<phrase><t>cler-i-cal col-lar</t></phrase>
@@ -30000,7 +30001,7 @@
<w><t>col-lect-ed-ness</t></w>
<w><t>col-lect-i-bil-i-ty</t></w>
<w><t>col-lect-i-ble</t></w>
-<w><t>col-lec-tion</t></w>
+<w><t>col-lec-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>col-lec-tion-al</t></w>
<w><t>col-lec-tive</t></w>
<phrase><t>col-lec-tive bar-gain-ing</t></phrase>
@@ -30028,7 +30029,7 @@
<w><t>col-lec-tor-ship</t></w>
<w><t>col-leen</t></w>
<w><t>Col-leen</t></w>
-<w><t>col-lege</t></w>
+<w><t>col-lege</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>col-lege of arms</t></phrase>
<phrase><t>Col-lege of Car-di-nals</t></phrase>
<phrase><t>col-lege of ed-u-ca-tion</t></phrase>
@@ -32009,7 +32010,7 @@
<w><t>con-nat-u-ral-ly</t></w>
<w><t>con-nat-u-ral-ness</t></w>
<w><t>Con-naught</t></w>
-<w><t>con-nect</t></w>
+<w><t>con-nect</t><verb><regular-root/></verb></w>
<w><t>con-nect-a-ble</t></w>
<w><t>con-nect-ed</t></w>
<w><t>con-nect-ed-ly</t></w>
@@ -32916,7 +32917,7 @@
<w><t>con-vex-o=con-cave</t></w>
<w><t>con-vex-o=con-vex</t></w>
<w><t>con-vex-o=plane</t></w>
-<w><t>con-vey</t></w>
+<w><t>con-vey</t><verb><regular-root/></verb></w>
<w><t>con-vey-a-ble</t></w>
<w><t>con-vey-ance</t></w>
<w><t>con-vey-anc-er</t></w>
@@ -33693,7 +33694,7 @@
<w><t>cor-rel-a-tive-ness</t></w>
<w><t>cor-rel-a-tiv-i-ty</t></w>
<w><t>cor-ren-te</t></w>
-<w><t>cor-re-spond</t></w>
+<w><t>cor-re-spond</t><verb><regular-root/></verb></w>
<w><t>cor-re-spond-ence</t></w>
<phrase><t>cor-re-spond-ence col-umn</t></phrase>
<phrase><t>cor-re-spond-ence school</t></phrase>
@@ -35348,7 +35349,7 @@
<w><t>cri-o-sphinx-es</t></w>
<w><t>cripes</t></w>
<w><t>Crip-pen</t></w>
-<w><t>crip-ple</t></w>
+<w><t>crip-ple</t><verb><regular-root/></verb></w>
<phrase><t>Crip-ple Creek</t></phrase>
<w><t>crip-pler</t></w>
<w><t>crip-pling</t></w>
@@ -35413,7 +35414,7 @@
<w><t>crit-ic-as-ter</t></w>
<w><t>crit-ic-as-ter-ism</t></w>
<w><t>crit-ic-as-try</t></w>
-<w><t>crit-i-cise</t></w>
+<w><t>crit-i-cise</t><verb><regular-root/></verb></w>
<w><t>crit-i-cised</t></w>
<w><t>crit-i-cis-er</t></w>
<w><t>crit-i-cis-ing</t></w>
@@ -35420,7 +35421,7 @@
<w><t>crit-i-cis-ing-ly</t></w>
<w><t>crit-i-cism</t></w>
<w><t>crit-i-ciz-a-ble</t></w>
-<w><t>crit-i-cize</t></w>
+<w><t>crit-i-cize</t><verb><regular-root/></verb></w>
<w><t>crit-i-cized</t></w>
<w><t>crit-i-ciz-er</t></w>
<w><t>crit-i-ciz-ing</t></w>
@@ -39462,7 +39463,7 @@
<w><t>dem-a-gogu-ism</t></w>
<w><t>dem-a-gog-y</t></w>
<w><t>dem-a-go-gy</t></w>
-<w><t>de-mand</t></w>
+<w><t>de-mand</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>de-mand bill</t></phrase>
<phrase><t>de-mand de-pos-it</t></phrase>
<phrase><t>de-mand loan</t></phrase>
@@ -40406,7 +40407,7 @@
<w><t>des-cant</t></w>
<w><t>des-cant-er</t></w>
<w><t>Des-cartes</t></w>
-<w><t>de-scend</t></w>
+<w><t>de-scend</t><verb><regular-root/></verb></w>
<w><t>de-scend-a-bil-i-ty</t></w>
<w><t>de-scend-a-ble</t></w>
<w><t>de-scend-ant</t></w>
@@ -40734,7 +40735,7 @@
<w><t>de-tach-ed-ness</t></w>
<w><t>de-tach-er</t></w>
<w><t>de-tach-ment</t></w>
-<w><t>de-tail</t></w>
+<w><t>de-tail</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>de-tail draw-ing</t></phrase>
<w><t>de-tailed</t></w>
<w><t>de-tailed-ly</t></w>
@@ -41715,7 +41716,7 @@
<w><t>di-e-ti-tian</t></w>
<w><t>Die-trich</t></w>
<w><t>diff</t></w>
-<w><t>dif-fer</t></w>
+<w><t>dif-fer</t><verb><regular-root/></verb></w>
<w><t>dif-fer-ence</t></w>
<w><t>dif-fer-enced</t></w>
<w><t>dif-fer-enc-ing</t></w>
@@ -49291,7 +49292,7 @@
<w><t>en-gine</t></w>
<phrase><t>en-gine driv-er</t></phrase>
<phrase><t>en-gine room</t></phrase>
-<w><t>en-gi-neer</t></w>
+<w><t>en-gi-neer</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>en-gi-neer-ing</t></w>
<w><t>en-gi-neer-ing-ly</t></w>
<w><t>en-gine-less</t></w>
@@ -49397,7 +49398,7 @@
<w><t>en-keph-a-lin</t></w>
<w><t>En-ki</t></w>
<w><t>En-ki-du</t></w>
-<w><t>en-kin-dle</t></w>
+<w><t>en-kin-dle</t><verb><regular-root/></verb></w>
<w><t>en-kin-dler</t></w>
<w><t>en-kol-pi-a</t></w>
<w><t>en-kol-pi-on</t></w>
@@ -50502,7 +50503,7 @@
<phrase><t>e-qui-noc-tial point</t></phrase>
<phrase><t>e-qui-noc-tial year</t></phrase>
<w><t>e-qui-nox</t></w>
-<w><t>e-quip</t></w>
+<w><t>e-quip</t><verb><regular-root/></verb></w>
<w><t>eq-ui-page</t></w>
<w><t>eq-ui-par-ti-tion</t></w>
<w><t>e-quip-ment</t></w>
@@ -50617,7 +50618,7 @@
<w><t>E-rech-the-um</t></w>
<w><t>E-rech-theus</t></w>
<w><t>E-rech-the-us</t></w>
-<w><t>e-rect</t></w>
+<w><t>e-rect</t><verb><regular-root/></verb></w>
<w><t>e-rect-a-ble</t></w>
<w><t>e-rect-er</t></w>
<w><t>e-rec-tile</t></w>
@@ -50957,7 +50958,7 @@
<w><t>Es-con-di-do</t></w>
<w><t>es-con-son</t></w>
<w><t>Es-co-ri-al</t></w>
-<w><t>es-cort</t></w>
+<w><t>es-cort</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>e-scribe</t></w>
<w><t>e-scribed</t></w>
<w><t>e-scrib-ing</t></w>
@@ -53871,7 +53872,7 @@
<w><t>fam-i-list</t></w>
<w><t>fam-i-lis-tic</t></w>
<w><t>fa-mille</t></w>
-<w><t>fam-i-ly</t></w>
+<w><t>fam-i-ly</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>fam-i-ly al-low-ance</t></phrase>
<phrase><t>fam-i-ly Bi-ble</t></phrase>
<phrase><t>fam-i-ly cir-cle</t></phrase>
@@ -56741,7 +56742,7 @@
<w><t>flot-sam</t></w>
<w><t>flounce</t></w>
<w><t>flounc-ing</t></w>
-<w><t>floun-der</t></w>
+<w><t>floun-der</t><noun/><verb><regular-root/></verb></w>
<w><t>floun-der-ing-ly</t></w>
<w><t>flour</t></w>
<w><t>flour-ish</t><verb><regular-root/></verb></w>
@@ -57995,7 +57996,7 @@
<w><t>fos-sor</t></w>
<w><t>fos-so-ri-al</t></w>
<w><t>fos-su-la</t></w>
-<w><t>fos-ter</t></w>
+<w><t>fos-ter</t><verb><regular-root/></verb></w>
<w><t>Fos-ter</t></w>
<phrase><t>fos-ter child</t></phrase>
<w><t>fos-ter-age</t></w>
@@ -58035,6 +58036,7 @@
<w><t>foun-da-tion-al</t></w>
<w><t>foun-da-tion-al-ly</t></w>
<w><t>foun-da-tion-ar-y</t></w>
+<w><t>found-ed</t><verb><regular-root value="false"/></verb></w>
<w><t>found-er</t></w>
<phrase><t>found-er's type</t></phrase>
<w><t>foun-der-ous</t></w>
@@ -62079,7 +62081,7 @@
<w><t>Glad-bach=Rheydt</t></w>
<w><t>Glad-beck</t></w>
<w><t>glad-ded</t></w>
-<w><t>glad-den</t></w>
+<w><t>glad-den</t><verb><regular-root/></verb></w>
<w><t>glad-den-er</t></w>
<w><t>glad-der</t></w>
<w><t>glad-dest</t></w>
@@ -64410,7 +64412,7 @@
<w><t>Grier-son</t></w>
<w><t>grie-shoch</t></w>
<w><t>griev-ance</t></w>
-<w><t>grieve</t></w>
+<w><t>grieve</t><verb><regular-root/></verb></w>
<w><t>griev-ed-ly</t></w>
<w><t>griev-er</t></w>
<w><t>griev-ing</t></w>
@@ -68158,7 +68160,7 @@
<w><t>hei-nous-ly</t></w>
<w><t>hei-nous-ness</t></w>
<w><t>Hein-rich</t></w>
-<w><t>heir</t></w>
+<w><t>heir</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>heir ap-par-ent</t></phrase>
<phrase><t>heir pre-sump-tive</t></phrase>
<w><t>heir-dom</t></w>
@@ -71902,7 +71904,7 @@
<w><t>hurl-y=burl-y</t></w>
<w><t>Hu-rok</t></w>
<w><t>Hu-ron</t></w>
-<w><t>hur-rah</t></w>
+<w><t>hur-rah</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>hur-ray</t></w>
<w><t>Hur-ri</t></w>
<w><t>Hur-ri-an</t></w>
@@ -74948,7 +74950,7 @@
<w><t>im-prov-a-bly</t></w>
<w><t>im-prove</t></w>
<w><t>im-proved</t></w>
-<w><t>im-prove-ment</t></w>
+<w><t>im-prove-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>im-prov-er</t></w>
<w><t>im-prov-i-dence</t></w>
<w><t>im-prov-i-dent</t></w>
@@ -75846,7 +75848,7 @@
<phrase><t>In-di-a print</t></phrase>
<phrase><t>In-di-a rub-ber</t></phrase>
<w><t>In-di-a-man</t></w>
-<w><t>In-di-an</t></w>
+<w><t>In-di-an</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>In-di-an a-gent</t></phrase>
<phrase><t>In-di-an bread</t></phrase>
<phrase><t>In-di-an chol-er-a</t></phrase>
@@ -76781,7 +76783,7 @@
<w><t>in-hab-it-a-ble</t></w>
<w><t>in-hab-it-ance</t></w>
<w><t>in-hab-it-an-cy</t></w>
-<w><t>in-hab-it-ant</t></w>
+<w><t>in-hab-it-ant</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-hab-i-ta-tion</t></w>
<w><t>in-hab-it-ed</t></w>
<w><t>in-hab-it-ed-ness</t></w>
@@ -77433,7 +77435,7 @@
<w><t>In-sti-tutes</t></w>
<w><t>in-sti-tutes</t></w>
<w><t>in-sti-tut-ing</t></w>
-<w><t>in-sti-tu-tion</t></w>
+<w><t>in-sti-tu-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-sti-tu-tion-al</t></w>
<w><t>in-sti-tu-tion-al-ise</t></w>
<w><t>in-sti-tu-tion-al-ised</t></w>
@@ -79296,7 +79298,7 @@
<w><t>in-ves-ti-ga-to-ry</t></w>
<w><t>in-ves-ti-tive</t></w>
<w><t>in-ves-ti-ture</t></w>
-<w><t>in-vest-ment</t></w>
+<w><t>in-vest-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>in-vest-ment trust</t></phrase>
<w><t>in-ves-tor</t></w>
<w><t>in-vet-er-a-cy</t></w>
@@ -80299,7 +80301,7 @@
<w><t>i-so-typ-ic</t></w>
<w><t>i-so-typ-i-cal</t></w>
<w><t>Is-pa-han</t></w>
-<w><t>Is-ra-el</t></w>
+<w><t>Is-ra-el</t><noun><convertible-to-possessive/></noun></w>
<w><t>Is-rae-li</t></w>
<w><t>Is-ra-el-ite</t></w>
<w><t>Is-ra-el-it-ic</t></w>
@@ -81609,7 +81611,7 @@
<phrase><t>Jo-hore Bah-ru</t></phrase>
<w><t>Joi-a-da</t></w>
<phrase><t>joie de vi-vre</t></phrase>
-<w><t>join</t></w>
+<w><t>join</t><verb><regular-root/></verb></w>
<w><t>join-a-ble</t></w>
<w><t>join-der</t></w>
<w><t>join-er</t></w>
@@ -82042,7 +82044,7 @@
<phrase><t>junc-tion box</t></phrase>
<phrase><t>junc-tion tran-sis-tor</t></phrase>
<w><t>junc-tion-al</t></w>
-<w><t>junc-ture</t></w>
+<w><t>junc-ture</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Jun-dia-i</t></w>
<w><t>jun-died</t></w>
<w><t>jun-dy</t></w>
@@ -86249,7 +86251,7 @@
<w><t>lead-en</t></w>
<w><t>lead-en-ly</t></w>
<w><t>lead-en-ness</t></w>
-<w><t>lead-er</t></w>
+<w><t>lead-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>lead-er-less</t></w>
<w><t>lead-er-ship</t></w>
<w><t>lead-i-er</t></w>
@@ -87611,7 +87613,7 @@
<w><t>life-work</t></w>
<w><t>Lif-fey</t></w>
<w><t>LIFO</t></w>
-<w><t>lift</t></w>
+<w><t>lift</t><verb><regular-root/></verb></w>
<w><t>lift-a-ble</t></w>
<w><t>lift-boy</t></w>
<w><t>lift-er</t></w>
@@ -88562,7 +88564,7 @@
<w><t>li-vid-i-ty</t></w>
<w><t>liv-id-ly</t></w>
<w><t>liv-id-ness</t></w>
-<w><t>liv-ing</t></w>
+<w><t>liv-ing</t><noun><pluralizable/></noun></w>
<phrase><t>liv-ing death</t></phrase>
<phrase><t>liv-ing fos-sil</t></phrase>
<phrase><t>liv-ing pic-ture</t></phrase>
@@ -91831,7 +91833,7 @@
<w><t>man-rope</t></w>
<w><t>man-sard</t></w>
<w><t>Man-sart</t></w>
-<w><t>manse</t></w>
+<w><t>manse</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>man-serv-ant</t></w>
<w><t>man-ser-vant</t></w>
<w><t>Mans-field</t></w>
@@ -93580,7 +93582,7 @@
<w><t>mee</t></w>
<w><t>Mee</t></w>
<w><t>meed</t></w>
-<w><t>meek</t></w>
+<w><t>meek</t><adjective><extensible/></adjective></w>
<w><t>meek-ly</t></w>
<w><t>meek-ness</t></w>
<w><t>Meer</t></w>
@@ -94238,7 +94240,7 @@
<w><t>mer-e-tri-cious-ly</t></w>
<w><t>mer-e-tri-cious-ness</t></w>
<w><t>mer-gan-ser</t></w>
-<w><t>merge</t></w>
+<w><t>merge</t><verb><regular-root/></verb></w>
<w><t>merg-er</t></w>
<w><t>mer-ger</t></w>
<w><t>merg-ing</t></w>
@@ -96528,7 +96530,7 @@
<w><t>mis-rul-ing</t></w>
<w><t>mis-run</t></w>
<w><t>Miss</t></w>
-<w><t>miss</t></w>
+<w><t>miss</t><verb><regular-root/></verb></w>
<w><t>mis-sa</t></w>
<w><t>mis-sal</t></w>
<w><t>mis-sam-ple</t></w>
@@ -96568,7 +96570,8 @@
<w><t>Mis-so-lon-ghi</t></w>
<w><t>mis-sort</t></w>
<w><t>mis-sound</t></w>
-<w><t>Mis-sour-i</t></w>
+<w><t>Mis-sou-ri</t><noun><convertible-to-possessive/></noun></w>
+<w><t>Mis-sour-i-an</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective/></w>
<w><t>Mis-sour-is</t></w>
<w><t>mis-space</t></w>
<w><t>mis-spaced</t></w>
@@ -96924,7 +96927,7 @@
<w><t>mod-al-ly</t></w>
<w><t>mod-at-ed</t></w>
<w><t>mod-at-ing</t></w>
-<w><t>mode</t></w>
+<w><t>mode</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>mod-el</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>mod-el-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<!--<w><t>mod-el-ler</t></w>-->
@@ -97214,7 +97217,7 @@
<w><t>Mom-ba-sa</t></w>
<w><t>mome</t></w>
<w><t>Mo-mence</t></w>
-<w><t>mo-ment</t></w>
+<w><t>mo-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>mo-ment of in-er-tia</t></phrase>
<phrase><t>mo-ment of truth</t></phrase>
<w><t>mo-men-tar-i-ly</t></w>
@@ -99155,6 +99158,7 @@
<w><t>mus-cle-less</t></w>
<w><t>mus-cle-man</t></w>
<w><t>mus-cly</t></w>
+<w><t>Mus-co-gee</t><noun/></w>
<w><t>mus-co-va-do</t></w>
<w><t>Mus-co-vite</t></w>
<w><t>mus-co-vite</t></w>
@@ -100140,7 +100144,7 @@
<w><t>na-tion-al-ly</t></w>
<w><t>na-tion-hood</t></w>
<w><t>na-tion-wide</t></w>
-<w><t>na-tive</t></w>
+<w><t>na-tive</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective/></w>
<phrase><t>na-tive bear</t></phrase>
<phrase><t>na-tive oak</t></phrase>
<phrase><t>na-tive speak-er</t></phrase>
@@ -100547,7 +100551,7 @@
<w><t>Ne-gau-nee</t></w>
<w><t>Neg-eb</t></w>
<w><t>Neg-ev</t></w>
-<w><t>ne-glect</t></w>
+<w><t>ne-glect</t><verb><regular-root/></verb></w>
<w><t>ne-glect-ed-ly</t></w>
<w><t>ne-glect-ed-ness</t></w>
<w><t>ne-glect-er</t></w>
@@ -108257,7 +108261,7 @@
<w><t>ob-la-to-ry</t></w>
<w><t>ob-li-ga-ble</t></w>
<w><t>ob-li-gate</t></w>
-<w><t>ob-li-ga-tion</t></w>
+<w><t>ob-li-ga-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ob-li-ga-to</t></w>
<w><t>ob-li-ga-tor</t></w>
<w><t>ob-lig-a-to-ri-ly</t></w>
@@ -108855,7 +108859,7 @@
<w><t>Of-fen-bach</t></w>
<w><t>of-fence</t></w>
<w><t>of-fence-less</t></w>
-<w><t>of-fend</t></w>
+<w><t>of-fend</t><verb><regular-root/></verb></w>
<w><t>of-fend-a-ble</t></w>
<w><t>of-fend-ed-ly</t></w>
<w><t>of-fend-ed-ness</t></w>
@@ -109646,7 +109650,7 @@
<w><t>op-er-at-ic</t></w>
<phrase><t>op-er-at-ing ta-ble</t></phrase>
<phrase><t>op-er-at-ing the-a-tre</t></phrase>
-<w><t>op-er-a-tion</t></w>
+<w><t>op-er-a-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>op-er-a-tion-al</t></w>
<w><t>op-er-a-tion-al-ism</t></w>
<w><t>op-er-a-tion-ism</t></w>
@@ -110089,7 +110093,7 @@
<w><t>or-gan-ist</t></w>
<w><t>or-gan-iz-a-bil-i-ty</t></w>
<w><t>or-gan-iz-a-ble</t></w>
-<w><t>or-gan-i-za-tion</t></w>
+<w><t>or-gan-i-za-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>or-gan-i-za-tion man</t></phrase>
<w><t>or-gan-i-za-tion-al</t></w>
<w><t>or-gan-i-za-tion-al-ly</t></w>
@@ -110273,7 +110277,7 @@
<w><t>o-ro-tun-di-ty</t></w>
<w><t>O-ro-ville</t></w>
<w><t>O-roz-co</t></w>
-<w><t>or-phan</t></w>
+<w><t>or-phan</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>or-phan-age</t></w>
<w><t>or-phan-hood</t></w>
<w><t>or-phar-i-on</t></w>
@@ -112332,6 +112336,7 @@
<w><t>o-ver-draught</t></w>
<w><t>o-ver-draw</t></w>
<w><t>o-ver-draw-er</t></w>
+<w><t>o-ver-drawn</t><adjective/></w>
<w><t>o-ver-dredge</t></w>
<w><t>o-ver-dredged</t></w>
<w><t>o-ver-dredg-ing</t></w>
@@ -113784,7 +113789,7 @@
<w><t>ov-ver-ir-ri-gate</t></w>
<w><t>ov-ver-ir-ri-gat-ed</t></w>
<w><t>ov-ver-ir-ri-gat-ing</t></w>
-<w><t>owe</t></w>
+<w><t>owe</t><verb><regular-root/></verb></w>
<w><t>ow-el-ty</t></w>
<w><t>Ow-en</t></w>
<phrase><t>Ow-en Stan-ley Range</t></phrase>
@@ -116411,7 +116416,7 @@
<phrase><t>Pax Ro-ma-na</t></phrase>
<w><t>Pax-ton</t></w>
<w><t>pax-wax</t></w>
-<w><t>pay</t></w>
+<w><t>pay</t><noun/><verb><regular-root/></verb></w>
<w><t>pay=TV</t></w>
<w><t>pay-a-ble</t></w>
<w><t>pay-a-bly</t></w>
@@ -119914,7 +119919,7 @@
<w><t>pin-ball</t></w>
<phrase><t>pin-cer move-ment</t></phrase>
<w><t>pin-cers</t></w>
-<w><t>pinch</t></w>
+<w><t>pinch</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<phrase><t>pinch ef-fect</t></phrase>
<w><t>pinch-a-ble</t></w>
<w><t>pinch-beck</t></w>
@@ -120795,7 +120800,7 @@
<w><t>Pleas-an-ton</t></w>
<w><t>pleas-ant-ry</t></w>
<w><t>Pleas-ant-ville</t></w>
-<w><t>please</t></w>
+<w><t>please</t><verb><regular-root/></verb></w>
<w><t>pleas-ed-ly</t></w>
<w><t>pleas-ed-ness</t></w>
<w><t>pleas-er</t></w>
@@ -121084,7 +121089,7 @@
<w><t>plun-der</t></w>
<w><t>plun-der-a-ble</t></w>
<w><t>plun-der-age</t></w>
-<w><t>plunge</t></w>
+<w><t>plunge</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>plung-er</t></w>
<w><t>plung-ing</t></w>
<w><t>plunk</t></w>
@@ -122054,7 +122059,7 @@
<phrase><t>Pon-tus Eux-i-nus</t></phrase>
<w><t>Pon-ty-pool</t></w>
<w><t>Pon-ty-pridd</t></w>
-<w><t>po-ny</t></w>
+<w><t>po-ny</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>po-ny ex-press</t></phrase>
<phrase><t>po-ny trek-king</t></phrase>
<w><t>po-ny-ing</t></w>
@@ -122304,7 +122309,7 @@
<w><t>por-tiered</t></w>
<phrase><t>Por-ti-le de Fier</t></phrase>
<w><t>Por-ti-na-ri</t></w>
-<w><t>por-tion</t></w>
+<w><t>por-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>por-tion-a-ble</t></w>
<w><t>por-tion-er</t></w>
<w><t>por-tion-less</t></w>
@@ -123450,7 +123455,7 @@
<w><t>pre-ac-cus-tom</t></w>
<w><t>pre-ac-e-tab-u-lar</t></w>
<w><t>preach</t><verb><regular-root/></verb></w>
-<w><t>preach-er</t></w>
+<w><t>preach-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Preach-er</t></w>
<w><t>preach-i-er</t></w>
<w><t>preach-i-est</t></w>
@@ -126105,9 +126110,8 @@
<w><t>pres-byt-er-ate</t></w>
<w><t>pres-by-ter-i-al</t></w>
<w><t>pres-by-te-ri-al</t></w>
-<w><t>Pres-by-ter-i-an</t></w>
-<w><t>pres-by-ter-i-an</t></w>
-<w><t>pres-by-te-ri-an</t></w>
+<w><t>Pres-by-te-ri-an</t></w>
+<w><t>pres-by-te-ri-an</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pres-by-ter-ies</t></w>
<w><t>pres-by-ter-y</t></w>
<w><t>pre-scho-las-tic</t></w>
@@ -128286,7 +128290,7 @@
<w><t>pro-sto-mi-ate</t></w>
<w><t>pro-sto-mi-um</t></w>
<w><t>pro-sto-on</t></w>
-<w><t>pros-trate</t></w>
+<w><t>pros-trate</t><verb><regular-root/></verb></w>
<w><t>pros-tra-tion</t></w>
<w><t>pros-tra-tive</t></w>
<w><t>pros-tra-tor</t></w>
@@ -128325,7 +128329,7 @@
<w><t>pro-te-a</t></w>
<w><t>pro-te-an</t></w>
<w><t>pro-te-ase</t></w>
-<w><t>pro-tect</t></w>
+<w><t>pro-tect</t><verb><regular-root/></verb></w>
<w><t>pro-tect-ing</t></w>
<w><t>pro-tect-ing-lyrmal</t></w>
<w><t>pro-tec-tion</t></w>
@@ -130451,7 +130455,7 @@
<w><t>quak-y</t></w>
<w><t>qua-le</t></w>
<w><t>qual-i-fi-a-ble</t></w>
-<w><t>qual-i-fi-ca-tion</t></w>
+<w><t>qual-i-fi-ca-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>qual-i-fi-ca-tor</t></w>
<w><t>qual-i-fi-ca-to-ry</t></w>
<w><t>qual-i-fied</t></w>
@@ -132083,7 +132087,7 @@
<w><t>rail-ing</t></w>
<w><t>rail-ing-ly</t></w>
<w><t>rail-ler-y</t></w>
-<w><t>rail-road</t></w>
+<w><t>rail-road</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>rail-road-er</t></w>
<w><t>rail-road-ing</t></w>
<w><t>rail-way</t></w>
@@ -132131,7 +132135,7 @@
<w><t>rain-y</t></w>
<phrase><t>rain-y day</t></phrase>
<w><t>rais-a-ble</t></w>
-<w><t>raise</t></w>
+<w><t>raise</t><verb><regular-root/></verb></w>
<w><t>raise-a-ble</t></w>
<w><t>raised</t></w>
<w><t>rais-er</t></w>
@@ -133052,7 +133056,7 @@
<w><t>re-an-tag-o-niz-ing</t></w>
<w><t>reap</t></w>
<w><t>reap-a-ble</t></w>
-<w><t>reap-er</t></w>
+<w><t>reap-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-a-pol-o-gize</t></w>
<w><t>re-a-pol-o-gized</t></w>
<w><t>re-a-pol-o-giz-ing</t></w>
@@ -133304,10 +133308,11 @@
<w><t>re-buff</t></w>
<w><t>re-buff-a-ble</t></w>
<w><t>re-buff-a-bly</t></w>
-<w><t>re-build</t></w>
+<w><t>re-build</t><verb><regular-root value="false"/></verb></w>
<w><t>re-build-ed</t></w>
<w><t>re-build-er</t></w>
<w><t>re-build-ing</t></w>
+<w><t>re-built</t><verb><regular-root value="false"/></verb></w>
<w><t>re-buke</t></w>
<w><t>re-buked</t></w>
<w><t>re-buk-ing</t></w>
@@ -134042,7 +134047,7 @@
<w><t>re-deem-a-ble-ness</t></w>
<w><t>re-deem-a-bly</t></w>
<w><t>Re-deem-er</t></w>
-<w><t>re-deem-er</t></w>
+<w><t>re-deem-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-deem-ing</t></w>
<w><t>re-de-feat</t></w>
<w><t>re-de-fied</t></w>
@@ -136936,7 +136941,7 @@
<w><t>re-spec-i-fied</t></w>
<w><t>re-spec-i-fy</t></w>
<w><t>re-spec-i-fy-ing</t></w>
-<w><t>re-spect</t><noun><pluralizable/></noun></w>
+<w><t>re-spect</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>re-spect-a-bil-i-ty</t></w>
<w><t>re-spect-a-ble</t></w>
<w><t>re-spect-er</t></w>
@@ -138252,7 +138257,7 @@
<w><t>ri-cer-ca-ri</t></w>
<w><t>ri-cer-ca-ta</t></w>
<w><t>Rich</t></w>
-<w><t>rich</t></w>
+<w><t>rich</t><adjective><extensible/></adjective></w>
<w><t>Rich-ard</t></w>
<w><t>Ri-chard</t></w>
<phrase><t>Rich-ard I</t></phrase>
@@ -138583,7 +138588,7 @@
<w><t>rip-cord</t></w>
<w><t>ripe</t></w>
<w><t>ripe-ly</t></w>
-<w><t>rip-en</t></w>
+<w><t>rip-en</t><verb><regular-root/></verb></w>
<w><t>ripe-ness</t></w>
<w><t>ri-pid-o-lite</t></w>
<w><t>ri-pie-no</t></w>
@@ -140317,7 +140322,7 @@
<phrase><t>sa-cred cow</t></phrase>
<phrase><t>Sa-cred Heart</t></phrase>
<phrase><t>sa-cred mush-room</t></phrase>
-<w><t>sac-ri-fice</t></w>
+<w><t>sac-ri-fice</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>sac-ri-fice-a-ble</t></w>
<w><t>sac-ri-fic-er</t></w>
<w><t>sac-ri-fi-cial</t></w>
@@ -142123,7 +142128,7 @@
<w><t>sche-ma-tis-ing</t></w>
<w><t>sche-ma-tism</t></w>
<w><t>sche-ma-tize</t></w>
-<w><t>scheme</t></w>
+<w><t>scheme</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>scheme-ful</t></w>
<w><t>scheme-less</t></w>
<w><t>schem-er</t></w>
@@ -142517,7 +142522,7 @@
<w><t>scorch-ing-ly</t></w>
<w><t>scor-da-tu-ra</t></w>
<w><t>scor-da-tu-re</t></w>
-<w><t>score</t></w>
+<w><t>score</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>score-board</t></w>
<w><t>score-card</t></w>
<w><t>score-keep-er</t></w>
@@ -143215,7 +143220,7 @@
<w><t>sec-tar-y</t></w>
<w><t>sec-ta-ry</t></w>
<w><t>sec-tile</t></w>
-<w><t>sec-tion</t></w>
+<w><t>sec-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>sec-tion mark</t></phrase>
<w><t>sec-tion-al</t></w>
<w><t>sec-tion-al-ise</t></w>
@@ -143321,7 +143326,7 @@
<w><t>sed-u-lous-ly</t></w>
<w><t>sed-u-lous-ness</t></w>
<w><t>se-dum</t></w>
-<w><t>see</t></w>
+<w><t>see</t><verb><regular-root value="false"/></verb></w>
<phrase><t>see a-bout</t></phrase>
<phrase><t>see in-to</t></phrase>
<phrase><t>see o-ver</t></phrase>
@@ -143376,6 +143381,7 @@
<w><t>se-er</t></w>
<w><t>seer-ess</t></w>
<w><t>seer-suck-er</t></w>
+<w><t>sees</t><verb><regular-root value="false"/></verb></w>
<w><t>see-saw</t></w>
<w><t>seethe</t></w>
<w><t>seeth-ing-ly</t></w>
@@ -143461,7 +143467,7 @@
<w><t>Seis-tan</t></w>
<w><t>sei-sure</t></w>
<w><t>seiz-a-ble</t></w>
-<w><t>seize</t></w>
+<w><t>seize</t><verb><regular-root/></verb></w>
<w><t>seiz-er</t></w>
<w><t>sei-zin</t></w>
<w><t>seiz-ing</t></w>
@@ -145723,7 +145729,7 @@
<w><t>serv</t></w>
<w><t>serv-a-ble</t></w>
<w><t>ser-val</t></w>
-<w><t>serv-ant</t></w>
+<w><t>serv-ant</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>serv-ant-less</t></w>
<w><t>serv-ant-like</t></w>
<w><t>serve</t><noun></noun><verb><regular-root/></verb></w>
@@ -148930,7 +148936,7 @@
<w><t>sluic-ing</t></w>
<w><t>sluit</t></w>
<w><t>slum</t></w>
-<w><t>slum-ber</t></w>
+<w><t>slum-ber</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>slum-ber par-ty</t></phrase>
<w><t>slum-ber-er</t></w>
<w><t>slum-ber-land</t></w>
@@ -149431,7 +149437,7 @@
<w><t>snout-ed</t></w>
<w><t>snout-less</t></w>
<w><t>snout-like</t></w>
-<w><t>snow</t></w>
+<w><t>snow</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Snow</t></w>
<phrase><t>snow bunt-ing</t></phrase>
<phrase><t>snow dev-il</t></phrase>
@@ -150149,7 +150155,7 @@
<w><t>Sond-heim</t></w>
<w><t>Son-dra</t></w>
<w><t>sone</t></w>
-<w><t>song</t></w>
+<w><t>song</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>song cy-cle</t></phrase>
<phrase><t>Song of Sol-o-mon</t></phrase>
<w><t>song-bird</t></w>
@@ -150943,7 +150949,7 @@
<w><t>spec-i-fi-er</t></w>
<w><t>spec-i-fy</t></w>
<w><t>spec-i-fy-ing</t></w>
-<w><t>spec-i-men</t></w>
+<w><t>spec-i-men</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>spe-ci-os-i-ty</t></w>
<w><t>spe-cious</t></w>
<w><t>spe-cious-ly</t></w>
@@ -152245,6 +152251,7 @@
<w><t>SSR</t></w>
<w><t>SST</t></w>
<w><t>SSW</t></w>
+<w><t>st</t><abbrev referenced-word="street or saint"/></w>
<phrase><t>St An-drew's Cross</t></phrase>
<phrase><t>St An-drews</t></phrase>
<w><t>St=Ger-main=des=Prés</t></w>
@@ -152862,7 +152869,7 @@
<w><t>steam=shov-el</t></w>
<w><t>steam=tur-bine</t></w>
<w><t>steam-boat</t></w>
-<w><t>steam-er</t></w>
+<w><t>steam-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>steam-er-less</t></w>
<w><t>steam-ie</t></w>
<w><t>steam-i-er</t></w>
@@ -153048,7 +153055,7 @@
<w><t>Sten-tor</t></w>
<w><t>sten-to-ri-an</t></w>
<w><t>sten-to-ri-ous-ly</t></w>
-<w><t>step</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>step</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>step=and=re-peat</t></w>
<w><t>step=in</t></w>
<w><t>step=on</t></w>
@@ -154300,7 +154307,7 @@
<w><t>struc-ture-less-ness</t></w>
<w><t>struc-tur-ing</t></w>
<w><t>stru-del</t></w>
-<w><t>strug-gle</t></w>
+<w><t>strug-gle</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>strug-gle for ex-ist-ence</t></phrase>
<w><t>strug-gler</t></w>
<w><t>strug-gling-ly</t></w>
@@ -156306,7 +156313,7 @@
<w><t>sug-ar-plum</t></w>
<w><t>sug-ar-y</t></w>
<w><t>sugg</t></w>
-<w><t>sug-gest</t></w>
+<w><t>sug-gest</t><verb><regular-root/></verb></w>
<w><t>sug-gest-ed-ness</t></w>
<w><t>sug-gest-er</t></w>
<w><t>sug-gest-i-bil-i-ty</t></w>
@@ -156568,7 +156575,7 @@
<w><t>sum-mit-al</t></w>
<w><t>sum-mit-less</t></w>
<w><t>sum-mit-ry</t></w>
-<w><t>sum-mon</t></w>
+<w><t>sum-mon</t><verb><regular-root/></verb></w>
<w><t>sum-mon-a-ble</t></w>
<w><t>sum-mon-er</t></w>
<w><t>sum-mons</t></w>
@@ -158734,7 +158741,7 @@
<w><t>sym-pa-thised</t></w>
<w><t>sym-pa-this-er</t></w>
<w><t>sym-pa-this-ing</t></w>
-<w><t>sym-pa-thize</t></w>
+<w><t>sym-pa-thize</t><verb><regular-root/></verb></w>
<w><t>sym-pa-thiz-er</t></w>
<w><t>sym-pa-thiz-ing-ly</t></w>
<w><t>sym-pa-tho-lyt-ic</t></w>
@@ -159491,7 +159498,7 @@
<w><t>tale</t></w>
<w><t>tale-bear-er</t></w>
<w><t>tale-bear-ing</t></w>
-<w><t>tal-ent</t></w>
+<w><t>tal-ent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>tal-ent scout</t></phrase>
<w><t>tal-ent-ed</t></w>
<w><t>ta-ler</t></w>
@@ -160227,7 +160234,7 @@
<w><t>teach-er-less</t></w>
<w><t>teach-er-ship</t></w>
<w><t>teach-es</t><verb><regular-root value="false"/></verb></w>
-<w><t>teach-ing</t></w>
+<w><t>teach-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>teach-ing aid</t></phrase>
<phrase><t>teach-ing fel-low</t></phrase>
<phrase><t>teach-ing ma-chine</t></phrase>
@@ -162226,8 +162233,8 @@
<w><t>thread-y</t></w>
<w><t>threap</t></w>
<w><t>threap-er</t></w>
-<w><t>threat</t></w>
-<w><t>threat-en</t></w>
+<w><t>threat</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>threat-en</t><verb><regular-root/></verb></w>
<w><t>threat-en-er</t></w>
<w><t>threat-en-ing-ly</t></w>
<w><t>threat-ful</t></w>
@@ -163817,7 +163824,7 @@
<w><t>Tou-louse</t></w>
<w><t>Tou-louse=Lau-trec</t></w>
<w><t>tou-pee</t></w>
-<w><t>tour</t></w>
+<w><t>tour</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Tou-r</t></w>
<w><t>tou-ra-co</t></w>
<w><t>Tou-raine</t></w>
@@ -163895,7 +163902,7 @@
<w><t>tow-mond</t></w>
<w><t>tow-mont</t></w>
<w><t>Town</t></w>
-<w><t>town</t></w>
+<w><t>town</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>town cri-er</t></phrase>
<phrase><t>town meet-ing</t></phrase>
<phrase><t>town plan-ning</t></phrase>
@@ -164132,7 +164139,7 @@
<w><t>trail-ing-ly</t></w>
<w><t>trail-less</t></w>
<w><t>trails-man</t></w>
-<w><t>train</t></w>
+<w><t>train</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>train spot-ter</t></phrase>
<w><t>train-a-ble</t></w>
<w><t>train-band</t></w>
@@ -180784,7 +180791,7 @@
<w><t>ves-pid</t></w>
<w><t>ves-pine</t></w>
<w><t>Ves-puc-ci</t></w>
-<w><t>ves-sel</t></w>
+<w><t>ves-sel</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ves-seled</t></w>
<w><t>ves-selled</t></w>
<w><t>vest</t></w>
@@ -180927,7 +180934,7 @@
<w><t>vic-ar-ly</t></w>
<w><t>vic-ars=gen-er-al</t></w>
<w><t>Vice</t></w>
-<w><t>vice</t></w>
+<w><t>vice</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>vi-ce</t></w>
<phrase><t>vice ad-mi-ral</t></phrase>
<phrase><t>vice chan-cel-lor</t></phrase>
@@ -181139,7 +181146,7 @@
<w><t>Vil-la=Lo-bos</t></w>
<w><t>Vil-lach</t></w>
<w><t>vil-la-dom</t></w>
-<w><t>vil-lage</t></w>
+<w><t>vil-lage</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>vil-lage col-lege</t></phrase>
<w><t>vil-lage-less</t></w>
<w><t>vil-lag-er</t></w>
@@ -181900,7 +181907,7 @@
<w><t>vol-un-tar-y</t></w>
<w><t>vol-un-tar-y-ism</t></w>
<w><t>vol-un-tar-y-ist</t></w>
-<w><t>vol-un-teer</t></w>
+<w><t>vol-un-teer</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>Vol-un-teers of A-mer-i-ca</t></phrase>
<w><t>Vo-lup-tas</t></w>
<w><t>vo-lup-tu-ar-ies</t></w>
@@ -182000,7 +182007,7 @@
<phrase><t>vox an-gel-i-ca</t></phrase>
<phrase><t>vox hu-ma-na</t></phrase>
<phrase><t>vox po-pu-li</t></phrase>
-<w><t>voy-age</t></w>
+<w><t>voy-age</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>voy-ag-er</t></w>
<w><t>vo-ya-geur</t></w>
<w><t>vo-yeur</t></w>
@@ -182258,7 +182265,7 @@
<w><t>waist-ed</t></w>
<w><t>waist-er</t></w>
<w><t>waist-line</t></w>
-<w><t>wait</t></w>
+<w><t>wait</t><verb><regular-root/></verb></w>
<w><t>Waite</t></w>
<w><t>wait-er</t></w>
<w><t>wait-ewoman</t></w>
@@ -182348,7 +182355,7 @@
<w><t>walk-y=talk-y</t></w>
<w><t>Wal-kyr-ie</t></w>
<w><t>Wal-kü-re</t></w>
-<w><t>wall</t></w>
+<w><t>wall</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>wall creep-er</t></phrase>
<phrase><t>wall liz-ard</t></phrase>
<phrase><t>wall mus-tard</t></phrase>
@@ -183070,7 +183077,7 @@
<w><t>we'll</t></w>
<w><t>we're</t></w>
<w><t>we've</t></w>
-<w><t>weak</t></w>
+<w><t>weak</t><adjective><extensible/></adjective></w>
<phrase><t>weak in-ter-ac-tion</t></phrase>
<phrase><t>weak sis-ter</t></phrase>
<w><t>weak=head-ed</t></w>
@@ -184696,7 +184703,7 @@
<w><t>widg-ie</t></w>
<w><t>wid-ish</t></w>
<w><t>Wid-nes</t></w>
-<w><t>wid-ow</t></w>
+<w><t>wid-ow</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>wid-ow bird</t></phrase>
<phrase><t>wid-ow's ben-e-fit</t></phrase>
<phrase><t>wid-ow's cruse</t></phrase>
@@ -185219,15 +185226,14 @@
<phrase><t>Wis-dom of Sol-o-mon</t></phrase>
<phrase><t>wis-dom tooth</t></phrase>
<w><t>wis-dom-less</t></w>
-<w><t>wise</t></w>
+<w><t>wise</t><adjective><extensible/></adjective></w>
<w><t>Wise</t></w>
<w><t>wise-a-cre</t></w>
<w><t>wise-crack</t></w>
+<w><t>wise-ly</t><adverb/></w>
<w><t>Wise-man</t></w>
<w><t>wis-en-heim-er</t></w>
<w><t>wi-sent</t></w>
-<w><t>wis-er</t></w>
-<w><t>wis-est</t></w>
<w><t>wish</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>wish ful-fil-ment</t></phrase>
<w><t>wish-bone</t></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-24 12:24:13 UTC (rev 12689)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-24 21:25:04 UTC (rev 12690)
@@ -10,8 +10,14 @@
<!--
-->
+<w><t>ann-um</t></w>
+<w><t>et</t></w>
+<w><t>fit</t></w>
<w><t>in</t></w>
<w><t>in-fi-del-i-um</t></w>
+<w><t>nas-ci-tur</t></w>
+<w><t>non</t></w>
<w><t>part-i-bus</t></w>
+<w><t>per</t></w>
</axsl-dictionary>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-24 12:24:16
|
Revision: 12689
http://sourceforge.net/p/foray/code/12689
Author: victormote
Date: 2022-06-24 12:24:13 +0000 (Fri, 24 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-22 21:41:11 UTC (rev 12688)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-24 12:24:13 UTC (rev 12689)
@@ -2650,7 +2650,7 @@
<w><t>af-fix-ture</t></w>
<w><t>af-flat-ed</t></w>
<w><t>af-fla-tus</t></w>
-<w><t>af-flict</t></w>
+<w><t>af-flict</t><verb><regular-root/></verb></w>
<w><t>af-flict-ed-ness</t></w>
<w><t>af-flict-er</t></w>
<w><t>af-flic-tion</t></w>
@@ -3481,7 +3481,7 @@
<w><t>al=Uz-za</t></w>
<w><t>a-la</t></w>
<w><t>A-la</t></w>
-<w><t>Al-a-bam-a</t></w>
+<w><t>Al-a-bam-a</t><noun><convertible-to-possessive/></noun></w>
<w><t>Al-a-bam-i-an</t></w>
<w><t>al-a-bam-ine</t></w>
<w><t>al-a-ban-dite</t></w>
@@ -6526,7 +6526,7 @@
<w><t>an-ni-hi-la-tive</t></w>
<w><t>an-ni-hi-la-tor</t></w>
<w><t>An-nis-ton</t></w>
-<w><t>an-ni-ver-sa-ry</t></w>
+<w><t>an-ni-ver-sa-ry</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>An-ni-ver-sa-ry Day</t></phrase>
<phrase><t>an-no Dom-i-ni</t></phrase>
<phrase><t>an-no reg-ni</t></phrase>
@@ -8512,7 +8512,7 @@
<w><t>ap-pog-gia-tu-ra</t></w>
<w><t>ap-pog-gia-tu-ras</t></w>
<w><t>ap-pog-gia-tu-re</t></w>
-<w><t>ap-point</t></w>
+<w><t>ap-point</t><verb><regular-root/></verb></w>
<w><t>ap-point-a-ble</t></w>
<w><t>ap-point-ed</t></w>
<w><t>ap-point-ee</t></w>
@@ -10304,7 +10304,7 @@
<w><t>as-sid-u-ous</t></w>
<w><t>as-sid-u-ous-ly</t></w>
<w><t>as-sid-u-ous-ness</t></w>
-<w><t>as-sign</t></w>
+<w><t>as-sign</t><verb><regular-root/></verb></w>
<w><t>as-sign-a-bil-i-ty</t></w>
<w><t>as-sign-a-ble</t></w>
<w><t>as-sign-a-bly</t></w>
@@ -21014,7 +21014,7 @@
<w><t>bush-craft</t></w>
<w><t>bushed</t></w>
<w><t>Bush-el</t></w>
-<w><t>bush-el</t></w>
+<w><t>bush-el</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>bush-el-bas-ket</t></w>
<w><t>bush-eled</t></w>
<w><t>bush-el-er</t></w>
@@ -28289,7 +28289,7 @@
<w><t>clad-o-phyll</t></w>
<w><t>clad-op-to-sis</t></w>
<w><t>Clai-borne</t></w>
-<w><t>claim</t></w>
+<w><t>claim</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>claim=jump-er</t></w>
<w><t>claim=jump-ing</t></w>
<w><t>claim-ant</t></w>
@@ -28480,8 +28480,8 @@
<w><t>class-i-ness</t></w>
<w><t>clas-sis</t></w>
<w><t>class-less</t></w>
-<w><t>class-mate</t></w>
-<w><t>class-room</t></w>
+<w><t>class-mate</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>class-room</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>class-work</t></w>
<w><t>class-y</t></w>
<w><t>clas-tic</t></w>
@@ -29300,7 +29300,7 @@
<w><t>coars-er</t></w>
<w><t>coars-est</t></w>
<w><t>co-ar-tic-u-la-tion</t></w>
-<w><t>coast</t></w>
+<w><t>coast</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>Coast Moun-tains</t></phrase>
<w><t>coast-al</t></w>
<w><t>coast-al-ly</t></w>
@@ -31335,7 +31335,7 @@
<w><t>con-cern-ing-ly</t></w>
<w><t>con-cern-ing-ness</t></w>
<w><t>con-cern-ment</t></w>
-<w><t>con-cert</t></w>
+<w><t>con-cert</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>con-cert grand</t></phrase>
<phrase><t>con-cert o-ver-ture</t></phrase>
<phrase><t>con-cert pitch</t></phrase>
@@ -32734,7 +32734,7 @@
<w><t>con-tri-bute</t></w>
<w><t>con-tri-but-ed</t></w>
<w><t>con-tri-but-ing</t></w>
-<w><t>con-tri-bu-tion</t></w>
+<w><t>con-tri-bu-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>con-tri-bu-tion-al</t></w>
<w><t>con-trib-u-tive</t></w>
<w><t>con-trib-u-tive-ly</t></w>
@@ -38753,7 +38753,7 @@
<w><t>deed-less</t></w>
<w><t>dee-jay</t></w>
<w><t>deek</t></w>
-<w><t>deem</t></w>
+<w><t>deem</t><verb><regular-root/></verb></w>
<w><t>de-em-pha-sis</t></w>
<w><t>Deems</t></w>
<w><t>deem-ster</t></w>
@@ -39668,7 +39668,7 @@
<w><t>dem-on-strat-ed</t></w>
<w><t>dem-on-strat-ed-ly</t></w>
<w><t>dem-on-strat-ing</t></w>
-<w><t>dem-on-stra-tion</t></w>
+<w><t>dem-on-stra-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>dem-on-stra-tion-al</t></w>
<w><t>de-mon-stra-tive</t></w>
<w><t>de-mon-stra-tive-ly</t></w>
@@ -40574,7 +40574,7 @@
<w><t>des-o-lat-er</t></w>
<w><t>des-o-lat-ing</t></w>
<w><t>des-o-lat-ing-ly</t></w>
-<w><t>des-o-la-tion</t></w>
+<w><t>des-o-la-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>des-o-la-tor</t></w>
<w><t>de-sorb</t></w>
<w><t>de-sorp-tion</t></w>
@@ -40623,7 +40623,7 @@
<w><t>des-pit-e-ous-ly</t></w>
<w><t>de-spit-ing</t></w>
<w><t>Des-poe-na</t></w>
-<w><t>de-spoil</t></w>
+<w><t>de-spoil</t><verb><regular-root/></verb></w>
<w><t>de-spoil-er</t></w>
<w><t>de-spoil-ment</t></w>
<w><t>de-spo-li-a-tion</t></w>
@@ -40677,7 +40677,7 @@
<w><t>de-stool</t></w>
<w><t>de-stool-ment</t></w>
<w><t>des-tri-er</t></w>
-<w><t>de-stroy</t></w>
+<w><t>de-stroy</t><verb><regular-root/></verb></w>
<w><t>de-stroy-a-ble</t></w>
<w><t>de-stroy-er</t></w>
<phrase><t>de-stroy-er es-cort</t></phrase>
@@ -43634,7 +43634,7 @@
<w><t>dis-trib-u-tive-ness</t></w>
<w><t>dis-trib-u-tor</t></w>
<w><t>dis-trib-u-tor-ship</t></w>
-<w><t>dis-trict</t></w>
+<w><t>dis-trict</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>dis-trict at-tor-ney</t></phrase>
<phrase><t>dis-trict court</t></phrase>
<phrase><t>Dis-trict of Co-lum-bi-a</t></phrase>
@@ -47075,7 +47075,7 @@
<w><t>E-dir-ne</t></w>
<w><t>Ed-i-son</t></w>
<w><t>edit</t></w>
-<w><t>ed-it</t></w>
+<w><t>ed-it</t><verb><regular-root/></verb></w>
<w><t>E-dith</t></w>
<w><t>E-dithe</t></w>
<phrase><t>e-di-ti-o prin-ceps</t></phrase>
@@ -49213,7 +49213,7 @@
<w><t>en-er-giz-er</t></w>
<w><t>en-er-giz-ing</t></w>
<w><t>en-er-gu-men</t></w>
-<w><t>en-er-gy</t></w>
+<w><t>en-er-gy</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>en-er-gy band</t></phrase>
<phrase><t>en-er-gy lev-el</t></phrase>
<w><t>en-er-vate</t></w>
@@ -49271,7 +49271,7 @@
<w><t>en-gag-ed-ly</t></w>
<w><t>en-gag-ed-ness</t></w>
<w><t>en-ga-gee</t></w>
-<w><t>en-gage-ment</t></w>
+<w><t>en-gage-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>en-gage-ment ring</t></phrase>
<w><t>en-gag-er</t></w>
<w><t>en-gag-ing</t></w>
@@ -49514,7 +49514,7 @@
<w><t>en-reg-is-ter</t></w>
<w><t>en-reg-is-tra-tion</t></w>
<w><t>En-ri-ca</t></w>
-<w><t>en-rich</t></w>
+<w><t>en-rich</t><verb><regular-root/></verb></w>
<w><t>en-rich-er</t></w>
<w><t>en-rich-ing-ly</t></w>
<w><t>en-rich-ment</t></w>
@@ -50306,7 +50306,7 @@
<w><t>e-pis-te-mol-o-gy</t></w>
<w><t>ep-i-ster-num</t></w>
<w><t>E-pis-tle</t></w>
-<w><t>e-pis-tle</t></w>
+<w><t>e-pis-tle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>e-pis-tler</t></w>
<w><t>e-pis-to-lar-y</t></w>
<w><t>e-pis-to-ler</t></w>
@@ -52530,7 +52530,7 @@
<w><t>ex-hil-a-ra-tor</t></w>
<w><t>ex-hil-a-ra-to-ry</t></w>
<w><t>ex-hort</t></w>
-<w><t>ex-hor-ta-tion</t></w>
+<w><t>ex-hor-ta-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ex-hor-ta-tive</t></w>
<w><t>ex-hor-ta-tive-ly</t></w>
<w><t>ex-hor-ta-to-ry</t></w>
@@ -52761,7 +52761,7 @@
<w><t>ex-pel-ler</t></w>
<w><t>ex-pel-lers</t></w>
<w><t>ex-pel-ling</t></w>
-<w><t>ex-pend</t></w>
+<w><t>ex-pend</t><verb><regular-root/></verb></w>
<w><t>ex-pend-a-bil-i-ty</t></w>
<w><t>ex-pend-a-ble</t></w>
<w><t>ex-pend-er</t></w>
@@ -53761,7 +53761,7 @@
<phrase><t>Falk-land Is-lands De-pend-en-cies</t></phrase>
<w><t>Falk-ner</t></w>
<w><t>Fall</t></w>
-<w><t>fall</t></w>
+<w><t>fall</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root value="false"/></verb></w>
<phrase><t>fall a-bout</t></phrase>
<phrase><t>fall a-mong</t></phrase>
<phrase><t>fall a-way</t></phrase>
@@ -56744,7 +56744,7 @@
<w><t>floun-der</t></w>
<w><t>floun-der-ing-ly</t></w>
<w><t>flour</t></w>
-<w><t>flour-ish</t></w>
+<w><t>flour-ish</t><verb><regular-root/></verb></w>
<w><t>flour-ish-er</t></w>
<w><t>flour-ish-ing</t></w>
<w><t>flour-ish-ing-ly</t></w>
@@ -59341,7 +59341,7 @@
<w><t>fu-nam-bu-lism</t></w>
<w><t>fu-nam-bu-list</t></w>
<w><t>Fun-chal</t></w>
-<w><t>func-tion</t></w>
+<w><t>func-tion</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>func-tion shift</t></phrase>
<phrase><t>func-tion word</t></phrase>
<w><t>func-tion-al</t></w>
@@ -64177,6 +64177,7 @@
<w><t>greave</t></w>
<w><t>greaves</t></w>
<w><t>grebe</t></w>
+<w><t>Gre-bo</t><noun><convertible-to-possessive/></noun></w>
<w><t>gre-ca-le</t></w>
<w><t>Gre-cian</t></w>
<w><t>Gre-cise</t></w>
@@ -70566,7 +70567,7 @@
<w><t>ho-mil-i-ar-ies</t></w>
<w><t>ho-mil-i-ar-y</t></w>
<w><t>hom-i-list</t></w>
-<w><t>hom-i-ly</t></w>
+<w><t>hom-i-ly</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>hom-i-ness</t></w>
<w><t>hom-ing</t></w>
<phrase><t>hom-ing guid-ance</t></phrase>
@@ -74454,7 +74455,7 @@
<w><t>im-pac-tion</t></w>
<w><t>im-pact-ite</t></w>
<w><t>im-pac-tive</t></w>
-<w><t>im-pair</t></w>
+<w><t>im-pair</t><verb><regular-root/></verb></w>
<w><t>im-pair-a-ble</t></w>
<w><t>im-pair-er</t></w>
<w><t>im-pair-ment</t></w>
@@ -76029,7 +76030,7 @@
<w><t>in-di-vert-i-ble</t></w>
<w><t>in-di-vert-i-bly</t></w>
<w><t>individ</t></w>
-<w><t>in-di-vid-u-al</t></w>
+<w><t>in-di-vid-u-al</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-di-vid-u-al-ise</t></w>
<w><t>in-di-vid-u-al-ised</t></w>
<w><t>in-di-vid-u-al-is-er</t></w>
@@ -77272,7 +77273,7 @@
<w><t>in-sip-i-ence</t></w>
<w><t>in-sip-i-ent</t></w>
<w><t>in-sip-i-ent-ly</t></w>
-<w><t>in-sist</t></w>
+<w><t>in-sist</t><verb><regular-root/></verb></w>
<w><t>in-sist-ence</t></w>
<w><t>in-sist-en-cy</t></w>
<w><t>in-sist-ent</t></w>
@@ -78867,7 +78868,7 @@
<phrase><t>in-ter-ver-te-bral disc</t></phrase>
<w><t>in-ter-ver-te-bral-ly</t></w>
<w><t>in-ter-ve-sic-u-lar</t></w>
-<w><t>in-ter-view</t></w>
+<w><t>in-ter-view</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>in-ter-view-a-ble</t></w>
<w><t>in-ter-view-ee</t></w>
<w><t>in-ter-view-er</t></w>
@@ -80394,7 +80395,7 @@
<w><t>itch-ing</t></w>
<w><t>itch-ing-ly</t></w>
<w><t>itch-y</t></w>
-<w><t>i-tem</t></w>
+<w><t>i-tem</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>i-tem ve-to</t></phrase>
<w><t>i-tem-ise</t></w>
<w><t>i-tem-i-za-tion</t></w>
@@ -84001,7 +84002,7 @@
<w><t>knot-weed</t></w>
<w><t>knot-work</t></w>
<w><t>knout</t></w>
-<w><t>know</t></w>
+<w><t>know</t><verb><regular-root value="false"/></verb></w>
<w><t>know=noth-ing</t></w>
<w><t>know-a-bil-i-ty</t></w>
<w><t>know-a-ble</t></w>
@@ -84022,6 +84023,7 @@
<w><t>known</t></w>
<phrase><t>known quan-ti-ty</t></phrase>
<w><t>know-noth-ing-ism</t></w>
+<w><t>knows</t><verb/></w>
<w><t>Knox</t></w>
<w><t>Knox-ville</t></w>
<w><t>KNP</t></w>
@@ -90775,7 +90777,7 @@
<w><t>Ma-ga-lla-nes</t></w>
<w><t>Ma-gan-gué</t></w>
<w><t>mag-a-z</t></w>
-<w><t>mag-a-zine</t></w>
+<w><t>mag-a-zine</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>mag-a-zin-ish</t></w>
<w><t>mag-a-zin-ism</t></w>
<w><t>mag-a-zin-ist</t></w>
@@ -93587,7 +93589,7 @@
<w><t>Mee-rut</t></w>
<w><t>meet</t></w>
<w><t>meet-er</t></w>
-<w><t>meet-ing</t></w>
+<w><t>meet-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>meet-ing house</t></phrase>
<w><t>meet-ly</t></w>
<w><t>meet-ness</t></w>
@@ -98494,6 +98496,7 @@
<w><t>mph</t></w>
<w><t>MPh</t></w>
<w><t>MPhil</t></w>
+<w><t>Mpong-we</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>MPS</t></w>
<w><t>Mr</t></w>
<w><t>MRA</t></w>
@@ -101259,7 +101262,7 @@
<w><t>news-mag-a-zine</t></w>
<w><t>news-man</t></w>
<w><t>news-mon-ger</t></w>
-<w><t>news-pa-per</t></w>
+<w><t>news-pa-per</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>news-pa-per-dom</t></w>
<w><t>news-pa-per-ish</t></w>
<w><t>news-pa-per-man</t></w>
@@ -108409,7 +108412,7 @@
<w><t>ob-struc-tiv-i-ty</t></w>
<w><t>ob-struc-tor</t></w>
<w><t>ob-stru-ent</t></w>
-<w><t>ob-tain</t></w>
+<w><t>ob-tain</t><verb><regular-root/></verb></w>
<phrase><t>ob-tain-ing by de-cep-tion</t></phrase>
<w><t>ob-tect</t></w>
<w><t>ob-tect-ed</t></w>
@@ -115742,7 +115745,7 @@
<w><t>par-ti</t></w>
<phrase><t>par-ti pris</t></phrase>
<w><t>par-ti=col-ored</t></w>
-<w><t>par-tial</t></w>
+<w><t>par-tial</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective/></w>
<phrase><t>par-tial de-riv-a-tive</t></phrase>
<phrase><t>par-tial e-clipse</t></phrase>
<phrase><t>par-tial frac-tion</t></phrase>
@@ -115751,8 +115754,8 @@
<w><t>par-tial-ise</t></w>
<w><t>par-tial-ised</t></w>
<w><t>par-tial-is-ing</t></w>
-<w><t>par-tial-i-ty</t></w>
<w><t>par-ti-al-i-ty</t></w>
+<w><t>par-tial-ly</t><adverb/></w>
<w><t>part-i-ble</t></w>
<w><t>par-ti-ble</t></w>
<w><t>par-tic-i-pance</t></w>
@@ -115773,7 +115776,7 @@
<w><t>par-ti-cle</t></w>
<phrase><t>par-ti-cle sep-ar-a-tion</t></phrase>
<w><t>par-ti-cle-cel-er-a-tor</t></w>
-<w><t>par-tic-u-lar</t></w>
+<w><t>par-tic-u-lar</t><noun><pluralizable/></noun><adjective/></w>
<phrase><t>par-tic-u-lar av-er-age</t></phrase>
<w><t>par-tic-u-lar-ise</t></w>
<w><t>par-tic-u-lar-ised</t></w>
@@ -115829,7 +115832,7 @@
<w><t>par-tu-ri-ent</t></w>
<w><t>par-tu-ri-fa-cient</t></w>
<w><t>par-tu-ri-tion</t></w>
-<w><t>par-ty</t></w>
+<w><t>par-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>par-ty line</t></phrase>
<phrase><t>par-ty man</t></phrase>
<phrase><t>par-ty pol-i-tics</t></phrase>
@@ -116025,7 +116028,7 @@
<w><t>Pas-to</t></w>
<w><t>pas-to-ised</t></w>
<w><t>pas-to-is-ing</t></w>
-<w><t>pas-tor</t></w>
+<w><t>pas-tor</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pas-tor-age</t></w>
<w><t>pas-to-ral</t></w>
<w><t>pas-to-rale</t></w>
@@ -116943,7 +116946,7 @@
<w><t>pem-phi-goid</t></w>
<w><t>pem-phi-gous</t></w>
<w><t>pem-phi-gus</t></w>
-<w><t>pen</t></w>
+<w><t>pen</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Pen</t></w>
<w><t>PEN</t></w>
<w><t>pe-nal</t></w>
@@ -117016,7 +117019,7 @@
<w><t>pen-e-tram-e-ter</t></w>
<w><t>pen-e-trance</t></w>
<w><t>pen-e-trant</t></w>
-<w><t>pen-e-trate</t></w>
+<w><t>pen-e-trate</t><verb><regular-root/></verb></w>
<w><t>pen-e-trat-ing</t></w>
<w><t>pen-e-trat-ing-ly</t></w>
<w><t>pen-e-trat-ing-ness</t></w>
@@ -118113,7 +118116,7 @@
<phrase><t>per-sul-phu-ric ac-id</t></phrase>
<w><t>PERT</t></w>
<w><t>pert</t></w>
-<w><t>per-tain</t></w>
+<w><t>per-tain</t><verb><regular-root/></verb></w>
<w><t>Perth</t></w>
<w><t>per-thit-ic</t></w>
<w><t>per-thit-i-cal-ly</t></w>
@@ -122324,7 +122327,7 @@
<w><t>por-trait-ist</t></w>
<w><t>por-trait-like</t></w>
<w><t>por-trai-ture</t></w>
-<w><t>por-tray</t></w>
+<w><t>por-tray</t><verb><regular-root/></verb></w>
<w><t>por-tray-a-ble</t></w>
<w><t>por-tray-al</t></w>
<w><t>por-tray-er</t></w>
@@ -123097,7 +123100,7 @@
<w><t>pow-div-ing</t></w>
<w><t>pow-dove</t></w>
<w><t>Pow-ell</t></w>
-<w><t>pow-er</t></w>
+<w><t>pow-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pow-er cut</t></phrase>
<phrase><t>pow-er dive</t></phrase>
<phrase><t>pow-er drill</t></phrase>
@@ -126151,8 +126154,8 @@
<phrase><t>pres-ence cham-ber</t></phrase>
<phrase><t>pres-ence of mind</t></phrase>
<w><t>pre-se-nil-i-ty</t></w>
-<w><t>pres-ent</t></w>
-<w><t>pre-sent</t></w>
+<w><t>pres-ent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>pre-sent</t><verb><regular-root/></verb></w>
<phrase><t>pres-ent par-ti-ci-ple</t></phrase>
<phrase><t>pres-ent per-fect</t></phrase>
<phrase><t>pres-ent val-ue</t></phrase>
@@ -126276,7 +126279,7 @@
<w><t>pre-spurred</t></w>
<w><t>pre-spur-ring</t></w>
<w><t>Press</t></w>
-<w><t>press</t></w>
+<w><t>press</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>press a-gen-cy</t></phrase>
<phrase><t>press a-gent</t></phrase>
<phrase><t>press con-fer-ence</t></phrase>
@@ -126980,7 +126983,7 @@
<w><t>prin-ci-pled</t></w>
<w><t>prink</t></w>
<w><t>prink-er</t></w>
-<w><t>print</t></w>
+<w><t>print</t><verb><regular-root/></verb></w>
<w><t>print-a-bil-i-ty</t></w>
<w><t>print-a-ble</t></w>
<w><t>print-a-ble-ness</t></w>
@@ -127529,7 +127532,7 @@
<w><t>pro-duc-ing</t></w>
<w><t>prod-uct</t></w>
<w><t>pro-duc-tile</t></w>
-<w><t>pro-duc-tion</t></w>
+<w><t>pro-duc-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>pro-duc-tion line</t></phrase>
<w><t>pro-duc-tion-al</t></w>
<w><t>pro-duc-tive</t></w>
@@ -127593,7 +127596,7 @@
<w><t>pro-fes-sion-al-iz-ing</t></w>
<w><t>pro-fes-sion-al-ly</t></w>
<w><t>pro-fes-sion-less</t></w>
-<w><t>pro-fes-sor</t></w>
+<w><t>pro-fes-sor</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pro-fes-sor-ate</t></w>
<w><t>pro-fes-so-rate</t></w>
<w><t>pro-fes-so-ri-al-ly</t></w>
@@ -127849,7 +127852,8 @@
<w><t>Pro-min</t></w>
<w><t>prom-i-nence</t></w>
<w><t>prom-i-nen-cy</t></w>
-<w><t>prom-i-nent</t></w>
+<w><t>prom-i-nent</t><adjective/></w>
+<w><t>prom-i-nent-ly</t><adverb/></w>
<w><t>pro-mi-nor-i-ty</t></w>
<w><t>prom-is-a-ble</t></w>
<w><t>prom-is-cu-i-ty</t></w>
@@ -131642,7 +131646,7 @@
<w><t>quot</t></w>
<w><t>quo-ta</t></w>
<w><t>quot-a-ble</t></w>
-<w><t>quo-ta-tion</t></w>
+<w><t>quo-ta-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>quo-ta-tion mark</t></phrase>
<w><t>quote</t></w>
<w><t>quot-ed</t></w>
@@ -132032,7 +132036,7 @@
<w><t>rag-a-muf-fin</t></w>
<w><t>rag-bag</t></w>
<w><t>rag-bolt</t></w>
-<w><t>rage</t></w>
+<w><t>rage</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>rag-fish</t></w>
<w><t>rag-fish-es</t></w>
<w><t>rag-ged</t></w>
@@ -133403,7 +133407,7 @@
<w><t>re-cede</t></w>
<w><t>re-ced-ed</t></w>
<w><t>re-ced-ing</t></w>
-<w><t>re-ceipt</t></w>
+<w><t>re-ceipt</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-ceipt-or</t></w>
<w><t>re-ceiv-a-bil-i-ty</t></w>
<w><t>re-ceiv-a-ble</t></w>
@@ -133487,7 +133491,7 @@
<w><t>Re-ci-fe</t></w>
<w><t>rec-i-pe</t></w>
<w><t>re-cip-i-ence</t></w>
-<w><t>re-cip-i-ent</t></w>
+<w><t>re-cip-i-ent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-cip-ro-cal</t></w>
<w><t>re-cip-ro-cal-i-ty</t></w>
<w><t>re-cip-ro-cal-ly</t></w>
@@ -135030,7 +135034,7 @@
<w><t>reg-u-late</t></w>
<w><t>reg-u-lat-ed</t></w>
<w><t>reg-u-lat-ing</t></w>
-<w><t>reg-u-la-tion</t></w>
+<w><t>reg-u-la-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>reg-u-la-tive</t></w>
<w><t>reg-u-la-tive-ly</t></w>
<w><t>reg-u-la-tor</t></w>
@@ -135261,7 +135265,7 @@
<w><t>re-in-flu-ence</t></w>
<w><t>re-in-flu-enced</t></w>
<w><t>re-in-flu-enc-ing</t></w>
-<w><t>re-in-force</t></w>
+<w><t>re-in-force</t><verb><regular-root/></verb></w>
<phrase><t>re-in-forced con-crete</t></phrase>
<w><t>re-in-force-ment</t></w>
<w><t>re-in-forc-er</t></w>
@@ -136274,7 +136278,7 @@
<w><t>re-pledge</t></w>
<w><t>re-pledged</t></w>
<w><t>re-pledg-ing</t></w>
-<w><t>re-plen-ish</t></w>
+<w><t>re-plen-ish</t><verb><regular-root/></verb></w>
<w><t>re-plete</t></w>
<w><t>re-plete-ly</t></w>
<w><t>re-plete-ness</t></w>
@@ -136914,7 +136918,7 @@
<w><t>re-sought</t></w>
<w><t>re-sound</t></w>
<w><t>re-sound-ing-ly</t></w>
-<w><t>re-source</t></w>
+<w><t>re-source</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-source-ful</t></w>
<w><t>re-source-ful-ly</t></w>
<w><t>re-source-ful-ness</t></w>
@@ -137142,7 +137146,7 @@
<w><t>re-sul-phu-rize</t></w>
<w><t>re-sul-phu-rized</t></w>
<w><t>re-sul-phu-ri-zing</t></w>
-<w><t>re-sult</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
+<w><t>re-sult</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>re-sult-ant</t></w>
<w><t>re-sult-ing-ly</t></w>
<w><t>re-sum-a-ble</t></w>
@@ -141690,7 +141694,7 @@
<w><t>Sav-ior</t></w>
<w><t>sav-ior-hood</t></w>
<w><t>sav-ior-ship</t></w>
-<w><t>sav-iour</t></w>
+<w><t>sav-iour</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Sav-iour</t></w>
<w><t>sav-iour-hood</t></w>
<w><t>sav-iour-ship</t></w>
@@ -143058,7 +143062,7 @@
<w><t>sea-son-er</t></w>
<w><t>sea-son-ing</t></w>
<w><t>sea-son-less</t></w>
-<w><t>seat</t></w>
+<w><t>seat</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>seat-er</t></w>
<w><t>seat-ing</t></w>
<w><t>seat-less</t></w>
@@ -147965,7 +147969,7 @@
<w><t>sin-less-ly</t></w>
<w><t>sin-less-ness</t></w>
<w><t>sin-like</t></w>
-<w><t>sin-ner</t></w>
+<w><t>sin-ner</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>sin-net</t></w>
<w><t>sin-ning</t></w>
<w><t>sin-ning-ly</t></w>
@@ -151461,7 +151465,7 @@
<w><t>spi-ril-lum</t></w>
<w><t>spir-ing</t></w>
<w><t>Spir-it</t></w>
-<w><t>spir-it</t></w>
+<w><t>spir-it</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>spir-it gum</t></phrase>
<phrase><t>spir-it lamp</t></phrase>
<phrase><t>spir-it lev-el</t></phrase>
@@ -152396,7 +152400,7 @@
<w><t>stairs</t></w>
<w><t>stair-way</t></w>
<w><t>stair-well</t></w>
-<w><t>stake</t></w>
+<w><t>stake</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>stake-out</t></w>
<w><t>Sta-kha-nov-ism</t></w>
<w><t>Sta-kha-nov-ite</t></w>
@@ -152693,7 +152697,7 @@
<w><t>state-li-ness</t></w>
<w><t>state-ly</t></w>
<phrase><t>state-ly home</t></phrase>
-<w><t>state-ment</t></w>
+<w><t>state-ment</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>state-ment of claim</t></phrase>
<phrase><t>Stat-en Is-land</t></phrase>
<w><t>sta-ter</t></w>
@@ -153161,11 +153165,7 @@
<w><t>ste-re-ot-o-my</t></w>
<w><t>ster-e-ot-ro-pism</t></w>
<w><t>ste-re-ot-ro-pism</t></w>
-<w><t>ster-e-o-type</t></w>
-<w><t>ste-re-o-type</t></w>
-<w><t>ster-e-o-typed</t></w>
-<w><t>ste-re-o-typed</t></w>
-<w><t>ster-e-o-typ-ing</t></w>
+<w><t>ster-e-o-type</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ster-e-o-typ-y</t></w>
<w><t>ste-re-o-typ-y</t></w>
<w><t>ste-re-o-vi-sion</t></w>
@@ -153475,7 +153475,7 @@
<w><t>stip-ule</t></w>
<w><t>stip-u-li-form</t></w>
<w><t>Stir</t></w>
-<w><t>stir</t></w>
+<w><t>stir</t><verb><regular-root/></verb></w>
<w><t>stir-a-bout</t></w>
<w><t>Sti-ri-a</t></w>
<w><t>Sti-ri-tis</t></w>
@@ -153906,7 +153906,7 @@
<w><t>strain-ing-ly</t></w>
<w><t>strain-less</t></w>
<w><t>strain-less-ly</t></w>
-<w><t>strait</t></w>
+<w><t>strait</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>strait=lac-ed-ly</t></w>
<w><t>strait=lac-ed-ness</t></w>
<w><t>strait-en</t></w>
@@ -154089,7 +154089,7 @@
<w><t>stress-ful</t></w>
<w><t>stress-ful-ly</t></w>
<w><t>stress-less-ness</t></w>
-<w><t>stretch</t></w>
+<w><t>stretch</t><verb><regular-root/></verb></w>
<w><t>stretch-a-bil-i-ty</t></w>
<w><t>stretch-a-ble</t></w>
<w><t>stretch-er</t></w>
@@ -156100,7 +156100,7 @@
<w><t>suc-ce-da-ne-a</t></w>
<w><t>suc-ce-da-ne-ous</t></w>
<w><t>suc-ce-da-ne-um</t></w>
-<w><t>suc-ceed</t></w>
+<w><t>suc-ceed</t><verb><regular-root/></verb></w>
<w><t>suc-ceed-a-ble</t></w>
<w><t>suc-ceed-er</t></w>
<w><t>suc-ceed-ing-ly</t></w>
@@ -156224,13 +156224,13 @@
<w><t>suf</t></w>
<w><t>Suff</t></w>
<w><t>suff</t></w>
-<w><t>suf-fer</t></w>
+<w><t>suf-fer</t><verb><regular-root/></verb></w>
<w><t>suf-fer-a-ble</t></w>
<w><t>suf-fer-a-ble-ness</t></w>
<w><t>suf-fer-a-bly</t></w>
<w><t>suf-fer-ance</t></w>
<w><t>suf-fer-er</t></w>
-<w><t>suf-fer-ing</t></w>
+<w><t>suf-fer-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Suf-fern</t></w>
<w><t>suf-fice</t></w>
<w><t>suf-ficed</t></w>
@@ -158070,7 +158070,7 @@
<w><t>sus-pect-er</t></w>
<w><t>sus-pect-i-ble</t></w>
<w><t>sus-pect-less</t></w>
-<w><t>sus-pend</t></w>
+<w><t>sus-pend</t><verb><regular-root/></verb></w>
<phrase><t>sus-pend-ed an-i-ma-tion</t></phrase>
<phrase><t>sus-pend-ed sen-tence</t></phrase>
<w><t>sus-pend-er</t></w>
@@ -158926,7 +158926,7 @@
<w><t>syn-kar-y-on</t></w>
<w><t>syn-ne-ma</t></w>
<w><t>syn-ne-ma-ta</t></w>
-<w><t>syn-od</t></w>
+<w><t>syn-od</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>syn-od-al</t></w>
<w><t>syn-od-ic</t></w>
<phrase><t>syn-od-ic month</t></phrase>
@@ -159683,7 +159683,7 @@
<w><t>Tan-gan-yi-kan</t></w>
<w><t>tan-ge-lo</t></w>
<w><t>tan-gen-cy</t></w>
-<w><t>tan-gent</t></w>
+<w><t>tan-gent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>tan-gent gal-va-nom-e-ter</t></phrase>
<w><t>tan-gent=saw</t></w>
<w><t>tan-gen-tial</t></w>
@@ -163360,7 +163360,7 @@
<w><t>ton-al-ly</t></w>
<w><t>Ton-bridge</t></w>
<w><t>ton-do</t></w>
-<w><t>tone</t></w>
+<w><t>tone</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>tone clus-ter</t></phrase>
<phrase><t>tone col-or</t></phrase>
<phrase><t>tone con-trol</t></phrase>
@@ -163524,7 +163524,7 @@
<w><t>to-pi</t></w>
<w><t>to-pi-ar-ies</t></w>
<w><t>to-pi-ar-y</t></w>
-<w><t>top-ic</t></w>
+<w><t>top-ic</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>top-ic sen-tence</t></phrase>
<w><t>top-i-cal</t></w>
<w><t>top-i-cal-i-ty</t></w>
@@ -165691,7 +165691,7 @@
<w><t>Trot-wood</t></w>
<w><t>tro-tyl</t></w>
<w><t>trou-ba-dour</t></w>
-<w><t>trou-ble</t></w>
+<w><t>trou-ble</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>trou-ble spot</t></phrase>
<w><t>trou-ble=shoot-er</t></w>
<w><t>trou-bled-ly</t></w>
@@ -167919,7 +167919,7 @@
<w><t>un-be-lied</t></w>
<w><t>un-be-lief</t></w>
<w><t>un-be-liev-a-ble</t></w>
-<w><t>un-be-liev-er</t></w>
+<w><t>un-be-liev-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>un-be-liev-ing</t></w>
<w><t>un-be-liev-ing-ly</t></w>
<w><t>un-be-liev-ing-ness</t></w>
@@ -170355,6 +170355,7 @@
<w><t>un-der-swell</t></w>
<w><t>un-der-swept</t></w>
<w><t>un-der-take</t></w>
+<w><t>un-der-tak-en</t><verb/></w>
<w><t>un-der-tak-er</t></w>
<w><t>un-der-tak-er-ly</t></w>
<w><t>un-der-tak-ing</t></w>
@@ -170386,7 +170387,7 @@
<w><t>un-der-tint</t></w>
<w><t>un-der-ti-tle</t></w>
<w><t>un-der-tone</t></w>
-<w><t>un-der-took</t></w>
+<w><t>un-der-took</t><verb/></w>
<w><t>un-der-tow</t></w>
<w><t>un-der-trade</t></w>
<w><t>un-der-trad-ed</t></w>
@@ -179306,7 +179307,7 @@
<w><t>u-re-yl-ene</t></w>
<w><t>Ur-fa</t></w>
<w><t>Ur-ga</t></w>
-<w><t>urge</t></w>
+<w><t>urge</t><verb><regular-root/></verb></w>
<w><t>Ur-gel</t></w>
<w><t>ur-gen-cy</t></w>
<w><t>ur-gent</t></w>
@@ -179517,6 +179518,7 @@
<w><t>ut-ter-ance</t></w>
<w><t>ut-ter-er</t></w>
<w><t>ut-ter-less</t></w>
+<w><t>ut-ter-ly</t><adverb/></w>
<w><t>ut-ter-most</t></w>
<w><t>ut-ter-ness</t></w>
<w><t>U-tu</t></w>
@@ -180228,7 +180230,7 @@
<w><t>veil-less</t></w>
<w><t>veil-like</t></w>
<w><t>Veil-lo-nel-la</t></w>
-<w><t>vein</t></w>
+<w><t>vein</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>vein-al</t></w>
<w><t>vein-i-er</t></w>
<w><t>vein-i-est</t></w>
@@ -181883,7 +181885,7 @@
<w><t>Vol-tur-no</t></w>
<w><t>Vol-tur-nus</t></w>
<w><t>vol-u-ble</t></w>
-<w><t>vol-ume</t></w>
+<w><t>vol-ume</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>vol-umed</t></w>
<w><t>vo-lu-me-ter</t></w>
<w><t>vol-u-met-ric</t></w>
@@ -182442,10 +182444,10 @@
<w><t>Wan-chüan</t></w>
<w><t>wand</t></w>
<w><t>Wan-da</t></w>
-<w><t>wan-der</t></w>
-<w><t>wan-der-er</t></w>
+<w><t>wan-der</t><verb><regular-root/></verb></w>
+<w><t>wan-der-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Wan-der-er</t></w>
-<w><t>wan-der-ing</t></w>
+<w><t>wan-der-ing</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>wan-der-ing al-ba-tross</t></phrase>
<phrase><t>wan-der-ing Jew</t></phrase>
<phrase><t>Wan-der-ing Jew</t></phrase>
@@ -185330,7 +185332,7 @@
<w><t>wit-less-ness</t></w>
<w><t>wit-ling</t></w>
<w><t>wit-loof</t></w>
-<w><t>wit-ness</t></w>
+<w><t>wit-ness</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<phrase><t>wit-ness box</t></phrase>
<phrase><t>wit-ness stand</t></phrase>
<w><t>wits</t></w>
@@ -185927,7 +185929,7 @@
<w><t>wrist-watch</t></w>
<w><t>writ</t></w>
<phrase><t>writ of ex-e-cu-tion</t></phrase>
-<w><t>write</t><verb/></w>
+<w><t>write</t><verb><regular-root value="false"/></verb></w>
<w><t>writ-er</t></w>
<w><t>writes</t><verb/></w>
<phrase><t>writ-er's cramp</t></phrase>
@@ -185936,7 +185938,7 @@
<w><t>writh-er</t></w>
<w><t>writh-ing</t></w>
<w><t>writh-ing-ly</t></w>
-<w><t>writ-ing</t></w>
+<w><t>writ-ing</t><noun><pluralizable/><convertible-to-possessive/></noun><verb/></w>
<phrase><t>writ-ing desk</t></phrase>
<phrase><t>writ-ing pa-per</t></phrase>
<w><t>Writ-ings</t></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-22 21:41:11 UTC (rev 12688)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-24 12:24:13 UTC (rev 12689)
@@ -10,4 +10,8 @@
<!--
-->
+<w><t>in</t></w>
+<w><t>in-fi-del-i-um</t></w>
+<w><t>part-i-bus</t></w>
+
</axsl-dictionary>
Modified: trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-22 21:41:11 UTC (rev 12688)
+++ trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-24 12:24:13 UTC (rev 12689)
@@ -89,7 +89,7 @@
</derivative-rule>
</derivative-pattern>
<derivative-pattern desc="ends with certain double consonants, then /-ed/">
- <match>^([a-zA-Z\-]+)([bcdfgklmnpstvz])(\2)ed$</match>
+ <match>^([a-zA-Z\-]+)([bcdfgklmnprstvz])(\2)ed$</match>
<replace>$1$2</replace>
<derivative-rule>
<verb><regular-root/></verb>
@@ -202,7 +202,22 @@
</unparsed-dictionary>
</dictionary-resource>
+ <dictionary-resource id="dictionary-latin">
+ <unparsed-dictionary>
+ <dictionary-element>
+ <resource-location type="url">file:///C:/vic/foray/trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml</resource-location>
+ </dictionary-element>
+ </unparsed-dictionary>
+ </dictionary-resource>
+ <dictionary-resource id="dictionary-french">
+ <unparsed-dictionary>
+ <dictionary-element>
+ <resource-location type="url">file:///C:/vic/foray/trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml</resource-location>
+ </dictionary-element>
+ </unparsed-dictionary>
+ </dictionary-resource>
+
<hyphenation-patterns-resource id="hyph-patterns-eng">
<parsed-resource>
<resource-location type="classpath">/resources/org/foray/orthography/hyphPatterns/eng.jbso</resource-location>
@@ -230,6 +245,7 @@
</configuration>
<configuration>
+ <dictionary reference="dictionary-latin"/>
<lexer class="org.foray.orthography.LexerJavaBreakIterator"/>
<orthography language-iso-3char="lat" script-iso-4char="Latn" country-iso-3char="ZZZ"/>
</configuration>
@@ -242,6 +258,7 @@
</configuration>
<configuration>
+ <dictionary reference="dictionary-french"/>
<lexer class="org.foray.orthography.LexerJavaBreakIterator"/>
<orthography language-iso-3char="fre" script-iso-4char="Latn" country-iso-3char="ZZZ"/>
</configuration>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-22 18:12:11
|
Revision: 12687
http://sourceforge.net/p/foray/code/12687
Author: victormote
Date: 2022-06-22 18:12:09 +0000 (Wed, 22 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-22 13:25:40 UTC (rev 12686)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-22 18:12:09 UTC (rev 12687)
@@ -2217,7 +2217,7 @@
<w><t>ad-ven-ti-tious-ness</t></w>
<w><t>ad-ven-tive</t></w>
<w><t>ad-ven-tive-ly</t></w>
-<w><t>ad-ven-ture</t></w>
+<w><t>ad-ven-ture</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ad-ven-ture play-ground</t></phrase>
<w><t>ad-ven-tured</t></w>
<w><t>ad-ven-ture-ful</t></w>
@@ -6033,7 +6033,7 @@
<w><t>an-ec-do-tal-ism</t></w>
<w><t>an-ec-do-tal-ist</t></w>
<w><t>an-ec-do-tal-ly</t></w>
-<w><t>an-ec-dote</t></w>
+<w><t>an-ec-dote</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>an-ec-dot-ic</t></w>
<w><t>an-ec-dot-i-cal</t></w>
<w><t>an-ec-dot-i-cal-ly</t></w>
@@ -17584,7 +17584,7 @@
<w><t>Bo-a-di-ce-a</t></w>
<w><t>Bo-a-ner-ges</t></w>
<w><t>boar</t></w>
-<w><t>board</t></w>
+<w><t>board</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>board meas-ure</t></phrase>
<w><t>board=and=shin-gle</t></w>
<w><t>board-a-ble</t></w>
@@ -26605,7 +26605,7 @@
<w><t>chil-blain</t></w>
<w><t>chil-blained</t></w>
<w><t>Chil-cat</t></w>
-<w><t>child</t></w>
+<w><t>child</t><noun><convertible-to-possessive/></noun></w>
<phrase><t>child ben-e-fit</t></phrase>
<phrase><t>child guid-ance</t></phrase>
<phrase><t>child la-bour</t></phrase>
@@ -30766,7 +30766,7 @@
<w><t>com-mu-ni-cate</t></w>
<w><t>com-mu-ni-cat-ed</t></w>
<w><t>com-mu-ni-cat-ing</t></w>
-<w><t>com-mu-ni-ca-tion</t></w>
+<w><t>com-mu-ni-ca-tion</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>com-mu-ni-ca-tion cord</t></phrase>
<phrase><t>com-mu-ni-ca-tions sat-el-lite</t></phrase>
<w><t>com-mu-ni-ca-tive</t></w>
@@ -31051,7 +31051,7 @@
<w><t>com-plic-i-ty</t></w>
<w><t>com-plied</t></w>
<w><t>com-pli-er</t></w>
-<w><t>com-pli-ment</t></w>
+<w><t>com-pli-ment</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>com-pli-ment-a-ble</t></w>
<w><t>com-pli-men-ta-ri-ly</t></w>
<w><t>com-pli-men-ta-ri-ness</t></w>
@@ -33698,7 +33698,7 @@
<phrase><t>cor-re-spond-ence col-umn</t></phrase>
<phrase><t>cor-re-spond-ence school</t></phrase>
<w><t>cor-re-spond-en-cy</t></w>
-<w><t>cor-re-spond-ent</t></w>
+<w><t>cor-re-spond-ent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>cor-re-spond-ent-ly</t></w>
<w><t>cor-re-spond-ing-ly</t></w>
<w><t>cor-re-spon-sive</t></w>
@@ -34165,7 +34165,7 @@
<w><t>coun-sel-la-ble</t></w>
<w><t>coun-selled</t></w>
<w><t>coun-sel-ling</t></w>
-<w><t>coun-sel-lor</t></w>
+<w><t>coun-sel-lor</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>coun-sel-lor-ship</t></w>
<w><t>coun-se-lor</t></w>
<w><t>coun-se-lor=at=law</t></w>
@@ -37906,7 +37906,7 @@
<w><t>dawt-ie</t></w>
<w><t>Dax</t></w>
<w><t>Day</t></w>
-<w><t>day</t></w>
+<w><t>day</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>day blind-ness</t></phrase>
<phrase><t>Day Lew-is</t></phrase>
<phrase><t>day lil-y</t></phrase>
@@ -38108,7 +38108,7 @@
<w><t>dean-ship</t></w>
<w><t>de-an-thro-po-morph-ic</t></w>
<w><t>de-an-thro-po-mor-phism</t></w>
-<w><t>dear</t></w>
+<w><t>dear</t><adjective><extensible/></adjective></w>
<phrase><t>Dear John let-ter</t></phrase>
<w><t>Dear-born</t></w>
<w><t>dear-ie</t></w>
@@ -42764,7 +42764,7 @@
<w><t>dis-cur-sive-ness</t></w>
<w><t>dis-cus</t></w>
<w><t>dis-cus-es</t></w>
-<w><t>dis-cuss</t></w>
+<w><t>dis-cuss</t><verb><regular-root/></verb></w>
<w><t>dis-cuss-a-ble</t></w>
<w><t>dis-cus-sant</t></w>
<w><t>dis-cuss-er</t></w>
@@ -43821,7 +43821,7 @@
<w><t>di-vin-a-ble</t></w>
<w><t>div-i-na-tion</t></w>
<w><t>di-vin-a-to-ry</t></w>
-<w><t>di-vine</t></w>
+<w><t>di-vine</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb><adjective></adjective></w>
<phrase><t>di-vine of-fice</t></phrase>
<phrase><t>di-vine ser-vice</t></phrase>
<w><t>di-vined</t></w>
@@ -45077,7 +45077,7 @@
<w><t>DPP</t></w>
<w><t>dpt</t></w>
<w><t>DPW</t></w>
-<w><t>Dr</t></w>
+<w><t>Dr</t><abbrev referenced-word="Doctor"/></w>
<w><t>drab</t></w>
<w><t>drab-ber</t></w>
<w><t>drab-best</t></w>
@@ -45553,6 +45553,7 @@
<w><t>drows-ing</t></w>
<w><t>drows-y</t></w>
<w><t>drow-sy</t></w>
+<w><t>Drs</t><abbrev referenced-word="Doctors"/></w>
<w><t>Dru</t></w>
<w><t>drub</t></w>
<w><t>drub-ber</t></w>
@@ -46735,7 +46736,7 @@
<w><t>ec-cle-si-ae</t></w>
<w><t>ec-cle-si-arch</t></w>
<w><t>Ec-cle-si-as-tes</t></w>
-<w><t>ec-cle-si-as-tic</t></w>
+<w><t>ec-cle-si-as-tic</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ec-cle-si-as-ti-cal</t></w>
<phrase><t>Ec-cle-si-as-ti-cal Com-mis-sion-ers</t></phrase>
<w><t>ec-cle-si-as-ti-cal-ly</t></w>
@@ -47611,7 +47612,7 @@
<w><t>El-den</t></w>
<w><t>eld-er</t></w>
<w><t>El-der</t></w>
-<w><t>el-der</t></w>
+<w><t>el-der</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>el-der states-man</t></phrase>
<w><t>eld-er-ber-ry</t></w>
<w><t>el-der-ber-ry</t></w>
@@ -52771,7 +52772,7 @@
<w><t>ex-pen-sive</t></w>
<w><t>ex-pen-sive-ly</t></w>
<w><t>ex-pen-sive-ness</t></w>
-<w><t>ex-pe-ri-ence</t></w>
+<w><t>ex-pe-ri-ence</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>ex-pe-ri-ence ta-ble</t></phrase>
<w><t>ex-pe-ri-ence-a-ble</t></w>
<w><t>ex-pe-ri-enced</t></w>
@@ -59254,7 +59255,7 @@
<w><t>fu-lig-i-nous</t></w>
<w><t>fu-lig-i-nous-ly</t></w>
<w><t>fu-lig-i-nous-ness</t></w>
-<w><t>full</t></w>
+<w><t>full</t><adjective><extensible/></adjective></w>
<phrase><t>full nel-son</t></phrase>
<phrase><t>full pro-fes-sor</t></phrase>
<phrase><t>full ra-di-a-tor</t></phrase>
@@ -60128,7 +60129,7 @@
<w><t>gam-brel=roofed</t></w>
<w><t>Gam-bri-nus</t></w>
<w><t>gam-bu-sia</t></w>
-<w><t>game</t></w>
+<w><t>game</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>game war-den</t></phrase>
<w><t>game-bag</t></w>
<w><t>game-cock</t></w>
@@ -61219,6 +61220,7 @@
<w><t>ge-nus</t></w>
<w><t>Ge-nève</t></w>
<w><t>Ge-nêt</t></w>
+<w><t>Geo</t><abbrev referenced-word="George"/></w>
<w><t>ge-o=nav-i-ga-tion</t></w>
<w><t>ge-o-cen-tric</t></w>
<phrase><t>ge-o-cen-tric par-al-lax</t></phrase>
@@ -68624,7 +68626,7 @@
<w><t>hemp-y</t></w>
<w><t>hem-stitch</t></w>
<w><t>hem-stitch-er</t></w>
-<w><t>hen</t></w>
+<w><t>hen</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>hen har-ri-er</t></phrase>
<phrase><t>hen par-ty</t></phrase>
<w><t>hen=and=chick-ens</t></w>
@@ -70805,7 +70807,7 @@
<w><t>hon-ky</t></w>
<w><t>honk-y=tonk</t></w>
<w><t>Hon-o-lu-lu</t></w>
-<w><t>hon-or</t></w>
+<w><t>hon-or</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Hon-or</t></w>
<phrase><t>hon-or Mod-er-a-tions</t></phrase>
<phrase><t>hon-or school</t></phrase>
@@ -71389,7 +71391,7 @@
<w><t>house-fly</t></w>
<w><t>house-ful</t></w>
<w><t>house-guest</t></w>
-<w><t>house-hold</t></w>
+<w><t>house-hold</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>house-hold gods</t></phrase>
<phrase><t>house-hold name</t></phrase>
<phrase><t>house-hold troops</t></phrase>
@@ -74729,7 +74731,7 @@
<w><t>im-plac-a-bly</t></w>
<w><t>im-pla-cen-tal</t></w>
<w><t>im-pla-cen-tate</t></w>
-<w><t>im-plant</t></w>
+<w><t>im-plant</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>im-plan-ta-tion</t></w>
<w><t>im-plant-er</t></w>
<w><t>im-plau-si-bil-i-ty</t></w>
@@ -81591,7 +81593,7 @@
<w><t>john-ny-cake</t></w>
<w><t>Johns</t></w>
<w><t>Johns-bur-y</t></w>
-<w><t>John-son</t></w>
+<w><t>John-son</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>John-son grass</t></phrase>
<w><t>John-son-burg</t></w>
<w><t>John-son-ese</t></w>
@@ -92224,7 +92226,7 @@
<w><t>Mar-i-us</t></w>
<w><t>Ma-ri-vaux</t></w>
<w><t>mar-jo-ram</t></w>
-<w><t>mark</t></w>
+<w><t>mark</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>Mark</t></w>
<phrase><t>Mark An-to-ny</t></phrase>
<w><t>mark=up</t></w>
@@ -92966,7 +92968,7 @@
<w><t>mat-u-rat-ing</t></w>
<w><t>mat-u-ra-tion</t></w>
<w><t>ma-tur-a-tive</t></w>
-<w><t>ma-ture</t></w>
+<w><t>ma-ture</t><verb><regular-root/></verb></w>
<w><t>ma-ture-ly</t></w>
<w><t>ma-ture-ment</t></w>
<w><t>ma-ture-ness</t></w>
@@ -101439,7 +101441,7 @@
<w><t>nid-i-fy-ing</t></w>
<w><t>ni-dus</t></w>
<w><t>Nie-buhr</t></w>
-<w><t>niece</t></w>
+<w><t>niece</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Nie-der-o-ster-reich</t></w>
<w><t>Nie-der-sach-sen</t></w>
<w><t>ni-el-li</t></w>
@@ -101842,7 +101844,7 @@
<w><t>no-bil-i-a-ry</t></w>
<phrase><t>no-bil-i-a-ry par-ti-cle</t></phrase>
<w><t>no-bil-i-ty</t></w>
-<w><t>no-ble</t><adjective/></w>
+<w><t>no-ble</t><adjective><extensible/></adjective></w>
<phrase><t>no-ble art</t></phrase>
<phrase><t>no-ble sav-age</t></phrase>
<w><t>no-ble=mind-ed</t></w>
@@ -107848,7 +107850,7 @@
<w><t>Nu-ma-nus</t></w>
<w><t>numb</t></w>
<w><t>num-bat</t></w>
-<w><t>num-ber</t></w>
+<w><t>num-ber</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>num-ber line</t></phrase>
<phrase><t>num-ber off</t></phrase>
<phrase><t>num-ber one</t></phrase>
@@ -115665,7 +115667,7 @@
<w><t>Par-rish</t></w>
<w><t>par-ro-ket</t></w>
<w><t>par-ro-quet</t></w>
-<w><t>par-rot</t></w>
+<w><t>par-rot</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>par-rot fe-ver</t></phrase>
<w><t>par-rot's=bill</t></w>
<w><t>par-rot's=feath-er</t></w>
@@ -118225,7 +118227,7 @@
<w><t>pes-ti-len-tial-ness</t></w>
<w><t>pes-tle</t></w>
<w><t>Pet</t></w>
-<w><t>pet</t></w>
+<w><t>pet</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pet-al</t></w>
<w><t>Pet-al</t></w>
<w><t>pet-al-age</t></w>
@@ -131688,7 +131690,7 @@
<w><t>Rab-bin-ist</t></w>
<w><t>Rab-bin-ite</t></w>
<w><t>rab-bin-it-ic</t></w>
-<w><t>rab-bit</t></w>
+<w><t>rab-bit</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>rab-bit fe-ver</t></phrase>
<phrase><t>rab-bit punch</t></phrase>
<w><t>rab-bit=foot</t></w>
@@ -135481,7 +135483,7 @@
<w><t>re-la-tion-al</t></w>
<w><t>re-la-tion-less</t></w>
<w><t>re-la-tions</t></w>
-<w><t>re-la-tion-ship</t></w>
+<w><t>re-la-tion-ship</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>rel-a-tive</t><noun><pluralizable/><convertible-to-possessive/></noun><adjective/></w>
<phrase><t>rel-a-tive ap-er-ture</t></phrase>
<phrase><t>rel-a-tive a-tom-ic mass</t></phrase>
@@ -139984,7 +139986,7 @@
<w><t>Rus</t></w>
<w><t>ruse</t></w>
<w><t>Ru-se</t></w>
-<w><t>rush</t></w>
+<w><t>rush</t><verb><regular-root/></verb></w>
<w><t>rush-ee</t></w>
<w><t>rush-er</t></w>
<w><t>rush-i-er</t></w>
@@ -143245,7 +143247,7 @@
<w><t>se-cun-dum</t></w>
<w><t>se-cun-dus</t></w>
<w><t>se-cur-a-ble</t></w>
-<w><t>se-cure</t></w>
+<w><t>se-cure</t><verb><regular-root/></verb></w>
<w><t>se-cure-ly</t></w>
<w><t>se-cu-ri-ty</t></w>
<phrase><t>Se-cu-ri-ty Coun-cil</t></phrase>
@@ -145642,7 +145644,7 @@
<w><t>ser-jeant-y</t></w>
<w><t>Ser-kin</t></w>
<w><t>Ser-lio</t></w>
-<w><t>ser-mon</t></w>
+<w><t>ser-mon</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>ser-mon-i-cal-ly</t></w>
<w><t>ser-mon-ise</t></w>
<w><t>ser-mon-ised</t></w>
@@ -146992,7 +146994,7 @@
<w><t>shov-el-nose</t></w>
<w><t>shov-er</t></w>
<w><t>shov-ing</t></w>
-<w><t>show</t></w>
+<w><t>show</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>show busi-ness</t></phrase>
<phrase><t>show cop-y</t></phrase>
<phrase><t>show stop-per</t></phrase>
@@ -150343,7 +150345,7 @@
<w><t>sor-row-ing</t><adjective/></w>
<w><t>sor-row-less</t></w>
<w><t>sor-ry</t></w>
-<w><t>sort</t></w>
+<w><t>sort</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>sort-a-ble</t></w>
<w><t>sort-a-bly</t></w>
<w><t>sort-er</t></w>
@@ -153808,7 +153810,7 @@
<w><t>Storrs</t></w>
<w><t>Stor-thing</t></w>
<w><t>Stor-ting</t></w>
-<w><t>sto-ry</t></w>
+<w><t>sto-ry</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Sto-ry</t></w>
<phrase><t>sto-ry line</t></phrase>
<w><t>sto-ry-board</t></w>
@@ -158207,7 +158209,7 @@
<w><t>swam</t></w>
<w><t>swa-mi</t></w>
<w><t>Swam-mer-dam</t></w>
-<w><t>swamp</t></w>
+<w><t>swamp</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>swamp bug-gy</t></phrase>
<phrase><t>swamp cy-press</t></phrase>
<phrase><t>swamp fe-ver</t></phrase>
@@ -160581,7 +160583,7 @@
<w><t>te-li-o-spore</t></w>
<w><t>te-li-o-spor-ic</t></w>
<w><t>te-li-um</t></w>
-<w><t>tell</t></w>
+<w><t>tell</t><verb></verb></w>
<w><t>Tell</t></w>
<phrase><t>tell a-part</t></phrase>
<phrase><t>Tell el A-mar-na</t></phrase>
@@ -160593,6 +160595,7 @@
<w><t>tell-ing-ly</t></w>
<w><t>Tel-lo</t></w>
<w><t>Tel-loh</t></w>
+<w><t>tells</t><verb/></w>
<w><t>tell-tale</t></w>
<w><t>tell-tale-ly</t></w>
<w><t>tel-lu-rate</t></w>
@@ -160695,7 +160698,7 @@
<w><t>tem-po-riz-ing</t></w>
<w><t>tem-po-riz-ing-ly</t></w>
<w><t>tem-po-ro-max-il-lar-y</t></w>
-<w><t>tempt</t></w>
+<w><t>tempt</t><verb><regular-root/></verb></w>
<w><t>tempt-a-ble</t></w>
<w><t>temp-ta-tion</t></w>
<w><t>Tempt-er</t></w>
@@ -161588,7 +161591,7 @@
<w><t>the-og-o-ny</t></w>
<w><t>theol</t></w>
<w><t>the-ol-a-try</t></w>
-<w><t>the-o-lo-gi-an</t></w>
+<w><t>the-o-lo-gi-an</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>the-o-log-ic</t></w>
<w><t>the-o-log-i-cal</t></w>
<phrase><t>the-o-log-i-cal vir-tues</t></phrase>
@@ -162339,7 +162342,7 @@
<w><t>through-put</t></w>
<w><t>through-way</t></w>
<w><t>throve</t></w>
-<w><t>throw</t></w>
+<w><t>throw</t><noun><pluralizable/><convertible-to-possessive/></noun><verb/></w>
<phrase><t>throw a-bout</t></phrase>
<phrase><t>throw o-ver</t></phrase>
<phrase><t>throw to-geth-er</t></phrase>
@@ -162346,6 +162349,7 @@
<w><t>throw-a-way</t></w>
<w><t>throw-back</t></w>
<w><t>throw-er</t></w>
+<w><t>throw-ing</t><present-participle/></w>
<phrase><t>throw-ing stick</t></phrase>
<w><t>thrown</t></w>
<w><t>throw-ster</t></w>
@@ -162590,7 +162594,7 @@
<w><t>tid-ings</t></w>
<w><t>ti-dy-ing</t></w>
<w><t>ti-dy-tips</t></w>
-<w><t>tie</t></w>
+<w><t>tie</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>tie=dye-ing</t></w>
<w><t>tie=in</t></w>
<w><t>tie=up</t></w>
@@ -163297,7 +163301,8 @@
<w><t>tom-al-ley</t></w>
<w><t>to-man</t></w>
<w><t>to-ma-til-lo</t></w>
-<w><t>to-ma-to</t></w>
+<w><t>to-ma-to</t><noun><convertible-to-possessive/></noun></w>
+<w><t>to-ma-toes</t><noun><plural/></noun></w>
<w><t>tomb</t></w>
<w><t>tom-bac</t></w>
<w><t>Tom-bal-ba-ye</t></w>
@@ -180182,7 +180187,7 @@
<w><t>veg</t></w>
<w><t>Ve-ga</t></w>
<w><t>ve-gan</t></w>
-<w><t>veg-e-ta-ble</t></w>
+<w><t>veg-e-ta-ble</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>veg-e-ta-ble but-ter</t></phrase>
<phrase><t>veg-e-ta-ble i-vo-ry</t></phrase>
<phrase><t>veg-e-ta-ble king-dom</t></phrase>
@@ -183319,7 +183324,7 @@
<w><t>we-ka</t></w>
<w><t>welch</t></w>
<w><t>Welch</t></w>
-<w><t>wel-come</t></w>
+<w><t>wel-come</t><noun/><verb><regular-root/></verb></w>
<w><t>wel-come-less</t></w>
<w><t>wel-come-ly</t></w>
<w><t>wel-come-ness</t></w>
Modified: trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-22 13:25:40 UTC (rev 12686)
+++ trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-22 18:12:09 UTC (rev 12687)
@@ -155,6 +155,22 @@
<derivative-type type="superlative" desc="single-syllable root"/>
</derivative-rule>
</derivative-pattern>
+ <derivative-pattern desc="ends with /-er/, root ends in /-e/, e.g. noble">
+ <match>^([a-zA-Z\-]+e)r$</match>
+ <replace>$1</replace>
+ <derivative-rule>
+ <adjective><extensible/></adjective>
+ <derivative-type type="comparative" desc="single-syllable root"/>
+ </derivative-rule>
+ </derivative-pattern>
+ <derivative-pattern desc="ends with /-est/, root ends in /-e/, e.g. noble">
+ <match>^([a-zA-Z\-]+e)st$</match>
+ <replace>$1</replace>
+ <derivative-rule>
+ <adjective><extensible/></adjective>
+ <derivative-type type="superlative" desc="single-syllable root"/>
+ </derivative-rule>
+ </derivative-pattern>
</derivative-pattern-list>
<derivative-factory-list id="eng-Latn-derivatives">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-22 13:25:42
|
Revision: 12686
http://sourceforge.net/p/foray/code/12686
Author: victormote
Date: 2022-06-22 13:25:40 +0000 (Wed, 22 Jun 2022)
Log Message:
-----------
Handle OmittedWord concept gracefully.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-22 13:24:20 UTC (rev 12685)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-22 13:25:40 UTC (rev 12686)
@@ -159,6 +159,9 @@
{
textElementMap.put("Nbsp", "\u00A0");
textElementMap.put("Zwsp", "\u200B");
+ /* For printing purposes, OmittedWord renders as a series of em-dashes. However, for spell-check purposes, we
+ * need for it to be a pseudo-word to which rules can be applied. */
+ textElementMap.put("OmittedWord", "Aaaaaaaaaa");
}
/** The list of dictionaries that are currently active, i.e. that match the current orthography. */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-22 13:24:27
|
Revision: 12685
http://sourceforge.net/p/foray/code/12685
Author: victormote
Date: 2022-06-22 13:24:20 +0000 (Wed, 22 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-06-22 10:54:36 UTC (rev 12684)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ-archaic.dict.xml 2022-06-22 13:24:20 UTC (rev 12685)
@@ -9,6 +9,7 @@
<w><t>hum-bleth</t></w>
<w><t>lov-eth</t></w>
+<w><t>per-suad-est</t><verb/></w>
<w><t>pre-ëm-i-nence</t></w>
<w><t>pre-ëm-i-nent-ly</t><adverb/></w>
<w><t>seek-est</t></w>
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-22 10:54:36 UTC (rev 12684)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-22 13:24:20 UTC (rev 12685)
@@ -63,6 +63,7 @@
<phrase><t>a tem-po</t></phrase>
<w><t>a=plen-ty</t></w>
<w><t>a-a</t></w>
+<w><t>aaaaaaaaaa</t><noun><convertible-to-possessive/></noun></w><!-- Pseudo-word used as a replacement for omitted word elements. -->
<w><t>Aa-chen</t></w>
<w><t>Aal-borg</t></w>
<w><t>Aa-le-sund</t></w>
@@ -1763,7 +1764,7 @@
<w><t>ad-dle-brained</t></w>
<w><t>ad-dle-pat-ed</t></w>
<w><t>ad-dorsed</t></w>
-<w><t>ad-dress</t></w>
+<w><t>ad-dress</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>ad-dress-ee</t></w>
<w><t>ad-dress-er</t></w>
<w><t>ad-dress-ing</t></w>
@@ -8302,7 +8303,7 @@
<w><t>a-pos-ta-tiz-ing</t></w>
<w><t>a-pos-til</t></w>
<w><t>a-pos-tille</t></w>
-<w><t>a-pos-tle</t></w>
+<w><t>a-pos-tle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>a-pos-tle spoon</t></phrase>
<w><t>a-pos-tle-hood</t></w>
<phrase><t>A-pos-tles' Creed</t></phrase>
@@ -9770,7 +9771,7 @@
<w><t>Ar-thu-ri-an</t></w>
<w><t>ar-tic</t></w>
<w><t>ar-ti-choke</t></w>
-<w><t>ar-ti-cle</t></w>
+<w><t>ar-ti-cle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>ar-ti-cle of faith</t></phrase>
<phrase><t>ar-ti-cles of as-so-ci-a-tion</t></phrase>
<phrase><t>Ar-ti-cles of Con-fed-er-a-tion</t></phrase>
@@ -14660,7 +14661,7 @@
<w><t>be-fud-dle</t></w>
<w><t>be-fud-dle-ment</t></w>
<w><t>be-fud-dler</t></w>
-<w><t>beg</t></w>
+<w><t>beg</t><verb><regular-root/></verb></w>
<w><t>be-ga-bled</t></w>
<w><t>be-gad</t></w>
<w><t>be-gan</t></w>
@@ -22507,7 +22508,7 @@
<phrase><t>can-did cam-er-a</t></phrase>
<w><t>Can-di-da</t></w>
<w><t>can-di-da-cy</t></w>
-<w><t>can-di-date</t></w>
+<w><t>can-di-date</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>can-di-da-ture</t></w>
<w><t>Can-dide</t></w>
<w><t>can-did-ly</t></w>
@@ -24508,7 +24509,7 @@
<w><t>caus-a-tive-ly</t></w>
<w><t>caus-a-tive-ness</t></w>
<w><t>caus-a-tiv-i-ty</t></w>
-<w><t>cause</t></w>
+<w><t>cause</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>cause c-l-bre</t></phrase>
<w><t>cause=and=ef-fect</t></w>
<w><t>cause-less</t></w>
@@ -25630,7 +25631,7 @@
<w><t>Chang-chow</t></w>
<w><t>Chang-chow-fu</t></w>
<w><t>Chang-chun</t></w>
-<w><t>change</t></w>
+<w><t>change</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>change of ven-ue</t></phrase>
<w><t>change=ring-ing</t></w>
<w><t>change-a-bil-i-ty</t></w>
@@ -27297,7 +27298,7 @@
<w><t>chris-ten-ing</t></w>
<w><t>Christ-hood</t></w>
<w><t>Chris-ti-aan</t></w>
-<w><t>Chris-tian</t></w>
+<w><t>Chris-tian</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Chris-tian Ac-tion</t></phrase>
<phrase><t>Chris-tian Broth-ers</t></phrase>
<phrase><t>Chris-tian E-ra</t></phrase>
@@ -33012,7 +33013,7 @@
<w><t>coo-ing</t></w>
<w><t>coo-ing-ly</t></w>
<w><t>Cook</t></w>
-<w><t>cook</t></w>
+<w><t>cook</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>Cook In-let</t></phrase>
<phrase><t>Cook Is-lands</t></phrase>
<w><t>cook=gen-er-al</t></w>
@@ -45491,7 +45492,7 @@
<w><t>droop-i-ness</t></w>
<w><t>droop-ing-ly</t></w>
<w><t>droop-y</t></w>
-<w><t>drop</t></w>
+<w><t>drop</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>drop a-way</t></phrase>
<phrase><t>drop can-non</t></phrase>
<phrase><t>drop cur-tain</t></phrase>
@@ -52271,7 +52272,7 @@
<w><t>ex-ci-ton</t></w>
<w><t>ex-ci-tor</t></w>
<w><t>excl</t></w>
-<w><t>ex-claim</t></w>
+<w><t>ex-claim</t><verb><regular-root/></verb></w>
<w><t>ex-claim-er</t></w>
<w><t>ex-cla-ma-tion</t></w>
<phrase><t>ex-cla-ma-tion mark</t></phrase>
@@ -52828,7 +52829,7 @@
<w><t>ex-pis-cat-ing</t></w>
<w><t>ex-pis-ca-tion</t></w>
<w><t>ex-pis-ca-to-ry</t></w>
-<w><t>ex-plain</t></w>
+<w><t>ex-plain</t><verb><regular-root/></verb></w>
<phrase><t>ex-plain a-way</t></phrase>
<w><t>ex-plain-a-ble</t></w>
<w><t>ex-plain-er</t></w>
@@ -59800,7 +59801,7 @@
<phrase><t>Gail-lard Cut</t></phrase>
<w><t>gail-lar-di-a</t></w>
<w><t>gai-ly</t></w>
-<w><t>gain</t></w>
+<w><t>gain</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>gain-a-ble</t></w>
<w><t>gaine</t></w>
<w><t>gain-er</t></w>
@@ -65043,7 +65044,7 @@
<w><t>guid-a-ble</t></w>
<w><t>guid-ance</t></w>
<w><t>Guide</t></w>
-<w><t>guide</t></w>
+<w><t>guide</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>guide-board</t></w>
<w><t>guide-book</t></w>
<w><t>guide-book-ish</t></w>
@@ -67187,7 +67188,7 @@
<w><t>Har-pa-lus</t></w>
<w><t>Har-pal-y-ce</t></w>
<w><t>harp-er</t></w>
-<w><t>Har-per</t></w>
+<w><t>Har-per</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Har-per's Fer-ry</t></phrase>
<w><t>har-pin</t></w>
<w><t>Har-pi-na</t></w>
@@ -67780,6 +67781,7 @@
<w><t>heark-en-er</t></w>
<w><t>Hearn</t></w>
<w><t>Hearne</t></w>
+<w><t>hears</t><verb/></w>
<w><t>hear-say</t></w>
<phrase><t>hear-say ev-i-dence</t></phrase>
<w><t>hearse</t></w>
@@ -71940,7 +71942,7 @@
<w><t>Hus</t></w>
<w><t>Hu-s</t></w>
<w><t>Hu-sain</t></w>
-<w><t>hus-band</t></w>
+<w><t>hus-band</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>hus-band-age</t></w>
<w><t>hus-band-er</t></w>
<w><t>hus-band-less</t></w>
@@ -75293,7 +75295,7 @@
<w><t>In-chon</t></w>
<w><t>inch-worm</t></w>
<w><t>in-ci-dence</t></w>
-<w><t>in-ci-dent</t></w>
+<w><t>in-ci-dent</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-ci-den-tal</t></w>
<phrase><t>in-ci-den-tal mu-sic</t></phrase>
<w><t>in-ci-den-tal-ly</t></w>
@@ -76595,7 +76597,7 @@
<w><t>in-fold</t></w>
<w><t>in-fold-er</t></w>
<w><t>in-fold-ment</t></w>
-<w><t>in-form</t></w>
+<w><t>in-form</t><verb><regular-root/></verb></w>
<w><t>in-form-a-ble</t></w>
<w><t>in-for-mal</t></w>
<phrase><t>in-for-mal vote</t></phrase>
@@ -77375,7 +77377,7 @@
<w><t>in-stall-ment</t></w>
<phrase><t>in-stall-ment plan</t></phrase>
<w><t>in-stal-ment</t></w>
-<w><t>in-stance</t></w>
+<w><t>in-stance</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>in-stanced</t></w>
<w><t>in-stanc-ing</t></w>
<w><t>in-stan-cy</t></w>
@@ -83535,7 +83537,7 @@
<w><t>kin-folk</t></w>
<w><t>kin-folks</t></w>
<w><t>King</t></w>
-<w><t>king</t></w>
+<w><t>king</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>King Charles span-iel</t></phrase>
<phrase><t>king co-bra</t></phrase>
<phrase><t>King James Ver-sion</t></phrase>
@@ -85461,7 +85463,7 @@
<w><t>lang-syne</t></w>
<w><t>Lang-ton</t></w>
<w><t>Lang-try</t></w>
-<w><t>lan-guage</t></w>
+<w><t>lan-guage</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>lan-guage la-bor-a-to-ry</t></phrase>
<w><t>langue</t></w>
<w><t>langued</t></w>
@@ -85954,7 +85956,7 @@
<w><t>lauds</t></w>
<w><t>Lau-e</t></w>
<w><t>Lau-en-burg</t></w>
-<w><t>laugh</t></w>
+<w><t>laugh</t><verb><regular-root/></verb></w>
<phrase><t>laugh a-way</t></phrase>
<w><t>laugh-a-ble</t></w>
<w><t>laugh-a-ble-ness</t></w>
@@ -91508,7 +91510,7 @@
<w><t>mam-pa-ra</t></w>
<w><t>Ma-mu-ri-us</t></w>
<w><t>mam-zer</t></w>
-<w><t>man</t></w>
+<w><t>man</t><noun><convertible-to-possessive/></noun></w>
<w><t>Man</t></w>
<w><t>Ma-n</t></w>
<phrase><t>man a-bout town</t></phrase>
@@ -100579,7 +100581,9 @@
<w><t>ne-gri-tude</t></w>
<w><t>Neg-ro</t></w>
<w><t>Ne-gro</t></w>
+<w><t>ne-gro</t><noun/></w>
<phrase><t>Ne-gro spir-i-tu-al</t></phrase>
+<w><t>ne-groes</t><noun><plural/></noun></w>
<w><t>Ne-groid</t></w>
<w><t>Ne-gro-ise</t></w>
<w><t>Ne-gro-ised</t></w>
@@ -113714,7 +113718,7 @@
<w><t>o-ver-wetly</t></w>
<w><t>o-ver-wet-ted</t></w>
<w><t>o-ver-wet-ting</t></w>
-<w><t>o-ver-whelm</t></w>
+<w><t>o-ver-whelm</t><verb><regular-root/></verb></w>
<w><t>o-ver-whelm-ing</t></w>
<w><t>o-ver-whelm-ing-ly</t></w>
<w><t>o-ver-whelm-ing-ness</t></w>
@@ -122275,7 +122279,7 @@
<w><t>por-ten-tous</t></w>
<w><t>por-ten-tous-ly</t></w>
<w><t>por-ten-tous-ness</t></w>
-<w><t>por-ter</t></w>
+<w><t>por-ter</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Por-ter</t></w>
<w><t>por-ter-age</t></w>
<w><t>por-ter-ess</t></w>
@@ -128225,7 +128229,7 @@
<w><t>pros-o-po-poe-ia</t></w>
<w><t>pro-so-po-poe-ia</t></w>
<w><t>pros-o-pyle</t></w>
-<w><t>pros-pect</t></w>
+<w><t>pros-pect</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>pro-spec-tive</t></w>
<w><t>pro-spec-tive-ness</t></w>
<w><t>pros-pect-less</t></w>
@@ -131290,7 +131294,7 @@
<w><t>que-bra-da</t></w>
<w><t>Quech-ua</t></w>
<w><t>Quech-uan</t></w>
-<w><t>queen</t></w>
+<w><t>queen</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>Queen Anne's Boun-ty</t></phrase>
<phrase><t>Queen Char-lotte Is-lands</t></phrase>
<phrase><t>queen con-sort</t></phrase>
@@ -132977,7 +132981,7 @@
<w><t>re-al-iz-a-ble</t></w>
<w><t>re-al-iz-a-ble-ness</t></w>
<w><t>re-al-iz-a-bly</t></w>
-<w><t>re-al-ize</t></w>
+<w><t>re-al-ize</t><verb><regular-root/></verb></w>
<w><t>re-al-ized</t></w>
<w><t>re-al-iz-er</t></w>
<w><t>re-al-iz-ing</t></w>
@@ -137339,7 +137343,7 @@
<w><t>re-tint</t></w>
<w><t>ret-i-nue</t></w>
<w><t>ret-i-nued</t></w>
-<w><t>re-tire</t></w>
+<w><t>re-tire</t><verb><regular-root/></verb></w>
<w><t>re-tired</t></w>
<w><t>re-tired-ly</t></w>
<w><t>re-tired-ness</t></w>
@@ -138598,10 +138602,11 @@
<w><t>rip-snort-er</t></w>
<w><t>rip-tide</t></w>
<w><t>Rip-u-ar-i-an</t></w>
-<w><t>rise</t></w>
+<w><t>rise</t><verb/></w>
<phrase><t>rise a-bove</t></phrase>
<w><t>ris-en</t></w>
<w><t>ris-er</t></w>
+<w><t>ris-es</t><verb/></w>
<w><t>rish-i</t></w>
<w><t>ris-i-bil-i-ty</t></w>
<w><t>ris-i-ble</t></w>
@@ -141824,7 +141829,7 @@
<phrase><t>sca-lar prod-uct</t></phrase>
<w><t>sca-lar-e</t></w>
<w><t>sca-lar-i-form</t></w>
-<w><t>scal-a-wag</t></w>
+<w><t>scal-a-wag</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>scal-a-wag-ger-y</t></w>
<w><t>scal-a-wag-gy</t></w>
<w><t>scald</t></w>
@@ -143473,7 +143478,7 @@
<w><t>Se-lan-gor</t></w>
<w><t>Sel-den</t></w>
<w><t>sel-dom</t></w>
-<w><t>se-lect</t></w>
+<w><t>se-lect</t><verb><regular-root/></verb></w>
<w><t>se-lec-ta-ble</t></w>
<w><t>se-lect-ance</t></w>
<w><t>se-lect-ee</t></w>
@@ -148394,7 +148399,7 @@
<w><t>skip-way</t></w>
<w><t>skirl</t></w>
<w><t>skirl-ing</t></w>
-<w><t>skir-mish</t></w>
+<w><t>skir-mish</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>skir-mish-er</t></w>
<w><t>Skir-nir</t></w>
<w><t>Skir-o-pho-ri-a</t></w>
@@ -160463,7 +160468,7 @@
<w><t>tel-e-gram</t></w>
<w><t>tel-e-gram-ma-tic</t></w>
<w><t>tel-e-gram-mic</t></w>
-<w><t>tel-e-graph</t></w>
+<w><t>tel-e-graph</t><noun/><verb><regular-root/></verb></w>
<phrase><t>tel-e-graph plant</t></phrase>
<w><t>te-leg-ra-pher</t></w>
<w><t>tel-e-graph-ese</t></w>
@@ -161421,7 +161426,7 @@
<w><t>thane</t></w>
<w><t>Than-et</t></w>
<w><t>Than-ja-vur</t></w>
-<w><t>thank</t></w>
+<w><t>thank</t><verb><regular-root/></verb></w>
<w><t>thank-ee</t></w>
<w><t>thank-er</t></w>
<w><t>thank-ful</t></w>
@@ -170281,7 +170286,7 @@
<w><t>un-der-stage</t></w>
<w><t>un-der-stain</t></w>
<w><t>un-der-stamp</t></w>
-<w><t>un-der-stand</t></w>
+<w><t>un-der-stand</t><verb/></w>
<w><t>un-der-stand-a-bil-i-ty</t></w>
<w><t>un-der-stand-a-ble</t></w>
<w><t>un-der-stand-a-ble-ness</t></w>
@@ -170289,6 +170294,7 @@
<w><t>un-der-stand-ing</t></w>
<w><t>un-der-stand-ing-ly</t></w>
<w><t>un-der-stand-ing-ness</t></w>
+<w><t>un-der-stands</t><verb/></w>
<w><t>un-der-state</t></w>
<w><t>un-der-stat-ed</t></w>
<w><t>un-der-state-ment</t></w>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-22 10:54:38
|
Revision: 12684
http://sourceforge.net/p/foray/code/12684
Author: victormote
Date: 2022-06-22 10:54:36 +0000 (Wed, 22 Jun 2022)
Log Message:
-----------
Handle case of /possible/ intraword punctuation that immediately follows attached trailing punctuation. Add test for same.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java
trunk/foray/foray-orthography/src/test/java/org/foray/orthography/LexerEnglishTests.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java 2022-06-21 20:00:17 UTC (rev 12683)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/Lexer4a.java 2022-06-22 10:54:36 UTC (rev 12684)
@@ -194,14 +194,29 @@
if (currentBreakType == CharType.ATTACHED_TRAILING_OR_INTRAWORD_PUNCTUATION) {
final CharType previousBreakType = breakTypes[breakIndex - 1];
final CharType nextBreakType = breakTypes[breakIndex + 1];
- if (previousBreakType == CharType.WORD_CHAR) {
- if (nextBreakType == CharType.WORD_CHAR) {
+ switch (previousBreakType) {
+ case WORD_CHAR: {
+ switch (nextBreakType) {
+ case WORD_CHAR: {
/* This also is part of the word. */
breakTypes[breakIndex] = CharType.WORD_CHAR;
- } else {
+ break;
+ }
+ default: {
breakTypes[breakIndex] = CharType.ATTACHED_TRAILING_PUNCTUATION;
+ break;
}
+ }
+ break;
}
+ case ATTACHED_TRAILING_PUNCTUATION: {
+ /* This is additional trailing punctuation. */
+ breakTypes[breakIndex] = CharType.ATTACHED_TRAILING_PUNCTUATION;
+ break;
+ }
+ default:
+ break;
+ }
}
}
Modified: trunk/foray/foray-orthography/src/test/java/org/foray/orthography/LexerEnglishTests.java
===================================================================
--- trunk/foray/foray-orthography/src/test/java/org/foray/orthography/LexerEnglishTests.java 2022-06-21 20:00:17 UTC (rev 12683)
+++ trunk/foray/foray-orthography/src/test/java/org/foray/orthography/LexerEnglishTests.java 2022-06-22 10:54:36 UTC (rev 12684)
@@ -277,4 +277,21 @@
Assert.assertEquals("into", actual.get(6));
}
+ /**
+ * Test of multiple trailing punctuation items.
+ */
+ @Test
+ public void testMultipleTrailingAttachedPunctuation() {
+ final String testString = "for every [student]. Return";
+ final List<CharSequence> actual = getObjectUnderTest().tokenize(testString);
+ Assert.assertEquals(7, actual.size());
+ Assert.assertEquals("for", actual.get(0));
+ Assert.assertEquals(" ", actual.get(1));
+ Assert.assertEquals("every", actual.get(2));
+ Assert.assertEquals(" [", actual.get(3));
+ Assert.assertEquals("student", actual.get(4));
+ Assert.assertEquals("]. ", actual.get(5));
+ Assert.assertEquals("Return", actual.get(6));
+ }
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 20:00:20
|
Revision: 12683
http://sourceforge.net/p/foray/code/12683
Author: victormote
Date: 2022-06-21 20:00:17 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
New dictionary entries.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-21 17:32:18 UTC (rev 12682)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-21 20:00:17 UTC (rev 12683)
@@ -2025,7 +2025,7 @@
<w><t>ad-mit-ting</t></w>
<w><t>ad-mix</t></w>
<w><t>ad-mix-ture</t></w>
-<w><t>ad-mon-ish</t></w>
+<w><t>ad-mon-ish</t><verb><regular-root/></verb></w>
<w><t>ad-mon-ish-er</t></w>
<w><t>ad-mon-ish-ing-ly</t></w>
<w><t>ad-mon-ish-ment</t></w>
@@ -10914,7 +10914,7 @@
<w><t>at-tack</t></w>
<w><t>at-tack-a-ble</t></w>
<w><t>at-tack-er</t></w>
-<w><t>at-tain</t></w>
+<w><t>at-tain</t><verb><regular-root/></verb></w>
<w><t>at-tain-a-bil-i-ty</t></w>
<w><t>at-tain-a-ble</t></w>
<w><t>at-tain-a-ble-ness</t></w>
@@ -14850,7 +14850,7 @@
<w><t>be-liev-a-ble</t></w>
<w><t>be-liev-a-ble-ness</t></w>
<w><t>be-liev-a-bly</t></w>
-<w><t>be-lieve</t></w>
+<w><t>be-lieve</t><verb><regular-root/></verb></w>
<w><t>be-lieved</t></w>
<w><t>be-liev-er</t></w>
<w><t>be-liev-ing-ly</t></w>
@@ -15483,8 +15483,9 @@
<w><t>be-spake</t></w>
<w><t>be-span-gle</t></w>
<w><t>be-spat-ter</t></w>
-<w><t>be-speak</t></w>
+<w><t>be-speak</t><verb/></w>
<w><t>be-speak-ing</t></w>
+<w><t>be-speaks</t><verb/></w>
<w><t>be-spec-ta-cled</t></w>
<w><t>be-spoke</t></w>
<w><t>be-spo-ken</t></w>
@@ -15672,7 +15673,7 @@
<w><t>be-whisk-ered</t></w>
<w><t>Bew-ick</t></w>
<w><t>be-wigged</t></w>
-<w><t>be-wil-der</t></w>
+<w><t>be-wil-der</t><verb><regular-root/></verb></w>
<w><t>be-wil-dered-ly</t></w>
<w><t>be-wil-der-ing-ly</t></w>
<w><t>be-wil-der-ment</t></w>
@@ -20793,7 +20794,7 @@
<w><t>Burch-field</t></w>
<w><t>Burck-hardt</t></w>
<w><t>burd</t></w>
-<w><t>bur-den</t></w>
+<w><t>bur-den</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<phrase><t>bur-den of proof</t></phrase>
<w><t>bur-dened</t></w>
<w><t>bur-den-er</t></w>
@@ -28968,7 +28969,7 @@
<w><t>Clo-rin-da</t></w>
<w><t>Clo-ris</t></w>
<w><t>clos-a-ble</t></w>
-<w><t>close</t></w>
+<w><t>close</t><verb><regular-root/></verb></w>
<phrase><t>close com-pa-ny</t></phrase>
<phrase><t>close har-mo-ny</t></phrase>
<phrase><t>close quar-ters</t></phrase>
@@ -31868,7 +31869,7 @@
<w><t>con-grats</t></w>
<w><t>con-grat-ters</t></w>
<w><t>con-grat-u-lant</t></w>
-<w><t>con-grat-u-late</t></w>
+<w><t>con-grat-u-late</t><verb><regular-root/></verb></w>
<w><t>con-grat-u-lat-ed</t></w>
<w><t>con-grat-u-lat-ing</t></w>
<w><t>con-grat-u-la-tion</t></w>
@@ -32175,7 +32176,7 @@
<w><t>con-serve</t></w>
<w><t>con-serv-er</t></w>
<w><t>Con-sett</t></w>
-<w><t>con-sid-er</t></w>
+<w><t>con-sid-er</t><verb><regular-root/></verb></w>
<w><t>con-sid-er-a-ble</t></w>
<w><t>con-sid-er-a-bly</t></w>
<w><t>con-sid-er-ance</t></w>
@@ -32579,7 +32580,7 @@
<w><t>con-tin-u-a-tive-ly</t></w>
<w><t>con-tin-u-a-tive-ness</t></w>
<w><t>con-tin-u-a-tor</t></w>
-<w><t>con-tin-ue</t></w>
+<w><t>con-tin-ue</t><verb><regular-root/></verb></w>
<w><t>con-tin-ued</t></w>
<phrase><t>con-tin-ued frac-tion</t></phrase>
<w><t>con-tin-ued-ly</t></w>
@@ -34050,7 +34051,7 @@
<w><t>Cots-wold</t></w>
<w><t>Cots-wolds</t></w>
<w><t>cot-ta</t></w>
-<w><t>cot-tage</t></w>
+<w><t>cot-tage</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>cot-tage cheese</t></phrase>
<phrase><t>cot-tage hos-pi-tal</t></phrase>
<phrase><t>cot-tage in-dus-try</t></phrase>
@@ -42567,7 +42568,7 @@
<w><t>dis-cerp-ti-bil-i-ty</t></w>
<w><t>dis-cerp-ti-ble</t></w>
<w><t>dis-cerp-ti-ble-ness</t></w>
-<w><t>dis-charge</t></w>
+<w><t>dis-charge</t><verb><regular-root/></verb></w>
<w><t>dis-charge-a-ble</t></w>
<w><t>dis-charg-er</t></w>
<w><t>dis-ci</t></w>
@@ -46171,7 +46172,7 @@
<w><t>du-ti-a-ble</t></w>
<w><t>du-ti-ful</t></w>
<w><t>du-ti-ful-ly</t></w>
-<w><t>du-ty</t></w>
+<w><t>du-ty</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>du-ty of-fic-er</t></phrase>
<w><t>du-ty=bound</t></w>
<w><t>du-ty=free</t></w>
@@ -47636,8 +47637,7 @@
<w><t>El-e-a-zar</t></w>
<w><t>elec</t></w>
<w><t>el-e-cam-pane</t></w>
-<w><t>elect</t></w>
-<w><t>e-lect</t></w>
+<w><t>e-lect</t><noun><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>e-lec-tion</t></w>
<w><t>e-lec-tion-eer</t></w>
<w><t>e-lec-tion-eer-er</t></w>
@@ -48761,7 +48761,7 @@
<phrase><t>en pen-sion</t></phrase>
<phrase><t>en rap-port</t></phrase>
<w><t>E-na</t></w>
-<w><t>en-a-ble</t></w>
+<w><t>en-a-ble</t><verb><regular-root/></verb></w>
<w><t>en-a-bler</t></w>
<w><t>en-a-bling</t></w>
<phrase><t>en-a-bling act</t></phrase>
@@ -49714,7 +49714,7 @@
<w><t>en-tire-ty</t></w>
<w><t>en-ti-ta-tive</t></w>
<w><t>en-ti-ta-tive-ly</t></w>
-<w><t>en-ti-tle</t></w>
+<w><t>en-ti-tle</t><verb><regular-root/></verb></w>
<w><t>en-ti-tle-ment</t></w>
<w><t>en-ti-ty</t></w>
<w><t>en-to-blast</t></w>
@@ -65020,7 +65020,7 @@
<w><t>guess-ti-mat-ing</t></w>
<w><t>guess-work</t></w>
<w><t>Guest</t></w>
-<w><t>guest</t></w>
+<w><t>guest</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>guest-house</t></w>
<w><t>guest-hous-es</t></w>
<w><t>gues-ti-mate</t></w>
@@ -66142,7 +66142,7 @@
<w><t>half=burn-ing</t></w>
<w><t>half=bush-el</t></w>
<w><t>half=car-ried</t></w>
-<w><t>half=cen-tu-ry</t></w>
+<w><t>half=cen-tu-ry</t><noun><convertible-to-possessive/></noun></w>
<w><t>half=chant-ed</t></w>
<w><t>half=Chris-tian</t></w>
<w><t>half=civ-il</t></w>
@@ -82049,7 +82049,7 @@
<w><t>Jung-frau</t></w>
<w><t>Jung-gram-ma-ti-ker</t></w>
<w><t>Jung-i-an</t></w>
-<w><t>jun-gle</t></w>
+<w><t>jun-gle</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>jun-gle fe-ver</t></phrase>
<phrase><t>jun-gle fowl</t></phrase>
<phrase><t>jun-gle juice</t></phrase>
@@ -87661,7 +87661,7 @@
<w><t>light=mind-ed-ness</t></w>
<w><t>light-boat</t></w>
<w><t>light-ed</t></w>
-<w><t>light-en</t></w>
+<w><t>light-en</t><verb><regular-root/></verb></w>
<w><t>light-en-er</t></w>
<w><t>light-en-ing</t></w>
<w><t>light-er</t></w>
@@ -87804,7 +87804,7 @@
<w><t>li-ma-con</t></w>
<w><t>Li-mas-sol</t></w>
<w><t>lim-a-çon</t></w>
-<w><t>limb</t></w>
+<w><t>limb</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>lim-bate</t></w>
<w><t>limbed</t></w>
<w><t>lim-ber</t></w>
@@ -91108,7 +91108,7 @@
<w><t>main-spring</t></w>
<w><t>main-stay</t></w>
<w><t>main-stream</t></w>
-<w><t>main-tain</t></w>
+<w><t>main-tain</t><verb><regular-root/></verb></w>
<w><t>main-tain-a-ble</t></w>
<phrase><t>main-tained school</t></phrase>
<w><t>main-tain-er</t></w>
@@ -100474,7 +100474,7 @@
<w><t>Ne-der-land</t></w>
<w><t>Ne-dra</t></w>
<w><t>nee</t></w>
-<w><t>need</t></w>
+<w><t>need</t><noun><pluralizable/></noun><verb><regular-root/></verb></w>
<w><t>need-er</t></w>
<w><t>need-fire</t></w>
<w><t>need-ful</t></w>
@@ -110177,6 +110177,7 @@
<w><t>Or-jo-ni-kid-ze</t></w>
<w><t>Or-jo-ni-ki-dze</t></w>
<w><t>Or-khon</t></w>
+<w><t>Ork-ney</t><noun/></w>
<phrase><t>Ork-ney Is-lands</t></phrase>
<w><t>Ork-neys</t></w>
<w><t>Or-l-a-nais</t></w>
@@ -117503,7 +117504,7 @@
<w><t>per-fo-ra-tive</t></w>
<w><t>per-fo-ra-tor</t></w>
<w><t>per-force</t></w>
-<w><t>per-form</t></w>
+<w><t>per-form</t><verb><regular-root/></verb></w>
<w><t>per-form-a-ble</t></w>
<w><t>per-for-mance</t></w>
<phrase><t>per-for-mance test</t></phrase>
@@ -117849,7 +117850,7 @@
<w><t>per-mis-sive</t></w>
<w><t>per-mis-sive-ly</t></w>
<w><t>per-mis-sive-ness</t></w>
-<w><t>per-mit</t></w>
+<w><t>per-mit</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>per-mit-ted-ly</t></w>
<w><t>per-mit-tiv-i-ty</t></w>
<w><t>per-mut-a-bil-i-ty</t></w>
@@ -133127,7 +133128,7 @@
<w><t>re-as-sem-ble</t></w>
<w><t>re-as-sem-bly</t></w>
<w><t>re-as-sent</t></w>
-<w><t>re-as-sert</t></w>
+<w><t>re-as-sert</t><verb><regular-root/></verb></w>
<w><t>re-as-ser-tion</t></w>
<w><t>re-as-sess</t></w>
<w><t>re-as-sess-ment</t></w>
@@ -135685,7 +135686,7 @@
<w><t>re-map</t></w>
<w><t>re-mapped</t></w>
<w><t>re-map-ping</t></w>
-<w><t>re-mark</t></w>
+<w><t>re-mark</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>re-mark-a-ble</t></w>
<w><t>re-mark-er</t></w>
<w><t>re-mar-ket</t></w>
@@ -135766,7 +135767,7 @@
<w><t>re-mil-i-ta-riz-ing</t></w>
<w><t>re-mill</t></w>
<w><t>re-mill-a-ble</t></w>
-<w><t>re-mind</t></w>
+<w><t>re-mind</t><verb><regular-root/></verb></w>
<w><t>re-mind-ful</t></w>
<w><t>re-min-gle</t></w>
<w><t>Rem-ing-ton</t></w>
@@ -137133,7 +137134,7 @@
<w><t>re-sul-phu-rize</t></w>
<w><t>re-sul-phu-rized</t></w>
<w><t>re-sul-phu-ri-zing</t></w>
-<w><t>re-sult</t></w>
+<w><t>re-sult</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>re-sult-ant</t></w>
<w><t>re-sult-ing-ly</t></w>
<w><t>re-sum-a-ble</t></w>
@@ -139158,7 +139159,7 @@
<w><t>rook-i-er</t></w>
<w><t>rook-i-est</t></w>
<w><t>rook-y</t></w>
-<w><t>room</t></w>
+<w><t>room</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<phrase><t>room ser-vice</t></phrase>
<phrase><t>room tem-per-a-ture</t></phrase>
<w><t>room=and=pil-lar</t></w>
@@ -139836,7 +139837,7 @@
<w><t>ru-in-ous-ly</t></w>
<w><t>ru-in-ous-ness</t></w>
<w><t>Ruis-dael</t></w>
-<w><t>rule</t></w>
+<w><t>rule</t><noun><pluralizable/><convertible-to-possessive/></noun><verb><regular-root/></verb></w>
<w><t>rul-er</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>Rules</t></w>
<w><t>rul-ing</t></w>
@@ -142048,7 +142049,7 @@
<w><t>sce-nar-ist</t></w>
<w><t>scend</t></w>
<w><t>scen-den-tal-i-ty</t></w>
-<w><t>scene</t></w>
+<w><t>scene</t><noun><pluralizable/><convertible-to-possessive/></noun></w>
<w><t>scen-er-ies</t></w>
<w><t>scen-er-y</t></w>
<w><t>sce-nic</t></w>
@@ -145889,7 +145890,7 @@
<w><t>sev-en-ty=sixth</t></w>
<w><t>sev-en-ty=third</t></w>
<w><t>sev-en-ty=two</t></w>
-<w><t>sev-er</t></w>
+<w><t>sev-er</t><verb><regular-root/></verb></w>
<w><t>sev-er-a-ble</t></w>
<w><t>sev-er-al</t></w>
<w><t>sev-er-al-ly</t></w>
@@ -150868,6 +150869,7 @@
<phrase><t>speak-ing in tongues</t></phrase>
<phrase><t>speak-ing trum-pet</t></phrase>
<phrase><t>speak-ing tube</t></phrase>
+<w><t>speaks</t></w>
<w><t>spean</t></w>
<w><t>spear</t></w>
<w><t>spear-e-an</t></w>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 17:32:20
|
Revision: 12682
http://sourceforge.net/p/foray/code/12682
Author: victormote
Date: 2022-06-21 17:32:18 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Improvements to terminal element processing.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 17:27:29 UTC (rev 12681)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 17:32:18 UTC (rev 12682)
@@ -151,7 +151,8 @@
/** The list of elements that should never be straddled by a word. */
private List<String> elementTerminalList = Arrays.asList(new String[] {"Para", "Sidenote", "Signature", "EmDash",
- "PoetryLine", "Title", "Subtitle", "Dateline", "TitlePara"});
+ "PoetryLine", "Title", "Subtitle", "Dateline", "TitlePara", "TitleAbbrev", "LineBreak", "CopyrightDate",
+ "BookmarkTitle"});
/** Map whose key is elements that are actually tokens for text, and whose value is that text. */
private Map<String, String> textElementMap = new HashMap<String, String>();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 17:27:32
|
Revision: 12681
http://sourceforge.net/p/foray/code/12681
Author: victormote
Date: 2022-06-21 17:27:29 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Rename dictionaries to match naming standard and configuration.
Added Paths:
-----------
trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml
Removed Paths:
-------------
trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml
trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.xml
Copied: trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml (from rev 12680, trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.xml)
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml (rev 0)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.dict.xml 2022-06-21 17:27:29 UTC (rev 12681)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE axsl-dictionary
+ PUBLIC "-//aXSL//DTD Dictionary V0.1//EN"
+ "http://www.axsl.org/dtds/0.1/en/axsl-dictionary.dtd">
+
+<axsl-dictionary language="ita" script="Latn" hard-hyphen-char="="
+ soft-hyphen-char="-">
+
+<!--
+-->
+
+</axsl-dictionary>
Deleted: trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.xml 2022-06-21 17:24:30 UTC (rev 12680)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/fre-Latn-ZZZ.xml 2022-06-21 17:27:29 UTC (rev 12681)
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE axsl-dictionary
- PUBLIC "-//aXSL//DTD Dictionary V0.1//EN"
- "http://www.axsl.org/dtds/0.1/en/axsl-dictionary.dtd">
-
-<axsl-dictionary language="ita" script="Latn" hard-hyphen-char="="
- soft-hyphen-char="-">
-
-<!--
--->
-
-</axsl-dictionary>
Copied: trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.dict.xml (from rev 12680, trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml)
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.dict.xml (rev 0)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.dict.xml 2022-06-21 17:27:29 UTC (rev 12681)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE axsl-dictionary
+ PUBLIC "-//aXSL//DTD Dictionary V0.1//EN"
+ "http://www.axsl.org/dtds/0.1/en/axsl-dictionary.dtd">
+
+<axsl-dictionary language="ita" script="Latn" hard-hyphen-char="="
+ soft-hyphen-char="-">
+
+<!--
+-->
+
+<w><t>fi-na-le</t><noun></noun></w>
+</axsl-dictionary>
Deleted: trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml 2022-06-21 17:24:30 UTC (rev 12680)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml 2022-06-21 17:27:29 UTC (rev 12681)
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE axsl-dictionary
- PUBLIC "-//aXSL//DTD Dictionary V0.1//EN"
- "http://www.axsl.org/dtds/0.1/en/axsl-dictionary.dtd">
-
-<axsl-dictionary language="ita" script="Latn" hard-hyphen-char="="
- soft-hyphen-char="-">
-
-<!--
--->
-
-<w><t>fi-na-le</t><noun></noun></w>
-</axsl-dictionary>
Copied: trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml (from rev 12680, trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.xml)
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml (rev 0)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.dict.xml 2022-06-21 17:27:29 UTC (rev 12681)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE axsl-dictionary
+ PUBLIC "-//aXSL//DTD Dictionary V0.1//EN"
+ "http://www.axsl.org/dtds/0.1/en/axsl-dictionary.dtd">
+
+<axsl-dictionary language="ita" script="Latn" hard-hyphen-char="="
+ soft-hyphen-char="-">
+
+<!--
+-->
+
+</axsl-dictionary>
Deleted: trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.xml 2022-06-21 17:24:30 UTC (rev 12680)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/lat-Latn-ZZZ.xml 2022-06-21 17:27:29 UTC (rev 12681)
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE axsl-dictionary
- PUBLIC "-//aXSL//DTD Dictionary V0.1//EN"
- "http://www.axsl.org/dtds/0.1/en/axsl-dictionary.dtd">
-
-<axsl-dictionary language="ita" script="Latn" hard-hyphen-char="="
- soft-hyphen-char="-">
-
-<!--
--->
-
-</axsl-dictionary>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 17:24:32
|
Revision: 12680
http://sourceforge.net/p/foray/code/12680
Author: victormote
Date: 2022-06-21 17:24:30 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Set up orthography for Italian.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml
trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml 2022-06-21 17:01:55 UTC (rev 12679)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.xml 2022-06-21 17:24:30 UTC (rev 12680)
@@ -10,4 +10,5 @@
<!--
-->
+<w><t>fi-na-le</t><noun></noun></w>
</axsl-dictionary>
Modified: trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-21 17:01:55 UTC (rev 12679)
+++ trunk/foray/foray-orthography/src/main/data/orthographies/foray-orthography-config.xml 2022-06-21 17:24:30 UTC (rev 12680)
@@ -178,7 +178,12 @@
</unparsed-dictionary>
</dictionary-resource>
- <dictionary-resource id="italian">
+ <dictionary-resource id="dictionary-italian">
+ <unparsed-dictionary>
+ <dictionary-element>
+ <resource-location type="url">file:///C:/vic/foray/trunk/foray/foray-orthography/src/main/data/dictionaries/ita-Latn-ZZZ.dict.xml</resource-location>
+ </dictionary-element>
+ </unparsed-dictionary>
</dictionary-resource>
@@ -214,7 +219,9 @@
</configuration>
<configuration>
- <lexer class="org.foray.orthography.LexerJavaBreakIterator"/>
+ <dictionary reference="dictionary-italian"/>
+ <lexer class="org.foray.orthography.LexerJavaBreakIterator"
+ language-iso-3char="eng" script-iso-4char="Latn" country-iso-3char="USA"/>
<orthography language-iso-3char="ita" script-iso-4char="Latn" country-iso-3char="ZZZ"/>
</configuration>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 17:01:58
|
Revision: 12679
http://sourceforge.net/p/foray/code/12679
Author: victormote
Date: 2022-06-21 17:01:55 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Improvements to terminal element processing.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 16:24:03 UTC (rev 12678)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 17:01:55 UTC (rev 12679)
@@ -150,7 +150,8 @@
private List<String> elementIgnoreList = Arrays.asList(new String[] {"Page", "MendOut", "Comment", "ToDo"});
/** The list of elements that should never be straddled by a word. */
- private List<String> elementTerminalList = Arrays.asList(new String[] {"Para", "Sidenote"});
+ private List<String> elementTerminalList = Arrays.asList(new String[] {"Para", "Sidenote", "Signature", "EmDash",
+ "PoetryLine", "Title", "Subtitle", "Dateline", "TitlePara"});
/** Map whose key is elements that are actually tokens for text, and whose value is that text. */
private Map<String, String> textElementMap = new HashMap<String, String>();
@@ -252,7 +253,8 @@
final WritingSystem4a newWritingSystem = parseWritingSystem(attributes);
element.writingSystem = newWritingSystem;
- if (! ObjectUtils.safeEquals(oldWritingSystem, newWritingSystem)) {
+ if (newWritingSystem != null
+ && ! ObjectUtils.safeEquals(oldWritingSystem, newWritingSystem)) {
checkWords(oldWritingSystem);
}
this.elementStack.push(element);
@@ -312,7 +314,7 @@
for (int index = 0; index < words.size(); index ++) {
if (index % 2 == 0) {
final CharSequence word = words.get(index);
- checkWord(orthography, word);
+ checkWord(writingSystem, orthography, word);
}
}
}
@@ -319,10 +321,12 @@
/**
* Spell-check a word.
+ * @param writingSystem The writing system, used for error messages.
* @param orthography The orthography to be used to spell-check {@code word}.
* @param word The word to be checked.
*/
- private void checkWord(final Orthography4a orthography, final CharSequence word) {
+ private void checkWord(final WritingSystem4a writingSystem, final Orthography4a orthography,
+ final CharSequence word) {
/* The word breaker can return empty words when the parsed text begins with non-word content. */
if (word.length() < 1) {
return;
@@ -339,7 +343,7 @@
}
final String message = String.format("Not found: %s %s %s", word, getShortLocationString(getLocator()),
- getCurrentWritingSystem().toString());
+ writingSystem.toString());
this.output.println(message);
this.notFoundCounter ++;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 16:24:10
|
Revision: 12678
http://sourceforge.net/p/foray/code/12678
Author: victormote
Date: 2022-06-21 16:24:03 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Process text at the end of terminal elements, to avoid the appearance of continuity of words between them.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 13:44:29 UTC (rev 12677)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 16:24:03 UTC (rev 12678)
@@ -149,6 +149,9 @@
/** The list of elements having no content but that can be placed in the middle of a word. */
private List<String> elementIgnoreList = Arrays.asList(new String[] {"Page", "MendOut", "Comment", "ToDo"});
+ /** The list of elements that should never be straddled by a word. */
+ private List<String> elementTerminalList = Arrays.asList(new String[] {"Para", "Sidenote"});
+
/** Map whose key is elements that are actually tokens for text, and whose value is that text. */
private Map<String, String> textElementMap = new HashMap<String, String>();
{
@@ -248,8 +251,10 @@
final WritingSystem4a oldWritingSystem = getCurrentWritingSystem();
final WritingSystem4a newWritingSystem = parseWritingSystem(attributes);
element.writingSystem = newWritingSystem;
- checkWords(oldWritingSystem, newWritingSystem);
+ if (! ObjectUtils.safeEquals(oldWritingSystem, newWritingSystem)) {
+ checkWords(oldWritingSystem);
+ }
this.elementStack.push(element);
}
@@ -278,7 +283,15 @@
}
final WritingSystem4a newWritingSystem = getCurrentWritingSystem();
- checkWords(oldWritingSystem, newWritingSystem);
+
+ if (! ObjectUtils.safeEquals(oldWritingSystem, newWritingSystem)) {
+ checkWords(oldWritingSystem);
+ }
+
+ /* Whether the writing system has changed or not, if we are at the end of a terminal element, process text. */
+ if (this.elementTerminalList.contains(localName)) {
+ checkWords(oldWritingSystem);
+ }
}
@@ -285,20 +298,12 @@
/**
* Check for a change in writing system, and, if there is one, flush the text accumulator and spell-check the words
* in it.
- * @param oldWritingSystem The old writing system, which will be used to spell-check the accumulated text if the
- * writing system has changed.
- * @param newWritingSystem The new writing system.
+ * @param writingSystem The writing system to be used to spell-check the accumulated text.
*/
- private void checkWords(final WritingSystem4a oldWritingSystem, final WritingSystem4a newWritingSystem) {
- if (ObjectUtils.safeEquals(oldWritingSystem, newWritingSystem)) {
- /* Either both are null or they are equal. */
- return;
- }
+ private void checkWords(final WritingSystem4a writingSystem) {
+ final Orthography4a orthography = writingSystem == null ? null : this.server.getOrthography(writingSystem);
+ final Lexer lexer = orthography == null ? new LexerJavaBreakIterator(writingSystem) : orthography.getLexer();
- final Orthography4a orthography = oldWritingSystem == null ?
- null : this.server.getOrthography(oldWritingSystem);
- final Lexer lexer = orthography == null ? new LexerJavaBreakIterator(oldWritingSystem) : orthography.getLexer();
-
final List<CharSequence> words = lexer.tokenize(getAndClearText());
if (words == null) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 13:44:32
|
Revision: 12677
http://sourceforge.net/p/foray/code/12677
Author: victormote
Date: 2022-06-21 13:44:29 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Check for change in writing-system at both startElement and endElement, and process text accordingly.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 12:49:30 UTC (rev 12676)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 13:44:29 UTC (rev 12677)
@@ -31,6 +31,7 @@
import org.foray.common.i18n.WritingSystem4a;
import org.foray.common.primitive.ObjectUtils;
import org.foray.common.primitive.XmlUtils;
+import org.foray.orthography.LexerJavaBreakIterator;
import org.foray.orthography.Orthography4a;
import org.foray.orthography.OrthographyServer4a;
import org.foray.orthography.OrthographyServerConfig;
@@ -39,9 +40,9 @@
import org.foray.xml.dtd.DtdAttribute;
import org.axsl.i18n.WritingSystem;
-import org.axsl.orthography.Orthography;
import org.axsl.orthography.OrthographyException;
import org.axsl.orthography.optional.Dictionary;
+import org.axsl.orthography.optional.Lexer;
import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.CommandLineParser;
@@ -243,38 +244,15 @@
element.localName = localName;
element.qName = qName;
- parseOrthography(attributes, element);
+ /* Is there a change in writing system? */
+ final WritingSystem4a oldWritingSystem = getCurrentWritingSystem();
+ final WritingSystem4a newWritingSystem = parseWritingSystem(attributes);
+ element.writingSystem = newWritingSystem;
+ checkWords(oldWritingSystem, newWritingSystem);
+
this.elementStack.push(element);
}
- /**
- * For a given element and its attributes, parses the {@link WritingSystem} from them and then finds the
- * {@link Orthogrpahy} for that {@link WritingSystem}.
- * @param attributes The attributes that possibly contain language, country, and script data.
- * @param element The element to which the {@link Orthography} instance should be attached.
- */
- private void parseOrthography(final Attributes attributes, final Element element) {
- final String languageAttr = XML_LANG_ATTRIBUTE.getValue(attributes);
- if (languageAttr == null) {
- if (getCurrentWritingSystem() == null) {
- this.output.println("Orthography not specified. " + getLocationString(getLocator()));
- }
- return;
- }
-
- element.writingSystem = WritingSystem4a.find(languageAttr);
- if (element.writingSystem == null) {
- final String message = String.format("Writing system not found for: %s", languageAttr);
- this.output.println(message + getLocationString(getLocator()));
- } else {
- final Orthography4a config = this.server.getOrthography(element.writingSystem);
- if (config == null) {
- final String message = String.format("Unconfigured orthography: %s", languageAttr);
- this.output.println(message + getLocationString(getLocator()));
- }
- }
- }
-
@Override
public void endElement(final String uri, final String localName, final String qName) throws SAXException {
if (this.elementStack.size() < 1) {
@@ -292,33 +270,37 @@
return;
}
- final Element element = this.elementStack.peek();
+ final WritingSystem4a oldWritingSystem = this.getCurrentWritingSystem();
- List<CharSequence> words = null;
- if (getCurrentWritingSystem() != null) {
- final Orthography4a orthography = this.server.getOrthography(getCurrentWritingSystem());
- words = orthography.getLexer().tokenize(getAndClearText());
+ final Element element = this.elementStack.pop();
+ if (! element.matches(uri, localName, qName)) {
+ throw new SAXException("Closing element does not match top of stack.");
}
- final WritingSystem4a writingSystem = getCurrentWritingSystem();
- final Orthography4a orthography = this.server.getOrthography(writingSystem);
- checkWords(orthography, words);
-
- /* This element should match the top of the element stack. Pop it. */
- if (element.matches(uri, localName, qName)) {
- this.elementStack.pop();
- } else {
- throw new SAXException("Closing element does not match top of stack.");
- }
+ final WritingSystem4a newWritingSystem = getCurrentWritingSystem();
+ checkWords(oldWritingSystem, newWritingSystem);
}
/**
- * Spell-check each word in a sequence of words.
- * @param orthography The orthography to be used to spell-check {@code words}.
- * @param words The words to be checked.
+ * Check for a change in writing system, and, if there is one, flush the text accumulator and spell-check the words
+ * in it.
+ * @param oldWritingSystem The old writing system, which will be used to spell-check the accumulated text if the
+ * writing system has changed.
+ * @param newWritingSystem The new writing system.
*/
- private void checkWords(final Orthography4a orthography, final List<CharSequence> words) {
+ private void checkWords(final WritingSystem4a oldWritingSystem, final WritingSystem4a newWritingSystem) {
+ if (ObjectUtils.safeEquals(oldWritingSystem, newWritingSystem)) {
+ /* Either both are null or they are equal. */
+ return;
+ }
+
+ final Orthography4a orthography = oldWritingSystem == null ?
+ null : this.server.getOrthography(oldWritingSystem);
+ final Lexer lexer = orthography == null ? new LexerJavaBreakIterator(oldWritingSystem) : orthography.getLexer();
+
+ final List<CharSequence> words = lexer.tokenize(getAndClearText());
+
if (words == null) {
return;
}
@@ -358,6 +340,36 @@
}
/**
+ * For a given set of attributes, parses the {@link WritingSystem} from them and then checks the {@link Orthogrpahy}
+ * for that {@link WritingSystem}.
+ * @param attributes The attributes that possibly contain language, country, and script data.
+ * @return The writing system parsed from {@code attributes}.
+ */
+ private WritingSystem4a parseWritingSystem(final Attributes attributes) {
+ final String languageAttr = XML_LANG_ATTRIBUTE.getValue(attributes);
+ if (languageAttr == null) {
+ if (getCurrentWritingSystem() == null) {
+ this.output.println("Orthography not specified. " + getLocationString(getLocator()));
+ }
+ return null;
+ }
+
+ final WritingSystem4a writingSystem = WritingSystem4a.find(languageAttr);
+ if (writingSystem == null) {
+ final String message = String.format("Writing system not found for: %s", languageAttr);
+ this.output.println(message + getLocationString(getLocator()));
+ } else {
+ final Orthography4a config = this.server.getOrthography(writingSystem);
+ if (config == null) {
+ final String message = String.format("Unconfigured orthography: %s", languageAttr);
+ this.output.println(message + getLocationString(getLocator()));
+ }
+ }
+
+ return writingSystem;
+ }
+
+ /**
* Returns the command-line options for the {@link #main(String[])} method.
* @return Command-line options.
*/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vic...@us...> - 2022-06-21 12:49:33
|
Revision: 12676
http://sourceforge.net/p/foray/code/12676
Author: victormote
Date: 2022-06-21 12:49:30 +0000 (Tue, 21 Jun 2022)
Log Message:
-----------
Simplify tracking of writing-system and orthography.
Modified Paths:
--------------
trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
Modified: trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml
===================================================================
--- trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-21 11:57:00 UTC (rev 12675)
+++ trunk/foray/foray-orthography/src/main/data/dictionaries/eng-Latn-ZZZ.dict.xml 2022-06-21 12:49:30 UTC (rev 12676)
@@ -48675,7 +48675,7 @@
<w><t>em-plac-ing</t></w>
<w><t>em-plane</t></w>
<w><t>em-plec-tite</t></w>
-<w><t>em-ploy</t></w>
+<w><t>em-ploy</t><verb><regular-root/></verb></w>
<w><t>em-ploy-a-bil-i-ty</t></w>
<w><t>em-ploy-a-ble</t></w>
<w><t>em-ploy-e</t></w>
@@ -136967,7 +136967,7 @@
<w><t>re-sponse</t></w>
<w><t>re-sponse-less</t></w>
<w><t>re-spons-er</t></w>
-<w><t>re-spon-si-bil-i-ty</t></w>
+<w><t>re-spon-si-bil-i-ty</t><noun><pluralizable/></noun></w>
<w><t>re-spon-si-ble</t></w>
<w><t>re-spon-si-ble-ness</t></w>
<w><t>re-spon-si-bly</t></w>
Modified: trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java
===================================================================
--- trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 11:57:00 UTC (rev 12675)
+++ trunk/foray/foray-orthography/src/main/java/org/foray/orthography/util/SpellChecker.java 2022-06-21 12:49:30 UTC (rev 12676)
@@ -101,9 +101,6 @@
/** The writing system specified in an xml:lang attribute for this element, if any. */
private WritingSystem4a writingSystem;
- /** The orthography configuration for this element, only if {@link #writingSystem} is not null. */
- private Orthography4a orthographyConfig;
-
/**
* Checks whether a set of element descriptor items match this instance.
* @param namespace The namespace URI.
@@ -145,12 +142,6 @@
/** The element stack. */
private Stack<Element> elementStack = new Stack<Element>();
- /** The current writing system. */
- private WritingSystem4a currentWritingSystem;
-
- /** The current orthography configuration. */
- private Orthography4a currentOrthographyConfig;
-
/** The Hyphenation server. */
private OrthographyServer4a server;
@@ -265,30 +256,13 @@
private void parseOrthography(final Attributes attributes, final Element element) {
final String languageAttr = XML_LANG_ATTRIBUTE.getValue(attributes);
if (languageAttr == null) {
- if (this.currentOrthographyConfig == null) {
+ if (getCurrentWritingSystem() == null) {
this.output.println("Orthography not specified. " + getLocationString(getLocator()));
}
return;
}
-// /* Is there a country code? */
-// final String[] languageAndCountry = languageAttr.split("-");
-// final String languageString = languageAndCountry[0];
-// String countryString = null;
-// if (languageAndCountry.length > 1) {
-// countryString = languageAndCountry[1];
-// }
-//
-// final Language4a language = Language4a.findFromAlpha(languageString);
-// final Country4a country = Country4a.findFromAlpha(countryString);
-// /* TODO: The following should not be hard-coded this way.
-// * Instead, either specify in the XML document (i.e. as an attribute on the element itself), or implied by
-// * the text content. */
-// final Script4a script = Script4a.LATIN;
-//
-// element.writingSystem = WritingSystem4a.find(language, script, country);
- this.currentWritingSystem = WritingSystem4a.find(languageAttr);
- element.writingSystem = this.currentWritingSystem;
+ element.writingSystem = WritingSystem4a.find(languageAttr);
if (element.writingSystem == null) {
final String message = String.format("Writing system not found for: %s", languageAttr);
this.output.println(message + getLocationString(getLocator()));
@@ -297,10 +271,7 @@
if (config == null) {
final String message = String.format("Unconfigured orthography: %s", languageAttr);
this.output.println(message + getLocationString(getLocator()));
- } else {
- element.orthographyConfig = config;
}
- this.currentOrthographyConfig = config;
}
}
@@ -324,33 +295,18 @@
final Element element = this.elementStack.peek();
List<CharSequence> words = null;
- if (this.currentOrthographyConfig != null) {
- words = this.currentOrthographyConfig.getLexer().tokenize(getAndClearText());
+ if (getCurrentWritingSystem() != null) {
+ final Orthography4a orthography = this.server.getOrthography(getCurrentWritingSystem());
+ words = orthography.getLexer().tokenize(getAndClearText());
}
- checkWords(words);
+ final WritingSystem4a writingSystem = getCurrentWritingSystem();
+ final Orthography4a orthography = this.server.getOrthography(writingSystem);
+ checkWords(orthography, words);
/* This element should match the top of the element stack. Pop it. */
if (element.matches(uri, localName, qName)) {
this.elementStack.pop();
-
- /* Recompute the current writing system. */
- final int last = this.elementStack.size() - 1;
- for (int index = last; index > -1; index --) {
- final Element testElement = this.elementStack.get(index);
- if (testElement.writingSystem != null) {
- this.currentWritingSystem = testElement.writingSystem;
- break;
- }
- }
- /* Recompute the current orthography configuration. */
- for (int index = last; index > -1; index --) {
- final Element testElement = this.elementStack.get(index);
- if (testElement.orthographyConfig != null) {
- this.currentOrthographyConfig = testElement.orthographyConfig;
- break;
- }
- }
} else {
throw new SAXException("Closing element does not match top of stack.");
}
@@ -359,9 +315,10 @@
/**
* Spell-check each word in a sequence of words.
+ * @param orthography The orthography to be used to spell-check {@code words}.
* @param words The words to be checked.
*/
- private void checkWords(final List<CharSequence> words) {
+ private void checkWords(final Orthography4a orthography, final List<CharSequence> words) {
if (words == null) {
return;
}
@@ -368,7 +325,7 @@
for (int index = 0; index < words.size(); index ++) {
if (index % 2 == 0) {
final CharSequence word = words.get(index);
- checkWord(word);
+ checkWord(orthography, word);
}
}
}
@@ -375,26 +332,27 @@
/**
* Spell-check a word.
+ * @param orthography The orthography to be used to spell-check {@code word}.
* @param word The word to be checked.
*/
- private void checkWord(final CharSequence word) {
+ private void checkWord(final Orthography4a orthography, final CharSequence word) {
/* The word breaker can return empty words when the parsed text begins with non-word content. */
if (word.length() < 1) {
return;
}
- if (this.currentOrthographyConfig == null) {
+ if (orthography == null) {
/* Treat as a misspelling. */
this.output.println("(no config) " + word);
return;
}
- if (this.currentOrthographyConfig.isRecognizedWord(word, 0, word.length(), null, this.currentDictionaries)) {
+ if (orthography.isRecognizedWord(word, 0, word.length(), null, this.currentDictionaries)) {
return;
}
final String message = String.format("Not found: %s %s %s", word, getShortLocationString(getLocator()),
- this.currentWritingSystem.toString());
+ getCurrentWritingSystem().toString());
this.output.println(message);
this.notFoundCounter ++;
}
@@ -486,4 +444,18 @@
throw new UnsupportedOperationException();
}
+ /**
+ * Finds the top-most writing system specified in the element stack.
+ * @return The top-most writing system specified in the element stack.
+ */
+ private WritingSystem4a getCurrentWritingSystem() {
+ for (int index = this.elementStack.size() - 1; index > -1; index --) {
+ final Element element = this.elementStack.get(index);
+ if (element.writingSystem != null) {
+ return element.writingSystem;
+ }
+ }
+ return null;
+ }
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|