From 2ac18698e3bf10b5470933cd36314dccbd7330aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?= Date: Wed, 2 Apr 2025 11:10:22 +0200 Subject: [PATCH 1/7] Update docs/changelog/126108.yaml --- docs/changelog/126108.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/changelog/126108.yaml diff --git a/docs/changelog/126108.yaml b/docs/changelog/126108.yaml new file mode 100644 index 0000000000000..f70e0216074a9 --- /dev/null +++ b/docs/changelog/126108.yaml @@ -0,0 +1,5 @@ +pr: 126108 +summary: Decouple the esql plugin from the ML plugin by removing explicit dependency +area: Machine Learning +type: enhancement +issues: [] From 9d59b869526341aa13fb9a69cf58c1259634c9fb Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 2 Apr 2025 15:12:44 +0200 Subject: [PATCH 2/7] Moving MlAggsHelper to x-pack-core. --- x-pack/plugin/core/src/main/java/module-info.java | 1 + .../org/elasticsearch/xpack/core}/ml/aggs/MlAggsHelper.java | 2 +- .../elasticsearch/compute/operator/ChangePointOperator.java | 2 +- .../xpack/ml/aggs/changepoint/ChangeDetector.java | 2 +- .../xpack/ml/aggs/changepoint/ChangePointAggregator.java | 6 +++--- .../xpack/ml/aggs/changepoint/ChangePointDetector.java | 2 +- .../xpack/ml/aggs/changepoint/SpikeAndDipDetector.java | 2 +- .../ml/aggs/correlation/BucketCorrelationAggregator.java | 2 +- .../ml/aggs/inference/InternalInferenceAggregation.java | 2 +- .../xpack/ml/aggs/kstest/BucketCountKSTestAggregator.java | 4 ++-- .../xpack/ml/aggs/kstest/InternalKSTestAggregation.java | 2 +- .../xpack/ml/aggs/changepoint/ChangeDetectorTests.java | 2 +- .../xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java | 2 +- .../ml/aggs/kstest/BucketCountKSTestAggregatorTests.java | 2 +- 14 files changed, 17 insertions(+), 16 deletions(-) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/MlAggsHelper.java (99%) diff --git a/x-pack/plugin/core/src/main/java/module-info.java b/x-pack/plugin/core/src/main/java/module-info.java index c6f8376d63fa9..c93578dcedea5 100644 --- a/x-pack/plugin/core/src/main/java/module-info.java +++ b/x-pack/plugin/core/src/main/java/module-info.java @@ -79,6 +79,7 @@ exports org.elasticsearch.xpack.core.inference; exports org.elasticsearch.xpack.core.logstash; exports org.elasticsearch.xpack.core.ml.action; + exports org.elasticsearch.xpack.core.ml.aggs; exports org.elasticsearch.xpack.core.ml.annotations; exports org.elasticsearch.xpack.core.ml.autoscaling; exports org.elasticsearch.xpack.core.ml.calendars; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/MlAggsHelper.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/MlAggsHelper.java similarity index 99% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/MlAggsHelper.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/MlAggsHelper.java index 88c19fc670794..f1a788322aeeb 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/MlAggsHelper.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/MlAggsHelper.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs; +package org.elasticsearch.xpack.core.ml.aggs; import org.elasticsearch.search.aggregations.Aggregation; import org.elasticsearch.search.aggregations.InternalAggregations; diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java index 2693c13a5383a..8ea137edd8da5 100644 --- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java @@ -15,7 +15,7 @@ import org.elasticsearch.compute.data.DoubleBlock; import org.elasticsearch.compute.data.Page; import org.elasticsearch.core.Releasables; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangeType; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java index cf97ed629cfc5..35ce740244c46 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java @@ -15,7 +15,7 @@ import org.elasticsearch.common.util.set.Sets; import org.elasticsearch.logging.LogManager; import org.elasticsearch.logging.Logger; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import java.util.Arrays; import java.util.Random; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java index ce622df184617..7778bee6301b2 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java @@ -12,13 +12,13 @@ import org.elasticsearch.search.aggregations.InternalAggregations; import org.elasticsearch.search.aggregations.pipeline.BucketHelpers; import org.elasticsearch.search.aggregations.pipeline.SiblingPipelineAggregator; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import java.util.Map; import java.util.Optional; -import static org.elasticsearch.xpack.ml.aggs.MlAggsHelper.extractBucket; -import static org.elasticsearch.xpack.ml.aggs.MlAggsHelper.extractDoubleBucketedValues; +import static org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper.extractBucket; +import static org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper.extractDoubleBucketedValues; public class ChangePointAggregator extends SiblingPipelineAggregator { diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java index d7708420994bb..da220f7cde56b 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java @@ -10,7 +10,7 @@ import org.apache.commons.math3.exception.NotStrictlyPositiveException; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; /** * Detects whether a series of values has a change point, by running both diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java index fa632f643ffdf..9f6093b1c3992 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java @@ -7,7 +7,7 @@ package org.elasticsearch.xpack.ml.aggs.changepoint; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import java.util.Arrays; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/correlation/BucketCorrelationAggregator.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/correlation/BucketCorrelationAggregator.java index 97e803b5961a7..5ce779b9bf6ac 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/correlation/BucketCorrelationAggregator.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/correlation/BucketCorrelationAggregator.java @@ -13,7 +13,7 @@ import org.elasticsearch.search.aggregations.InternalAggregations; import org.elasticsearch.search.aggregations.pipeline.InternalSimpleValue; import org.elasticsearch.search.aggregations.pipeline.SiblingPipelineAggregator; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import java.util.Map; import java.util.stream.LongStream; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/inference/InternalInferenceAggregation.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/inference/InternalInferenceAggregation.java index 5b5e41a3f6c98..a13fc6d343ed3 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/inference/InternalInferenceAggregation.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/inference/InternalInferenceAggregation.java @@ -20,7 +20,7 @@ import java.util.Map; import java.util.Objects; -import static org.elasticsearch.xpack.ml.aggs.MlAggsHelper.invalidPathException; +import static org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper.invalidPathException; public class InternalInferenceAggregation extends InternalAggregation { diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregator.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregator.java index f26dadf5ece22..bfdccad2c5cad 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregator.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregator.java @@ -16,8 +16,8 @@ import org.elasticsearch.search.aggregations.InternalAggregation; import org.elasticsearch.search.aggregations.InternalAggregations; import org.elasticsearch.search.aggregations.pipeline.SiblingPipelineAggregator; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import org.elasticsearch.xpack.ml.aggs.DoubleArray; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; import java.util.Arrays; import java.util.Collections; @@ -33,7 +33,7 @@ import java.util.stream.LongStream; import java.util.stream.Stream; -import static org.elasticsearch.xpack.ml.aggs.MlAggsHelper.extractDoubleBucketedValues; +import static org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper.extractDoubleBucketedValues; public class BucketCountKSTestAggregator extends SiblingPipelineAggregator { diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/InternalKSTestAggregation.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/InternalKSTestAggregation.java index f196b5f66071a..a9c758aca2144 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/InternalKSTestAggregation.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/kstest/InternalKSTestAggregation.java @@ -18,7 +18,7 @@ import java.util.List; import java.util.Map; -import static org.elasticsearch.xpack.ml.aggs.MlAggsHelper.invalidPathException; +import static org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper.invalidPathException; public class InternalKSTestAggregation extends InternalAggregation { diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java index 9a0338b90156b..cd60a517e8ba2 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java @@ -12,7 +12,7 @@ import org.apache.commons.math3.random.RandomGeneratorFactory; import org.elasticsearch.common.Randomness; import org.elasticsearch.search.aggregations.AggregatorTestCase; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.DoubleStream; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java index c80cfffbd7328..ea19fc7a98fe1 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java @@ -8,7 +8,7 @@ package org.elasticsearch.xpack.ml.aggs.changepoint; import org.elasticsearch.test.ESTestCase; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import java.util.Arrays; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregatorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregatorTests.java index 696b448ca904a..caadd9ef4c859 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregatorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/kstest/BucketCountKSTestAggregatorTests.java @@ -8,7 +8,7 @@ package org.elasticsearch.xpack.ml.aggs.kstest; import org.elasticsearch.test.ESTestCase; -import org.elasticsearch.xpack.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; import java.util.Arrays; import java.util.EnumSet; From 59607c926c9ac50de4780693dd55d18889ce3b92 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 2 Apr 2025 15:16:42 +0200 Subject: [PATCH 3/7] Moving ChangeType to x-pack-core. --- x-pack/plugin/core/src/main/java/module-info.java | 1 + .../xpack/core}/ml/aggs/changepoint/ChangeType.java | 2 +- .../org/elasticsearch/compute/operator/ChangePointOperator.java | 2 +- .../elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java | 1 + .../xpack/ml/aggs/changepoint/ChangePointAggregator.java | 1 + .../xpack/ml/aggs/changepoint/ChangePointDetector.java | 1 + .../ml/aggs/changepoint/ChangePointNamedContentProvider.java | 1 + .../ml/aggs/changepoint/InternalChangePointAggregation.java | 1 + .../xpack/ml/aggs/changepoint/SpikeAndDipDetector.java | 1 + .../xpack/ml/aggs/changepoint/ChangeDetectorTests.java | 1 + .../xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java | 1 + .../aggs/changepoint/InternalChangePointAggregationTests.java | 1 + .../xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java | 1 + 13 files changed, 13 insertions(+), 2 deletions(-) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/changepoint/ChangeType.java (99%) diff --git a/x-pack/plugin/core/src/main/java/module-info.java b/x-pack/plugin/core/src/main/java/module-info.java index c93578dcedea5..abbb58cbde90e 100644 --- a/x-pack/plugin/core/src/main/java/module-info.java +++ b/x-pack/plugin/core/src/main/java/module-info.java @@ -80,6 +80,7 @@ exports org.elasticsearch.xpack.core.logstash; exports org.elasticsearch.xpack.core.ml.action; exports org.elasticsearch.xpack.core.ml.aggs; + exports org.elasticsearch.xpack.core.ml.aggs.changepoint; exports org.elasticsearch.xpack.core.ml.annotations; exports org.elasticsearch.xpack.core.ml.autoscaling; exports org.elasticsearch.xpack.core.ml.calendars; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeType.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/changepoint/ChangeType.java similarity index 99% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeType.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/changepoint/ChangeType.java index 580209b2d821d..d7cc21aa50053 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeType.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/changepoint/ChangeType.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.changepoint; +package org.elasticsearch.xpack.core.ml.aggs.changepoint; import org.elasticsearch.common.io.stream.NamedWriteable; import org.elasticsearch.common.io.stream.StreamInput; diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java index 8ea137edd8da5..43641f328fb13 100644 --- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java @@ -16,8 +16,8 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.core.Releasables; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetector; -import org.elasticsearch.xpack.ml.aggs.changepoint.ChangeType; import java.util.ArrayList; import java.util.Deque; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java index 35ce740244c46..9fd7a9e10f7a7 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java @@ -16,6 +16,7 @@ import org.elasticsearch.logging.LogManager; import org.elasticsearch.logging.Logger; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.Arrays; import java.util.Random; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java index 7778bee6301b2..093a28da9f570 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java @@ -13,6 +13,7 @@ import org.elasticsearch.search.aggregations.pipeline.BucketHelpers; import org.elasticsearch.search.aggregations.pipeline.SiblingPipelineAggregator; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.Map; import java.util.Optional; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java index da220f7cde56b..80b3c169d7062 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java @@ -11,6 +11,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; /** * Detects whether a series of values has a change point, by running both diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointNamedContentProvider.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointNamedContentProvider.java index 7d6b5c13022ae..97f36bfc86c96 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointNamedContentProvider.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointNamedContentProvider.java @@ -8,6 +8,7 @@ package org.elasticsearch.xpack.ml.aggs.changepoint; import org.elasticsearch.common.io.stream.NamedWriteableRegistry; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.List; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregation.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregation.java index 25e8c954c87c5..114f03040bad6 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregation.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregation.java @@ -13,6 +13,7 @@ import org.elasticsearch.search.aggregations.AggregatorReducer; import org.elasticsearch.search.aggregations.InternalAggregation; import org.elasticsearch.xcontent.XContentBuilder; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import org.elasticsearch.xpack.core.ml.utils.NamedXContentObjectHelper; import java.io.IOException; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java index 9f6093b1c3992..66bdb7204254f 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetector.java @@ -8,6 +8,7 @@ package org.elasticsearch.xpack.ml.aggs.changepoint; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.Arrays; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java index cd60a517e8ba2..44b9e2888990a 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetectorTests.java @@ -13,6 +13,7 @@ import org.elasticsearch.common.Randomness; import org.elasticsearch.search.aggregations.AggregatorTestCase; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.DoubleStream; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java index 5cb66aaa5a58c..5260b34239488 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java @@ -25,6 +25,7 @@ import org.elasticsearch.search.aggregations.bucket.filter.InternalFilter; import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder; import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramInterval; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import org.elasticsearch.xpack.ml.MachineLearningTests; import java.io.IOException; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregationTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregationTests.java index aacb6766fb06a..875fa0612e549 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregationTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/InternalChangePointAggregationTests.java @@ -13,6 +13,7 @@ import org.elasticsearch.search.SearchModule; import org.elasticsearch.search.aggregations.InternalAggregations; import org.elasticsearch.test.AbstractWireSerializingTestCase; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.ArrayList; import java.util.Collections; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java index ea19fc7a98fe1..c4c66fd9c44ca 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/SpikeAndDipDetectorTests.java @@ -9,6 +9,7 @@ import org.elasticsearch.test.ESTestCase; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.Arrays; From eb5b75b60b24c16ce51c1245c333baafb83df345 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 2 Apr 2025 20:38:45 +0200 Subject: [PATCH 4/7] Move ChangePointDetector as an interface in x-pack-core --- .../aggs/changepoint/ChangePointDetector.java | 14 +++++++ .../compute/operator/ChangePointOperator.java | 13 ++++--- .../operator/ChangePointOperatorTests.java | 3 +- .../xpack/esql/plan/logical/ChangePoint.java | 3 +- .../esql/planner/LocalExecutionPlanner.java | 5 +++ .../xpack/esql/plugin/ComputeService.java | 4 ++ .../xpack/esql/plugin/MlServices.java | 17 ++++++++ .../esql/plugin/TransportEsqlQueryAction.java | 5 ++- .../elasticsearch/xpack/esql/CsvTests.java | 2 + .../optimizer/PhysicalPlanOptimizerTests.java | 1 + .../planner/LocalExecutionPlannerTests.java | 1 + .../xpack/ml/MachineLearning.java | 15 +++++-- .../ml/aggs/changepoint/ChangeDetector.java | 4 +- .../ChangePointAggregationBuilder.java | 39 ++++++++++++++++--- .../changepoint/ChangePointAggregator.java | 9 ++++- ...ctor.java => ChangePointDetectorImpl.java} | 8 ++-- .../ChangePointAggregationBuilderTests.java | 2 +- .../ChangePointAggregatorTests.java | 2 +- 18 files changed, 120 insertions(+), 27 deletions(-) create mode 100644 x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/changepoint/ChangePointDetector.java create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java rename x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/{ChangePointDetector.java => ChangePointDetectorImpl.java} (88%) diff --git a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/changepoint/ChangePointDetector.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/changepoint/ChangePointDetector.java new file mode 100644 index 0000000000000..23370c0f431f5 --- /dev/null +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/changepoint/ChangePointDetector.java @@ -0,0 +1,14 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +package org.elasticsearch.xpack.core.ml.aggs.changepoint; + +import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; + +public interface ChangePointDetector { + ChangeType getChangeType(MlAggsHelper.DoubleBucketValues bucketValues); +} diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java index 43641f328fb13..8c20bdda01733 100644 --- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java @@ -16,8 +16,8 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.core.Releasables; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; -import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetector; import java.util.ArrayList; import java.util.Deque; @@ -35,10 +35,10 @@ public class ChangePointOperator implements Operator { public static final int INPUT_VALUE_COUNT_LIMIT = 1000; - public record Factory(int channel, String sourceText, int sourceLine, int sourceColumn) implements OperatorFactory { + public record Factory(ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn) implements OperatorFactory { @Override public Operator get(DriverContext driverContext) { - return new ChangePointOperator(driverContext, channel, sourceText, sourceLine, sourceColumn); + return new ChangePointOperator(driverContext, changePointDetector, channel, sourceText, sourceLine, sourceColumn); } @Override @@ -48,11 +48,11 @@ public String describe() { } private final DriverContext driverContext; + private final ChangePointDetector changePointDetector; private final int channel; private final String sourceText; private final int sourceLine; private final int sourceColumn; - private final Deque inputPages; private final Deque outputPages; private boolean finished; @@ -60,8 +60,9 @@ public String describe() { // TODO: make org.elasticsearch.xpack.esql.core.tree.Source available here // (by modularizing esql-core) and use that instead of the individual fields. - public ChangePointOperator(DriverContext driverContext, int channel, String sourceText, int sourceLine, int sourceColumn) { + public ChangePointOperator(DriverContext driverContext, ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn) { this.driverContext = driverContext; + this.changePointDetector = changePointDetector; this.channel = channel; this.sourceText = sourceText; this.sourceLine = sourceLine; @@ -141,7 +142,7 @@ private void createOutputPages() { values.stream().mapToDouble(Double::doubleValue).toArray(), bucketIndexes.stream().mapToInt(Integer::intValue).toArray() ); - ChangeType changeType = ChangePointDetector.getChangeType(bucketValues); + ChangeType changeType = changePointDetector.getChangeType(bucketValues); int changePointIndex = changeType.changePoint(); BlockFactory blockFactory = driverContext.blockFactory(); diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ChangePointOperatorTests.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ChangePointOperatorTests.java index 3175bb06c5627..0f2e927481012 100644 --- a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ChangePointOperatorTests.java +++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/ChangePointOperatorTests.java @@ -15,6 +15,7 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.test.OperatorTestCase; import org.elasticsearch.compute.test.SequenceLongBlockSourceOperator; +import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetectorImpl; import org.hamcrest.Matcher; import java.util.ArrayList; @@ -71,7 +72,7 @@ protected void assertSimpleOutput(List input, List results) { @Override protected Operator.OperatorFactory simple() { - return new ChangePointOperator.Factory(0, null, 0, 0); + return new ChangePointOperator.Factory(new ChangePointDetectorImpl(), 0, null, 0, 0); } @Override diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java index 5814256838b1e..f7c8c597c1f2e 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java @@ -19,6 +19,7 @@ import org.elasticsearch.xpack.esql.core.type.DataType; import org.elasticsearch.xpack.esql.expression.NamedExpressions; import org.elasticsearch.xpack.esql.expression.Order; +import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetectorImpl; import java.io.IOException; import java.util.List; @@ -30,7 +31,7 @@ * Plan that detects change points in a list of values. See also: *
    *
  • {@link org.elasticsearch.compute.operator.ChangePointOperator} - *
  • {@link org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetector} + *
  • {@link ChangePointDetectorImpl} *
* * ChangePoint should always run on the coordinating node after the data is collected diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index 71b26fa43829e..fd095c72038b8 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -105,6 +105,7 @@ import org.elasticsearch.xpack.esql.plan.physical.ShowExec; import org.elasticsearch.xpack.esql.plan.physical.TopNExec; import org.elasticsearch.xpack.esql.planner.EsPhysicalOperationProviders.ShardContext; +import org.elasticsearch.xpack.esql.plugin.MlServices; import org.elasticsearch.xpack.esql.plugin.QueryPragmas; import org.elasticsearch.xpack.esql.score.ScoreMapper; import org.elasticsearch.xpack.esql.session.Configuration; @@ -144,6 +145,7 @@ public class LocalExecutionPlanner { private final Supplier exchangeSinkSupplier; private final EnrichLookupService enrichLookupService; private final LookupFromIndexService lookupFromIndexService; + private final MlServices mlServices; private final PhysicalOperationProviders physicalOperationProviders; private final List shardContexts; @@ -159,6 +161,7 @@ public LocalExecutionPlanner( Supplier exchangeSinkSupplier, EnrichLookupService enrichLookupService, LookupFromIndexService lookupFromIndexService, + MlServices mlServices, PhysicalOperationProviders physicalOperationProviders, List shardContexts ) { @@ -174,6 +177,7 @@ public LocalExecutionPlanner( this.exchangeSinkSupplier = exchangeSinkSupplier; this.enrichLookupService = enrichLookupService; this.lookupFromIndexService = lookupFromIndexService; + this.mlServices = mlServices; this.physicalOperationProviders = physicalOperationProviders; this.shardContexts = shardContexts; } @@ -771,6 +775,7 @@ private PhysicalOperation planChangePoint(ChangePointExec changePoint, LocalExec Layout layout = source.layout.builder().append(changePoint.targetType()).append(changePoint.targetPvalue()).build(); return source.with( new ChangePointOperator.Factory( + mlServices.changePointDetector(), layout.get(changePoint.value().id()).channel(), changePoint.sourceText(), changePoint.sourceLocation().getLineNumber(), diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java index 293be0eb3c2b0..a22f1dc5eecb9 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java @@ -127,6 +127,7 @@ public class ComputeService { private final DataNodeComputeHandler dataNodeComputeHandler; private final ClusterComputeHandler clusterComputeHandler; private final ExchangeService exchangeService; + private final MlServices mlServices; @SuppressWarnings("this-escape") public ComputeService( @@ -136,6 +137,7 @@ public ComputeService( EnrichLookupService enrichLookupService, LookupFromIndexService lookupFromIndexService, ClusterService clusterService, + MlServices mlServices, ThreadPool threadPool, BigArrays bigArrays, BlockFactory blockFactory @@ -158,6 +160,7 @@ public ComputeService( dataNodeComputeHandler ); this.exchangeService = exchangeService; + this.mlServices = mlServices; } public void execute( @@ -410,6 +413,7 @@ public SourceProvider createSourceProvider() { context.exchangeSinkSupplier(), enrichLookupService, lookupFromIndexService, + mlServices, new EsPhysicalOperationProviders(context.foldCtx(), contexts, searchService.getIndicesService().getAnalysis()), contexts ); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java new file mode 100644 index 0000000000000..72f9f2d3e1c65 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java @@ -0,0 +1,17 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +package org.elasticsearch.xpack.esql.plugin; + +import org.elasticsearch.injection.guice.Inject; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; + +public record MlServices(ChangePointDetector changePointDetector) { + @Inject + public MlServices { + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java index 72ca465f647b7..4d872e9eb1675 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java @@ -35,6 +35,7 @@ import org.elasticsearch.usage.UsageService; import org.elasticsearch.xpack.core.XPackPlugin; import org.elasticsearch.xpack.core.async.AsyncExecutionId; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.esql.VerificationException; import org.elasticsearch.xpack.esql.action.ColumnInfoImpl; import org.elasticsearch.xpack.esql.action.EsqlExecutionInfo; @@ -99,7 +100,8 @@ public TransportEsqlQueryAction( Client client, NamedWriteableRegistry registry, IndexNameExpressionResolver indexNameExpressionResolver, - UsageService usageService + UsageService usageService, + MlServices mlServices ) { // TODO replace SAME when removing workaround for https://github.com/elastic/elasticsearch/issues/97916 super(EsqlQueryAction.NAME, transportService, actionFilters, EsqlQueryRequest::new, EsExecutors.DIRECT_EXECUTOR_SERVICE); @@ -133,6 +135,7 @@ public TransportEsqlQueryAction( enrichLookupService, lookupFromIndexService, clusterService, + mlServices, threadPool, bigArrays, blockFactoryProvider.blockFactory() diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index 90d171bd9796a..21a7006f2acd0 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -86,6 +86,7 @@ import org.elasticsearch.xpack.esql.planner.PlannerUtils; import org.elasticsearch.xpack.esql.planner.TestPhysicalOperationProviders; import org.elasticsearch.xpack.esql.planner.mapper.Mapper; +import org.elasticsearch.xpack.esql.plugin.MlServices; import org.elasticsearch.xpack.esql.plugin.QueryPragmas; import org.elasticsearch.xpack.esql.session.Configuration; import org.elasticsearch.xpack.esql.session.EsqlSession; @@ -666,6 +667,7 @@ void executeSubPlan( () -> exchangeSink.createExchangeSink(() -> {}), Mockito.mock(EnrichLookupService.class), Mockito.mock(LookupFromIndexService.class), + Mockito.mock(MlServices.class), physicalOperationProviders, List.of() ); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java index 2af859bfabc31..a585e546148a9 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java @@ -7673,6 +7673,7 @@ private LocalExecutionPlanner.LocalExecutionPlan physicalOperationsFromPhysicalP () -> exchangeSinkHandler.createExchangeSink(() -> {}), null, null, + null, new EsPhysicalOperationProviders(FoldContext.small(), List.of(), null), List.of() ); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java index 543a603a5e6f4..a605199c0d9e2 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java @@ -213,6 +213,7 @@ private LocalExecutionPlanner planner() throws IOException { null, null, null, + null, esPhysicalOperationProviders(shardContexts), shardContexts ); diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java index b4042d674a30f..43d5081b200ac 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java @@ -60,6 +60,7 @@ import org.elasticsearch.license.XPackLicenseState; import org.elasticsearch.monitor.jvm.JvmInfo; import org.elasticsearch.monitor.os.OsProbe; +import org.elasticsearch.node.PluginComponentBinding; import org.elasticsearch.persistent.PersistentTaskParams; import org.elasticsearch.persistent.PersistentTaskState; import org.elasticsearch.persistent.PersistentTasksExecutor; @@ -184,6 +185,7 @@ import org.elasticsearch.xpack.core.ml.action.UpgradeJobModelSnapshotAction; import org.elasticsearch.xpack.core.ml.action.ValidateDetectorAction; import org.elasticsearch.xpack.core.ml.action.ValidateJobConfigAction; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.core.ml.annotations.AnnotationIndex; import org.elasticsearch.xpack.core.ml.datafeed.DatafeedState; import org.elasticsearch.xpack.core.ml.dataframe.DataFrameAnalyticsTaskState; @@ -297,6 +299,7 @@ import org.elasticsearch.xpack.ml.aggs.categorization.CategorizeTextAggregationBuilder; import org.elasticsearch.xpack.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointAggregationBuilder; +import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetectorImpl; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointNamedContentProvider; import org.elasticsearch.xpack.ml.aggs.changepoint.InternalChangePointAggregation; import org.elasticsearch.xpack.ml.aggs.correlation.BucketCorrelationAggregationBuilder; @@ -776,7 +779,7 @@ public void loadExtensions(ExtensionLoader loader) { private final SetOnce mlAutoscalingDeciderService = new SetOnce<>(); private final SetOnce deploymentManager = new SetOnce<>(); private final SetOnce trainedModelAllocationClusterServiceSetOnce = new SetOnce<>(); - + private final SetOnce changePointDetector = new SetOnce<>(new ChangePointDetectorImpl()); private final SetOnce machineLearningExtension = new SetOnce<>(); public MachineLearning(Settings settings) { @@ -1354,7 +1357,8 @@ public Collection createComponents(PluginServices services) { deploymentManager.get(), nodeAvailabilityZoneMapper, new MachineLearningExtensionHolder(machineLearningExtension.get()), - mlMetrics + mlMetrics, + new PluginComponentBinding<>(ChangePointDetector.class, changePointDetector.get()) ); } @@ -1765,8 +1769,11 @@ public List getPipelineAggregations() { ).addResultReader(InternalKSTestAggregation::new), new SearchPlugin.PipelineAggregationSpec( ChangePointAggregationBuilder.NAME, - ChangePointAggregationBuilder::new, - checkAggLicense(ChangePointAggregationBuilder.PARSER, CHANGE_POINT_AGG_FEATURE) + in -> new ChangePointAggregationBuilder(changePointDetector.get(), in), + checkAggLicense( + (p, c) -> ChangePointAggregationBuilder.fromXContent(p, c, changePointDetector.get()), + CHANGE_POINT_AGG_FEATURE + ) ).addResultReader(InternalChangePointAggregation::new) ); } diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java index 9fd7a9e10f7a7..f4430cd787fb4 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangeDetector.java @@ -48,7 +48,7 @@ public class ChangeDetector { ChangeType detect(double minBucketsPValue) { // This was obtained by simulating the test power for a fixed size effect as a // function of the bucket value count. - double pValueThreshold = minBucketsPValue * Math.exp(-0.04 * (values.length - 2 * (ChangePointDetector.MINIMUM_BUCKETS + 1))); + double pValueThreshold = minBucketsPValue * Math.exp(-0.04 * (values.length - 2 * (ChangePointDetectorImpl.MINIMUM_BUCKETS + 1))); return testForChange(pValueThreshold).changeType(bucketValues, slope(values)); } @@ -136,7 +136,7 @@ private TestStats testForChange(double pValueThreshold) { } private int[] computeCandidateChangePoints(double[] values) { - int minValues = Math.max((int) (0.1 * values.length + 0.5), ChangePointDetector.MINIMUM_BUCKETS); + int minValues = Math.max((int) (0.1 * values.length + 0.5), ChangePointDetectorImpl.MINIMUM_BUCKETS); if (values.length - 2 * minValues <= MAXIMUM_CANDIDATE_CHANGE_POINTS) { return IntStream.range(minValues, values.length - minValues).toArray(); } else { diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilder.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilder.java index 1a82c5310332f..b7afd37d21451 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilder.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilder.java @@ -18,6 +18,8 @@ import org.elasticsearch.xcontent.ObjectParser; import org.elasticsearch.xcontent.ParseField; import org.elasticsearch.xcontent.XContentBuilder; +import org.elasticsearch.xcontent.XContentParser; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import java.io.IOException; import java.util.Locale; @@ -29,10 +31,10 @@ public class ChangePointAggregationBuilder extends BucketMetricsPipelineAggregat public static final ParseField NAME = new ParseField("change_point"); @SuppressWarnings("unchecked") - public static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>( + private static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>( NAME.getPreferredName(), false, - (args, context) -> new ChangePointAggregationBuilder(context, (String) args[0]) + (args, context) -> new Builder(context, (String) args[0]) ); static { @@ -45,12 +47,20 @@ public class ChangePointAggregationBuilder extends BucketMetricsPipelineAggregat ); } - public ChangePointAggregationBuilder(String name, String bucketsPath) { + public static ChangePointAggregationBuilder fromXContent(XContentParser parser, String name, ChangePointDetector changePointDetector) { + return PARSER.apply(parser, name).setChangePointDetector(changePointDetector).build(); + } + + private final ChangePointDetector changePointDetector; + + public ChangePointAggregationBuilder(ChangePointDetector changePointDetector, String name, String bucketsPath) { super(name, NAME.getPreferredName(), new String[] { bucketsPath }); + this.changePointDetector = changePointDetector; } - public ChangePointAggregationBuilder(StreamInput in) throws IOException { + public ChangePointAggregationBuilder(ChangePointDetector changePointDetector, StreamInput in) throws IOException { super(in, NAME.getPreferredName()); + this.changePointDetector = changePointDetector; } @Override @@ -68,7 +78,7 @@ protected void innerWriteTo(StreamOutput out) throws IOException {} @Override protected PipelineAggregator createInternal(Map metadata) { - return new ChangePointAggregator(name, bucketsPaths[0], metadata); + return new ChangePointAggregator(changePointDetector, name, bucketsPaths[0], metadata); } @Override @@ -82,4 +92,23 @@ protected XContentBuilder doXContentBody(XContentBuilder builder, Params params) return builder; } + private static class Builder { + private final String name; + private final String bucketPath; + private ChangePointDetector changePointDetector; + + public Builder(String name, String bucketPath) { + this.name = name; + this.bucketPath = bucketPath; + } + + public Builder setChangePointDetector(ChangePointDetector changePointDetector) { + this.changePointDetector = changePointDetector; + return this; + } + + public ChangePointAggregationBuilder build() { + return new ChangePointAggregationBuilder(changePointDetector, name, bucketPath); + } + } } diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java index 093a28da9f570..933e58c364390 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregator.java @@ -13,6 +13,7 @@ import org.elasticsearch.search.aggregations.pipeline.BucketHelpers; import org.elasticsearch.search.aggregations.pipeline.SiblingPipelineAggregator; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; import java.util.Map; @@ -23,8 +24,12 @@ public class ChangePointAggregator extends SiblingPipelineAggregator { - public ChangePointAggregator(String name, String bucketsPath, Map metadata) { + private final ChangePointDetector changePointDetector; + + public ChangePointAggregator(ChangePointDetector changePointDetector, String name, String bucketsPath, Map metadata) { super(name, new String[] { bucketsPath }, metadata); + this.changePointDetector = changePointDetector; + } @Override @@ -45,7 +50,7 @@ public InternalAggregation doReduce(InternalAggregations aggregations, Aggregati } MlAggsHelper.DoubleBucketValues bucketValues = maybeBucketValues.get(); - ChangeType change = ChangePointDetector.getChangeType(bucketValues); + ChangeType change = changePointDetector.getChangeType(bucketValues); ChangePointBucket changePointBucket = null; if (change.changePoint() != ChangeType.NO_CHANGE_POINT) { diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetectorImpl.java similarity index 88% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java rename to x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetectorImpl.java index 80b3c169d7062..20ed937b2586a 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetector.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointDetectorImpl.java @@ -11,6 +11,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.elasticsearch.xpack.core.ml.aggs.MlAggsHelper; +import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangeType; /** @@ -18,9 +19,9 @@ * ChangeDetector and SpikeAndDipDetector on it. This is the main entrypoint * of change point detection. */ -public class ChangePointDetector { +public class ChangePointDetectorImpl implements ChangePointDetector { - private static final Logger logger = LogManager.getLogger(ChangePointDetector.class); + private static final Logger logger = LogManager.getLogger(ChangePointDetectorImpl.class); static final double P_VALUE_THRESHOLD = 0.01; static final int MINIMUM_BUCKETS = 10; @@ -28,7 +29,8 @@ public class ChangePointDetector { /** * Returns the ChangeType of a series of values. */ - public static ChangeType getChangeType(MlAggsHelper.DoubleBucketValues bucketValues) { + @Override + public ChangeType getChangeType(MlAggsHelper.DoubleBucketValues bucketValues) { if (bucketValues.getValues().length < (2 * MINIMUM_BUCKETS) + 2) { return new ChangeType.Indeterminable( "not enough buckets to calculate change_point. Requires at least [" diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilderTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilderTests.java index 2db1149edf80d..31be9c5cb23c1 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilderTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregationBuilderTests.java @@ -22,6 +22,6 @@ protected List plugins() { @Override protected ChangePointAggregationBuilder createTestAggregatorFactory() { - return new ChangePointAggregationBuilder(randomAlphaOfLength(10), randomAlphaOfLength(10)); + return new ChangePointAggregationBuilder(new ChangePointDetectorImpl(), randomAlphaOfLength(10), randomAlphaOfLength(10)); } } diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java index 5260b34239488..9512d9415d2ef 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/changepoint/ChangePointAggregatorTests.java @@ -389,7 +389,7 @@ void testChangeType(double[] bucketValues, Consumer changeTypeAssert .fixedInterval(INTERVAL) .subAggregation(AggregationBuilders.max("max").field(NUMERIC_FIELD_NAME)) ) - .subAggregation(new ChangePointAggregationBuilder("changes", "time>max")); + .subAggregation(new ChangePointAggregationBuilder(new ChangePointDetectorImpl(), "changes", "time>max")); testCase(w -> writeTestDocs(w, bucketValues), (InternalFilter result) -> { InternalChangePointAggregation agg = result.getAggregations().get("changes"); changeTypeAssertions.accept(agg.getChangeType()); From c66421419a5c48fd68e384a159123936ae739672 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 3 Apr 2025 10:48:58 +0200 Subject: [PATCH 5/7] Move Categorize releated code in x-pack-core --- .../core/src/main/java/module-info.java | 2 + ...tractCategorizeTextAggregationBuilder.java | 320 + .../CategorizationBytesRefHash.java | 9 +- .../CategorizationPartOfSpeechDictionary.java | 4 +- .../InternalCategorizationAggregation.java | 36 +- .../SerializableTokenListCategory.java | 2 +- .../categorization/TokenListCategorizer.java | 6 +- .../categorization/TokenListCategory.java | 4 +- .../TokenListSimilarityTester.java | 4 +- .../CategorizationAnalyzer.java | 5 +- .../core/ml/aggs/categorization/ml-en.dict | 76782 ++++++++++++++++ .../blockhash/CategorizeBlockHash.java | 12 +- .../xpack/esql/plugin/MlServices.java | 3 +- .../esql/plugin/TransportEsqlQueryAction.java | 1 - .../CategorizeTextAggregationIT.java | 2 +- .../CategorizeTextDistributedIT.java | 2 +- .../xpack/ml/MachineLearning.java | 4 +- .../CategorizeTextAggregationBuilder.java | 270 +- .../CategorizeTextAggregator.java | 9 +- .../UnmappedCategorizationAggregation.java | 1 + .../xpack/ml/job/JobManager.java | 2 +- .../autodetect/AutodetectCommunicator.java | 2 +- .../writer/AbstractDataToProcessWriter.java | 2 +- .../writer/DataToProcessWriter.java | 2 +- .../writer/JsonDataToProcessWriter.java | 2 +- ...gorizationPartOfSpeechDictionaryTests.java | 3 +- .../CategorizationTestCase.java | 3 +- .../CategorizeTextAggregatorTests.java | 1 + ...nternalCategorizationAggregationTests.java | 2 + .../SerializableTokenListCategoryTests.java | 1 + .../TokenListCategorizerTests.java | 4 +- .../TokenListCategoryTests.java | 3 +- .../TokenListSimilarityTesterTests.java | 3 +- .../CategorizationAnalyzerTests.java | 1 + .../AbstractDataToProcessWriterTests.java | 2 +- .../writer/JsonDataToProcessWriterTests.java | 2 +- 36 files changed, 77191 insertions(+), 322 deletions(-) create mode 100644 x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/AbstractCategorizeTextAggregationBuilder.java rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/categorization/CategorizationBytesRefHash.java (88%) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/categorization/CategorizationPartOfSpeechDictionary.java (98%) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/categorization/InternalCategorizationAggregation.java (90%) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/categorization/SerializableTokenListCategory.java (99%) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/categorization/TokenListCategorizer.java (99%) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/categorization/TokenListCategory.java (99%) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/aggs/categorization/TokenListSimilarityTester.java (96%) rename x-pack/plugin/{ml/src/main/java/org/elasticsearch/xpack => core/src/main/java/org/elasticsearch/xpack/core}/ml/job/categorization/CategorizationAnalyzer.java (96%) create mode 100644 x-pack/plugin/core/src/main/resources/org/elasticsearch/xpack/core/ml/aggs/categorization/ml-en.dict diff --git a/x-pack/plugin/core/src/main/java/module-info.java b/x-pack/plugin/core/src/main/java/module-info.java index abbb58cbde90e..7468949ae9ad1 100644 --- a/x-pack/plugin/core/src/main/java/module-info.java +++ b/x-pack/plugin/core/src/main/java/module-info.java @@ -80,6 +80,7 @@ exports org.elasticsearch.xpack.core.logstash; exports org.elasticsearch.xpack.core.ml.action; exports org.elasticsearch.xpack.core.ml.aggs; + exports org.elasticsearch.xpack.core.ml.aggs.categorization; exports org.elasticsearch.xpack.core.ml.aggs.changepoint; exports org.elasticsearch.xpack.core.ml.annotations; exports org.elasticsearch.xpack.core.ml.autoscaling; @@ -112,6 +113,7 @@ exports org.elasticsearch.xpack.core.ml.inference.trainedmodel; exports org.elasticsearch.xpack.core.ml.inference.utils; exports org.elasticsearch.xpack.core.ml.inference; + exports org.elasticsearch.xpack.core.ml.job.categorization; exports org.elasticsearch.xpack.core.ml.job.config; exports org.elasticsearch.xpack.core.ml.job.groups; exports org.elasticsearch.xpack.core.ml.job.messages; diff --git a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/AbstractCategorizeTextAggregationBuilder.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/AbstractCategorizeTextAggregationBuilder.java new file mode 100644 index 0000000000000..a60738aa72861 --- /dev/null +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/AbstractCategorizeTextAggregationBuilder.java @@ -0,0 +1,320 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +package org.elasticsearch.xpack.core.ml.aggs.categorization; + +import org.elasticsearch.ElasticsearchStatusException; +import org.elasticsearch.TransportVersion; +import org.elasticsearch.TransportVersions; +import org.elasticsearch.common.io.stream.StreamInput; +import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.rest.RestStatus; +import org.elasticsearch.search.aggregations.AbstractAggregationBuilder; +import org.elasticsearch.search.aggregations.AggregatorFactories; +import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregator; +import org.elasticsearch.xcontent.ParseField; +import org.elasticsearch.xcontent.XContentBuilder; +import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; +import org.elasticsearch.xpack.core.ml.job.messages.Messages; +import org.elasticsearch.xpack.core.ml.utils.ExceptionsHelper; + +import java.io.IOException; +import java.util.List; +import java.util.Map; + +import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.MIN_DOC_COUNT_FIELD_NAME; +import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.REQUIRED_SIZE_FIELD_NAME; +import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.SHARD_MIN_DOC_COUNT_FIELD_NAME; +import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.SHARD_SIZE_FIELD_NAME; +import static org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig.Builder.isValidRegex; + +public abstract class AbstractCategorizeTextAggregationBuilder> extends + AbstractAggregationBuilder { + + public static final TermsAggregator.ConstantBucketCountThresholds DEFAULT_BUCKET_COUNT_THRESHOLDS = + new TermsAggregator.ConstantBucketCountThresholds(1, 0, 10, -1); + + public static final String NAME = "categorize_text"; + + // In 8.3 the algorithm used by this aggregation was completely changed. + // Prior to 8.3 the Drain algorithm was used. From 8.3 the same algorithm + // we use in our C++ categorization code was used. As a result of this + // the aggregation will not perform well in mixed version clusters where + // some nodes are pre-8.3 and others are newer, so we throw an error in + // this situation. The aggregation was experimental at the time this change + // was made, so this is acceptabl @Override + // public boolean supportsSampling() { + // return true; + // } + // + // public String getFieldName() { + // return fieldName; + // } + // + // public AbstractCategorizeTextAggregationBuilder setFieldName(String fieldName) { + // this.fieldName = ExceptionsHelper.requireNonNull(fieldName, FIELD_NAME); + // return this; + // }e. + public static final TransportVersion ALGORITHM_CHANGED_VERSION = TransportVersions.V_8_3_0; + + protected static final ParseField FIELD_NAME = new ParseField("field"); + protected static final ParseField SIMILARITY_THRESHOLD = new ParseField("similarity_threshold"); + // The next two are unused, but accepted and ignored to avoid breaking client code + protected static final ParseField MAX_UNIQUE_TOKENS = new ParseField("max_unique_tokens").withAllDeprecated(); + protected static final ParseField MAX_MATCHED_TOKENS = new ParseField("max_matched_tokens").withAllDeprecated(); + protected static final ParseField CATEGORIZATION_FILTERS = new ParseField("categorization_filters"); + protected static final ParseField CATEGORIZATION_ANALYZER = new ParseField("categorization_analyzer"); + + private TermsAggregator.BucketCountThresholds bucketCountThresholds = new TermsAggregator.BucketCountThresholds( + DEFAULT_BUCKET_COUNT_THRESHOLDS + ); + private CategorizationAnalyzerConfig categorizationAnalyzerConfig; + private String fieldName; + // Default of 70% matches the C++ code + private int similarityThreshold = 70; + + protected AbstractCategorizeTextAggregationBuilder(String name) { + super(name); + } + + public AbstractCategorizeTextAggregationBuilder(String name, String fieldName) { + super(name); + this.fieldName = ExceptionsHelper.requireNonNull(fieldName, FIELD_NAME); + } + + protected AbstractCategorizeTextAggregationBuilder( + AbstractCategorizeTextAggregationBuilder clone, + AggregatorFactories.Builder factoriesBuilder, + Map metadata + ) { + super(clone, factoriesBuilder, metadata); + this.bucketCountThresholds = new TermsAggregator.BucketCountThresholds(clone.bucketCountThresholds); + this.fieldName = clone.fieldName; + this.similarityThreshold = clone.similarityThreshold; + this.categorizationAnalyzerConfig = clone.categorizationAnalyzerConfig; + } + + public AbstractCategorizeTextAggregationBuilder(StreamInput in) throws IOException { + super(in); + // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. + if (in.getTransportVersion().before(ALGORITHM_CHANGED_VERSION)) { + throw new ElasticsearchStatusException( + "[" + + NAME + + "] aggregation cannot be used in a cluster where some nodes have version [" + + ALGORITHM_CHANGED_VERSION.toReleaseVersion() + + "] or higher and others have a version before this", + RestStatus.BAD_REQUEST + ); + } + this.bucketCountThresholds = new TermsAggregator.BucketCountThresholds(in); + this.fieldName = in.readString(); + this.similarityThreshold = in.readVInt(); + this.categorizationAnalyzerConfig = in.readOptionalWriteable(CategorizationAnalyzerConfig::new); + } + + @Override + public boolean supportsSampling() { + return true; + } + + public String getFieldName() { + return fieldName; + } + + public AbstractCategorizeTextAggregationBuilder setFieldName(String fieldName) { + this.fieldName = ExceptionsHelper.requireNonNull(fieldName, FIELD_NAME); + return this; + } + + public int getSimilarityThreshold() { + return similarityThreshold; + } + + public AbstractCategorizeTextAggregationBuilder setSimilarityThreshold(int similarityThreshold) { + this.similarityThreshold = similarityThreshold; + if (similarityThreshold < 1 || similarityThreshold > 100) { + throw ExceptionsHelper.badRequestException( + "[{}] must be in the range [1, 100]. Found [{}] in [{}]", + SIMILARITY_THRESHOLD.getPreferredName(), + similarityThreshold, + name + ); + } + return this; + } + + public AbstractCategorizeTextAggregationBuilder setCategorizationAnalyzerConfig( + CategorizationAnalyzerConfig categorizationAnalyzerConfig + ) { + if (this.categorizationAnalyzerConfig != null) { + throw ExceptionsHelper.badRequestException( + "[{}] cannot be used with [{}] - instead specify them as pattern_replace char_filters in the analyzer", + CATEGORIZATION_FILTERS.getPreferredName(), + CATEGORIZATION_ANALYZER.getPreferredName() + ); + } + this.categorizationAnalyzerConfig = categorizationAnalyzerConfig; + return this; + } + + public AbstractCategorizeTextAggregationBuilder setCategorizationFilters(List categorizationFilters) { + if (categorizationFilters == null || categorizationFilters.isEmpty()) { + return this; + } + if (categorizationAnalyzerConfig != null) { + throw ExceptionsHelper.badRequestException( + "[{}] cannot be used with [{}] - instead specify them as pattern_replace char_filters in the analyzer", + CATEGORIZATION_FILTERS.getPreferredName(), + CATEGORIZATION_ANALYZER.getPreferredName() + ); + } + if (categorizationFilters.stream().distinct().count() != categorizationFilters.size()) { + throw ExceptionsHelper.badRequestException(Messages.JOB_CONFIG_CATEGORIZATION_FILTERS_CONTAINS_DUPLICATES); + } + if (categorizationFilters.stream().anyMatch(String::isEmpty)) { + throw ExceptionsHelper.badRequestException(Messages.getMessage(Messages.JOB_CONFIG_CATEGORIZATION_FILTERS_CONTAINS_EMPTY)); + } + for (String filter : categorizationFilters) { + if (isValidRegex(filter) == false) { + throw ExceptionsHelper.badRequestException( + Messages.getMessage(Messages.JOB_CONFIG_CATEGORIZATION_FILTERS_CONTAINS_INVALID_REGEX, filter) + ); + } + } + this.categorizationAnalyzerConfig = CategorizationAnalyzerConfig.buildStandardCategorizationAnalyzer(categorizationFilters); + return this; + } + + /** + * @param size indicating how many buckets should be returned + */ + public AbstractCategorizeTextAggregationBuilder size(int size) { + if (size <= 0) { + throw ExceptionsHelper.badRequestException( + "[{}] must be greater than 0. Found [{}] in [{}]", + REQUIRED_SIZE_FIELD_NAME.getPreferredName(), + size, + name + ); + } + bucketCountThresholds.setRequiredSize(size); + return this; + } + + /** + * @param shardSize - indicating the number of buckets each shard + * will return to the coordinating node (the node that coordinates the + * search execution). The higher the shard size is, the more accurate the + * results are. + */ + public AbstractCategorizeTextAggregationBuilder shardSize(int shardSize) { + if (shardSize <= 0) { + throw ExceptionsHelper.badRequestException( + "[{}] must be greater than 0. Found [{}] in [{}]", + SHARD_SIZE_FIELD_NAME.getPreferredName(), + shardSize, + name + ); + } + bucketCountThresholds.setShardSize(shardSize); + return this; + } + + /** + * @param minDocCount the minimum document count a text category should have in order to appear in + * the response. + */ + public AbstractCategorizeTextAggregationBuilder minDocCount(long minDocCount) { + if (minDocCount < 0) { + throw ExceptionsHelper.badRequestException( + "[{}] must be greater than or equal to 0. Found [{}] in [{}]", + MIN_DOC_COUNT_FIELD_NAME.getPreferredName(), + minDocCount, + name + ); + } + bucketCountThresholds.setMinDocCount(minDocCount); + return this; + } + + /** + * @param shardMinDocCount the minimum document count a text category should have on the shard in order to + * appear in the response. + */ + public AbstractCategorizeTextAggregationBuilder shardMinDocCount(long shardMinDocCount) { + if (shardMinDocCount < 0) { + throw ExceptionsHelper.badRequestException( + "[{}] must be greater than or equal to 0. Found [{}] in [{}]", + SHARD_MIN_DOC_COUNT_FIELD_NAME.getPreferredName(), + shardMinDocCount, + name + ); + } + bucketCountThresholds.setShardMinDocCount(shardMinDocCount); + return this; + } + + protected TermsAggregator.BucketCountThresholds getBucketCountThresholds() { + return this.bucketCountThresholds; + } + + protected CategorizationAnalyzerConfig getCategorizationAnalyzerConfig() { + return categorizationAnalyzerConfig; + } + + @Override + protected void doWriteTo(StreamOutput out) throws IOException { + // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. + if (out.getTransportVersion().before(ALGORITHM_CHANGED_VERSION)) { + throw new ElasticsearchStatusException( + "[" + + NAME + + "] aggregation cannot be used in a cluster where some nodes have version [" + + ALGORITHM_CHANGED_VERSION.toReleaseVersion() + + "] or higher and others have a version before this", + RestStatus.BAD_REQUEST + ); + } + bucketCountThresholds.writeTo(out); + out.writeString(fieldName); + out.writeVInt(similarityThreshold); + out.writeOptionalWriteable(categorizationAnalyzerConfig); + } + + @Override + protected XContentBuilder internalXContent(XContentBuilder builder, Params params) throws IOException { + builder.startObject(); + bucketCountThresholds.toXContent(builder, params); + builder.field(FIELD_NAME.getPreferredName(), fieldName); + builder.field(SIMILARITY_THRESHOLD.getPreferredName(), similarityThreshold); + if (categorizationAnalyzerConfig != null) { + categorizationAnalyzerConfig.toXContent(builder, params); + } + builder.endObject(); + return null; + } + + @Override + public BucketCardinality bucketCardinality() { + return BucketCardinality.MANY; + } + + @Override + public String getType() { + return NAME; + } + + @Override + public TransportVersion getMinimalSupportedVersion() { + // This isn't strictly true, as the categorize_text aggregation has existed since 7.16. + // However, the implementation completely changed in 8.3, so it's best that if the + // coordinating node is on 8.3 or above then it should refuse to use this aggregation + // until the older nodes are upgraded. + return ALGORITHM_CHANGED_VERSION; + } +} diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationBytesRefHash.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/CategorizationBytesRefHash.java similarity index 88% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationBytesRefHash.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/CategorizationBytesRefHash.java index 7d5f1d5517de0..44ce2b0f3d6f9 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationBytesRefHash.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/CategorizationBytesRefHash.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.categorization; +package org.elasticsearch.xpack.core.ml.aggs.categorization; import org.apache.lucene.util.BytesRef; import org.elasticsearch.common.logging.LoggerMessageFormat; @@ -14,6 +14,9 @@ public class CategorizationBytesRefHash implements Releasable { + private static final String NAME = "categorize_text"; + private static final String CATEGORIZATION_FILTERS = "categorization_filters"; + private final BytesRefHash bytesRefHash; public CategorizationBytesRefHash(BytesRefHash bytesRefHash) { @@ -53,8 +56,8 @@ int put(BytesRef bytesRef) { "more than [{}] unique terms encountered. " + "Consider restricting the documents queried or adding [{}] in the {} configuration", Integer.MAX_VALUE, - CategorizeTextAggregationBuilder.CATEGORIZATION_FILTERS.getPreferredName(), - CategorizeTextAggregationBuilder.NAME + CATEGORIZATION_FILTERS, + NAME ) ); } diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationPartOfSpeechDictionary.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/CategorizationPartOfSpeechDictionary.java similarity index 98% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationPartOfSpeechDictionary.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/CategorizationPartOfSpeechDictionary.java index 243286115eb8a..10600834f0d77 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationPartOfSpeechDictionary.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/CategorizationPartOfSpeechDictionary.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.categorization; +package org.elasticsearch.xpack.core.ml.aggs.categorization; import java.io.BufferedReader; import java.io.InputStream; @@ -24,7 +24,7 @@ */ public class CategorizationPartOfSpeechDictionary { - static final String DICTIONARY_FILE_PATH = "/org/elasticsearch/xpack/ml/aggs/categorization/ml-en.dict"; + static final String DICTIONARY_FILE_PATH = "/org/elasticsearch/xpack/core/ml/aggs/categorization/ml-en.dict"; static final String PART_OF_SPEECH_SEPARATOR = "@"; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregation.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/InternalCategorizationAggregation.java similarity index 90% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregation.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/InternalCategorizationAggregation.java index 38e52990a5f88..22b14da7b0c92 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregation.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/InternalCategorizationAggregation.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.categorization; +package org.elasticsearch.xpack.core.ml.aggs.categorization; import org.apache.lucene.util.BytesRef; import org.elasticsearch.ElasticsearchStatusException; @@ -109,12 +109,12 @@ public Bucket(SerializableTokenListCategory serializableCategory, long bucketOrd public Bucket(StreamInput in) throws IOException { // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. - if (in.getTransportVersion().before(CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { + if (in.getTransportVersion().before(AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { throw new ElasticsearchStatusException( "[" - + CategorizeTextAggregationBuilder.NAME + + AbstractCategorizeTextAggregationBuilder.NAME + "] aggregation cannot be used in a cluster where some nodes have version [" - + CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + + AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + "] or higher and others have a version before this", RestStatus.BAD_REQUEST ); @@ -128,12 +128,12 @@ public Bucket(StreamInput in) throws IOException { @Override public void writeTo(StreamOutput out) throws IOException { // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. - if (out.getTransportVersion().before(CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { + if (out.getTransportVersion().before(AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { throw new ElasticsearchStatusException( "[" - + CategorizeTextAggregationBuilder.NAME + + AbstractCategorizeTextAggregationBuilder.NAME + "] aggregation cannot be used in a cluster where some nodes have version [" - + CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + + AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + "] or higher and others have a version before this", RestStatus.BAD_REQUEST ); @@ -177,11 +177,11 @@ public InternalAggregations getAggregations() { return aggregations; } - void setAggregations(InternalAggregations aggregations) { + public void setAggregations(InternalAggregations aggregations) { this.aggregations = aggregations; } - long getBucketOrd() { + public long getBucketOrd() { return bucketOrd; } @@ -211,7 +211,7 @@ public int compareTo(Bucket other) { private final int requiredSize; private final long minDocCount; - protected InternalCategorizationAggregation( + public InternalCategorizationAggregation( String name, int requiredSize, long minDocCount, @@ -221,7 +221,7 @@ protected InternalCategorizationAggregation( this(name, requiredSize, minDocCount, similarityThreshold, metadata, new ArrayList<>()); } - protected InternalCategorizationAggregation( + public InternalCategorizationAggregation( String name, int requiredSize, long minDocCount, @@ -239,12 +239,12 @@ protected InternalCategorizationAggregation( public InternalCategorizationAggregation(StreamInput in) throws IOException { super(in); // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. - if (in.getTransportVersion().before(CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { + if (in.getTransportVersion().before(AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { throw new ElasticsearchStatusException( "[" - + CategorizeTextAggregationBuilder.NAME + + AbstractCategorizeTextAggregationBuilder.NAME + "] aggregation cannot be used in a cluster where some nodes have version [" - + CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + + AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + "] or higher and others have a version before this", RestStatus.BAD_REQUEST ); @@ -258,12 +258,12 @@ public InternalCategorizationAggregation(StreamInput in) throws IOException { @Override protected void doWriteTo(StreamOutput out) throws IOException { // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. - if (out.getTransportVersion().before(CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { + if (out.getTransportVersion().before(AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION)) { throw new ElasticsearchStatusException( "[" - + CategorizeTextAggregationBuilder.NAME + + AbstractCategorizeTextAggregationBuilder.NAME + "] aggregation cannot be used in a cluster where some nodes have version [" - + CategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + + AbstractCategorizeTextAggregationBuilder.ALGORITHM_CHANGED_VERSION.toReleaseVersion() + "] or higher and others have a version before this", RestStatus.BAD_REQUEST ); @@ -301,7 +301,7 @@ public List getBuckets() { @Override public String getWriteableName() { - return CategorizeTextAggregationBuilder.NAME; + return AbstractCategorizeTextAggregationBuilder.NAME; } @Override diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/SerializableTokenListCategory.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/SerializableTokenListCategory.java similarity index 99% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/SerializableTokenListCategory.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/SerializableTokenListCategory.java index 5686f3734f36e..13e3490b0fcda 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/SerializableTokenListCategory.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/SerializableTokenListCategory.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.categorization; +package org.elasticsearch.xpack.core.ml.aggs.categorization; import org.apache.lucene.util.BytesRef; import org.elasticsearch.common.io.stream.StreamInput; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategorizer.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListCategorizer.java similarity index 99% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategorizer.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListCategorizer.java index 7fef6cdafa372..8deb9c1b06366 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategorizer.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListCategorizer.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.categorization; +package org.elasticsearch.xpack.core.ml.aggs.categorization; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -18,8 +18,8 @@ import org.elasticsearch.core.Releasables; import org.elasticsearch.search.aggregations.AggregationReduceContext; import org.elasticsearch.search.aggregations.InternalAggregations; -import org.elasticsearch.xpack.ml.aggs.categorization.TokenListCategory.TokenAndWeight; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategory.TokenAndWeight; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import java.io.IOException; import java.nio.charset.StandardCharsets; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategory.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListCategory.java similarity index 99% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategory.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListCategory.java index fce206203cb45..ab448bbe55627 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategory.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListCategory.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.categorization; +package org.elasticsearch.xpack.core.ml.aggs.categorization; import org.apache.lucene.util.Accountable; import org.elasticsearch.common.util.set.Sets; @@ -482,7 +482,7 @@ static int maxMatchingStringLen(int baseUnfilteredLength, int maxUnfilteredStrin /** * This should get set once, after creation of the object, when it gets put into an aggregation bucket. */ - void setBucketOrd(long bucketOrd) { + public void setBucketOrd(long bucketOrd) { assert bucketOrd >= 0 : "Attempt to set bucketOrd to negative number " + bucketOrd; assert this.bucketOrd == -1 || this.bucketOrd == bucketOrd : "Attempt to change bucketOrd from " + this.bucketOrd + " to " + bucketOrd; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListSimilarityTester.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListSimilarityTester.java similarity index 96% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListSimilarityTester.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListSimilarityTester.java index 25f1056f7dede..e9242c4d4db98 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListSimilarityTester.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/aggs/categorization/TokenListSimilarityTester.java @@ -5,9 +5,9 @@ * 2.0. */ -package org.elasticsearch.xpack.ml.aggs.categorization; +package org.elasticsearch.xpack.core.ml.aggs.categorization; -import org.elasticsearch.xpack.ml.aggs.categorization.TokenListCategory.TokenAndWeight; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategory.TokenAndWeight; import java.util.List; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/categorization/CategorizationAnalyzer.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/job/categorization/CategorizationAnalyzer.java similarity index 96% rename from x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/categorization/CategorizationAnalyzer.java rename to x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/job/categorization/CategorizationAnalyzer.java index 04dcda7f160ed..862444124d3b7 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/categorization/CategorizationAnalyzer.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/job/categorization/CategorizationAnalyzer.java @@ -4,7 +4,7 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -package org.elasticsearch.xpack.ml.job.categorization; +package org.elasticsearch.xpack.core.ml.job.categorization; import org.apache.lucene.analysis.Analyzer; import org.apache.lucene.analysis.TokenStream; @@ -126,4 +126,7 @@ private static Tuple makeAnalyzer(CategorizationAnalyzerConfi } } + public interface Factory { + CategorizationAnalyzer get(AnalysisRegistry analysisRegistry); + } } diff --git a/x-pack/plugin/core/src/main/resources/org/elasticsearch/xpack/core/ml/aggs/categorization/ml-en.dict b/x-pack/plugin/core/src/main/resources/org/elasticsearch/xpack/core/ml/aggs/categorization/ml-en.dict new file mode 100644 index 0000000000000..304af33edcb1c --- /dev/null +++ b/x-pack/plugin/core/src/main/resources/org/elasticsearch/xpack/core/ml/aggs/categorization/ml-en.dict @@ -0,0 +1,76782 @@ +a@INVP +aa@N +aaa@N +aachen@N +aah@? +aardvark@N +aardvarks@p +aaron@N +ab@N +abaci@? +aback@v +abacus@N +abacuses@? +abaft@vP +abalone@N +abalones@p +abandon@tN +abandoned@A +abandoning@tA +abandonment@N +abandons@tp +abase@t +abased@At +abasement@? +abases@t +abash@t +abashed@t +abashes@? +abashing@t +abasing@t +abate@N +abated@V +abatement@N +abates@p +abating@V +abattoir@N +abattoirs@p +abbas@p +abbasid@N +abbess@N +abbesses@? +abbey@N +abbeys@p +abbot@N +abbots@p +abbr@N +abbrev@? +abbreviate@t +abbreviated@t +abbreviates@t +abbreviating@t +abbreviation@N +abbreviations@p +abbrevs@p +abc@N +abcs@p +abdicate@V +abdicated@V +abdicates@V +abdicating@V +abdication@N +abdications@p +abdomen@N +abdomens@p +abdominal@A +abduct@t +abducted@t +abducting@t +abduction@N +abductions@p +abductor@N +abductors@p +abducts@t +abeam@v +abed@N +abel@N +abelard@N +aberdeen@NA +aberrant@A +aberration@N +aberrations@p +abet@V +abets@V +abetted@t +abetter@? +abetters@p +abetting@t +abettor@N +abettors@p +abeyance@N +abhor@V +abhorred@t +abhorrence@N +abhorrent@A +abhorring@t +abhors@V +abide@Vti +abided@V +abides@Vti +abiding@A +abidjan@N +abigail@N +abilene@N +abilities@p +ability@N +abject@A +abjectly@v +abjuration@N +abjurations@p +abjure@t +abjured@t +abjures@t +abjuring@t +ablative@AN +ablatives@p +ablaze@v +able@AN +abler@A +ablest@A +abloom@vA +ablution@N +ablutions@p +ably@v +abm@N +abms@p +abnegate@t +abnegated@t +abnegates@t +abnegating@t +abnegation@N +abnormal@A +abnormalities@p +abnormality@N +abnormally@v +aboard@vP +abode@NV +abodes@pV +abolish@t +abolished@t +abolishes@? +abolishing@t +abolition@NA +abolitionist@N +abolitionists@p +abominable@A +abominably@v +abominate@t +abominated@t +abominates@t +abominating@t +abomination@N +abominations@p +aboriginal@A +aboriginals@p +aborigine@N +aborigines@p +abort@Vit +aborted@Vit +aborting@Vit +abortion@N +abortionist@N +abortionists@p +abortions@p +abortive@A +aborts@Vit +abound@i +abounded@i +abounding@i +abounds@i +about@PvA +above@PvNA +aboveboard@vA +abracadabra@!N +abrade@t +abraded@ti +abrades@t +abrading@ti +abraham@N +abrasion@N +abrasions@p +abrasive@NA +abrasively@? +abrasiveness@? +abrasives@p +abreast@vA +abridge@t +abridged@At +abridgement@? +abridgements@p +abridges@t +abridging@t +abridgment@N +abridgments@p +abroad@v +abrogate@t +abrogated@t +abrogates@t +abrogating@t +abrogation@N +abrogations@p +abrupt@A +abrupter@? +abruptest@? +abruptly@v +abruptness@N +absalom@N +abscess@Ni +abscessed@A +abscesses@? +abscessing@Ai +abscissa@N +abscissae@p +abscissas@p +abscond@i +absconded@i +absconding@i +absconds@i +abseil@iN +abseiled@iA +abseiling@iA +abseils@ip +absence@N +absences@p +absent@AVt +absented@AVt +absentee@N +absenteeism@N +absentees@p +absenting@AVt +absently@v +absents@pVt +absinth@? +absinthe@N +absolute@AN +absolutely@v +absolutes@p +absolutest@? +absolution@N +absolutism@N +absolutist@N +absolutists@p +absolve@t +absolved@t +absolves@t +absolving@t +absorb@t +absorbed@A +absorbency@N +absorbent@AN +absorbents@p +absorbing@A +absorbs@t +absorption@N +abstain@i +abstained@i +abstainer@N +abstainers@p +abstaining@i +abstains@i +abstemious@A +abstention@N +abstentions@p +abstinence@N +abstinent@A +abstract@ANVt +abstracted@A +abstractedly@v +abstracting@AVt +abstraction@N +abstractions@p +abstractly@v +abstractness@N +abstractnesses@? +abstracts@pVt +abstruse@A +abstrusely@v +abstruseness@N +absurd@A +absurder@? +absurdest@? +absurdities@p +absurdity@N +absurdly@v +abuja@? +abundance@N +abundances@p +abundant@A +abundantly@v +abuse@VtN +abused@V +abuser@N +abusers@p +abuses@Vtp +abusing@V +abusive@A +abusively@v +abusiveness@N +abut@V +abutment@N +abutments@p +abuts@V +abutted@V +abutting@AV +abuzz@A +abysmal@A +abysmally@v +abyss@N +abysses@? +abyssinia@N +abyssinian@AN +ac@N +acacia@N +acacias@p +academe@N +academia@N +academic@AN +academical@AN +academically@v +academician@N +academicians@p +academics@p +academies@p +academy@N +acadia@N +acanthi@? +acanthus@N +acanthuses@p +acapulco@N +accede@i +acceded@i +accedes@i +acceding@i +accelerate@Vt +accelerated@V +accelerates@Vt +accelerating@V +acceleration@N +accelerations@p +accelerator@N +accelerators@p +accent@NVt +accented@AVt +accenting@AVt +accents@pVt +accentuate@t +accentuated@t +accentuates@t +accentuating@t +accentuation@N +accept@Vi +acceptability@N +acceptable@A +acceptably@v +acceptance@N +acceptances@p +accepted@A +accepting@Vi +accepts@Vi +access@Nt +accessed@At +accesses@? +accessibility@N +accessible@A +accessibly@v +accessing@At +accession@Nt +accessioned@At +accessioning@At +accessions@pt +accessories@p +accessorise@? +accessorised@? +accessorises@? +accessorising@? +accessorize@t +accessorized@t +accessorizes@t +accessorizing@t +accessory@NA +accident@N +accidental@AN +accidentally@v +accidentals@p +accidents@p +acclaim@tN +acclaimed@tA +acclaiming@tA +acclaims@tp +acclamation@N +acclimate@ti +acclimated@ti +acclimates@ti +acclimating@ti +acclimation@N +acclimatisation@N +acclimatise@ti +acclimatised@ti +acclimatises@ti +acclimatising@ti +acclimatization@N +acclimatize@V +acclimatized@ti +acclimatizes@V +acclimatizing@ti +accolade@N +accolades@p +accommodate@t +accommodated@V +accommodates@t +accommodating@A +accommodation@N +accommodations@p +accompanied@t +accompanies@? +accompaniment@N +accompaniments@p +accompanist@N +accompanists@p +accompany@Vt +accompanying@t +accomplice@N +accomplices@p +accomplish@t +accomplished@A +accomplishes@? +accomplishing@t +accomplishment@N +accomplishments@p +accord@NVt +accordance@N +accorded@AVt +according@A +accordingly@v +accordion@N +accordions@p +accords@pVt +accost@tN +accosted@A +accosting@tA +accosts@tp +account@Nt +accountability@N +accountable@A +accountancy@N +accountant@N +accountants@p +accounted@At +accounting@N +accounts@pt +accouterments@p +accoutrements@p +accra@N +accredit@t +accreditation@N +accredited@t +accrediting@t +accredits@t +accretion@N +accretions@p +accrual@N +accruals@p +accrue@V +accrued@i +accrues@V +accruing@i +acct@N +acculturation@N +accumulate@V +accumulated@V +accumulates@V +accumulating@V +accumulation@N +accumulations@p +accumulative@A +accumulator@N +accumulators@p +accuracy@N +accurate@A +accurately@v +accurateness@N +accursed@A +accurst@? +accusation@N +accusations@p +accusative@AN +accusatives@p +accusatory@A +accuse@V +accused@N +accuser@N +accusers@p +accuses@V +accusing@V +accusingly@v +accustom@t +accustomed@A +accustoming@t +accustoms@t +ace@N +aced@NV +acerbic@A +acerbity@N +aces@p +acetaminophen@? +acetate@N +acetates@p +acetic@A +acetone@N +acetylene@N +achaean@NA +ache@iN +ached@V +achernar@N +aches@ip +achier@? +achiest@? +achievable@A +achieve@Vt +achieved@V +achievement@N +achievements@p +achiever@N +achievers@p +achieves@Vt +achieving@V +achilles@N +aching@V +achingly@v +achoo@? +achromatic@A +achy@? +acid@NA +acidic@A +acidified@ti +acidifies@? +acidify@V +acidifying@ti +acidity@N +acidly@v +acids@p +acidulous@A +acing@NV +acknowledge@t +acknowledged@t +acknowledgement@? +acknowledgements@p +acknowledges@t +acknowledging@t +acknowledgment@N +acknowledgments@p +aclu@N +acme@N +acmes@p +acne@N +acolyte@N +acolytes@p +aconcagua@N +aconite@N +aconites@p +acorn@N +acorns@p +acoustic@A +acoustical@? +acoustically@v +acoustics@N +acquaint@t +acquaintance@N +acquaintances@p +acquaintanceship@? +acquainted@A +acquainting@t +acquaints@t +acquiesce@i +acquiesced@i +acquiescence@N +acquiescent@A +acquiesces@i +acquiescing@i +acquirable@A +acquire@t +acquired@t +acquirement@N +acquirer@N +acquirers@p +acquires@t +acquiring@t +acquisition@N +acquisitions@p +acquisitive@A +acquisitiveness@N +acquit@V +acquits@V +acquittal@N +acquittals@p +acquitted@t +acquitting@t +acre@N +acreage@N +acreages@p +acres@N +acrid@A +acrider@? +acridest@? +acrimonious@A +acrimoniously@v +acrimony@N +acrobat@N +acrobatic@A +acrobatics@N +acrobats@p +acronym@N +acronyms@p +acropolis@N +across@Pv +acrostic@N +acrostics@p +acrylic@AN +acrylics@p +act@Nit +actaeon@N +acted@Ait +acth@N +acting@AN +actinium@N +action@N! +actionable@A +actions@p! +activate@t +activated@t +activates@t +activating@t +activation@N +active@AN +actively@v +actives@p +activism@N +activist@N +activists@p +activities@p +activity@N +acton@N +actor@N +actors@p +actress@N +actresses@? +acts@pit +actual@A +actualisation@N +actualise@t +actualised@t +actualises@t +actualising@t +actualities@p +actuality@N +actualization@N +actualize@t +actualized@t +actualizes@t +actualizing@t +actually@v +actuarial@A +actuaries@p +actuary@N +actuate@t +actuated@t +actuates@t +actuating@t +actuator@N +actuators@p +acuity@N +acumen@N +acupressure@? +acupuncture@N +acupuncturist@? +acupuncturists@p +acute@AN +acutely@v +acuteness@N +acuter@? +acutes@p +acutest@? +ad@N +ada@N +adage@N +adages@p +adagio@AvN +adagios@pv +adam@NA +adamant@AN +adamantly@? +adams@N +adana@N +adapt@Vt +adaptability@N +adaptable@A +adaptation@N +adaptations@p +adapted@Vt +adapter@N +adapters@p +adapting@Vt +adaption@? +adaptions@p +adaptive@A +adaptor@? +adaptors@p +adapts@Vt +adar@N +adas@p +add@Vti +addams@N +added@Vti +addend@N +addenda@? +addends@p +addendum@N +addendums@p +adder@N +adders@p +addict@VtN +addicted@A +addicting@VtA +addiction@N +addictions@p +addictive@A +addicts@Vtp +adding@Vti +addison@N +addition@N +additional@A +additionally@v +additions@p +additive@AN +additives@p +addle@VA +addled@V +addles@Vp +addling@V +address@NVt +addressable@? +addressed@V +addressee@N +addressees@p +addresses@? +addressing@V +adds@Vti +adduce@t +adduced@t +adduces@t +adducing@t +adelaide@N +aden@N +adenauer@N +adenoid@A +adenoidal@A +adenoids@p +adept@AN +adeptly@v +adeptness@N +adepts@p +adequacy@N +adequate@A +adequately@v +adhere@i +adhered@i +adherence@N +adherent@NA +adherents@p +adheres@i +adhering@i +adhesion@N +adhesive@AN +adhesives@p +adiabatic@AN +adieu@!N +adieus@!p +adieux@? +adipose@AN +adirondacks@p +adj@? +adjacent@AN +adjacently@v +adjectival@A +adjectivally@? +adjective@NA +adjectives@p +adjoin@Vt +adjoined@Vt +adjoining@A +adjoins@Vt +adjourn@it +adjourned@it +adjourning@it +adjournment@N +adjournments@p +adjourns@it +adjudge@t +adjudged@t +adjudges@t +adjudging@t +adjudicate@Vti +adjudicated@V +adjudicates@Vti +adjudicating@V +adjudication@N +adjudications@p +adjudicator@N +adjudicators@p +adjunct@NA +adjuncts@p +adjuration@N +adjurations@p +adjure@t +adjured@t +adjures@t +adjuring@t +adjust@t +adjustable@A +adjusted@t +adjuster@N +adjusters@p +adjusting@t +adjustment@N +adjustments@p +adjustor@N +adjustors@p +adjusts@t +adjutant@N +adjutants@p +adler@N +adman@N +admen@p +admin@N +administer@V +administered@V +administering@V +administers@V +administrate@V +administrated@t +administrates@V +administrating@t +administration@N +administrations@p +administrative@A +administratively@v +administrator@N +administrators@p +admins@p +admirable@A +admirably@v +admiral@N +admirals@p +admiralty@N +admiration@N +admire@t +admired@V +admirer@N +admirers@p +admires@t +admiring@V +admiringly@v +admissibility@N +admissible@A +admission@N +admissions@p +admit@Vi +admits@Vi +admittance@N +admitted@V +admittedly@v +admitting@V +admixture@N +admixtures@p +admonish@t +admonished@t +admonishes@? +admonishing@t +admonishment@N +admonishments@p +admonition@N +admonitions@p +admonitory@A +ado@N +adobe@N +adobes@p +adolescence@N +adolescences@p +adolescent@AN +adolescents@p +adonis@N +adonises@? +adopt@t +adopted@A +adopting@t +adoption@N +adoptions@p +adoptive@A +adopts@t +adorable@A +adorably@v +adoration@N +adore@t +adored@V +adores@t +adoring@V +adoringly@v +adorn@t +adorned@t +adorning@t +adornment@N +adornments@p +adorns@t +adrenal@AN +adrenalin@N +adrenaline@N +adrenals@p +adrian@N +adriatic@AN +adrift@v +adroit@A +adroitly@v +adroitness@N +ads@N +adulate@t +adulated@t +adulates@t +adulating@t +adulation@N +adulatory@A +adult@AN +adulterant@NA +adulterants@p +adulterate@VtA +adulterated@V +adulterates@Vtp +adulterating@V +adulteration@N +adulterer@N +adulterers@p +adulteress@N +adulteresses@? +adulteries@p +adulterous@A +adultery@N +adulthood@N +adults@p +adumbrate@t +adumbrated@t +adumbrates@t +adumbrating@t +adumbration@N +adv@N +advance@VtiN +advanced@A +advancement@N +advancements@p +advances@p +advancing@V +advantage@Nt +advantaged@V +advantageous@A +advantageously@v +advantages@pt +advantaging@V +advent@N +adventist@N +adventitious@A +adventitiously@v +advents@p +adventure@NVi +adventured@V +adventurer@N +adventurers@p +adventures@pVi +adventuresome@A +adventuress@N +adventuresses@? +adventuring@V +adventurism@N +adventurist@? +adventurists@p +adventurous@A +adventurously@v +adverb@N +adverbial@NA +adverbials@p +adverbs@p +adversarial@? +adversaries@p +adversary@N +adverse@A +adversely@v +adverser@? +adversest@? +adversities@p +adversity@N +advert@iN +adverted@iA +adverting@iA +advertise@Vi +advertised@V +advertisement@N +advertisements@p +advertiser@N +advertisers@p +advertises@Vi +advertising@N +advertorial@? +advertorials@p +adverts@ip +advice@N +advisability@N +advisable@A +advise@Vti +advised@A +advisedly@v +advisement@N +adviser@N +advisers@p +advises@Vti +advising@V +advisor@? +advisories@? +advisors@p +advisory@A +advocacy@N +advocate@VtN +advocated@V +advocates@Vtp +advocating@V +advt@N +adz@N +adze@N +adzes@p +aegean@A +aegis@N +aeneas@N +aeneid@N +aeolus@N +aeon@N +aeons@p +aerate@t +aerated@t +aerates@t +aerating@t +aeration@N +aerator@N +aerators@p +aerial@AN +aerialist@N +aerialists@p +aerials@p +aerie@N +aeries@p +aerobatic@A +aerobatics@p +aerobic@A +aerobics@p +aerodrome@N +aerodromes@p +aerodynamic@A +aerodynamically@v +aerodynamics@N +aerofoil@N +aerofoils@p +aerogram@N +aerogramme@? +aerogrammes@? +aerograms@p +aeronautic@A +aeronautical@A +aeronautics@N +aeroplane@N +aeroplanes@p +aerosol@N +aerosols@p +aerospace@N +aery@AN +aeschylus@N +aesculapius@N +aesop@N +aesthete@N +aesthetes@p +aesthetic@v +aesthetically@v +aesthetics@N +aetiology@N +af@N +afaik@? +afaiks@p +afar@vN +afc@N +affability@N +affable@A +affably@v +affair@N +affairs@p +affect@VtN +affectation@N +affectations@p +affected@A +affectedly@v +affecting@A +affection@N +affectionate@A +affectionately@v +affections@p +affects@Vtp +affidavit@N +affidavits@p +affiliate@VtN +affiliated@V +affiliates@Vtp +affiliating@V +affiliation@N +affiliations@p +affinities@p +affinity@N +affirm@Vi +affirmation@N +affirmations@p +affirmative@AN +affirmatively@v +affirmatives@p +affirmed@Vi +affirming@Vi +affirms@Vi +affix@VtN +affixed@VtA +affixes@? +affixing@VtA +afflict@t +afflicted@t +afflicting@t +affliction@N +afflictions@p +afflicts@t +affluence@N +affluent@AN +affluently@v +afford@V +affordability@? +affordable@A +afforded@V +affording@V +affords@V +afforest@t +afforestation@N +afforested@t +afforesting@t +afforests@t +affray@Nt +affrays@pt +affront@Nt +affronted@At +affronting@At +affronts@pt +afghan@N +afghanistan@N +afghans@p +aficionado@N +aficionados@p +afield@v +afire@v +aflame@v +afloat@v +aflutter@v +afoot@v +aforementioned@A +aforesaid@A +aforethought@A +afoul@v +afraid@A +afresh@v +africa@N +african@AN +africans@p +afrikaans@N +afrikaner@N +afrikaners@p +afro@N +afrocentrism@? +afros@p +aft@N +after@PvCA +afterbirth@N +afterbirths@p +afterburner@N +afterburners@p +aftercare@N +aftereffect@N +aftereffects@p +afterglow@N +afterglows@p +afterlife@N +afterlives@? +aftermath@N +aftermaths@p +afternoon@N +afternoons@v +afters@N +aftershave@? +aftershaves@? +aftershock@N +aftershocks@p +aftertaste@N +aftertastes@p +afterthought@N +afterthoughts@p +afterward@v +afterwards@v +afterword@N +afterwords@p +ag@N +again@v +against@P +agamemnon@N +agape@N +agar@N +agate@N +agates@p +agave@N +age@N +aged@A +ageing@V +ageings@V +ageism@? +ageist@? +ageists@p +ageless@A +agencies@p +agency@N +agenda@N +agendas@p +agent@N +agents@p +ages@p +aggie@N +agglomerate@VNA +agglomerated@V +agglomerates@Vp +agglomerating@V +agglomeration@N +agglomerations@p +agglutinate@VtA +agglutinated@V +agglutinates@Vtp +agglutinating@V +agglutination@N +agglutinations@p +aggrandise@t +aggrandised@t +aggrandisement@N +aggrandises@t +aggrandising@t +aggrandize@t +aggrandized@t +aggrandizement@N +aggrandizes@t +aggrandizing@t +aggravate@t +aggravated@t +aggravates@t +aggravating@t +aggravation@N +aggravations@p +aggregate@ANVtv +aggregated@V +aggregates@pVtv +aggregating@V +aggregation@N +aggregations@p +aggression@N +aggressive@A +aggressively@v +aggressiveness@? +aggressor@N +aggressors@p +aggrieve@t +aggrieved@t +aggrieves@t +aggrieving@t +aggro@N +aghast@A +agile@A +agilely@v +agiler@? +agilest@? +agility@N +aging@V +agings@V +agism@? +agitate@ti +agitated@V +agitates@ti +agitating@V +agitation@N +agitations@p +agitator@N +agitators@p +agitprop@N +aglaia@N +agleam@A +aglitter@A +aglow@A +agnes@N +agni@N +agnostic@NA +agnosticism@N +agnostics@p +ago@v +agog@Av +agonies@p +agonise@it +agonised@it +agonises@it +agonising@it +agonisingly@v +agonize@Vi +agonized@V +agonizes@Vi +agonizing@A +agonizingly@v +agony@N +agoraphobia@N +agoraphobic@? +agoraphobics@p +agra@N +agrarian@AN +agrarians@p +agree@Vt +agreeable@A +agreeably@v +agreed@A +agreeing@V +agreement@N +agreements@p +agrees@Vt +agribusiness@N +agribusinesses@? +agricola@N +agricultural@A +agriculturalist@? +agriculturalists@p +agriculture@N +agrippa@N +agronomist@N +agronomists@p +agronomy@N +aground@v +ague@N +ah@! +aha@! +ahab@N +ahchoo@! +ahead@v +ahem@! +ahmadabad@? +ahoy@! +ahriman@N +ai@N +aid@N +aide@N +aided@A +aides@p +aiding@A +aids@p +aidses@? +aiken@N +ail@ti +ailed@ti +aileron@N +ailerons@p +ailing@A +ailment@N +ailments@p +ails@ti +aim@VtiN +aimed@VtiA +aiming@VtiA +aimless@A +aimlessly@v +aimlessness@N +aims@Vtip +ainu@N +air@N +airbag@? +airbags@p +airbase@? +airbases@? +airbed@? +airbeds@p +airborne@A +airbrush@N +airbrushed@A +airbrushes@? +airbrushing@A +aircraft@N +aircraftman@N +aircraftmen@p +aircrew@N +aircrews@p +airdrome@N +airdromes@p +airdrop@NVA +airdropped@V +airdropping@V +airdrops@pV +aired@A +airedale@N +airedales@p +airfare@? +airfares@? +airfield@N +airfields@p +airflow@N +airfoil@N +airfoils@p +airgun@? +airguns@p +airhead@N +airheads@p +airier@A +airiest@A +airily@v +airiness@N +airing@N +airings@p +airless@A +airletter@? +airletters@p +airlift@Nt +airlifted@At +airlifting@At +airlifts@pt +airline@N +airliner@N +airliners@p +airlines@p +airlock@N +airlocks@p +airmail@? +airmailed@? +airmailing@? +airmails@p +airman@N +airmen@p +airplane@N +airplanes@p +airplay@? +airport@N +airports@p +airs@p +airship@N +airships@p +airshow@? +airshows@p +airsick@A +airsickness@N +airspace@N +airspeed@N +airstrike@? +airstrikes@? +airstrip@N +airstrips@p +airtight@A +airtime@? +airwaves@p +airway@N +airways@p +airwoman@N +airwomen@p +airworthier@? +airworthiest@? +airworthiness@N +airworthy@A +airy@A +ais@p +aisha@N +aisle@N +aisles@p +aitch@N +aitches@? +ajar@v +ajax@N +ak@? +akbar@N +akihito@N +akimbo@v +akin@A +akita@N +akkad@N +akron@N +al@N +ala@N +alabama@N +alabaman@AN +alabamans@p +alabamian@AN +alabamians@p +alabaster@N +alacrity@N +aladdin@N +alamo@N +alar@A +alaric@N +alarm@tN +alarmed@tA +alarming@tA +alarmingly@v +alarmist@NA +alarmists@p +alarms@tp +alas@! +alaska@N +alaskan@AN +alaskans@p +alb@N +alba@N +albacore@N +albacores@p +albania@N +albanian@NA +albanians@p +albany@N +albatross@N +albatrosses@? +albee@N +albeit@C +albert@N +alberta@N +albigensian@AN +albino@N +albinos@p +albion@N +albs@p +album@N +albumen@N +albumin@N +albums@p +albuquerque@N +alcatraz@N +alcestis@N +alchemist@N +alchemists@p +alchemy@N +alcibiades@N +alcohol@N +alcoholic@NA +alcoholics@p +alcoholism@N +alcohols@p +alcott@N +alcove@N +alcoves@p +alcuin@N +alcyone@N +aldan@N +aldebaran@N +alden@N +alder@N +alderman@N +aldermen@p +alders@p +alderwoman@? +alderwomen@? +ale@N +alehouse@N +alehouses@p +aleppo@N +alert@ANt +alerted@At +alerting@At +alertly@v +alertness@N +alerts@pt +ales@p +aleut@N +aleutian@AN +alexander@N +alexandra@N +alexandria@N +alfalfa@N +alfred@N +alfredo@N +alfresco@Av +alga@N +algae@p +algal@A +algebra@N +algebraic@A +algebraically@v +algebras@p +alger@N +algeria@N +algerian@AN +algerians@p +algiers@N +algol@N +algonquian@NA +algonquians@p +algonquin@NA +algorithm@N +algorithmic@A +algorithms@p +alhambra@N +ali@N +alias@vN +aliased@vA +aliases@p +aliasing@vA +alibi@Nt +alibied@At +alibiing@At +alibis@p +alien@NAt +alienable@A +alienate@t +alienated@t +alienates@t +alienating@t +alienation@N +aliened@At +aliening@At +aliens@pt +alight@iv +alighted@iv +alighting@iv +alights@iv +align@Vt +aligned@Vt +aligning@Vt +alignment@N +alignments@p +aligns@Vt +alike@v +alimentary@A +alimony@N +aline@N +alined@ti +alinement@N +alinements@p +alines@p +alining@ti +alit@V +alive@A +alkali@N +alkalies@p +alkaline@A +alkalinity@N +alkalis@p +alkaloid@N +alkaloids@p +all@IvN +allah@N +allahabad@N +allay@Vt +allayed@t +allaying@t +allays@Vt +allegation@N +allegations@p +allege@t +alleged@A +allegedly@v +alleges@t +alleghenies@? +allegheny@N +allegiance@N +allegiances@p +alleging@t +allegorical@A +allegorically@v +allegories@p +allegory@N +allegro@AN +allegros@p +alleluia@!N +alleluias@!p +allen@N +allentown@N +allergen@N +allergenic@A +allergens@p +allergic@A +allergies@p +allergist@N +allergists@p +allergy@N +alleviate@t +alleviated@t +alleviates@t +alleviating@t +alleviation@N +alley@N +alleys@p +alleyway@N +alleyways@p +alliance@N +alliances@p +allied@A +allies@N +alligator@N +alligators@p +alliteration@N +alliterations@p +alliterative@A +allocate@t +allocated@t +allocates@t +allocating@t +allocation@N +allocations@p +allot@V +allotment@N +allotments@p +allots@V +allotted@t +allotting@t +allover@AN +allow@ti +allowable@A +allowance@Nt +allowances@pt +allowed@A +allowing@ti +allows@ti +alloy@NVt +alloyed@AVt +alloying@AVt +alloys@pVt +allspice@N +allude@i +alluded@i +alludes@i +alluding@i +allure@tN +allured@V +allures@tp +alluring@A +alluringly@v +allusion@N +allusions@p +allusive@A +allusively@v +alluvia@? +alluvial@AN +alluvium@N +alluviums@p +ally@N +allying@V +almanac@N +almanack@? +almanacks@p +almanacs@p +almaty@? +almighty@AvN +almond@N +almonds@p +almoner@N +almoners@p +almost@v +alms@p +almshouse@N +almshouses@p +aloe@N +aloes@N +aloft@v +aloha@N +alohas@p +alone@v +along@Pv +alongside@Pv +aloof@A +aloofness@N +aloud@v +alpaca@N +alpacas@p +alpha@N +alphabet@N +alphabetic@A +alphabetical@A +alphabetically@v +alphabetise@t +alphabetised@t +alphabetises@t +alphabetising@t +alphabetize@t +alphabetized@t +alphabetizes@t +alphabetizing@t +alphabets@p +alphanumeric@A +alphas@p +alpine@A +alpines@p +alps@p +already@v +alright@v +alsace@N +alsatian@NA +also@N +alt@AN +alta@N +altaic@NA +altair@N +altamira@N +altar@N +altarpiece@N +altarpieces@p +altars@p +alter@Vt +alterable@A +alteration@N +alterations@p +altercation@N +altercations@p +altered@Vt +altering@Vt +alternate@VitAN +alternated@V +alternately@v +alternates@Vitp +alternating@V +alternation@N +alternations@p +alternative@NA +alternatively@v +alternatives@p +alternator@N +alternators@p +alters@Vt +altho@? +although@C +altimeter@N +altimeters@p +altitude@N +altitudes@p +alto@NA +altogether@vN +altos@p +altruism@N +altruist@N +altruistic@A +altruistically@v +altruists@p +alts@p +alum@N +aluminium@N +aluminum@NA +alumna@N +alumnae@p +alumni@p +alumnus@N +alums@p +alva@N +alveolar@AN +alveolars@p +always@v +am@N +ama@N +amalgam@N +amalgamate@V +amalgamated@V +amalgamates@V +amalgamating@V +amalgamation@N +amalgamations@p +amalgams@p +amanuenses@p +amanuensis@N +amaranth@N +amaranths@p +amarillo@N +amaryllis@N +amaryllises@? +amass@t +amassed@t +amasses@? +amassing@t +amateur@NA +amateurish@A +amateurishly@v +amateurishness@N +amateurism@N +amateurs@p +amati@N +amatory@A +amaze@tN +amazed@AV +amazement@N +amazes@tp +amazing@A +amazingly@v +amazon@N +amazonian@A +amazons@p +ambassador@N +ambassadorial@A +ambassadors@p +ambassadorship@N +ambassadorships@p +amber@N +ambergris@N +ambiance@N +ambiances@p +ambidextrous@A +ambidextrously@v +ambience@N +ambiences@p +ambient@A +ambiguities@p +ambiguity@N +ambiguous@A +ambiguously@v +ambit@N +ambition@N +ambitions@p +ambitious@A +ambitiously@v +ambitiousness@N +ambivalence@N +ambivalent@A +ambivalently@? +amble@iN +ambled@V +ambles@ip +ambling@V +ambrosia@N +ambulance@N +ambulanceman@? +ambulancemen@? +ambulances@p +ambulancewoman@? +ambulancewomen@? +ambulatories@? +ambulatory@AN +ambush@NVt +ambushed@AVt +ambushes@? +ambushing@AVt +ameba@N +amebae@p +amebas@p +amebic@A +ameer@N +ameers@p +ameliorate@V +ameliorated@ti +ameliorates@V +ameliorating@ti +amelioration@N +amen@!N +amenable@A +amend@N +amendable@A +amended@A +amending@A +amendment@N +amendments@p +amends@N +amenities@p +amenity@N +amerasian@? +america@N +american@AN +americana@N +americanisation@N +americanisations@p +americanise@ti +americanised@ti +americanises@ti +americanising@ti +americanism@N +americanisms@p +americanization@N +americanizations@p +americanize@V +americanized@ti +americanizes@V +americanizing@ti +americans@p +americas@p +amerind@N +amerindian@NA +amerindians@p +amerinds@p +amethyst@N +amethysts@p +amharic@NA +amherst@N +amiability@N +amiable@A +amiably@v +amicability@N +amicable@A +amicably@v +amid@P +amidships@v +amidst@P +amiga@N +amigo@N +amigos@p +amir@N +amirs@p +amish@AN +amiss@v +amity@N +amman@N +ammeter@N +ammeters@p +ammo@N +ammonia@N +ammunition@N +amnesia@N +amnesiac@NA +amnesiacs@p +amnestied@p +amnesties@p +amnesty@NV +amnestying@p +amniocenteses@? +amniocentesis@N +amoeba@N +amoebae@p +amoebas@p +amoebic@A +amok@Nv +among@P +amongst@P +amoral@A +amorality@N +amorally@v +amorous@A +amorously@v +amorousness@N +amorphous@A +amorphously@v +amorphousness@N +amortisable@A +amortisation@? +amortisations@p +amortise@t +amortised@t +amortises@t +amortising@t +amortizable@A +amortization@N +amortizations@p +amortize@t +amortized@t +amortizes@t +amortizing@t +amos@N +amount@Ni +amounted@Ai +amounting@Ai +amounts@pi +amour@N +amours@p +amp@N +amperage@N +ampere@N +amperes@p +ampersand@N +ampersands@p +amphetamine@N +amphetamines@p +amphibian@NA +amphibians@p +amphibious@A +amphitheater@N +amphitheaters@p +amphitheatre@N +amphitheatres@p +amphora@N +amphoras@p +ample@A +ampler@A +amplest@A +amplification@N +amplifications@p +amplified@V +amplifier@N +amplifiers@p +amplifies@? +amplify@Vti +amplifying@V +amplitude@N +amplitudes@p +amply@v +ampoule@N +ampoules@p +amps@p +ampul@? +ampule@N +ampules@p +ampuls@p +amputate@V +amputated@t +amputates@V +amputating@t +amputation@N +amputations@p +amputee@N +amputees@p +amritsar@N +amsterdam@N +amt@N +amtrak@? +amuck@Nv +amulet@N +amulets@p +amundsen@N +amur@N +amuse@t +amused@At +amusement@N +amusements@p +amuses@t +amusing@A +amusingly@v +an@IC +anabaptist@NA +anachronism@N +anachronisms@p +anachronistic@A +anachronistically@v +anaconda@N +anacondas@p +anacreon@N +anaemia@N +anaemic@A +anaerobic@A +anaesthesia@N +anaesthesiologist@N +anaesthesiologists@p +anaesthesiology@N +anaesthetic@NA +anaesthetics@N +anaesthetise@? +anaesthetised@? +anaesthetises@? +anaesthetising@? +anaesthetist@N +anaesthetists@p +anaesthetize@t +anaesthetized@t +anaesthetizes@t +anaesthetizing@t +anagram@N +anagrams@p +anaheim@N +anal@A +analgesia@N +analgesic@AN +analgesics@p +anally@v +analog@N +analogies@p +analogous@A +analogously@v +analogs@p +analogue@N +analogues@p +analogy@N +analyse@t +analysed@t +analyser@N +analysers@p +analyses@p +analysing@t +analysis@N +analyst@N +analysts@p +analytic@A +analytical@? +analyticalally@? +analytically@v +analyze@t +analyzed@t +analyzer@N +analyzers@p +analyzes@t +analyzing@t +ananias@N +anapest@N +anapests@p +anarchic@A +anarchically@v +anarchism@N +anarchist@N +anarchistic@A +anarchists@p +anarchy@N +anasazi@N +anastasia@N +anathema@N +anathemas@p +anatolia@N +anatolian@AN +anatomic@? +anatomical@A +anatomically@v +anatomies@p +anatomist@N +anatomists@p +anatomy@N +anaxagoras@N +ancestor@N +ancestors@p +ancestral@A +ancestress@N +ancestresses@? +ancestries@p +ancestry@N +anchor@NV +anchorage@N +anchorages@p +anchored@AV +anchoring@AV +anchorite@N +anchorites@p +anchorman@N +anchormen@p +anchorpeople@? +anchorperson@? +anchorpersons@p +anchors@pV +anchorwoman@? +anchorwomen@? +anchovies@p +anchovy@N +ancient@AN +ancienter@? +ancientest@? +anciently@v +ancients@p +ancillaries@? +ancillary@AN +and@CN +andalusia@N +andalusian@AN +andaman@AN +andante@AvN +andantes@pv +andean@A +andersen@N +anderson@N +andes@N +andiron@N +andirons@p +andorra@NA +andrew@N +andrews@N +androgen@N +androgynous@A +androgyny@N +android@NA +androids@p +andromache@N +andromeda@N +andropov@? +anecdota@? +anecdotal@A +anecdote@N +anecdotes@p +anemia@N +anemic@A +anemometer@N +anemometers@p +anemone@N +anemones@p +anesthesia@N +anesthesiologist@N +anesthesiologists@p +anesthesiology@N +anesthetic@NA +anesthetics@p +anesthetist@N +anesthetists@p +anesthetize@t +anesthetized@t +anesthetizes@t +anesthetizing@t +aneurism@? +aneurisms@p +aneurysm@N +aneurysms@p +anew@v +angara@N +angel@N +angelic@A +angelica@N +angelically@v +angelico@N +angelou@? +angels@p +anger@Nt +angered@At +angering@At +angers@N +angevin@NA +angina@N +angioplasties@? +angioplasty@? +angiosperm@N +angiosperms@p +angkor@N +angle@N +angled@V +angler@N +anglers@p +angles@p +angleworm@N +angleworms@p +anglia@N +anglican@AN +anglicanism@N +anglicanisms@p +anglicans@p +anglicise@ti +anglicised@ti +anglicises@ti +anglicising@ti +anglicism@N +anglicisms@p +anglicize@ti +anglicized@ti +anglicizes@ti +anglicizing@ti +angling@N +anglo@N +anglophile@N +anglophiles@p +anglophone@NA +anglophones@p +angola@N +angolan@? +angolans@p +angora@N +angoras@p +angostura@N +angrier@A +angriest@A +angrily@v +angry@A +angst@N +angstrom@N +angstroms@p +anguilla@N +anguish@NV +anguished@A +anguishes@? +anguishing@AV +angular@A +angularities@p +angularity@N +angus@N +ani@N +animal@NA +animals@p +animate@VtA +animated@A +animatedly@v +animates@Vtp +animating@V +animation@N +animations@p +animator@N +animators@p +animism@N +animist@A +animistic@A +animists@p +animosities@p +animosity@N +animus@N +anion@N +anions@p +anise@N +aniseed@N +ankara@N +ankh@N +ankhs@p +ankle@N +ankles@p +anklet@N +anklets@p +anna@N +annals@p +annam@N +annapolis@N +annapurna@N +anne@N +anneal@VtN +annealed@VtA +annealing@VtA +anneals@Vtp +annex@VtN +annexation@N +annexations@p +annexed@VtA +annexes@p +annexing@VtA +annihilate@t +annihilated@t +annihilates@t +annihilating@t +annihilation@N +annihilator@N +annihilators@p +anniversaries@p +anniversary@NA +annotate@V +annotated@V +annotates@V +annotating@V +annotation@N +annotations@p +announce@ti +announced@V +announcement@Nt +announcements@pt +announcer@N +announcers@p +announces@ti +announcing@V +annoy@V +annoyance@N +annoyances@p +annoyed@V +annoying@A +annoyingly@v +annoys@V +annoyware@? +annoywares@? +annual@AN +annualised@? +annualized@? +annually@v +annuals@p +annuities@p +annuity@N +annul@V +annular@A +annulled@t +annulling@t +annulment@N +annulments@p +annuls@V +anode@N +anodes@p +anodyne@NA +anodynes@p +anoint@t +anointed@t +anointing@t +anointment@N +anoints@t +anomalies@p +anomalous@A +anomalously@v +anomaly@N +anon@v +anons@v +anonymity@N +anonymous@A +anonymously@v +anopheles@N +anorak@N +anoraks@p +anorexia@N +anorexic@? +anorexics@p +another@I +anouilh@N +anselm@N +ansi@? +ansis@p +answer@NVti +answerable@A +answered@AVti +answering@AVti +answerphone@? +answerphones@? +answers@pVti +ant@N +antacid@NA +antacids@p +antaeus@N +antagonise@ti +antagonised@ti +antagonises@ti +antagonising@ti +antagonism@N +antagonisms@p +antagonist@N +antagonistic@A +antagonistically@v +antagonists@p +antagonize@t +antagonized@V +antagonizes@t +antagonizing@V +antananarivo@N +antarctic@AN +antarctica@N +antares@N +ante@Nti +anteater@N +anteaters@p +antebellum@A +antecedent@NA +antecedents@p +antechamber@N +antechambers@p +anted@V +antedate@VtN +antedated@V +antedates@Vtp +antedating@V +antediluvian@AN +anteed@V +anteing@V +antelope@N +antelopes@p +antenatal@AN +antenna@N +antennae@p +antennas@p +anterior@A +anteroom@N +anterooms@p +antes@pti +anthem@N +anthems@p +anther@N +anthers@p +anthill@? +anthills@p +anthologies@p +anthologise@it +anthologised@it +anthologises@it +anthologising@it +anthologist@N +anthologists@p +anthologize@t +anthologized@V +anthologizes@t +anthologizing@V +anthology@N +anthony@N +anthracite@N +anthrax@N +anthropocentric@A +anthropoid@AN +anthropoids@p +anthropological@A +anthropologist@N +anthropologists@p +anthropology@N +anthropomorphic@A +anthropomorphism@N +anti@AN +antiabortion@? +antiaircraft@AN +antibacterial@A +antibiotic@NA +antibiotics@p +antibodies@p +antibody@N +antic@NA +antichrist@N +antichrists@p +anticipate@V +anticipated@t +anticipates@V +anticipating@t +anticipation@N +anticipations@p +anticipatory@A +anticked@V +anticking@V +anticlimactic@A +anticlimax@N +anticlimaxes@? +anticlockwise@vA +anticoagulant@AN +anticoagulants@p +antics@p +anticyclone@NA +anticyclones@p +antidepressant@NA +antidepressants@p +antidote@N +antidotes@p +antietam@N +antifreeze@N +antigen@N +antigens@p +antigone@N +antigua@N +antihero@N +antiheroes@? +antihistamine@N +antihistamines@p +antiknock@N +antilles@p +antimacassar@N +antimacassars@p +antimatter@N +antimony@N +antioch@N +antiparticle@N +antiparticles@p +antipasti@p +antipasto@N +antipastos@p +antipathetic@A +antipathies@p +antipathy@N +antipersonnel@A +antiperspirant@NA +antiperspirants@p +antiphonal@AN +antiphonals@p +antipodes@p +antiquarian@AN +antiquarians@p +antiquaries@p +antiquary@N +antiquate@t +antiquated@A +antiquates@t +antiquating@t +antique@NAt +antiqued@V +antiques@pt +antiquing@V +antiquities@p +antiquity@N +antirrhinum@N +antirrhinums@p +antis@p +antiseptic@AN +antiseptically@v +antiseptics@p +antislavery@A +antisocial@A +antitheses@p +antithesis@N +antithetic@A +antithetical@A +antithetically@v +antitoxin@N +antitoxins@p +antitrust@N +antiviral@A +antivirals@p +antiwar@A +antler@N +antlered@A +antlers@p +antofagasta@N +antoinette@N +antoninus@N +antonius@N +antony@N +antonym@N +antonymous@A +antonyms@p +ants@p +antsy@? +antwerp@N +anubis@N +anus@N +anuses@p +anvil@N +anvils@p +anxieties@p +anxiety@N +anxious@A +anxiously@v +any@Iv +anybodies@? +anybody@rN +anyhow@v +anymore@? +anyone@r +anyplace@v +anything@rNv +anythings@rpv +anytime@v +anyway@v +anyways@v +anywhere@v +anzac@N +anzus@N +aorta@N +aortae@p +aortas@p +ap@N +apace@v +apache@N +apaches@p +apart@v +apartheid@N +apartment@N +apartments@p +apathetic@A +apathetically@v +apathy@N +ape@Nt +aped@V +apennines@p +aperitif@? +aperitifs@p +aperture@N +apertures@p +apes@pt +apex@N +apexes@? +aphasia@N +aphasic@AN +aphasics@p +aphelia@p +aphelion@N +aphelions@p +aphid@N +aphids@p +aphorism@N +aphorisms@p +aphoristic@A +aphrodisiac@NA +aphrodisiacs@p +aphrodite@N +apia@N +apiaries@p +apiary@N +apices@N +apiece@v +aping@V +aplenty@v +aplomb@N +apo@N +apocalypse@N +apocalypses@p +apocalyptic@A +apocrypha@N +apocryphal@A +apogee@N +apogees@p +apolitical@A +apollinaire@N +apollo@N +apollonian@A +apollos@p +apologetic@A +apologetically@v +apologia@N +apologias@p +apologies@p +apologise@i +apologised@i +apologises@i +apologising@i +apologist@N +apologists@p +apologize@i +apologized@i +apologizes@i +apologizing@i +apology@N +apoplectic@AN +apoplexies@? +apoplexy@N +apostasies@p +apostasy@N +apostate@NA +apostates@p +apostle@N +apostles@N +apostolic@A +apostrophe@N +apostrophes@p +apothecaries@p +apothecary@N +apotheoses@p +apotheosis@N +app@N +appal@V +appalachia@N +appalachian@A +appalachians@p +appall@t +appalled@t +appalling@A +appallingly@v +appalls@t +appaloosa@N +appals@V +apparatchik@N +apparatchiks@p +apparatus@N +apparatuses@p +apparel@NVt +appareled@V +appareling@V +apparelled@V +apparelling@V +apparels@pVt +apparent@A +apparently@v +apparition@N +apparitions@p +appeal@Ni +appealed@Ai +appealing@A +appealingly@v +appeals@pi +appear@i +appearance@N +appearances@p +appeared@i +appearing@i +appears@i +appease@t +appeased@t +appeasement@N +appeasements@p +appeaser@N +appeasers@p +appeases@t +appeasing@t +appellant@NA +appellants@p +appellate@A +appellation@N +appellations@p +append@t +appendage@N +appendages@p +appendectomies@p +appendectomy@N +appended@t +appendices@p +appendicitis@N +appending@t +appendix@N +appendixes@p +appends@t +appertain@i +appertained@i +appertaining@i +appertains@i +appetiser@? +appetisers@p +appetising@? +appetisingly@? +appetite@N +appetites@p +appetizer@N +appetizers@p +appetizing@A +appetizingly@v +applaud@V +applauded@V +applauding@V +applauds@V +applause@N +apple@N +applejack@N +apples@N +applesauce@N +appleseed@N +applet@? +appleton@N +applets@p +appliance@N +appliances@p +applicability@N +applicable@A +applicant@N +applicants@p +application@N +applications@p +applicator@N +applicators@p +applied@A +applies@? +apply@Vit +applying@V +appoint@V +appointed@A +appointee@N +appointees@p +appointing@V +appointment@N +appointments@p +appoints@V +appomattox@N +apportion@t +apportioned@t +apportioning@t +apportionment@N +apportions@t +apposite@A +appositely@A +appositeness@N +apposition@N +appositive@AN +appositives@p +appraisal@N +appraisals@p +appraise@t +appraised@t +appraiser@N +appraisers@p +appraises@t +appraising@t +appreciable@A +appreciably@v +appreciate@V +appreciated@V +appreciates@V +appreciating@V +appreciation@N +appreciations@p +appreciative@A +appreciatively@v +apprehend@t +apprehended@t +apprehending@t +apprehends@t +apprehension@N +apprehensions@p +apprehensive@A +apprehensively@v +apprehensiveness@N +apprentice@Nt +apprenticed@V +apprentices@pt +apprenticeship@N +apprenticeships@p +apprenticing@V +apprise@t +apprised@t +apprises@t +apprising@t +approach@VtN +approachable@A +approached@VtA +approaches@? +approaching@VtA +approbation@N +approbations@p +appropriate@AVt +appropriated@V +appropriately@v +appropriateness@N +appropriates@pVt +appropriating@V +appropriation@N +appropriations@p +approval@N +approvals@p +approve@Vt +approved@V +approves@Vt +approving@V +approvingly@v +approx@N +approximate@AV +approximated@V +approximately@v +approximates@pV +approximating@V +approximation@N +approximations@p +apps@N +appurtenance@N +appurtenances@p +apr@N +apricot@N +apricots@p +april@N +aprils@p +apron@Nt +aprons@pt +apropos@Av +apse@N +apses@p +apt@A +apter@? +aptest@? +aptitude@N +aptitudes@p +aptly@v +aptness@N +apuleius@N +aqua@NA +aquaculture@N +aquae@p +aquamarine@N +aquamarines@p +aquanaut@N +aquanauts@p +aquaplane@Ni +aquaplaned@V +aquaplanes@pi +aquaplaning@V +aquaria@? +aquarium@N +aquariums@p +aquarius@NA +aquariuses@? +aquas@p +aquatic@AN +aquatically@v +aquatics@p +aquatint@Nt +aquatints@pt +aquavit@N +aqueduct@N +aqueducts@p +aqueous@A +aquiculture@N +aquifer@N +aquifers@p +aquila@N +aquiline@A +aquinas@N +aquitaine@N +ar@N +ara@N +arab@N +arabesque@NA +arabesques@p +arabia@N +arabian@AN +arabians@p +arabic@NA +arable@AN +arabs@p +araby@N +arachnid@N +arachnids@p +arachnophobia@? +aramaic@NA +arapaho@N +ararat@N +araucanian@NA +arawak@N +arawakan@NA +arbiter@N +arbiters@p +arbitrage@N +arbitrager@N +arbitragers@p +arbitrageur@? +arbitrageurs@p +arbitrarily@v +arbitrariness@N +arbitrary@AN +arbitrate@V +arbitrated@V +arbitrates@V +arbitrating@V +arbitration@N +arbitrator@N +arbitrators@p +arbor@N +arboreal@A +arboreta@? +arboretum@N +arboretums@p +arbors@p +arborvitae@N +arborvitaes@p +arbour@N +arbours@p +arbutus@N +arbutuses@? +arc@N +arcade@N +arcades@p +arcadia@N +arcadian@AN +arcane@A +arced@V +arch@N +archaeological@A +archaeologically@v +archaeologist@N +archaeologists@p +archaeology@N +archaic@A +archaically@v +archaism@N +archaisms@p +archangel@N +archangels@p +archbishop@N +archbishopric@N +archbishoprics@p +archbishops@p +archdeacon@N +archdeacons@p +archdiocese@N +archdioceses@p +archduchess@N +archduchesses@? +archduke@N +archdukes@p +archean@A +arched@A +archenemies@p +archenemy@N +archeological@A +archeologically@v +archeologist@N +archeologists@p +archeology@N +archer@N +archers@p +archery@N +arches@p +archest@? +archetypal@A +archetype@N +archetypes@p +archetypical@? +archimedes@N +arching@N +archipelago@N +archipelagoes@p +archipelagos@p +architect@N +architects@p +architectural@A +architecturally@v +architecture@N +architectures@p +archival@A +archive@N +archived@A +archives@p +archiving@A +archivist@N +archivists@p +archly@v +archness@N +archway@N +archways@p +arcing@A +arcked@? +arcking@? +arcs@N +arctic@AN +arctics@p +arcturus@N +arden@N +ardent@A +ardently@v +ardor@N +ardors@p +ardour@N +ardours@p +arduous@A +arduously@v +arduousness@N +are@N +area@N +areas@p +arena@N +arenas@p +arequipa@N +ares@N +argentina@N +argentine@AN +argentinian@? +argentinians@p +argo@N +argon@N +argonaut@N +argos@N +argosies@p +argosy@N +argot@N +argots@p +arguable@A +arguably@? +argue@Vit +argued@V +argues@Vit +arguing@V +argument@N +argumentation@N +argumentative@A +arguments@p +argus@N +argyle@AN +argyles@p +aria@N +ariadne@N +arianism@N +arias@p +arid@A +aridity@N +ariel@N +aries@N +arieses@? +aright@v +ariosto@N +arise@V +arisen@i +arises@V +arising@i +aristarchus@N +aristides@N +aristocracies@p +aristocracy@N +aristocrat@N +aristocratic@A +aristocratically@v +aristocrats@p +aristophanes@N +aristotelian@AN +aristotle@N +arithmetic@NA +arithmetical@? +arithmetically@v +arius@N +ariz@N +arizona@N +arizonan@AN +arizonans@p +arizonian@AN +arizonians@p +arjuna@N +ark@N +arkansan@NA +arkansas@N +arkhangelsk@N +arks@p +arkwright@N +arlington@N +arm@N +armada@N +armadas@p +armadillo@N +armadillos@p +armageddon@N +armageddons@p +armagnac@N +armament@N +armaments@p +armature@N +armatures@p +armband@N +armbands@p +armchair@N +armchairs@p +armed@A +armenia@N +armenian@NA +armenians@p +armful@N +armfuls@p +armhole@N +armholes@p +armies@p +arming@N +arminius@N +armistice@N +armistices@p +armlet@N +armlets@p +armload@N +armloads@p +armor@N +armored@A +armorer@N +armorers@p +armories@p +armoring@A +armors@p +armory@N +armour@Nt +armoured@A +armourer@N +armourers@p +armouries@p +armouring@At +armours@pt +armoury@N +armpit@N +armpits@p +armrest@N +armrests@p +arms@p +armsful@? +armstrong@N +army@N +arnhem@N +arno@N +arnold@N +aroma@N +aromas@p +aromatherapist@? +aromatherapists@p +aromatherapy@? +aromatic@AN +aromatics@p +arose@V +around@Pv +arousal@N +arouse@t +aroused@V +arouses@t +arousing@V +arpeggio@N +arpeggios@p +arraign@t +arraigned@t +arraigning@t +arraignment@N +arraignments@p +arraigns@t +arrange@ti +arranged@V +arrangement@N +arrangements@p +arranger@N +arrangers@p +arranges@ti +arranging@V +arrant@A +array@Nt +arrayed@At +arraying@At +arrays@pt +arrears@N +arrest@tN +arrested@tA +arresting@A +arrests@tp +arrhenius@N +arrival@N +arrivals@p +arrive@i +arrived@V +arrives@i +arriving@V +arrogance@N +arrogant@A +arrogantly@v +arrogate@t +arrogated@t +arrogates@t +arrogating@t +arrow@N +arrowhead@N +arrowheads@p +arrowroot@N +arrows@p +arroyo@N +arroyos@p +arse@Ni +arsed@Ai +arsehole@? +arseholes@? +arsenal@N +arsenals@p +arsenic@NA +arses@p +arsing@Ai +arson@N +arsonist@N +arsonists@p +art@N +artefact@N +artefacts@p +artemis@N +arterial@A +arteries@p +arteriosclerosis@N +artery@N +artful@A +artfully@v +artfulness@N +arthritic@A +arthritics@p +arthritis@N +arthropod@N +arthropods@p +arthur@N +arthurian@A +artichoke@N +artichokes@p +article@Nt +articled@V +articles@pt +articulacy@N +articulate@AVti +articulated@AV +articulately@v +articulateness@N +articulates@pVti +articulating@AV +articulation@N +articulations@p +artier@A +artiest@A +artifact@N +artifacts@p +artifice@N +artificer@N +artificers@p +artifices@p +artificial@A +artificiality@N +artificially@v +artillery@N +artisan@N +artisans@p +artist@N +artiste@N +artistes@p +artistic@A +artistically@v +artistry@N +artists@p +artless@A +artlessly@v +artlessness@N +arts@p +artsier@? +artsiest@? +artsy@? +artwork@N +artworks@p +arty@A +aruba@N +arugula@? +aryan@NA +aryans@p +as@CPN +asap@? +asbestos@N +ascend@Vi +ascendancy@N +ascendant@AN +ascendants@p +ascended@Vi +ascendency@? +ascendent@? +ascendents@p +ascending@A +ascends@Vi +ascension@N +ascensions@p +ascent@N +ascents@p +ascertain@t +ascertainable@A +ascertained@t +ascertaining@t +ascertains@t +ascetic@NAv +ascetically@v +asceticism@N +ascetics@pv +ascii@? +asciis@p +ascot@N +ascots@p +ascribable@A +ascribe@t +ascribed@t +ascribes@t +ascribing@t +ascription@N +aseptic@A +asexual@A +asexually@v +asgard@N +ash@N +ashamed@A +ashamedly@v +ashanti@N +ashcan@N +ashcans@p +ashcroft@N +ashe@N +ashed@A +ashen@A +ashes@p +ashier@A +ashiest@A +ashing@A +ashkenazim@p +ashkhabad@N +ashore@v +ashram@N +ashrams@p +ashtray@N +ashtrays@p +ashurbanipal@N +ashy@A +asia@N +asian@AN +asians@p +asiatic@NA +asiatics@p +aside@vN +asides@vp +asimov@? +asinine@A +ask@N +askance@vA +asked@A +askew@vA +asking@A +asks@p +asl@? +aslant@vP +asleep@vA +asmara@N +asocial@A +asoka@N +asp@N +asparagus@N +aspartame@? +aspca@N +aspect@N +aspects@p +aspen@N +aspens@p +asperities@p +asperity@N +aspersion@N +aspersions@p +asphalt@Nt +asphalted@At +asphalting@At +asphalts@pt +asphyxia@N +asphyxiate@V +asphyxiated@V +asphyxiates@V +asphyxiating@V +asphyxiation@N +asphyxiations@p +aspic@N +aspics@p +aspidistra@N +aspidistras@p +aspirant@NA +aspirants@p +aspirate@VtNA +aspirated@V +aspirates@Vtp +aspirating@V +aspiration@N +aspirations@p +aspire@i +aspired@i +aspires@i +aspirin@N +aspiring@i +aspirins@p +asps@p +asquith@N +ass@N +assail@t +assailable@A +assailant@N +assailants@p +assailed@t +assailing@t +assails@t +assam@N +assamese@NA +assassin@N +assassinate@t +assassinated@t +assassinates@t +assassinating@t +assassination@N +assassinations@p +assassins@p +assault@Nt +assaulted@At +assaulter@N +assaulting@At +assaults@pt +assay@VtN +assayed@VtA +assaying@VtA +assays@Vtp +assemblage@N +assemblages@p +assemble@V +assembled@V +assembler@N +assemblers@p +assembles@V +assemblies@p +assembling@V +assembly@N +assemblyman@N +assemblymen@p +assemblywoman@? +assemblywomen@? +assent@Ni +assented@Ai +assenting@Ai +assents@pi +assert@t +asserted@A +asserting@t +assertion@N +assertions@p +assertive@A +assertively@v +assertiveness@N +asserts@t +asses@p +assess@t +assessed@t +assesses@? +assessing@t +assessment@N +assessments@p +assessor@N +assessors@p +asset@N +assets@p +asseverate@t +asseverated@t +asseverates@t +asseverating@t +asshole@? +assholes@? +assiduity@N +assiduous@A +assiduously@v +assiduousness@N +assign@VN +assignable@A +assignation@N +assignations@p +assigned@VA +assigning@VA +assignment@N +assignments@p +assigns@Vp +assimilate@ti +assimilated@V +assimilates@ti +assimilating@V +assimilation@N +assisi@N +assist@ViN +assistance@N +assistant@NA +assistants@p +assisted@ViA +assisting@ViA +assists@Vip +assize@N +assizes@p +assn@N +assoc@N +associate@VitNA +associated@V +associates@Vitp +associating@V +association@N +associations@p +associative@A +assonance@N +assort@ti +assorted@A +assorting@ti +assortment@N +assortments@p +assorts@ti +asst@N +assuage@t +assuaged@t +assuages@t +assuaging@t +assume@t +assumed@A +assumes@t +assuming@A +assumption@N +assumptions@p +assurance@N +assurances@p +assure@t +assured@AN +assuredly@v +assureds@p +assures@t +assuring@t +assyria@N +assyrian@NA +assyrians@p +astaire@N +astarte@N +aster@N +asterisk@Nt +asterisked@At +asterisking@At +asterisks@pt +astern@v +asteroid@NA +asteroids@p +asters@p +asthma@N +asthmatic@AN +asthmatically@v +asthmatics@p +astigmatic@AN +astigmatism@N +astigmatisms@p +astir@A +aston@N +astonish@t +astonished@t +astonishes@? +astonishing@A +astonishingly@v +astonishment@N +astor@N +astoria@N +astound@t +astounded@t +astounding@A +astoundingly@v +astounds@t +astrakhan@N +astral@A +astray@v +astride@P +astringency@N +astringent@AN +astringents@p +astrologer@N +astrologers@p +astrological@A +astrologically@v +astrology@N +astronaut@N +astronautics@N +astronauts@N +astronomer@N +astronomers@p +astronomic@? +astronomical@A +astronomically@v +astronomy@N +astrophysical@A +astrophysicist@N +astrophysicists@p +astrophysics@N +astroturf@? +asturias@N +astute@A +astutely@v +astuteness@N +astuter@? +astutest@? +asunder@v +aswan@N +asylum@N +asylums@p +asymmetric@A +asymmetrical@? +asymmetrically@v +asymmetries@? +asymmetry@N +asymptomatic@A +asymptotic@A +asymptotically@v +asynchronous@A +asynchronously@v +at@N +atahualpa@N +atalanta@N +atavism@N +atavistic@A +ate@N +atelier@N +ateliers@p +athabascan@NA +atheism@NA +atheist@N +atheistic@A +atheists@p +athena@N +athenian@NA +athenians@p +athens@N +atherosclerosis@N +athlete@N +athletes@p +athletic@A +athletically@v +athleticism@N +athletics@N +atishoo@? +atkinson@N +atlanta@N +atlantic@NA +atlantis@N +atlas@N +atlases@p +atm@N +atman@N +atmosphere@N +atmospheres@p +atmospheric@A +atmospherically@v +atmospherics@p +atoll@N +atolls@p +atom@N +atomic@A +atomiser@? +atomisers@p +atomizer@N +atomizers@p +atoms@p +atonal@A +atonality@N +atone@it +atoned@V +atonement@N +atones@it +atoning@V +atop@vP +atp@N +atreus@N +atria@p +atrium@N +atriums@p +atrocious@A +atrociously@v +atrociousness@N +atrocities@p +atrocity@N +atrophied@A +atrophies@? +atrophy@NV +atrophying@V +atropos@N +ats@N +attach@NVi +attached@A +attaching@AVi +attachment@N +attachments@p +attack@VitN +attacked@VitA +attacker@N +attackers@p +attacking@VitA +attacks@Vitp +attain@ti +attainable@A +attained@ti +attaining@ti +attainment@N +attainments@p +attains@ti +attar@N +attempt@tN +attempted@tA +attempting@tA +attempts@tp +attend@Vti +attendance@N +attendances@p +attendant@NA +attendants@p +attended@Vti +attendee@? +attendees@? +attender@N +attenders@p +attending@A +attends@Vti +attention@N! +attentions@p! +attentive@A +attentively@v +attentiveness@N +attenuate@VtA +attenuated@V +attenuates@Vtp +attenuating@V +attenuation@N +attest@t +attestation@N +attestations@p +attested@A +attesting@t +attests@t +attic@AN +attica@N +attics@p +attila@N +attire@tN +attired@A +attires@tp +attiring@V +attitude@N +attitudes@p +attitudinal@A +attitudinise@i +attitudinised@i +attitudinises@i +attitudinising@i +attitudinize@i +attitudinized@i +attitudinizes@i +attitudinizing@i +attlee@N +attorney@N +attorneys@p +attract@V +attracted@V +attracting@V +attraction@N +attractions@p +attractive@A +attractively@v +attractiveness@N +attracts@V +attributable@A +attribute@VtN +attributed@V +attributes@Vtp +attributing@V +attribution@N +attributions@p +attributive@AN +attributively@v +attributives@p +attrition@N +attucks@p +attune@t +attuned@t +attunes@t +attuning@t +atty@N +atv@? +atwitter@A +atypical@A +atypically@v +au@N +aubergine@N +aubergines@p +aubrey@N +auburn@N +auckland@N +auction@Nt +auctioned@At +auctioneer@Nt +auctioneers@pt +auctioning@At +auctions@pt +audacious@A +audaciously@v +audaciousness@N +audacity@N +auden@N +audibility@N +audible@A +audibles@p +audibly@v +audience@N +audiences@p +audio@N +audiophile@N +audiophiles@p +audios@p +audiotape@? +audiotapes@? +audiovisual@A +audit@NV +audited@AV +auditing@AV +audition@NV +auditioned@AV +auditioning@AV +auditions@pV +auditor@N +auditoria@? +auditorium@N +auditoriums@p +auditors@p +auditory@AN +audits@pV +audubon@N +aug@N +augean@A +auger@N +augers@p +aught@rvN +aughts@rvp +augment@VtN +augmentation@N +augmentations@p +augmented@A +augmenting@VtA +augments@Vtp +augsburg@N +augur@NVti +augured@AVti +auguries@p +auguring@AVti +augurs@pVti +augury@N +august@A +augusta@N +augustan@AN +auguster@? +augustest@? +augustine@N +augusts@p +augustus@N +auk@N +auks@p +aunt@N +auntie@N +aunties@p +aunts@p +aunty@N +aura@N +aurae@? +aural@A +aurally@v +aurangzeb@N +auras@p +aurelius@N +aureola@? +aureolas@p +aureole@N +aureoles@p +aureomycin@N +auricle@N +auricles@p +auriga@N +aurora@N +auschwitz@N +auspice@N +auspices@p +auspicious@A +auspiciously@v +auspiciousness@N +aussie@N +aussies@p +austen@N +austere@A +austerely@v +austerer@? +austerest@? +austerities@p +austerity@N +austerlitz@N +austin@N +austins@p +australasia@N +australia@N +australian@NA +australians@p +australoid@AN +australopithecus@N +austria@N +austrian@AN +austrians@p +austronesian@AN +authentic@A +authentically@v +authenticate@t +authenticated@t +authenticates@t +authenticating@t +authentication@N +authentications@p +authenticity@N +author@NV +authored@AV +authoress@? +authoresses@? +authorial@A +authoring@AV +authorisation@N +authorisations@p +authorise@t +authorised@A +authorises@t +authorising@t +authoritarian@AN +authoritarianism@N +authoritarians@p +authoritative@A +authoritatively@v +authoritativeness@N +authorities@p +authority@N +authorization@N +authorizations@p +authorize@t +authorized@A +authorizes@t +authorizing@t +authors@N +authorship@N +autism@N +autistic@A +auto@N +autobahn@N +autobahns@p +autobiographical@A +autobiographies@p +autobiography@N +autocracies@p +autocracy@N +autocrat@N +autocratic@A +autocratically@v +autocrats@p +autocross@N +autograph@Nt +autographed@At +autographing@At +autographs@pt +autoimmune@A +automaker@? +automakers@p +automata@N +automate@V +automated@V +automates@V +automatic@AN +automatically@v +automatics@p +automating@V +automation@N +automaton@N +automatons@p +automobile@N +automobiled@A +automobiles@p +automobiling@A +automotive@A +autonomous@A +autonomously@v +autonomy@N +autopilot@N +autopilots@p +autopsied@? +autopsies@p +autopsy@N +autopsying@A +autos@p +autosuggestion@N +autoworker@? +autoworkers@p +autumn@N +autumnal@A +autumns@p +auxiliaries@p +auxiliary@AN +av@N +avail@VN +availability@N +available@A +availed@VA +availing@VA +avails@Vp +avalanche@NV +avalanches@pV +avalon@N +avarice@N +avaricious@A +avariciously@v +avast@! +avatar@N +avatars@p +avdp@N +ave@! +avenge@V +avenged@V +avenger@N +avengers@p +avenges@V +avenging@V +aventine@N +avenue@N +avenues@p +aver@V +average@NAti +averaged@V +averagely@v +averages@pti +averaging@V +avernus@N +averred@t +averring@t +averroes@N +avers@V +averse@A +aversion@N +aversions@p +avert@t +averted@t +averting@t +averts@t +avesta@N +avg@N +avian@A +aviaries@p +aviary@N +aviation@N +aviator@N +aviators@p +aviatrices@p +aviatrix@N +aviatrixes@? +avicenna@N +avid@A +avidity@N +avidly@v +avignon@N +avionic@? +avionics@N +avocado@N +avocadoes@? +avocados@p +avocation@N +avocations@p +avogadro@N +avoid@t +avoidable@A +avoidably@v +avoidance@N +avoided@t +avoiding@t +avoids@t +avoirdupois@N +avon@N +avow@t +avowal@N +avowals@p +avowed@A +avowedly@v +avowing@t +avows@t +avuncular@A +avuncularly@? +aw@A! +awacs@p +await@ti +awaited@ti +awaiting@ti +awaits@ti +awake@Vt +awaked@V +awaken@ti +awakened@ti +awakening@AN +awakenings@p +awakens@ti +awakes@Vt +awaking@V +award@tN +awarded@tA +awarding@tA +awards@tp +aware@A +awareness@N +awash@v +away@vAN! +awe@Nt +awed@AV +aweigh@A +awes@pt +awesome@A +awesomely@v +awestricken@? +awestruck@? +awful@Av +awfuller@? +awfullest@? +awfully@v +awfulness@N +awhile@v +awing@V +awkward@A +awkwarder@? +awkwardest@? +awkwardly@v +awkwardness@N +awl@N +awls@p +awning@N +awnings@p +awoke@V +awoken@? +awol@A +awry@v +ax@N +axe@N +axed@V +axes@N +axial@A +axing@V +axiom@N +axiomatic@A +axiomatically@v +axioms@p +axis@N +axle@N +axles@p +axon@N +axons@p +axum@N +ay@!v +ayatollah@? +ayatollahs@p +aye@N +ayers@p +ayes@p +aymara@N +ayrshire@N +ayurveda@N +az@N +azalea@N +azaleas@p +azazel@N +azerbaijan@N +azerbaijani@N +azimuth@N +azimuths@p +azores@p +azov@N +azt@? +aztec@NA +aztecan@A +aztecs@p +azure@NA +azures@p +ba@N +baa@N +baaed@V +baaing@V +baal@N +baas@N +baathist@? +babar@N +babbage@N +babbitt@N +babble@VitN +babbled@V +babbler@N +babblers@p +babbles@Vitp +babbling@V +babe@N +babel@N +babels@p +babes@p +babied@A +babier@? +babies@? +babiest@? +baboon@N +baboons@p +babur@N +babushka@N +babushkas@p +baby@NAV +babyhood@N +babying@p +babyish@A +babylon@N +babylonian@NA +babylons@p +babysat@? +babysit@? +babysits@p +babysitter@? +babysitters@p +babysitting@? +bacardi@N +baccalaureate@N +baccalaureates@p +bacchanal@NA +bacchanalia@N +bacchanalian@A +bacchanalians@p +bacchanals@p +bacchus@N +baccy@N +bach@N +bachelor@N +bachelors@p +bacilli@? +bacillus@N +back@NAv +backache@N +backaches@p +backbench@? +backbencher@N +backbenchers@p +backbenches@? +backbit@V +backbite@V +backbiter@N +backbiters@p +backbites@V +backbiting@V +backbitten@V +backboard@N +backboards@p +backbone@N +backbones@p +backbreaking@A +backchat@N +backcloth@N +backcloths@p +backcomb@V +backcombed@V +backcombing@V +backcombs@V +backdate@t +backdated@t +backdates@t +backdating@t +backdoor@A +backdrop@N +backdrops@p +backed@A +backer@N +backers@p +backfield@N +backfields@p +backfire@iN +backfired@V +backfires@ip +backfiring@V +backgammon@N +background@N +backgrounds@p +backhand@Nvt +backhanded@Av +backhander@N +backhanders@p +backhanding@Avt +backhands@pvt +backhoe@? +backhoes@? +backing@N +backings@p +backlash@N +backlashes@? +backless@A +backlog@N +backlogged@V +backlogging@V +backlogs@p +backpack@Nit +backpacked@Ait +backpacker@N +backpackers@p +backpacking@Ait +backpacks@pit +backpedal@? +backpedaled@? +backpedaling@? +backpedalled@? +backpedalling@? +backpedals@p +backrest@N +backrests@p +backroom@? +backrooms@p +backs@p +backscratching@? +backside@N +backsides@p +backslapper@N +backslappers@p +backslapping@N +backslash@? +backslashes@? +backslid@V +backslidden@V +backslide@V +backslider@N +backsliders@p +backslides@V +backsliding@V +backspace@VN +backspaced@V +backspaces@Vp +backspacing@V +backspin@N +backstabbing@t +backstage@vA +backstairs@pA +backstop@Nit +backstopped@V +backstopping@V +backstops@pit +backstreet@N +backstreets@p +backstretch@N +backstretches@? +backstroke@Ni +backstroked@V +backstrokes@pi +backstroking@V +backtrack@i +backtracked@i +backtracking@i +backtracks@i +backup@N +backups@p +backward@Av +backwardness@N +backwards@v +backwash@Nt +backwater@NV +backwaters@pV +backwoods@p +backwoodsman@N +backwoodsmen@p +backyard@N +backyards@p +bacon@N +bacteria@p +bacterial@A +bacterias@p +bacteriological@A +bacteriologist@N +bacteriologists@p +bacteriology@N +bacterium@N +bactria@N +bad@ANvV +badder@? +baddest@? +baddie@N +baddies@p +baddy@? +bade@V +baden@N +badge@N +badger@N +badgered@A +badgering@A +badgers@p +badges@p +badinage@N +badlands@p +badly@v +badminton@N +badmouth@? +badmouthed@? +badmouthing@? +badmouths@p +badness@N +baedeker@N +baeria@? +baeyer@N +baez@N +baffle@tN +baffled@V +bafflement@N +baffles@tp +baffling@A +bag@N +bagatelle@N +bagatelles@p +bagel@N +bagels@p +bagful@N +bagfuls@p +baggage@N +bagged@NV +baggier@A +baggies@? +baggiest@A +bagginess@N +bagging@N +baggy@AN +baghdad@N +bagpipe@N +bagpipes@p +bags@p! +bagsful@? +baguette@N +baguettes@p +baguio@N +bah@! +bahamas@pN +bahamian@NA +bahamians@p +bahia@N +bahrain@N +baikal@N +bail@N +bailed@A +bailey@N +baileys@p +bailiff@N +bailiffs@p +bailing@A +bailiwick@N +bailiwicks@p +bailout@NA +bailouts@p +bails@p +baird@N +bairn@N +bairns@p +bait@Nti +baited@Ati +baiting@Ati +baits@pti +baize@Nt +bake@tiN +baked@V +bakelite@N +baker@N +bakeries@p +bakers@p +bakersfield@N +bakery@N +bakes@tip +baking@NV +baku@N +bakunin@N +balaclava@N +balaclavas@p +balalaika@N +balalaikas@p +balance@N +balanced@V +balances@p +balanchine@N +balancing@V +balaton@N +balboa@N +balconies@p +balcony@N +bald@A +balded@A +balder@N +balderdash@N +baldest@? +baldies@? +balding@A +baldly@v +baldness@N +balds@p +baldwin@N +baldy@? +bale@N +baled@Vti +baleen@N +baleful@A +balefully@v +bales@p +balfour@N +bali@N +balinese@AN +baling@Vti +balk@itN +balkan@A +balkans@p +balked@itA +balkhash@N +balkier@A +balkiest@A +balking@itA +balks@itp +balky@AN +ball@N +ballad@N +balladeer@N +balladeers@p +ballads@p +ballast@Nt +ballasted@At +ballasting@At +ballasts@pt +ballcock@? +ballcocks@p +balled@A +ballerina@N +ballerinas@p +ballet@N +balletic@A +ballets@p +ballgirl@? +ballgirls@p +ballgown@? +ballgowns@p +balling@N +ballistic@A +ballistics@N +balloon@Nit +ballooned@Ait +ballooning@Ait +balloonist@? +balloonists@p +balloons@pit +ballot@NV +balloted@V +balloting@V +ballots@pV +ballpark@N +ballparks@p +ballplayer@N +ballplayers@p +ballpoint@N +ballpoints@p +ballroom@N +ballrooms@p +balls@p! +ballsed@A! +ballses@? +ballsier@? +ballsiest@? +ballsing@A! +ballsy@? +bally@Av +ballyhoo@NV +ballyhooed@p +ballyhooing@p +ballyhoos@p +balm@N +balmier@A +balmiest@A +balminess@N +balms@p +balmy@A +baloney@N +balsa@N +balsam@N +balsams@p +balsas@p +balthazar@N +baltic@AN +baltimore@N +baluchistan@N +baluster@NA +balusters@p +balustrade@N +balustrades@p +balzac@N +bamako@N +bamboo@N +bamboos@p +bamboozle@t +bamboozled@V +bamboozles@t +bamboozling@V +ban@N +banal@A +banalities@? +banality@N +banana@N +bananas@A +band@NVt +bandage@NV +bandaged@V +bandages@pV +bandaging@V +bandana@? +bandanas@p +bandanna@N +bandannas@p +banded@A +bandied@V +bandier@? +bandies@V +bandiest@? +banding@N +bandit@N +banditry@N +bandits@p +banditti@? +bandleader@N +bandleaders@p +bandmaster@N +bandmasters@p +bandoleer@N +bandoleers@p +bandolier@? +bandoliers@p +bands@pVt +bandsman@N +bandsmen@p +bandstand@N +bandstands@p +bandung@N +bandwagon@N +bandwagons@p +bandwidth@N +bandwidths@p +bandy@AVNt +bandying@V +bane@N +baneful@A +banes@p +bang@N +bangalore@N +banged@A +banger@N +banging@A +bangkok@N +bangladesh@N +bangladeshi@? +bangladeshis@p +bangle@N +bangles@p +bangor@N +bangs@N +bangui@N +bani@N +banish@t +banished@t +banishes@? +banishing@t +banishment@N +banister@N +banisters@p +banjo@N +banjoes@p +banjoist@N +banjoists@p +banjos@p +banjul@N +bank@N +bankable@A +bankbook@N +bankbooks@p +banked@A +banker@N +bankers@p +banking@N +banknote@? +banknotes@? +bankroll@Nt +bankrolled@At +bankrolling@At +bankrolls@pt +bankrupt@NAt +bankruptcies@p +bankruptcy@N +bankrupted@At +bankrupting@At +bankrupts@pt +banks@N +banned@V +banner@N +banners@p +banning@N +bannister@N +bannisters@p +bannock@N +bannocks@p +banns@p +banquet@NV +banqueted@V +banqueting@V +banquets@pV +banquette@N +banquettes@p +bans@p +banshee@N +banshees@p +bantam@N +bantams@p +bantamweight@N +bantamweights@p +banter@VN +bantered@VA +bantering@VA +banters@Vp +banting@N +bantu@NA +bantus@p +banyan@N +banyans@p +baobab@N +baobabs@p +bap@N +baps@p +baptise@ti +baptised@ti +baptises@ti +baptising@ti +baptism@N +baptismal@A +baptisms@p +baptist@NA +baptisteries@p +baptistery@N +baptistries@p +baptistry@N +baptists@p +baptize@Vt +baptized@V +baptizes@Vt +baptizing@V +bar@N +barabbas@N +barb@N +barbadian@AN +barbadians@p +barbados@N +barbarian@NA +barbarians@p +barbaric@A +barbarism@N +barbarisms@p +barbarities@p +barbarity@N +barbarossa@N +barbarous@A +barbarously@v +barbary@N +barbecue@NVt +barbecued@V +barbecues@pVt +barbecuing@V +barbed@A +barbell@N +barbells@p +barbeque@Nt +barbequed@t +barbeques@pt +barbequing@t +barber@N +barbered@A +barbering@A +barberries@p +barberry@N +barbers@p +barbershop@N +barbershops@p +barbie@N +barbies@p +barbing@A +barbiturate@N +barbiturates@p +barbs@p +barbuda@N +barcelona@N +bard@N +bards@p +bare@AtV +bareback@Av +bared@A +barefaced@A +barefoot@Av +barefooted@A +barehanded@vA +bareheaded@Av +barely@v +bareness@N +barer@A +bares@ptV +barest@A +barf@? +barfed@? +barfing@? +barflies@p +barfly@N +barfs@p +bargain@NV +bargained@AV +bargainer@N +bargaining@AV +bargains@pV +barge@Nit +barged@V +barges@pit +barging@V +baring@A +baritone@NA +baritones@p +barium@N +bark@Nit +barked@Ait +barkeeper@N +barkeepers@p +barker@N +barkers@p +barking@N +barks@pit +barley@N! +barmaid@N +barmaids@p +barman@N +barmen@N +barmier@A +barmiest@A +barmy@A +barn@N +barnabas@N +barnacle@N +barnacles@p +barnard@N +barnaul@N +barney@N +barneys@p +barns@p +barnstorm@i +barnstormed@i +barnstorming@i +barnstorms@i +barnum@N +barnyard@N +barnyards@p +baroda@N +barometer@N +barometers@p +barometric@A +baron@N +baroness@N +baronesses@? +baronet@N +baronetcies@p +baronetcy@N +baronets@p +baronial@A +baronies@p +barons@p +barony@N +baroque@NA +barque@N +barques@p +barquisimeto@N +barrack@Vi +barracked@Vi +barracking@Vi +barracks@p +barracuda@N +barracudas@p +barrage@Nt +barraged@V +barrages@pt +barraging@V +barranquilla@N +barred@ANV +barrel@NV +barreled@V +barreling@V +barrelled@V +barrelling@V +barrels@pV +barren@A +barrener@? +barrenest@? +barrenness@N +barrens@p +barrette@N +barrettes@p +barricade@Nt +barricaded@V +barricades@pt +barricading@V +barrie@N +barrier@N +barriers@p +barring@P +barrings@P +barrio@N +barrios@N +barrister@N +barristers@p +barroom@N +barrooms@p +barrow@N +barrows@p +barry@A +barrymore@N +bars@p +bart@N +bartender@N +bartenders@p +barter@ViN +bartered@ViA +bartering@ViA +barters@Vip +barth@N +bartholomew@N +bartlett@N +barton@N +baruch@N +baryshnikov@? +basal@A +basalt@N +base@N +baseball@N +baseballs@p +baseboard@N +baseboards@p +based@V +basel@N +baseless@A +baseline@N +baselines@p +basely@v +baseman@N +basemen@p +basement@N +basements@p +baseness@N +baser@A +bases@N +basest@A +bash@tiN +bashed@tiA +bashes@? +bashful@A +bashfully@v +bashfulness@N +bashing@tiA +basic@AN +basically@v +basics@p +basie@N +basil@N +basilica@N +basilicas@p +basilisk@N +basilisks@p +basin@N +basing@V +basins@p +basis@N +bask@i +basked@i +basket@N +basketball@N +basketballs@p +basketry@N +baskets@p +basketwork@N +basking@i +basks@i +basque@NA +basques@p +basra@N +bass@N +basses@? +basset@N +basseterre@N +bassets@p +bassi@p +bassinet@N +bassinets@p +bassist@N +bassists@p +basso@N +bassoon@N +bassoonist@N +bassoonists@p +bassoons@p +bassos@p +bast@N +bastard@NA +bastardise@ti +bastardised@ti +bastardises@ti +bastardising@ti +bastardize@t +bastardized@t +bastardizes@t +bastardizing@t +bastards@p +baste@tV +basted@t +bastes@tV +basting@N +bastion@N +bastions@p +bat@N +bataan@N +batch@NV +batched@AV +batches@? +batching@AV +bate@N +bated@V +bates@N +bath@N +bathe@itN +bathed@V +bather@N +bathers@p +bathes@itp +bathhouse@N +bathhouses@p +bathing@V +bathmat@? +bathmats@p +bathos@N +bathrobe@N +bathrobes@p +bathroom@N +bathrooms@p +baths@p +bathsheba@N +bathtub@N +bathtubs@p +bathwater@? +batik@N +batiks@p +bating@PV +batista@N +batman@N +batmen@p +baton@N +batons@p +bats@A +batsman@N +batsmen@p +battalion@N +battalions@p +batted@Vt +batten@Nti +battened@Ati +battening@Ati +battens@pti +batter@VtNi +battered@VtAi +batteries@p +battering@VtAi +batterings@p +batters@Vtpi +battery@N +battier@A +battiest@A +batting@N +battle@Ni +battleax@? +battleaxe@? +battleaxes@? +battled@A +battledress@? +battlefield@N +battlefields@p +battleground@? +battlegrounds@p +battlement@N +battlements@p +battler@N +battlers@p +battles@pi +battleship@N +battleships@p +battling@Vt +batty@A +bauble@N +baubles@p +baud@N +baudelaire@N +bauds@p +bauer@N +bauhaus@N +baulk@NV +baulked@AV +baulking@AV +baulks@pV +baum@N +bauxite@N +bavaria@N +bavarian@AN +bawdier@A +bawdiest@A +bawdily@v +bawdiness@N +bawdy@AN +bawl@iN +bawled@iA +bawling@iA +bawls@ip +bay@N +bayberries@p +bayberry@N +bayed@A +bayesian@? +baying@A +bayonet@NV +bayoneted@V +bayoneting@V +bayonets@pV +bayonetted@V +bayonetting@V +bayonne@N +bayou@N +bayous@p +bayreuth@N +bays@p +bazaar@N +bazaars@p +bazillion@? +bazillions@p +bazooka@N +bazookas@p +bb@N +bbb@? +bbc@N +bbq@? +bbs@p +bbses@? +bc@N +be@N +beach@N +beachcomber@N +beachcombers@p +beached@A +beaches@? +beachfront@? +beachhead@N +beachheads@p +beaching@A +beachwear@N +beacon@NVi +beacons@pVi +bead@Nt +beaded@A +beadier@A +beadiest@A +beading@N +beadle@N +beads@pt +beady@A +beagle@Ni +beagles@pi +beak@N +beaked@A +beaker@N +beakers@p +beaks@p +beam@NVti +beamed@AVti +beaming@A +beams@pVti +bean@N +beanbag@N +beanbags@p +beaned@A +beanfeast@N +beanfeasts@p +beanie@N +beanies@p +beaning@A +beanpole@N +beanpoles@p +beans@p +beansprout@? +beansprouts@p +bear@N +bearable@A +beard@N +bearded@A +bearding@N +beards@p +beardsley@N +bearer@N +bearers@p +bearing@N +bearings@p +bearish@A +bears@p +bearskin@N +bearskins@p +beast@N +beastlier@A +beastliest@A +beastliness@N +beastly@AvN +beasts@p +beat@VtiN +beaten@A +beater@N +beaters@p +beatific@A +beatifically@v +beatification@N +beatifications@p +beatified@t +beatifies@? +beatify@Vt +beatifying@t +beating@N +beatings@p +beatitude@N +beatitudes@p +beatnik@N +beatniks@p +beats@Vtip +beau@N +beaufort@N +beaujolais@N +beaumarchais@N +beaumont@N +beaus@p +beaut@NA! +beauteous@A +beauteously@v +beautician@N +beauticians@p +beauties@p +beautification@N +beautified@ti +beautifier@N +beautifiers@p +beautifies@? +beautiful@A +beautifully@v +beautify@V +beautifying@ti +beauts@p! +beauty@N! +beauvoir@N +beaux@N +beaver@N +beavered@A +beavering@A +beavers@p +bebop@N +bebops@p +becalm@t +becalmed@A +becalming@t +becalms@t +became@V +because@C +beck@N +becket@N +beckett@N +beckon@VN +beckoned@VA +beckoning@VA +beckons@Vp +becks@p +become@V +becomes@V +becoming@AN +becomingly@v +becquerel@N +becquerels@p +bed@N +bedaub@t +bedaubed@t +bedaubing@t +bedaubs@t +bedazzle@t +bedazzled@t +bedazzles@t +bedazzling@t +bedbug@N +bedbugs@p +bedchamber@N +bedchambers@p +bedclothes@p +bedded@V +bedder@N +bedding@N +bede@N +bedeck@t +bedecked@t +bedecking@t +bedecks@t +bedevil@V +bedeviled@t +bedeviling@t +bedevilled@t +bedevilling@t +bedevilment@N +bedevils@V +bedfellow@N +bedfellows@p +bedhead@? +bedheads@p +bedlam@N +bedlams@p +bedouin@NA +bedouins@p +bedpan@N +bedpans@p +bedpost@N +bedposts@p +bedraggle@t +bedraggled@t +bedraggles@t +bedraggling@t +bedridden@A +bedrock@N +bedrocks@p +bedroll@N +bedrolls@p +bedroom@N +bedrooms@p +beds@N +bedside@N +bedsides@p +bedsit@? +bedsits@p +bedsitter@N +bedsitters@p +bedsore@N +bedsores@p +bedspread@N +bedspreads@p +bedstead@N +bedsteads@p +bedtime@N +bedtimes@p +bee@N +beech@N +beecher@N +beeches@? +beechnut@N +beechnuts@p +beef@Nit +beefburger@N +beefburgers@p +beefcake@N +beefcakes@p +beefed@Ait +beefier@A +beefiest@A +beefing@Ait +beefs@pit +beefsteak@N +beefsteaks@p +beefy@A +beehive@N +beehives@p +beekeeper@N +beekeepers@p +beekeeping@N +beeline@N +beelines@p +beelzebub@N +been@V +beep@NV +beeped@AV +beeper@N +beepers@p +beeping@AV +beeps@pV +beer@N +beerbohm@N +beers@N +beery@A +bees@p +beeswax@Nt +beet@N +beethoven@N +beetle@NitA +beetled@V +beetles@pit +beetling@V +beetroot@N +beetroots@p +beets@p +beeves@N +befall@Vit +befallen@V +befalling@V +befalls@Vit +befell@V +befit@V +befits@V +befitted@t +befitting@t +befog@V +befogged@t +befogging@t +befogs@V +before@CPv +beforehand@v +befoul@t +befouled@t +befouling@t +befouls@t +befriend@t +befriended@t +befriending@t +befriends@t +befuddle@t +befuddled@t +befuddles@t +befuddling@t +beg@ViN +began@V +begat@V +beget@Vt +begets@Vt +begetter@v +begetters@v +begetting@? +beggar@Nt +beggared@At +beggaring@At +beggarly@A +beggars@pt +begged@V +begging@V +begin@N +beginner@N +beginners@p +beginning@N +beginnings@p +begins@p +begone@! +begonia@N +begonias@p +begot@V +begotten@V +begrudge@t +begrudged@t +begrudges@t +begrudging@t +begrudgingly@v +begs@Vip +beguile@V +beguiled@t +beguiles@V +beguiling@t +beguilingly@? +begum@N +begums@p +begun@V +behalf@N +behalves@? +behan@N +behave@i +behaved@V +behaves@i +behaving@V +behavior@N +behavioral@A +behaviorism@N +behaviorist@NA +behaviorists@p +behaviors@p +behaviour@N +behavioural@? +behaviourism@? +behaviourist@? +behaviourists@p +behaviours@p +behead@t +beheaded@t +beheading@t +beheads@t +beheld@V +behemoth@N +behemoths@p +behest@N +behests@p +behind@PvN +behindhand@v +behinds@Pvp +behold@V +beholden@A +beholder@N +beholders@p +beholding@V +beholds@V +behoove@ti +behooved@V +behooves@p +behooving@V +behove@t +behoved@t +behoves@t +behoving@t +behring@N +beiderbecke@N +beige@N +beijing@? +being@N +beings@p +beirut@N +bejewel@V +bejeweled@t +bejeweling@t +bejewelled@t +bejewelling@t +bejewels@V +belabor@t +belabored@t +belaboring@t +belabors@t +belabour@t +belaboured@t +belabouring@t +belabours@t +belarus@p +belated@A +belatedly@v +belay@VN +belayed@V +belaying@V +belays@Vp +belch@VN +belched@VA +belches@? +belching@VA +beleaguer@t +beleaguered@t +beleaguering@t +beleaguers@t +belfast@N +belfries@p +belfry@N +belgian@NA +belgians@p +belgium@N +belgrade@N +belie@V +belied@t +belief@N +beliefs@p +belies@V +believable@A +believe@ti +believed@V +believer@N +believers@p +believes@ti +believing@V +belittle@t +belittled@t +belittles@t +belittling@t +belize@N +bell@N +belladonna@N +bellboy@N +bellboys@p +belle@N +belled@A +belleek@N +belles@p +bellhop@N +bellhops@p +bellicose@A +bellicosity@N +bellied@V +bellies@p +belligerence@N +belligerency@N +belligerent@AN +belligerently@v +belligerents@p +belling@A +bellini@N +bellow@iN +bellowed@iA +bellowing@iA +bellows@N +bells@p +bellwether@N +bellwethers@p +belly@NV +bellyache@Ni +bellyached@V +bellyaches@pi +bellyaching@V +bellybutton@N +bellybuttons@p +bellyful@N +bellyfuls@p +bellying@V +belmopan@N +belong@i +belonged@i +belonging@N +belongings@p +belongs@i +beloved@AN +beloveds@p +below@Pv +belshazzar@N +belt@Nti +beltane@N +belted@A +belting@N +belts@pti +beltway@N +beltways@p +belying@t +bemoan@V +bemoaned@V +bemoaning@V +bemoans@V +bemuse@t +bemused@A +bemuses@t +bemusing@t +benares@N +bench@Nt +benched@At +benches@? +benching@At +benchmark@Nt +benchmarks@pt +bend@N +bendable@A +bender@N +benders@p +bendier@? +bendiest@? +bending@A +bends@p +bendy@A +beneath@Pv +benedict@N +benedictine@N +benediction@N +benedictions@p +benefaction@N +benefactions@p +benefactor@N +benefactors@p +benefactress@? +benefactresses@? +benefice@Nt +beneficence@N +beneficent@A +beneficently@v +benefices@pt +beneficial@A +beneficially@v +beneficiaries@p +beneficiary@NA +benefit@N +benefited@V +benefiting@V +benefits@p +benefitted@? +benefitting@? +benelux@N +benet@N +benevolence@N +benevolences@p +benevolent@A +benevolently@v +bengal@N +bengali@NA +benghazi@N +benighted@A +benign@A +benignly@v +benin@N +benjamin@N +bennett@N +bent@AN +bentham@NA +bentley@N +benton@N +bents@p +benumb@t +benumbed@t +benumbing@t +benumbs@t +benz@? +benzedrine@N +benzene@N +beowulf@N +bequeath@t +bequeathed@t +bequeathing@t +bequeaths@t +bequest@N +bequests@p +berate@t +berated@t +berates@t +berating@t +berber@NA +berbers@p +bereave@t +bereaved@t +bereavement@N +bereavements@p +bereaves@t +bereaving@t +bereft@A +beret@N +berets@p +berg@N +bergen@N +bergerac@N +bergman@N +bergs@p +bergson@N +beria@N +beriberi@N +bering@N +berk@N +berkeley@N +berks@p +berkshire@N +berkshires@p +berlin@N +berliner@N +berlins@p +berlioz@N +berm@N +berms@p +bermuda@NA +bermudas@p +bern@N +bernadette@N +bernard@N +berne@N +bernhardt@N +bernini@N +bernoulli@N +bernstein@N +berried@V +berries@p +berry@N +berrying@V +berserk@AN +berth@Nti +berthed@Ati +berthing@Ati +berths@pti +beryl@N +beryllium@N +beryls@p +berzelius@N +beseech@V +beseeched@V +beseeches@? +beseeching@V +beseechingly@v +beset@V +besets@V +besetting@A +beside@Pv +besides@Pv +besiege@t +besieged@t +besieger@N +besiegers@p +besieges@t +besieging@t +besmirch@t +besmirched@t +besmirches@? +besmirching@t +besom@Nt +besoms@pt +besot@t +besots@t +besotted@A +besotting@t +besought@V +bespeak@V +bespeaking@V +bespeaks@V +bespectacled@A +bespoke@A +bespoken@VA +bess@N +bessel@N +bessie@N +best@AvNt +bested@Avt +bestial@A +bestiality@N +bestiaries@p +bestiary@N +besting@Avt +bestir@V +bestirred@t +bestirring@t +bestirs@V +bestow@t +bestowal@N +bestowals@p +bestowed@t +bestowing@t +bestows@t +bestrid@t +bestridden@t +bestride@t +bestrides@t +bestriding@t +bestrode@t +bests@pvt +bestseller@? +bestsellers@p +bestselling@? +bet@NV +beta@N +betake@V +betaken@t +betakes@V +betaking@t +betas@p +betcha@? +betel@N +betelgeuse@N +bethany@N +bethe@N +bethesda@N +bethink@Vt +bethinking@V +bethinks@Vt +bethlehem@N +bethought@V +bethune@? +betide@V +betided@V +betides@V +betiding@V +betoken@t +betokened@t +betokening@t +betokens@t +betook@V +betray@t +betrayal@N +betrayals@p +betrayed@t +betrayer@N +betrayers@p +betraying@t +betrays@t +betroth@t +betrothal@N +betrothals@p +betrothed@AN +betrothing@t +betroths@t +bets@pV +betted@V +better@AvNVt +bettered@AvVt +bettering@AvVt +betterment@N +betters@pvVt +betting@V +bettor@N +bettors@p +between@Pv +betwixt@Pv +beulah@N +bevel@NV +beveled@V +beveling@V +bevelled@V +bevelling@V +bevellings@V +bevels@pV +beverage@N +beverages@p +bevies@p +bevvies@? +bevvy@N +bevy@N +bewail@V +bewailed@V +bewailing@V +bewails@V +beware@V +bewared@V +bewares@V +bewaring@V +bewigged@? +bewilder@t +bewildered@t +bewildering@t +bewilderingly@v +bewilderment@N +bewilders@t +bewitch@t +bewitched@t +bewitches@? +bewitching@t +beyer@N +beyond@PvN +bhaji@? +bhopal@N +bhutan@NA +bi@N +bialystok@N +biannual@A +biannually@v +bias@N +biased@A +biases@? +biasing@A +biassed@? +biassing@? +biathlon@N +biathlons@p +bib@N +bible@N +bibles@p +biblical@A +bibliographer@N +bibliographers@p +bibliographic@A +bibliographical@A +bibliographies@p +bibliography@N +bibliophile@N +bibliophiles@p +bibs@p +bibulous@A +bicameral@A +bicarb@N +bicarbonate@N +bicentenaries@p +bicentenary@AN +bicentennial@AN +bicentennials@p +bicep@? +biceps@N +bicepses@p +bicker@iN +bickered@iA +bickering@N +bickers@ip +bicuspid@AN +bicuspids@p +bicycle@Ni +bicycled@V +bicycles@pi +bicycling@V +bicyclist@N +bicyclists@p +bid@N +bidden@V +bidder@? +bidders@p +biddies@p +bidding@N +biddle@N +biddy@N +bide@Vt +bided@A +bides@Vt +bidet@N +bidets@p +biding@A +bidirectional@A +bids@p +biennial@AN +biennially@v +biennials@p +bier@N +bierce@N +biers@p +biff@Nt +biffed@At +biffing@At +biffs@pt +bifocal@A +bifocals@p +bifurcate@VA +bifurcated@V +bifurcates@Vp +bifurcating@V +bifurcation@N +bifurcations@p +big@Av +bigamist@N +bigamists@p +bigamous@A +bigamy@N +bigfoot@? +bigger@A +biggest@A +biggie@N +biggies@p +bighearted@? +bighorn@N +bighorns@p +bight@Nt +bights@pt +bigmouth@N +bigmouths@p +bigness@N +bigot@N +bigoted@A +bigotries@p +bigotry@N +bigots@p +bigwig@N +bigwigs@p +bijou@N +bike@NV +biked@V +biker@? +bikers@p +bikes@pV +biking@V +bikini@N +bikinis@p +bilabial@AN +bilabials@p +bilateral@A +bilaterally@v +bilbao@N +bilberries@p +bilberry@N +bile@N +bilge@Nit +bilges@pit +bilingual@AN +bilinguals@p +bilious@A +bilk@tN +bilked@tA +bilking@tA +bilks@tp +bill@N +billboard@N +billboards@p +billed@A +billet@Nt +billeted@V +billeting@V +billets@pt +billfold@N +billfolds@p +billhook@N +billhooks@p +billiard@N +billiards@N +billies@p +billing@N +billings@N +billion@ND +billionaire@N +billionaires@p +billions@pD +billionth@AN +billionths@p +billow@NV +billowed@AV +billowier@A +billowiest@A +billowing@AV +billows@N +billowy@A +bills@N +billy@N +billycan@? +billycans@p +bimbo@N +bimboes@p +bimbos@p +bimonthlies@? +bimonthly@AvN +bin@NV +binaries@p +binary@AN +bind@VtiN +binder@N +binderies@p +binders@p +bindery@N +binding@NA +bindings@p +binds@Vtip +bindweed@N +binge@N +binged@A +bingeing@A +binges@p +binging@A +bingo@N! +binman@? +binmen@? +binnacle@N +binnacles@p +binned@V +binning@V +binocular@A +binoculars@p +binomial@NA +binomials@p +bins@pV +biochemical@AN +biochemicals@p +biochemist@N +biochemistry@N +biochemists@p +biodegradable@A +biodegrade@? +biodegraded@? +biodegrades@? +biodegrading@? +biodiversity@? +biofeedback@N +biographer@N +biographers@p +biographical@A +biographies@p +biography@N +biological@AN +biologically@v +biologist@N +biologists@p +biology@N +biomass@N +bionic@A +biophysicist@N +biophysicists@p +biophysics@N +biopic@? +biopics@p +biopsied@? +biopsies@p +biopsy@N +biopsying@A +biorhythm@? +biorhythms@p +biosphere@N +biospheres@p +biotechnology@N +bipartisan@A +bipartite@A +biped@NA +bipedal@A +bipeds@p +biplane@N +biplanes@p +bipolar@A +biracial@A +birch@N +birched@A +birches@N +birching@A +bird@N +birdbath@N +birdbaths@p +birdbrain@N +birdbrained@A +birdbrains@p +birdcage@N +birdcages@p +birded@A +birdhouse@N +birdhouses@p +birdie@N +birdied@V +birdieing@V +birdies@p +birding@A +birdlike@A +birds@p +birdseed@N +birdsong@? +birdwatcher@? +birdwatchers@p +birdying@? +biretta@N +birettas@p +birkenstock@? +birmingham@N +biro@N +birth@Nt +birthday@N +birthdays@p +birthed@At +birthing@At +birthmark@N +birthmarks@p +birthplace@N +birthplaces@p +birthrate@? +birthrates@? +birthright@N +birthrights@p +births@pt +birthstone@N +birthstones@p +biscay@N +biscuit@N +biscuits@p +bisect@t +bisected@t +bisecting@t +bisection@N +bisections@p +bisector@N +bisectors@p +bisects@t +bisexual@AN +bisexuality@N +bisexuals@p +bishkek@? +bishop@N +bishopric@N +bishoprics@p +bishops@p +bismarck@N +bismuth@N +bison@N +bisons@p +bisque@N +bissau@N +bistro@N +bistros@p +bit@N +bitch@NVit +bitched@AVit +bitches@? +bitchier@A +bitchiest@A +bitchiness@N +bitching@AVit +bitchy@A +bite@VtiN +bites@Vtip +biting@A +bitingly@v +bitmap@? +bitmaps@p +bitnet@? +bitnets@p +bits@p +bitten@V +bitter@AvNV +bitterer@? +bitterest@? +bitterly@v +bittern@N +bitterness@N +bitterns@p +bitters@p +bittersweet@NA +bittersweets@p +bitty@A +bitumen@N +bituminous@A +bivalve@NA +bivalves@p +bivouac@NV +bivouacked@V +bivouacking@V +bivouacs@pV +biweeklies@? +biweekly@AvN +biz@N +bizarre@A +bizarrely@v +bizet@N +bk@N +blab@ViN +blabbed@V +blabber@Ni +blabbered@Ai +blabbering@Ai +blabbermouth@N +blabbermouths@p +blabbers@pi +blabbing@V +blabs@Vip +black@ANVt +blackball@Nt +blackballed@At +blackballing@At +blackballs@pt +blackbeard@N +blackberries@p +blackberry@NV +blackberrying@AV +blackbird@Nt +blackbirds@pt +blackboard@N +blackboards@p +blackburn@N +blackcurrant@N +blackcurrants@p +blacked@AVt +blacken@Vt +blackened@Vt +blackening@Vt +blackens@Vt +blacker@? +blackest@? +blackfoot@N +blackguard@Nti +blackguards@pti +blackhead@N +blackheads@p +blacking@N +blackish@A +blackjack@Nt +blackjacked@At +blackjacking@At +blackjacks@pt +blackleg@NV +blacklegs@pV +blacklist@Nt +blacklisted@At +blacklisting@At +blacklists@pt +blackmail@Nt +blackmailed@At +blackmailer@N +blackmailers@p +blackmailing@At +blackmails@pt +blackness@N +blackout@NVti +blackouts@pVti +blacks@pVt +blackshirt@N +blacksmith@N +blacksmiths@p +blackstone@N +blackthorn@N +blackthorns@p +blacktop@N +blacktopped@? +blacktopping@? +blacktops@p +blackwell@N +bladder@N +bladders@p +blade@N +blades@p +blag@? +blagged@A +blagging@A +blags@p +blah@NAi +blake@N +blame@Nt +blamed@Av +blameless@A +blamelessly@v +blamer@N +blames@pt +blameworthy@A +blaming@V +blammo@? +blammoed@? +blammoing@? +blammos@p +blanch@N +blanched@A +blanches@p +blanching@A +blancmange@N +blancmanges@p +bland@A +blander@? +blandest@? +blandishment@N +blandishments@p +blandly@v +blandness@N +blank@ANt +blanked@At +blanker@? +blankest@? +blanket@Nt +blanketed@At +blanketing@N +blankets@pt +blanking@At +blankly@v +blankness@N +blanks@pt +blare@VN +blared@V +blares@Vp +blaring@V +blarney@NV +blarneyed@V +blarneying@V +blarneys@pV +blaspheme@ti +blasphemed@V +blasphemer@N +blasphemers@p +blasphemes@ti +blasphemies@p +blaspheming@V +blasphemous@A +blasphemously@v +blasphemy@N +blast@N!Vt +blasted@Av +blaster@N +blasters@p +blasting@N +blastoff@NV +blastoffs@pV +blasts@p!Vt +blat@Vit +blatant@A +blatantly@v +blather@iN +blathered@iA +blathering@iA +blathers@ip +blats@Vit +blavatsky@N +blaze@N +blazed@Vt +blazer@N +blazers@p +blazes@p +blazing@Vt +blazon@tN +blazoned@tA +blazoning@tA +blazons@tp +bldg@N +bleach@VN +bleached@VA +bleacher@N +bleachers@p +bleaches@? +bleaching@VA +bleak@AN +bleaker@? +bleakest@? +bleakly@v +bleakness@N +blearier@A +bleariest@A +blearily@v +bleary@A +bleat@iN +bleated@iA +bleating@iA +bleats@ip +bled@A +bleed@VtiN +bleeder@N +bleeders@p +bleeding@Av +bleeds@Vtip +bleep@Nit +bleeped@Ait +bleeper@? +bleepers@p +bleeping@Ait +bleeps@pit +blemish@Nt +blemished@At +blemishes@? +blemishing@At +blench@iV +blenched@iV +blenches@? +blenching@iV +blend@VtiN +blended@VtiA +blender@N +blenders@p +blending@V +blends@Vtip +blenheim@N +blent@V +bless@V +blessed@AN +blessedly@v +blessedness@N +blesses@? +blessing@N +blessings@p +blest@V +bletch@? +blew@V +bligh@N +blight@N +blighted@A +blighter@N +blighters@p +blighting@A +blights@p +blimey@! +blimp@N +blimpish@? +blimps@p +blind@AvViN +blinded@AvVi +blinder@N +blinders@p +blindest@? +blindfold@tNAv +blindfolded@tAv +blindfolding@tAv +blindfolds@tpv +blinding@N +blindingly@v +blindly@v +blindness@N +blinds@pvVi +blindside@? +blindsided@? +blindsides@? +blindsiding@? +blink@VitN +blinked@VitA +blinker@N +blinkered@A +blinkering@A +blinkers@p +blinking@Av +blinks@N +blintz@N +blintze@N +blintzes@p +blip@NV +blips@pV +bliss@N +blissful@A +blissfully@v +blissfulness@N +blister@NVt +blistered@AVt +blistering@AVt +blisters@pVt +blithe@A +blithely@v +blither@i +blithest@? +blitz@N +blitzed@A +blitzes@? +blitzing@A +blitzkrieg@N +blitzkriegs@p +blivet@? +blivets@p +blizzard@N +blizzards@p +bloat@VtN +bloated@A +bloater@N +bloaters@p +bloating@VtA +bloats@Vtp +bloatware@? +bloatwares@? +blob@NV +blobbed@V +blobbing@V +blobs@pV +bloc@N +bloch@N +block@N +blockade@NV +blockaded@AV +blockades@pV +blockading@AV +blockage@N +blockages@p +blockbuster@N +blockbusters@p +blockbusting@N +blocked@A +blockhead@N +blockheads@p +blockhouse@N +blockhouses@p +blocking@A +blocks@p +blocs@p +bloemfontein@N +blog@? +blogged@? +blogger@? +bloggers@p +blogging@? +blogs@p +bloke@N +blokes@p +blokish@? +blond@AN +blonde@NA +blonder@? +blondes@p +blondest@? +blondness@N +blonds@p +blood@N +bloodbath@? +bloodbaths@p +bloodcurdling@A +blooded@A +bloodhound@N +bloodhounds@p +bloodied@V +bloodier@A +bloodies@? +bloodiest@VA +bloodily@v +blooding@N +bloodless@A +bloodlessly@v +bloodletting@N +bloodline@N +bloodlines@p +bloodmobile@N +bloodmobiles@p +bloods@p +bloodshed@N +bloodshot@A +bloodstain@N +bloodstained@A +bloodstains@p +bloodstock@N +bloodstream@N +bloodstreams@p +bloodsucker@N +bloodsuckers@p +bloodthirstier@? +bloodthirstiest@? +bloodthirstiness@N +bloodthirsty@A +bloody@AvAV +bloodying@A +bloom@N +bloomed@A +bloomer@N +bloomers@p +bloomfield@N +blooming@vA +blooms@p +bloomsbury@NA +blooper@N +bloopers@p +blossom@N +blossomed@A +blossoming@A +blossoms@p +blot@NV +blotch@NVi +blotched@AVi +blotches@? +blotchier@A +blotchiest@A +blotching@AVi +blotchy@A +blots@pV +blotted@V +blotter@N +blotters@p +blotting@V +blotto@A +blouse@NV +bloused@V +blouses@pV +blousing@V +blow@N +blower@N +blowers@p +blowgun@N +blowguns@p +blowhard@NA +blowhards@p +blowhole@N +blowholes@p +blowing@NV +blowlamp@N +blowlamps@p +blown@V +blowout@N +blowouts@p +blowpipe@N +blowpipes@p +blows@p +blowsier@A +blowsiest@A +blowsy@A +blowtorch@N +blowtorches@? +blowup@N +blowups@p +blowy@A +blowzier@A +blowziest@A +blowzy@A +blt@? +blts@p +blub@V +blubbed@? +blubber@VNA +blubbered@VA +blubbering@VA +blubbers@Vp +blubbing@? +blubs@V +bludgeon@Nt +bludgeoned@At +bludgeoning@At +bludgeons@pt +blue@N +bluebeard@N +bluebell@N +bluebells@p +blueberries@p +blueberry@N +bluebird@N +bluebirds@p +bluebottle@N +bluebottles@p +blued@V +bluefish@N +bluefishes@? +bluegrass@N +blueing@N +blueish@A +bluejacket@N +bluejackets@p +bluejay@? +bluejays@p +bluenose@N +bluenoses@p +blueprint@Nt +blueprinted@At +blueprinting@At +blueprints@pt +bluer@NA +blues@p +bluest@NA +bluestocking@N +bluestockings@p +bluesy@? +bluff@VNA +bluffed@VA +bluffer@N +bluffers@p +bluffest@? +bluffing@VA +bluffs@Vp +bluing@NV +bluish@A +blunder@NVt +blunderbuss@N +blunderbusses@? +blundered@AVt +blunderer@N +blunderers@p +blundering@AVt +blunders@pVt +blunt@At +blunted@At +blunter@? +bluntest@? +blunting@At +bluntly@v +bluntness@N +blunts@pt +blur@VtN +blurb@N +blurbs@p +blurred@V +blurrier@? +blurriest@? +blurring@V +blurry@A +blurs@Vtp +blurt@t +blurted@t +blurting@t +blurts@t +blush@iN +blushed@iA +blusher@N +blushers@p +blushes@? +blushing@iA +bluster@VtiN +blustered@VtiA +blustering@VtiA +blusters@Vtip +blustery@A +blvd@N +bm@N +bo@! +boa@N +boar@N +board@NVti +boarded@AVti +boarder@N +boarders@p +boarding@N +boardinghouse@N +boardinghouses@p +boardroom@N +boardrooms@p +boards@pVti +boardwalk@N +boardwalks@p +boars@p +boas@N +boast@itN +boasted@itA +boaster@N +boasters@p +boastful@A +boastfully@v +boastfulness@N +boasting@itA +boasts@itp +boat@Nit +boated@Ait +boater@N +boaters@p +boathouse@N +boathouses@p +boating@N +boatload@N +boatloads@p +boatman@N +boatmen@p +boats@pit +boatswain@N +boatswains@p +boatyard@N +boatyards@p +bob@N +bobbed@V +bobbies@p +bobbin@N +bobbing@NV +bobbins@p +bobble@NV +bobbled@V +bobbles@pV +bobbling@V +bobby@N +bobcat@N +bobcats@p +bobolink@N +bobolinks@p +bobs@NAt +bobsled@Ni +bobsledded@V +bobsledding@N +bobsleds@pi +bobsleigh@Ni +bobsleighs@pi +bobtail@NAt +bobtails@pt +bobwhite@N +bobwhites@p +boccaccio@N +bod@N +bodacious@p +bode@N +boded@V +bodega@N +bodegas@p +bodes@p +bodge@V +bodged@V +bodges@V +bodging@V +bodhisattva@N +bodice@N +bodices@p +bodies@pV +bodily@Av +boding@NVA +bodkin@N +bodkins@p +bods@p +body@N +bodybuilding@? +bodyguard@N +bodyguards@p +bodysuit@? +bodysuits@p +bodywork@N +boeotia@N +boeotian@AN +boer@N +boers@p +boethius@N +boffin@N +boffins@p +bog@N +boga@? +bogart@N +bogey@N +bogeyed@p +bogeying@p +bogeyman@N +bogeymen@? +bogeys@p +bogged@V +boggier@? +boggiest@? +bogging@V +boggle@i +boggled@V +boggles@i +boggling@V +boggy@A +bogie@N +bogied@A +bogies@p +bogometer@? +bogometers@p +bogon@? +bogosities@? +bogosity@? +bogotified@? +bogotifies@? +bogotify@? +bogotifying@? +bogs@p +bogus@A +bogy@N +bohemia@N +bohemian@NA +bohemians@p +bohr@N +boil@ViN +boiled@A +boiler@N +boilerplate@N +boilers@p +boiling@Av +boilings@pv +boils@Vip +boink@? +boinked@? +boinking@? +boinks@p +boise@N +boisterous@A +boisterously@v +boisterousness@N +bola@N +bolas@Np +bold@AN +bolder@? +boldest@? +boldface@NAt +boldly@v +boldness@N +bole@N +bolero@N +boleros@p +boles@N +boleyn@N +bolivar@N +bolivia@N +bolivian@AN +bolivians@p +boll@N +bollard@N +bollards@p +bollocking@A +bollockings@p +bollocks@p +bolls@p +bologna@N +boloney@N +bolshevik@N +bolsheviks@p +bolshevism@N +bolshevist@NA +bolshie@A +bolshy@N +bolster@tN +bolstered@tA +bolstering@tA +bolsters@tp +bolt@N +bolted@A +bolthole@? +boltholes@? +bolting@A +bolton@N +bolts@p +boltzmann@N +bomb@ANVi +bombard@VtN +bombarded@VtA +bombardier@N +bombardiers@p +bombarding@VtA +bombardment@N +bombardments@p +bombards@Vtp +bombast@N +bombastic@A +bombay@N +bombed@AVi +bomber@N +bombers@p +bombing@AVi +bombings@p +bombs@pVi +bombshell@N +bombshells@p +bombsite@? +bombsites@? +bonanza@N +bonanzas@p +bonaparte@N +bonaventure@N +bonbon@N +bonbons@p +bonce@N +bonces@p +bond@N +bondage@N +bonded@A +bondholder@N +bondholders@p +bonding@A +bonds@p +bondsman@N +bondsmen@p +bone@N +boned@AV +bonehead@N +boneheads@p +boneless@A +bonemeal@? +boner@N +boners@p +bones@p +boneshaker@N +boneshakers@p +boney@? +boneyer@? +boneyest@? +bonfire@N +bonfires@p +bong@NV +bonged@AV +bonging@AV +bongo@N +bongoes@p +bongos@p +bongs@pV +bonhomie@N +bonier@A +boniest@A +boniface@N +boning@V +bonito@N +bonitoes@? +bonitos@p +bonk@? +bonked@? +bonkers@A +bonking@? +bonks@p +bonn@N +bonnet@N +bonnets@p +bonnie@N +bonnier@A +bonniest@A +bonny@Av +bonsai@N +bonus@N +bonuses@p +bony@A +boo@!V +boob@Ni +boobed@Ai +boobies@p +boobing@Ai +boobs@pi +booby@N +boodle@NV +boodles@pV +booed@!V +booger@? +boogerman@? +boogermans@p +boogers@p +boogeyman@N +boogeymen@p +boogie@VN +boogied@VA +boogieing@VA +boogies@Vp +boohoo@VN +booing@!V +book@NVt +bookable@? +bookbinder@N +bookbinders@p +bookbinding@N +bookcase@N +bookcases@p +booked@AVt +bookend@? +bookends@p +bookie@N +bookies@p +booking@N +bookings@p +bookish@A +bookkeeper@N +bookkeepers@p +bookkeeping@N +booklet@N +booklets@p +bookmaker@N +bookmakers@p +bookmaking@NA +bookmark@N +bookmarked@A +bookmarking@A +bookmarks@p +bookmobile@N +bookmobiles@p +bookplate@N +bookplates@p +books@pVt +bookseller@N +booksellers@p +bookshelf@N +bookshelves@p +bookshop@? +bookshops@p +bookstall@N +bookstalls@p +bookstore@N +bookstores@p +bookworm@N +bookworms@p +boole@N +boolean@A +boom@VN +boomed@VA +boomer@N +boomerang@Ni +boomeranged@Ai +boomeranging@Ai +boomerangs@pi +boomers@p +booming@VA +booms@Vp +boon@NA +boondocks@p +boondoggle@iN +boondoggled@V +boondoggles@ip +boondoggling@V +boone@N +boonies@p +boons@p +boor@N +boorish@A +boorishly@v +boors@p +boos@!V +boost@Nt +boosted@At +booster@N +boosters@p +boosting@At +boosts@pt +boot@N +bootblack@N +bootblacks@p +booted@A +bootee@N +bootees@p +booth@N +booths@p +bootie@N +booties@p +booting@A +bootlace@N +bootlaces@p +bootleg@VNA +bootlegged@NV +bootlegger@N +bootleggers@p +bootlegging@NV +bootlegs@Vp +bootless@A +boots@N +bootstrap@N +bootstraps@p +booty@N +booze@N +boozed@V +boozer@N +boozers@p +boozes@p +boozier@A +booziest@A +boozing@V +boozy@A +bop@NV +bopped@V +bopping@V +bops@pV +borax@N +bordeaux@N +bordello@N +bordellos@p +border@N +bordered@A +bordering@A +borderland@N +borderlands@p +borderline@NA +borderlines@p +borders@p +bore@N +boreas@N +bored@V +boredom@N +borehole@N +boreholes@p +borer@N +borers@p +bores@N +borg@N +borges@N +borgia@N +borglum@N +borgs@p +boring@NA +boringly@? +born@N +borne@V +borneo@N +borodin@N +boron@N +borough@N +boroughs@p +borrow@N +borrowed@A +borrower@N +borrowers@p +borrowing@N +borrowings@p +borrows@p +borsch@? +borscht@N +borstal@N +borstals@p +bosch@N +bose@N +bosh@N +bosnia@N +bosom@Nt +bosoms@pt +bosomy@A +bosporus@N +boss@N +bossed@A +bosses@? +bossier@A +bossiest@A +bossily@? +bossiness@N +bossing@A +bossy@A +boston@N +bostonian@AN +bostons@p +bosun@N +bosuns@p +boswell@N +bot@N +botanical@AN +botanist@N +botanists@p +botany@N +botch@tN +botched@tA +botches@? +botching@tA +both@DC +bother@tN! +botheration@N! +bothered@tA! +bothering@tA! +bothers@tp! +bothersome@A +botswana@N +botticelli@N +bottle@Nt +bottled@V +bottleneck@Nt +bottlenecks@pt +bottler@N +bottlers@p +bottles@pt +bottling@V +bottom@NAti +bottomed@Ati +bottoming@Ati +bottomless@A +bottoms@pti +botulism@N +boudoir@N +boudoirs@p +bouffant@AN +bouffants@p +bougainvillaea@N +bougainvillaeas@p +bougainvillea@N +bougainvilleas@p +bough@N +boughs@p +bought@VA +bouillabaisse@N +bouillabaisses@p +bouillon@N +bouillons@p +boulder@N +boulders@p +boules@p +boulevard@N +boulevards@p +bounce@itN +bounced@V +bouncer@N +bouncers@p +bounces@itp +bouncier@? +bounciest@? +bouncing@A +bouncy@A +bound@N +boundaries@p +boundary@N +bounded@A +bounden@A +bounder@N +bounders@p +bounding@A +boundless@A +bounds@N +bounteous@A +bounties@p +bountiful@A +bountifully@v +bounty@N +bouquet@N +bouquets@p +bourbon@N +bourbons@p +bourgeois@N +bourgeoisie@N +bournemouth@N +boustrophedon@A +boustrophedons@p +bout@N +boutique@N +boutiques@p +bouts@p +bovine@AN +bovines@p +bovver@N +bow@N +bowdlerise@t +bowdlerised@t +bowdlerises@t +bowdlerising@t +bowdlerize@t +bowdlerized@t +bowdlerizes@t +bowdlerizing@t +bowed@A +bowel@N +bowels@p +bower@N +bowers@N +bowery@AN +bowie@N +bowing@N +bowl@NVit +bowlder@N +bowlders@p +bowled@AVit +bowlegged@A +bowler@N +bowlers@p +bowling@N +bowls@p +bowman@N +bowmen@p +bows@p +bowsprit@N +bowsprits@p +bowstring@N +bowstrings@p +box@N +boxcar@N +boxcars@p +boxed@A +boxen@? +boxer@N +boxers@p +boxes@? +boxing@N +boxroom@N +boxrooms@p +boxwood@N +boxy@? +boy@N +boycott@tN +boycotted@tA +boycotting@tA +boycotts@tp +boyd@N +boyfriend@N +boyfriends@p +boyhood@N +boyhoods@p +boyish@A +boyishly@v +boyishness@N +boyle@N +boys@N +boysenberries@p +boysenberry@N +bozo@N +bozos@p +bp@N +br@N +bra@N +brace@N +braced@V +bracelet@N +bracelets@p +braces@p +bracing@AN +bracken@N +bracket@Nt +bracketed@At +bracketing@N +brackets@pt +brackish@A +bract@N +bracts@p +brad@N +bradawl@N +bradawls@p +bradbury@N +bradford@N +bradley@N +brads@p +brady@N +brae@N +brag@N +bragg@N +braggart@NA +braggarts@p +bragged@V +bragger@N +braggers@p +bragging@V +brags@p +brahe@N +brahma@N +brahman@N +brahmanism@N +brahmanisms@p +brahmans@p +brahmaputra@N +brahmas@p +brahmin@N +brahmins@p +brahms@N +braid@tN +braided@A +braiding@N +braids@tp +braille@Nt +brailles@pt +brain@Nt +brainchild@N +brainchildren@p +brained@At +brainier@A +brainiest@A +braining@At +brainless@A +brainpower@N +brains@pt +brainstorm@N +brainstormed@A +brainstorming@N +brainstorms@p +brainteaser@? +brainteasers@p +brainwash@t +brainwashed@t +brainwashes@? +brainwashing@N +brainwave@? +brainwaves@? +brainy@A +braise@V +braised@t +braises@V +braising@t +brake@NVt +braked@V +brakeman@N +brakemen@p +brakes@pVt +braking@V +bramble@Ni +brambles@pi +bran@N +branch@N +branched@A +branches@? +branching@N +brand@N +branded@A +brandeis@N +brandenburg@N +brandied@p +brandies@p +branding@A +brandish@tN +brandished@tA +brandishes@? +brandishing@tA +brando@N +brands@p +brandt@N +brandy@N +brandying@p +braque@N +bras@p +brash@AN +brasher@? +brashest@? +brashly@v +brashness@N +brasilia@? +brass@N +brasserie@N +brasseries@p +brasses@? +brassier@A +brassiere@N +brassieres@p +brassiest@A +brassy@A +brat@N +bratislava@N +brats@p +brattier@A +brattiest@A +bratty@A +bravado@N +brave@ANt +braved@V +bravely@v +braver@A +bravery@N +braves@pt +bravest@NVA +braving@A +bravo@!N +bravos@!p +bravura@N +bravuras@p +brawl@Ni +brawled@Ai +brawler@N +brawlers@p +brawling@Ai +brawls@pi +brawn@N +brawnier@? +brawniest@? +brawniness@N +brawny@A +bray@itN +brayed@itA +braying@itA +brays@itp +brazen@At +brazened@At +brazening@At +brazenly@v +brazenness@N +brazens@pt +brazier@N +braziers@p +brazil@N +brazilian@AN +brazilians@p +brazzaville@N +breach@Nti +breached@Ati +breaches@? +breaching@Ati +bread@Nt +breadbasket@N +breadbaskets@p +breadboard@N +breadboards@p +breadbox@? +breadboxes@? +breadcrumb@? +breadcrumbs@p +breaded@At +breadfruit@N +breadfruits@p +breading@At +breadline@N +breads@pt +breadth@N +breadths@p +breadwinner@N +breadwinners@p +break@VtiN! +breakable@AN +breakables@p +breakage@N +breakages@p +breakaway@NVi +breakaways@pVi +breakdown@N +breakdowns@p +breaker@N +breakers@p +breakfast@NV +breakfasted@AV +breakfasting@AV +breakfasts@pV +breaking@N +breakneck@A +breakout@N +breakouts@p +breakpoints@p +breaks@Vtip! +breakthrough@N +breakthroughs@p +breakup@N +breakups@p +breakwater@NV +breakwaters@pV +bream@N +breams@p +breast@Nt +breastbone@N +breastbones@p +breasted@N +breastfed@? +breastfeed@? +breastfeeding@? +breastfeeds@p +breasting@N +breastplate@N +breastplates@p +breasts@pt +breaststroke@N +breaststrokes@p +breastwork@N +breastworks@p +breath@N +breathable@A +breathalyse@t +breathalysed@t +breathalyser@? +breathalysers@p +breathalyses@t +breathalysing@t +breathalyze@? +breathalyzed@? +breathalyzer@N +breathalyzers@p +breathalyzes@? +breathalyzing@? +breathe@Vit +breathed@A +breather@N +breathers@p +breathes@Vit +breathier@A +breathiest@A +breathing@N +breathless@A +breathlessly@v +breathlessness@N +breaths@p +breathtaking@A +breathtakingly@? +breathy@A +brecht@N +bred@N +breech@N +breeches@p +breed@N +breeder@N +breeders@p +breeding@N +breeds@p +breeze@N +breezed@V +breezes@p +breezier@A +breeziest@A +breezily@v +breeziness@N +breezing@V +breezy@A +bremen@N +brest@N +brethren@p +breton@AN +breviaries@p +breviary@N +brevity@N +brew@N +brewed@A +brewer@N +breweries@p +brewers@p +brewery@N +brewing@N +brews@p +brewster@N +brezhnev@N +briar@N +briars@p +bribe@VN +bribed@V +bribery@N +bribes@Vp +bribing@V +brick@N +brickbat@N +brickbats@p +bricked@A +brickie@? +brickies@? +bricking@A +bricklayer@N +bricklayers@p +bricklaying@N +bricks@p +brickwork@N +brickyard@N +brickyards@p +bridal@AN +bridals@p +bride@N +bridegroom@N +bridegrooms@p +brides@p +bridesmaid@N +bridesmaids@p +bridge@N +bridged@V +bridgehead@N +bridgeheads@p +bridgeport@N +bridges@N +bridget@N +bridgetown@N +bridgework@N +bridging@N +bridgman@N +bridle@Nti +bridled@V +bridles@pti +bridleway@? +bridleways@p +bridling@V +brie@N +brief@ANt +briefcase@N +briefcases@p +briefed@At +briefer@? +briefest@? +briefing@N +briefings@p +briefly@v +briefness@N +briefs@p +brier@N +briers@p +brig@N +brigade@Nt +brigades@pt +brigadier@N +brigadiers@p +brigadoon@? +brigand@N +brigandage@N +brigands@p +brigantine@N +brigantines@p +briggs@N +bright@ANv +brighten@V +brightened@V +brightening@V +brightens@V +brighter@? +brightest@? +brightly@v +brightness@N +brighton@N +brights@p +brigid@N +brigs@p +brill@N +brilliance@N +brilliancy@N +brilliant@AN +brilliantine@N +brilliantly@v +brilliants@p +brillo@? +brim@NV +brimful@A +brimfull@? +brimmed@V +brimming@V +brims@pV +brimstone@N +brindled@A +brine@N +bring@N +bringing@t +brings@p +brinier@A +briniest@A +brink@N +brinkmanship@N +brinks@p +brinksmanship@? +briny@AN +brioche@N +brioches@p +briquet@Nt +briquets@pt +briquette@Nt +briquettes@pt +brisbane@N +brisk@A +brisked@A +brisker@? +briskest@? +brisket@N +briskets@p +brisking@A +briskly@v +briskness@N +brisks@p +bristle@NVit +bristled@V +bristles@pVit +bristlier@? +bristliest@? +bristling@V +bristly@A +bristol@N +brit@N +britain@N +britannia@N +britannic@A +britches@p +british@AN +britisher@N +briton@N +britons@p +brits@p +brittany@N +britten@N +brittle@AN +brittleness@N +brittler@? +brittlest@? +brno@N +bro@N +broach@tiN +broached@tiA +broaches@? +broaching@tiA +broad@ANv +broadcast@VitNAv +broadcasted@V +broadcaster@N +broadcasters@p +broadcasting@V +broadcasts@Vitpv +broadcloth@N +broaden@V +broadened@V +broadening@V +broadens@V +broader@? +broadest@? +broadloom@N +broadly@v +broadminded@? +broadness@? +broads@p +broadsheet@N +broadsheets@p +broadside@Nv +broadsided@V +broadsides@pv +broadsiding@V +broadsword@N +broadswords@p +broadway@NA +broadways@p +brobdingnagian@AN +brocade@Nt +brocaded@V +brocades@pt +brocading@V +broccoli@N +brochure@N +brochures@p +brogan@N +brogans@p +brogue@N +brogues@p +broil@ViN +broiled@ViA +broiler@N +broilers@p +broiling@ViA +broils@Vip +broke@VA +broken@VA +brokenhearted@A +broker@N +brokerage@N +brokerages@p +brokered@A +brokering@A +brokers@p +brollies@p +brolly@N +bromide@N +bromides@p +bromine@N +bronchi@N +bronchial@A +bronchitic@A +bronchitis@N +broncho@N +bronchos@p +bronchus@N +bronco@N +broncos@p +bronte@? +brontosaur@N +brontosauri@? +brontosaurs@p +brontosaurus@N +brontosauruses@? +bronx@N +bronze@NAVt +bronzed@NV +bronzes@pVt +bronzing@NV +brooch@N +brooches@? +brood@NV +brooded@AV +brooder@N +brooders@p +broodily@? +broodiness@N +brooding@AV +broods@pV +broody@A +brook@N +brooke@N +brooked@A +brooking@N +brooklyn@N +brooks@N +broom@Nt +brooms@pt +broomstick@N +broomsticks@p +bros@N +broth@N +brothel@N +brothels@p +brother@N! +brotherhood@N +brotherhoods@p +brotherliness@N +brotherly@Av +brothers@N +broths@p +brougham@N +broughams@p +brought@V +brouhaha@N +brouhahas@p +brow@N +browbeat@V +browbeaten@t +browbeating@t +browbeats@V +brown@N +browne@N +browned@A +browner@? +brownest@? +brownfield@? +brownie@N +brownies@p +browning@N +brownish@A +brownout@N +brownouts@p +browns@p +brownshirt@? +brownstone@N +brownstones@p +brownsville@N +brows@p +browse@VN +browsed@V +browser@N +browsers@p +browses@Vp +browsing@V +brr@? +brubeck@N +bruce@N +bruckner@N +brueghel@N +bruin@N +bruins@p +bruise@VN +bruised@V +bruiser@N +bruisers@p +bruises@Vp +bruising@V +bruit@VN +bruited@VA +bruiting@VA +bruits@Vp +brunch@N +brunched@A +brunches@? +brunching@A +brunei@N +brunelleschi@N +brunet@AN +brunets@p +brunette@NA +brunettes@p +bruno@N +brunswick@N +brunt@N +brush@N +brushed@A +brushes@? +brushing@A +brushstroke@? +brushstrokes@? +brushwood@N +brushwork@N +brusk@? +brusker@? +bruskest@? +bruskly@? +bruskness@? +brusque@A +brusquely@v +brusqueness@N +brusquer@? +brusquest@? +brussels@N +brutal@A +brutalise@ti +brutalised@ti +brutalises@ti +brutalising@ti +brutalities@p +brutality@N +brutalize@Vt +brutalized@ti +brutalizes@Vt +brutalizing@ti +brutally@v +brute@NA +brutes@p +brutish@A +brutishly@v +brutishness@N +brutus@N +bryan@N +bryant@N +bs@N +bsd@N +bsds@p +btu@N +btw@? +bub@N +bubble@NVi +bubbled@V +bubblegum@? +bubbles@pVi +bubblier@A +bubbliest@A +bubbling@V +bubbly@AN +buber@N +bubs@p +buccaneer@Ni +buccaneered@Ai +buccaneering@Ai +buccaneers@pi +buchanan@N +bucharest@N +buchenwald@N +buck@N +buckboard@N +buckboards@p +bucked@A +bucket@Nti +bucketed@V +bucketful@N +bucketfuls@p +bucketing@V +buckets@pti +buckeye@N +buckeyes@p +bucking@A +buckingham@N +buckle@N +buckled@A +buckler@N +bucklers@p +buckles@p +buckling@N +buckram@NV +bucks@N +bucksaw@N +bucksaws@p +buckshot@N +buckskin@NA +buckskins@p +buckteeth@p +bucktooth@N +bucktoothed@A +buckwheat@N +bucolic@AN +bucolics@N +bud@N +budapest@N +budded@V +buddha@N +buddhas@p +buddhism@NA +buddhisms@p +buddhist@NA +buddhists@p +buddies@p +budding@N +buddings@p +buddy@N +budge@N +budged@V +budgerigar@N +budgerigars@p +budges@p +budget@N +budgetary@A +budgeted@V +budgeting@V +budgets@p +budgie@N +budgies@p +budging@V +buds@p +buff@N +buffalo@N +buffaloed@V +buffaloes@? +buffaloing@V +buffalos@p +buffed@A +buffer@Nt +buffered@At +buffering@At +buffers@pt +buffet@N +buffeted@V +buffeting@V +buffetings@V +buffets@p +buffing@A +buffoon@N +buffoonery@N +buffoons@p +buffs@p +bug@N +bugaboo@N +bugaboos@p +bugbear@N +bugbears@p +bugged@V +bugger@NVt! +buggered@AVt! +buggering@AVt! +buggers@pVt! +buggery@N +buggier@A +buggies@p +buggiest@A +bugging@V +buggy@NA +bugle@Ni +bugled@V +bugler@N +buglers@p +bugles@pi +bugling@V +bugs@A +build@VitN +builder@N +builders@p +building@N +buildings@p +builds@Vitp +buildup@? +buildups@p +built@V +bujumbura@N +bukhara@N +bukharin@N +bulawayo@N +bulb@N +bulbous@A +bulbs@p +bulfinch@N +bulganin@N +bulgar@N +bulgaria@N +bulgarian@AN +bulgarians@p +bulge@N +bulged@V +bulges@p +bulgier@? +bulgiest@? +bulging@V +bulgy@A +bulimia@N +bulimic@A +bulimics@p +bulk@NV +bulked@AV +bulkhead@N +bulkheads@p +bulkier@A +bulkiest@A +bulkiness@N +bulking@AV +bulks@pV +bulky@A +bull@N +bulldog@N +bulldogged@V +bulldogging@V +bulldogs@p +bulldoze@t +bulldozed@t +bulldozer@N +bulldozers@p +bulldozes@t +bulldozing@t +bulled@A +bullet@N +bulletin@Nt +bulletined@V +bulletining@V +bulletins@pt +bulletproof@At +bulletproofed@At +bulletproofing@At +bulletproofs@pt +bullets@p +bullfight@N +bullfighter@N +bullfighters@p +bullfighting@N +bullfights@p +bullfinch@N +bullfinches@? +bullfrog@N +bullfrogs@p +bullheaded@A +bullhorn@N +bullhorns@p +bullied@NV +bullies@p +bulling@A +bullion@N +bullish@A +bullock@N +bullocks@p +bullpen@N +bullpens@p +bullring@N +bullrings@p +bulls@p +bullshit@NV +bullshits@pV +bullshitted@? +bullshitter@? +bullshitters@p +bullshitting@NV +bullwhip@NV +bullwhips@pV +bully@N +bullying@NV +bulrush@N +bulrushes@? +bulwark@Nt +bulwarks@pt +bum@N +bumbag@? +bumbags@p +bumble@ViN +bumblebee@N +bumblebees@p +bumbled@Vi +bumbler@N +bumblers@p +bumbles@Vip +bumbling@AN +bumf@N +bummed@NV +bummer@N +bummers@p +bummest@? +bumming@NV +bump@VitN +bumped@VitA +bumper@NAti +bumpers@pti +bumph@N +bumpier@A +bumpiest@A +bumping@VitA +bumpkin@N +bumpkins@p +bumps@Vitp +bumptious@A +bumptiousness@N +bumpy@A +bums@p +bun@N +bunch@N +bunche@N +bunched@A +bunches@p +bunching@A +buncombe@N +bundestag@N +bundle@Nti +bundled@V +bundles@pti +bundling@V +bung@NtA +bungalow@N +bungalows@p +bunged@At +bungee@N +bungees@p +bunghole@N +bungholes@p +bunging@At +bungle@tN +bungled@V +bungler@N +bunglers@p +bungles@tp +bungling@V +bungs@pt +bunin@N +bunion@N +bunions@p +bunk@Nit +bunked@Ait +bunker@N +bunkers@p +bunkhouse@N +bunkhouses@p +bunking@Ait +bunks@pit +bunkum@N +bunnies@p +bunny@N +buns@p +bunsen@N +bunt@VN +bunted@A +bunting@N +buntings@p +bunts@Vp +bunyan@N +buoy@Nti +buoyancy@N +buoyant@A +buoyantly@v +buoyed@Ati +buoying@Ati +buoys@pti +bur@N +burbank@N +burberry@N +burble@ViN +burbled@V +burbles@Vip +burbling@V +burden@Nt +burdened@A +burdening@At +burdens@pt +burdensome@A +burdock@N +bureau@N +bureaucracies@p +bureaucracy@N +bureaucrat@N +bureaucratic@A +bureaucratically@v +bureaucrats@p +bureaus@p +bureaux@p +burg@N +burgeon@ViN +burgeoned@ViA +burgeoning@ViA +burgeons@Vip +burger@N +burgers@p +burgess@N +burgh@N +burgher@N +burghers@p +burghs@p +burglar@N +burglaries@p +burglarise@ti +burglarised@ti +burglarises@ti +burglarising@ti +burglarize@t +burglarized@V +burglarizes@t +burglarizing@V +burglars@p +burglary@N +burgle@V +burgled@ti +burgles@V +burgling@ti +burgoyne@N +burgs@p +burgundian@AN +burgundies@p +burgundy@N +burial@N +burials@p +buried@V +buries@V +burke@N +burlap@N +burlesque@NAV +burlesqued@V +burlesques@pV +burlesquing@V +burlier@A +burliest@A +burliness@N +burly@A +burma@N +burmese@AN +burn@N +burned@A +burner@N +burners@p +burnett@N +burning@AN +burnish@VN +burnished@VA +burnishes@? +burnishing@VA +burnoose@N +burnooses@p +burnous@p +burnouses@? +burnout@N +burnouts@p +burns@N +burnside@N +burnt@VA +burp@Nit +burped@Ait +burping@Ait +burps@pit +burr@N +burred@V +burring@V +burrito@? +burritos@p +burro@N +burros@p +burroughs@N +burrow@N +burrowed@A +burrowing@A +burrows@N +burrs@p +burs@p +bursa@N +bursar@N +bursaries@p +bursars@p +bursary@N +bursitis@N +burst@ViN +bursted@ViA +bursting@V +bursts@Vip +burton@N +burundi@N +bury@N +burying@V +bus@NV +busbies@p +busboy@N +busboys@p +busby@N +bused@AV +buses@p +bush@N +bushed@A +bushel@N +busheled@t +busheling@t +bushelled@t +bushelling@t +bushellings@t +bushels@p +bushes@? +bushido@N +bushier@A +bushiest@A +bushiness@N +bushing@N +bushings@p +bushman@N +bushmen@p +bushwhack@Vti +bushwhacked@Vti +bushwhacker@N +bushwhackers@p +bushwhacking@N +bushwhacks@Vti +bushy@AN +busied@A +busier@A +busies@? +busiest@A +busily@v +business@N +businesses@? +businesslike@A +businessman@N +businessmen@p +businesswoman@N +businesswomen@p +busing@AV +busk@Nit +busked@A +busker@N +buskers@p +busking@Ait +busks@pit +busload@N +busloads@p +buss@NV +bussed@AV +busses@Np +bussing@AV +bust@N +busted@A +buster@N +busters@p +bustier@A +bustiers@p +bustiest@A +busting@A +bustle@VN +bustled@A +bustles@Vp +bustling@V +busts@p +busty@A +busy@AV +busybodies@p +busybody@N +busying@A +busyness@N +busywork@N +but@CPvN +butane@N +butch@AN +butcher@N +butchered@A +butcheries@p +butchering@A +butchers@p +butchery@N +butches@? +butler@N +butlers@p +buts@CPvp +butt@N +butte@N +butted@A +butter@Nt +buttercup@N +buttercups@p +buttered@At +butterfat@N +butterfingers@N +butterflied@NV +butterflies@p +butterfly@N +butterflying@NV +butterier@? +butteries@p +butteriest@? +buttering@At +buttermilk@N +butternut@N +butternuts@p +butters@pt +butterscotch@N +buttery@AN +buttes@p +butties@? +butting@N +buttock@N +buttocks@p +button@N +buttoned@A +buttonhole@Nt +buttonholed@V +buttonholes@pt +buttonholing@V +buttoning@A +buttons@N +buttress@Nt +buttressed@At +buttresses@? +buttressing@At +butts@p +butty@N +buxom@A +buxtehude@N +buy@VitN +buyer@N +buyers@N +buying@V +buyout@? +buyouts@p +buys@Vitp +buzz@N +buzzard@N +buzzards@p +buzzed@A +buzzer@N +buzzers@p +buzzes@? +buzzing@A +buzzword@? +buzzwords@p +by@PvN +bye@N +byelaw@N +byelaws@p +byelorussia@N +byes@p +bygone@AN +bygones@p +bylaw@N +bylaws@p +byline@? +bylines@? +byob@? +bypass@NVt +bypassed@AVt +bypasses@? +bypassing@AVt +bypast@? +byplay@? +byproduct@? +byproducts@p +byrd@N +byre@N +byres@p +byron@N +byronic@A +bystander@N +bystanders@p +byte@N +bytes@p +byway@N +byways@p +byword@N +bywords@p +byzantine@AN +byzantines@p +byzantium@N +ca@N +cab@N +cabal@N +cabals@p +cabana@N +cabanas@p +cabaret@N +cabarets@p +cabbage@NV +cabbages@pV +cabbed@V +cabbie@? +cabbies@p +cabbing@V +cabby@N +cabdriver@N +cabdrivers@p +caber@N +cabernet@N +cabers@p +cabin@NV +cabinet@N +cabinetmaker@N +cabinetmakers@p +cabinets@p +cabins@pV +cable@N +cablecast@? +cablecasted@? +cablecasting@? +cablecasts@p +cabled@V +cablegram@N +cablegrams@p +cables@p +cabling@V +caboodle@N +caboose@N +cabooses@p +cabot@N +cabral@N +cabrini@N +cabs@p +cacao@N +cacaos@p +cache@Nt +cached@V +caches@pt +cachet@N +cachets@p +caching@V +cackle@itN +cackled@V +cackles@itp +cackling@V +cacophonies@p +cacophonous@A +cacophony@N +cacti@? +cactus@N +cactuses@p +cad@N +cadaver@N +cadaverous@A +cadavers@p +caddie@NV +caddied@p +caddies@p +caddish@A +caddy@N +caddying@p +cadence@N +cadences@p +cadenza@N +cadenzas@p +cadet@N +cadets@p +cadge@VN +cadged@V +cadger@N +cadgers@p +cadges@Vp +cadging@V +cadillac@N +cadmium@N +cadre@N +cadres@p +cads@p +caducei@? +caduceus@N +caerphilly@N +caesar@N +caesarean@AN +caesareans@p +caesarian@? +caesarians@p +caesars@p +caesium@N +caesura@N +caesurae@? +caesuras@p +cafeteria@N +cafeterias@p +cafetiere@? +cafetieres@? +caff@N +caffeinated@? +caffeine@N +caffs@p +caftan@N +caftans@p +cage@N +caged@V +cages@p +cagey@A +cageyness@? +cagier@A +cagiest@A +cagily@v +caginess@N +caging@V +cagoule@N +cagoules@p +cagy@A +cahoot@N +cahoots@p +caiaphas@N +caiman@N +caimans@p +cain@N +cains@p +cairn@N +cairns@N +cairo@N +caisson@N +caissons@p +cajole@V +cajoled@ti +cajolery@N +cajoles@V +cajoling@ti +cajun@NA +cajuns@p +cake@Nt +caked@V +cakes@pt +cakewalk@Ni +caking@V +cal@N +calabash@N +calabashes@? +calais@N +calamine@N +calamities@p +calamitous@A +calamitously@v +calamity@N +calcified@ti +calcifies@? +calcify@V +calcifying@ti +calcine@ti +calcined@ti +calcines@ti +calcining@ti +calcite@N +calcium@N +calculable@A +calculate@Vti +calculated@A +calculates@Vti +calculating@A +calculation@N +calculations@p +calculator@N +calculators@p +calculi@p +calculus@N +calculuses@? +calcutta@N +calder@N +caldron@N +caldrons@p +caldwell@N +caledonia@N +calendar@Nt +calendared@At +calendaring@At +calendars@pt +calf@N +calfs@p +calfskin@N +calgary@N +calhoun@N +cali@N +caliban@N +caliber@N +calibers@p +calibrate@t +calibrated@t +calibrates@t +calibrating@t +calibration@N +calibrations@p +calibrator@N +calibrators@p +calibre@N +calibres@p +calico@N +calicoes@p +calicos@p +calif@N +california@N +californian@AN +californians@p +califs@p +caligula@N +caliper@N +calipered@A +calipering@A +calipers@p +caliph@N +caliphate@N +caliphates@p +caliphs@p +calisthenic@A +calisthenics@N +calk@VNt +calked@VAt +calking@VAt +calkings@p +calks@Vpt +call@N +callable@A +callaghan@N +callao@N +callas@N +callback@? +called@A +caller@NA +callers@p +calligrapher@N +calligraphers@p +calligraphy@Nv +calling@N +callings@p +calliope@N +calliopes@p +calliper@Nt +callipered@At +callipering@At +callipers@pt +callisthenics@N +callisto@N +callous@AV +calloused@AV +callouses@? +callousing@AV +callously@v +callousness@N +callow@A +callower@? +callowest@? +calls@p +callus@NV +callused@p +calluses@p +callusing@p +calm@ANV +calmed@AV +calmer@? +calmest@? +calming@AV +calmly@v +calmness@N +calms@pV +caloric@AN +calorie@N +calories@p +calorific@A +calumniate@t +calumniated@t +calumniates@t +calumniating@t +calumnies@p +calumny@N +calvary@N +calve@V +calved@V +calvert@N +calves@N +calvin@N +calving@V +calvinism@NA +calvinisms@p +calvinist@NA +calvinistic@A +calvinists@p +calyces@N +calypso@N +calypsos@p +calyx@N +calyxes@? +cam@N +camaraderie@N +camber@NV +cambered@AV +cambering@AV +cambers@pV +cambia@? +cambium@N +cambiums@p +cambodia@N +cambodian@AN +cambodians@p +cambrian@AN +cambric@N +cambridge@N +camcorder@? +camcorders@p +came@VN +camel@N +camellia@N +camellias@p +camelopardalis@N +camelot@N +camels@p +camembert@N +camemberts@p +cameo@N +cameos@p +camera@N +cameraman@N +cameramen@p +cameras@p +camerawoman@? +camerawomen@? +camerawork@? +cameroon@N +cameroons@N +camiknickers@p +camisole@N +camisoles@p +camomile@N +camomiles@p +camouflage@Nt +camouflaged@V +camouflages@pt +camouflaging@V +camp@N +campaign@Ni +campaigned@Ai +campaigner@N +campaigners@p +campaigning@Ai +campaigns@pi +campanile@N +campaniles@p +campanili@p +campanologist@N +campanologists@p +campanology@N +campbell@N +camped@A +camper@N +campers@p +campfire@N +campfires@p +campground@N +campgrounds@p +camphor@N +campier@? +campiest@? +campinas@N +camping@A +campos@N +camps@p +campsite@N +campsites@p +campus@N +campuses@p +campy@A +cams@p +camshaft@N +camshafts@p +camus@N +can@N +canaan@N +canada@N +canadian@AN +canadians@p +canal@NVt +canaletto@N +canalisation@N +canalise@t +canalised@t +canalises@t +canalising@t +canalization@N +canalize@t +canalized@t +canalizes@t +canalizing@t +canals@pVt +canard@N +canards@p +canaries@p +canary@N +canasta@N +canaveral@N +canberra@N +cancan@N +cancans@p +cancel@VN +cancelation@? +canceled@V +canceling@V +cancellation@N +cancellations@p +cancelled@V +cancelling@V +cancels@Vp +cancer@N +cancerous@A +cancers@p +candelabra@p +candelabras@p +candelabrum@N +candelabrums@p +candid@A +candida@N +candidacies@? +candidacy@N +candidate@N +candidates@p +candidature@? +candidatures@? +candidly@v +candidness@N +candied@A +candies@p +candle@Nt +candled@V +candlelight@N +candlelit@? +candles@pt +candlestick@N +candlesticks@p +candlewick@N +candling@V +candor@N +candour@N +candy@N +candyfloss@N +candying@p +cane@Nt +caned@V +canes@pt +canine@AN +canines@p +caning@NV +canister@N +canisters@p +canker@NV +cankered@A +cankering@AV +cankerous@A +cankers@pV +cannabis@N +cannabises@? +canned@A +cannelloni@p +canneries@p +cannery@N +cannes@N +cannibal@N +cannibalise@? +cannibalised@? +cannibalises@? +cannibalising@? +cannibalism@N +cannibalistic@A +cannibalize@t +cannibalized@V +cannibalizes@t +cannibalizing@V +cannibals@p +cannier@A +canniest@A +cannily@? +canniness@N +canning@N +cannon@N +cannonade@NV +cannonaded@V +cannonades@pV +cannonading@V +cannonball@NiA +cannonballs@pi +cannoned@A +cannoning@A +cannons@p +cannot@V +canny@Av +canoe@NV +canoed@V +canoeing@V +canoeist@N +canoeists@p +canoes@pV +canon@N +canonical@A +canonisation@N +canonisations@p +canonise@t +canonised@t +canonises@t +canonising@t +canonization@N +canonizations@p +canonize@t +canonized@t +canonizes@t +canonizing@t +canons@p +canoodle@i +canoodled@ti +canoodles@i +canoodling@ti +canopied@p +canopies@p +canopus@N +canopy@NV +canopying@p +cans@p +cant@N +cantabrigian@AN +cantaloup@? +cantaloupe@N +cantaloupes@p +cantaloups@p +cantankerous@A +cantankerously@v +cantankerousness@N +cantata@N +cantatas@p +canted@A +canteen@N +canteens@p +canter@N +canterbury@N +cantered@A +cantering@A +canters@p +canticle@N +canticles@N +cantilever@Nti +cantilevered@Ati +cantilevering@Ati +cantilevers@pti +canting@A +canto@N +canton@N +cantonese@NA +cantonment@N +cantonments@p +cantons@p +cantor@N +cantors@p +cantos@N +cants@p +canute@N +canvas@N +canvasback@N +canvasbacks@p +canvased@A +canvases@? +canvasing@A +canvass@VN +canvassed@VA +canvasser@N +canvassers@p +canvasses@? +canvassing@VA +canyon@N +canyoning@A +canyons@p +cap@N +capabilities@p +capability@N +capablanca@N +capable@A +capably@v +capacious@A +capaciously@v +capaciousness@N +capacitance@N +capacities@p +capacitor@N +capacitors@p +capacity@N +caparison@Nt +caparisoned@At +caparisoning@At +caparisons@pt +cape@N +caped@ANV +capella@N +caper@Ni +capered@Ai +capering@Ai +capers@p +capes@p +capet@N +capetian@NA +capillaries@p +capillary@AN +capital@NA +capitalisation@? +capitalise@t +capitalised@t +capitalises@t +capitalising@t +capitalism@N +capitalist@NA +capitalistic@A +capitalists@p +capitalization@N +capitalize@V +capitalized@t +capitalizes@V +capitalizing@t +capitals@p +capitation@N +capitations@p +capitol@N +capitoline@N +capitols@p +capitulate@i +capitulated@i +capitulates@i +capitulating@i +capitulation@N +capitulations@p +caplet@? +caplets@p +capon@N +capone@N +capons@p +capote@N +capped@V +capping@NV +cappuccino@N +cappuccinos@p +capra@? +capri@N +caprice@N +caprices@p +capricious@A +capriciously@v +capriciousness@N +capricorn@NA +capricorns@p +caps@N +capsicum@N +capsicums@p +capsize@V +capsized@V +capsizes@V +capsizing@V +capstan@N +capstans@p +capsule@N +capsuled@V +capsules@p +capsuling@V +capt@N +captain@Nt +captaincies@p +captaincy@N +captained@At +captaining@At +captains@pt +caption@NV +captioned@AV +captioning@AV +captions@pV +captious@A +captivate@t +captivated@t +captivates@t +captivating@t +captivation@N +captive@NA +captives@p +captivities@p +captivity@N +captor@N +captors@p +capture@tN +captured@V +captures@tp +capturing@V +capuchin@N +car@N +caracalla@N +caracas@N +caracul@N +carafe@N +carafes@p +caramel@N +caramelise@ti +caramelised@ti +caramelises@ti +caramelising@ti +caramelize@V +caramelized@ti +caramelizes@V +caramelizing@ti +caramels@p +carapace@N +carapaces@p +carat@N +carats@p +caravaggio@N +caravan@NV +caravanning@V +caravans@pV +caraway@N +caraways@p +carbide@N +carbides@p +carbine@N +carbines@p +carbohydrate@N +carbohydrates@p +carbolic@A +carboloy@N +carbon@N +carbonate@NVt +carbonated@V +carbonates@pVt +carbonating@V +carbonation@N +carboniferous@A +carbonise@t +carbonised@t +carbonises@t +carbonising@t +carbonize@Vti +carbonized@t +carbonizes@Vti +carbonizing@t +carbons@p +carborundum@N +carboy@N +carboys@p +carbuncle@N +carbuncles@p +carburetor@N +carburetors@p +carcass@N +carcasses@? +carcinogen@N +carcinogenic@A +carcinogenics@p +carcinogens@p +carcinoma@N +carcinomas@p +carcinomata@p +card@N +cardamom@N +cardamoms@p +cardamon@? +cardamons@p +cardboard@NA +carded@A +cardholder@N +cardholders@p +cardiac@AN +cardiae@? +cardie@N +cardies@p +cardiff@N +cardigan@N +cardigans@p +cardinal@N +cardinals@p +carding@N +cardiogram@N +cardiograms@p +cardiologist@N +cardiologists@p +cardiology@N +cardiopulmonary@? +cardiovascular@A +cards@N +cardsharp@N +cardsharps@p +care@N +cared@V +careen@Vti +careened@Vti +careening@Vti +careens@Vti +career@Ni +careered@Ai +careering@Ai +careerism@N +careerist@N +careerists@p +careers@pi +carefree@A +careful@A +carefuller@? +carefullest@? +carefully@v +carefulness@N +caregiver@? +caregivers@p +careless@A +carelessly@v +carelessness@N +carer@N +carers@p +cares@p +caress@Nt +caressed@At +caresses@p +caressing@At +caret@N +caretaker@N +caretakers@p +carets@p +careworn@A +carey@N +carfare@N +cargo@N +cargoes@p +cargos@p +carhop@N +carhops@p +carib@N +caribbean@AN +caribbeans@p +caribou@N +caribous@p +caricature@Nt +caricatured@V +caricatures@pt +caricaturing@V +caricaturist@N +caricaturists@p +caries@N +carillon@NV +carillons@pV +carina@N +caring@V +carjack@? +carjacked@? +carjacker@? +carjackers@p +carjacking@? +carjackings@p +carjacks@p +carload@N +carloads@p +carlos@N +carlsbad@N +carlton@N +carlyle@N +carmine@N +carmines@p +carnage@N +carnal@A +carnally@v +carnap@N +carnation@N +carnations@p +carnegie@N +carnelian@N +carnelians@p +carnival@N +carnivals@p +carnivore@N +carnivores@p +carnivorous@A +carnot@N +carob@N +carobs@p +carol@N +caroled@V +caroler@N +carolers@p +carolina@N +caroline@A +caroling@V +carolingian@AN +carolinian@AN +carolled@V +caroller@N +carollers@p +carolling@V +carols@p +carom@N +caromed@A +caroming@A +caroms@p +carotid@NA +carotids@p +carousal@N +carousals@p +carouse@iN +caroused@V +carousel@N +carousels@p +carouser@N +carousers@p +carouses@ip +carousing@V +carp@Ni +carpal@N +carpals@p +carped@Ai +carpel@N +carpels@p +carpenter@N +carpentered@A +carpentering@N +carpenters@p +carpentry@N +carpet@N +carpetbag@N +carpetbagged@V +carpetbagger@N +carpetbaggers@p +carpetbagging@V +carpetbags@p +carpeted@A +carpeting@N +carpets@p +carpi@N +carping@AN +carpool@? +carpooled@? +carpooling@? +carpools@p +carport@N +carports@p +carps@pi +carpus@N +carrel@N +carrels@p +carriage@N +carriages@p +carriageway@N +carriageways@p +carried@V +carrier@N +carriers@p +carries@V +carrion@N +carroll@N +carrot@N +carrots@p +carroty@A +carrousel@N +carrousels@p +carry@N +carryall@N +carryalls@p +carrycot@N +carrycots@p +carrying@V +carryout@? +cars@p +carsick@A +carsickness@N +carson@N +cart@N +carted@A +cartel@N +cartels@p +carter@N +carters@p +cartesian@AN +carthage@N +carthaginian@AN +carthorse@N +carthorses@p +cartier@N +cartilage@N +cartilages@p +cartilaginous@A +carting@A +cartload@N +cartloads@p +cartographer@N +cartographers@p +cartography@N +carton@N +cartons@p +cartoon@N +cartooned@A +cartooning@A +cartoonist@N +cartoonists@p +cartoons@p +cartridge@N +cartridges@p +carts@p +cartwheel@N +cartwheeled@A +cartwheeling@A +cartwheels@p +cartwright@N +caruso@N +carve@t +carved@V +carver@N +carveries@? +carvers@p +carvery@? +carves@t +carving@N +carvings@p +cary@N +caryatid@N +caryatides@p +caryatids@p +casablanca@N +casals@N +casanova@N +casanovas@p +cascade@Ni +cascaded@V +cascades@pi +cascading@V +case@N +casebook@N +casebooks@p +cased@V +casein@N +caseload@N +caseloads@p +casement@N +casements@p +cases@p +casework@N +caseworker@N +caseworkers@p +cash@N +cashed@A +cashes@? +cashew@N +cashews@p +cashier@Nt +cashiered@At +cashiering@At +cashiers@pt +cashing@A +cashless@? +cashmere@N +casing@N +casings@p +casino@N +casinos@p +cask@N +casket@N +caskets@p +casks@p +caspar@N +caspian@AN +cassandra@N +cassatt@N +cassava@N +cassavas@p +casserole@NV +casseroled@V +casseroles@pV +casseroling@V +cassette@N +cassettes@p +cassia@N +cassias@p +cassino@N +cassinos@p +cassiopeia@N +cassock@N +cassocks@p +cast@ViN +castanet@N +castanets@p +castaway@NAV +castaways@pV +caste@N +castellated@A +caster@N +casters@p +castes@p +castigate@t +castigated@t +castigates@t +castigating@t +castigation@N +castigator@N +castigators@p +casting@N +castings@p +castle@N +castled@A +castlereagh@N +castles@p +castling@V +castoff@AN +castoffs@p +castor@N +castors@p +castrate@t +castrated@t +castrates@t +castrating@t +castration@N +castrations@p +castries@N +castro@N +casts@Vip +casual@AN +casually@v +casualness@N +casuals@p +casualties@p +casualty@N +casuist@N +casuistry@N +casuists@p +cat@N +cataclysm@N +cataclysmic@A +cataclysms@p +catacomb@N +catacombs@p +catafalque@N +catafalques@p +catalan@NA +catalepsy@N +cataleptic@AN +cataleptics@p +catalog@Nti +cataloged@Ati +cataloger@N +catalogers@p +cataloging@Ati +catalogs@pti +catalogue@NV +catalogued@V +cataloguer@N +cataloguers@p +catalogues@pV +cataloguing@V +catalonia@N +catalpa@N +catalpas@p +catalyse@t +catalysed@t +catalyses@p +catalysing@t +catalysis@N +catalyst@N +catalysts@p +catalytic@AN +catalyze@t +catalyzed@t +catalyzes@t +catalyzing@t +catamaran@N +catamarans@p +catapult@Nt +catapulted@At +catapulting@At +catapults@pt +cataract@N +cataracts@p +catarrh@N +catastrophe@N +catastrophes@p +catastrophic@A +catastrophically@v +catatonic@AN +catatonics@p +catawba@N +catbird@N +catbirds@p +catboat@N +catboats@p +catcall@NV +catcalled@AV +catcalling@AV +catcalls@pV +catch@VtiN +catchall@N +catchalls@p +catcher@N +catchers@p +catches@? +catchier@A +catchiest@A +catching@A +catchings@p +catchment@N +catchments@p +catchphrase@? +catchphrases@? +catchup@N +catchups@p +catchword@N +catchwords@p +catchy@A +catechise@t +catechised@t +catechises@t +catechising@t +catechism@N +catechisms@p +catechize@t +catechized@t +catechizes@t +catechizing@t +categorical@A +categorically@v +categories@p +categorisation@N +categorisations@p +categorise@t +categorised@t +categorises@t +categorising@t +categorization@N +categorizations@p +categorize@t +categorized@t +categorizes@t +categorizing@t +category@N +cater@i +catered@i +caterer@N +caterers@p +catering@N +caterings@p +caterpillar@N +caterpillars@p +caters@i +caterwaul@iN +caterwauled@iA +caterwauling@iA +caterwauls@ip +catfish@N +catfishes@? +catgut@N +catharses@? +catharsis@N +cathartic@AN +cathartics@p +cathay@N +cathedral@N +cathedrals@p +cather@N +catherine@N +catheter@N +catheters@p +cathode@N +cathodes@p +catholic@A +catholicism@N +catholicisms@p +catholicity@N +catholics@p +catiline@N +cation@N +cations@p +catkin@N +catkins@p +catnap@NV +catnapped@i +catnapping@i +catnaps@pV +catnip@N +cato@N +cats@p +catskills@p +catsuit@? +catsuits@p +catsup@N +catsups@p +catt@N +cattail@N +cattails@p +catted@V +catteries@p +cattery@N +cattier@N +cattiest@? +cattily@v +cattiness@N +catting@V +cattle@N +cattleman@N +cattlemen@p +catty@AN +catullus@N +catv@N +catwalk@N +catwalks@p +caucasian@AN +caucasians@p +caucasoid@AN +caucasus@N +cauchy@N +caucus@Ni +caucused@Ai +caucuses@p +caucusing@Ai +caucussed@? +caucussing@? +caudal@A +caught@V +cauldron@N +cauldrons@p +cauliflower@N +cauliflowers@p +caulk@V +caulked@V +caulking@V +caulkings@p +caulks@V +causal@A +causalities@p +causality@N +causally@v +causation@N +causative@AN +cause@Nt +caused@V +causeless@A +causes@pt +causeway@N +causeways@p +causing@V +caustic@AN +caustically@v +caustics@p +cauterise@t +cauterised@t +cauterises@t +cauterising@t +cauterize@t +cauterized@t +cauterizes@t +cauterizing@t +caution@Nti +cautionary@A +cautioned@Ati +cautioning@Ati +cautions@pti +cautious@A +cautiously@v +cautiousness@N +cavalcade@N +cavalcades@p +cavalier@AN +cavaliers@p +cavalries@p +cavalry@N +cavalryman@N +cavalrymen@p +cave@N +caveat@N +caveats@p +caved@V +caveman@N +cavemen@? +cavendish@N +caver@N +cavern@Nt +cavernous@A +caverns@pt +cavers@p +caves@N +caviar@N +caviare@? +cavil@N +caviled@V +caviling@V +cavilings@V +cavilled@V +cavilling@A +cavillings@p +cavils@p +caving@N +cavities@p +cavity@N +cavort@i +cavorted@i +cavorting@i +cavorts@i +cavour@N +caw@Ni +cawed@Ai +cawing@Ai +caws@pi +caxton@N +cayenne@N +cayman@N +caymans@p +cayuga@N +cb@N +cbs@p +cc@N +cd@N +cease@VN +ceased@V +ceasefire@? +ceasefires@? +ceaseless@A +ceaselessly@v +ceases@Vp +ceasing@V +cecil@N +cecilia@N +cedar@N +cedars@p +cedarwood@? +cede@Vt +ceded@t +cedes@Vt +cedilla@N +cedillas@p +ceding@t +ceilidh@N +ceilidhs@p +ceiling@N +ceilings@p +celeb@N +celebes@N +celebrant@N +celebrants@p +celebrate@Vt +celebrated@A +celebrates@Vt +celebrating@V +celebration@N +celebrations@p +celebratory@A +celebrities@? +celebrity@N +celebs@p +celeriac@N +celerity@N +celery@N +celesta@N +celestas@p +celestial@A +celibacy@N +celibate@NA +celibates@p +cell@N +cellar@Nt +cellars@pt +celli@? +cellini@N +cellist@N +cellists@p +cellmate@? +cellmates@? +cello@N +cellophane@N +cellos@p +cellphone@? +cellphones@? +cells@p +cellular@A +cellulars@p +cellulite@? +celluloid@N +cellulose@N +celsius@A +celt@N +celtic@NA +celtics@p +celts@p +cement@Nt +cemented@At +cementing@At +cements@pt +cemeteries@p +cemetery@N +cenotaph@N +cenotaphs@p +cenozoic@AN +censer@N +censers@p +censor@Nt +censored@At +censoring@At +censorious@A +censoriously@v +censors@pt +censorship@N +censure@NV +censured@V +censures@pV +censuring@V +census@N +censused@A +censuses@p +censusing@A +cent@N +centaur@N +centaurs@p +centaurus@N +centenarian@NA +centenarians@p +centenaries@p +centenary@AN +centennial@AN +centennials@p +center@N +centered@A +centerfold@? +centerfolds@p +centering@N +centerpiece@N +centerpieces@p +centers@p +centigrade@AN +centigram@N +centigramme@? +centigrammes@? +centigrams@p +centiliter@N +centiliters@p +centilitre@N +centilitres@p +centime@N +centimes@p +centimeter@N +centimeters@p +centimetre@N +centimetres@p +centipede@N +centipedes@p +central@A +centralisation@N +centralise@t +centralised@t +centralises@t +centralising@t +centralism@NA +centralist@NA +centrality@N +centralization@N +centralize@V +centralized@V +centralizes@V +centralizing@V +centrally@v +centrals@p +centre@N +centred@V +centrefold@N +centrefolds@p +centrepiece@N +centrepieces@p +centres@p +centrifugal@AN +centrifuge@Nt +centrifuged@V +centrifuges@pt +centrifuging@V +centring@N +centripetal@A +centrist@N +centrists@p +cents@p +centuries@p +centurion@N +centurions@p +century@N +ceo@? +cephalic@A +cepheid@A +cepheus@N +ceramic@NA +ceramics@N +cerberus@N +cereal@N +cereals@p +cerebella@? +cerebellum@N +cerebellums@p +cerebra@p +cerebral@AN +cerebration@N +cerebrum@N +cerebrums@p +ceremonial@AN +ceremonially@v +ceremonials@p +ceremonies@p +ceremonious@A +ceremoniously@v +ceremony@N +cerenkov@N +ceres@N +cerise@N +cert@N +certain@vD +certainly@v +certainties@p +certainty@N +certifiable@A +certificate@NVt +certificated@V +certificates@pVt +certificating@V +certification@N +certifications@p +certified@A +certifies@? +certify@Vt +certifying@V +certitude@N +certitudes@p +certs@p +cerulean@N +cervantes@N +cervical@A +cervices@N +cervix@N +cervixes@? +cesarean@A +cesareans@p +cesarian@? +cesarians@p +cesium@N +cessation@N +cessations@p +cession@N +cessions@p +cesspit@N +cesspits@p +cesspool@N +cesspools@p +cetacean@AN +cetaceans@p +cetus@N +ceylon@N +cezanne@? +cf@N +cfc@? +ch@N +chablis@N +chad@N +chads@p +chadwick@N +chafe@VtiN +chafed@V +chafes@Vtip +chaff@NV +chaffed@AV +chaffinch@N +chaffinches@? +chaffing@AV +chaffs@pV +chafing@V +chagall@N +chagrin@NV +chagrined@V +chagrining@V +chagrinned@V +chagrinning@V +chagrins@pV +chain@N +chained@A +chaining@A +chains@p +chainsaw@? +chainsawed@? +chainsawing@? +chainsaws@p +chair@Nt +chaired@At +chairing@At +chairlift@N +chairlifts@p +chairman@N +chairmanship@N +chairmanships@p +chairmen@? +chairperson@? +chairpersons@p +chairs@pt +chairwoman@N +chairwomen@p +chaise@N +chaises@p +chaldean@NA +chalet@N +chalets@p +chalice@N +chalices@p +chalk@NVti +chalkboard@N +chalkboards@p +chalked@AVti +chalkier@A +chalkiest@A +chalkiness@? +chalking@AVti +chalks@pVti +chalky@A +challenge@ViN +challenged@V +challenger@N +challengers@p +challenges@Vip +challenging@A +chamber@Nt +chamberlain@N +chamberlains@p +chambermaid@N +chambermaids@p +chambers@N +chambray@N +chameleon@N +chameleons@p +chammies@p +chammy@N +chamois@Nt +chamoix@? +chamomile@N +chamomiles@p +champ@N +champagne@N +champagnes@p +champed@A +champers@N +champing@A +champion@NAvt +championed@Avt +championing@Avt +champions@pvt +championship@N +championships@p +champlain@N +champollion@N +champs@p +chance@N +chanced@NV +chancel@N +chancelleries@p +chancellery@N +chancellor@N +chancellors@p +chancellorsville@N +chancels@p +chanceries@p +chancery@N +chances@p +chancier@A +chanciest@A +chancing@NV +chancy@A +chandelier@N +chandeliers@p +chandigarh@N +chandler@N +chandlers@p +chandragupta@N +chanel@N +chang@N +changchun@N +change@VtiN +changeability@N +changeable@A +changed@V +changeless@A +changeling@N +changelings@p +changeover@NV +changeovers@pV +changes@Vtip +changing@V +changsha@N +channel@N +channeled@V +channeling@N +channelled@V +channelling@V +channels@p +chant@NV +chanted@AV +chanter@N +chanters@p +chantey@N +chanteys@p +chanticleer@N +chanticleers@p +chanties@p +chantilly@NA +chanting@AV +chants@pV +chanty@N +chanukah@N +chanukahs@p +chaos@N +chaotic@A +chaotically@v +chap@N +chaparral@N +chaparrals@p +chapati@p +chapatis@p +chapatti@N +chapattis@p +chapel@N +chapels@p +chaperon@NV +chaperone@Nt +chaperoned@t +chaperones@pt +chaperoning@t +chaperons@pV +chaplain@N +chaplaincies@? +chaplaincy@N +chaplains@p +chaplet@N +chaplets@p +chaplin@N +chapman@N +chapped@V +chappies@p +chapping@V +chappy@N +chaps@p +chapt@? +chapter@Nt +chapters@pt +char@N +charabanc@N +charabancs@p +character@Nt +characterful@A +characterisation@N +characterisations@p +characterise@t +characterised@t +characterises@t +characterising@t +characteristic@NA +characteristically@v +characteristics@p +characterization@N +characterizations@p +characterize@t +characterized@t +characterizes@t +characterizing@t +characterless@A +characters@pt +charade@N +charades@N +charbroil@? +charbroiled@? +charbroiling@? +charbroils@p +charcoal@Nt +charcoals@pt +chard@N +chardonnay@? +charge@VtiN +chargeable@A +charged@AV +charger@N +chargers@p +charges@Vtip +charging@V +charier@A +chariest@A +charily@v +chariot@N +charioteer@N +charioteers@p +chariots@p +charisma@N +charismatic@A +charismatics@p +charitable@A +charitably@v +charities@p +charity@N +charladies@p +charlady@N +charlatan@N +charlatans@p +charlemagne@N +charles@N +charleston@N +charlestons@p +charley@N +charlie@N +charlies@p +charlotte@N +charlottetown@N +charm@NVt +charmed@AVt +charmer@N +charmers@p +charming@A +charmingly@v +charmless@A +charms@pVt +charolais@p +charon@N +charred@V +charring@V +chars@p +chart@Nt +charted@At +charter@Nt +chartered@At +chartering@At +charters@N +charting@At +chartism@NA +chartres@N +chartreuse@N +charts@pt +charwoman@N +charwomen@p +chary@A +charybdis@N +chase@N +chased@Vt +chaser@N +chasers@p +chases@p +chasing@NVt +chasm@N +chasms@p +chassis@N +chaste@A +chastely@v +chasten@t +chastened@t +chastening@t +chastens@t +chaster@A +chastest@A +chastise@t +chastised@t +chastisement@N +chastisements@p +chastises@t +chastising@t +chastity@N +chasuble@N +chasubles@p +chat@NV +chateaubriand@N +chateaus@p +chatline@? +chatlines@? +chats@pV +chattanooga@N +chatted@V +chattel@N +chattels@p +chatter@ViN +chatterbox@N +chatterboxes@? +chattered@ViA +chatterer@N +chatterers@p +chattering@ViA +chatters@Vip +chatterton@N +chattier@A +chattiest@A +chattily@v +chattiness@N +chatting@V +chatty@A +chaucer@N +chauffeur@NV +chauffeured@AV +chauffeuring@AV +chauffeurs@pV +chautauqua@N +chauvinism@N +chauvinist@N +chauvinistic@A +chauvinistically@v +chauvinists@p +cheap@ANv +cheapen@V +cheapened@V +cheapening@V +cheapens@V +cheaper@? +cheapest@? +cheaply@v +cheapness@N +cheapo@? +cheapskate@N +cheapskates@p +cheat@VitN +cheated@VitA +cheater@N +cheaters@p +cheating@VitA +cheats@Vitp +chechen@N +check@ViN!t +checkbook@N +checkbooks@p +checked@A +checker@NV +checkerboard@N +checkerboards@p +checkered@A +checkering@AV +checkers@N +checking@ViA!t +checklist@? +checklists@p +checkmate@Nt! +checkmated@V +checkmates@pt! +checkmating@V +checkout@? +checkouts@p +checkpoint@N +checkpoints@p +checkroom@N +checkrooms@p +checks@Vip!t +checkup@N +checkups@p +cheddar@N +cheek@Nt +cheekbone@N +cheekbones@p +cheeked@At +cheekier@A +cheekiest@A +cheekily@v +cheekiness@N +cheeking@At +cheeks@pt +cheeky@A +cheep@Ni +cheeped@Ai +cheeping@Ai +cheeps@pi +cheer@VN +cheered@VA +cheerful@A +cheerfuller@? +cheerfullest@? +cheerfully@v +cheerfulness@N +cheerier@A +cheeriest@A +cheerily@v +cheeriness@N +cheering@VA +cheerio@! +cheerleader@N +cheerleaders@p +cheerless@A +cheerlessly@v +cheerlessness@N +cheers@! +cheery@A +cheese@NVt +cheeseboard@N +cheeseboards@p +cheeseburger@N +cheeseburgers@p +cheesecake@N +cheesecakes@p +cheesecloth@N +cheesed@AVt +cheeseparing@AN +cheeses@pVt +cheesier@? +cheesiest@? +cheesing@V +cheesy@A +cheetah@N +cheetahs@p +cheever@? +chef@N +chefs@p +chekhov@N +chelsea@N +chelyabinsk@N +chem@N +chemical@NA +chemically@v +chemicals@p +chemise@N +chemises@p +chemist@N +chemistry@N +chemists@p +chemotherapy@N +chengdu@? +chenille@N +cheops@N +cheque@N +chequebook@N +chequebooks@p +chequed@A +chequer@Nt +chequerboard@N +chequerboards@p +chequered@A +chequering@At +chequers@N +cheques@p +chequing@A +cherish@N +cherished@A +cherishes@? +cherishing@A +cherokee@N +cherokees@p +cheroot@N +cheroots@p +cherries@p +cherry@N +cherub@N +cherubic@A +cherubim@? +cherubims@p +cherubs@p +chervil@N +chesapeake@N +cheshire@N +chess@N +chessboard@N +chessboards@p +chessman@N +chessmen@p +chest@N +chester@N +chesterfield@N +chesterton@N +chestnut@N +chestnuts@p +chests@p +chesty@A +chevalier@N +cheviot@N +chevron@N +chevrons@p +chew@N +chewed@A +chewer@N +chewers@p +chewier@A +chewiest@A +chewing@A +chews@p +chewy@A +cheyenne@N +cheyennes@p +chi@N +chianti@N +chiantis@p +chiaroscuro@N +chiba@N +chibcha@N +chic@AN +chicago@N +chicagoan@N +chicana@? +chicane@Nti +chicaneries@p +chicanery@N +chicanes@pti +chicano@N +chicer@? +chicest@? +chichi@AN +chichis@p +chick@N +chickadee@N +chickadees@p +chickasaw@N +chicken@NA +chickened@A +chickenfeed@? +chickening@A +chickenpox@N +chickens@p +chickenshit@NA +chickenshits@p +chickpea@N +chickpeas@p +chicks@p +chickweed@N +chicle@N +chicories@p +chicory@N +chid@? +chidden@? +chide@V +chided@V +chides@V +chiding@V +chief@NAv +chiefer@? +chiefest@? +chiefly@vA +chiefs@pv +chieftain@N +chieftains@p +chiffon@NA +chigger@N +chiggers@p +chignon@N +chignons@p +chihuahua@N +chihuahuas@p +chilblain@N +chilblains@p +child@N +childbearing@NA +childbirth@N +childbirths@p +childcare@? +childhood@N +childhoods@p +childish@A +childishly@v +childishness@N +childless@A +childlessness@N +childlike@A +childminder@N +childminders@p +childminding@? +childproof@? +childproofed@? +childproofing@? +childproofs@p +children@N +chile@N +chilean@AN +chileans@p +chiles@N +chili@N +chilies@p +chilis@p +chill@N +chilled@A +chiller@N +chillers@p +chillest@? +chilli@N +chillier@A +chillies@p +chilliest@A +chilliness@N +chilling@A +chillingly@v +chillings@p +chills@p +chilly@A +chimaera@N +chimaeras@p +chimborazo@N +chime@NVti +chimed@V +chimera@N +chimeras@p +chimerical@A +chimes@pVti +chiming@V +chimney@N +chimneys@p +chimp@N +chimpanzee@N +chimpanzees@p +chimps@p +chin@ANV +china@N +chinatown@N +chinchilla@N +chinchillas@p +chinese@AN +chink@NA +chinked@A +chinking@A +chinks@p +chinless@A +chinned@V +chinning@V +chino@N +chinook@N +chinooks@p +chinos@p +chins@pV +chinstrap@? +chinstraps@p +chintz@N +chintzier@A +chintziest@A +chintzy@A +chinwag@N +chinwags@p +chip@N +chipboard@N +chipewyan@N +chipmunk@N +chipmunks@p +chipolata@N +chipolatas@p +chipped@V +chippendale@N +chipper@A +chippers@p +chippewa@N +chippie@N +chippies@p +chipping@N +chippings@p +chippy@NA +chips@p +chirico@N +chiropodist@N +chiropodists@p +chiropody@N +chiropractic@N +chiropractics@p +chiropractor@N +chiropractors@p +chirp@iN +chirped@iA +chirpier@A +chirpiest@A +chirpily@v +chirpiness@N +chirping@iA +chirps@ip +chirpy@A +chirrup@iN +chirruped@V +chirruping@V +chirrupped@? +chirrupping@? +chirrups@ip +chisel@NV +chiseled@V +chiseler@N +chiselers@p +chiseling@V +chiselled@A +chiseller@? +chisellers@p +chiselling@V +chisels@pV +chisinau@? +chit@N +chitchat@NV +chitchats@pV +chitchatted@V +chitchatting@V +chitin@N +chitlings@p +chitlins@p +chits@p +chittagong@N +chitterlings@p +chivalrous@A +chivalrously@v +chivalry@N +chive@N +chives@p +chivied@ti +chivies@? +chivvied@ti +chivvies@? +chivvy@ti +chivvying@ti +chivy@VtiN +chivying@ti +chloe@N +chloride@N +chlorides@p +chlorinate@t +chlorinated@t +chlorinates@t +chlorinating@t +chlorination@N +chlorine@N +chlorofluorocarbon@? +chlorofluorocarbons@p +chloroform@N +chloroformed@A +chloroforming@A +chloroforms@p +chlorophyll@N +choc@? +chocaholic@? +chocaholics@p +chock@Ntv +chocked@Atv +chocking@Atv +chocks@ptv +chocoholic@? +chocoholics@p +chocolate@N +chocolates@p +chocs@p +choctaw@N +choice@NA +choicer@A +choices@p +choicest@A +choir@N +choirboy@N +choirboys@p +choirmaster@N +choirmasters@p +choirs@p +choke@tiN +choked@V +choker@N +chokers@p +chokes@N +choking@AV +choler@N +cholera@N +choleric@A +cholesterol@N +chomp@VN +chomped@VA +chomper@? +chompers@p +chomping@VA +chomps@Vp +chomsky@NA +chongqing@? +choose@Vti +chooses@Vti +choosey@A +choosier@A +choosiest@A +choosing@Vti +choosy@A +chop@VtiN +chopin@N +chopped@V +chopper@N +choppered@A +choppering@A +choppers@p +choppier@A +choppiest@A +choppily@v +choppiness@N +chopping@AV +choppy@A +chops@p +chopstick@N +chopsticks@N +choral@AN +chorale@N +chorales@p +chorals@p +chord@Nt +chords@pt +chore@N +choreograph@t +choreographed@t +choreographer@N +choreographers@p +choreographic@A +choreographing@t +choreographs@t +choreography@N +chores@p +chorister@N +choristers@p +chortle@iN +chortled@V +chortles@ip +chortling@V +chorus@NV +chorused@p +choruses@p +chorusing@p +chorussed@? +chorussing@? +chose@VN +chosen@N +chou@N +chow@N +chowder@N +chowders@p +chowed@A +chowing@A +chows@p +christ@N! +christchurch@N +christen@N +christendom@N +christendoms@p +christened@A +christening@N +christenings@p +christens@p +christian@NAv +christianities@p +christianity@N +christians@pv +christie@N +christina@N +christmas@N +christmases@? +christopher@N +christs@p! +christy@N +chromatic@A +chrome@NV +chromed@V +chromes@pV +chroming@V +chromium@N +chromosomal@A +chromosome@N +chromosomes@p +chronic@A +chronically@v +chronicle@Nt +chronicled@V +chronicler@N +chroniclers@p +chronicles@N +chronicling@V +chronograph@N +chronographs@p +chronological@A +chronologically@v +chronologies@p +chronology@N +chronometer@N +chronometers@p +chrysalides@? +chrysalis@N +chrysalises@? +chrysanthemum@N +chrysanthemums@p +chrysostom@N +chubbier@A +chubbiest@A +chubbiness@N +chubby@A +chuck@N +chucked@A +chuckhole@N +chuckholes@p +chucking@A +chuckle@iN +chuckled@V +chuckles@ip +chuckling@V +chucks@p +chuffed@Ait +chug@NV +chugged@V +chugging@V +chugs@pV +chukchi@N +chum@NV +chumash@N +chummed@V +chummier@A +chummiest@A +chummily@v +chumminess@N +chumming@V +chummy@A +chump@NV +chumps@pV +chums@pV +chunder@iN +chundered@iA +chundering@iA +chunders@ip +chungking@N +chunk@N +chunkier@A +chunkiest@A +chunkiness@N +chunks@p +chunky@A +chunter@i +chuntered@i +chuntering@i +chunters@i +church@N +churches@? +churchgoer@N +churchgoers@p +churchgoing@N +churchill@N +churchman@N +churchmen@p +churchwarden@N +churchwardens@p +churchwoman@N +churchwomen@p +churchyard@N +churchyards@p +churl@N +churlish@A +churlishly@v +churlishness@N +churls@p +churn@NV +churned@AV +churning@N +churns@pV +chute@N +chutes@p +chutney@N +chutneys@p +chutzpa@N +chutzpah@N +chuvash@N +ci@N +cia@N +ciao@! +cicada@N +cicadae@? +cicadas@p +cicatrice@? +cicatrices@p +cicatrix@N +cicero@N +cid@N +cider@N +ciders@p +cigar@N +cigaret@? +cigarets@p +cigarette@N +cigarettes@p +cigarillo@N +cigarillos@p +cigars@p +cilantro@? +cilia@N +cilium@N +cimabue@N +cinch@NVt +cinched@AVt +cinches@? +cinching@AVt +cinchona@N +cinchonas@p +cincinnati@N +cincture@N +cinctures@p +cinder@Nt +cindered@At +cinderella@N +cinderellas@p +cindering@At +cinders@pt +cine@N +cinema@N +cinemas@p +cinematic@A +cinematographer@N +cinematographers@p +cinematography@N +cinerama@N +cinnabar@N +cinnamon@N +cipher@NVi +ciphered@AVi +ciphering@AVi +ciphers@pVi +cipro@? +circa@P +circadian@A +circe@N +circle@N +circled@V +circles@p +circlet@N +circlets@p +circling@V +circuit@NV +circuited@AV +circuiting@AV +circuitous@A +circuitously@v +circuitry@N +circuits@pV +circular@AN +circularise@t +circularised@t +circularises@t +circularising@t +circularity@N +circularize@t +circularized@t +circularizes@t +circularizing@t +circulars@p +circulate@V +circulated@V +circulates@V +circulating@V +circulation@N +circulations@p +circulatory@A +circumcise@t +circumcised@t +circumcises@t +circumcising@t +circumcision@N +circumcisions@p +circumference@N +circumferences@p +circumflex@NA +circumflexes@? +circumlocution@N +circumlocutions@p +circumlocutory@A +circumnavigate@t +circumnavigated@t +circumnavigates@t +circumnavigating@t +circumnavigation@N +circumnavigations@p +circumscribe@t +circumscribed@t +circumscribes@t +circumscribing@t +circumscription@N +circumscriptions@p +circumspect@A +circumspection@N +circumspectly@v +circumstance@Nt +circumstanced@V +circumstances@pt +circumstancing@V +circumstantial@A +circumstantially@v +circumvent@t +circumvented@t +circumventing@t +circumvention@N +circumvents@t +circus@N +circuses@p +cirrhosis@N +cirrus@N +cistern@N +cisterns@p +citadel@N +citadels@p +citation@N +citations@p +cite@t +cited@t +cites@t +cities@p +citing@t +citizen@N +citizenry@N +citizens@p +citizenship@N +citric@A +citron@N +citronella@N +citrons@p +citrous@p +citrus@NA +citruses@p +city@N +citywide@? +civet@N +civets@p +civic@A +civics@N +civies@p +civil@A +civilian@N +civilians@p +civilisation@N +civilisations@p +civilise@t +civilised@t +civilises@t +civilising@t +civilities@p +civility@N +civilization@N +civilizations@p +civilize@t +civilized@A +civilizes@t +civilizing@t +civilly@v +civvies@p +cl@N +clack@VN +clacked@VA +clacking@VA +clacks@Vp +clad@V +cladding@N +claim@VN +claimant@N +claimants@p +claimed@VA +claiming@VA +claims@Vp +clairvoyance@N +clairvoyant@AN +clairvoyants@p +clam@NV +clambake@N +clambakes@p +clamber@VN +clambered@VA +clambering@VA +clambers@Vp +clammed@V +clammier@? +clammiest@? +clamminess@N +clamming@V +clammy@A +clamor@Nit +clamored@Ait +clamoring@Ait +clamorous@A +clamors@pit +clamour@Nit +clamoured@Ait +clamouring@Ait +clamours@pit +clamp@Nt +clampdown@N +clampdowns@p +clamped@At +clamping@At +clamps@pt +clams@pV +clan@N +clandestine@A +clandestinely@v +clang@ViN +clanged@ViA +clanger@N +clangers@p +clanging@ViA +clangor@Ni +clangour@? +clangs@Vip +clank@NVi +clanked@AVi +clanking@AVi +clanks@pVi +clannish@A +clans@p +clansman@N +clansmen@p +clanswoman@N +clanswomen@p +clap@VtiN +clapboard@Nt +clapboarded@At +clapboarding@At +clapboards@pt +clapped@V +clapper@N +clapperboard@N +clapperboards@p +clappers@p +clapping@V +claps@Vtip +claptrap@N +clare@N +clarendon@N +claret@N +clarets@p +clarification@N +clarifications@p +clarified@V +clarifies@? +clarify@V +clarifying@V +clarinet@N +clarinetist@N +clarinetists@p +clarinets@p +clarinettist@N +clarinettists@p +clarion@N +clarioned@A +clarioning@A +clarions@p +clarity@N +clark@N +clash@ViN +clashed@ViA +clashes@? +clashing@ViA +clasp@Nt +clasped@NV +clasping@A +clasps@pt +class@NV +classed@AV +classes@p +classic@AN +classical@A +classically@v +classicism@N +classicist@N +classicists@p +classics@N +classier@A +classiest@A +classifiable@A +classification@N +classifications@p +classified@A +classifieds@p +classifies@? +classify@V +classifying@t +classiness@N +classing@AV +classless@A +classlessness@? +classmate@N +classmates@p +classroom@N +classrooms@p +classy@A +clatter@VitN +clattered@VitA +clattering@VitA +clatters@Vitp +clause@N +clauses@p +clausewitz@N +clausius@N +claustrophobia@N +claustrophobic@A +clavichord@N +clavichords@p +clavicle@N +clavicles@p +claw@NVt +clawed@AVt +clawing@AVt +claws@pVt +clay@N +clayey@A +clayier@? +clayiest@? +clean@AVtvN +cleaned@AVtv +cleaner@N +cleaners@p +cleanest@? +cleaning@N +cleanings@p +cleanlier@A +cleanliest@A +cleanliness@N +cleanly@vA +cleanness@N +cleans@pVtv +cleanse@t +cleansed@V +cleanser@N +cleansers@p +cleanses@t +cleansing@V +cleanup@N +cleanups@p +clear@AtivNV +clearance@N +clearances@p +cleared@AtivV +clearer@N +clearest@? +clearing@N +clearinghouse@? +clearinghouses@? +clearings@p +clearly@v +clearness@N +clears@ptivV +clearway@N +clearways@p +cleat@Nt +cleats@pt +cleavage@N +cleavages@p +cleave@N +cleaved@A +cleaver@N +cleavers@N +cleaves@N +cleaving@A +clef@N +clefs@p +cleft@VNA +clefts@Vp +clematis@N +clematises@? +clemenceau@N +clemency@N +clemens@N +clement@A +clementine@N +clementines@p +clench@tNV +clenched@tAV +clenches@? +clenching@tAV +cleopatra@N +clerestories@p +clerestory@N +clergies@p +clergy@N +clergyman@N +clergymen@p +clergywoman@? +clergywomen@? +cleric@N +clerical@A +clerics@p +clerk@N +clerked@A +clerking@A +clerks@p +cleveland@N +clever@A +cleverer@? +cleverest@? +cleverly@v +cleverness@N +clew@Nt +clewed@At +clewing@At +clews@pt +click@NVi +clicked@AVi +clicking@AVi +clicks@pVi +client@N +clients@p +cliff@N +cliffhanger@N +cliffhangers@p +cliffhanging@? +clifford@N +cliffs@p +clifftop@? +clifftops@p +climactic@A +climate@N +climates@p +climatic@A +climatologist@N +climatologists@p +climatology@N +climax@NV +climaxed@AV +climaxes@? +climaxing@AV +climb@VN +climbed@V +climber@N +climbers@p +climbing@VA +climbs@Vp +clime@N +climes@p +clinch@tiN +clinched@tiA +clincher@N +clinchers@p +clinches@? +clinching@tiA +cling@VN +clingfilm@? +clingier@A +clingiest@A +clinging@V +clings@Vp +clingy@A +clinic@N +clinical@A +clinically@v +clinician@N +clinicians@p +clinics@p +clink@ViN +clinked@ViA +clinker@Ni +clinkers@pi +clinking@ViA +clinks@Vip +clinton@N +clio@N +clip@ViNt +clipboard@N +clipboards@p +clipped@AV +clipper@N +clippers@p +clipping@NA +clippings@p +clips@Vipt +clipt@V +clique@N +cliques@p +cliquey@A +cliquish@A +clitoral@A +clitoris@N +clitorises@? +clive@N +cloak@Nt +cloaked@At +cloaking@At +cloakroom@N +cloakrooms@p +cloaks@pt +clobber@tN +clobbered@tA +clobbering@tA +clobbers@tp +cloche@N +cloches@p +clock@Nt +clocked@At +clocking@At +clocks@pt +clockwise@vA +clockwork@N +clockworks@p +clod@N +clodhopper@N +clodhoppers@p +clods@p +clog@VtiN +clogged@? +clogging@? +clogs@Vtip +cloister@Nt +cloistered@A +cloistering@At +cloisters@pt +clomp@NV +clomped@AV +clomping@AV +clomps@pV +clone@N +cloned@A +clones@p +cloning@A +clonk@itN +clonked@itA +clonking@itA +clonks@itp +clop@VN +clopped@? +clopping@? +clops@Vp +close@N +closed@A +closefisted@A +closely@v +closemouthed@? +closeness@N +closeout@N +closeouts@p +closer@NV +closes@p +closest@V +closet@Nt +closeted@At +closeting@At +closets@pt +closing@VN +closure@Nt +closures@pt +clot@NV +cloth@N +clothe@V +clothed@t +clothes@p +clothesline@N +clotheslines@p +clothespin@N +clothespins@p +clothier@N +clothiers@p +clothing@N +clotho@N +cloths@p +clots@pV +clotted@V +clotting@V +cloture@Nt +clotures@pt +cloud@NVt +cloudburst@N +cloudbursts@p +clouded@A +cloudier@A +cloudiest@A +cloudiness@N +clouding@AVt +cloudless@A +clouds@N +cloudy@A +clout@Nt +clouted@At +clouting@At +clouts@pt +clove@NV +cloven@VA +clover@N +cloverleaf@N +cloverleafs@p +cloverleaves@p +clovers@p +cloves@pV +clovis@N +clown@Ni +clowned@Ai +clowning@Ai +clownish@A +clownishly@v +clownishness@N +clowns@pi +cloy@V +cloyed@V +cloying@A +cloyingly@v +cloys@V +club@NV +clubbable@A +clubbed@NV +clubber@N +clubbers@p +clubbing@NV +clubfeet@p +clubfoot@N +clubhouse@N +clubhouses@p +clubland@N +clubs@pV +cluck@Nit +clucked@Ait +clucking@Ait +clucks@pit +clue@NV +clued@V +clueing@AV +clueless@A +clues@pV +cluing@V +clump@Nit +clumped@Ait +clumping@Ait +clumps@pit +clumpy@A +clumsier@A +clumsiest@A +clumsily@v +clumsiness@N +clumsy@A +clung@V +clunk@NV +clunked@AV +clunker@? +clunkers@p +clunkier@? +clunkiest@? +clunking@AV +clunks@pV +clunky@? +cluster@NV +clustered@A +clustering@AV +clusters@pV +clutch@tiN +clutched@tiA +clutches@? +clutching@tiA +clutter@ViN +cluttered@ViA +cluttering@ViA +clutters@Vip +clyde@N +clydesdale@N +clytemnestra@N +cm@N +cnn@? +co@N +coach@NVt +coached@AVt +coaches@? +coaching@AVt +coachload@? +coachloads@p +coachman@N +coachmen@p +coachwork@N +coagulant@N +coagulants@p +coagulate@VN +coagulated@V +coagulates@Vp +coagulating@V +coagulation@N +coal@NV +coaled@AV +coalesce@i +coalesced@V +coalescence@N +coalesces@i +coalescing@V +coalface@N +coalfaces@p +coalfield@N +coalfields@p +coaling@AV +coalition@N +coalitions@p +coalmine@? +coalmines@? +coals@pV +coarse@A +coarsely@v +coarsen@V +coarsened@V +coarseness@N +coarsening@V +coarsens@V +coarser@A +coarsest@A +coast@NVi +coastal@A +coasted@AVi +coaster@N +coasters@p +coastguard@N +coastguards@p +coasting@AVi +coastline@N +coastlines@p +coasts@pVi +coat@Nt +coated@A +coating@N +coatings@p +coatroom@N +coatrooms@p +coats@N +coattail@? +coattails@p +coauthor@Nt +coauthored@At +coauthoring@At +coauthors@pt +coax@VtN +coaxed@VtA +coaxes@? +coaxing@VtA +coaxingly@v +cob@N +cobalt@N +cobb@N +cobber@N +cobbers@p +cobble@Nt +cobbled@Vt +cobbler@N +cobblers@p! +cobbles@p +cobblestone@N +cobblestones@p +cobbling@Vt +cobnut@N +cobnuts@p +cobol@N +cobols@p +cobra@N +cobras@p +cobs@p +cobweb@N +cobwebbed@V +cobwebs@p +cocaine@N +cocci@N +coccis@p +coccus@N +coccyges@p +coccyx@N +coccyxes@? +cochabamba@N +cochin@N +cochineal@N +cochise@N +cochlea@N +cochleae@? +cochleas@p +cock@N +cockade@N +cockades@p +cockamamie@? +cockatoo@N +cockatoos@p +cockchafer@N +cockchafers@p +cocked@A +cockerel@N +cockerels@p +cockeyed@A +cockfight@N +cockfighting@NA +cockfights@p +cockier@A +cockiest@A +cockily@v +cockiness@N +cocking@A +cockle@NV +cockles@pV +cockleshell@N +cockleshells@p +cockney@NA +cockneys@p +cockpit@N +cockpits@p +cockroach@N +cockroaches@? +cocks@N +cockscomb@N +cockscombs@p +cocksucker@? +cocksuckers@p +cocksure@A +cocktail@N +cocktails@p +cocky@AN +cocoa@N +cocoanut@? +cocoanuts@p +cocoas@p +coconut@NA +coconuts@p +cocoon@Nt +cocooned@At +cocooning@At +cocoons@pt +cocteau@N +cod@N +coda@N +codas@p +codded@A +codding@N +coddle@tN +coddled@t +coddles@tp +coddling@t +code@Nt +coded@V +codeine@N +codependency@? +codependent@? +codependents@p +codes@pt +codex@N +codfish@N +codfishes@? +codger@N +codgers@p +codices@N +codicil@N +codicils@p +codification@N +codifications@p +codified@t +codifies@? +codify@V +codifying@t +coding@NV +codpiece@N +codpieces@p +cods@p +codswallop@N +cody@N +coed@N +coeds@p +coeducation@N +coeducational@A +coefficient@N +coefficients@p +coequal@AN +coequals@p +coerce@t +coerced@t +coerces@t +coercing@t +coercion@N +coercive@A +coeval@AN +coevals@p +coexist@i +coexisted@i +coexistence@N +coexisting@i +coexists@i +coffee@N +coffeecake@N +coffeecakes@p +coffeehouse@Ni +coffeehouses@pi +coffeepot@N +coffeepots@p +coffees@p +coffer@Nt +cofferdam@N +cofferdams@p +coffers@pt +coffin@N +coffined@A +coffining@A +coffins@p +cog@NV +cogency@N +cogent@A +cogently@v +cogitate@V +cogitated@V +cogitates@V +cogitating@V +cogitation@N +cogitations@p +cognac@N +cognacs@p +cognate@AN +cognates@p +cognisance@N +cognisant@A +cognition@N +cognitive@A +cognizance@N +cognizant@A +cognomen@N +cognomens@p +cognomina@p +cognoscente@? +cognoscenti@p +cogs@pV +cogwheel@N +cogwheels@p +cohabit@i +cohabitation@N +cohabited@i +cohabiting@i +cohabits@i +cohan@N +cohen@N +cohere@i +cohered@i +coherence@N +coherent@A +coherently@v +coheres@i +cohering@i +cohesion@N +cohesive@A +cohesively@v +cohesiveness@N +cohort@N +cohorts@p +coif@NVt +coifed@AVt +coiffed@? +coiffing@? +coiffure@Nt +coiffured@At +coiffures@pt +coiffuring@At +coifing@AVt +coifs@pVt +coil@ViN +coiled@ViA +coiling@ViA +coils@Vip +coimbatore@N +coin@Nt +coinage@N +coinages@p +coincide@i +coincided@i +coincidence@N +coincidences@p +coincident@A +coincidental@A +coincidentally@v +coincides@i +coinciding@i +coined@At +coining@At +coins@pt +cointreau@N +coir@N +coital@A +coitus@N +coke@N +coked@V +cokes@p +coking@V +col@N +cola@N +colander@N +colanders@p +colas@N +colbert@N +colby@N +cold@ANv +colder@? +coldest@? +coldly@v +coldness@N +colds@pv +cole@N +coleridge@N +coleslaw@N +colette@N +coley@N +coleys@p +colic@N +colicky@A +coliseum@N +coliseums@p +colitis@N +collaborate@i +collaborated@i +collaborates@i +collaborating@i +collaboration@N +collaborationist@N +collaborations@p +collaborative@A +collaboratively@v +collaborator@N +collaborators@p +collage@N +collagen@N +collages@p +collapse@iN +collapsed@V +collapses@ip +collapsible@A +collapsing@V +collar@N +collarbone@N +collarbones@p +collared@A +collaring@A +collarless@A +collars@p +collate@t +collated@t +collateral@NA +collates@t +collating@t +collation@N +collations@p +colleague@N +colleagues@p +collect@VtivAN +collectable@A +collectables@p +collected@A +collectible@A +collectibles@p +collecting@VtivA +collection@N +collections@p +collective@AN +collectively@v +collectives@p +collectivisation@? +collectivise@? +collectivised@? +collectivises@? +collectivising@? +collectivism@N +collectivist@NA +collectivists@p +collectivization@N +collectivize@t +collectivized@t +collectivizes@t +collectivizing@t +collector@N +collectors@p +collects@Vtivp +colleen@N +colleens@p +college@N +colleges@p +collegian@N +collegians@p +collegiate@AN +collide@i +collided@i +collides@i +colliding@i +collie@N +collier@N +collieries@? +colliers@p +colliery@N +collies@p +collins@N +collision@N +collisions@p +collocate@t +collocated@t +collocates@t +collocating@t +collocation@N +collocations@p +colloid@NA +colloids@p +colloquia@? +colloquial@A +colloquialism@N +colloquialisms@p +colloquially@v +colloquies@p +colloquium@N +colloquiums@p +colloquy@N +collude@i +colluded@i +colludes@i +colluding@i +collusion@N +collusive@A +colo@N +cologne@N +colognes@p +colombia@N +colombian@AN +colombians@p +colombo@N +colon@N +colonel@N +colonels@p +colones@p +colonial@AN +colonialism@NA +colonialist@NA +colonialists@p +colonials@p +colonies@p +colonisation@N +colonise@t +colonised@t +coloniser@N +colonisers@p +colonises@t +colonising@t +colonist@N +colonists@p +colonization@N +colonize@Vt +colonized@V +colonizer@N +colonizers@p +colonizes@Vt +colonizing@V +colonnade@N +colonnaded@A +colonnades@p +colons@p +colony@N +color@N +colorado@A +colorant@N +colorants@p +coloration@N +coloratura@N +coloraturas@p +colorblind@? +colored@A +coloreds@p +colorfast@A +colorful@A +colorfully@v +coloring@N +colorist@N +colorists@p +colorization@? +colorize@? +colorized@? +colorizes@? +colorizing@? +colorless@A +colors@p +colorway@? +colorways@p +colossal@A +colossally@v +colosseum@N +colossi@? +colossus@N +colossuses@? +colour@Nti +colourant@? +colourants@p +colouration@N +colourblind@? +coloured@A +coloureds@p +colourfast@? +colourful@A +colourfully@v +colouring@N +colourisation@? +colourise@? +colourised@? +colourises@? +colourising@? +colourist@N +colourists@p +colourization@? +colourize@? +colourized@? +colourizes@? +colourizing@? +colourless@A +colours@pti +colourway@? +colourways@p +cols@p +colt@N +coltish@A +coltrane@N +colts@p +columbia@N +columbine@N +columbines@p +columbus@N +column@N +columned@A +columnist@N +columnists@p +columns@p +com@N +coma@N +comanche@N +comanches@p +comas@p +comatose@A +comb@NV +combat@NVti +combatant@NA +combatants@p +combated@V +combating@V +combative@A +combativeness@N +combats@pVti +combatted@V +combatting@V +combed@AV +combination@N +combinations@p +combine@VN +combined@V +combines@Vp +combing@AV +combining@V +combo@N +combos@p +combs@N +combustibility@N +combustible@AN +combustibles@p +combustion@NA +come@Vt! +comeback@NV +comebacks@pV +comedian@N +comedians@p +comedic@A +comedienne@N +comediennes@p +comedies@p +comedown@NVi +comedowns@pVi +comedy@N +comelier@A +comeliest@A +comeliness@N +comely@A +comer@N +comers@p +comes@N +comestible@NA +comestibles@p +comet@N +comets@p +comeuppance@N +comeuppances@p +comfier@A +comfiest@A +comfort@N +comfortable@A +comfortably@v +comforted@A +comforter@N +comforters@p +comforting@A +comfortingly@v +comfortless@A +comforts@p +comfy@A +comic@AN +comical@A +comically@v +comics@p +coming@AN +comings@p +comintern@N +comity@N +comm@N +comma@N +command@VtN +commandant@N +commandants@p +commanded@VtA +commandeer@t +commandeered@t +commandeering@t +commandeers@t +commander@N +commanders@p +commanding@A +commandment@N +commandments@p +commando@N +commandoes@p +commandos@p +commands@Vtp +commas@p +commemorate@t +commemorated@t +commemorates@t +commemorating@t +commemoration@N +commemorations@p +commemorative@AN +commence@V +commenced@it +commencement@N +commencements@p +commences@V +commencing@it +commend@V +commendable@A +commendably@v +commendation@N +commendations@p +commended@V +commending@V +commends@V +commensurable@A +commensurate@A +commensurately@v +comment@NVi +commentaries@p +commentary@N +commentate@Vt +commentated@Vt +commentates@Vt +commentating@Vt +commentator@N +commentators@p +commented@AVi +commenting@AVi +comments@pVi +commerce@N +commercial@AN +commercialisation@N +commercialise@t +commercialised@t +commercialises@t +commercialising@t +commercialism@N +commercialization@N +commercialize@t +commercialized@t +commercializes@t +commercializing@t +commercially@v +commercials@p +commie@NA +commies@p +commingle@V +commingled@ti +commingles@V +commingling@ti +commiserate@V +commiserated@V +commiserates@V +commiserating@V +commiseration@N +commiserations@p +commissar@N +commissariat@N +commissariats@p +commissaries@p +commissars@p +commissary@N +commission@Nt +commissionaire@N +commissionaires@p +commissioned@At +commissioner@N +commissioners@p +commissioning@At +commissions@pt +commit@V +commitment@N +commitments@p +commits@V +committal@N +committals@p +committed@t +committee@N +committees@p +committing@t +commode@N +commodes@p +commodious@A +commodities@p +commodity@N +commodore@N +commodores@p +common@AN +commonalities@? +commonality@N +commoner@N +commoners@p +commonest@? +commonly@v +commonplace@AN +commonplaces@p +commons@N +commonwealth@N +commonwealths@p +commotion@N +commotions@p +communal@A +communally@v +commune@N +communed@Vi +communes@p +communicable@A +communicant@NA +communicants@p +communicate@Vti +communicated@V +communicates@Vti +communicating@V +communication@N +communications@p +communicative@A +communicator@N +communicators@p +communing@Vi +communion@N +communions@p +communique@? +communiques@? +communism@N +communist@NA +communistic@A +communists@p +communities@p +community@N +commutable@A +commutation@N +commutations@p +commutative@A +commute@it +commuted@V +commuter@N +commuters@p +commutes@it +commuting@V +como@N +comoros@p +compact@AVtN +compacted@AVt +compacter@? +compactest@? +compacting@AVt +compaction@N +compactly@v +compactness@N +compactor@? +compactors@p +compacts@pVt +companies@p +companion@Nt +companionable@A +companionably@v +companions@pt +companionship@N +companionway@N +companionways@p +company@NV +comparability@N +comparable@A +comparably@v +comparative@AN +comparatively@v +comparatives@p +compare@tiN +compared@V +compares@tip +comparing@V +comparison@N +comparisons@p +compartment@N +compartmentalise@? +compartmentalised@? +compartmentalises@? +compartmentalising@? +compartmentalize@V +compartmentalized@t +compartmentalizes@V +compartmentalizing@t +compartments@p +compass@Nt +compassed@At +compasses@? +compassing@At +compassion@N +compassionate@A +compassionately@v +compatibility@N +compatible@A +compatibles@p +compatibly@v +compatriot@N +compatriots@p +compel@V +compelled@V +compelling@N +compellingly@v +compels@V +compendia@? +compendium@N +compendiums@p +compensate@Vti +compensated@V +compensates@Vti +compensating@V +compensation@N +compensations@p +compensatory@A +compete@i +competed@i +competence@N +competences@p +competencies@p +competency@N +competent@A +competently@v +competes@i +competing@i +competition@N +competitions@p +competitive@A +competitively@v +competitiveness@N +competitor@N +competitors@p +compilation@N +compilations@p +compile@t +compiled@t +compiler@N +compilers@p +compiles@t +compiling@t +complacence@? +complacency@N +complacent@A +complacently@v +complain@i +complainant@N +complainants@p +complained@i +complainer@N +complainers@p +complaining@i +complains@i +complaint@N +complaints@p +complaisance@N +complaisant@A +complaisantly@v +complected@A +complement@NVt +complementary@A +complemented@A +complementing@AVt +complements@pVt +complete@At +completed@V +completely@v +completeness@N +completer@N +completes@pt +completest@? +completing@V +completion@N +completions@p +complex@AN +complexes@? +complexion@N +complexioned@A +complexions@p +complexities@p +complexity@N +compliance@N +compliant@A +complicate@VA +complicated@A +complicates@Vp +complicating@V +complication@N +complications@p +complicity@N +complied@i +complies@? +compliment@NVt +complimentary@A +complimented@AVt +complimenting@AVt +compliments@pVt +comply@V +complying@i +compo@NA +component@NA +components@p +comport@ti +comported@ti +comporting@ti +comportment@N +comports@ti +compos@p +compose@Vi +composed@A +composer@N +composers@p +composes@Vi +composing@V +composite@AN +composites@p +composition@N +compositions@p +compositor@N +compositors@p +compost@Nt +composted@At +composting@At +composts@pt +composure@N +compote@N +compotes@p +compound@NVA +compounded@AV +compounding@AV +compounds@pV +comprehend@Vt +comprehended@Vt +comprehending@Vt +comprehends@Vt +comprehensibility@N +comprehensible@A +comprehensibly@v +comprehension@N +comprehensions@p +comprehensive@AN +comprehensively@v +comprehensiveness@N +comprehensives@p +compress@VtN +compressed@A +compresses@? +compressible@A +compressing@VtA +compression@N +compressor@N +compressors@p +comprise@t +comprised@t +comprises@t +comprising@t +compromise@NVt +compromised@V +compromises@p +compromising@V +compton@N +comptroller@N +comptrollers@p +compulsion@N +compulsions@p +compulsive@AN +compulsively@v +compulsiveness@N +compulsories@? +compulsorily@v +compulsory@A +compunction@N +compunctions@p +computation@N +computational@A +computationally@? +computations@p +compute@VN +computed@V +computer@N +computerate@? +computerisation@? +computerise@? +computerised@? +computerises@? +computerising@? +computerization@N +computerize@ti +computerized@t +computerizes@ti +computerizing@t +computers@p +computes@Vp +computing@V +comrade@N +comradely@? +comrades@p +comradeship@N +comte@N +con@N +conakry@N +concatenate@tA +concatenated@V +concatenates@tp +concatenating@V +concatenation@N +concatenations@p +concave@At +concavities@p +concavity@N +conceal@t +concealed@t +concealing@t +concealment@N +conceals@t +concede@Vt +conceded@V +concedes@Vt +conceding@V +conceit@Nt +conceited@A +conceitedly@v +conceits@pt +conceivable@A +conceivably@v +conceive@Vt +conceived@V +conceives@Vt +conceiving@V +concentrate@tiN +concentrated@V +concentrates@tip +concentrating@V +concentration@N +concentrations@p +concentric@A +concentrically@v +concept@N +conception@N +conceptions@p +concepts@p +conceptual@A +conceptualisation@N +conceptualisations@p +conceptualise@ti +conceptualised@ti +conceptualises@ti +conceptualising@ti +conceptualization@N +conceptualizations@p +conceptualize@V +conceptualized@V +conceptualizes@V +conceptualizing@V +conceptually@v +concern@tN +concerned@A +concernedly@v +concerning@PA +concerns@tp +concert@NV +concerted@A +concertgoer@N +concertgoers@p +concerti@p +concertina@NV +concertinaed@AV +concertinaing@AV +concertinas@pV +concerting@AV +concertmaster@N +concertmasters@p +concerto@N +concertos@p +concerts@pV +concession@N +concessionaire@N +concessionaires@p +concessionary@AN +concessions@p +conch@N +conches@? +conchie@N +conchies@p +conchs@p +concierge@N +concierges@p +conciliate@t +conciliated@t +conciliates@t +conciliating@t +conciliation@N +conciliator@N +conciliators@p +conciliatory@A +concise@A +concisely@v +conciseness@N +conciser@? +concisest@? +concision@N +conclave@N +conclaves@p +conclude@V +concluded@V +concludes@V +concluding@V +conclusion@N +conclusions@p +conclusive@A +conclusively@v +concoct@t +concocted@t +concocting@t +concoction@N +concoctions@p +concocts@t +concomitant@AN +concomitantly@v +concomitants@p +concord@N +concordance@N +concordances@p +concordant@A +concordat@N +concordats@p +concorde@N +concords@p +concourse@N +concourses@p +concrete@NAt +concreted@V +concretely@v +concretes@pt +concreting@V +concubine@NA +concubines@p +concur@V +concurred@i +concurrence@N +concurrences@p +concurrency@? +concurrent@AN +concurrently@v +concurring@i +concurs@V +concuss@t +concussed@t +concusses@? +concussing@t +concussion@N +concussions@p +condemn@t +condemnation@N +condemnations@p +condemnatory@A +condemned@t +condemning@t +condemns@t +condensation@N +condensations@p +condense@t +condensed@A +condenser@N +condensers@p +condenses@t +condensing@V +condescend@i +condescended@i +condescending@A +condescendingly@v +condescends@i +condescension@N +condillac@N +condiment@N +condiments@p +condition@NVi +conditional@A +conditionally@v +conditionals@p +conditioned@A +conditioner@N +conditioners@p +conditioning@N +conditions@pVi +condo@? +condoes@? +condole@i +condoled@V +condolence@N +condolences@p +condoles@i +condoling@V +condom@N +condominium@N +condominiums@p +condoms@p +condone@t +condoned@A +condones@t +condoning@A +condor@N +condorcet@N +condors@p +condos@p +conduce@i +conduced@i +conduces@i +conducing@i +conducive@A +conduct@NVt +conducted@AVt +conducting@AVt +conduction@N +conductive@A +conductivity@N +conductor@N +conductors@p +conductress@N +conductresses@? +conducts@pVt +conduit@N +conduits@p +cone@NV +coned@V +cones@pV +conestoga@? +coney@N +coneys@p +confab@NV +confabbed@V +confabbing@V +confabs@pV +confection@N +confectioner@N +confectioneries@p +confectioners@p +confectionery@N +confections@p +confederacies@p +confederacy@N +confederate@AN +confederated@V +confederates@p +confederating@V +confederation@N +confederations@p +confer@Vit +conference@N +conferences@p +conferencing@A +conferment@N +conferments@p +conferred@V +conferrer@N +conferring@V +confers@Vit +confess@Vt +confessed@Vt +confessedly@v +confesses@? +confessing@Vt +confession@N +confessional@AN +confessionals@p +confessions@p +confessor@N +confessors@p +confetti@N +confidant@N +confidante@N +confidantes@p +confidants@p +confide@Vit +confided@V +confidence@N +confidences@p +confident@AN +confidential@A +confidentiality@N +confidentially@v +confidently@v +confides@Vit +confiding@A +confidingly@v +configurable@? +configuration@N +configurations@p +configure@t +configured@t +configures@t +configuring@t +confine@VtN +confined@A +confinement@N +confinements@p +confines@Vtp +confining@V +confirm@t +confirmation@N +confirmations@p +confirmatory@A +confirmed@A +confirming@t +confirms@t +confiscate@tA +confiscated@V +confiscates@tp +confiscating@V +confiscation@N +confiscations@p +conflagration@N +conflagrations@p +conflate@t +conflated@t +conflates@t +conflating@t +conflation@N +conflations@p +conflict@NVi +conflicted@AVi +conflicting@AVi +conflicts@pVi +confluence@N +confluences@p +confluent@AN +conform@it +conformance@N +conformation@N +conformations@p +conformed@it +conforming@it +conformist@NA +conformists@p +conformity@N +conforms@it +confound@t +confounded@A +confounding@t +confounds@t +confront@t +confrontation@N +confrontational@? +confrontations@p +confronted@t +confronting@t +confronts@t +confucian@AN +confucianism@N +confucianisms@p +confucians@p +confucius@N +confuse@t +confused@t +confusedly@v +confuser@? +confusers@p +confuses@t +confusing@t +confusingly@v +confusion@N +confusions@p +confute@t +confuted@t +confutes@t +confuting@t +cong@N +conga@NV +congaed@p +congaing@p +congas@p +congeal@Vi +congealed@Vi +congealing@Vi +congeals@Vi +congenial@A +congeniality@N +congenially@v +congenital@A +congenitally@v +conger@N +congers@p +congest@Vt +congested@Vt +congesting@Vt +congestion@N +congestive@A +congests@Vt +conglomerate@NVA +conglomerated@V +conglomerates@pV +conglomerating@V +conglomeration@N +conglomerations@p +congo@N +congolese@AN +congratulate@t +congratulated@t +congratulates@t +congratulating@t +congratulation@N! +congratulations@p! +congratulatory@A +congregant@N +congregants@p +congregate@VA +congregated@V +congregates@Vp +congregating@V +congregation@N +congregational@A +congregationalist@NA +congregationalists@p +congregations@p +congress@N +congresses@? +congressional@A +congressman@N +congressmen@p +congresswoman@N +congresswomen@p +congreve@N +congruence@N +congruent@A +congruities@p +congruity@N +congruous@A +conic@AN +conical@A +conics@N +conies@p +conifer@N +coniferous@A +conifers@p +coning@V +conj@? +conjectural@A +conjecture@NV +conjectured@V +conjectures@pV +conjecturing@V +conjoin@V +conjoined@A +conjoining@V +conjoins@V +conjoint@A +conjugal@A +conjugate@VtiAN +conjugated@A +conjugates@Vtip +conjugating@V +conjugation@N +conjugations@p +conjunction@N +conjunctions@p +conjunctive@AN +conjunctives@p +conjunctivitis@N +conjuncture@N +conjunctures@p +conjure@it +conjured@V +conjurer@N +conjurers@p +conjures@it +conjuring@NA +conjuror@? +conjurors@p +conk@VN +conked@VA +conker@N +conkers@N +conking@VA +conks@Vp +conn@N +connect@Vti +connected@A +connecter@? +connecters@p +connecticut@N +connecting@Vti +connection@N +connections@p +connective@AN +connectives@p +connectivity@N +connector@N +connectors@p +connects@Vti +conned@Vt +connemara@N +connexion@N +connexions@p +conning@Vt +connivance@N +connive@i +connived@i +conniver@N +connivers@p +connives@i +conniving@i +connoisseur@N +connoisseurs@p +connors@N +connotation@N +connotations@p +connotative@A +connote@t +connoted@V +connotes@t +connoting@V +connubial@A +conquer@Vt +conquered@Vt +conquering@Vt +conqueror@N +conquerors@p +conquers@Vt +conquest@N +conquests@p +conquistador@N +conquistadores@p +conquistadors@p +conrad@N +cons@N +consanguinity@N +conscience@N +consciences@p +conscientious@A +conscientiously@v +conscientiousness@N +conscious@A +consciously@v +consciousness@N +consciousnesses@? +conscript@NVt +conscripted@AVt +conscripting@AVt +conscription@N +conscripts@pVt +consecrate@tA +consecrated@V +consecrates@tp +consecrating@V +consecration@N +consecrations@p +consecutive@A +consecutively@v +consed@A +consensual@A +consensus@N +consensuses@p +consent@ViN +consented@ViA +consenting@ViA +consents@Vip +consequence@N +consequences@p +consequent@AN +consequential@A +consequentially@v +consequently@v +conservancies@p +conservancy@N +conservation@N +conservationist@N +conservationists@p +conservatism@N +conservative@AN +conservatively@v +conservatives@p +conservatoire@N +conservatoires@p +conservator@N +conservatories@p +conservators@p +conservatory@NA +conserve@VtN +conserved@V +conserves@Vtp +conserving@V +conses@? +consider@V +considerable@A +considerably@v +considerate@A +considerately@v +consideration@N +considerations@p +considered@A +considering@PvC +considers@V +consign@Vi +consigned@Vi +consignee@N +consignees@p +consigning@Vi +consignment@N +consignments@p +consigns@Vi +consing@A +consist@i +consisted@i +consistencies@p +consistency@N +consistent@A +consistently@v +consisting@i +consists@i +consolation@N +consolations@p +consolatory@A +console@VN +consoled@t +consoles@Vp +consolidate@V +consolidated@V +consolidates@V +consolidating@V +consolidation@N +consolidations@p +consoling@t +consonance@N +consonances@p +consonant@N +consonants@p +consort@VitN +consorted@VitA +consortia@? +consorting@VitA +consortium@N +consortiums@p +consorts@Vitp +conspicuous@A +conspicuously@v +conspicuousness@N +conspiracies@p +conspiracy@N +conspirator@N +conspiratorial@A +conspiratorially@v +conspirators@p +conspire@Vi +conspired@V +conspires@Vi +conspiring@V +constable@N +constables@p +constabularies@p +constabulary@NA +constance@N +constancy@N +constant@AN +constantine@N +constantinople@N +constantly@v +constants@p +constellation@N +constellations@p +consternation@N +constipate@t +constipated@t +constipates@t +constipating@t +constipation@N +constituencies@p +constituency@N +constituent@AN +constituents@p +constitute@t +constituted@t +constitutes@t +constituting@t +constitution@N +constitutional@AN +constitutionalism@N +constitutionality@N +constitutionally@v +constitutionals@p +constitutions@p +constrain@t +constrained@A +constraining@t +constrains@t +constraint@N +constraints@p +constrict@t +constricted@t +constricting@t +constriction@N +constrictions@p +constrictive@A +constrictor@N +constrictors@p +constricts@t +construct@VN +constructed@VA +constructing@VA +construction@N +constructions@p +constructive@A +constructively@v +constructor@N +constructors@p +constructs@Vp +construe@VN +construed@V +construes@Vp +construing@V +consul@N +consular@A +consulate@N +consulates@p +consuls@p +consult@Vti +consultancies@? +consultancy@? +consultant@N +consultants@p +consultation@N +consultations@p +consultative@A +consulted@Vti +consulting@A +consults@Vti +consumable@AN +consumables@p +consume@ti +consumed@V +consumer@N +consumerism@NA +consumerist@? +consumers@p +consumes@ti +consuming@V +consummate@VtA +consummated@V +consummately@v +consummates@Vtp +consummating@V +consummation@N +consummations@p +consumption@N +consumptive@AN +consumptives@p +cont@N +contact@NV! +contactable@? +contacted@AV! +contacting@AV! +contacts@pV! +contagion@N +contagions@p +contagious@A +contagiously@v +contain@t +contained@A +container@N +containers@p +containing@t +containment@N +contains@t +contaminant@N +contaminants@p +contaminate@VtA +contaminated@V +contaminates@Vtp +contaminating@V +contamination@N +contd@N +contemplate@Vi +contemplated@V +contemplates@Vi +contemplating@V +contemplation@N +contemplative@AN +contemplatively@v +contemplatives@p +contemporaneous@A +contemporaneously@v +contemporaries@p +contemporary@AN +contempt@N +contemptible@A +contemptibly@v +contemptuous@A +contemptuously@v +contend@it +contended@it +contender@? +contenders@p +contending@it +contends@it +content@Nt! +contented@A +contentedly@v +contentedness@N +contenting@At! +contention@N +contentions@p +contentious@A +contentiously@v +contentiousness@N +contentment@N +contents@pt! +contest@NVt +contestant@N +contestants@p +contested@AVt +contesting@AVt +contests@pVt +context@N +contexts@p +contextual@A +contextualisation@? +contextualise@? +contextualised@? +contextualises@? +contextualising@? +contextualization@? +contextualize@t +contextualized@t +contextualizes@t +contextualizing@t +contextually@v +contiguity@N +contiguous@A +continence@N +continent@N +continental@AN +continentals@p +continents@p +contingencies@p +contingency@N +contingent@AN +contingently@v +contingents@p +continua@? +continual@A +continually@v +continuance@N +continuances@p +continuation@N +continuations@p +continue@Vt +continued@V +continues@Vt +continuing@V +continuities@p +continuity@N +continuous@A +continuously@v +continuum@N +continuums@p +contort@V +contorted@A +contorting@V +contortion@N +contortionist@N +contortionists@p +contortions@p +contorts@V +contour@Nt +contoured@At +contouring@At +contours@pt +contraband@NA +contraception@N +contraceptive@AN +contraceptives@p +contract@VtN +contracted@A +contractile@A +contracting@VtA +contraction@N +contractions@p +contractor@N +contractors@p +contracts@Vtp +contractual@A +contractually@v +contradict@ti +contradicted@ti +contradicting@ti +contradiction@N +contradictions@p +contradictory@AN +contradicts@ti +contradistinction@N +contradistinctions@p +contraflow@? +contraflows@p +contrail@N +contrails@p +contraindication@N +contraindications@p +contralto@NA +contraltos@p +contraption@N +contraptions@p +contrapuntal@A +contraries@? +contrarily@v +contrariness@N +contrariwise@v +contrary@ANv +contrast@VN +contrasted@VA +contrasting@VA +contrasts@Vp +contravene@t +contravened@t +contravenes@t +contravening@t +contravention@N +contraventions@p +contretemps@N +contribute@Vi +contributed@V +contributes@Vi +contributing@V +contribution@N +contributions@p +contributor@N +contributors@p +contributory@AN +contrite@A +contritely@v +contrition@N +contrivance@N +contrivances@p +contrive@t +contrived@A +contrives@t +contriving@V +control@VN +controllable@A +controlled@V +controller@N +controllers@p +controlling@V +controls@Vp +controversial@A +controversially@v +controversies@p +controversy@N +controvert@t +controverted@t +controverting@t +controverts@t +contumacious@A +contumelies@p +contumely@N +contuse@t +contused@t +contuses@t +contusing@t +contusion@N +contusions@p +conundrum@N +conundrums@p +conurbation@N +conurbations@p +convalesce@i +convalesced@i +convalescence@NA +convalescences@p +convalescent@AN +convalescents@p +convalesces@i +convalescing@i +convection@N +convector@N +convectors@p +convene@Vt +convened@V +convener@N +conveners@p +convenes@Vt +convenience@N +conveniences@p +convenient@A +conveniently@v +convening@V +convenor@? +convenors@p +convent@N +convention@N +conventional@AN +conventionality@N +conventionally@v +conventioneer@N +conventioneers@p +conventions@p +convents@p +converge@Vi +converged@V +convergence@N +convergences@p +convergent@A +converges@Vi +converging@V +conversant@A +conversation@N +conversational@A +conversationalist@N +conversationalists@p +conversationally@v +conversations@p +converse@N +conversed@V +conversely@v +converses@p +conversing@V +conversion@N +conversions@p +convert@ViN +converted@A +converter@N +converters@p +convertibility@N +convertible@AN +convertibles@p +converting@ViA +convertor@? +convertors@p +converts@Vip +convex@At +convexity@N +convey@t +conveyance@N +conveyances@p +conveyancing@N +conveyed@t +conveyer@? +conveyers@p +conveying@t +conveyor@N +conveyors@p +conveys@t +convict@VtNA +convicted@VtA +convicting@VtA +conviction@N +convictions@p +convicts@Vtp +convince@t +convinced@t +convinces@t +convincing@A +convincingly@v +convivial@A +conviviality@N +convivially@v +convocation@N +convocations@p +convoke@t +convoked@t +convokes@t +convoking@t +convoluted@A +convolution@N +convolutions@p +convoy@Nt +convoyed@At +convoying@At +convoys@pt +convulse@ti +convulsed@t +convulses@ti +convulsing@t +convulsion@N +convulsions@p +convulsive@A +convulsively@v +conway@N +cony@N +coo@N +cooed@V +cooing@V +cook@N +cookbook@N +cookbooks@p +cooked@A +cooker@N +cookeries@p +cookers@p +cookery@N +cookhouse@N +cookhouses@p +cookie@N +cookies@p +cooking@NA +cookout@N +cookouts@p +cooks@p +cookware@N +cooky@N +cool@AvNV +coolant@N +coolants@p +cooled@AvV +cooler@N +coolers@p +coolest@? +coolidge@N +coolie@N +coolies@p +cooling@AvV +coolly@v +coolness@N +cools@pvV +coon@N +coons@p +coop@N +cooped@A +cooper@N +cooperate@i +cooperated@i +cooperates@i +cooperating@i +cooperation@N +cooperative@AN +cooperatively@v +cooperatives@p +coopered@A +coopering@A +coopers@p +cooping@A +coops@p +coordinate@VtiNA +coordinated@V +coordinates@p +coordinating@V +coordination@N +coordinator@N +coordinators@p +coos@N +coot@N +cootie@N +cooties@p +coots@p +cop@N +cope@itN +copeck@N +copecks@p +coped@Vt +copenhagen@N +copernican@A +copernicus@N +copes@itp +copied@? +copier@N +copiers@p +copies@p +copilot@N +copilots@p +coping@N +copings@p +copious@A +copiously@v +copland@N +copley@N +copped@t +copper@Nt +copperhead@N +copperheads@p +copperplate@N +coppers@pt +coppery@A +coppice@N +coppiced@A +coppices@p +coppicing@A +copping@Nt +copra@N +cops@p +copse@N +copses@p +copter@N +copters@p +coptic@NA +copula@N +copulae@? +copulas@p +copulate@i +copulated@V +copulates@i +copulating@V +copulation@N +copy@NV +copybook@N +copycat@N +copycats@p +copycatted@V +copycatting@V +copying@AV +copyist@N +copyists@p +copyleft@? +copylefts@p +copyright@NAt +copyrighted@At +copyrighting@At +copyrights@pt +copywriter@N +copywriters@p +coquetry@N +coquette@N +coquetted@V +coquettes@p +coquetting@V +coquettish@A +coquettishly@v +cor@!N +cora@N +coracle@N +coracles@p +coral@N +corals@p +cord@N +corded@A +cordial@AN +cordiality@N +cordially@v +cordials@p +cordilleras@p +cording@N +cordite@N +cordless@A +cordoba@N +cordon@Nt +cordoned@At +cordoning@At +cordons@pt +cords@p +corduroy@N +corduroys@p +core@N +cored@V +coreligionist@N +coreligionists@p +cores@p +corespondent@N +corespondents@p +corfu@N +corgi@N +corgis@p +coriander@N +coring@NV +corinth@N +corinthian@AN +corinthians@N +coriolanus@N +cork@N +corkage@N +corked@A +corker@N +corkers@p +corking@A +corks@p +corkscrew@NV +corkscrewed@AV +corkscrewing@AV +corkscrews@pV +corm@N +cormorant@N +cormorants@p +corms@p +corn@N +cornball@NA +cornballs@p +cornbread@? +corncob@N +corncobs@p +corncrake@N +corncrakes@p +cornea@N +corneal@A +corneas@p +corned@A +corneille@N +corner@N +cornered@A +cornering@A +corners@p +cornerstone@N +cornerstones@p +cornet@N +cornets@p +cornfield@N +cornfields@p +cornflakes@p +cornflour@N +cornflower@N +cornflowers@p +cornice@Nt +cornices@pt +cornier@A +corniest@A +corning@N +cornish@AN +cornmeal@A +cornrow@? +cornrowed@? +cornrowing@? +cornrows@p +corns@p +cornstalk@N +cornstalks@p +cornstarch@N +cornucopia@N +cornucopias@p +cornwall@N +cornwallis@N +corny@A +corolla@N +corollaries@p +corollary@NA +corollas@p +corona@N +coronado@N +coronae@? +coronaries@p +coronary@AN +coronas@p +coronation@N +coronations@p +coroner@N +coroners@p +coronet@N +coronets@p +corot@N +corp@N +corpora@N +corporal@AN +corporals@p +corporate@A +corporation@N +corporations@p +corporatism@N +corporeal@A +corps@N +corpse@N +corpses@p +corpulence@N +corpulent@A +corpus@N +corpuscle@N +corpuscles@p +corpuses@? +corral@NVt +corralled@V +corralling@V +corrals@pVt +correct@tA +correctable@A +corrected@tA +correcter@? +correctest@? +correcting@tA +correction@N +correctional@A +corrections@p +corrective@AN +correctives@p +correctly@v +correctness@N +corrector@N +corrects@tp +correggio@N +correlate@VtAN +correlated@V +correlates@Vtp +correlating@V +correlation@N +correlations@p +correlative@AN +correlatives@p +correspond@i +corresponded@i +correspondence@N +correspondences@p +correspondent@NA +correspondents@p +corresponding@i +correspondingly@v +corresponds@i +corridor@N +corridors@p +corrie@N +corries@p +corroborate@VtA +corroborated@V +corroborates@Vtp +corroborating@V +corroboration@N +corroborations@p +corroborative@A +corrode@Vt +corroded@V +corrodes@Vt +corroding@V +corrosion@N +corrosive@AN +corrosives@p +corrugate@VA +corrugated@V +corrugates@Vp +corrugating@V +corrugation@N +corrugations@p +corrupt@AVt +corrupted@AVt +corrupter@N +corruptest@? +corruptible@A +corrupting@AVt +corruption@N +corruptions@p +corruptly@v +corruptness@N +corrupts@pVt +corsage@N +corsages@p +corsair@N +corsairs@p +corset@Nt +corseted@At +corseting@At +corsets@pt +corsica@N +corsican@AN +cortes@N +corteses@? +cortex@N +cortexes@? +cortez@N +cortical@A +cortices@p +cortisone@N +cortland@N +coruscate@i +coruscated@i +coruscates@i +coruscating@i +corvette@N +corvus@N +cos@N +cosh@NV +coshed@AV +coshes@? +coshing@AV +cosier@A +cosies@A +cosiest@A +cosign@? +cosignatories@p +cosignatory@NA +cosigned@? +cosigner@? +cosigners@p +cosigning@? +cosigns@p +cosily@v +cosine@N +cosines@p +cosiness@N +cosmetic@NA +cosmetically@v +cosmetics@p +cosmetologist@N +cosmetologists@p +cosmetology@N +cosmic@A +cosmically@v +cosmogonies@p +cosmogony@N +cosmological@A +cosmologies@? +cosmologist@N +cosmologists@p +cosmology@N +cosmonaut@N +cosmonauts@p +cosmopolitan@NA +cosmopolitans@p +cosmos@N +cosmoses@p +cosponsor@? +cosponsored@? +cosponsoring@? +cosponsors@p +cossack@NA +cosset@tN +cosseted@tA +cosseting@tA +cossets@tp +cossetted@? +cossetting@? +cost@N +costar@? +costarred@? +costarring@? +costars@p +costed@A +costing@V +costings@V +costlier@A +costliest@A +costliness@N +costly@A +costs@p +costume@Nt +costumed@V +costumer@N +costumers@p +costumes@pt +costumier@N +costumiers@p +costuming@V +costumire@? +cosy@AN +cot@N +cote@N +coterie@N +coteries@p +coterminous@A +cotes@p +cotillion@N +cotillions@p +cotonou@N +cotopaxi@N +cots@p +cotswold@N +cottage@N +cottager@N +cottagers@p +cottages@p +cottaging@A +cotter@N +cotters@p +cotton@N +cottoned@A +cottoning@A +cottonmouth@N +cottonmouths@p +cottons@p +cottonseed@N +cottonseeds@p +cottontail@N +cottontails@p +cottonwood@N +cottonwoods@p +cotyledon@N +cotyledons@p +couch@Nti +couched@Ati +couches@? +couchette@N +couchettes@p +couching@N +cougar@N +cougars@p +cough@itN +coughed@itA +coughing@itA +coughs@itp +could@V +coulis@p +coulomb@N +council@N +councillor@N +councillors@p +councilman@N +councilmen@p +councilor@N +councilors@p +councils@p +councilwoman@N +councilwomen@p +counsel@NV +counseled@V +counseling@V +counselings@V +counselled@V +counselling@V +counsellor@N +counsellors@p +counselor@N +counselors@p +counsels@pV +count@VtiN +countable@A +countably@v +countdown@NV +countdowns@pV +counted@VtiA +countenance@Nt +countenanced@V +countenances@pt +countenancing@V +counter@NvAVt +counteract@t +counteracted@t +counteracting@t +counteraction@N +counteractions@p +counteracts@t +counterargument@N +counterarguments@p +counterattack@NV +counterattacked@AV +counterattacking@AV +counterattacks@pV +counterbalance@NVt +counterbalanced@V +counterbalances@pVt +counterbalancing@V +counterblast@N +counterblasts@p +counterclaim@NV +counterclaimed@AV +counterclaiming@AV +counterclaims@pV +counterclockwise@vA +counterculture@N +countercultures@p +countered@AvVt +counterespionage@N +counterexample@? +counterexamples@? +counterfeit@ANti +counterfeited@Ati +counterfeiter@N +counterfeiters@p +counterfeiting@Ati +counterfeits@pti +counterfoil@N +counterfoils@p +countering@AvVt +counterinsurgency@N +counterintelligence@N +countermand@VtN +countermanded@VtA +countermanding@VtA +countermands@Vtp +countermeasure@N +countermeasures@p +counteroffensive@N +counteroffensives@p +counteroffer@N +counteroffers@p +counterpane@N +counterpanes@p +counterpart@N +counterparts@p +counterpoint@Nt +counterpointed@At +counterpointing@At +counterpoints@pt +counterproductive@A +counterrevolution@N +counterrevolutionaries@p +counterrevolutionary@NA +counterrevolutions@p +counters@pvVt +countersank@V +countersign@VtN +countersigned@VtA +countersigning@VtA +countersigns@Vtp +countersink@VN +countersinking@V +countersinks@Vp +countersunk@V +countertenor@N +countertenors@p +countervail@Vt +countervailed@Vt +countervailing@Vt +countervails@Vt +counterweight@N +counterweights@p +countess@N +countesses@? +counties@p +counting@VtiA +countless@A +countries@p +countrified@A +country@N +countryman@N +countrymen@p +countryside@N +countrysides@p +countrywide@? +countrywoman@N +countrywomen@p +counts@Vtip +county@NA +countywide@? +coup@NV +coupe@N +couperin@N +coupes@p +couple@Nrti +coupled@V +couples@prti +couplet@N +couplets@p +coupling@N +couplings@p +coupon@N +coupons@p +coups@p +courage@N +courageous@A +courageously@v +courbet@N +courgette@N +courgettes@p +courier@N +couriered@A +couriering@A +couriers@p +course@Nit +coursebook@? +coursebooks@p +coursed@AV +courser@N +courses@p +coursework@? +coursing@N +court@N +courted@A +courteous@A +courteously@v +courteousness@N +courtesan@N +courtesans@p +courtesies@p +courtesy@N +courthouse@N +courthouses@p +courtier@N +courtiers@p +courting@A +courtlier@A +courtliest@A +courtliness@N +courtly@A +courtroom@N +courtrooms@p +courts@p +courtship@N +courtships@p +courtyard@N +courtyards@p +couscous@N +cousin@N +cousins@N +cousteau@N +couture@N +couturier@N +couturiers@p +cove@Nt +coven@N +covenant@N +covenanted@A +covenanting@A +covenants@p +covens@p +coventries@? +coventry@N +cover@VitN +coverage@N +coverall@N +coveralls@p +covered@VitA +covering@N +coverings@p +coverlet@N +coverlets@p +covers@N +covert@AN +covertly@v +coverts@p +coves@pt +covet@t +coveted@t +coveting@t +covetous@A +covetously@v +covetousness@N +covets@t +covey@N +coveys@p +cow@Nt +coward@N +cowardice@N +cowardliness@N +cowardly@A +cowards@p +cowbell@N +cowbells@p +cowbird@N +cowbirds@p +cowboy@N +cowboys@p +cowcatcher@N +cowcatchers@p +cowed@At +cower@i +cowered@i +cowering@i +cowers@i +cowgirl@N +cowgirls@p +cowhand@? +cowhands@p +cowhide@N +cowhides@p +cowing@At +cowl@N +cowley@N +cowlick@N +cowlicks@p +cowling@N +cowlings@p +cowls@p +coworker@? +coworkers@p +cowpat@N +cowpats@p +cowper@N +cowpoke@N +cowpokes@p +cowpox@N +cowpuncher@N +cowpunchers@p +cowrie@N +cowries@p +cows@pt +cowshed@N +cowsheds@p +cowslip@N +cowslips@p +cox@N +coxcomb@N +coxcombs@p +coxed@A +coxes@? +coxing@A +coxswain@N +coxswains@p +coy@A +coyer@? +coyest@? +coyly@v +coyness@N +coyote@N +coyotes@p +coypu@N +coypus@p +cozen@V +cozened@V +cozening@V +cozens@N +cozier@A +cozies@A +coziest@A +cozily@v +coziness@N +cozy@AN +cpa@N +cpi@N +cpo@N +cpr@? +cpu@? +cr@N +crab@N +crabbe@N +crabbed@A +crabbier@A +crabbiest@A +crabbily@? +crabbiness@? +crabbing@NV +crabby@A +crabgrass@? +crabs@p +crabwise@Av +crack@VtiNA +crackdown@N +crackdowns@p +cracked@A +cracker@N +crackerjack@AN +crackerjacks@p +crackers@p +cracking@AvN +crackings@pv +crackle@VtiN +crackled@V +crackles@Vtip +cracklier@A +crackliest@A +crackling@N +cracklings@p +crackly@A +crackpot@NA +crackpots@p +cracks@Vtip +crackup@? +crackups@p +cradle@Nti +cradled@V +cradles@pti +cradling@N +craft@Nt +crafted@At +craftier@A +craftiest@A +craftily@v +craftiness@N +crafting@At +crafts@pt +craftsman@N +craftsmanship@N +craftsmen@p +craftspeople@? +craftswoman@? +craftswomen@? +crafty@A +crag@N +craggier@A +craggiest@A +craggy@A +crags@p +craig@N +cram@N +crammed@V +crammer@N +crammers@p +cramming@V +cramp@Nt +cramped@A +cramping@At +crampon@N +crampons@p +cramps@pt +crams@p +cranach@N +cranberries@p +cranberry@N +crane@N +craned@V +cranes@p +crania@p +cranial@A +craning@V +cranium@N +craniums@p +crank@NtiA +crankcase@N +crankcases@p +cranked@Ati +crankier@A +crankiest@A +crankiness@N +cranking@Ati +cranks@pti +crankshaft@N +crankshafts@p +cranky@A +cranmer@N +crannies@p +cranny@N +crap@NV +crape@N +crapes@p +crapped@V +crapper@? +crappers@p +crappier@? +crappiest@? +crapping@V +crappy@? +craps@N +crash@ViN +crashed@ViA +crashes@? +crashing@A +crass@A +crasser@? +crassest@? +crassly@v +crassness@N +crate@Nt +crated@V +crater@N +cratered@A +cratering@A +craters@p +crates@pt +crating@V +cravat@N +cravats@p +crave@Vt +craved@V +craven@AN +cravenly@v +cravens@p +craves@Vt +craving@NV +cravings@pV +craw@N +crawfish@N +crawfishes@? +crawl@iN +crawled@iA +crawler@N +crawlers@p +crawling@iA +crawls@ip +crawlspace@? +crawlspaces@? +craws@p +cray@N +crayfish@N +crayfishes@? +crayola@? +crayolas@p +crayon@NV +crayoned@V +crayoning@V +crayons@pV +crays@p +craze@NVt +crazed@A +crazes@pVt +crazier@A +crazies@? +craziest@A +crazily@v +craziness@N +crazing@V +crazy@A +creak@ViN +creaked@ViA +creakier@A +creakiest@A +creakily@v +creakiness@N +creaking@ViA +creaks@Vip +creaky@A +cream@Nti +creamed@Ati +creamer@N +creameries@p +creamers@p +creamery@N +creamier@A +creamiest@A +creaminess@N +creaming@Ati +creams@pti +creamy@A +crease@NVt +creased@V +creases@pVt +creasing@V +create@ti +created@V +creates@ti +creating@V +creation@N +creationism@N +creationisms@p +creationist@N +creationists@p +creations@p +creative@A +creatively@v +creativeness@N +creatives@p +creativity@N +creator@N +creators@p +creature@N +creatures@p +cred@A +credence@N +credential@NA +credentialed@A +credentialing@A +credentials@p +credenza@N +credenzas@p +credibility@N +credible@A +credibly@v +credit@Nt +creditable@A +creditably@v +credited@At +crediting@At +creditor@N +creditors@p +credits@p +creditworthiness@? +creditworthy@? +credo@N +credos@p +credulity@N +credulous@A +credulously@v +credulousness@N +cree@N +creed@N +creeds@p +creek@N +creeks@p +creel@N +creels@p +creep@VN +creeper@N +creepers@p +creepier@A +creepiest@A +creepily@v +creepiness@N +creeping@VA +creeps@p +creepy@A +cremate@t +cremated@t +cremates@t +cremating@t +cremation@N +cremations@p +crematoria@? +crematories@p +crematorium@N +crematoriums@p +crematory@AN +crenelate@tA +crenelated@A +crenelates@tp +crenelating@V +crenellate@t +crenellated@t +crenellates@t +crenellating@t +creole@NA +creoles@p +creon@N +creosote@NV +creosoted@V +creosotes@pV +creosoting@V +crepe@Nt +crepes@p +crept@V +crepuscular@A +crescendi@? +crescendo@NAvi +crescendos@pvi +crescent@N +crescents@p +cress@N +crest@Nit +crested@A +crestfallen@A +cresting@N +crests@pit +cretaceous@A +cretan@AN +crete@N +cretin@N +cretinous@A +cretins@p +crevasse@Nt +crevasses@pt +crevice@N +crevices@p +crew@NV +crewed@AV +crewing@AV +crewman@N +crewmen@p +crews@pV +crib@NV +cribbage@N +cribbed@V +cribbing@NV +cribs@pV +crichton@N +crick@N +cricked@A +cricket@Ni +cricketer@N +cricketers@p +cricketing@Ai +crickets@pi +cricking@A +cricks@p +cried@V +crier@N +criers@p +cries@V +crikey@! +crime@N +crimea@N +crimean@A +crimes@p +criminal@NA +criminalise@? +criminalised@? +criminalises@? +criminalising@? +criminality@N +criminalize@? +criminalized@? +criminalizes@? +criminalizing@? +criminally@v +criminals@p +criminologist@N +criminologists@p +criminology@N +crimp@tNV +crimped@tAV +crimping@tAV +crimps@tpV +crimson@NVi +crimsoned@AVi +crimsoning@AVi +crimsons@pVi +cringe@iN +cringed@V +cringes@ip +cringing@V +crinkle@VN +crinkled@V +crinkles@Vp +crinklier@A +crinkliest@A +crinkling@V +crinkly@A +crinoline@N +crinolines@p +criollo@NA +cripes@! +cripple@Nt +crippled@At +cripples@pt +crippleware@? +cripplewares@? +crippling@A +cripplingly@v +crises@p +crisis@N +crisp@AVN +crispbread@N +crispbreads@p +crisped@AV +crisper@N +crispest@? +crispier@A +crispiest@A +crisping@AV +crisply@v +crispness@N +crisps@pV +crispy@A +crisscross@VANv +crisscrossed@VAv +crisscrosses@? +crisscrossing@VAv +criteria@? +criterion@N +criterions@p +critic@N +critical@A +critically@v +criticise@it +criticised@it +criticises@it +criticising@it +criticism@N +criticisms@p +criticize@V +criticized@V +criticizes@V +criticizing@V +critics@p +critique@N +critiqued@A +critiques@p +critiquing@A +critter@N +critters@p +croak@iN +croaked@iA +croaking@iA +croaks@ip +croat@NA +croatia@N +croatian@AN +croatians@p +croats@p +croce@N +crochet@VN +crocheted@VA +crocheting@VA +crochets@Vp +croci@? +crock@NVti +crocked@A +crockery@N +crockett@N +crocks@pVti +crocodile@N +crocodiles@p +crocus@N +crocuses@p +croesus@N +croft@N +crofter@N +crofters@p +crofting@A +crofts@p +croissant@N +croissants@p +cromwell@N +cromwellian@A +crone@N +crones@p +cronies@p +cronus@N +crony@N +cronyism@N +crook@NVA +crooked@A +crookeder@? +crookedest@? +crookedly@v +crookedness@N +crookes@N +crooking@AV +crooks@N +croon@VN +crooned@VA +crooner@N +crooners@p +crooning@VA +croons@Vp +crop@NV +cropped@V +cropper@N +croppers@p +cropping@V +crops@pV +croquet@NV +croquette@N +croquettes@p +crosby@N +crosier@N +crosiers@p +cross@N +crossbar@N +crossbars@p +crossbeam@N +crossbeams@p +crossbones@p +crossbow@N +crossbows@p +crossbred@AN +crossbreed@VN +crossbreeding@V +crossbreeds@Vp +crosscheck@VN +crosschecked@VA +crosschecking@VA +crosschecks@Vp +crosscurrent@N +crosscurrents@p +crossed@A +crosser@? +crosses@p +crossest@? +crossfire@N +crossfires@p +crossing@N +crossings@p +crossly@v +crossness@N +crossover@N +crossovers@p +crosspatch@N +crosspatches@? +crosspiece@N +crosspieces@p +crossroad@N +crossroads@N +crosstown@AvN +crosswalk@N +crosswalks@p +crossways@v +crosswind@N +crosswinds@p +crosswise@Av +crossword@? +crosswords@p +crotch@N +crotches@? +crotchet@N +crotchets@p +crotchety@A +crouch@itN +crouched@itA +crouches@? +crouching@itA +croup@Ni +croupier@N +croupiers@p +croupiest@A +croupy@A +crow@N +crowbar@N +crowbars@p +crowd@Nit +crowded@A +crowding@Ait +crowds@pit +crowed@V +crowing@A +crown@N +crowned@A +crowning@A +crowns@N +crows@p +crozier@N +croziers@p +crt@N +crts@p +crucial@A +crucially@v +crucible@N +crucibles@p +crucified@t +crucifies@? +crucifix@N +crucifixes@? +crucifixion@N +crucifixions@p +cruciform@AN +cruciforms@p +crucify@V +crucifying@t +crud@N! +cruddier@? +cruddiest@? +cruddy@? +crude@AN +crudely@v +crudeness@N +cruder@A +crudest@A +crudities@p +crudity@N +cruel@A +crueler@? +cruelest@? +crueller@? +cruellest@? +cruelly@v +cruelties@p +cruelty@N +cruet@N +cruets@p +cruft@? +crufted@? +crufties@? +crufting@? +crufts@p +crufty@? +cruikshank@N +cruise@iN +cruised@iA +cruiser@N +cruisers@p +cruises@ip +cruising@iA +cruller@N +crullers@p +crumb@NtA +crumbed@At +crumbier@A +crumbiest@A +crumbing@At +crumble@ViN +crumbled@V +crumbles@Vip +crumblier@A +crumbliest@A +crumbling@V +crumbly@A +crumbs@! +crumby@A +crummier@A +crummiest@A +crummy@AN +crumpet@N +crumpets@p +crumple@ViN +crumpled@V +crumples@Vip +crumpling@V +crunch@VN +crunched@VA +cruncher@? +crunches@? +crunchier@A +crunchiest@A +crunching@VA +crunchy@A +crusade@Ni +crusaded@V +crusader@N +crusaders@p +crusades@pi +crusading@V +crush@ViN +crushed@ViA +crusher@N +crushers@p +crushes@? +crushing@A +crushingly@v +crust@NV +crustacean@NA +crustaceans@p +crusted@A +crustier@A +crustiest@A +crusting@AV +crusts@pV +crusty@A +crutch@Nt +crutches@? +crux@N +cruxes@? +cry@VitN +crybabies@p +crybaby@N +crying@A +cryings@p +cryogenic@A +cryogenics@N +cryonics@N +crypt@N +cryptic@A +cryptically@v +cryptogram@N +cryptograms@p +cryptographer@N +cryptographers@p +cryptography@Nv +crypts@p +crystal@N +crystalize@? +crystalized@? +crystalizes@? +crystalizing@? +crystalline@A +crystallisation@N +crystallise@ti +crystallised@ti +crystallises@ti +crystallising@ti +crystallization@N +crystallize@V +crystallized@V +crystallizes@V +crystallizing@V +crystallographic@A +crystallography@N +crystals@p +cs@N +cst@N +ct@N +ctesiphon@N +cu@N +cub@N +cuba@N +cuban@AN +cubans@p +cubbyhole@N +cubbyholes@p +cube@NVt +cubed@V +cubes@pVt +cubic@AN +cubical@A +cubicle@N +cubicles@p +cubing@V +cubinged@V +cubinging@V +cubings@V +cubism@N +cubist@N +cubists@p +cubit@N +cubits@p +cuboid@AN +cuboids@p +cubs@p +cuckold@Nt +cuckolded@At +cuckolding@At +cuckolds@pt +cuckoo@NA!V +cuckoos@p +cucumber@N +cucumbers@p +cud@N +cuddle@ViN +cuddled@V +cuddles@Vip +cuddlier@? +cuddliest@? +cuddling@V +cuddly@A +cudgel@Nt +cudgeled@V +cudgeling@V +cudgelings@V +cudgelled@V +cudgelling@V +cudgellings@V +cudgels@pt +cuds@p +cue@NV +cued@V +cueing@AV +cues@pV +cuff@Nt +cuffed@At +cuffing@At +cufflink@? +cufflinks@p +cuffs@p +cuing@V +cuisinart@? +cuisine@N +cuisines@p +culbertson@N +culinary@A +cull@N +culled@A +cullender@N +cullenders@p +culling@A +culls@p +culminate@Vi +culminated@V +culminates@Vi +culminating@V +culmination@N +culminations@p +culotte@? +culottes@p +culpability@N +culpable@A +culpably@v +culprit@N +culprits@p +cult@N +cultivable@A +cultivate@t +cultivated@A +cultivates@t +cultivating@t +cultivation@N +cultivator@N +cultivators@p +cults@p +cultural@A +culturally@v +culture@Nt +cultured@A +cultures@pt +culturing@V +culvert@N +culverts@p +cum@P +cumberland@N +cumbersome@A +cumin@N +cummerbund@N +cummerbunds@p +cumming@? +cummings@N +cumquat@N +cumquats@p +cums@P +cumulative@A +cumulatively@v +cumuli@? +cumulus@N +cuneiform@AN +cunnilingus@N +cunning@AN +cunninger@? +cunningest@? +cunningly@v +cunt@N +cunts@p +cup@NVt +cupboard@N +cupboards@p +cupcake@N +cupcakes@p +cupful@N +cupfuls@p +cupid@N +cupidity@N +cupids@p +cupola@N +cupolas@p +cuppa@N +cuppas@p +cupped@A +cupping@N +cups@pVt +cupsful@? +cur@N +curable@A +curacao@N +curacies@p +curacy@N +curate@N +curated@A +curates@p +curating@A +curative@AN +curatives@p +curator@N +curators@p +curb@Nt +curbed@At +curbing@N +curbs@pt +curbside@? +curd@NV +curdle@V +curdled@ti +curdles@V +curdling@ti +curds@pV +cure@tiN +cured@V +curer@N +cures@tip +curfew@N +curfews@p +curie@N +curies@p +curing@V +curio@N +curios@p +curiosities@p +curiosity@N +curious@A +curiously@v +curitiba@N +curl@itN +curled@itA +curler@N +curlers@p +curlew@N +curlews@p +curlicue@N +curlicued@A +curlicues@p +curlicuing@A +curlier@A +curliest@A +curliness@N +curling@N +curls@itp +curly@A +curlycue@N +curlycues@p +curmudgeon@N +curmudgeonly@A +curmudgeons@p +currant@N +currants@p +currencies@p +currency@N +current@AN +currently@v +currents@p +curricula@? +curricular@A +curriculum@N +curriculums@p +curried@t +curries@p +curry@N +currycomb@N +currycombed@A +currycombing@A +currycombs@p +currying@pt +curs@p +curse@NV +cursed@A +curses@! +cursing@V +cursive@AN +cursor@N +cursorily@v +cursors@p +cursory@A +curst@VA +curt@A +curtail@t +curtailed@t +curtailing@t +curtailment@N +curtailments@p +curtails@t +curtain@Nt +curtained@At +curtaining@At +curtains@N +curter@? +curtest@? +curtly@v +curtness@N +curtsey@N +curtseyed@A +curtseying@p +curtseys@p +curtsied@p +curtsies@p +curtsy@NV +curtsying@p +curvaceous@A +curvacious@p +curvature@N +curvatures@p +curve@NV +curved@NV +curves@pV +curvier@A +curviest@A +curving@NV +curvy@A +cushier@A +cushiest@A +cushion@Nt +cushioned@At +cushioning@At +cushions@pt +cushy@A +cusp@N +cuspid@N +cuspidor@N +cuspidors@p +cuspids@p +cusps@p +cuss@NV +cussed@A +cussedly@v +cussedness@N +cusses@? +cussing@AV +custard@N +custards@p +custer@N +custodial@AN +custodian@N +custodians@p +custody@N +custom@NA +customarily@v +customary@AN +customer@N +customers@p +customisation@? +customise@? +customised@? +customises@? +customising@? +customization@? +customize@t +customized@t +customizes@t +customizing@t +customs@N +cut@N +cutaway@N +cutaways@p +cutback@NV +cutbacks@pV +cute@A +cutely@v +cuteness@N +cuter@A +cutesier@? +cutesiest@? +cutest@A +cutesy@? +cutey@N +cuteys@p +cuticle@N +cuticles@p +cutie@N +cuties@p +cutlass@N +cutlasses@? +cutlery@N +cutlet@N +cutlets@p +cutoff@N +cutoffs@p +cutout@N +cutouts@p +cuts@N +cutter@N +cutters@p +cutthroat@NA +cutthroats@p +cutting@NA +cuttings@p +cuttlefish@N +cuttlefishes@? +cutup@N +cutups@p +cuzco@N +cyan@NA +cyanide@N +cybele@N +cybernetic@A +cybernetics@N +cyberpunk@? +cyberpunks@p +cyberspace@? +cyberspaces@? +cyborg@? +cyborgs@p +cyclades@p +cyclamen@NA +cyclamens@p +cycle@Nti +cycled@V +cycles@pti +cyclic@A +cyclical@? +cyclically@v +cycling@N +cyclist@N +cyclists@p +cyclone@NA +cyclones@p +cyclonic@A +cyclops@N +cyclotron@N +cyclotrons@p +cygnet@N +cygnets@p +cygnus@N +cylinder@Nt +cylinders@pt +cylindrical@A +cymbal@N +cymbals@p +cynic@N +cynical@A +cynically@v +cynicism@N +cynics@p +cynosure@N +cynosures@p +cynthia@N +cypher@NV +cypress@N +cypresses@? +cyprian@AN +cypriot@NA +cypriots@p +cyprus@N +cyril@N +cyrillic@AN +cyrus@N +cyst@N +cystic@A +cystitis@N +cysts@p +cytology@N +cytoplasm@N +czar@N +czarina@N +czarinas@p +czarism@N +czarist@AN +czarists@p +czars@p +czech@AN +czechoslovakia@N +czechoslovakian@AN +czechoslovakians@p +czechs@p +czerny@N +da@N +dab@N +dabbed@V +dabbing@V +dabble@Vit +dabbled@V +dabbler@N +dabblers@p +dabbles@Vit +dabbling@V +dabs@p +dacca@N +dacha@N +dachas@p +dachau@N +dachshund@N +dachshunds@p +dacron@N +dacrons@p +dactyl@N +dactylic@AN +dactylics@p +dactyls@p +dad@N +dada@NA +dadaism@N +daddies@p +daddy@N +dado@Nt +dadoes@p +dados@p +dads@p +daedalus@N +daemon@N +daemons@p +daffier@A +daffiest@A +daffodil@N +daffodils@p +daffy@A +daft@A +dafter@? +daftest@? +daftness@N +dag@N +dagger@Nt +daggers@pt +dago@N +dagoes@p +dagos@p +dags@p +daguerre@N +daguerreotype@N +daguerreotyped@V +daguerreotypes@p +daguerreotyping@V +dagwood@N +dahlia@N +dahlias@p +dahomey@N +dailies@p +daily@AN +daintier@A +dainties@A +daintiest@A +daintily@v +daintiness@N +dainty@AN +daiquiri@N +daiquiris@p +dairies@p +dairy@N +dairying@N +dairymaid@N +dairymaids@p +dairyman@N +dairymen@p +dais@N +daises@? +daisies@p +daisy@N +dakar@N +dakota@N +dakotan@AN +dakotas@p +dale@N +dales@p +dali@N +dallas@N +dalliance@N +dalliances@p +dallied@V +dallies@? +dally@V +dallying@V +dalmatian@NA +dalmatians@p +dalton@N +dam@N +damage@Nti +damaged@V +damages@p +damaging@V +damascus@N +damask@Nt +damasked@At +damasking@At +damasks@pt +dame@N +dames@p +damien@N +dammed@V +damming@V +dammit@! +damn@!AvN +damnable@A +damnably@v +damnation@N! +damndest@A +damned@Av +damnedest@N +damning@A +damns@!pv +damocles@N +damp@ANt +damped@At +dampen@Vt +dampened@Vt +dampening@Vt +dampens@Vt +damper@N +dampers@p +dampest@? +damping@At +damply@v +dampness@N +damps@pt +dams@p +damsel@N +damsels@p +damson@N +damsons@p +dan@N +dana@N +dance@itN +danced@V +dancer@N +dancers@p +dances@itp +dancing@V +dandelion@N +dandelions@p +dander@Ni +dandier@p +dandies@p +dandiest@p +dandified@t +dandifies@? +dandify@V +dandifying@t +dandle@t +dandled@t +dandles@t +dandling@t +dandruff@N +dandy@N +dane@N +danelaw@N +danes@p +dang@!vA +danger@N +dangerous@A +dangerously@v +dangers@p +dangle@VtN +dangled@V +dangles@Vtp +dangling@V +daniel@N +daniels@N +danish@AN +dank@A +danker@? +dankest@? +dankly@v +dankness@N +dante@N +danton@N +danube@N +danubian@A +daphne@N +dapper@A +dapperer@? +dapperest@? +dapple@VNA +dappled@AV +dapples@Vp +dappling@V +dardanelles@N +dare@N +dared@V +daredevil@NA +daredevils@p +dares@N +daresay@it +darfur@N +daring@AN +daringly@v +darius@N +darjeeling@N +dark@ANV +darken@N +darkened@A +darkening@A +darkens@p +darker@? +darkest@? +darkie@N +darkies@p +darkly@v +darkness@N +darkroom@N +darkrooms@p +darling@N +darlings@p +darn@N +darned@vA +darneder@? +darnedest@? +darning@N +darns@p +darrow@N +dart@N +dartboard@N +dartboards@p +darted@A +darting@A +dartmoor@N +dartmouth@N +darts@N +darvon@N +darwin@N +darwinian@AN +darwinism@NA +dash@N +dashboard@N +dashboards@p +dashed@Av +dashes@? +dashiki@N +dashikis@p +dashing@A +dashingly@v +dastardly@A +dat@N +data@N +databank@? +databanks@p +database@? +databases@? +datamation@? +datamations@p +date@Nti +datebook@? +datebooks@p +dated@A +dateline@N +datelined@V +datelines@p +datelining@V +dates@p +dating@V +dative@AN +datives@p +datum@N +daub@N +daubed@A +dauber@N +daubers@p +daubing@A +daubs@p +daughter@N +daughters@p +daumier@N +daunt@t +daunted@t +daunting@t +dauntingly@v +dauntless@A +dauntlessly@v +dauntlessness@N +daunts@t +dauphin@N +dauphins@p +davao@N +davenport@N +davenports@p +david@N +davids@p +davies@N +davis@N +davit@N +davits@p +davy@N +dawdle@i +dawdled@V +dawdler@N +dawdlers@p +dawdles@i +dawdling@V +dawes@N +dawn@N +dawned@A +dawning@A +dawns@p +dawson@N +day@N +daybed@? +daybeds@p +daybreak@N +daycare@? +daydream@Ni +daydreamed@Ai +daydreamer@N +daydreamers@p +daydreaming@Ai +daydreams@pi +daydreamt@? +daylight@N +daylights@p +daylong@Av +days@v +daytime@N +dayton@N +daze@tN +dazed@V +dazes@tp +dazing@V +dazzle@VtN +dazzled@V +dazzles@Vtp +dazzling@V +dazzlingly@v +db@N +dc@N +dd@N +dded@A +dding@A +dds@N +ddt@N +ddts@p +de@N +deacon@N +deaconess@N +deaconesses@? +deacons@p +deactivate@t +deactivated@V +deactivates@t +deactivating@V +dead@ANv +deadbeat@N +deadbeats@p +deadbolt@? +deadbolts@p +deaden@Vt +deadened@Vt +deadening@N +deadens@Vt +deader@? +deadest@? +deadhead@Ni +deadheaded@Ai +deadheading@Ai +deadheads@pi +deadlier@A +deadliest@A +deadline@N +deadlines@p +deadliness@N +deadlock@NV +deadlocked@AV +deadlocking@AV +deadlocks@pV +deadly@Av +deadpan@Av +deadpanned@V +deadpanning@V +deadpans@pv +deadwood@N +deaf@A +deafen@t +deafened@t +deafening@N +deafens@t +deafer@? +deafest@? +deafness@N +deal@VtNA +dealer@N +dealers@p +dealership@N +dealerships@p +dealing@N +dealings@p +deals@Vtp +dealt@V +dean@N +deaneries@p +deanery@N +deans@p +dear@A!Nv +dearer@? +dearest@? +dearests@p +dearie@? +dearies@p +dearly@v +dearness@N +dears@p!v +dearth@N +dearths@p +deary@N +death@N +deathbed@N +deathbeds@p +deathblow@N +deathblows@p +deathless@A +deathlike@A +deathly@A +deaths@p +deathtrap@N +deathtraps@p +deaves@t +deb@N +debacle@N +debacles@p +debar@V +debark@V +debarkation@N +debarked@V +debarking@V +debarks@V +debarment@N +debarred@t +debarring@t +debars@V +debase@t +debased@t +debasement@N +debasements@p +debases@t +debasing@t +debatable@A +debate@NV +debated@V +debater@N +debaters@p +debates@pV +debating@V +debauch@VtN +debauched@A +debauchee@N +debauchees@p +debaucheries@p +debauchery@N +debauches@? +debauching@VtA +debenture@N +debentures@p +debilitate@t +debilitated@t +debilitates@t +debilitating@t +debilitation@N +debilities@p +debility@N +debit@Nt +debited@At +debiting@At +debits@pt +debonair@A +debonairly@v +deborah@N +debrief@V +debriefed@V +debriefing@V +debriefings@p +debriefs@V +debris@N +debs@N +debt@N +debtor@N +debtors@p +debts@p +debug@? +debugged@t +debugger@? +debuggers@p +debugging@t +debugs@Vp +debunk@t +debunked@t +debunking@t +debunks@t +debussy@N +debut@N +debuted@A +debuting@A +debuts@p +dec@N +decade@N +decadence@N +decadent@AN +decadently@v +decadents@p +decades@p +decaf@? +decaff@? +decaffeinate@t +decaffeinated@t +decaffeinates@t +decaffeinating@t +decaffs@p +decafs@p +decal@NV +decalogue@N +decals@pV +decamp@i +decamped@i +decamping@i +decamps@i +decant@V +decanted@V +decanter@N +decanters@p +decanting@V +decants@V +decapitate@t +decapitated@t +decapitates@t +decapitating@t +decapitation@N +decapitations@p +decathlete@? +decathletes@? +decathlon@N +decathlons@p +decatur@N +decay@N +decayed@A +decaying@A +decays@p +deccan@N +decease@Ni +deceased@A +deceases@pi +deceasing@V +deced@A +decedent@N +decedents@p +deceit@N +deceitful@A +deceitfully@v +deceitfulness@N +deceits@p +deceive@t +deceived@V +deceiver@N +deceivers@p +deceives@t +deceiving@V +decelerate@V +decelerated@ti +decelerates@V +decelerating@ti +deceleration@N +december@N +decembers@p +decencies@p +decency@N +decent@A +decently@v +decentralisation@N +decentralise@t +decentralised@t +decentralises@t +decentralising@t +decentralization@N +decentralize@VA +decentralized@t +decentralizes@Vp +decentralizing@t +deception@N +deceptions@p +deceptive@A +deceptively@v +deceptiveness@N +decibel@N +decibels@p +decide@Vti +decided@A +decidedly@v +decider@N +deciders@p +decides@Vti +deciding@V +deciduous@A +decimal@NA +decimalisation@N +decimalization@N +decimals@p +decimate@t +decimated@t +decimates@t +decimating@t +decimation@N +decing@A +decipher@t +decipherable@A +deciphered@t +deciphering@t +deciphers@t +decision@N +decisions@p +decisive@A +decisively@v +decisiveness@N +deck@N +deckchair@? +deckchairs@p +decked@A +decker@N +deckhand@? +deckhands@p +decking@N +deckle@N +deckles@p +decks@p +declaim@Vi +declaimed@Vi +declaiming@Vi +declaims@Vi +declamation@N +declamations@p +declamatory@A +declarable@A +declaration@N +declarations@p +declarative@A +declare@Vi +declared@A +declares@Vi +declaring@V +declassification@N +declassified@t +declassifies@? +declassify@V +declassifying@t +declension@N +declensions@p +declination@N +decline@ViN +declined@V +declines@Vip +declining@V +declivities@p +declivity@N +decode@V +decoded@V +decoder@N +decoders@p +decodes@V +decoding@V +decolonisation@N +decolonise@t +decolonised@t +decolonises@t +decolonising@t +decolonization@N +decolonize@t +decolonized@t +decolonizes@t +decolonizing@t +decommission@t +decommissioned@t +decommissioning@t +decommissions@t +decompose@V +decomposed@A +decomposes@V +decomposing@V +decomposition@N +decompress@V +decompressed@V +decompresses@? +decompressing@V +decompression@N +decongestant@AN +decongestants@p +deconstruct@? +deconstructed@? +deconstructing@? +deconstruction@? +deconstructionism@? +deconstructionist@? +deconstructionists@p +deconstructions@p +deconstructs@p +decontaminate@t +decontaminated@t +decontaminates@t +decontaminating@t +decontamination@N +decontrol@V +decontrolled@V +decontrolling@V +decontrols@V +decor@? +decorate@t +decorated@A +decorates@t +decorating@t +decoration@N +decorations@p +decorative@A +decoratively@v +decorator@N +decorators@p +decorous@A +decorously@v +decors@p +decorum@N +decouple@t +decoupled@t +decouples@t +decoupling@N +decoy@NV +decoyed@AV +decoying@AV +decoys@pV +decrease@VN +decreased@V +decreases@Vp +decreasing@V +decree@NV +decreed@V +decreeing@V +decrees@pV +decremented@A +decrements@p +decrepit@A +decrepitude@N +decrescendi@? +decrescendo@N +decrescendos@p +decried@t +decries@? +decriminalisation@? +decriminalise@? +decriminalised@? +decriminalises@? +decriminalising@? +decriminalization@? +decriminalize@? +decriminalized@? +decriminalizes@? +decriminalizing@? +decry@V +decrying@t +decs@p +dedicate@tA +dedicated@A +dedicates@tp +dedicating@V +dedication@N +dedications@p +deduce@t +deduced@t +deduces@t +deducible@A +deducing@t +deduct@t +deducted@t +deductible@AN +deductibles@p +deducting@t +deduction@N +deductions@p +deductive@A +deducts@t +dee@N +deed@Nt +deeded@At +deeding@At +deeds@pt +deejay@N +deejays@p +deem@t +deemed@t +deeming@t +deems@N +deep@ANv +deepen@V +deepened@V +deepening@V +deepens@V +deeper@? +deepest@? +deeply@v +deepness@N +deeps@pv +deer@N +deers@p +deerskin@N +deerstalker@N +deerstalkers@p +deescalate@ti +deescalated@ti +deescalates@ti +deescalating@ti +deface@t +defaced@t +defacement@N +defaces@t +defacing@t +defamation@N +defamatory@A +defame@t +defamed@t +defames@t +defaming@t +default@Ni +defaulted@Ai +defaulter@N +defaulters@p +defaulting@Ai +defaults@pi +defeat@tN +defeated@tA +defeating@tA +defeatism@NA +defeatist@NA +defeatists@p +defeats@tp +defecate@it +defecated@V +defecates@it +defecating@V +defecation@N +defect@NVi +defected@AVi +defecting@AVi +defection@N +defections@p +defective@A +defectively@v +defectiveness@N +defectives@p +defector@N +defectors@p +defects@pVi +defence@N +defenced@A +defenceless@A +defences@p +defencing@A +defend@Vt +defendant@NA +defendants@p +defended@Vt +defender@N +defenders@p +defending@Vt +defends@Vt +defenestration@N +defenestrations@p +defense@N +defensed@A +defenseless@A +defenses@p +defensible@A +defensing@A +defensive@AN +defensively@v +defensiveness@N +defer@V +deference@N +deferential@A +deferentially@v +deferment@N +deferments@p +deferral@N +deferrals@p +deferred@A +deferring@Vt +defers@V +defiance@N +defiant@A +defiantly@v +defibrillator@N +defibrillators@p +deficiencies@p +deficiency@N +deficient@A +deficit@N +deficits@p +defied@V +defies@V +defile@tNV +defiled@Vt +defilement@N +defiles@tpV +defiling@Vt +definable@A +define@t +defined@t +definer@N +definers@p +defines@t +defining@t +definite@A +definitely@v +definiteness@N +definition@N +definitions@p +definitive@AN +definitively@v +deflate@Vt +deflated@V +deflates@Vt +deflating@V +deflation@NA +deflationary@A +deflect@V +deflected@A +deflecting@V +deflection@N +deflections@p +deflector@N +deflectors@p +deflects@V +deflower@t +deflowered@t +deflowering@t +deflowers@t +defoe@N +defog@? +defogged@? +defogger@? +defoggers@p +defogging@? +defogs@p +defoliant@N +defoliants@p +defoliate@VA +defoliated@V +defoliates@Vp +defoliating@V +defoliation@N +deforest@tN +deforestation@N +deforested@tA +deforesting@tA +deforests@tp +deform@Vt +deformation@N +deformations@p +deformed@A +deforming@Vt +deformities@p +deformity@N +deforms@Vt +defraud@t +defrauded@t +defrauding@t +defrauds@t +defray@t +defrayal@N +defrayed@t +defraying@t +defrays@t +defrock@t +defrocked@t +defrocking@t +defrocks@t +defrost@V +defrosted@V +defroster@N +defrosters@p +defrosting@V +defrosts@V +deft@A +defter@? +deftest@? +deftly@v +deftness@N +defunct@A +defuse@t +defused@t +defuses@t +defusing@t +defy@V +defying@V +degas@N +degeneracy@N +degenerate@ViAN +degenerated@V +degenerates@Vip +degenerating@V +degeneration@N +degenerative@A +degradable@A +degradation@N +degrade@t +degraded@A +degrades@t +degrading@A +degree@NA +degrees@p +dehumanisation@N +dehumanise@t +dehumanised@t +dehumanises@t +dehumanising@t +dehumanization@N +dehumanize@t +dehumanized@t +dehumanizes@t +dehumanizing@t +dehumidified@t +dehumidifier@N +dehumidifiers@p +dehumidifies@? +dehumidify@V +dehumidifying@t +dehydrate@V +dehydrated@V +dehydrates@V +dehydrating@V +dehydration@N +deice@t +deiced@t +deicer@N +deicers@p +deices@t +deicing@t +deification@N +deified@t +deifies@? +deify@V +deifying@t +deign@t +deigned@t +deigning@t +deigns@t +deimos@N +deirdre@N +deism@NA +deities@p +deity@N +deject@tA +dejected@A +dejectedly@v +dejecting@tA +dejection@N +dejects@tp +del@N +delacroix@N +delaware@N +delawarean@NA +delawareans@p +delawares@p +delay@tiN +delayed@tiA +delaying@tiA +delays@tip +delectable@A +delectably@v +delectation@N +delegate@NVt +delegated@V +delegates@pVt +delegating@V +delegation@N +delegations@p +delete@t +deleted@t +deleterious@A +deletes@t +deleting@t +deletion@N +deletions@p +delgado@N +delhi@N +deli@N +deliberate@AV +deliberated@V +deliberately@v +deliberates@pV +deliberating@V +deliberation@N +deliberations@p +deliberative@A +delibes@N +delicacies@p +delicacy@N +delicate@AN +delicately@v +delicatessen@N +delicatessens@p +delicious@A +deliciously@v +deliciousness@N +delight@N +delighted@A +delightedly@v +delightful@A +delightfully@v +delighting@A +delights@p +delilah@N +deliminator@? +deliminators@p +delimit@t +delimited@t +delimiter@? +delimiters@p +delimiting@t +delimits@t +delineate@t +delineated@t +delineates@t +delineating@t +delineation@N +delineations@p +delinquencies@p +delinquency@N +delinquent@NA +delinquently@v +delinquents@p +delint@? +delinted@? +delinting@? +delints@p +deliquescent@A +deliria@? +delirious@A +deliriously@v +delirium@N +deliriums@p +delis@p +delius@N +deliver@V +deliverable@A +deliverance@N +delivered@V +deliverer@N +deliverers@p +deliveries@p +delivering@V +delivers@V +delivery@N +deliveryman@N +deliverymen@p +dell@N +dells@p +delmonico@? +delouse@t +deloused@t +delouses@t +delousing@t +delphi@NA +delphic@A +delphinia@N +delphinium@N +delphiniums@p +delphinus@N +delta@N +deltas@p +delude@t +deluded@t +deludes@t +deluding@t +deluge@N +deluged@V +deluges@p +deluging@V +delusion@N +delusions@p +delusive@A +delusively@v +deluxe@Av +delve@V +delved@V +delves@V +delving@V +dem@N +demagnetisation@N +demagnetise@t +demagnetised@t +demagnetises@t +demagnetising@t +demagnetization@N +demagnetize@VN +demagnetized@t +demagnetizes@Vp +demagnetizing@t +demagog@? +demagogic@A +demagogically@v +demagogry@? +demagogs@p +demagogue@N +demagoguery@N +demagogues@p +demagogy@N +demand@tN +demanded@tA +demanding@A +demands@tp +demarcate@t +demarcated@t +demarcates@t +demarcating@t +demarcation@N +demarcations@p +demavend@N +demean@t +demeaned@t +demeaning@t +demeanor@N +demeanour@N +demeans@t +demented@A +dementedly@v +dementia@N +demerit@N +demerits@p +demerol@N +demesne@N +demesnes@p +demeter@N +demigod@N +demigoddess@? +demigoddesses@? +demigods@p +demijohn@N +demijohns@p +demilitarisation@N +demilitarise@t +demilitarised@t +demilitarises@t +demilitarising@t +demilitarization@N +demilitarize@t +demilitarized@t +demilitarizes@t +demilitarizing@t +demise@NVt +demised@V +demises@pVt +demising@V +demist@V +demisted@V +demister@? +demisters@p +demisting@V +demists@V +demitasse@N +demitasses@p +demo@N +demob@VN +demobbed@V +demobbing@V +demobilisation@N +demobilise@t +demobilised@t +demobilises@t +demobilising@t +demobilization@N +demobilize@V +demobilized@t +demobilizes@V +demobilizing@t +demobs@Vp +democracies@p +democracy@N +democrat@N +democratic@A +democratically@v +democratisation@N +democratise@ti +democratised@ti +democratises@ti +democratising@ti +democratization@N +democratize@t +democratized@ti +democratizes@t +democratizing@ti +democrats@p +democritus@N +demoed@A +demographer@N +demographers@p +demographic@A +demographically@v +demographics@p +demography@N +demoing@A +demolish@t +demolished@t +demolishes@? +demolishing@t +demolition@NA +demolitions@p +demon@N +demoniac@AN +demoniacal@? +demoniacally@v +demonic@A +demonically@? +demonise@t +demonised@t +demonises@t +demonising@t +demonize@t +demonized@t +demonizes@t +demonizing@t +demonology@NA +demons@p +demonstrability@N +demonstrable@A +demonstrably@v +demonstrate@ti +demonstrated@V +demonstrates@ti +demonstrating@V +demonstration@N +demonstrations@p +demonstrative@AN +demonstratively@v +demonstratives@p +demonstrator@N +demonstrators@p +demoralisation@N +demoralise@t +demoralised@t +demoralises@t +demoralising@t +demoralization@N +demoralize@t +demoralized@t +demoralizes@t +demoralizing@t +demos@N +demosthenes@N +demote@t +demoted@t +demotes@t +demotic@AN +demoting@t +demotion@N +demotions@p +demotivate@? +demotivated@? +demotivates@? +demotivating@? +demount@t +dempsey@N +demur@VN +demure@A +demurely@v +demureness@N +demurer@A +demurest@A +demurred@V +demurring@V +demurs@Vp +demystification@? +demystified@? +demystifies@? +demystify@V +demystifying@V +den@N +denationalisation@N +denationalise@t +denationalised@t +denationalises@t +denationalising@t +denationalization@N +denationalize@V +denationalized@t +denationalizes@V +denationalizing@t +denature@t +denatured@t +denatures@t +denaturing@t +dendrite@N +dendrites@N +deneb@N +deniable@A +denial@N +denials@p +denied@t +denier@N +deniers@p +denies@p +denigrate@V +denigrated@t +denigrates@V +denigrating@t +denigration@N +denim@N +denims@p +denizen@Nt +denizens@pt +denmark@N +denominate@VtA +denominated@t +denominates@Vtp +denominating@t +denomination@N +denominational@A +denominations@p +denominator@N +denominators@p +denotation@N +denotations@p +denote@t +denoted@t +denotes@t +denoting@N +denouement@N +denouements@p +denounce@t +denounced@t +denouncement@N +denouncements@p +denounces@t +denouncing@t +dens@N +dense@A +densely@v +denseness@N +denser@A +densest@A +densities@p +density@N +dent@N +dental@AN +dented@A +dentifrice@N +dentifrices@p +dentin@N +dentine@N +denting@A +dentist@N +dentistry@N +dentists@p +dents@p +denture@N +dentures@p +denude@t +denuded@t +denudes@t +denuding@t +denunciation@N +denunciations@p +denver@N +deny@N +denying@t +deodorant@N +deodorants@p +deodorise@t +deodorised@t +deodoriser@N +deodorisers@p +deodorises@t +deodorising@t +deodorize@t +deodorized@t +deodorizer@N +deodorizers@p +deodorizes@t +deodorizing@t +depart@Vt +departed@A +departing@Vt +department@N +departmental@A +departmentalise@t +departmentalised@t +departmentalises@t +departmentalising@t +departmentalize@t +departmentalized@t +departmentalizes@t +departmentalizing@t +departments@p +departs@Vt +departure@N +departures@p +depend@i +dependability@N +dependable@A +dependably@v +dependance@? +dependant@N +dependants@p +depended@i +dependence@N +dependencies@p +dependency@N +dependent@AN +dependents@p +depending@i +depends@i +depersonalise@t +depersonalised@t +depersonalises@t +depersonalising@t +depersonalize@t +depersonalized@t +depersonalizes@t +depersonalizing@t +depict@t +depicted@t +depicting@t +depiction@N +depictions@p +depicts@t +depilatories@p +depilatory@AN +deplane@i +deplaned@i +deplanes@i +deplaning@i +deplete@t +depleted@t +depletes@t +depleting@t +depletion@N +deplorable@A +deplorably@v +deplore@t +deplored@t +deplores@t +deploring@t +deploy@Vt +deployed@Vt +deploying@Vt +deployment@N +deployments@p +deploys@Vt +depoliticise@? +depoliticised@? +depoliticises@? +depoliticising@? +depoliticize@t +depoliticized@t +depoliticizes@t +depoliticizing@t +depopulate@V +depopulated@V +depopulates@V +depopulating@V +depopulation@N +deport@t +deportation@N +deportations@p +deported@t +deportee@N +deportees@p +deporting@t +deportment@N +deports@t +depose@t +deposed@V +deposes@t +deposing@V +deposit@tN +deposited@tA +depositing@tA +deposition@N +depositions@p +depositor@N +depositories@p +depositors@p +depository@N +deposits@tp +depot@N +depots@p +deprave@t +depraved@A +depraves@t +depraving@t +depravities@p +depravity@N +deprecate@t +deprecated@t +deprecates@t +deprecating@t +deprecatingly@v +deprecation@N +deprecatory@A +depreciate@Vt +depreciated@V +depreciates@Vt +depreciating@V +depreciation@N +depredation@N +depredations@p +depress@t +depressant@AN +depressants@p +depressed@A +depresses@? +depressing@t +depressingly@v +depression@N +depressions@p +depressive@A +depressives@p +depressurisation@? +depressurise@? +depressurised@? +depressurises@? +depressurising@? +depressurization@? +depressurize@t +depressurized@t +depressurizes@t +depressurizing@t +deprivation@N +deprivations@p +deprive@t +deprived@A +deprives@t +depriving@t +deprogram@? +deprogramed@? +deprograming@? +deprogrammed@? +deprogramming@? +deprograms@p +dept@N +depth@N +depths@p +deputation@N +deputations@p +depute@t +deputed@t +deputes@t +deputies@p +deputing@t +deputise@ti +deputised@ti +deputises@ti +deputising@ti +deputize@V +deputized@V +deputizes@V +deputizing@V +deputy@N +derail@VN +derailed@VA +derailing@VA +derailment@N +derailments@p +derails@Vp +derange@t +deranged@A +derangement@N +deranges@t +deranging@t +derbies@p +derby@N +deregulate@? +deregulated@? +deregulates@? +deregulating@? +deregulation@? +derelict@AN +dereliction@N +derelicts@p +deride@t +derided@t +derides@t +deriding@t +derision@N +derisive@A +derisively@v +derisory@? +derivable@A +derivation@N +derivations@p +derivative@AN +derivatives@p +derive@Vt +derived@V +derives@Vt +deriving@V +dermatitis@N +dermatologist@N +dermatologists@p +dermatology@N +dermis@N +derogate@VitA +derogated@V +derogates@Vitp +derogating@V +derogation@N +derogatory@A +derrick@N +derricks@p +derringer@N +derringers@p +derv@N +dervish@N +dervishes@? +desalinate@t +desalinated@t +desalinates@t +desalinating@t +desalination@N +descale@t +descaled@t +descales@t +descaling@t +descant@NAVi +descanted@AVi +descanting@AVi +descants@pVi +descartes@N +descend@V +descendant@N +descendants@p +descended@V +descendent@AN +descendents@p +descender@N +descending@V +descends@V +descent@N +descents@p +describable@A +describe@t +described@t +describes@t +describing@t +descried@t +descries@? +description@N +descriptions@p +descriptive@A +descriptively@v +descriptor@? +descriptors@p +descry@V +descrying@t +desecrate@t +desecrated@t +desecrates@t +desecrating@t +desecration@N +desegregate@VA +desegregated@V +desegregates@Vp +desegregating@V +desegregation@N +deselect@? +deselected@? +deselecting@? +deselection@? +deselects@p +desensitisation@? +desensitise@? +desensitised@? +desensitises@? +desensitising@? +desensitization@N +desensitize@t +desensitized@t +desensitizes@t +desensitizing@t +desert@Nt +deserted@A +deserter@N +deserters@p +desertification@? +deserting@At +desertion@N +desertions@p +deserts@pt +deserve@ti +deserved@A +deservedly@v +deserves@ti +deserving@AN +desiccate@t +desiccated@A +desiccates@t +desiccating@V +desiccation@N +desiderata@p +desideratum@N +design@VtN +designate@VtA +designated@V +designates@Vtp +designating@V +designation@N +designations@p +designed@A +designer@N +designers@p +designing@A +designs@Vtp +desirability@N +desirable@AN +desirably@v +desire@tN +desired@A +desires@tp +desiring@V +desirous@A +desist@i +desisted@i +desisting@i +desists@i +desk@N +deskill@? +deskilled@? +deskilling@? +deskills@p +desks@p +desktop@? +desktops@p +desolate@AVt +desolated@V +desolately@v +desolateness@N +desolates@pVt +desolating@V +desolation@N +despair@itN +despaired@itA +despairing@A +despairingly@v +despairs@itp +despatch@t +despatched@t +despatches@? +despatching@t +desperado@N +desperadoes@p +desperados@p +desperate@A +desperately@v +desperation@N +despicable@A +despicably@v +despise@t +despised@t +despises@t +despising@t +despite@PNt +despoil@t +despoiled@t +despoiling@t +despoils@t +despondency@N +despondent@A +despondently@v +despot@N +despotic@A +despotically@v +despotism@N +despots@p +dessert@N +desserts@p +dessertspoon@N +dessertspoonful@N +dessertspoonfuls@p +dessertspoons@p +dessertspoonsful@? +destabilisation@? +destabilise@? +destabilised@? +destabilises@? +destabilising@? +destabilization@? +destabilize@? +destabilized@? +destabilizes@? +destabilizing@? +destination@N +destinations@p +destine@t +destined@A +destines@t +destinies@p +destining@t +destiny@N +destitute@A +destitution@N +destroy@Vi +destroyed@Vi +destroyer@N +destroyers@p +destroying@Vi +destroys@Vi +destruct@ViN +destructed@ViA +destructible@A +destructing@ViA +destruction@N +destructive@A +destructively@v +destructiveness@N +destructs@Vip +desultorily@v +desultory@A +detach@t +detachable@A +detached@A +detaches@? +detaching@t +detachment@N +detachments@p +detail@Nt +detailed@A +detailing@At +details@pt +detain@t +detained@t +detainee@? +detainees@? +detaining@t +detainment@N +detains@t +detect@t +detectable@A +detected@t +detecting@t +detection@N +detective@NA +detectives@p +detector@N +detectors@p +detects@t +detentes@? +detention@N +detentions@p +deter@V +detergent@NA +detergents@p +deteriorate@Vi +deteriorated@ti +deteriorates@Vi +deteriorating@ti +deterioration@N +determinable@A +determinant@AN +determinants@p +determinate@A +determination@N +determinations@p +determine@Vt +determined@A +determinedly@v +determiner@N +determiners@p +determines@Vt +determining@V +determinism@NA +deterministic@A +deterred@t +deterrence@N +deterrent@NA +deterrents@p +deterring@t +deters@V +detest@t +detestable@A +detestably@v +detestation@N +detested@t +detesting@t +detests@t +dethrone@t +dethroned@t +dethronement@N +dethrones@t +dethroning@t +detonate@V +detonated@V +detonates@V +detonating@V +detonation@N +detonations@p +detonator@N +detonators@p +detour@NV +detoured@AV +detouring@AV +detours@pV +detox@? +detoxed@? +detoxes@? +detoxification@N +detoxified@t +detoxifies@? +detoxify@V +detoxifying@t +detoxing@? +detract@Vt +detracted@Vt +detracting@Vt +detraction@N +detractor@N +detractors@p +detracts@Vt +detriment@N +detrimental@A +detrimentally@v +detriments@p +detritus@N +detroit@N +deuce@N! +deuces@p! +deuterium@N +deuteronomy@N +devaluation@N +devaluations@p +devalue@Vt +devalued@t +devalues@Vt +devaluing@t +devanagari@N +devastate@t +devastated@t +devastates@t +devastating@t +devastatingly@? +devastation@N +develop@Vt +developed@it +developer@N +developers@p +developing@it +development@N +developmental@v +developments@p +develops@Vt +devi@N +deviance@N +deviancy@? +deviant@AN +deviants@p +deviate@ViNA +deviated@V +deviates@Vip +deviating@V +deviation@N +deviations@p +device@N +devices@p +devil@NV +deviled@A +deviling@V +devilish@AvN +devilishly@v +devilled@V +devilling@V +devilment@N +devilries@p +devilry@N +devils@pV +deviltries@p +deviltry@N +devious@A +deviously@v +deviousness@N +devise@VtN +devised@V +devises@Vtp +devising@V +devoid@A +devolution@NA +devolve@Vi +devolved@V +devolves@Vi +devolving@V +devon@N +devonian@AN +devote@t +devoted@A +devotedly@v +devotee@N +devotees@p +devotes@t +devoting@V +devotion@N +devotional@AN +devotionals@p +devotions@p +devour@t +devoured@t +devouring@t +devours@t +devout@A +devouter@? +devoutest@? +devoutly@v +devoutness@N +dew@N +dewar@N +dewberries@p +dewberry@N +dewdrop@N +dewdrops@p +dewey@N +dewier@? +dewiest@? +dewlap@N +dewlaps@p +dewy@A +dexedrine@N +dexter@AN +dexterity@N +dexterous@A +dexterously@v +dextrose@N +dextrous@A +dextrously@v +dhaka@? +dhaulagiri@N +dhoti@N +dhotis@p +dhow@N +dhows@p +di@N +diabetes@N +diabetic@AN +diabetics@p +diabolic@A +diabolical@A +diabolically@v +diacritic@NA +diacritical@A +diacritics@p +diadem@Nt +diadems@pt +diaghilev@N +diagnose@Vt +diagnosed@V +diagnoses@p +diagnosing@V +diagnosis@N +diagnostic@AN +diagnostician@N +diagnosticians@p +diagnostics@N +diagonal@AN +diagonally@v +diagonals@p +diagram@NV +diagramed@V +diagraming@V +diagrammatic@A +diagrammatically@v +diagrammed@V +diagramming@V +diagrams@pV +dial@NV +dialect@N +dialectal@A +dialectic@NA +dialectical@A +dialectics@N +dialects@p +dialed@AV +dialing@N +dialings@p +dialled@? +dialling@? +diallings@p +dialog@? +dialogs@p +dialogue@NVti +dialogues@pVti +dials@pV +dialyses@p +dialysis@N +dialyzes@ti +diameter@N +diameters@p +diametrical@A +diametrically@v +diamond@N +diamonds@p +diana@N +diaper@Nt +diapered@At +diapering@At +diapers@pt +diaphanous@A +diaphragm@N +diaphragms@p +diaries@p +diarist@N +diarists@p +diarrhea@N +diarrhoea@N +diary@N +diaspora@N +diastolic@A +diatom@N +diatoms@p +diatonic@A +diatribe@N +diatribes@p +diaz@N +dibble@NVi +dibbled@V +dibbles@pVi +dibbling@V +dice@N +diced@A +dices@p +dicey@A +dichotomies@p +dichotomy@N +dicier@? +diciest@? +dicing@N +dick@N +dickens@N +dicker@ViN +dickered@ViA +dickering@ViA +dickers@Vip +dickey@N +dickeys@p +dickhead@? +dickheads@p +dickie@N +dickies@p +dickinson@N +dicks@N +dicky@N +dickybird@? +dickybirds@p +dicta@N +dictaphone@N +dictate@VtiN +dictated@V +dictates@Vtip +dictating@V +dictation@N +dictations@p +dictator@N +dictatorial@A +dictatorially@v +dictators@p +dictatorship@N +dictatorships@p +diction@N +dictionaries@p +dictionary@N +dictum@N +dictums@p +did@V +didactic@A +didactically@v +diddle@Vti +diddled@Vti +diddles@Vti +diddling@Vti +diddly@? +diddlysquat@? +diddums@p +diderot@N +didgeridoo@N +didgeridoos@p +dido@N +die@VtN +died@i +diefenbaker@N +diehard@? +diehards@p +diereses@p +dieresis@N +dies@NV +diesel@N +dieseled@A +dieseling@A +diesels@p +diet@N +dietaries@p +dietary@AN +dieted@V +dieter@N +dieters@p +dietetic@A +dietetics@N +dietician@? +dieticians@p +dieting@V +dietitian@N +dietitians@p +dietrich@N +diets@p +diff@N +diffed@A +differ@i +differed@i +difference@Nt +differences@pt +different@A +differential@AN +differentials@p +differentiate@ti +differentiated@V +differentiates@ti +differentiating@V +differentiation@N +differently@v +differing@i +differs@i +difficult@A +difficulties@p +difficulty@N +diffidence@N +diffident@A +diffidently@v +diffing@A +diffract@V +diffracted@V +diffracting@V +diffraction@N +diffracts@V +diffs@p +diffuse@VA +diffused@V +diffusely@v +diffuseness@N +diffuses@Vp +diffusing@V +diffusion@N +dig@VtiN +digest@N +digested@A +digestible@A +digesting@A +digestion@N +digestions@p +digestive@AN +digestives@p +digests@p +digger@N +diggers@N +digging@? +digit@N +digital@AN +digitalis@N +digitally@v +digitisation@N +digitise@t +digitised@t +digitises@t +digitising@t +digitization@N +digitize@t +digitized@t +digitizes@t +digitizing@t +digits@p +dignified@A +dignifies@? +dignify@V +dignifying@t +dignitaries@p +dignitary@N +dignities@p +dignity@N +digraph@N +digraphs@p +digress@i +digressed@i +digresses@? +digressing@i +digression@N +digressions@p +digressive@A +digs@p +dijon@N +dike@N +diked@V +dikes@p +diking@V +diktat@N +diktats@p +dilapidated@A +dilapidation@N +dilate@Vi +dilated@V +dilates@Vi +dilating@V +dilation@N +dilatory@A +dilbert@? +dilberts@p +dildo@N +dildos@p +dilemma@N +dilemmas@p +dilettante@NA +dilettantes@p +dilettanti@? +dilettantism@N +diligence@N +diligent@A +diligently@v +dill@N +dillies@p +dills@p +dilly@N +dillydallied@i +dillydallies@? +dillydally@i +dillydallying@i +dilute@VA +diluted@V +dilutes@Vp +diluting@V +dilution@N +dilutions@p +dim@AV +dimaggio@N +dime@N +dimension@Nt +dimensional@A +dimensionless@A +dimensions@pt +dimer@N +dimes@p +diminish@Vt +diminished@A +diminishes@? +diminishing@Vt +diminuendo@NA +diminuendoes@p +diminuendos@p +diminution@N +diminutions@p +diminutive@AN +diminutives@p +dimly@v +dimmed@A +dimmer@N +dimmers@p +dimmest@A +dimming@A +dimness@N +dimple@NVi +dimpled@V +dimples@pVi +dimpling@V +dims@pV +dimwit@N +dimwits@p +dimwitted@? +din@N +dinah@N +dinar@N +dinars@p +dine@it +dined@V +diner@N +diners@p +dines@it +dinette@N +dinettes@p +ding@VtN +dingbat@N +dingbats@pA +dinged@VtA +dinghies@p +dinghy@N +dingier@A +dingiest@A +dingily@v +dinginess@N +dinging@VtA +dingo@Ni +dingoes@? +dings@Vtp +dingy@A +dining@V +dink@AV +dinker@? +dinkest@? +dinkier@A +dinkies@Ap +dinkiest@A +dinky@A +dinned@V +dinner@N +dinnered@A +dinnering@A +dinners@p +dinnertime@? +dinnerware@N +dinning@V +dinosaur@N +dinosaurs@p +dins@p +dint@NtV +diocesan@AN +diocesans@p +diocese@N +dioceses@p +diocletian@N +diode@N +diodes@p +diogenes@N +dionysian@A +dionysus@N +dior@N +diorama@N +dioramas@p +dioxide@N +dioxides@p +dioxin@? +dioxins@p +dip@VtiN +diphtheria@N +diphthong@N +diphthongs@p +diploma@N +diplomacy@N +diplomas@p +diplomat@N +diplomata@? +diplomatic@A +diplomatically@v +diplomatist@N +diplomatists@p +diplomats@p +dipole@N +dipped@V +dipper@N +dippers@p +dippier@A +dippiest@A +dipping@? +dippy@A +dips@Vtip +dipso@N +dipsomania@N +dipsomaniac@NA +dipsomaniacs@p +dipsos@p +dipstick@N +dipsticks@p +dirac@N +dire@A +direct@VAv +directed@A +directer@? +directest@? +directing@VAv +direction@N +directional@A +directionless@A +directions@p +directive@NA +directives@p +directly@vC +directness@N +director@N +directorate@N +directorates@p +directorial@A +directories@p +directors@p +directorship@N +directorships@p +directory@N +directs@Vpv +direr@A +direst@A +dirge@N +dirges@p +dirichlet@N +dirigible@AN +dirigibles@p +dirk@N +dirks@p +dirt@N +dirtball@? +dirtballs@p +dirtied@V +dirtier@A +dirties@? +dirtiest@A +dirtiness@N +dirty@AV +dirtying@V +dis@N +disabilities@p +disability@N +disable@t +disabled@t +disablement@N +disables@t +disabling@t +disabuse@t +disabused@t +disabuses@t +disabusing@t +disadvantage@Nt +disadvantaged@A +disadvantageous@A +disadvantageously@v +disadvantages@pt +disadvantaging@V +disaffect@t +disaffected@t +disaffecting@t +disaffection@N +disaffects@t +disafforest@t +disafforested@t +disafforesting@t +disafforests@t +disagree@V +disagreeable@A +disagreeably@v +disagreed@i +disagreeing@i +disagreement@N +disagreements@p +disagrees@V +disallow@t +disallowed@t +disallowing@t +disallows@t +disambiguate@t +disambiguation@? +disappear@i +disappearance@N +disappearances@p +disappeared@i +disappearing@i +disappears@i +disappoint@t +disappointed@A +disappointing@t +disappointingly@v +disappointment@N +disappointments@p +disappoints@t +disapprobation@N +disapproval@N +disapprove@it +disapproved@V +disapproves@it +disapproving@V +disapprovingly@v +disarm@ti +disarmament@N +disarmed@ti +disarming@A +disarmingly@v +disarms@ti +disarrange@t +disarranged@t +disarrangement@N +disarranges@t +disarranging@t +disarray@Nt +disarrayed@At +disarraying@At +disarrays@pt +disassemble@t +disassembled@t +disassembles@t +disassembling@t +disassociate@V +disassociated@t +disassociates@V +disassociating@t +disaster@N +disasters@p +disastrous@A +disastrously@v +disavow@t +disavowal@N +disavowals@p +disavowed@t +disavowing@t +disavows@t +disband@V +disbanded@V +disbanding@V +disbands@V +disbar@V +disbarment@N +disbarred@t +disbarring@t +disbars@V +disbelief@N +disbelieve@ti +disbelieved@t +disbelieves@ti +disbelieving@t +disbelievingly@v +disburse@t +disbursed@t +disbursement@N +disbursements@p +disburses@t +disbursing@t +disc@NV +discard@VtN +discarded@VtA +discarding@VtA +discards@Vtp +discern@t +discerned@t +discernible@A +discernibly@v +discerning@A +discernment@N +discerns@t +discharge@VtNi +discharged@V +discharges@Vtpi +discharging@V +disciple@N +disciples@p +disciplinarian@NA +disciplinarians@p +disciplinary@A +discipline@Nt +disciplined@V +disciplines@pt +disciplining@V +disclaim@t +disclaimed@t +disclaimer@N +disclaimers@p +disclaiming@t +disclaims@t +disclose@t +disclosed@V +discloses@t +disclosing@V +disclosure@N +disclosures@p +disco@N +discoed@A +discographies@? +discography@N +discoing@A +discolor@V +discoloration@N +discolorations@p +discolored@V +discoloring@V +discolors@V +discolour@? +discolouration@? +discolourations@p +discoloured@? +discolouring@? +discolours@p +discombobulate@t +discombobulated@t +discombobulates@t +discombobulating@t +discomfit@t +discomfited@t +discomfiting@t +discomfits@t +discomfiture@N +discomfort@Nt +discomforted@At +discomforting@At +discomforts@pt +discommode@t +discommoded@t +discommodes@t +discommoding@t +discompose@t +discomposed@t +discomposes@t +discomposing@t +discomposure@N +disconcert@t +disconcerted@A +disconcerting@t +disconcertingly@v +disconcerts@t +disconnect@t +disconnected@A +disconnectedly@v +disconnecting@t +disconnection@N +disconnections@p +disconnects@t +disconsolate@A +disconsolately@v +discontent@NAt +discontented@A +discontentedly@v +discontenting@At +discontentment@? +discontents@pt +discontinuance@N +discontinuances@p +discontinuation@N +discontinuations@p +discontinue@Vt +discontinued@V +discontinues@Vt +discontinuing@V +discontinuities@p +discontinuity@N +discontinuous@A +discord@NVi +discordant@A +discorded@AVi +discording@AVi +discords@pVi +discos@p +discotheque@N +discotheques@p +discount@VN +discounted@VA +discountenance@tN +discountenanced@V +discountenances@tp +discountenancing@V +discounter@N +discounters@p +discounting@VA +discounts@Vp +discourage@t +discouraged@t +discouragement@N +discouragements@p +discourages@t +discouraging@t +discouragingly@v +discourse@NVit +discoursed@V +discourses@pVit +discoursing@V +discourteous@A +discourteously@v +discourtesies@p +discourtesy@N +discover@t +discovered@t +discoverer@N +discoverers@p +discoveries@p +discovering@t +discovers@t +discovery@N +discredit@tN +discreditable@A +discreditably@v +discredited@tA +discrediting@tA +discredits@tp +discreet@A +discreeter@? +discreetest@? +discreetly@v +discrepancies@? +discrepancy@N +discrete@A +discretely@v +discreteness@N +discretion@N +discretionary@A +discriminant@N +discriminate@VitA +discriminated@V +discriminates@Vitp +discriminating@A +discrimination@N +discriminatory@A +discs@pV +discursive@A +discus@N +discuses@? +discuss@t +discussant@N +discussants@p +discussed@t +discusses@? +discussing@t +discussion@N +discussions@p +disdain@Nt +disdained@At +disdainful@A +disdainfully@v +disdaining@At +disdains@pt +disease@N +diseased@A +diseases@p +disembark@V +disembarkation@N +disembarked@V +disembarking@V +disembarks@V +disembodied@A +disembodies@? +disembody@V +disembodying@t +disembowel@V +disemboweled@t +disemboweling@t +disembowelled@t +disembowelling@t +disembowels@V +disenchant@t +disenchanted@t +disenchanting@t +disenchantment@N +disenchants@t +disencumber@t +disencumbered@t +disencumbering@t +disencumbers@t +disenfranchise@V +disenfranchised@t +disenfranchisement@N +disenfranchises@V +disenfranchising@t +disengage@V +disengaged@V +disengagement@N +disengagements@p +disengages@V +disengaging@V +disentangle@Vt +disentangled@ti +disentanglement@N +disentangles@Vt +disentangling@ti +disequilibrium@N +disestablish@t +disestablished@t +disestablishes@? +disestablishing@t +disestablishment@N +disfavor@Nt +disfavored@At +disfavoring@At +disfavors@pt +disfavour@Nt +disfavoured@At +disfavouring@At +disfavours@pt +disfigure@t +disfigured@t +disfigurement@N +disfigurements@p +disfigures@t +disfiguring@t +disfranchise@t +disfranchised@t +disfranchisement@N +disfranchises@t +disfranchising@t +disgorge@Vt +disgorged@V +disgorges@Vt +disgorging@V +disgrace@Nt +disgraced@V +disgraceful@A +disgracefully@v +disgraces@pt +disgracing@V +disgruntle@t +disgruntled@t +disgruntles@t +disgruntling@t +disguise@VtN +disguised@V +disguises@Vtp +disguising@V +disgust@tN +disgusted@tA +disgustedly@v +disgusting@A +disgustingly@A +disgusts@tp +dish@Nt +disharmonious@A +disharmony@N +dishcloth@N +dishcloths@p +dishearten@t +disheartened@t +disheartening@t +disheartens@t +dished@A +dishes@? +dishevel@V +disheveled@t +disheveling@t +dishevelled@A +dishevelling@t +dishevels@V +dishing@At +dishonest@A +dishonestly@v +dishonesty@N +dishonor@tN +dishonorable@A +dishonorably@v +dishonored@tA +dishonoring@tA +dishonors@tp +dishonour@? +dishonourable@? +dishonourably@v +dishonoured@? +dishonouring@? +dishonours@p +dishpan@N +dishpans@p +dishrag@N +dishrags@p +dishtowel@N +dishtowels@p +dishwasher@N +dishwashers@p +dishwater@N +dishy@A +disillusion@tN +disillusioned@tA +disillusioning@tA +disillusionment@N +disillusions@tp +disincentive@NA +disincentives@p +disinclination@N +disincline@V +disinclined@A +disinclines@V +disinclining@ti +disinfect@t +disinfectant@N +disinfectants@p +disinfected@t +disinfecting@t +disinfects@t +disinformation@? +disingenuous@A +disingenuously@v +disinherit@t +disinherited@t +disinheriting@t +disinherits@t +disintegrate@Vi +disintegrated@V +disintegrates@Vi +disintegrating@V +disintegration@N +disinter@V +disinterest@Nt +disinterested@A +disinterestedly@v +disinterests@pt +disinterment@N +disinterred@t +disinterring@t +disinters@V +disinvestment@? +disjoint@VtA +disjointed@A +disjointedly@v +disjointing@VtA +disjoints@Vtp +disjuncture@N +disk@N +diskette@? +diskettes@? +disks@p +dislike@tN +disliked@V +dislikes@tp +disliking@V +dislocate@t +dislocated@t +dislocates@t +dislocating@t +dislocation@N +dislocations@p +dislodge@V +dislodged@V +dislodges@V +dislodging@V +disloyal@A +disloyally@v +disloyalty@N +dismal@A +dismally@v +dismantle@t +dismantled@t +dismantles@t +dismantling@t +dismay@tN +dismayed@tA +dismaying@tA +dismays@tp +dismember@t +dismembered@t +dismembering@t +dismemberment@N +dismembers@t +dismiss@t +dismissal@N +dismissals@p +dismissed@t +dismisses@? +dismissing@t +dismissive@A +dismissively@? +dismount@VtN +dismounted@VtA +dismounting@VtA +dismounts@Vtp +disney@N +disneyland@N +disobedience@N +disobedient@A +disobediently@v +disobey@V +disobeyed@V +disobeying@V +disobeys@V +disoblige@t +disobliged@t +disobliges@t +disobliging@t +disorder@Nt +disordered@A +disordering@At +disorderliness@N +disorderly@Av +disorders@pt +disorganisation@? +disorganise@t +disorganised@t +disorganises@t +disorganising@t +disorganization@N +disorganize@t +disorganized@t +disorganizes@t +disorganizing@t +disorient@t +disorientate@t +disorientated@t +disorientates@t +disorientating@t +disorientation@N +disoriented@t +disorienting@t +disorients@t +disown@t +disowned@t +disowning@t +disowns@t +disparage@t +disparaged@t +disparagement@N +disparages@t +disparaging@t +disparagingly@v +disparate@AN +disparities@p +disparity@N +dispassionate@A +dispassionately@v +dispatch@tN +dispatched@tA +dispatcher@N +dispatchers@p +dispatches@? +dispatching@tA +dispel@V +dispelled@t +dispelling@t +dispels@V +dispensable@A +dispensaries@p +dispensary@N +dispensation@N +dispensations@p +dispense@ti +dispensed@V +dispenser@N +dispensers@p +dispenses@ti +dispensing@V +dispersal@N +disperse@VtA +dispersed@V +disperses@Vtp +dispersing@V +dispersion@N +dispirit@t +dispirited@A +dispiriting@t +dispirits@t +displace@t +displaced@t +displacement@N +displacements@p +displaces@t +displacing@t +display@tN +displayable@? +displayed@A +displaying@tA +displays@tp +displease@V +displeased@V +displeases@V +displeasing@V +displeasure@Nt +disport@tiN +disported@tiA +disporting@tiA +disports@tip +disposable@AN +disposables@p +disposal@N +disposals@p +dispose@itN +disposed@A +disposes@itp +disposing@V +disposition@N +dispositions@p +dispossess@t +dispossessed@A +dispossesses@? +dispossessing@t +dispossession@N +disproof@N +disproportion@Nt +disproportionate@AV +disproportionately@v +disproportions@pt +disprove@t +disproved@t +disproven@? +disproves@t +disproving@t +disputable@A +disputant@NA +disputants@p +disputation@N +disputations@p +disputatious@A +dispute@VtN +disputed@V +disputes@Vtp +disputing@V +disqualification@N +disqualifications@p +disqualified@t +disqualifies@? +disqualify@V +disqualifying@t +disquiet@NtA +disquieted@At +disquieting@A +disquiets@pt +disquisition@N +disquisitions@p +disraeli@N +disregard@tN +disregarded@tA +disregarding@tA +disregards@tp +disrepair@N +disreputable@A +disreputably@v +disrepute@N +disrespect@Nt +disrespected@At +disrespectful@A +disrespectfully@v +disrespecting@At +disrespects@pt +disrobe@Vt +disrobed@ti +disrobes@Vt +disrobing@ti +disrupt@t +disrupted@t +disrupting@t +disruption@N +disruptions@p +disruptive@A +disruptively@v +disrupts@t +diss@p +dissatisfaction@N +dissatisfied@A +dissatisfies@? +dissatisfy@V +dissatisfying@t +dissect@Vt +dissected@A +dissecting@Vt +dissection@N +dissections@p +dissects@Vt +dissed@? +dissemble@Vt +dissembled@V +dissembles@Vt +dissembling@V +disseminate@t +disseminated@t +disseminates@t +disseminating@t +dissemination@N +dissension@N +dissensions@p +dissent@iN +dissented@iA +dissenter@N +dissenters@p +dissenting@iA +dissents@ip +dissertation@N +dissertations@p +disservice@N +disservices@p +disses@? +dissidence@N +dissident@AN +dissidents@p +dissimilar@A +dissimilarities@p +dissimilarity@N +dissimulate@V +dissimulated@V +dissimulates@V +dissimulating@V +dissimulation@N +dissing@? +dissipate@Vti +dissipated@A +dissipates@Vti +dissipating@V +dissipation@N +dissociate@Vt +dissociated@V +dissociates@Vt +dissociating@V +dissociation@N +dissolute@A +dissolutely@v +dissoluteness@N +dissolution@N +dissolve@VtiN +dissolved@V +dissolves@Vtip +dissolving@V +dissonance@N +dissonances@p +dissonant@A +dissuade@t +dissuaded@t +dissuades@t +dissuading@t +dissuasion@N +distaff@N +distaffs@p +distance@Nt +distanced@V +distances@pt +distancing@V +distant@A +distantly@v +distaste@Nt +distasteful@A +distastefully@v +distastefulness@N +distastes@pt +distemper@Nt +distend@Vt +distended@A +distending@Vt +distends@Vt +distension@? +distensions@p +distention@N +distentions@p +distil@Vt +distill@ti +distillate@N +distillates@p +distillation@N +distillations@p +distilled@Ati +distiller@N +distilleries@? +distillers@p +distillery@N +distilling@ti +distills@ti +distils@Vt +distinct@A +distincter@? +distinctest@? +distinction@N +distinctions@p +distinctive@A +distinctively@v +distinctiveness@N +distinctly@v +distinguish@V +distinguishable@A +distinguished@A +distinguishes@? +distinguishing@A +distort@t +distorted@A +distorter@N +distorting@t +distortion@N +distortions@p +distorts@t +distract@t +distracted@A +distractedly@v +distracting@t +distraction@N +distractions@p +distracts@t +distrait@A +distraught@A +distress@tN +distressed@A +distresses@? +distressful@A +distressing@tA +distressingly@v +distribute@t +distributed@t +distributes@t +distributing@t +distribution@N +distributional@A +distributions@p +distributive@AN +distributor@N +distributors@p +distributorship@N +distributorships@p +district@Nt +districts@pt +distrust@VN +distrusted@VA +distrustful@A +distrustfully@v +distrusting@VA +distrusts@Vp +disturb@t +disturbance@N +disturbances@p +disturbed@A +disturbing@A +disturbingly@? +disturbs@t +disunite@Vt +disunited@V +disunites@Vt +disuniting@V +disunity@N +disuse@N +disused@A +disuses@p +disusing@V +disyllabic@A +ditch@NVit +ditched@AVit +ditches@? +ditching@AVit +dither@iN +dithered@iA +ditherer@? +ditherers@p +dithering@iA +dithers@ip +ditransitive@? +ditties@p +ditto@NvV +dittoed@AvV +dittoes@? +dittoing@p +dittos@pvV +ditty@N +ditzy@? +diuretic@AN +diuretics@p +diurnal@AN +diurnally@v +diva@N +divan@N +divans@p +divas@p +dive@VN +dived@N +diver@N +diverge@Vi +diverged@V +divergence@N +divergences@p +divergent@A +diverges@Vi +diverging@V +divers@D +diverse@A +diversely@v +diversification@N +diversified@t +diversifies@? +diversify@V +diversifying@t +diversion@N +diversionary@A +diversions@p +diversities@p +diversity@N +divert@Vt +diverted@Vt +diverting@A +diverts@Vt +dives@N +divest@t +divested@t +divesting@t +divestiture@N +divestment@? +divests@t +divide@VtiN +divided@A +dividend@N +dividends@p +divider@N +dividers@p +divides@Vtip +dividing@V +divination@N +divine@ANVt +divined@V +divinely@v +diviner@N +diviners@p +divines@pVt +divinest@? +diving@A +divining@V +divinities@p +divinity@N +divisibility@N +divisible@A +division@N +divisional@A +divisions@p +divisive@A +divisively@v +divisiveness@N +divisor@N +divisors@p +divorce@NVt +divorced@V +divorces@pVt +divorcing@V +divot@N +divots@p +divulge@t +divulged@t +divulges@t +divulging@t +divvied@V +divvies@V +divvy@N +divvying@V +dix@N +dixie@N +dixiecrat@N +dixieland@N +dixielands@p +dizzied@A +dizzier@A +dizzies@? +dizziest@A +dizzily@v +dizziness@N +dizzy@AV +dizzying@A +dj@N +djakarta@N +djibouti@N +djinn@? +djinni@N +djinns@p +dmz@N +dna@N +dnepropetrovsk@N +dnieper@N +dniester@N +do@N +doa@N +doable@A +dob@? +dobbed@A +dobbing@A +doberman@? +dobermans@p +dobro@N +dobs@p +doc@N +docent@N +docents@p +docile@A +docilely@v +docility@N +dock@NVt +docked@AVt +docker@N +dockers@p +docket@Nt +docketed@V +docketing@V +dockets@pt +docking@AVt +dockland@N +docklands@p +docks@pVt +dockside@NA +dockworker@? +dockworkers@p +dockyard@N +dockyards@p +docs@p +doctor@Nti +doctoral@A +doctorate@N +doctorates@p +doctored@Ati +doctoring@Ati +doctors@pti +doctrinaire@AN +doctrinaires@p +doctrinal@A +doctrine@N +doctrines@p +docudrama@? +docudramas@p +document@NVt +documentaries@p +documentary@AN +documentation@N +documentations@p +documented@AVt +documenting@AVt +documents@pVt +dodder@iN +doddered@A +doddering@A +dodders@ip +doddery@? +doddle@N +dodge@N +dodged@V +dodgem@N +dodgems@p +dodger@N +dodgers@p +dodges@p +dodgier@? +dodgiest@? +dodging@V +dodgson@N +dodgy@A +dodo@N +dodoes@p +dodos@p +doe@N +doer@N +doers@p +does@V +doff@t +doffed@t +doffing@t +doffs@t +dog@NVt +dogcart@N +dogcarts@p +dogcatcher@N +dogcatchers@p +dogfight@N +dogfights@p +dogfish@N +dogfishes@? +dogged@A +doggedly@v +doggedness@N +doggerel@N +doggie@? +doggier@A +doggies@p +doggiest@A +dogging@V +doggone@!Av +doggoned@A +doggoneder@? +doggonedest@? +doggoner@? +doggones@!pv +doggonest@? +doggoning@!Av +doggy@NA +doghouse@N +doghouses@p +dogie@N +dogies@p +dogleg@NA +doglegs@p +dogma@N +dogmas@p +dogmata@p +dogmatic@A +dogmatically@v +dogmatism@N +dogmatist@N +dogmatists@p +dogs@N +dogsbodies@? +dogsbody@N +dogsled@? +dogsleds@p +dogtrot@N +dogtrots@p +dogtrotted@? +dogtrotting@? +dogwood@N +dogwoods@p +doh@N +doha@N +doilies@p +doily@N +doing@N +doings@p +dolby@N +doldrums@N +dole@N +doled@V +doleful@A +dolefully@v +doles@p +doling@V +doll@N +dollar@N +dollars@p +dolled@A +dollhouse@N +dollhouses@p +dollies@p +dolling@A +dollop@Nt +dolloped@At +dolloping@At +dollops@pt +dolls@p +dolly@N +dolmen@N +dolmens@p +dolorous@A +dolphin@N +dolphins@p +dolt@N +doltish@A +dolts@p +domain@N +domains@p +dome@Nt +domed@AV +domes@pt +domestic@AN +domestically@v +domesticate@t +domesticated@V +domesticates@t +domesticating@V +domestication@N +domesticity@N +domestics@p +domicile@NV +domiciled@V +domiciles@pV +domiciliary@A +domiciling@V +dominance@N +dominant@AN +dominantly@v +dominants@p +dominate@Vt +dominated@V +dominates@Vt +dominating@V +domination@N +dominatrices@? +dominatrix@? +dominatrixes@? +domineer@i +domineered@i +domineering@A +domineers@i +doming@V +dominic@N +dominica@N +dominican@NA +dominicans@p +dominick@N +dominion@N +dominions@p +dominique@N +domino@N +dominoes@N +dominos@p +domitian@N +don@N +dona@N +donate@V +donated@V +donatello@N +donates@V +donating@V +donation@N +donations@p +done@V!A +donetsk@N +dongle@? +dongles@? +donkey@N +donkeys@p +donna@N +donne@N +donned@t +donning@t +donnish@A +donor@N +donors@p +dons@p +donut@N +donuts@p +donutses@? +doodad@N +doodads@p +doodah@N +doodahs@p +doodle@ViN +doodled@V +doodler@N +doodlers@p +doodles@Vip +doodling@V +doohickey@N +doohickeys@p +doolally@? +doolittle@N +doom@Nt +doomed@At +dooming@At +dooms@v +doomsayer@? +doomsayers@p +doomsday@N +doomster@? +doomsters@p +door@N +doorbell@N +doorbells@p +doorjamb@N +doorjambs@p +doorkeeper@N +doorkeepers@p +doorknob@N +doorknobs@p +doorknocker@? +doorknockers@p +doorman@N +doormat@N +doormats@p +doormen@p +doorpost@N +doorposts@p +doors@p +doorstep@N +doorstepped@? +doorstepping@? +doorsteps@p +doorstop@N +doorstops@p +doorway@N +doorways@p +dope@Nt +doped@V +dopes@pt +dopey@A +dopier@A +dopiest@A +doping@V +doppler@N +dopy@A +dorcas@N +dorian@NA +doric@AN +dories@p +doris@N +dork@? +dorkier@? +dorkiest@? +dorks@p +dorky@? +dorm@N +dormancy@N +dormant@A +dormer@N +dormers@p +dormice@? +dormitories@p +dormitory@N +dormouse@N +dorms@p +dorsal@A +dorset@N +dortmund@N +dory@N +dos@p +dosage@N +dosages@p +dose@Nt +dosed@V +doses@pt +dosh@N +dosing@V +doss@iN +dossed@iA +dosser@N +dossers@p +dosses@? +dosshouse@N +dosshouses@p +dossier@N +dossiers@p +dossing@iA +dost@V +dostoevsky@N +dot@N +dotage@N +dote@i +doted@i +dotes@i +doth@V +doting@Ai +dotingly@v +dots@p +dotted@A +dottier@A +dottiest@A +dotting@V +dotty@A +douala@N +double@ANivVt +doubled@ANV +doubles@N +doublespeak@? +doublet@N +doublets@p +doubling@ANV +doubloon@N +doubloons@p +doubly@v +doubt@Nti +doubted@Ati +doubter@N +doubters@p +doubtful@A +doubtfully@v +doubting@Ati +doubtless@vA +doubtlessly@? +doubts@pti +douche@NV +douched@V +douches@pV +douching@V +dough@N +doughier@A +doughiest@A +doughnut@N +doughnuts@p +doughtier@A +doughtiest@A +doughty@A +doughy@A +douglas@N +douglass@N +dour@A +dourer@? +dourest@? +dourly@v +douro@N +douse@VtN +doused@V +douses@Vtp +dousing@V +dove@N +dovecot@? +dovecote@N +dovecotes@p +dovecots@p +dover@N +doves@p +dovetail@Nt +dovetailed@A +dovetailing@At +dovetails@pt +dovish@A +dow@N +dowager@N +dowagers@p +dowdier@? +dowdies@p +dowdiest@? +dowdily@v +dowdiness@N +dowdy@AN +dowel@N +doweled@V +doweling@V +dowelled@V +dowelling@V +dowels@p +down@N +downbeat@NA +downbeats@p +downcast@AN +downed@A +downer@N +downers@p +downfall@N +downfalls@p +downgrade@tN +downgraded@V +downgrades@tp +downgrading@V +downhearted@A +downhill@AvN +downhills@pv +downier@A +downiest@A +downing@N +download@? +downloaded@? +downloading@? +downloads@p +downmarket@? +downplay@? +downplayed@? +downplaying@? +downplays@p +downpour@N +downpours@p +downright@AvN +downriver@? +downs@N +downscale@? +downshift@? +downshifted@? +downshifting@? +downshifts@p +downside@? +downsize@? +downsized@? +downsizes@? +downsizing@? +downspout@N +downspouts@p +downstage@vAN +downstairs@vN +downstate@AvN +downstream@vA +downswing@N +downswings@p +downtime@N +downtown@NvA +downtrend@N +downtrodden@A +downturn@N +downturns@p +downward@Av +downwards@v +downwind@vA +downy@A +dowries@p +dowry@N +dowse@VNi +dowsed@it +dowser@N +dowsers@p +dowses@Vpi +dowsing@it +doxologies@p +doxology@N +doyen@N +doyenne@N +doyennes@p +doyens@p +doyle@N +doz@? +doze@iN +dozed@Vt +dozen@DN +dozens@p +dozes@ip +dozier@A +doziest@A +dozily@v +doziness@N +dozing@Vt +dozy@A +dp@N +dps@N +dpt@N +dr@N +drab@ANV +drabber@? +drabbest@? +drably@v +drabness@N +drabs@pV +drachma@N +drachmae@p +drachmai@? +drachmas@p +draco@N +draconian@A +dracula@N +draft@NtV +drafted@AtV +draftee@N +draftees@p +draftier@A +draftiest@A +draftiness@N +drafting@AtV +drafts@ptV +draftsman@N +draftsmanship@N +draftsmen@p +draftswoman@? +draftswomen@? +drafty@A +drag@NVti +dragged@V +dragging@AV +dragnet@N +dragnets@p +dragon@N +dragonflies@p +dragonfly@N +dragons@p +dragoon@N +dragooned@A +dragooning@A +dragoons@p +drags@pVti +dragster@N +dragsters@p +drain@N +drainage@N +drainboard@N +drainboards@p +drained@A +drainer@N +drainers@p +draining@A +drainpipe@N +drainpipes@p +drains@p +drake@N +drakes@p +dram@N +drama@N +dramamine@N +dramas@p +dramatic@A +dramatically@v +dramatics@N +dramatisation@? +dramatisations@p +dramatise@t +dramatised@t +dramatises@t +dramatising@t +dramatist@N +dramatists@p +dramatization@N +dramatizations@p +dramatize@t +dramatized@t +dramatizes@t +dramatizing@t +drambuie@N +drams@p +drank@V +drape@N +draped@V +draper@N +draperies@p +drapers@p +drapery@N +drapes@p +draping@V +drastic@A +drastically@v +drat@! +dratted@A +draught@N +draughtboard@N +draughtboards@p +draughted@A +draughtier@A +draughtiest@A +draughtiness@N +draughting@A +draughts@N +draughtsman@N +draughtsmanship@? +draughtsmen@p +draughtswoman@? +draughtswomen@? +draughty@AN +dravidian@NA +draw@VitN +drawback@NV +drawbacks@pV +drawbridge@N +drawbridges@p +drawer@N +drawers@p +drawing@N +drawings@p +drawl@VN +drawled@VA +drawling@VA +drawls@Vp +drawn@A +draws@Vitp +drawstring@N +drawstrings@p +dray@N +drays@p +dread@tN +dreaded@tA +dreadful@A +dreadfully@v +dreading@tA +dreadlocks@p +dreadnought@N +dreadnoughts@p +dreads@tp +dream@N +dreamboat@N +dreamboats@p +dreamed@V +dreamer@N +dreamers@p +dreamier@A +dreamiest@A +dreamily@v +dreaminess@N +dreaming@V +dreamland@N +dreamless@A +dreamlike@A +dreams@N +dreamt@V +dreamy@A +drear@A +drearier@A +dreariest@A +drearily@v +dreariness@N +dreary@A +dredge@NVt +dredged@Vt +dredger@N +dredgers@p +dredges@pVt +dredging@Vt +dregs@p +dreiser@N +drench@tN +drenched@tA +drenches@? +drenching@tA +dresden@NA +dress@VtNi +dressage@N +dressed@VtAi +dresser@N +dressers@p +dresses@? +dressier@A +dressiest@A +dressiness@N +dressing@N +dressings@p +dressmaker@N +dressmakers@p +dressmaking@N +dressy@A +drew@N +dreyfus@N +dribble@ViN +dribbled@V +dribbler@N +dribblers@p +dribbles@Vip +dribbling@V +driblet@N +driblets@p +dried@V +drier@AN +driers@p +dries@? +driest@A +drift@VN +drifted@VA +drifter@N +drifters@p +drifting@VA +driftnet@? +driftnets@p +drifts@Vp +driftwood@N +drill@NVt +drilled@AVt +drilling@N +drills@pVt +drily@v +drink@VtiN +drinkable@AN +drinker@N +drinkers@p +drinking@AN +drinkings@p +drinks@Vtip +drip@VN +dripped@? +drippier@? +drippiest@? +dripping@Nv +drippings@pv +drippy@A +drips@Vp +drive@VNti +drivel@ViN +driveled@V +driveling@V +drivelled@V +drivelling@V +drivels@Vip +driven@V +driver@N +drivers@p +drives@Vpti +driveway@N +driveways@p +driving@A +drivings@p +drizzle@Nit +drizzled@V +drizzles@pit +drizzlier@? +drizzliest@? +drizzling@V +drizzly@v +droid@? +droids@p +droll@A +droller@? +drolleries@p +drollery@N +drollest@? +drollness@N +drolly@v +dromedaries@p +dromedary@N +drone@Ni +droned@V +drones@pi +droning@V +drool@iVN +drooled@iVA +drooling@iVA +drools@iVp +droop@ViN +drooped@ViA +droopier@A +droopiest@A +drooping@ViA +droops@Vip +droopy@A +drop@NV +droplet@N +droplets@p +dropout@NV +dropouts@pV +dropped@V +dropper@N +droppers@p +dropping@N +droppings@p +drops@p +dropsy@N +dross@N +drought@N +droughts@p +drouth@? +drouthes@? +drouths@p +drove@VN +drover@N +drovers@p +droves@Vp +drown@Vt +drowned@Vt +drowning@Vt +drownings@p +drowns@Vt +drowse@VN +drowsed@V +drowses@Vp +drowsier@A +drowsiest@A +drowsily@v +drowsiness@N +drowsing@V +drowsy@A +drub@VN +drubbed@V +drubbing@NV +drubbings@pV +drubs@Vp +drudge@Ni +drudged@V +drudgery@N +drudges@pi +drudging@V +drug@N +drugged@V +druggie@? +druggies@? +drugging@V +druggist@N +druggists@p +druggy@? +drugs@p +drugstore@N +drugstores@p +druid@N +druids@p +drum@NV +drumbeat@N +drumbeats@p +drummed@V +drummer@N +drummers@p +drumming@V +drums@pV +drumstick@N +drumsticks@p +drunk@AN +drunkard@N +drunkards@p +drunken@A +drunkenly@v +drunkenness@N +drunker@? +drunkest@? +drunks@p +dry@AVtNv +dryad@N +dryads@p +dryden@N +dryer@NVtAv +dryers@pVtv +dryest@? +drying@A +dryly@v +dryness@N +drys@A +drywall@? +dst@N +dtp@? +dual@AN +dualism@N +duality@N +dub@VtN +dubai@N +dubbed@Vt +dubbin@N +dubbing@N +dubiety@N +dubious@A +dubiously@v +dubiousness@N +dublin@N +dubrovnik@N +dubs@Vtp +ducal@A +ducat@N +ducats@p +duchamp@N +duchess@N +duchesses@p +duchies@p +duchy@N +duck@N +duckbill@N +duckbills@p +duckboards@p +ducked@A +duckies@p +ducking@A +duckling@N +ducklings@p +ducks@p +duckweed@N +ducky@NA +duct@N +ductile@A +ductility@N +ducting@A +ductless@A +ducts@p +dud@N +dude@N +duded@A +dudes@p +dudgeon@N +duding@A +dudley@N +duds@p +due@Nv +duel@NVi +dueled@V +dueling@V +duelings@V +duelist@N +duelists@p +duelled@V +duelling@V +duellings@V +duellist@? +duellists@p +duels@pVi +dues@p +duet@N +duets@p +duff@N +duffed@A +duffer@N +duffers@p +duffing@A +duffs@p +dug@VN +dugout@N +dugouts@p +duh@? +dui@? +duisburg@N +duke@N +dukedom@N +dukedoms@p +dukes@p +dulcet@A +dulcimer@N +dulcimers@p +dull@AV +dullard@N +dullards@p +dulled@AV +duller@? +dulles@N +dullest@? +dulling@AV +dullness@N +dulls@pV +dully@v +dulness@N +duluth@N +duly@v +dumas@N +dumb@A +dumbbell@N +dumbbells@p +dumber@? +dumbest@? +dumbfound@t +dumbfounded@t +dumbfounding@t +dumbfounds@t +dumbly@v +dumbness@N +dumbo@? +dumbos@p +dumbstruck@A +dumbwaiter@N +dumbwaiters@p +dumfound@t +dumfounded@t +dumfounding@t +dumfounds@t +dummies@? +dummy@NV +dump@VtN +dumped@VtA +dumper@N +dumpers@p +dumpier@A +dumpiest@A +dumping@VtA +dumpling@N +dumplings@p +dumps@p +dumpster@? +dumpy@A +dun@N +dunant@N +dunbar@N +duncan@N +dunce@N +dunces@p +dunderhead@N +dunderheads@p +dune@N +dunedin@N +dunes@p +dung@Nt +dungaree@N +dungarees@p +dunged@At +dungeon@N +dungeons@p +dunging@At +dungs@pt +dunk@V +dunked@V +dunking@V +dunkirk@N +dunks@V +dunned@V +dunner@? +dunnest@? +dunning@N +dunno@N +duns@p +duo@N +duodena@p +duodenal@A +duodenum@N +duodenums@p +duopolies@p +duopoly@N +duos@p +dupe@Nt +duped@Vt +dupes@pt +duping@Vt +duplex@NA +duplexes@? +duplicate@ANVti +duplicated@V +duplicates@pVti +duplicating@V +duplication@N +duplicator@N +duplicators@p +duplicitous@p +duplicity@N +dupont@N +durability@N +durable@A +durably@v +durant@N +duration@N +durban@N +duress@N +durham@N +durhams@p +during@P +durkheim@N +duroc@N +dushanbe@N +dusk@NAV +duskier@A +duskiest@A +dusky@A +dust@N +dustbin@N +dustbins@p +dustcart@N +dustcarts@p +dusted@A +duster@N +dusters@p +dustier@A +dustiest@A +dustiness@N +dusting@N +dustless@A +dustman@N +dustmen@p +dustpan@N +dustpans@p +dusts@p +dustsheet@N +dustsheets@p +dusty@A +dutch@N +dutchman@N +dutchmen@p +duteous@A +dutiable@A +duties@p +dutiful@A +dutifully@v +duty@N +duvalier@N +duvet@N +duvets@p +dvd@? +dvina@N +dwarf@NVt +dwarfed@AVt +dwarfing@AVt +dwarfish@A +dwarfism@N +dwarfs@pVt +dwarves@? +dweeb@? +dweebs@p +dwell@VN +dwelled@V +dweller@N +dwellers@p +dwelling@N +dwellings@p +dwells@Vp +dwelt@V +dwi@? +dwindle@V +dwindled@V +dwindles@V +dwindling@V +dyadic@AN +dye@NV +dyed@A +dyeing@N +dyer@N +dyers@p +dyes@pV +dyestuff@N +dying@VA +dyke@N +dykes@p +dylan@N +dynamic@A +dynamical@? +dynamically@v +dynamics@N +dynamism@N +dynamite@Nt +dynamited@V +dynamites@pt +dynamiting@V +dynamo@N +dynamos@p +dynastic@A +dynasties@p +dynasty@N +dysentery@N +dysfunction@N +dysfunctional@? +dysfunctions@p +dyslexia@N +dyslexic@? +dyslexics@p +dyspepsia@N +dyspeptic@AN +dyspeptics@p +dz@N +dzungaria@N +ea@N +each@Dv +eager@N +eagerer@? +eagerest@? +eagerly@v +eagerness@N +eagle@N +eagles@p +eaglet@N +eaglets@p +eakins@N +ear@Ni +earache@N +earaches@p +eardrum@N +eardrums@p +earful@N +earfuls@p +earhart@N +earl@N +earldom@N +earldoms@p +earlier@v +earliest@A +earliness@N +earlobe@? +earlobes@? +earls@p +early@Av +earmark@tN +earmarked@tA +earmarking@tA +earmarks@tp +earmuff@N +earmuffs@p +earn@Vt +earned@Vt +earner@N +earners@p +earnest@AN +earnestly@v +earnestness@N +earnests@p +earning@N +earnings@p +earns@Vt +earphone@N +earphones@p +earpiece@N +earpieces@p +earplug@N +earplugs@p +earring@N +earrings@p +ears@pi +earshot@N +earsplitting@A +earth@Nit +earthbound@A +earthed@Ait +earthen@A +earthenware@N +earthier@A +earthiest@A +earthiness@N +earthing@Ait +earthlier@A +earthliest@A +earthling@N +earthlings@p +earthly@A +earthquake@N +earthquakes@p +earths@pit +earthshaking@A +earthward@Av +earthwards@v +earthwork@N +earthworks@p +earthworm@N +earthworms@p +earthy@A +earwax@N +earwig@NV +earwigs@pV +ease@NVt +eased@V +easel@N +easels@p +eases@pVt +easier@A +easiest@A +easily@v +easiness@N +easing@NV +east@NA +eastbound@A +easter@N +easterlies@? +easterly@AvN +eastern@A +easterner@N +easterners@p +easternmost@A +easters@p +eastman@N +easts@p +eastward@AvN +eastwards@v +easy@AvV +easygoing@A +eat@Vt +eatable@A +eatables@p +eaten@V +eater@N +eateries@p +eaters@p +eatery@N +eating@NA +eats@p +eave@N +eaves@N +eavesdrop@V +eavesdropped@V +eavesdropper@N +eavesdroppers@p +eavesdropping@V +eavesdrops@V +ebb@iN +ebbed@iA +ebbing@iA +ebbs@ip +ebert@N +ebola@? +ebonics@p +ebonies@p +ebony@N +ebro@N +ebullience@N +ebullient@A +ec@N +eccentric@AN +eccentrically@v +eccentricities@p +eccentricity@N +eccentrics@p +ecclesiastes@N +ecclesiastic@NA +ecclesiastical@A +ecclesiastics@p +ecg@N +echelon@NV +echelons@pV +echo@N +echoed@A +echoes@? +echoing@A +echos@p +eclectic@AN +eclectically@v +eclecticism@N +eclectics@p +eclipse@Nt +eclipsed@V +eclipses@pt +eclipsing@V +ecliptic@NA +ecological@A +ecologically@v +ecologist@N +ecologists@p +ecology@N +econometric@A +economic@A +economical@A +economically@v +economics@N +economies@p +economise@ti +economised@ti +economises@ti +economising@ti +economist@N +economists@p +economize@V +economized@V +economizes@V +economizing@V +economy@N +ecosystem@N +ecosystems@p +ecru@NA +ecstasies@p +ecstasy@N +ecstatic@AN +ecstatically@v +ecu@N +ecuador@N +ecuadoran@AN +ecuadorans@p +ecuadorian@AN +ecuadorians@p +ecumenical@A +ecumenically@v +ecumenism@N +ecus@p +eczema@N +ed@N +edam@N +edams@p +edda@N +eddied@p +eddies@p +eddington@N +eddy@N +eddying@p +edelweiss@N +edema@N +eden@N +edens@p +edgar@N +edge@N +edged@V +edger@N +edges@p +edgeways@v +edgewise@v +edgier@A +edgiest@A +edgily@v +edginess@N +edging@NA +edgings@p +edgy@A +edibility@N +edible@A +edibles@p +edict@N +edicts@p +edification@N +edifice@N +edifices@p +edified@t +edifies@? +edify@V +edifying@t +edinburgh@N +edison@N +edit@tN +editable@? +edited@tA +editing@tA +edition@N +editions@p +editor@N +editorial@AN +editorialise@? +editorialised@? +editorialises@? +editorialising@? +editorialize@i +editorialized@i +editorializes@i +editorializing@i +editorially@v +editorials@p +editors@p +editorship@N +edits@tp +edmonton@N +eds@N +edsel@N +edt@N +educable@A +educate@V +educated@A +educates@V +educating@t +education@N +educational@A +educationalist@N +educationalists@p +educationally@v +educationist@N +educationists@p +educations@p +educative@A +educator@N +educators@p +edutainment@? +edward@N +edwardian@A +edwards@N +edwin@N +eec@N +eeg@N +eek@? +eel@N +eels@p +eeo@? +eerie@A +eerier@A +eeriest@A +eerily@v +eeriness@N +eery@A +eff@V +efface@t +effaced@t +effacement@N +effaces@t +effacing@t +effect@Nt +effected@At +effecting@At +effective@A +effectively@v +effectiveness@N +effects@p +effectual@A +effectually@v +effectuate@t +effectuated@t +effectuates@t +effectuating@t +effed@V +effeminacy@N +effeminate@A +effervesce@i +effervesced@i +effervescence@N +effervescent@A +effervesces@i +effervescing@i +effete@A +efficacious@A +efficaciously@v +efficacy@N +efficiency@N +efficient@A +efficiently@v +effigies@p +effigy@N +effing@V +efflorescence@N +effluent@NA +effluents@p +effort@N +effortless@A +effortlessly@v +efforts@p +effrontery@N +effs@V +effulgence@N +effulgent@A +effusion@N +effusions@p +effusive@A +effusively@v +effusiveness@N +efl@? +egalitarian@AN +egalitarianism@N +egalitarians@p +egg@Nt +eggbeater@N +eggbeaters@p +eggcup@N +eggcups@p +egged@At +egghead@N +eggheads@p +egging@At +eggnog@N +eggplant@N +eggplants@p +eggs@pt +eggshell@NA +eggshells@p +egis@N +eglantine@N +eglantines@p +ego@N +egocentric@AN +egocentrically@? +egocentricity@N +egocentrics@p +egoism@N +egoist@N +egoistic@A +egoists@p +egomania@N +egomaniac@N +egomaniacs@p +egos@p +egotism@N +egotist@N +egotistic@A +egotistical@? +egotistically@v +egotists@p +egregious@A +egregiously@v +egress@NVi +egresses@? +egret@N +egrets@p +egypt@N +egyptian@AN +egyptians@p +egyptology@N +eh@! +ehrlich@N +eichmann@N +eider@N +eiderdown@N +eiderdowns@p +eiders@p +eiffel@N +eigenvalue@N +eigenvalues@p +eight@ND +eighteen@ND +eighteens@pD +eighteenth@AN +eighteenths@p +eighth@ANv +eighths@pv +eighties@? +eightieth@AN +eightieths@p +eights@pD +eighty@ND +einstein@N +einsteins@p +eire@N +eisenhower@N +eisenstein@N +eisteddfod@N +eisteddfods@p +either@DCv +ejaculate@VtN +ejaculated@V +ejaculates@Vtp +ejaculating@V +ejaculation@N +ejaculations@p +eject@ti +ejected@ti +ejecting@ti +ejection@N +ejections@p +ejects@ti +eke@t +eked@t +ekes@t +ekg@N +eking@t +elaborate@AVit +elaborated@V +elaborately@v +elaborateness@N +elaborates@pVit +elaborating@V +elaboration@N +elaborations@p +elaine@N +elam@N +elapse@i +elapsed@V +elapses@i +elapsing@V +elastic@AN +elasticated@t +elasticise@? +elasticised@? +elasticises@? +elasticising@? +elasticity@N +elasticize@V +elasticized@t +elasticizes@V +elasticizing@t +elastics@p +elate@t +elated@AV +elates@t +elating@V +elation@N +elba@N +elbe@N +elbert@N +elbow@NVt +elbowed@AVt +elbowing@AVt +elbowroom@N +elbows@pVt +elbrus@N +elder@AN +elderberries@p +elderberry@N +elderly@A +elders@p +eldest@A +elect@tA +elected@tA +electing@tA +election@N +electioneer@iAN +electioneered@iA +electioneering@iA +electioneers@ip +elections@p +elective@A +electives@p +elector@N +electoral@A +electorally@v +electorate@N +electorates@p +electors@p +electra@N +electric@AN +electrical@A +electrically@v +electrician@N +electricians@p +electricity@N +electrics@p +electrification@N +electrified@t +electrifies@? +electrify@V +electrifying@t +electrocardiogram@N +electrocardiograms@p +electrocardiograph@N +electrocardiographs@p +electrocute@t +electrocuted@t +electrocutes@t +electrocuting@t +electrocution@N +electrocutions@p +electrode@N +electrodes@p +electrodynamics@N +electroencephalogram@N +electroencephalograms@p +electroencephalograph@N +electroencephalographs@p +electrolysis@N +electrolyte@N +electrolytes@p +electrolytic@AN +electromagnet@N +electromagnetic@AN +electromagnetism@N +electromagnets@p +electron@N +electronic@A +electronically@v +electronics@N +electrons@p +electroplate@tNA +electroplated@V +electroplates@tp +electroplating@V +electrostatic@A +elects@tp +elegance@N +elegant@A +elegantly@v +elegiac@AN +elegiacs@p +elegies@p +elegy@N +element@N +elemental@AN +elementary@A +elements@p +elephant@N +elephantine@A +elephants@p +elevate@t +elevated@A +elevates@t +elevating@V +elevation@N +elevations@p +elevator@N +elevators@p +eleven@ND +elevens@pD +elevenses@p +eleventh@AN +elevenths@p +elf@N +elfin@AN +elfish@AN +elgar@N +eli@N +elias@N +elicit@t +elicited@t +eliciting@t +elicits@t +elide@V +elided@t +elides@V +eliding@t +eligibility@N +eligible@A +elijah@N +eliminate@t +eliminated@t +eliminates@t +eliminating@t +elimination@N +eliminations@p +eliminator@N +eliminators@p +eliot@N +elisabeth@N +elisha@N +elision@N +elisions@p +elite@NA +elites@p +elitism@N +elitist@N +elitists@p +elixir@N +elixirs@p +elizabeth@N +elizabethan@AN +elizabethans@p +elk@N +elks@p +ell@N +ellington@N +ellipse@N +ellipses@p +ellipsis@N +elliptic@A +elliptical@A +elliptically@v +ellis@N +ells@p +elm@N +elms@p +elocution@N +elocutionist@N +elocutionists@p +elohim@N +elongate@VA +elongated@V +elongates@Vp +elongating@V +elongation@N +elongations@p +elope@i +eloped@i +elopement@N +elopements@p +elopes@i +eloping@i +eloquence@N +eloquent@A +eloquently@v +else@Dv +elsewhere@v +elsinore@N +elucidate@V +elucidated@t +elucidates@V +elucidating@t +elucidation@N +elucidations@p +elude@t +eluded@t +eludes@t +eluding@t +elul@N +elusive@A +elusively@v +elusiveness@N +elves@N +elvish@A +elvishes@? +elysian@A +elysium@N +elysiums@p +em@N +emaciate@V +emaciated@A +emaciates@V +emaciating@t +emaciation@N +email@? +emailed@? +emailing@? +emails@p +emanate@it +emanated@V +emanates@it +emanating@V +emanation@N +emanations@p +emancipate@t +emancipated@t +emancipates@t +emancipating@t +emancipation@N +emancipator@N +emancipators@p +emasculate@VtA +emasculated@V +emasculates@Vtp +emasculating@V +emasculation@N +embalm@t +embalmed@t +embalmer@N +embalmers@p +embalming@t +embalms@t +embankment@N +embankments@p +embargo@NVt +embargoed@AVt +embargoes@p +embargoing@p +embark@Vi +embarkation@N +embarkations@p +embarked@Vi +embarking@Vi +embarks@Vi +embarrass@V +embarrassed@V +embarrasses@? +embarrassing@V +embarrassingly@v +embarrassment@N +embarrassments@p +embassies@p +embassy@N +embattled@A +embed@Vt +embedded@t +embedding@N +embeds@Vt +embellish@t +embellished@t +embellishes@? +embellishing@t +embellishment@N +embellishments@p +ember@N +embers@p +embezzle@V +embezzled@t +embezzlement@N +embezzler@N +embezzlers@p +embezzles@V +embezzling@t +embitter@t +embittered@t +embittering@t +embitters@t +emblazon@t +emblazoned@t +emblazoning@t +emblazons@t +emblem@N +emblematic@A +emblematically@v +emblems@p +embodied@t +embodies@? +embodiment@N +embody@V +embodying@t +embolden@t +emboldened@t +emboldening@t +emboldens@t +embolism@N +embolisms@p +emboss@V +embossed@V +embosses@? +embossing@V +embrace@VNt +embraced@Vt +embraces@Vpt +embracing@Vt +embrocation@N +embrocations@p +embroider@V +embroidered@V +embroideries@p +embroidering@V +embroiders@V +embroidery@N +embroil@t +embroiled@t +embroiling@t +embroils@t +embryo@N +embryological@A +embryologist@N +embryologists@p +embryology@N +embryonic@A +embryos@p +emcee@NV +emceed@V +emceeing@V +emcees@pV +emend@t +emendation@N +emendations@p +emended@t +emending@t +emends@t +emerald@N +emeralds@p +emerge@i +emerged@i +emergence@N +emergencies@p +emergency@N +emergent@AN +emerges@i +emerging@i +emeritus@AN +emerson@N +emery@N +emetic@AN +emetics@p +emigrant@N +emigrants@p +emigrate@i +emigrated@V +emigrates@i +emigrating@V +emigration@N +emigrations@p +eminence@N +eminences@p +eminent@A +eminently@v +emir@N +emirate@N +emirates@p +emirs@p +emissaries@p +emissary@N +emission@N +emissions@p +emit@V +emits@V +emitted@t +emitting@t +emmanuel@N +emmy@N +emollient@AN +emollients@p +emolument@N +emoluments@p +emote@i +emoted@i +emotes@i +emoticon@? +emoticons@p +emoting@i +emotion@N +emotional@A +emotionalism@N +emotionally@v +emotionless@A +emotions@p +emotive@A +emotively@v +empanel@V +empaneled@t +empaneling@t +empanelled@t +empanelling@t +empanels@V +empathetic@? +empathise@? +empathised@? +empathises@? +empathising@? +empathize@i +empathized@i +empathizes@i +empathizing@i +empathy@N +emperor@N +emperors@p +emphases@p +emphasis@N +emphasise@t +emphasised@t +emphasises@t +emphasising@t +emphasize@t +emphasized@t +emphasizes@t +emphasizing@t +emphatic@AN +emphatically@? +emphysema@N +empire@N +empires@p +empirical@A +empirically@v +empiricism@NA +empiricist@NA +empiricists@p +emplacement@N +emplacements@p +employ@tN +employable@A +employe@? +employed@tA +employee@N +employees@p +employer@N +employers@p +employes@? +employing@tA +employment@N +employments@p +employs@tp +emporia@N +emporium@N +emporiums@p +empower@t +empowered@t +empowering@t +empowerment@N +empowers@t +empress@N +empresses@? +emptied@A +emptier@N +empties@A +emptiest@A +emptily@v +emptiness@N +empty@AV +emptying@A +ems@N +emt@? +emu@N +emulate@V +emulated@V +emulates@V +emulating@V +emulation@N +emulations@p +emulator@N +emulators@p +emulsification@N +emulsified@t +emulsifier@N +emulsifiers@p +emulsifies@? +emulsify@V +emulsifying@t +emulsion@N +emulsions@p +emus@p +emusic@? +enable@t +enabled@t +enabler@N +enablers@p +enables@t +enabling@A +enact@t +enacted@t +enacting@t +enactment@N +enactments@p +enacts@t +enamel@NVt +enameled@V +enameling@V +enamelings@V +enamelled@V +enamelling@V +enamellings@V +enamels@pVt +enamor@t +enamored@t +enamoring@t +enamors@t +enamour@t +enamoured@t +enamouring@t +enamours@t +encamp@V +encamped@V +encamping@V +encampment@N +encampments@p +encamps@V +encapsulate@Vt +encapsulated@ti +encapsulates@Vt +encapsulating@ti +encapsulation@N +encapsulations@p +encase@t +encased@t +encases@t +encasing@t +encephalitis@N +enchant@t +enchanted@t +enchanter@N +enchanters@p +enchanting@A +enchantingly@? +enchantment@N +enchantments@p +enchantress@N +enchantresses@? +enchants@t +enchilada@N +enchiladas@p +encircle@t +encircled@t +encirclement@N +encircles@t +encircling@t +enclave@N +enclaves@p +enclose@t +enclosed@t +encloses@t +enclosing@t +enclosure@N +enclosures@p +encode@t +encoded@t +encoder@N +encoders@p +encodes@t +encoding@t +encompass@t +encompassed@t +encompasses@? +encompassing@t +encore@!Nt +encored@V +encores@!pt +encoring@V +encounter@VtN +encountered@VtA +encountering@VtA +encounters@Vtp +encourage@t +encouraged@t +encouragement@N +encouragements@p +encourages@t +encouraging@t +encouragingly@v +encroach@i +encroached@i +encroaches@? +encroaching@i +encroachment@N +encroachments@p +encrust@tN +encrustation@N +encrustations@p +encrusted@tA +encrusting@tA +encrusts@tp +encrypt@t +encrypted@t +encrypting@t +encryption@N +encrypts@t +encumber@t +encumbered@t +encumbering@t +encumbers@t +encumbrance@N +encumbrances@p +encyclical@NA +encyclicals@p +encyclopaedia@? +encyclopaedias@p +encyclopedia@N +encyclopedias@p +encyclopedic@A +end@N +endanger@t +endangered@t +endangering@t +endangers@t +endear@t +endeared@t +endearing@t +endearingly@v +endearment@N +endearments@p +endears@t +endeavor@iN +endeavored@iA +endeavoring@iA +endeavors@ip +endeavour@VN +endeavoured@VA +endeavouring@VA +endeavours@Vp +ended@A +endemic@ANv +endemics@pv +endgame@N +endgames@p +ending@N +endings@p +endive@N +endives@p +endless@A +endlessly@v +endlessness@N +endocrine@AN +endocrines@p +endorphin@? +endorse@t +endorsed@A +endorsement@N +endorsements@p +endorser@N +endorsers@p +endorses@t +endorsing@V +endow@t +endowed@t +endowing@t +endowment@N +endowments@p +endows@t +endpoint@N +endpoints@p +ends@p +endue@V +endued@t +endues@V +enduing@t +endurable@A +endurance@N +endure@Vti +endured@V +endures@Vti +enduring@A +endways@vA +endwise@? +endymion@N +enema@N +enemas@p +enemata@? +enemies@p +enemy@N +energetic@A +energetically@v +energies@p +energise@ti +energised@ti +energiser@N +energisers@p +energises@ti +energising@ti +energize@Vt +energized@V +energizer@N +energizers@p +energizes@Vt +energizing@V +energy@N +enervate@VtA +enervated@A +enervates@Vtp +enervating@V +enervation@N +enfeeble@t +enfeebled@t +enfeebles@t +enfeebling@t +enfold@t +enfolded@t +enfolding@t +enfolds@t +enforce@t +enforceable@A +enforced@t +enforcement@N +enforcer@N +enforcers@p +enforces@t +enforcing@t +enfranchise@t +enfranchised@t +enfranchisement@N +enfranchises@t +enfranchising@t +eng@N +engage@Vi +engaged@A +engagement@N +engagements@p +engages@Vi +engaging@A +engagingly@v +engels@N +engender@t +engendered@t +engendering@t +engenders@t +engine@N +engineer@Nt +engineered@At +engineering@N +engineers@pt +engines@p +england@N +english@NAt +englishes@? +englishman@N +englishmen@p +englishwoman@N +englishwomen@p +engorge@t +engorged@ti +engorgement@N +engorges@t +engorging@ti +engrave@t +engraved@t +engraver@N +engravers@p +engraves@t +engraving@N +engravings@p +engross@t +engrossed@t +engrosses@? +engrossing@A +engulf@t +engulfed@t +engulfing@t +engulfs@t +enhance@t +enhanced@A +enhancement@N +enhancements@p +enhancer@N +enhancers@p +enhances@t +enhancing@t +enid@N +enigma@N +enigmas@p +enigmatic@A +enigmatically@v +eniwetok@N +enjoin@t +enjoined@t +enjoining@t +enjoins@t +enjoy@t +enjoyable@A +enjoyably@v +enjoyed@t +enjoying@t +enjoyment@N +enjoyments@p +enjoys@t +enlarge@Vti +enlarged@V +enlargement@N +enlargements@p +enlarger@N +enlargers@p +enlarges@Vti +enlarging@V +enlighten@t +enlightened@t +enlightening@t +enlightenment@N +enlightens@t +enlist@Vti +enlisted@Vti +enlistee@N +enlistees@p +enlisting@Vti +enlistment@N +enlistments@p +enlists@Vti +enliven@t +enlivened@t +enlivening@t +enlivens@t +enmesh@t +enmeshed@t +enmeshes@? +enmeshing@t +enmities@p +enmity@N +ennoble@t +ennobled@t +ennoblement@N +ennobles@t +ennobling@t +ennui@N +enoch@N +enormities@p +enormity@N +enormous@A +enormously@v +enormousness@N +enos@N +enough@Dv +enquire@V +enquired@ti +enquirer@? +enquirers@p +enquires@V +enquiries@p +enquiring@ti +enquiringly@? +enquiry@N +enrage@t +enraged@t +enrages@t +enraging@t +enrapture@t +enraptured@t +enraptures@t +enrapturing@t +enrich@t +enriched@t +enriches@? +enriching@t +enrichment@N +enrol@V +enroll@ti +enrolled@ti +enrolling@ti +enrollment@N +enrollments@p +enrolls@ti +enrolment@N +enrolments@p +enrols@V +ensconce@t +ensconced@t +ensconces@t +ensconcing@t +ensemble@Nv +ensembles@pv +enshrine@t +enshrined@t +enshrines@t +enshrining@t +enshroud@t +enshrouded@t +enshrouding@t +enshrouds@t +ensign@N +ensigns@p +enslave@t +enslaved@t +enslavement@N +enslaves@t +enslaving@t +ensnare@t +ensnared@t +ensnares@t +ensnaring@t +ensue@Vit +ensued@i +ensues@Vit +ensuing@i +ensure@tN +ensured@t +ensures@tp +ensuring@t +entail@tN +entailed@tA +entailing@tA +entails@tp +entangle@t +entangled@t +entanglement@N +entanglements@p +entangles@t +entangling@t +entente@N +ententes@p +enter@Vti +entered@Vti +entering@Vti +enteritis@N +enterprise@N +enterprises@p +enterprising@A +enters@Vti +entertain@Vt +entertained@Vt +entertainer@N +entertainers@p +entertaining@A +entertainingly@v +entertainment@N +entertainments@p +entertains@Vt +enthral@V +enthrall@t +enthralled@t +enthralling@t +enthralls@t +enthrals@V +enthrone@t +enthroned@t +enthronement@N +enthronements@p +enthrones@t +enthroning@t +enthuse@V +enthused@V +enthuses@V +enthusiasm@N +enthusiasms@p +enthusiast@N +enthusiastic@A +enthusiastically@v +enthusiasts@p +enthusing@V +entice@t +enticed@t +enticement@N +enticements@p +entices@t +enticing@t +enticingly@v +entire@AN +entirely@v +entirety@N +entities@? +entitle@t +entitled@t +entitlement@N +entitlements@p +entitles@t +entitling@t +entity@N +entomb@t +entombed@t +entombing@t +entombment@N +entombs@t +entomological@A +entomologist@? +entomologists@p +entomology@N +entourage@N +entourages@p +entrails@p +entrance@Nt +entranced@t +entrances@pt +entrancing@t +entrant@N +entrants@p +entrap@V +entrapment@N +entrapped@t +entrapping@t +entraps@V +entreat@V +entreated@V +entreaties@p +entreating@V +entreats@V +entreaty@N +entrench@ti +entrenched@ti +entrenches@? +entrenching@ti +entrenchment@N +entrenchments@p +entrepreneur@N +entrepreneurial@A +entrepreneurs@p +entrepreneurship@N +entries@p +entropy@N +entrust@t +entrusted@t +entrusting@t +entrusts@t +entry@N +entryphone@? +entryphones@? +entryway@N +entryways@p +entwine@V +entwined@ti +entwines@V +entwining@ti +enumerable@A +enumerate@t +enumerated@t +enumerates@t +enumerating@t +enumeration@N +enumerations@p +enunciate@Vt +enunciated@V +enunciates@Vt +enunciating@V +enunciation@N +enure@V +enured@ti +enures@V +enuring@ti +envelop@t +envelope@N +enveloped@V +envelopes@p +enveloping@V +envelopment@N +envelops@t +enviable@A +enviably@v +envied@p +envies@p +envious@A +enviously@v +enviousness@N +environment@N +environmental@A +environmentalism@N +environmentalist@N +environmentalists@p +environmentally@v +environments@p +environs@p +envisage@t +envisaged@t +envisages@t +envisaging@t +envision@t +envisioned@t +envisioning@t +envisions@t +envoy@N +envoys@p +envy@NV +envying@p +enzyme@N +enzymes@p +eocene@AN +eon@N +eons@p +epa@? +epaulet@N +epaulets@p +epaulette@? +epaulettes@? +ephemera@N +ephemeral@AN +ephesian@AN +ephesus@N +ephraim@N +epic@NA +epicenter@N +epicenters@p +epicentre@N +epicentres@p +epics@p +epictetus@N +epicure@N +epicurean@AN +epicureans@p +epicures@p +epicurus@N +epidemic@AN +epidemics@p +epidemiological@A +epidemiologist@N +epidemiologists@p +epidemiology@N +epidermal@A +epidermis@N +epidermises@? +epidural@AN +epidurals@p +epiglottides@p +epiglottis@N +epiglottises@p +epigram@N +epigrammatic@A +epigrams@p +epigraph@N +epigraphs@p +epilepsy@N +epileptic@AN +epileptics@p +epilog@? +epilogs@p +epilogue@N +epilogues@p +epiphanies@p +epiphany@N +episcopacy@N +episcopal@A +episcopalian@AN +episcopalians@p +episcopate@N +episode@N +episodes@p +episodic@A +epistemology@N +epistle@N +epistles@p +epistolary@A +epitaph@N +epitaphs@p +epithet@N +epithets@p +epitome@N +epitomes@p +epitomise@t +epitomised@t +epitomises@t +epitomising@t +epitomize@t +epitomized@t +epitomizes@t +epitomizing@t +epoch@N +epochal@A +epochs@p +eponymous@A +epoxied@? +epoxies@p +epoxy@AN +epoxyed@A +epoxying@A +epsilon@N +epsilons@p +epsom@N +epstein@N +equability@N +equable@A +equably@v +equal@ANV +equaled@AV +equaling@AV +equalisation@N +equalise@t +equalised@t +equaliser@? +equalisers@p +equalises@t +equalising@t +equality@N +equalization@N +equalize@ti +equalized@t +equalizer@N +equalizers@p +equalizes@ti +equalizing@t +equalled@? +equalling@? +equally@v +equals@pV +equanimity@N +equate@Vi +equated@t +equates@Vi +equating@t +equation@N +equations@p +equator@N +equatorial@AN +equators@p +equerries@p +equerry@N +equestrian@AN +equestrians@p +equestrienne@N +equestriennes@p +equidistant@A +equilateral@AN +equilaterals@p +equilibrium@N +equine@A +equines@p +equinoctial@AN +equinox@N +equinoxes@? +equip@V +equipage@N +equipages@p +equipment@N +equipoise@Nt +equipped@t +equipping@t +equips@V +equitable@A +equitably@v +equities@p +equity@N +equivalence@N +equivalences@p +equivalent@AN +equivalently@v +equivalents@p +equivocal@A +equivocally@v +equivocate@i +equivocated@i +equivocates@i +equivocating@i +equivocation@N +equivocations@p +equuleus@N +er@! +era@N +eradicate@t +eradicated@t +eradicates@t +eradicating@t +eradication@N +eras@N +erase@Vt +erased@AV +eraser@N +erasers@p +erases@Vt +erasing@V +erasmus@N +erasure@N +erasures@p +erato@N +eratosthenes@N +ere@CP +erebus@N +erect@AV +erected@AV +erectile@A +erecting@AV +erection@N +erections@p +erectly@v +erectness@N +erector@N +erects@pV +erg@N +ergo@C +ergonomic@A +ergonomically@? +ergonomics@N +ergs@p +erhard@N +ericson@N +ericsson@N +eridanus@N +erie@N +erin@N +eris@N +erises@? +eritrea@N +ermine@N +ermines@N +ernst@N +erode@Vt +eroded@V +erodes@Vt +eroding@V +erogenous@A +eros@N +eroses@p +erosion@N +erosive@A +erotic@AN +erotica@N +erotically@A +eroticism@N +erotics@p +eroticses@? +err@i +errand@N +errands@p +errant@A +errata@N +erratas@p +erratic@AN +erratically@v +erratum@N +erred@i +erring@A +erroneous@A +erroneously@v +error@N +errors@p +errs@i +ersatz@AN +ersatzes@? +erse@NA +erstwhile@Av +erudite@A +eruditely@v +erudition@N +erupt@Vi +erupted@Vi +erupting@Vi +eruption@N +eruptions@p +erupts@Vi +erythrocyte@NA +erythrocytes@p +es@N +esau@N +escalate@V +escalated@ti +escalates@V +escalating@ti +escalation@N +escalations@p +escalator@N +escalators@p +escalope@N +escalopes@p +escapade@N +escapades@p +escape@VitN +escaped@V +escapee@N +escapees@p +escapes@Vitp +escaping@V +escapism@NA +escapist@AN +escapists@p +escapologist@N +escapologists@p +escapology@? +escarole@N +escaroles@p +escarpment@N +escarpments@p +eschatology@N +eschew@t +eschewed@t +eschewing@t +eschews@t +escollope@? +escollopes@? +escort@NVt +escorted@AVt +escorting@AVt +escorts@pVt +escrow@Nt +escrows@pt +escudo@N +escudos@p +escutcheon@N +escutcheons@p +eskimo@NA +eskimos@p +esl@? +esophagi@? +esophagus@N +esophaguses@? +esoteric@A +esoterically@v +esp@N +espadrille@N +espadrilles@p +especial@A +especially@v +esperanto@NA +espied@t +espies@? +espionage@N +esplanade@N +esplanades@p +espn@? +espousal@N +espouse@t +espoused@t +espouses@t +espousing@t +espresso@N +espressos@p +espy@N +espying@t +esq@N +esquire@Nt +esquires@pt +essay@Nt +essayed@At +essaying@At +essayist@N +essayists@p +essays@pt +essen@N +essence@N +essences@p +essene@N +essential@AN +essentially@v +essentials@p +essequibo@N +essex@N +est@N +establish@t +established@t +establishes@? +establishing@t +establishment@N +establishments@p +estate@N +estates@p +esteem@tN +esteemed@tA +esteeming@tA +esteems@tp +ester@N +esters@p +estes@N +esther@N +esthete@N +esthetes@p +esthetic@A +esthetics@N +estimable@A +estimate@VtN +estimated@V +estimates@Vtp +estimating@V +estimation@N +estimations@p +estimator@N +estimators@p +estonia@N +estonian@AN +estonians@p +estrange@t +estranged@t +estrangement@N +estrangements@p +estranges@t +estranging@t +estrogen@N +estuaries@p +estuary@N +et@C +eta@N +etc@N +etch@t +etched@t +etcher@N +etchers@p +etches@? +etching@N +etchings@p +etd@N +eternal@A +eternally@v +eternities@p +eternity@N +ethanol@N +ether@N +ethereal@A +ethereally@v +ethernet@? +ethic@NA +ethical@A +ethically@v +ethics@N +ethiopia@N +ethiopian@AN +ethiopians@p +ethnic@A +ethnically@v +ethnicity@N +ethnics@p +ethnocentric@A +ethnocentrism@N +ethnographer@N +ethnographers@p +ethnographic@A +ethnographically@v +ethnography@N +ethnological@A +ethnologically@v +ethnologist@N +ethnologists@p +ethnology@N +ethos@N +etiolated@V +etiologies@p +etiology@N +etiquette@N +etna@N +eton@N +etruria@N +etruscan@NA +etymological@A +etymologically@v +etymologies@p +etymologist@N +etymologists@p +etymology@N +eu@N +eucalypti@? +eucalyptus@N +eucalyptuses@? +eucharist@N +eucharistic@A +eucharists@p +euclid@N +euclidean@A +eugene@N +eugenic@A +eugenics@N +eula@N +eulas@p +euler@N +eulogies@p +eulogise@t +eulogised@t +eulogises@t +eulogising@t +eulogist@N +eulogistic@A +eulogists@p +eulogize@V +eulogized@t +eulogizes@V +eulogizing@t +eulogy@N +eumenides@p +eunuch@N +eunuchs@p +euphemism@N +euphemisms@p +euphemistic@A +euphemistically@v +euphonious@A +euphony@N +euphoria@N +euphoric@A +euphorically@? +euphrates@N +eurasia@N +eurasian@AN +eurasians@p +eureka@! +euripides@N +euro@? +eurodollar@N +eurodollars@p +europa@N +europe@N +european@AN +europeans@p +euros@p +eurydice@N +eutectic@AN +euterpe@N +euthanasia@N +evacuate@Vt +evacuated@V +evacuates@Vt +evacuating@V +evacuation@N +evacuations@p +evacuee@N +evacuees@p +evade@V +evaded@V +evades@V +evading@V +evaluate@t +evaluated@t +evaluates@t +evaluating@t +evaluation@N +evaluations@p +evaluative@A +evanescent@A +evangelical@AN +evangelicals@p +evangelise@ti +evangelised@ti +evangelises@ti +evangelising@ti +evangelism@N +evangelist@N +evangelistic@A +evangelists@N +evangelize@Vi +evangelized@V +evangelizes@Vi +evangelizing@V +evans@N +evansville@N +evaporate@VN +evaporated@V +evaporates@Vp +evaporating@V +evaporation@N +evasion@N +evasions@p +evasive@A +evasively@v +evasiveness@N +eve@N +evelyn@N +even@AvN +evened@Av +evener@N +evenest@? +evenhanded@? +evening@N +evenings@v +evenki@? +evenly@v +evenness@N +evens@Av +evensong@N +event@N +eventful@A +eventfully@v +eventfulness@N +eventide@N +events@p +eventual@A +eventualities@p +eventuality@N +eventually@v +eventuate@i +eventuated@i +eventuates@i +eventuating@i +ever@v +everest@N +everglade@N +everglades@p +evergreen@AN +evergreens@p +everlasting@AN +everlastingly@v +everlastings@p +evermore@v +every@D +everybody@r +everyday@A +everyone@r +everyplace@v +everything@r +everywhere@v +eves@p +evict@t +evicted@t +evicting@t +eviction@N +evictions@p +evicts@t +evidence@Nt +evidenced@V +evidences@pt +evidencing@V +evident@A +evidently@v +evil@ANv +evildoer@N +evildoers@p +eviler@? +evilest@? +eviller@? +evillest@? +evilly@v +evils@pv +evince@t +evinced@t +evinces@t +evincing@t +eviscerate@tiA +eviscerated@V +eviscerates@tip +eviscerating@V +evisceration@N +evocation@N +evocations@p +evocative@A +evocatively@v +evoke@t +evoked@t +evokes@t +evoking@t +evolution@N +evolutionary@A +evolve@Vt +evolved@V +evolves@Vt +evolving@V +ewe@N +ewer@N +ewers@p +ewes@p +ex@N +exacerbate@t +exacerbated@t +exacerbates@t +exacerbating@t +exacerbation@N +exact@At +exacted@At +exacter@N +exactest@? +exacting@A +exactingly@v +exactitude@N +exactly@v! +exactness@N +exacts@pt +exaggerate@Vt +exaggerated@A +exaggeratedly@v +exaggerates@Vt +exaggerating@V +exaggeration@N +exaggerations@p +exalt@t +exaltation@N +exalted@A +exalting@t +exalts@t +exam@N +examination@N +examinations@p +examine@t +examined@t +examiner@N +examiners@p +examines@t +examining@t +example@Nt +exampled@V +examples@pt +exampling@V +exams@p +exasperate@tA +exasperated@V +exasperatedly@v +exasperates@tp +exasperating@V +exasperatingly@v +exasperation@N +excalibur@N +excavate@V +excavated@t +excavates@V +excavating@t +excavation@N +excavations@p +excavator@N +excavators@p +exceed@Vt +exceeded@Vt +exceeding@Av +exceedingly@v +exceeds@Vt +excel@Vi +excelled@V +excellence@N +excellencies@p +excellency@N +excellent@A +excellently@v +excelling@V +excels@Vi +except@PCti +excepted@PCti +excepting@PC +exception@N +exceptionable@A +exceptional@A +exceptionally@v +exceptions@p +excepts@PCti +excerpt@NVt +excerpted@AVt +excerpting@AVt +excerpts@pVt +excess@NA +excesses@? +excessive@A +excessively@v +exchange@tN +exchangeable@A +exchanged@V +exchanges@tp +exchanging@V +exchequer@N +exchequers@p +excise@NVt +excised@t +excises@pVt +excising@t +excision@N +excisions@p +excitability@N +excitable@A +excitation@N +excite@t +excited@A +excitedly@v +excitement@N +excitements@p +excites@t +exciting@A +excitingly@v +excl@N +exclaim@V +exclaimed@V +exclaiming@V +exclaims@V +exclamation@N +exclamations@p +exclamatory@A +excls@p +exclude@t +excluded@t +excludes@t +excluding@t +exclusion@N +exclusionary@A +exclusions@p +exclusive@AN +exclusively@v +exclusiveness@N +exclusives@p +exclusivity@N +excommunicate@VtAN +excommunicated@V +excommunicates@Vtp +excommunicating@V +excommunication@N +excommunications@p +excoriate@t +excoriated@t +excoriates@t +excoriating@t +excoriation@N +excoriations@p +excrement@N +excrescence@N +excrescences@p +excreta@p +excrete@V +excreted@t +excretes@V +excreting@t +excretion@N +excretions@p +excretory@A +excruciating@A +excruciatingly@v +exculpate@t +exculpated@t +exculpates@t +exculpating@t +exculpation@N +exculpatory@A +excursion@N +excursions@p +excusable@A +excuse@VtN +excused@V +excuses@Vtp +excusing@V +exec@N +execked@? +execking@? +execrable@A +execrably@v +execrate@t +execrated@V +execrates@t +execrating@V +execs@p +executable@A +execute@t +executed@t +executes@t +executing@t +execution@N +executioner@N +executioners@p +executions@p +executive@NA +executives@p +executor@N +executors@p +executrices@p +executrix@N +executrixes@? +exegeses@p +exegesis@N +exemplar@N +exemplars@p +exemplary@A +exemplification@N +exemplifications@p +exemplified@t +exemplifies@? +exemplify@V +exemplifying@t +exempt@tN +exempted@tA +exempting@tA +exemption@N +exemptions@p +exempts@tp +exercise@ViN +exercised@V +exercises@Vip +exercising@V +exercycle@? +exert@t +exerted@t +exerting@t +exertion@N +exertions@p +exerts@t +exes@? +exeunt@i +exfoliate@Vi +exfoliated@V +exfoliates@Vi +exfoliating@V +exfoliation@N +exhalation@N +exhalations@p +exhale@V +exhaled@V +exhales@V +exhaling@V +exhaust@ViN +exhausted@ViA +exhaustible@A +exhausting@ViA +exhaustion@N +exhaustive@A +exhaustively@v +exhausts@Vip +exhibit@VN +exhibited@VA +exhibiting@VA +exhibition@N +exhibitionism@N +exhibitionist@N +exhibitionists@p +exhibitions@p +exhibitor@N +exhibitors@p +exhibits@Vp +exhilarate@t +exhilarated@t +exhilarates@t +exhilarating@t +exhilaration@N +exhort@V +exhortation@N +exhortations@p +exhorted@V +exhorting@V +exhorts@V +exhumation@N +exhumations@p +exhume@t +exhumed@t +exhumes@t +exhuming@t +exigencies@p +exigency@N +exigent@A +exiguous@A +exile@N +exiled@V +exiles@p +exiling@V +exist@i +existed@i +existence@N +existences@p +existent@AN +existential@A +existentialism@N +existentialist@AN +existentialists@p +existentially@v +existing@i +exists@i +exit@Ni +exited@Ai +exiting@Ai +exits@pi +exodus@N +exoduses@? +exonerate@t +exonerated@t +exonerates@t +exonerating@t +exoneration@N +exorbitance@N +exorbitant@A +exorbitantly@v +exorcise@t +exorcised@t +exorcises@t +exorcising@t +exorcism@N +exorcisms@p +exorcist@N +exorcists@p +exorcize@t +exorcized@t +exorcizes@t +exorcizing@t +exotic@AN +exotica@p +exotically@v +exoticism@N +exotics@p +expand@Vi +expandable@A +expanded@A +expanding@Vi +expands@Vi +expanse@N +expanses@p +expansion@N +expansionary@A +expansionism@NA +expansionist@N +expansionists@p +expansions@p +expansive@A +expansively@v +expansiveness@? +expat@? +expatiate@i +expatiated@i +expatiates@i +expatiating@i +expatriate@ANVt +expatriated@V +expatriates@pVt +expatriating@V +expatriation@N +expats@p +expect@t +expectancy@N +expectant@AN +expectantly@v +expectation@N +expectations@p +expected@t +expecting@A +expectorant@AN +expectorants@p +expectorate@V +expectorated@V +expectorates@V +expectorating@V +expectoration@N +expects@t +expedience@? +expediences@? +expediencies@p +expediency@N +expedient@AN +expediently@v +expedients@p +expedite@tA +expedited@V +expediter@N +expediters@p +expedites@tp +expediting@V +expedition@N +expeditionary@A +expeditions@p +expeditious@A +expeditiously@v +expeditor@N +expeditors@p +expel@V +expelled@t +expelling@t +expels@V +expend@t +expendable@AN +expendables@p +expended@t +expending@t +expenditure@N +expenditures@p +expends@t +expense@Nt +expenses@pt +expensive@A +expensively@v +experience@Nt +experienced@A +experiences@pt +experiencing@V +experiential@A +experiment@NVi +experimental@A +experimentally@v +experimentation@N +experimented@AVi +experimenter@N +experimenters@p +experimenting@AVi +experiments@pVi +expert@NA +expertise@N +expertly@v +expertness@N +experts@p +expiate@t +expiated@t +expiates@t +expiating@t +expiation@N +expiration@N +expire@i +expired@V +expires@i +expiring@V +expiry@N +explain@Vt +explained@Vt +explaining@Vt +explains@Vt +explanation@N +explanations@p +explanatory@A +expletive@NA +expletives@p +explicable@A +explicate@t +explicated@t +explicates@t +explicating@t +explication@N +explications@p +explicit@A +explicitly@v +explicitness@N +explode@Vit +exploded@V +explodes@Vit +exploding@V +exploit@NVt +exploitable@A +exploitation@N +exploitative@A +exploited@AVt +exploiter@Nt +exploiters@pt +exploiting@AVt +exploits@pVt +exploration@N +explorations@p +exploratory@A +explore@t +explored@V +explorer@N +explorers@p +explores@t +exploring@V +explosion@N +explosions@p +explosive@AN +explosively@v +explosiveness@N +explosives@p +expo@N +exponent@NA +exponential@AN +exponentially@v +exponentiation@? +exponents@p +export@NVt +exportable@A +exportation@N +exported@AVt +exporter@N +exporters@p +exporting@AVt +exports@pVt +expos@N +expose@t +exposed@A +exposes@t +exposing@t +exposition@N +expositions@p +expository@A +expostulate@i +expostulated@i +expostulates@i +expostulating@i +expostulation@N +expostulations@p +exposure@N +exposures@p +expound@V +expounded@V +expounding@V +expounds@V +express@tANv +expressed@tAv +expresses@? +expressible@A +expressing@tAv +expression@N +expressionism@N +expressionist@NA +expressionists@p +expressionless@A +expressionlessly@v +expressions@p +expressive@A +expressively@v +expressiveness@N +expressly@v +expressway@N +expressways@p +expropriate@t +expropriated@t +expropriates@t +expropriating@t +expropriation@N +expropriations@p +expropriator@N +expropriators@p +expulsion@N +expulsions@p +expunge@t +expunged@t +expunges@t +expunging@t +expurgate@t +expurgated@t +expurgates@t +expurgating@t +expurgation@N +expurgations@p +exquisite@AN +exquisitely@v +exquisiteness@N +extant@A +extemporaneous@A +extemporaneously@v +extempore@vA +extemporisation@N +extemporise@it +extemporised@it +extemporises@it +extemporising@it +extemporization@N +extemporize@V +extemporized@V +extemporizes@V +extemporizing@V +extend@Vti +extendable@A +extended@A +extendible@A +extending@Vti +extends@Vti +extension@N +extensional@A +extensions@p +extensive@A +extensively@v +extensiveness@N +extent@N +extents@p +extenuate@t +extenuated@t +extenuates@t +extenuating@A +extenuation@N +exterior@NA +exteriors@p +exterminate@t +exterminated@t +exterminates@t +exterminating@t +extermination@N +exterminations@p +exterminator@N +exterminators@p +external@AN +externalisation@N +externalisations@p +externalise@t +externalised@t +externalises@t +externalising@t +externalization@N +externalizations@p +externalize@t +externalized@t +externalizes@t +externalizing@t +externally@v +externals@p +extinct@A +extincted@A +extincting@A +extinction@N +extinctions@p +extincts@p +extinguish@t +extinguishable@A +extinguished@t +extinguisher@N +extinguishers@p +extinguishes@? +extinguishing@t +extirpate@t +extirpated@t +extirpates@t +extirpating@t +extirpation@N +extol@V +extoll@? +extolled@t +extolling@t +extolls@p +extols@V +extort@t +extorted@t +extorting@t +extortion@N +extortionate@A +extortionately@v +extortioner@N +extortioners@p +extortionist@? +extortionists@p +extorts@t +extra@ANv +extract@VtN +extracted@VtA +extracting@VtA +extraction@N +extractions@p +extractor@N +extractors@p +extracts@Vtp +extracurricular@A +extraditable@A +extradite@t +extradited@t +extradites@t +extraditing@t +extradition@N +extraditions@p +extrajudicial@A +extramarital@A +extramural@A +extraneous@A +extraneously@v +extraordinaire@? +extraordinarily@v +extraordinary@A +extrapolate@V +extrapolated@V +extrapolates@V +extrapolating@V +extrapolation@N +extrapolations@p +extras@pv +extrasensory@A +extraterrestrial@A +extraterrestrials@p +extraterritorial@A +extravagance@N +extravagances@p +extravagant@A +extravagantly@v +extravaganza@N +extravaganzas@p +extravert@N +extraverted@A +extraverts@p +extreme@AN +extremely@v +extremer@A +extremes@p +extremest@A +extremism@N +extremist@NA +extremists@p +extremities@p +extremity@N +extricate@t +extricated@t +extricates@t +extricating@t +extrication@N +extrinsic@A +extrinsically@v +extroversion@N +extrovert@NA +extroverted@A +extroverts@p +extrude@t +extruded@V +extrudes@t +extruding@V +extrusion@N +extrusions@p +exuberance@N +exuberant@A +exuberantly@v +exude@Vt +exuded@V +exudes@Vt +exuding@V +exult@i +exultant@A +exultantly@v +exultation@N +exulted@i +exulting@i +exults@i +eye@NVt +eyeball@N +eyeballed@A +eyeballing@A +eyeballs@p +eyebrow@N +eyebrows@p +eyed@A +eyeful@N +eyefuls@p +eyeglass@N +eyeglasses@p +eyeing@V +eyelash@N +eyelashes@? +eyelet@Nt +eyelets@pt +eyelid@N +eyelids@p +eyeliner@N +eyeliners@p +eyepiece@N +eyepieces@p +eyes@p +eyesight@N +eyesore@N +eyesores@p +eyestrain@N +eyeteeth@p +eyetooth@N +eyewitness@N +eyewitnesses@? +eying@V +eyre@N +eyrie@N +ezekiel@N +ezra@N +fa@N +faa@N +fab@A! +fabian@AN +fable@NVit +fabled@A +fables@N +fabric@N +fabricate@t +fabricated@t +fabricates@t +fabricating@t +fabrication@N +fabrications@p +fabrics@p +fabulous@A +fabulously@v +facade@N +facades@p +face@NVt +facecloth@? +facecloths@p +faced@V +faceless@A +facelift@? +facelifts@p +faces@pVt +facet@NV +faceted@V +faceting@V +facetious@A +facetiously@v +facetiousness@N +facets@pV +facetted@V +facetting@V +facial@AN +facially@v +facials@p +facile@A +facilitate@t +facilitated@t +facilitates@t +facilitating@t +facilitation@N +facilitator@N +facilitators@p +facilities@p +facility@N +facing@N +facings@p +facsimile@NV +facsimiled@V +facsimileing@V +facsimiles@pV +fact@N +faction@N +factional@A +factionalism@N +factions@p +factitious@A +factor@N +factored@A +factorial@NA +factories@p +factoring@N +factorisation@? +factorise@? +factorised@? +factorises@? +factorising@? +factorization@N +factorize@t +factorized@t +factorizes@t +factorizing@t +factors@p +factory@N +factotum@N +factotums@p +facts@p +factual@A +factually@v +faculties@p +faculty@N +fad@N +faddiness@? +faddish@A +faddishness@N +faddy@A +fade@ViN +faded@V +fades@Vip +fading@N +fads@p +faecal@A +faeces@p +faff@i +faffed@i +faffing@i +faffs@i +fafnir@N +fag@NV +fagged@V +fagging@V +faggot@Nt +faggots@pt +fagin@N +fagot@Nt +fagots@pt +fags@pV +fahrenheit@AN +fail@VitN +failed@VitA +failing@NP +failings@pP +fails@Vitp +failure@N +failures@p +fain@vA +fainer@? +fainest@? +faint@AiN +fainted@Ai +fainter@N +faintest@? +fainthearted@A +fainting@Ai +faintly@v +faintness@N +faints@p +fair@AviN +fairbanks@N +fairer@? +fairest@? +fairground@N +fairgrounds@p +fairies@? +fairings@p +fairingses@? +fairly@v +fairness@N +fairs@pvi +fairway@N +fairways@p +fairy@NA +fairyland@N +fairylands@p +faisalabad@? +faith@N +faithful@AN +faithfully@v +faithfulness@N +faithfuls@p +faithless@A +faithlessly@v +faithlessness@N +faiths@p +fake@tNA +faked@V +faker@N +fakers@p +fakes@tp +faking@V +fakir@N +fakirs@p +falasha@N +falcon@N +falconer@N +falconers@p +falconry@N +falcons@p +fall@N +fallacies@p +fallacious@A +fallaciously@v +fallacy@N +fallback@? +fallen@VA +fallibility@N +fallible@A +fallibly@v +falling@V +falloff@? +falloffs@p +fallout@NV +fallow@ANt +fallowed@At +fallowing@At +fallows@pt +falls@N +false@Av +falsehood@N +falsehoods@p +falsely@v +falseness@N +falser@A +falsest@A +falsetto@N +falsettos@p +falsie@N +falsies@p +falsifiable@A +falsification@N +falsifications@p +falsified@V +falsifies@? +falsify@Vt +falsifying@V +falsities@p +falsity@N +falter@iN +faltered@iA +faltering@iA +falteringly@v +falterings@p +falters@ip +fame@Nt +famed@AV +familial@A +familiar@AN +familiarisation@N +familiarise@ti +familiarised@ti +familiarises@ti +familiarising@ti +familiarity@N +familiarization@N +familiarize@t +familiarized@V +familiarizes@t +familiarizing@V +familiarly@v +familiars@p +families@p +family@N +famine@N +famines@p +famish@V +famished@A +famishes@? +famishing@V +famous@A +famously@v +fan@N +fanatic@NA +fanatical@A +fanatically@v +fanaticism@N +fanatics@p +fanciable@? +fancied@A +fancier@N +fanciers@p +fancies@p +fanciest@? +fanciful@A +fancifully@v +fancily@? +fanciness@N +fancy@ANt! +fancying@At! +fandango@N +fandangoes@? +fandangos@p +fanfare@N +fanfares@p +fang@N +fangs@p +fanlight@N +fanlights@p +fanned@V +fannies@p +fanning@N +fanny@N +fans@p +fantasia@N +fantasias@p +fantasied@p +fantasies@p +fantasise@? +fantasised@? +fantasises@? +fantasising@? +fantasist@N +fantasists@p +fantasize@Vi +fantasized@V +fantasizes@Vi +fantasizing@V +fantastic@AN +fantastical@? +fantastically@v +fantasy@N +fantasying@p +fanzine@? +fanzines@? +faq@? +faqs@p +far@N +faraday@N +faradize@t +faradized@t +faradizes@t +faradizing@t +faraway@A +farce@Nt +farces@pt +farcical@A +farcically@v +fare@Ni +fared@V +fares@pi +farewell@N +farewells@p +fargo@N +farina@N +farinaceous@A +faring@V +farm@Nti +farmed@Ati +farmer@N +farmers@p +farmhand@? +farmhands@p +farmhouse@N +farmhouses@p +farming@N +farmings@p +farmland@N +farmlands@p +farms@pti +farmstead@N +farmsteads@p +farmyard@N +farmyards@p +farrago@N +farragoes@p +farragos@p +farragut@N +farrier@N +farriers@p +farrow@N +farrowed@A +farrowing@A +farrows@p +farsi@? +farsighted@A +farsightedness@N +fart@Ni +farted@Ai +farther@vA +farthest@vA +farthing@N +farthings@p +farting@Ai +farts@pi +fascia@N +fasciae@p +fascias@p +fascinate@V +fascinated@V +fascinates@V +fascinating@A +fascinatingly@v +fascination@N +fascinations@p +fascism@N +fascist@NA +fascists@p +fashion@Nt +fashionable@A +fashionably@v +fashioned@At +fashioning@At +fashions@pt +fast@Av!iN +fastball@? +fastballs@p +fasted@Av!i +fasten@Vti +fastened@Vti +fastener@N +fasteners@p +fastening@N +fastenings@p +fastens@Vti +faster@? +fastest@? +fastidious@A +fastidiously@v +fastidiousness@N +fasting@Av!i +fastness@N +fastnesses@? +fasts@pv!i +fat@NA +fatal@A +fatalism@N +fatalist@N +fatalistic@A +fatalistically@v +fatalists@p +fatalities@p +fatality@N +fatally@v +fate@Nt +fated@A +fateful@A +fatefully@v +fates@p +fathead@N +fatheaded@A +fatheads@p +father@N +fathered@A +fatherhood@N +fathering@A +fatherland@N +fatherlands@p +fatherless@A +fatherly@A +fathers@p +fathom@Nt +fathomable@A +fathomed@At +fathoming@At +fathomless@A +fathoms@p +fatigue@NVA +fatigued@A +fatigues@pV +fatiguing@V +fatima@N +fatimid@N +fating@V +fatness@N +fats@N +fatso@N +fatsos@p +fatten@Vt +fattened@Vt +fattening@Vt +fattens@Vt +fatter@A +fattest@NVA +fattier@A +fatties@? +fattiest@A +fatty@AN +fatuous@A +fatuously@v +fatuousness@N +fatwa@N +fatwas@p +faucet@N +faucets@p +faulkner@N +faulknerian@? +fault@NVti +faulted@AVti +faultfinding@NA +faultier@A +faultiest@A +faultily@v +faultiness@N +faulting@AVti +faultless@A +faultlessly@v +faults@pVti +faulty@A +faun@N +fauna@N +faunae@p +faunas@p +fauns@p +faust@N +faustian@A +fave@? +faves@? +favor@Nt +favorable@A +favorably@v +favored@A +favoring@At +favorite@NA +favorites@p +favoritism@N +favors@pt +favour@Nt +favourable@A +favourably@v +favoured@A +favouring@At +favourite@AN +favourites@p +favouritism@N +favours@p +fawkes@N +fawn@N +fawned@A +fawning@A +fawns@p +fax@N +faxed@A +faxes@? +faxing@A +faze@t +fazed@t +fazes@t +fazing@t +fbi@N +fcc@N +fda@N +fdic@N +fe@N +fealty@N +fear@N +feared@A +fearful@A +fearfully@v +fearfulness@N +fearing@A +fearless@A +fearlessly@v +fearlessness@N +fears@p +fearsome@A +feasibility@N +feasible@A +feasibly@v +feast@Nit +feasted@Ait +feasting@Ait +feasts@pit +feat@NA +feather@Nti +featherbedding@N +featherbrained@A +feathered@A +featherier@? +featheriest@? +feathering@N +feathers@p +featherweight@N +featherweights@p +feathery@A +feats@p +feature@Nti +featured@V +featureless@A +features@pti +featuring@V +feb@N +febrile@A +februaries@p +february@N +fecal@A +feces@p +feckless@A +fecklessness@N +fecund@A +fecundity@N +fed@N +federal@AN +federalism@N +federalist@NA +federalists@p +federally@v +federals@p +federate@VA +federated@V +federates@Vp +federating@V +federation@N +federations@p +fedex@? +fedora@N +fedoras@p +feds@p +fee@N +feeble@A +feebleness@N +feebler@A +feeblest@A +feebly@v +feed@ViN +feedback@NV +feedbag@N +feedbags@p +feeder@N +feeders@p +feeding@NV +feedings@pV +feeds@Vip +feel@VtiN +feeler@N +feelers@p +feelgood@? +feeling@NA +feelingly@v +feelings@p +feels@Vtip +fees@p +feet@N +feign@Vt +feigned@A +feigning@Vt +feigns@Vt +feint@Ni +feinted@Ai +feinting@Ai +feints@p +feistier@? +feistiest@? +feisty@A +felafel@N +felafels@p +feldspar@N +felicitation@N +felicitations@p +felicities@p +felicitous@A +felicitously@v +felicity@N +feline@AN +felines@p +fell@VtNA +fella@? +fellas@p +fellatio@N +felled@VtA +feller@N +fellers@p +fellest@? +felling@N +fellini@N +fellow@N +fellows@N +fellowship@N +fellowships@p +fells@Vtp +felon@NA +felonies@p +felonious@A +felons@p +felony@N +felt@N +felted@A +felting@N +felts@p +fem@N +female@AN +femaleness@N +females@p +feminine@A +feminines@p +femininity@N +feminise@ti +feminised@ti +feminises@ti +feminising@ti +feminism@NA +feminist@N +feminists@p +feminize@V +feminized@ti +feminizes@V +feminizing@ti +femora@? +femoral@A +femur@N +femurs@p +fen@N +fence@Nti +fenced@V +fencer@N +fencers@p +fences@pti +fencing@N +fend@tiN +fended@tiA +fender@N +fenders@p +fending@tiA +fends@tip +fenian@NA +fennel@N +fens@p +fer@PC +feral@A +ferdinand@N +fergus@N +fermat@N +ferment@NV +fermentation@NAv +fermented@AV +fermenting@AV +ferments@pV +fermi@N +fern@N +ferns@p +ferny@A +ferocious@A +ferociously@v +ferociousness@N +ferocity@N +ferret@NVti +ferreted@AVti +ferreting@AVti +ferrets@pVti +ferric@A +ferried@p +ferries@p +ferrous@A +ferrule@Nt +ferrules@pt +ferry@NV +ferryboat@N +ferryboats@p +ferrying@p +ferryman@N +ferrymen@p +fertile@A +fertilisation@N +fertilise@t +fertilised@t +fertiliser@N +fertilisers@p +fertilises@t +fertilising@t +fertility@N +fertilization@N +fertilize@t +fertilized@t +fertilizer@N +fertilizers@p +fertilizes@t +fertilizing@t +fervency@N +fervent@A +fervently@v +fervid@A +fervidly@v +fervor@N +fervour@N +fess@N +fessed@A +fesses@p +fessing@A +fest@? +festal@A +fester@ViN +festered@ViA +festering@ViA +festers@Vip +festival@N +festivals@p +festive@A +festively@v +festivities@p +festivity@N +festoon@Nt +festooned@At +festooning@At +festoons@pt +fests@p +feta@N +fetal@A +fetch@VN +fetched@VA +fetches@? +fetching@A +fetchingly@v +feted@V +fetich@N +fetiches@? +fetid@A +feting@V +fetish@N +fetishes@? +fetishism@N +fetishist@N +fetishistic@A +fetishists@p +fetlock@N +fetlocks@p +fetter@Nt +fettered@At +fettering@At +fetters@pt +fettle@tN +fetus@N +fetuses@p +feud@Ni +feudal@A +feudalism@N +feudalistic@A +feuded@Ai +feuding@Ai +feuds@pi +fever@Nt +fevered@At +feverish@A +feverishly@v +fevers@pt +few@DN +fewer@Ar +fewest@? +fey@A +fez@N +fezes@? +fezzes@? +fha@N +fiasco@N +fiascoes@p +fiascos@p +fiat@N +fiats@p +fib@NV +fibbed@Vt +fibber@N +fibbers@p +fibbing@Vt +fiber@N +fiberboard@N +fiberglas@N +fiberglass@N +fibers@p +fibre@N +fibreboard@N +fibreglass@N +fibres@p +fibroid@AN +fibrous@A +fibs@pV +fibula@N +fibulae@p +fibulas@p +fica@N +fiche@N +fiches@p +fichte@N +fickle@A +fickleness@N +fickler@? +ficklest@? +fiction@N +fictional@A +fictionalisation@? +fictionalisations@p +fictionalise@? +fictionalised@? +fictionalises@? +fictionalising@? +fictionalization@N +fictionalizations@p +fictionalize@t +fictionalized@t +fictionalizes@t +fictionalizing@t +fictions@p +fictitious@A +fiddle@NVit +fiddled@V +fiddler@N +fiddlers@p +fiddles@pVit +fiddlesticks@! +fiddlier@? +fiddliest@? +fiddling@A +fiddly@A +fidelity@N +fidget@itN +fidgeted@itA +fidgeting@itA +fidgets@itp +fidgety@A +fiduciaries@p +fiduciary@NA +fie@! +fief@N +fiefs@p +field@N +fielded@A +fielder@N +fielders@p +fielding@N +fields@N +fieldsman@N +fieldsmen@p +fieldwork@N +fieldworker@N +fieldworkers@p +fiend@N +fiendish@A +fiendishly@v +fiends@p +fierce@A +fiercely@v +fierceness@N +fiercer@A +fiercest@A +fierier@A +fieriest@A +fieriness@N +fiery@A +fiesta@N +fiestas@p +fife@N +fifes@p +fifteen@ND +fifteens@pD +fifteenth@AN +fifteenths@p +fifth@ANv +fifths@pv +fifties@p +fiftieth@AN +fiftieths@p +fifty@ND +fig@NV +fight@VtiN +fightback@? +fighter@N +fighters@p +fighting@V +fights@Vtip +figment@N +figments@p +figs@pV +figurative@A +figuratively@v +figure@NiVt +figured@A +figurehead@N +figureheads@p +figures@piVt +figurine@N +figurines@p +figuring@V +fiji@N +fijian@NA +fijians@p +filament@N +filamentous@A +filaments@p +filbert@N +filberts@p +filch@t +filched@t +filches@? +filching@t +file@NVti +filed@Vt +files@N +filet@N +filets@p +filial@A +filibuster@NVi +filibustered@AVi +filibustering@AVi +filibusters@pVi +filigree@NAV +filigreed@A +filigreeing@V +filigrees@pV +filing@Vt +filings@p +filipino@NA +filipinos@p +fill@VN +filled@VA +filler@N +fillers@p +fillet@Nt +filleted@At +filleting@N +fillets@pt +fillies@p +filling@N +fillings@p +fillip@Nti +filliped@Ati +filliping@Ati +fillips@pti +fillmore@N +fills@Vp +filly@N +film@NV +filmed@AV +filmier@A +filmiest@A +filming@N +filmmaker@? +filmmakers@p +films@pV +filmstrip@N +filmstrips@p +filmy@A +filo@? +filofax@? +filter@NVti +filterable@A +filtered@AVti +filtering@AVti +filters@pVti +filth@N +filthier@A +filthiest@A +filthily@v +filthiness@N +filthy@A +filtrable@A +filtrate@NV +filtrated@V +filtrates@pV +filtrating@V +filtration@N +fin@N +finagle@Vt +finagled@V +finagler@N +finaglers@p +finagles@Vt +finagling@V +final@AN +finale@N +finales@p +finalisation@? +finalise@? +finalised@A +finalises@? +finalising@A +finalist@N +finalists@p +finality@N +finalization@N +finalize@ti +finalized@V +finalizes@ti +finalizing@V +finally@v +finals@p +finance@Nti +financed@V +finances@pti +financial@A +financially@v +financier@N +financiers@p +financing@V +finch@N +finches@? +find@VN +finder@N +finders@p +finding@NV +findings@pV +finds@Vp +fine@N +fined@vV +finely@v +fineness@N +finer@A +finery@N +fines@p +finesse@NV +finessed@V +finesses@pV +finessing@V +finest@vVA +finger@Nti +fingerboard@N +fingerboards@p +fingered@A +fingering@N +fingerings@p +fingermark@N +fingermarks@p +fingernail@N +fingernails@p +fingerprint@Nt +fingerprinted@At +fingerprinting@At +fingerprints@pt +fingers@pti +fingertip@N +fingertips@p +finickier@? +finickiest@? +finicky@A +fining@N +finis@N +finises@? +finish@ViN +finished@A +finisher@N +finishers@p +finishes@? +finishing@ViA +finite@A +finitely@v +fink@N +finked@A +finking@A +finks@p +finland@N +finn@N +finnier@A +finniest@A +finnish@AN +finns@p +finny@A +fins@p +fiord@N +fiords@p +fir@N +fire@NV +firearm@N +firearms@p +fireball@N +fireballs@p +firebomb@N +firebombed@A +firebombing@A +firebombings@p +firebombs@p +firebrand@N +firebrands@p +firebreak@N +firebreaks@p +firebrick@N +firebricks@p +firebug@N +firebugs@p +firecracker@N +firecrackers@p +fired@V +firefight@? +firefighter@? +firefighters@p +firefighting@? +firefightings@p +firefights@p +fireflies@p +firefly@N +fireguard@N +fireguards@p +firehouse@N +firehouses@p +firelight@N +firelighter@? +firelighters@p +fireman@N +firemen@p +fireplace@N +fireplaces@p +fireplug@N +fireplugs@p +firepower@N +fireproof@At +fireproofed@At +fireproofing@N +fireproofs@pt +fires@pV +firescreen@? +firescreens@p +fireside@N +firesides@p +firestorm@N +firestorms@p +firetrap@N +firetraps@p +firewall@? +firewalls@p +firewater@N +firewood@N +firework@N +fireworks@p +firing@N +firings@p +firm@AvViN +firmament@N +firmaments@p +firmed@AvVi +firmer@? +firmest@? +firming@AvVi +firmly@v +firmness@N +firms@pvVi +firmware@N +firmwares@p +firs@p +first@ANv +firstborn@? +firstborns@p +firsthand@vA +firstly@v +firsts@p +firth@N +firths@p +fiscal@AN +fiscally@v +fiscals@p +fischer@N +fish@N +fishbowl@N +fishbowls@p +fishcake@? +fishcakes@? +fished@A +fisher@N +fisheries@p +fisherman@N +fishermen@p +fishers@p +fishery@N +fishes@N +fishhook@N +fishhooks@p +fishier@A +fishiest@A +fishing@N +fishmonger@N +fishmongers@p +fishnet@N +fishnets@p +fishtail@Ni +fishtailed@Ai +fishtailing@Ai +fishtails@pi +fishwife@N +fishwives@p +fishy@A +fissile@A +fission@N +fissure@NV +fissures@pV +fist@Nt +fistful@N +fistfuls@p +fisticuffs@p +fists@pt +fit@N +fitful@A +fitfully@v +fitly@v +fitment@N +fitments@p +fitness@N +fits@p +fitted@A +fitter@N +fitters@p +fittest@? +fitting@AN +fittingly@v +fittings@p +fitzgerald@N +five@ND +fiver@N +fivers@p +fives@N +fix@ViN +fixable@A +fixate@Vt +fixated@V +fixates@Vt +fixating@V +fixation@N +fixations@p +fixative@AN +fixatives@p +fixed@A +fixedly@v +fixer@N +fixers@p +fixes@? +fixing@NVt +fixings@p +fixity@N +fixture@N +fixtures@p +fizz@iN +fizzed@iA +fizzes@? +fizzier@A +fizziest@A +fizzing@iA +fizzle@iN +fizzled@V +fizzles@ip +fizzling@V +fizzy@A +fjord@N +fjords@p +fl@N +fla@N +flab@N +flabbergast@t +flabbergasted@t +flabbergasting@t +flabbergasts@t +flabbier@A +flabbiest@A +flabbiness@N +flabby@A +flaccid@A +flack@N +flacks@p +flag@NVt +flagella@N +flagellant@N +flagellants@p +flagellate@tAN +flagellated@V +flagellates@tp +flagellating@V +flagellation@N +flagellum@N +flagellums@p +flagged@Vi +flagging@N +flagon@N +flagons@p +flagpole@N +flagpoles@p +flagrant@A +flagrantly@v +flags@p +flagship@N +flagships@p +flagstaff@N +flagstaffs@p +flagstone@N +flagstones@p +flail@Nt +flailed@At +flailing@At +flails@pt +flair@N +flairs@p +flak@N +flake@NVt +flaked@V +flakes@pVt +flakier@A +flakiest@A +flakiness@N +flaking@V +flaky@A +flamage@? +flamages@? +flambeing@? +flambes@? +flamboyance@N +flamboyant@AN +flamboyantly@v +flame@NVit +flamed@V +flamenco@N +flamencos@p +flameproof@A +flamer@N +flamers@p +flames@pVit +flamethrower@N +flamethrowers@p +flaming@A +flamingo@N +flamingoes@p +flamingos@p +flamings@p +flammability@N +flammable@A +flammables@p +flan@N +flanders@N +flange@Nti +flanges@pti +flank@NV +flanked@AV +flanking@AV +flanks@pV +flannel@NVt +flanneled@V +flannelet@N +flannelette@N +flanneling@V +flannelled@V +flannelling@V +flannels@pVt +flans@p +flap@VitN +flapjack@N +flapjacks@p +flapped@V +flapper@N +flappers@p +flapping@V +flaps@N +flare@VtN +flared@V +flares@Vtp +flaring@AV +flash@NtAVi +flashback@NVi +flashbacks@pVi +flashbulb@N +flashbulbs@p +flashcard@? +flashcards@p +flashed@AtVi +flasher@N +flashers@p +flashes@? +flashest@? +flashgun@? +flashguns@p +flashier@A +flashiest@A +flashily@v +flashiness@N +flashing@N +flashlight@N +flashlights@p +flashpoint@? +flashpoints@p +flashy@A +flask@N +flasks@p +flat@AvNVi +flatbed@? +flatbeds@p +flatboat@N +flatboats@p +flatcar@N +flatcars@p +flatfeet@? +flatfish@N +flatfishes@? +flatfoot@N +flatfooted@A +flatfoots@p +flatiron@N +flatirons@p +flatlet@N +flatlets@p +flatly@v +flatmate@N +flatmates@p +flatness@N +flats@p +flatted@? +flatten@Vti +flattened@Vti +flattening@Vti +flattens@Vti +flatter@VtN +flattered@VtA +flatterer@N +flatterers@p +flattering@VtA +flatteringly@v +flatters@Vtp +flattery@N +flattest@NVA +flatting@N +flattop@N +flattops@p +flatulence@N +flatulent@A +flatware@N +flaubert@N +flaunt@VN +flaunted@VA +flaunting@VA +flaunts@Vp +flautist@N +flautists@p +flavor@Nt +flavored@At +flavorful@A +flavoring@N +flavorings@p +flavorless@A +flavors@pt +flavorsome@A +flavour@Nt +flavoured@At +flavourful@A +flavouring@N +flavourings@p +flavourless@A +flavours@pt +flavoursome@A +flaw@NV +flawed@A +flawing@AV +flawless@A +flawlessly@v +flaws@pV +flax@N +flaxen@A +flay@t +flayed@t +flaying@t +flays@t +flea@N +fleabag@N +fleabags@p +fleabite@N +fleabites@p +fleapit@N +fleapits@p +fleas@p +fleck@N +flecked@A +flecking@A +flecks@p +fled@V +fledged@AV +fledgeling@? +fledgelings@p +fledgling@N +fledglings@p +flee@Vi +fleece@N +fleeced@V +fleeces@p +fleecier@A +fleeciest@A +fleecing@V +fleecy@A +fleeing@V +flees@Vi +fleet@N +fleeted@A +fleeter@? +fleetest@? +fleeting@A +fleetingly@N +fleetness@N +fleets@p +fleming@N +flemish@NA +flesh@Nt +fleshed@At +fleshes@? +fleshier@A +fleshiest@A +fleshing@At +fleshlier@A +fleshliest@A +fleshly@A +fleshpot@N +fleshpots@p +fleshy@A +fletcher@N +flew@VN +flex@NV +flexed@A +flexes@? +flexibility@N +flexible@A +flexibly@v +flexing@AV +flexitime@N +flextime@? +flibbertigibbet@N +flibbertigibbets@p +flick@tN +flicked@tA +flicker@itN +flickered@itA +flickering@itA +flickers@itp +flicking@tA +flicks@tp +flied@V +flier@N +fliers@p +flies@p +fliest@? +flight@N +flightier@A +flightiest@A +flightiness@N +flightless@A +flights@p +flighty@A +flimflam@NV +flimflammed@V +flimflamming@V +flimflams@pV +flimsier@A +flimsiest@? +flimsily@v +flimsiness@N +flimsy@AN +flinch@iNt +flinched@iAt +flinches@? +flinching@iAt +fling@VN +flinging@V +flings@Vp +flint@N +flintier@A +flintiest@A +flintlock@N +flintlocks@p +flints@p +flinty@A +flip@N +flippancy@N +flippant@AN +flippantly@v +flipped@V +flipper@N +flippers@p +flippest@A +flippies@? +flipping@Av +flippy@? +flips@p +flirt@itN +flirtation@N +flirtations@p +flirtatious@A +flirtatiously@v +flirtatiousness@N +flirted@itA +flirting@itA +flirts@itp +flirty@? +flit@VN +flits@Vp +flitted@V +flitting@AV +float@VtN +floatation@N +floatations@p +floated@VtA +floater@N +floaters@p +floating@A +floats@p +flock@Nit +flocked@Ait +flocking@Ait +flocks@pit +floe@N +floes@p +flog@Vi +flogged@t +flogging@Nt +floggings@pt +flogs@Vi +flood@N +flooded@A +flooder@? +floodgate@N +floodgates@p +flooding@A +floodlight@NV +floodlighted@V +floodlighting@V +floodlights@pV +floodlit@V +floods@p +floor@NVt +floorboard@N +floorboards@p +floored@AVt +flooring@N +floors@pVt +floozie@? +floozies@p +floozy@N +flop@ViN +flophouse@N +flophouses@p +flopped@V +floppier@A +floppies@? +floppiest@A +floppiness@N +flopping@V +floppy@A +flops@Vip +flora@N +florae@? +floral@A +floras@p +florence@N +florentine@AN +flores@N +floret@N +florets@p +florid@A +florida@N +floridan@? +floridly@v +florin@N +florins@p +florist@N +florists@p +floss@N +flossed@A +flosses@? +flossing@A +flotation@N +flotations@p +flotilla@N +flotillas@p +flotsam@N +flounce@iN +flounced@V +flounces@ip +flouncing@N +flounder@iN +floundered@iA +floundering@iA +flounders@ip +flour@Nt +floured@At +flouring@At +flourish@iN +flourished@iA +flourishes@? +flourishing@A +flours@pt +floury@A +flout@V +flouted@V +flouting@V +flouts@V +flow@VtN +flowchart@? +flowcharts@p +flowed@VtA +flower@N +flowerbed@N +flowerbeds@p +flowered@A +flowerier@? +floweriest@? +floweriness@N +flowering@A +flowerings@p +flowerpot@N +flowerpots@p +flowers@N +flowery@A +flowing@A +flown@VA +flows@Vtp +floyd@N +flu@N +flub@tiN +flubbed@V +flubbing@V +flubs@tip +fluctuate@Vi +fluctuated@V +fluctuates@Vi +fluctuating@V +fluctuation@N +fluctuations@p +flue@N +fluency@N +fluent@A +fluently@v +flues@p +fluff@NV +fluffed@AV +fluffier@A +fluffiest@A +fluffiness@N +fluffing@AV +fluffs@pV +fluffy@A +fluid@NA +fluidity@N +fluidly@v +fluids@p +fluke@Nt +flukes@pt +flukey@A +flukier@A +flukiest@A +fluky@A +flume@Nt +flumes@pt +flummox@t +flummoxed@t +flummoxes@? +flummoxing@t +flung@V +flunk@ViN +flunked@ViA +flunkey@N +flunkeys@p +flunkie@? +flunkies@p +flunking@ViA +flunks@Vip +flunky@N +fluoresce@i +fluoresced@i +fluorescence@N +fluorescent@A +fluoresces@i +fluorescing@i +fluoridate@V +fluoridated@t +fluoridates@V +fluoridating@t +fluoridation@N +fluoride@N +fluorides@p +fluorine@N +fluorite@N +fluorocarbon@N +fluorocarbons@p +fluoroscope@N +fluoroscopes@p +flurried@A +flurries@p +flurry@Nt +flurrying@p +flush@VtNAv +flushed@VtAv +flusher@N +flushes@? +flushest@? +flushing@N +fluster@VN +flustered@VA +flustering@VA +flusters@Vp +flute@NVt +fluted@A +flutes@pVt +fluting@N +flutist@N +flutists@p +flutter@VitN +fluttered@VitA +fluttering@VitA +flutters@Vitp +fluttery@A +fluvial@A +flux@NVt +fluxed@AVt +fluxes@? +fluxing@AVt +fly@VitNA +flyaway@AN +flyblown@A +flyby@N +flybys@p +flycatcher@N +flycatchers@p +flyer@N +flyers@p +flying@ANv +flyleaf@N +flyleaves@p +flyover@N +flyovers@p +flypaper@N +flypapers@p +flypast@? +flypasts@p +flysheet@? +flysheets@p +flyspeck@Nt +flyspecked@At +flyspecking@At +flyspecks@pt +flyswatter@? +flyswatters@p +flytrap@N +flytraps@p +flyweight@N +flyweights@p +flywheel@N +flywheels@p +fm@N +fms@p +foal@NV +foaled@AV +foaling@AV +foals@pV +foam@NVi +foamed@AVi +foamier@A +foamiest@A +foaming@AVi +foams@pVi +foamy@A +fob@NV +fobbed@t +fobbing@t +fobs@pV +focal@A +foch@N +foci@N +focus@NV +focused@V +focuses@? +focusing@V +focussed@V +focusses@? +focussing@V +fodder@Nt +fodders@pt +foe@N +foes@p +foetal@A +foetid@A +foetus@N +foetuses@p +fofl@? +fog@NV +fogbound@A +fogey@N +fogeys@p +fogged@A +foggier@A +foggiest@A +fogginess@N +fogging@V +foggy@A +foghorn@N +foghorns@p +fogies@p +fogs@pV +fogy@N +foible@N +foibles@p +foil@tN +foiled@A +foiling@tA +foils@tp +foist@t +foisted@t +foisting@t +foists@t +fokker@N +fold@VtiN +foldaway@A +folded@VtiA +folder@N +folders@p +folding@VtiA +folds@Vtip +foley@N +foliage@N +folio@NAV +folios@pV +folk@N +folklore@NA +folks@p +folksier@A +folksiest@A +folksy@A +follicle@N +follicles@p +follies@p +follow@VtN +followed@VtA +follower@N +followers@p +following@AN +followings@p +follows@Vtp +followup@? +followups@p +folly@N +folsom@AN +fomalhaut@N +foment@t +fomentation@N +fomented@t +fomenting@t +foments@t +fond@N +fonda@N +fondant@N +fondants@p +fonder@? +fondest@? +fondle@ti +fondled@V +fondles@ti +fondling@V +fondly@v +fondness@N +fondu@AN +fondue@N +fondues@p +fondus@p +font@N +fonts@p +foo@? +foobar@? +foobars@p +food@N +foodie@? +foodies@? +foods@p +foodstuff@N +foodstuffs@p +fool@NtiA +fooled@Ati +fooleries@p +foolery@N +foolhardier@A +foolhardiest@A +foolhardiness@N +foolhardy@A +fooling@Ati +foolish@A +foolishly@v +foolishness@N +foolproof@A +fools@pti +foolscap@N +foot@N +footage@N +football@N +footballer@? +footballers@p +footballing@A +footballs@p +footbridge@N +footbridges@p +footed@A +footer@N +footers@p +footfall@N +footfalls@p +foothill@N +foothills@p +foothold@N +footholds@p +footie@N +footing@N +footings@p +footlights@p +footling@A +footlocker@N +footlockers@p +footloose@A +footman@N +footmen@p +footnote@Nt +footnoted@V +footnotes@pt +footnoting@V +footpath@N +footpaths@p +footplate@N +footplates@p +footprint@N +footprints@p +footrest@N +footrests@p +foots@p +footsie@N +footsies@p +footslogging@? +footsore@A +footstep@N +footsteps@p +footstool@N +footstools@p +footwear@N +footwork@N +footy@N +fop@N +foppish@A +fops@p +for@N +fora@? +forage@NVit +foraged@V +forager@N +foragers@p +forages@pVit +foraging@V +foray@NV +forayed@AV +foraying@AV +forays@pV +forbad@? +forbade@V +forbear@VN +forbearance@N +forbearing@V +forbears@Vp +forbes@N +forbid@Vt +forbidden@A +forbidding@A +forbiddingly@v +forbiddings@p +forbids@Vt +forbore@V +forborne@V +force@Nt +forced@A +forceful@A +forcefully@v +forcefulness@N +forceps@N +forces@p +forcible@A +forcibly@v +forcing@V +ford@N +forded@A +fording@N +fords@p +fore@ANvPC! +forearm@Nt +forearmed@At +forearming@At +forearms@pt +forebear@N +forebears@p +forebode@V +foreboded@V +forebodes@V +foreboding@NA +forebodings@p +forecast@VtN +forecasted@V +forecaster@N +forecasters@p +forecasting@V +forecastle@N +forecastles@p +forecasts@Vtp +foreclose@Vt +foreclosed@V +forecloses@Vt +foreclosing@V +foreclosure@N +foreclosures@p +forecourt@N +forecourts@p +foredoom@t +foredoomed@t +foredooming@t +foredooms@t +forefather@N +forefathers@p +forefeet@p +forefinger@N +forefingers@p +forefoot@N +forefront@N +forefronts@p +foregather@V +foregathered@V +foregathering@V +foregathers@V +forego@V +foregoes@? +foregoing@A +foregone@A +foreground@N +foregrounded@A +foregrounding@A +foregrounds@p +forehand@ANvV +forehands@pvV +forehead@N +foreheads@p +foreign@A +foreigner@N +foreigners@p +foreknowledge@N +foreleg@N +forelegs@p +forelock@Nt +forelocks@pt +foreman@N +foremast@N +foremasts@p +foremen@p +foremost@Av +forename@N +forenames@p +forenoon@N +forenoons@p +forensic@A +forensics@N +foreordain@t +foreordained@t +foreordaining@t +foreordains@t +foreplay@N +forerunner@N +forerunners@p +fores@pvPC! +foresail@N +foresails@p +foresaw@V +foresee@V +foreseeable@A +foreseeing@V +foreseen@V +foresees@V +foreshadow@t +foreshadowed@t +foreshadowing@t +foreshadows@t +foreshore@N +foreshores@p +foreshorten@t +foreshortened@t +foreshortening@t +foreshortens@t +foresight@N +foreskin@N +foreskins@p +forest@N +forestall@t +forestalled@t +forestalling@t +forestalls@t +forestation@N +forested@A +forester@N +foresters@p +foresting@A +forestry@N +forests@p +foreswear@? +foreswearing@? +foreswears@p +foreswore@? +foresworn@? +foretaste@NV +foretasted@V +foretastes@pV +foretasting@V +foretell@V +foretelling@V +foretells@V +forethought@N +foretold@V +forever@v +forevermore@v +forewarn@t +forewarned@t +forewarning@t +forewarns@t +forewent@V +forewoman@N +forewomen@p +foreword@N +forewords@p +forfeit@NtA +forfeited@At +forfeiting@At +forfeits@pt +forfeiture@N +forfeitures@p +forgather@i +forgathered@i +forgathering@i +forgathers@i +forgave@V +forge@Nti +forged@Vi +forger@N +forgeries@p +forgers@p +forgery@N +forges@pti +forget@Vt +forgetful@A +forgetfully@v +forgetfulness@N +forgets@Vt +forgettable@A +forgetting@V +forging@N +forgivable@A +forgive@Vt +forgiven@V +forgiveness@N +forgives@Vt +forgiving@A +forgo@V +forgoes@? +forgoing@t +forgone@t +forgot@V +forgotten@V +fork@Nti +forked@A +forkful@? +forkfuls@p +forking@Ati +forklift@Nt +forklifts@pt +forks@pti +forlorn@A +forlornly@v +form@N +formal@AN +formaldehyde@N +formalin@N +formalisation@N +formalise@ti +formalised@ti +formalises@ti +formalising@ti +formalism@N +formalist@N +formalists@p +formalities@p +formality@N +formalization@N +formalize@Vt +formalized@V +formalizes@Vt +formalizing@V +formally@v +formals@p +format@NVt +formation@N +formations@p +formative@AN +formats@pVt +formatted@V +formatting@V +formed@A +former@AN +formerly@v +formica@N +formicas@p +formidable@A +formidably@v +forming@A +formless@A +formlessly@v +formlessness@N +formosa@N +formosan@? +forms@p +formula@N +formulae@? +formulaic@A +formulas@p +formulate@t +formulated@t +formulates@t +formulating@t +formulation@N +formulations@p +fornicate@iA +fornicated@i +fornicates@ip +fornicating@i +fornication@N +fornicator@N +fornicators@p +forrest@N +forsake@V +forsaken@VA +forsakes@V +forsaking@t +forsook@V +forsooth@v +forster@N +forswear@Vt +forswearing@V +forswears@Vt +forswore@V +forsworn@V +forsythia@N +forsythias@p +fort@N +fortaleza@N +forte@NAv +fortes@p +forth@N +forthcoming@A +forthright@Av +forthrightly@? +forthrightness@N +forthwith@v +forties@p +fortieth@AN +fortieths@p +fortification@N +fortifications@p +fortified@V +fortifies@? +fortify@V +fortifying@V +fortissimo@AvN +fortitude@N +fortnight@N +fortnightly@AvN +fortnights@p +fortran@N +fortress@Nt +fortresses@? +forts@p +fortuitous@A +fortuitously@v +fortunate@A +fortunately@v +fortune@N +fortunes@p +forty@ND +forum@N +forums@p +forward@ANvt +forwarded@Avt +forwarder@N +forwardest@? +forwarding@N +forwardness@N +forwards@v +forwent@V +fossil@N +fossilisation@N +fossilise@ti +fossilised@ti +fossilises@ti +fossilising@ti +fossilization@N +fossilize@V +fossilized@V +fossilizes@V +fossilizing@V +fossils@p +foster@N +fostered@A +fostering@A +fosters@p +foucault@N +fought@V +foul@ANVtiv +fouled@AVtiv +fouler@? +foulest@? +fouling@AVtiv +foully@v +foulness@N +fouls@N +found@VAt +foundation@N +foundations@p +founded@VAt +founder@Ni +foundered@Ai +foundering@Ai +founders@pi +founding@VAt +foundling@N +foundlings@p +foundries@p +foundry@N +founds@Vpt +fount@N +fountain@N +fountainhead@N +fountainheads@p +fountains@p +founts@p +four@N +fourfold@Av +fourier@N +fours@p +fourscore@D +foursome@N +foursomes@p +foursquare@vA +fourteen@ND +fourteens@pD +fourteenth@AN +fourteenths@p +fourth@ANv +fourthly@v +fourths@pv +fowl@Ni +fowled@Ai +fowler@N +fowling@N +fowls@pi +fox@N +foxed@A +foxes@p +foxglove@N +foxgloves@p +foxhole@N +foxholes@p +foxhound@N +foxhounds@p +foxhunt@? +foxhunting@? +foxhunts@p +foxier@A +foxiest@A +foxing@N +foxtrot@N +foxtrots@p +foxtrotted@? +foxtrotting@? +foxy@A +foyer@N +foyers@p +fpo@N +fr@N +fracas@N +fracases@? +fractal@? +fractals@p +fraction@Nt +fractional@A +fractionally@v +fractions@pt +fractious@A +fractiously@v +fractiousness@N +fracture@NV +fractured@V +fractures@pV +fracturing@V +frag@V +fragile@A +fragiler@? +fragilest@? +fragility@N +fragment@NV +fragmentary@AvN +fragmentation@N +fragmented@A +fragmenting@AV +fragments@pV +fragonard@N +fragrance@N +fragrances@p +fragrant@A +fragrantly@v +frags@V +frail@AN +frailer@? +frailest@? +frailties@p +frailty@N +frame@N +framed@V +framer@N +framers@p +frames@p +framework@N +frameworks@p +framing@N +franc@N +france@N +frances@N +francesca@N +franchise@Nt +franchised@V +franchisee@? +franchisees@? +franchiser@N +franchisers@p +franchises@pt +franchising@V +francis@N +franciscan@N +franck@N +franco@N +francophone@NA +francs@p +franglais@N +frank@AVtN +franked@AVt +frankenstein@N +franker@N +frankest@? +frankfort@N +frankfurt@N +frankfurter@N +frankfurters@p +frankincense@N +franking@AVt +franklin@N +frankly@v +frankness@N +franks@pVt +frantic@A +frantically@v +frappes@? +fraser@N +frat@N +fraternal@A +fraternally@v +fraternisation@N +fraternise@it +fraternised@it +fraternises@it +fraternising@it +fraternities@p +fraternity@N +fraternization@N +fraternize@it +fraternized@V +fraternizes@it +fraternizing@V +fratricidal@A +fratricide@N +fratricides@p +frats@p +fraud@N +frauds@p +fraudster@? +fraudsters@p +fraudulence@? +fraudulent@A +fraudulently@v +fraught@AN +fray@NVit +frayed@AVit +fraying@AVit +frays@pVit +frazzle@VN +frazzled@A +frazzles@Vp +frazzling@V +freak@NVt +freaked@AVt +freakier@A +freakiest@A +freaking@AVt +freakish@A +freakishly@v +freakishness@N +freaks@pVt +freaky@A +freckle@NV +freckled@V +freckles@pV +freckling@V +frederick@N +fredericton@N +free@AvVtN +freebase@? +freebased@? +freebases@? +freebasing@? +freebee@? +freebees@? +freebie@NA +freebies@p +freebooter@N +freebooters@p +freed@N +freedman@N +freedmen@p +freedom@N +freedoms@p +freehand@Av +freehold@N +freeholder@N +freeholders@p +freeholds@p +freeing@A +freelance@NVv +freelanced@V +freelancer@? +freelancers@p +freelances@pVv +freelancing@V +freeload@i +freeloaded@i +freeloader@N +freeloaders@p +freeloading@N +freeloads@i +freely@v +freeman@N +freemason@N +freemasonries@? +freemasonry@N +freemasons@p +freemen@p +freephone@? +freer@AN +frees@pvVt +freesia@N +freesias@p +freest@AvV +freestanding@A +freestyle@N +freestyles@p +freethinker@NA +freethinkers@p +freethinking@AN +freetown@N +freeware@? +freewares@? +freeway@N +freeways@p +freewheel@Ni +freewheeled@Ai +freewheeling@A +freewheels@pi +freewill@A +freeze@VNti +freezer@N +freezers@p +freezes@Vpti +freezing@AV +freight@Nt +freighted@At +freighter@N +freighters@p +freighting@At +freights@pt +fremont@N +french@NA +frenches@? +frenchman@N +frenchmen@p +frenchwoman@N +frenchwomen@p +frenetic@A +frenetically@v +frenzied@A +frenziedly@v +frenzies@p +frenzy@NV +freon@N +frequencies@p +frequency@N +frequent@AVt +frequented@AVt +frequenter@N +frequentest@? +frequenting@AVt +frequently@v +frequents@pVt +fresco@N +frescoes@p +frescos@p +fresh@ANVv +freshen@Vi +freshened@Vi +freshening@Vi +freshens@Vi +fresher@N +freshers@p +freshest@? +freshet@N +freshets@p +freshly@v +freshman@NA +freshmen@p +freshness@N +freshwater@N +fresno@N +fret@VitN +fretful@A +fretfully@v +fretfulness@N +frets@Vitp +fretted@A +fretting@V +fretwork@N +freud@N +freudian@AN +frey@N +freya@N +fri@N +friable@A +friar@N +friaries@p +friars@p +friary@N +fricassee@NV +fricasseed@V +fricasseeing@V +fricassees@pV +fricative@NA +fricatives@p +friction@N +frictions@p +friday@N +fridays@v +fridge@N +fridges@p +fried@N +friedan@? +friedman@N +friend@N +friendless@A +friendlier@A +friendlies@? +friendliest@A +friendliness@N +friendly@AN +friends@p +friendship@N +friendships@p +frier@N +friers@p +fries@N +frieze@N +friezes@p +frig@Vi +frigate@N +frigates@p +frigged@t +frigging@A +fright@N +frighted@A +frighten@t +frightened@A +frightening@t +frighteningly@v +frightens@t +frightful@A +frightfully@v +frighting@A +frights@p +frigid@A +frigidaire@N +frigidity@N +frigidly@v +frigs@Vi +frill@Nti +frilled@Ati +frillier@? +frilliest@? +frills@pti +frilly@A +fringe@Nt +fringed@At +fringes@pt +fringing@At +fripperies@p +frippery@N +frisbee@N +frisco@N +frisian@NA +frisk@itN +frisked@itA +friskier@A +friskiest@A +friskily@v +friskiness@N +frisking@itA +frisks@itp +frisky@A +frisson@N +frissons@p +fritter@tN +frittered@tA +frittering@tA +fritters@tp +frivolities@p +frivolity@N +frivolous@A +frivolously@v +frizz@VN +frizzed@V +frizzes@V +frizzier@A +frizziest@A +frizzing@V +frizzle@VNt +frizzled@V +frizzles@Vpt +frizzling@V +frizzy@A +fro@v +frobisher@N +frock@Nt +frocks@pt +frog@N +frogging@N +frogginged@A +frogginging@A +froggings@p +frogman@N +frogmarch@Nt +frogmarched@At +frogmarches@? +frogmarching@At +frogmen@p +frogs@p +frogspawn@N +froissart@N +frolic@NVA +frolicked@V +frolicking@V +frolics@pV +frolicsome@A +from@P +fromm@N +frond@N +fronde@N +fronds@p +front@NAVti +frontage@N +frontages@p +frontal@AN +frontally@v +frontbench@? +frontbencher@? +frontbenchers@p +frontbenches@? +fronted@AVti +frontier@N +frontiers@p +frontiersman@N +frontiersmen@p +frontierswoman@? +frontierswomen@? +fronting@AVti +frontispiece@N +frontispieces@p +frontrunner@N +frontrunners@p +fronts@pVti +frosh@N +frost@N +frostbelt@? +frostbit@? +frostbite@N +frostbites@p +frostbiting@N +frostbitten@A +frosted@A +frostier@A +frostiest@A +frostily@v +frostiness@N +frosting@N +frosts@p +frosty@A +froth@NVt +frothed@AVt +frothier@A +frothiest@A +frothing@AVt +froths@pVt +frothy@A +frown@itN +frowned@itA +frowning@itA +frowns@itp +frowsier@A +frowsiest@A +frowsty@A +frowsy@A +frowzier@A +frowziest@A +frowzy@A +froze@V +frozen@VA +fructified@V +fructifies@? +fructify@V +fructifying@V +fructose@N +frugal@A +frugality@N +frugally@v +fruit@NV +fruitcake@N +fruitcakes@p +fruited@A +fruiterer@N +fruiterers@p +fruitful@A +fruitfully@v +fruitfulness@N +fruitier@A +fruitiest@A +fruiting@AV +fruition@N +fruitless@A +fruitlessly@v +fruitlessness@N +fruits@pV +fruity@A +frump@N +frumpier@A +frumpiest@A +frumpish@A +frumps@p +frumpy@A +frustrate@tA +frustrated@V +frustrates@tp +frustrating@V +frustration@N +frustrations@p +fry@N +fryer@N +fryers@p +frying@V +fsf@? +fslic@? +ft@N +ftc@N +ftp@? +ftper@? +ftpers@p +ftping@? +ftps@p +fuchsia@N +fuchsias@p +fuck@VN! +fucked@VA! +fucker@N +fuckers@p +fuckhead@? +fuckheads@p +fucking@Av!i +fucks@Vp! +fud@? +fuddle@tiN +fuddled@V +fuddles@tip +fuddling@V +fudge@N!it +fudged@V +fudges@p!it +fudging@V +fuds@p +fuel@NV +fueled@V +fueling@V +fuelled@V +fuelling@V +fuels@pV +fuentes@? +fug@N +fugger@N +fuggy@? +fugitive@NA +fugitives@p +fugue@N +fugues@p +fuji@N +fukuoka@N +fulani@NA +fulbright@N +fulcra@? +fulcrum@N +fulcrums@p +fulfil@V +fulfill@t +fulfilled@t +fulfilling@t +fulfillment@N +fulfills@t +fulfilment@? +fulfils@V +full@AvNtiV +fullback@N +fullbacks@p +fulled@AvtiV +fuller@N +fullest@? +fulling@AvtiV +fullness@N +fulls@pvtiV +fully@v +fulminate@iN +fulminated@V +fulminates@ip +fulminating@V +fulmination@N +fulminations@p +fulness@N +fulsome@A +fulsomely@v +fulsomeness@N +fulton@N +fum@? +fumble@iN +fumbled@V +fumbler@N +fumblers@p +fumbles@ip +fumbling@V +fume@itN +fumed@A +fumes@itp +fumigate@V +fumigated@t +fumigates@V +fumigating@t +fumigation@N +fumigator@N +fumigators@p +fuming@V +fums@p +fun@NV +funafuti@? +function@Ni +functional@AN +functionalism@NA +functionalist@NA +functionalists@p +functionality@? +functionally@v +functionaries@p +functionary@NA +functioned@Ai +functioning@Ai +functions@pi +fund@Nt +fundamental@AN +fundamentalism@NA +fundamentalist@NA +fundamentalists@p +fundamentally@v +fundamentals@p +funded@At +funding@At +funds@p +fundy@N +funeral@N +funerals@p +funerary@A +funereal@A +funereally@v +funfair@N +funfairs@p +fungal@A +fungi@N +fungicidal@A +fungicide@N +fungicides@p +fungoid@A +fungous@A +fungus@N +funguses@? +funicular@NA +funiculars@p +funk@N +funked@A +funkier@A +funkiest@A +funking@A +funks@p +funky@A +funnel@NV +funneled@V +funneling@V +funnelled@V +funnelling@V +funnels@pV +funner@? +funnest@? +funnier@A +funnies@p +funniest@A +funnily@v +funniness@N +funny@AN +funnyman@N +funnymen@p +fur@NV +furbelow@Nt +furbish@t +furbished@t +furbishes@? +furbishing@t +furies@p +furious@A +furiously@v +furl@VtiN +furled@VtiA +furling@VtiA +furlong@N +furlongs@p +furlough@Nt +furloughed@At +furloughing@At +furloughs@pt +furls@Vtip +furnace@N +furnaces@p +furnish@t +furnished@t +furnishes@? +furnishing@N +furnishings@p +furniture@N +furor@N +furors@p +furred@A +furrier@N +furriers@p +furriest@A +furring@N +furrow@NV +furrowed@AV +furrowing@AV +furrows@pV +furry@A +furs@pV +further@vAt +furtherance@N +furthered@vAt +furthering@vAt +furthermore@v +furthermost@A +furthers@vpt +furthest@vA +furtive@A +furtively@v +furtiveness@N +fury@N +furze@N +fuse@NtV +fused@V +fuselage@N +fuselages@p +fuses@ptV +fushun@N +fusible@A +fusileer@? +fusileers@p +fusilier@N +fusiliers@p +fusillade@Nt +fusillades@pt +fusing@V +fusion@N +fusions@p +fuss@Nit +fussbudget@N +fussbudgets@p +fussed@Ait +fusses@? +fussier@A +fussiest@A +fussily@v +fussiness@N +fussing@Ait +fusspot@N +fusspots@p +fussy@A +fustian@NA +fustier@A +fustiest@A +fusty@A +futile@A +futilely@v +futility@N +futon@? +futons@p +future@NA +futures@p +futurism@N +futurist@N +futuristic@A +futurists@p +futurities@p +futurity@N +futz@? +futzed@? +futzes@? +futzing@? +fuze@N +fuzed@V +fuzes@p +fuzing@V +fuzz@NV +fuzzball@N +fuzzballs@p +fuzzbuster@? +fuzzed@AV +fuzzes@? +fuzzier@A +fuzziest@A +fuzzily@v +fuzziness@N +fuzzing@AV +fuzzy@A +fwd@N +fyi@N +ga@N +gab@N +gabardine@N +gabardines@p +gabbed@V +gabbier@? +gabbiest@? +gabbing@V +gabble@ViN +gabbled@V +gabbles@Vip +gabbling@V +gabby@A +gaberdine@N +gaberdines@p +gable@N +gabled@A +gables@p +gabon@N +gaborone@N +gabriel@N +gabs@p +gad@N! +gadabout@N +gadabouts@p +gadded@V +gadding@V +gadflies@? +gadfly@N +gadget@N +gadgetry@N +gadgets@p +gads@p! +gaea@N +gael@N +gaelic@NA +gaff@Nt +gaffe@N +gaffed@At +gaffer@N +gaffers@p +gaffes@p +gaffing@At +gaffs@pt +gag@VtiN +gaga@A +gagarin@N +gage@N +gaged@V +gages@p +gagged@V +gagging@V +gaggle@iN +gaggles@ip +gaging@V +gags@Vtip +gaiety@N +gaily@v +gain@tiN +gained@tiA +gainer@N +gainers@p +gainful@A +gainfully@v +gaining@tiA +gains@p +gainsaid@V +gainsay@V +gainsaying@V +gainsays@V +gainsborough@N +gait@Nt +gaiter@N +gaiters@p +gaits@pt +gal@N +gala@N +galactic@A +galahad@N +galahads@p +galas@p +galatea@N +galatia@N +galatians@N +galaxies@p +galaxy@N +galbraith@N +gale@N +galen@N +galena@N +gales@p +galibi@N +galilean@NA +galilee@N +galileo@N +gall@N +gallant@ANVt +gallantly@v +gallantry@N +gallants@pVt +gallbladder@N +gallbladders@p +galled@A +galleon@N +galleons@p +galleries@p +gallery@N +galley@N +galleys@p +gallic@A +galling@A +gallium@N +gallivant@i +gallivanted@i +gallivanting@i +gallivants@i +gallon@N +gallons@p +gallop@ViN +galloped@ViA +galloping@A +gallops@Vip +galloway@N +gallows@N +gallowses@p +galls@p +gallstone@N +gallstones@p +gallup@N +galore@D +galosh@N +galoshes@p +gals@N +galsworthy@N +galumph@i +galumphed@i +galumphing@i +galumphs@i +galvani@N +galvanic@A +galvanise@t +galvanised@t +galvanises@t +galvanising@t +galvanize@tN +galvanized@t +galvanizes@tp +galvanizing@t +galvanometer@N +galvanometers@p +gamay@? +gambia@NA +gambit@N +gambits@p +gamble@iN +gambled@V +gambler@N +gamblers@p +gambles@ip +gambling@V +gambol@VN +gamboled@V +gamboling@V +gambolled@V +gambolling@V +gambols@Vp +game@NAi +gamecock@N +gamecocks@p +gamed@V +gamekeeper@N +gamekeepers@p +gamely@v +gameness@N +gamer@NA +games@pi +gamesmanship@N +gamest@NA +gamete@N +gametes@p +gamey@? +gamier@A +gamiest@A +gamin@N +gamine@N +gamines@p +gaming@N +gamins@p +gamma@N +gammas@p +gammon@NtV +gammy@A +gamut@N +gamuts@p +gamy@A +gander@N +ganders@p +gandhi@N +gandhian@A +ganesha@N +gang@NVt +ganged@AVt +ganges@N +ganging@AVt +gangland@N +ganglia@N +ganglier@A +gangliest@A +gangling@A +ganglion@N +ganglions@p +gangly@A +gangplank@N +gangplanks@p +gangrene@N +gangrened@V +gangrenes@p +gangrening@V +gangrenous@A +gangs@pVt +gangsta@? +gangstas@p +gangster@N +gangsters@p +gangway@N! +gangways@p! +ganja@N +gannet@N +gannets@p +gantlet@N +gantlets@p +gantries@p +gantry@N +ganymede@N +gaol@NV +gaoled@AV +gaoler@N +gaolers@p +gaoling@AV +gaols@pV +gap@NV +gape@iN +gaped@V +gapes@N +gaping@V +gaps@pV +garage@Nt +garaged@V +garages@pt +garaging@V +garb@Nt +garbage@N +garbageman@? +garbanzo@N +garbanzos@p +garbed@At +garbing@At +garble@tN +garbled@V +garbles@tp +garbling@V +garbo@N +garbs@pt +garden@N +gardened@A +gardener@N +gardeners@p +gardenia@N +gardenias@p +gardening@N +gardens@p +garfield@N +gargantua@N +gargantuan@A +gargle@VN +gargled@V +gargles@Vp +gargling@V +gargoyle@N +gargoyles@p +garibaldi@N +garish@A +garishly@v +garishness@N +garland@N +garlanded@A +garlanding@A +garlands@p +garlic@N +garlicky@A +garment@Nt +garments@pt +garner@N +garnered@A +garnering@A +garners@p +garnet@N +garnets@p +garnish@tN +garnished@tA +garnishee@NVt +garnisheed@V +garnisheeing@V +garnishees@pVt +garnishes@? +garnishing@tA +garote@Nt +garoted@t +garotes@pt +garoting@t +garotte@NV +garotted@t +garottes@pV +garotting@t +garret@N +garrets@p +garrick@N +garrison@N +garrisoned@A +garrisoning@A +garrisons@p +garrote@Nt +garroted@V +garrotes@pt +garroting@V +garrotte@Nt +garrotted@t +garrottes@pt +garrotting@t +garrulity@N +garrulous@A +garrulously@v +garrulousness@N +garter@N +garters@p +garvey@N +gary@N +gas@NV +gasbag@N +gasbags@p +gascony@N +gaseous@A +gases@p +gash@tN +gashed@tA +gashes@? +gashing@tA +gasholder@N +gasholders@p +gasket@N +gaskets@p +gaslight@N +gaslights@p +gasman@N +gasmen@p +gasohol@? +gasolene@? +gasoline@N +gasometer@N +gasometers@p +gasp@itN +gasped@itA +gasping@itA +gasps@itp +gassed@V +gasser@N +gasses@? +gassier@A +gassiest@A +gassing@N +gassy@A +gastric@A +gastritis@N +gastroenteritis@N +gastrointestinal@A +gastronome@N +gastronomes@p +gastronomic@A +gastronomical@A +gastronomically@v +gastronomy@N +gasworks@N +gate@Nt +gateau@N +gateaux@p +gatecrash@? +gatecrashed@? +gatecrasher@? +gatecrashers@p +gatecrashes@? +gatecrashing@? +gated@AV +gatehouse@N +gatehouses@p +gatekeeper@N +gatekeepers@p +gatepost@N +gateposts@p +gates@N +gateway@N +gateways@p +gather@VNti +gathered@VAti +gatherer@N +gatherers@p +gathering@N +gatherings@p +gathers@N +gating@V +gator@N +gators@p +gauche@A +gaucheness@N +gaucher@? +gauchest@? +gaucho@N +gauchos@p +gaudier@? +gaudiest@? +gaudily@v +gaudiness@N +gaudy@AN +gauge@tNA +gauged@V +gauges@tp +gauging@V +gauguin@N +gaul@N +gauls@p +gaunt@A +gaunter@? +gauntest@? +gauntlet@N +gauntlets@p +gauntness@N +gauss@N +gaussian@A +gautama@N +gautier@N +gauze@N +gauzier@A +gauziest@A +gauzy@A +gave@V +gavel@N +gavels@p +gavotte@N +gavottes@p +gawain@N +gawd@? +gawk@Ni +gawked@Ai +gawkier@A +gawkiest@A +gawkily@v +gawkiness@N +gawking@Ai +gawks@pi +gawky@A +gawp@i +gawped@i +gawping@i +gawps@i +gay@A +gayer@? +gayest@? +gayety@N +gayly@v +gayness@N +gays@p +gaza@N +gaze@iN +gazebo@N +gazeboes@p +gazebos@p +gazed@V +gazelle@N +gazelles@p +gazer@N +gazers@p +gazes@ip +gazette@Nt +gazetted@V +gazetteer@N +gazetteers@p +gazettes@pt +gazetting@V +gaziantep@N +gazillion@? +gazillions@p +gazing@V +gazpacho@N +gazump@VtN +gazumped@VtA +gazumping@VtA +gazumps@Vtp +gb@N +gd@N +ge@N +gear@Nti +gearbox@N +gearboxes@? +geared@Ati +gearing@N +gears@pti +gearshift@N +gearshifts@p +gearwheel@N +gearwheels@p +gecko@N +geckoes@? +geckos@p +ged@p +geddit@? +gee@!VN! +geed@i +geegaw@NA +geegaws@p +geeing@i +geek@N +geekier@? +geekiest@? +geeks@p +geeky@? +gees@!Vp! +geese@N +geez@N +geezer@N +geezers@p +gehenna@N +gehrig@N +geiger@N +geisha@N +geishas@p +gel@N +gelatin@N +gelatine@? +gelatinous@A +geld@VN +gelded@t +gelding@N +geldings@p +gelds@Vp +gelid@A +gelignite@N +gelled@V +gelling@V +gels@p +gelt@VN +gem@NV +gemini@NA +geminis@p +gems@N +gemstone@N +gemstones@p +gen@N +gendarme@N +gendarmes@p +gender@N +genders@p +gene@N +genealogical@A +genealogically@v +genealogies@p +genealogist@N +genealogists@p +genealogy@N +genera@N +general@AN +generalisation@N +generalisations@p +generalise@it +generalised@it +generalises@it +generalising@it +generalissimo@N +generalissimos@p +generalist@N +generalists@p +generalities@p +generality@N +generalization@N +generalizations@p +generalize@Vit +generalized@V +generalizes@Vit +generalizing@V +generally@v +generals@p +generate@V +generated@t +generates@V +generating@t +generation@N +generational@? +generations@p +generative@A +generator@N +generators@p +generic@A +generically@v +generics@p +generosities@p +generosity@N +generous@A +generously@v +genes@p +geneses@? +genesis@N +genetic@A +genetically@v +geneticist@N +geneticists@p +genetics@N +geneva@N +genial@A +geniality@N +genially@v +genie@N +genies@p +genii@N +genital@A +genitalia@p +genitals@p +genitive@AN +genitives@p +genius@N +geniuses@p +genned@? +genning@? +genoa@N +genoas@p +genocidal@A +genocide@N +genocides@p +genome@N +genomes@p +genre@N +genres@p +gens@N +gent@N +genteel@A +genteelly@v +gentian@N +gentians@p +gentile@A +gentiles@p +gentility@N +gentle@AtN +gentled@A +gentlefolk@p +gentleman@N +gentlemanly@A +gentlemen@p +gentleness@N +gentler@A +gentles@pt +gentlest@A +gentlewoman@N +gentlewomen@p +gentling@A +gently@v +gentoo@N +gentries@? +gentrification@N +gentrified@? +gentrifies@? +gentrify@? +gentrifying@? +gentry@N +gents@N +genuflect@i +genuflected@i +genuflecting@i +genuflection@N +genuflections@p +genuflects@i +genuine@A +genuinely@v +genuineness@N +genus@N +genuses@? +geocentric@A +geode@N +geodes@p +geodesic@AN +geodesics@p +geographer@N +geographers@p +geographic@? +geographical@A +geographically@v +geographies@p +geography@N +geologic@A +geological@? +geologically@v +geologies@p +geologist@? +geologists@p +geology@N +geometer@N +geometric@A +geometrical@? +geometrically@v +geometries@? +geometry@N +geophysical@A +geophysicist@N +geophysicists@p +geophysics@N +geopolitical@A +geopolitics@N +george@N +georges@N +georgetown@N +georgette@N +georgia@N +georgian@AN +georgians@p +geostationary@? +geothermal@A +ger@N +geranium@N +geraniums@p +gerbil@N +gerbils@p +geriatric@AN +geriatrician@N +geriatricians@p +geriatrics@N +germ@N +german@NA +germane@A +germanic@A +germanium@N +germans@p +germany@N +germicidal@A +germicide@N +germicides@p +germinal@A +germinate@V +germinated@V +germinates@V +germinating@V +germination@N +germs@p +geronimo@N! +gerontological@? +gerontologist@N +gerontologists@p +gerontology@N +gerrymander@VN +gerrymandered@VA +gerrymandering@VA +gerrymanders@Vp +gershwin@N +gerund@N +gerunds@p +gestalt@N +gestalts@p +gestapo@N +gestapos@p +gestate@V +gestated@V +gestates@V +gestating@V +gestation@N +gesticulate@V +gesticulated@V +gesticulates@V +gesticulating@V +gesticulation@N +gesticulations@p +gesture@NV +gestured@V +gestures@pV +gesturing@V +gesundheit@! +get@ViN +getaway@N +getaways@p +gethsemane@N +gets@Vip +getting@? +getty@N +gettysburg@N +getup@N +gewgaw@NA +gewgaws@p +geyser@N +geysers@p +ghana@N +ghanaian@NA +ghanian@NA +ghanians@p +ghastlier@A +ghastliest@A +ghastliness@N +ghastly@Av +ghats@N +ghee@N +ghent@N +gherkin@N +gherkins@p +ghetto@N +ghettoes@p +ghettoise@? +ghettoised@? +ghettoises@? +ghettoising@? +ghettoize@? +ghettoized@? +ghettoizes@? +ghettoizing@? +ghettos@p +ghibelline@N +ghost@NVt +ghosted@AVt +ghosting@AVt +ghostlier@A +ghostliest@A +ghostliness@N +ghostly@A +ghosts@N +ghostwrite@V +ghostwriter@? +ghostwriters@p +ghostwrites@V +ghostwriting@ti +ghostwritten@ti +ghostwrote@ti +ghoul@N +ghoulish@A +ghouls@p +ghq@N +ghz@N +gi@N +giacometti@N +giant@NA +giantess@N +giantesses@? +giants@p +gibber@ViN +gibbered@ViA +gibbering@ViA +gibberish@N +gibbers@Vip +gibbet@Nt +gibbeted@At +gibbeting@At +gibbets@pt +gibbon@N +gibbons@N +gibe@N +gibed@Vit +gibes@p +gibing@Vit +giblet@N +giblets@p +gibraltar@N +gibraltars@p +gibson@N +giddier@A +giddiest@A +giddily@v +giddiness@N +giddy@Ati +gide@N +gideon@N +gielgud@N +gift@Nt +gifted@A +gifting@At +gifts@pt +gig@NV +gigabit@? +gigabits@p +gigabyte@? +gigabytes@? +gigahertz@N +gigantic@A +gigantically@v +gigged@V +gigging@V +giggle@iN +giggled@V +giggler@N +gigglers@p +giggles@ip +gigglier@A +giggliest@A +giggling@V +giggly@A +gigo@? +gigolo@N +gigolos@p +gigs@pV +gilbert@N +gild@VN +gilded@At +gilding@N +gilds@Vp +gilead@N +gilgamesh@N +gill@N +gillespie@N +gillie@N +gillies@p +gillion@N +gillions@p +gills@p +gilt@VNA +gilts@Vp +gimcrack@AN +gimcracks@p +gimlet@NVA +gimleted@AV +gimleting@AV +gimlets@pV +gimme@V +gimmick@N +gimmickry@N +gimmicks@p +gimmicky@A +gimpier@? +gimpiest@? +gimpy@A +gin@NVt +ginger@N +gingerbread@N +gingered@A +gingering@A +gingerly@vA +gingers@p +gingersnap@N +gingersnaps@p +gingery@A +gingham@N +gingivitis@N +gingko@? +gingkoes@? +gingkos@p +ginkgo@N +ginkgoes@p +ginkgos@p +ginned@AV +ginning@V +ginormous@p +gins@pVt +ginsberg@N +ginseng@N +giorgione@N +giotto@N +gipsies@p +gipsy@N +giraffe@N +giraffes@p +giraudoux@N +gird@VtiN +girded@t +girder@N +girders@p +girding@t +girdle@Nt +girdled@V +girdles@pt +girdling@V +girds@Vtip +girl@N +girlfriend@N +girlfriends@p +girlhood@N +girlhoods@p +girlie@N +girlies@p +girlish@A +girlishly@v +girls@p +girly@A +giro@N +giros@p +girt@VAt +girted@VAt +girth@NVt +girths@pVt +girting@VAt +girts@Vpt +gish@N +gismo@? +gismos@p +gist@N +git@N +gite@? +gites@? +gits@p +give@ViN +giveaway@N +giveaways@p +given@N +givens@p +giver@N +givers@p +gives@Vip +giving@V +giza@N +gizmo@N +gizmos@p +gizzard@N +gizzards@p +glacial@A +glacially@v +glaciation@N +glacier@N +glaciers@p +glad@AtN +gladden@V +gladdened@V +gladdening@V +gladdens@V +gladder@? +gladdest@? +glade@N +glades@p +gladiator@N +gladiatorial@A +gladiators@p +gladiola@N +gladiolas@p +gladioli@? +gladiolus@N +gladioluses@? +gladly@v +gladness@N +glads@pt +gladstone@N +gladstones@p +glam@? +glamor@N +glamored@A +glamoring@A +glamorise@? +glamorised@? +glamorises@? +glamorising@? +glamorize@V +glamorized@t +glamorizes@V +glamorizing@t +glamorous@A +glamorously@v +glamors@p +glamour@N +glamoured@A +glamouring@A +glamourize@t +glamourized@t +glamourizes@t +glamourizing@t +glamourous@p +glamours@p +glance@itN +glanced@V +glances@itp +glancing@V +gland@N +glands@p +glandular@A +glare@itNA +glared@itA +glares@itp +glaring@A +glaringly@v +glaser@N +glasgow@N +glasnost@? +glass@N +glassed@A +glasses@p +glassful@N +glassfuls@p +glasshouse@N +glasshouses@p +glassier@A +glassiest@A +glassing@A +glassware@N +glassy@A +glaswegian@AN +glaucoma@N +glaze@tN +glazed@AV +glazes@tp +glazier@N +glaziers@p +glazing@N +gleam@Ni +gleamed@Ai +gleaming@Ai +gleamings@p +gleams@pi +glean@V +gleaned@V +gleaning@N +gleans@V +glee@N +gleeful@A +gleefully@v +glen@N +glendale@N +glenn@N +glens@p +glib@A +glibber@A +glibbest@A +glibly@v +glibness@N +glide@ViN +glided@V +glider@N +gliders@p +glides@Vip +gliding@V +glimmer@iN +glimmered@iA +glimmering@NA +glimmerings@p +glimmers@ip +glimpse@NV +glimpsed@V +glimpses@pV +glimpsing@V +glint@ViN +glinted@ViA +glinting@ViA +glints@Vip +glissandi@p +glissando@N +glissandos@p +glisten@iN +glistened@iA +glistening@iA +glistens@ip +glitch@? +glitched@? +glitches@? +glitching@? +glitter@iN +glitterati@? +glittered@iA +glittering@iA +glitters@ip +glittery@A +glitz@N +glitzier@? +glitziest@? +glitzy@? +gloaming@N +gloamings@p +gloat@iN +gloated@iA +gloating@iA +gloatingly@v +gloats@ip +glob@N +global@A +globalisation@? +globalise@? +globalised@? +globalises@? +globalising@? +globalization@? +globalize@? +globalized@? +globalizes@? +globalizing@? +globally@v +globe@N +globed@V +globes@p +globetrotter@NA +globetrotters@p +globetrotting@NA +globing@V +globs@p +globular@A +globule@N +globules@p +glockenspiel@N +glockenspiels@p +gloom@Ni +gloomier@A +gloomiest@A +gloomily@v +gloominess@N +gloomy@A +glop@N +gloria@N +gloried@p +glories@p +glorification@N +glorified@t +glorifies@? +glorify@V +glorifying@t +glorious@A +gloriously@v +glory@N +glorying@p +gloss@NVt +glossaries@p +glossary@N +glossed@AVt +glosses@? +glossier@A +glossies@A +glossiest@A +glossiness@N +glossing@AVt +glossy@AN +glottides@? +glottis@N +glottises@? +gloucester@N +glove@Nt +gloved@V +gloves@pt +gloving@V +glow@Ni +glowed@Ai +glower@iN +glowered@iA +glowering@iA +glowers@ip +glowing@A +glowingly@v +glows@pi +glowworm@N +glowworms@p +glucose@N +glue@NV +glued@V +glueing@AV +glues@pV +gluey@A +gluier@A +gluiest@A +gluing@V +glum@A +glumly@v +glummer@A +glummest@A +glumness@N +glut@NVt +gluten@N +glutinous@A +gluts@pVt +glutted@V +glutting@V +glutton@N +gluttonous@A +gluttonously@v +gluttons@p +gluttony@N +glycerin@N +glycerine@N +glycerol@N +glycogen@NA +glyph@N +gm@N +gmat@N +gmt@N +gnarl@Nti +gnarled@A +gnarlier@A +gnarliest@A +gnarling@Ati +gnarls@pti +gnarly@A +gnash@VtN +gnashed@VtA +gnashes@? +gnashing@VtA +gnat@N +gnats@p +gnaw@VtN +gnawed@V +gnawing@N +gnawn@V +gnaws@Vtp +gneiss@N +gnocchi@p +gnome@N +gnomes@p +gnomic@A +gnomish@A +gnostic@A +gnosticism@N +gnp@N +gnu@N +gnus@p +go@N +goa@N +goad@Nt +goaded@At +goading@At +goads@pt +goal@N +goalie@N +goalies@p +goalkeeper@N +goalkeepers@p +goalless@A +goalmouth@N +goalmouths@p +goalpost@? +goalposts@p +goals@p +goalscorer@? +goalscorers@p +goaltender@N +goaltenders@p +goat@N +goatee@N +goatees@p +goatherd@N +goatherds@p +goats@p +goatskin@N +goatskins@p +gob@NV +gobbed@Vi +gobbet@N +gobbets@p +gobbing@Vi +gobble@VtN!i +gobbled@V +gobbledegook@N +gobbledygook@? +gobbler@N +gobblers@p +gobbles@Vtp!i +gobbling@V +gobi@N +goblet@N +goblets@p +goblin@N +goblins@p +gobs@pV +gobsmacked@? +gobstopper@N +gobstoppers@p +god@N +godawful@? +godchild@N +godchildren@p +goddam@? +goddamed@? +goddammit@? +goddamn@! +goddamned@Av +goddard@N +goddaughter@N +goddaughters@p +goddess@N +goddesses@? +godfather@N +godfathers@p +godforsaken@A +godhood@N +godiva@N +godless@A +godlessly@v +godlessness@N +godlier@A +godliest@A +godlike@A +godliness@N +godly@A +godmother@N +godmothers@p +godparent@N +godparents@p +gods@N +godsend@N +godsends@p +godson@N +godsons@p +godspeed@!N +godthaab@N +godunov@N +goebbels@N +goer@N +goering@N +goers@p +goes@N +goethe@N +gofer@N +gofers@p +gog@N +goggle@iN +goggled@V +goggles@ip +goggling@V +gogol@N +going@N +goings@p +goiter@N +goiters@p +goitre@N +goitres@p +golconda@N +gold@N +goldbrick@N +goldbricked@A +goldbricking@A +goldbricks@p +golden@A +goldener@? +goldenest@? +goldenrod@N +goldfield@? +goldfields@N +goldfinch@N +goldfinches@? +goldfish@N +goldfishes@? +golding@N +goldmine@? +goldmines@? +golds@p +goldsmith@N +goldsmiths@p +goldwyn@N +golf@Ni +golfed@Ai +golfer@N +golfers@p +golfing@Ai +golfs@pi +golgi@N +golgotha@N +goliath@N +gollies@? +golliwog@N +golliwogs@p +golly@!NV +gomorrah@N +gompers@N +gomulka@N +gonad@N +gonads@p +gondola@N +gondolas@p +gondolier@N +gondoliers@p +gone@N +goner@N +goners@p +gong@Nit +gonged@Ait +gonging@Ait +gongs@pit +gonk@N +gonked@A +gonking@A +gonks@p +gonna@V +gonorrhea@N +gonorrhoea@N +gonzales@N +gonzo@? +goo@N +goober@N +goobers@p +good@A!N +goodby@!N +goodbye@N +goodbyes@p +goodbys@!p +goodie@? +goodies@p +goodish@A +goodlier@A +goodliest@A +goodly@A +goodman@N +goodness@N! +goodnight@? +goods@p +goodwill@N +goody@!N +goodyear@N +gooey@A +goof@NVit +goofed@AVit +goofier@A +goofiest@A +goofing@AVit +goofs@pVit +goofy@A +googlies@p +googly@N +gooier@A +gooiest@A +gook@N +gooks@p +goon@N +goons@p +goop@N +goose@Nt +gooseberries@p +gooseberry@N +goosed@At +gooseflesh@? +gooses@pt +goosestep@? +goosestepped@? +goosestepping@? +goosesteps@p +goosing@At +gop@N +gopher@N +gophers@p +gorbachev@? +gordimer@? +gordon@N +gore@N +gored@Vt +gores@p +gorge@NV +gorged@AV +gorgeous@A +gorgeously@v +gorgeousness@N +gorges@N +gorging@V +gorgon@N +gorgons@p +gorgonzola@N +gorier@A +goriest@A +gorilla@N +gorillas@p +goriness@N +goring@NVt +gorky@N +gormless@A +gorp@? +gorps@p +gorse@N +gory@A +gosh@! +gosling@N +goslings@p +gospel@N +gospels@p +gossamer@N +gossip@Ni +gossiped@Ai +gossiping@Ai +gossipped@? +gossipping@? +gossips@pi +gossipy@A +got@V +gotcha@? +gotchas@p +goth@N +gotham@N +gothic@AN +gothics@p +goths@p +gotta@V +gotten@V +gouache@N +gouaches@p +gouda@N +goudas@p +gouge@ViN +gouged@ViA +gouger@N +gougers@p +gouges@Vip +gouging@ViA +goulash@N +goulashes@? +gould@N +gounod@N +gourd@N +gourds@p +gourmand@N +gourmands@p +gourmet@N +gourmets@p +gout@N +goutier@A +goutiest@A +gouty@A +gov@N +govern@V +governable@A +governance@N +governed@V +governess@N +governesses@? +governing@V +government@N +governmental@A +governments@p +governor@N +governors@p +governorship@N +governs@V +govt@N +gown@Nt +gowned@At +gowning@At +gowns@pt +goya@N +gp@N +gpa@? +gr@N +grab@VtiN +grabbed@V +grabber@N +grabbier@? +grabbiest@? +grabbing@V +grabby@? +grabs@Vtip +gracchus@N +grace@N +graced@V +graceful@A +gracefully@v +gracefulness@N +graceless@A +gracelessly@v +gracelessness@N +graces@p +gracing@V +gracious@A! +graciously@v +graciousness@N +grackle@N +grackles@p +grad@N +gradable@AN +gradation@N +gradations@p +grade@Nti +graded@V +grader@N +graders@p +grades@pti +gradient@NA +gradients@p +grading@V +grads@p +gradual@AN +gradually@v +graduate@NVti +graduated@A +graduates@pVti +graduating@V +graduation@N +graduations@p +graffiti@p +graffito@N +graft@NVi +grafted@AVi +grafter@N +grafters@p +grafting@N +grafts@pVi +graham@N +grahame@N +grail@N +grain@NV +grainier@A +grainiest@A +grains@N +grainy@A +gram@N +grammar@N +grammarian@N +grammarians@p +grammars@p +grammatical@A +grammatically@v +gramme@N +grammes@p +grammy@? +gramophone@N +gramophones@p +grams@p +gran@N +granada@N +granaries@p +granary@N +grand@AN +grandad@? +grandads@p +grandchild@N +grandchildren@p +granddad@N +granddaddies@p +granddaddy@N +granddads@p +granddaughter@N +granddaughters@p +grandee@N +grandees@p +grander@? +grandest@? +grandeur@N +grandfather@N +grandfathered@A +grandfathering@A +grandfathers@p +grandiloquence@N +grandiloquent@A +grandiose@A +grandly@v +grandma@N +grandmas@p +grandmother@N +grandmothers@p +grandness@N +grandpa@N +grandparent@N +grandparents@p +grandpas@p +grands@p +grandson@N +grandsons@p +grandstand@Ni +grandstanded@V +grandstanding@V +grandstands@pi +grange@N +granges@p +granite@N +grannie@N +grannies@p +granny@N +granola@? +grans@p +grant@N +granted@A +granting@A +grants@p +granular@A +granularity@N +granulate@Vi +granulated@V +granulates@Vi +granulating@V +granulation@N +granule@N +granules@p +grape@N +grapefruit@N +grapefruits@p +grapes@N +grapevine@N +grapevines@p +graph@Nt +graphed@At +graphic@A +graphical@? +graphically@v +graphics@N +graphing@At +graphite@N +graphologist@N +graphologists@p +graphology@N +graphs@pt +grapnel@N +grapnels@p +grapple@VitN +grappled@V +grapples@Vitp +grappling@N +grasp@VtN +grasped@VtA +grasping@A +grasps@Vtp +grass@N +grassed@A +grasses@p +grasshopper@N +grasshoppers@p +grassier@A +grassiest@A +grassing@A +grassland@N +grasslands@p +grassroots@p +grassy@A +grate@tN +grated@V +grateful@A +gratefully@v +gratefulness@N +grater@N +graters@p +grates@tp +gratification@N +gratifications@p +gratified@t +gratifies@? +gratify@V +gratifying@A +gratifyingly@v +gratin@N +grating@NA +gratings@p +gratins@p +gratis@v +gratitude@N +gratuities@p +gratuitous@A +gratuitously@v +gratuitousness@N +gratuity@N +grave@NAVtv +graved@t +gravedigger@N +gravediggers@p +gravel@NVt +graveled@V +graveling@V +gravelled@V +gravelling@V +gravelly@A +gravels@pVt +gravely@v +graven@VA +graver@N +graves@N +graveside@? +gravesides@? +gravest@A +gravestone@N +gravestones@p +graveyard@N +graveyards@p +gravies@p +graving@t +gravitas@p +gravitate@i +gravitated@i +gravitates@i +gravitating@i +gravitation@N +gravitational@A +gravity@N +gravy@N +gray@ANV +graybeard@N +graybeards@p +grayed@AV +grayer@? +grayest@? +graying@AV +grayish@A +grayness@? +grays@pV +graze@VtN +grazed@V +grazes@Vtp +grazing@N +grease@NVt +greased@V +greasepaint@N +greaser@N +greasers@p +greases@pVt +greasier@A +greasiest@A +greasiness@N +greasing@V +greasy@A +great@AvN +greatcoat@N +greatcoats@p +greater@A +greatest@AN +greatly@v +greatness@N +greats@p +grebe@N +grebes@p +grecian@AN +greece@N +greed@N +greedier@A +greediest@A +greedily@v +greediness@N +greedy@A +greek@NA +greeks@p +greeley@N +green@N +greenback@N +greenbacks@p +greene@N +greened@A +greener@? +greenery@N +greenest@? +greenfield@N +greenflies@? +greenfly@N +greengage@N +greengages@p +greengrocer@N +greengrocers@p +greenhorn@N +greenhorns@p +greenhouse@N +greenhouses@p +greening@N +greenish@A +greenland@N +greenness@N +greens@p +greensboro@N +greensward@N +greenwich@N +greet@tiN +greeted@tiA +greeting@N +greetings@p +greets@tip +gregarious@A +gregariously@v +gregariousness@N +gregorian@A +gregory@N +gremlin@N +gremlins@p +grenada@NA +grenade@N +grenades@p +grenadier@N +grenadiers@p +grenadine@N +grenadines@p +grendel@N +grenoble@N +grep@? +grepped@? +grepping@? +greps@p +gresham@N +grew@N +grey@ANV +greyed@AV +greyer@? +greyest@? +greyhound@N +greyhounds@p +greying@AV +greyish@A +greyness@N +greys@pV +gribble@N +gribbles@p +grid@N +griddle@Nt +griddlecake@N +griddlecakes@p +griddles@pt +gridiron@N +gridirons@p +gridlock@? +gridlocks@p +grids@p +grief@N +griefs@p +grieg@N +grievance@N +grievances@p +grieve@N +grieved@V +grieves@p +grieving@V +grievous@A +grievously@v +griffin@N +griffins@p +griffith@N +griffon@N +griffons@p +grill@VtN +grille@N +grilled@A +grilles@p +grilling@VtA +grillings@p +grills@Vtp +grim@A +grimace@Ni +grimaced@V +grimaces@pi +grimacing@V +grime@Nt +grimed@V +grimes@N +grimier@A +grimiest@A +griming@V +grimly@v +grimm@N +grimmer@A +grimmest@A +grimness@N +grimy@A +grin@ViN +grind@ViNt +grinder@N +grinders@p +grinding@ViAt +grinds@Vipt +grindstone@N +grindstones@p +gringo@N +gringos@p +grinned@V +grinning@V +grins@Vip +grip@NV +gripe@itN +griped@V +gripes@itp +griping@V +grippe@N +gripped@V +gripping@V +grips@pV +gris@N +grislier@A +grisliest@A +grisly@AN +grist@N +gristle@N +gristlier@A +gristliest@A +gristly@A +grit@NA +grits@p +gritted@V +gritter@N +gritters@p +grittier@A +grittiest@A +gritting@V +gritty@A +grizzle@VNi +grizzled@A +grizzles@Vpi +grizzlier@A +grizzlies@A +grizzliest@A +grizzling@N +grizzly@AN +groan@NVi +groaned@AVi +groaning@AVi +groans@pVi +grocer@N +groceries@p +grocers@p +grocery@N +grog@N +groggier@A +groggiest@A +groggily@v +grogginess@N +groggy@A +groin@Nt +groins@pt +grok@V +grokked@? +grokking@? +groks@V +grommet@N +grommets@p +gromyko@N +groom@Nt +groomed@At +grooming@At +grooms@pt +groomsman@N +groomsmen@p +groove@Nti +grooved@VA +grooves@pti +groovier@A +grooviest@A +grooving@V +groovy@A +grope@iN +groped@V +gropes@ip +groping@AV +gropius@N +grosbeak@N +grosbeaks@p +gross@ANVt +grossed@AVt +grosser@? +grosses@? +grossest@? +grossing@AVt +grossly@v +grossness@N +grosz@N +grotesque@AN +grotesquely@v +grotesques@p +grotius@N +grottier@? +grottiest@? +grotto@N +grottoes@? +grottos@p +grotty@A +grouch@VN +grouched@VA +grouches@? +grouchier@A +grouchiest@A +grouchiness@N +grouching@VA +grouchy@A +ground@NtiVA +groundbreaking@? +groundbreakings@p +groundcloth@? +groundcloths@p +grounded@AtiV +grounder@N +grounders@p +groundhog@? +groundhogs@p +grounding@AtiV +groundings@p +groundless@A +groundlessly@v +groundnut@N +groundnuts@p +grounds@N +groundsheet@N +groundsheets@p +groundskeeper@? +groundskeepers@p +groundsman@N +groundsmen@? +groundswell@? +groundswells@p +groundwater@? +groundwork@N +group@NV +grouped@AV +grouper@N +groupers@p +groupie@N +groupies@p +grouping@N +groupings@p +groups@pV +grouse@NAi +groused@V +grouses@pi +grousing@V +grout@Nt +grouted@At +grouting@At +grouts@p +grove@N +grovel@V +groveled@i +groveler@N +grovelers@p +groveling@i +grovelled@i +groveller@N +grovellers@p +grovelling@i +grovels@V +groves@N +grow@N +grower@N +growers@p +growing@AV +growl@ViN +growled@ViA +growling@ViA +growls@Vip +grown@A +grownup@N +grownups@p +grows@p +growth@N +growths@p +groyne@N +groynes@p +grub@VitN +grubbed@V +grubbier@A +grubbiest@A +grubbiness@N +grubbing@V +grubby@A +grubs@Vitp +grubstake@Nt +grudge@Nt +grudged@V +grudges@pt +grudging@AV +grudgingly@v +grue@? +gruel@N +grueling@AN +gruelingly@? +gruelings@p +gruelling@AN +gruellingly@? +gruellings@p +grues@? +gruesome@A +gruesomely@v +gruesomer@? +gruesomest@? +gruff@A +gruffer@? +gruffest@? +gruffly@v +gruffness@N +grumble@ViN +grumbled@V +grumbler@N +grumblers@p +grumbles@Vip +grumbling@V +grumblings@V +grump@Ni +grumpier@A +grumpiest@A +grumpily@v +grumpiness@N +grumps@pi +grumpy@A +grundy@N +grunge@? +grunges@? +grungier@? +grungiest@? +grungy@? +grunt@iN +grunted@iA +grunting@iA +grunts@ip +grus@N +gruyeres@? +gryphon@N +gryphons@p +gs@N +guacamole@N +guadalajara@N +guadalcanal@N +guadalquivir@N +guadeloupe@N +guam@NA +guangzhou@? +guano@N +guarani@N +guarantee@NV +guaranteed@V +guaranteeing@V +guarantees@pV +guarantied@p +guaranties@p +guarantor@N +guarantors@p +guaranty@NV +guarantying@p +guard@VtiN +guarded@A +guardedly@v +guardhouse@N +guardhouses@p +guardian@NA +guardians@p +guardianship@N +guarding@VtiA +guardrail@N +guardrails@p +guardroom@N +guardrooms@p +guards@p +guardsman@N +guardsmen@p +guatemala@N +guatemalan@AN +guatemalans@p +guava@N +guavas@p +guayaquil@N +gubernatorial@A +guelph@N +guerilla@? +guerillas@p +guernsey@N +guernseys@p +guerrero@N +guerrilla@N +guerrillas@p +guess@VN +guessable@A +guessed@VA +guesser@N +guessers@p +guesses@? +guessing@VA +guesstimate@NV +guesstimated@V +guesstimates@pV +guesstimating@V +guesswork@N +guest@N +guested@A +guesthouse@N +guesthouses@p +guesting@A +guestroom@? +guestrooms@p +guests@p +guevara@N +guff@N +guffaw@NV +guffawed@AV +guffawing@AV +guffaws@pV +guggenheim@N +gui@N +guiana@N +guidance@N +guide@N +guidebook@N +guidebooks@p +guided@AV +guideline@N +guidelines@p +guides@p +guiding@V +guido@N +guild@N +guilder@N +guilders@p +guildhall@N +guildhalls@p +guilds@p +guile@N +guileful@A +guileless@A +guilelessly@v +guillemot@N +guillemots@p +guillotine@NVt +guillotined@V +guillotines@pVt +guillotining@V +guilt@N +guiltier@A +guiltiest@A +guiltily@v +guiltiness@N +guiltless@A +guilty@A +guinea@N +guinean@A +guineans@p +guineas@p +guinevere@N +guinness@N +guise@N +guises@p +guitar@N +guitarist@N +guitarists@p +guitars@p +guiyang@? +guizot@N +gujarat@N +gujarati@NA +gujranwala@N +gulag@N +gulags@p +gulch@N +gulches@? +gulf@N +gulfs@p +gull@Nt +gullah@N +gulled@At +gullet@N +gullets@p +gulley@N +gullibility@N +gullible@A +gullies@p +gulling@At +gulls@pt +gully@NV +gulp@tiN +gulped@tiA +gulping@tiA +gulps@tip +gum@NV +gumball@? +gumballs@p +gumbo@N +gumboot@? +gumboots@p +gumbos@p +gumdrop@N +gumdrops@p +gummed@AV +gummier@A +gummiest@A +gumming@V +gummy@ANv +gumption@N +gums@pV +gumshoe@NV +gumshoes@pV +gun@N +gunboat@N +gunboats@p +gunfight@N +gunfighter@N +gunfighters@p +gunfights@p +gunfire@N +gunge@Nt +gungy@? +gunk@N +gunman@N +gunmen@p +gunmetal@N +gunned@A +gunnel@N +gunnels@p +gunner@N +gunners@p +gunnery@N +gunning@N +gunny@N +gunnysack@N +gunnysacks@p +gunpoint@N +gunpowder@N +gunrunner@N +gunrunners@p +gunrunning@N +guns@NVtA +gunshot@N +gunshots@p +gunslinger@N +gunslingers@p +gunsmith@N +gunsmiths@p +gunther@N +gunwale@N +gunwales@p +guppies@p +guppy@N +gurgle@iN +gurgled@V +gurgles@ip +gurgling@V +gurkha@N +gurney@N +gurneys@p +guru@N +gurus@p +gush@VN +gushed@VA +gusher@N +gushers@p +gushes@? +gushier@A +gushiest@A +gushing@VA +gushingly@v +gushy@A +gusset@Nt +gusseted@At +gusseting@At +gussets@pt +gust@N +gustatory@A +gusted@A +gustier@A +gustiest@A +gusting@A +gusto@N +gusts@p +gusty@A +gut@N +gutenberg@N +guthrie@N +gutless@A +guts@p +gutsier@A +gutsiest@A +gutsy@A +gutted@V +gutter@Nti +guttered@Ati +guttering@N +gutters@pti +guttersnipe@N +guttersnipes@p +gutting@V +guttural@AN +gutturals@p +guv@N +guvnor@? +guvnors@p +guvs@p +guy@N +guyana@N +guyanese@? +guyed@V +guying@V +guys@p +guzzle@V +guzzled@it +guzzler@N +guzzlers@p +guzzles@V +guzzling@it +gwalior@N +gwyn@N +gybe@iN +gybed@it +gybes@ip +gybing@it +gym@N +gymkhana@N +gymkhanas@p +gymnasia@N +gymnasium@N +gymnasiums@p +gymnast@N +gymnastic@A +gymnastics@N +gymnasts@p +gymnosperm@N +gymnosperms@p +gyms@p +gymslip@N +gymslips@p +gynaecological@A +gynaecologist@N +gynaecologists@p +gynaecology@N +gynecological@A +gynecologist@N +gynecologists@p +gynecology@N +gyp@VN +gypped@V +gypping@V +gyps@Vp +gypsies@p +gypsum@N +gypsy@N +gyrate@ViA +gyrated@V +gyrates@Vip +gyrating@V +gyration@N +gyrations@p +gyro@N +gyros@p +gyroscope@N +gyroscopes@p +gyroscopic@A +ha@! +habakkuk@N +haberdasher@N +haberdasheries@p +haberdashers@p +haberdashery@N +habit@Nt +habitability@N +habitable@A +habitat@N +habitation@N +habitations@p +habitats@p +habits@pt +habitual@A +habitually@v +habituate@V +habituated@t +habituates@V +habituating@t +habituation@N +hacienda@N +haciendas@p +hack@VitNA +hacked@VitA +hacker@N +hackers@p +hacking@A +hackish@? +hackishes@? +hackishness@? +hackishnesses@? +hackitude@? +hackitudes@? +hackle@NtV +hackles@p +hackney@N +hackneyed@A +hackneying@A +hackneys@p +hacks@Vitp +hacksaw@NV +hacksaws@pV +had@N +haddock@N +haddocks@p +hades@N +hadj@N +hadjes@p +hadrian@N +haematological@A +haematologist@N +haematologists@p +haematology@N +haemoglobin@N +haemophilia@N +haemophiliac@N +haemophiliacs@p +haemorrhage@Ni +haemorrhaged@V +haemorrhages@pi +haemorrhaging@V +haemorrhoid@N +haemorrhoids@Np +hafnium@N +haft@Nt +hafts@pt +hag@N +hagar@N +haggai@N +haggard@AN +haggis@N +haggises@? +haggle@it +haggled@V +haggler@N +hagglers@p +haggles@it +haggling@V +hagiographa@N +hagiographies@p +hagiography@N +hags@p +hague@N +hah@! +hahn@N +haifa@N +haiku@N +hail@NiVt! +hailed@AiVt! +hailing@AiVt! +hails@piVt! +hailstone@N +hailstones@p +hailstorm@N +hailstorms@p +haiphong@N +hair@N +hairball@N +hairballs@p +hairband@? +hairbands@p +hairbreadth@NA +hairbreadths@p +hairbrush@N +hairbrushes@? +haircut@N +haircuts@p +hairdo@N +hairdos@p +hairdresser@N +hairdressers@p +hairdressing@N +hairdrier@? +hairdriers@p +hairdryer@? +hairdryers@p +haired@A +hairgrip@N +hairgrips@p +hairier@A +hairiest@A +hairiness@N +hairless@A +hairline@N +hairlines@p +hairnet@N +hairnets@p +hairpiece@N +hairpieces@p +hairpin@N +hairpins@p +hairs@p +hairsbreadth@? +hairsbreadths@p +hairsplitting@NA +hairspray@? +hairsprays@p +hairspring@N +hairsprings@p +hairstyle@N +hairstyles@p +hairstylist@? +hairstylists@p +hairy@A +haiti@N +haitian@AN +haitians@p +haj@? +hajj@N +hajjes@p +hake@N +hakes@p +hakluyt@N +halal@tN +halberd@N +halberds@p +halcyon@AN +haldane@N +hale@At +haleakala@N +haled@t +haler@N +hales@pt +halest@A +half@NDAv +halfback@N +halfbacks@p +halfhearted@A +halfheartedly@v +halfheartedness@N +halfpence@? +halfpennies@p +halfpenny@N +halftime@? +halftimes@? +halftone@NA +halftones@p +halfway@N +halfwit@N +halfwits@p +halibut@N +halibuts@p +halifax@N +haling@t +halitosis@N +hall@N +halleluiah@? +halleluiahs@p +hallelujah@!N +hallelujahs@!p +halley@N +hallmark@Nt +hallmarked@At +hallmarking@At +hallmarks@pt +hallo@!N!V +hallos@!p!V +hallow@t +hallowed@A +halloween@N +halloweens@p +hallowing@t +hallows@t +halls@p +hallstatt@A +hallucinate@i +hallucinated@V +hallucinates@i +hallucinating@V +hallucination@N +hallucinations@p +hallucinatory@A +hallucinogen@N +hallucinogenic@A +hallucinogenics@p +hallucinogens@p +hallway@N +hallways@p +halo@NV +haloed@p +haloes@p +halogen@N +halogens@p +haloing@p +halon@? +halos@p +hals@N +halsey@N +halt@N!ViA +halted@A!Vi +halter@Nt +haltered@At +haltering@At +halterneck@? +halternecks@p +halters@pt +halting@A +haltingly@v +halts@p!Vi +halve@t +halved@t +halves@N +halving@t +halyard@N +halyards@p +ham@N +hamburg@N +hamburger@N +hamburgers@p +hamburgs@p +hamhung@N +hamilton@N +hamiltonian@NA +hamitic@NA +hamlet@N +hamlets@p +hammarskjold@? +hammed@V +hammer@N +hammered@A +hammerhead@N +hammerheads@p +hammering@N +hammerings@p +hammers@p +hammerstein@N +hamming@V +hammock@N +hammocks@p +hammond@N +hammurabi@N +hammy@A +hamper@tN +hampered@tA +hampering@tA +hampers@tp +hampshire@N +hampton@N +hams@p +hamster@N +hamsters@p +hamstring@NV +hamstringing@AV +hamstrings@pV +hamstrung@? +hamsun@N +han@N +hancock@N +hand@N +handbag@N +handbags@p +handball@Nt +handballs@pt +handbill@N +handbills@p +handbook@N +handbooks@p +handbrake@N +handbrakes@p +handcar@N +handcars@p +handcart@N +handcarts@p +handcraft@Nt +handcrafted@A +handcrafting@At +handcrafts@pt +handcuff@tN +handcuffed@tA +handcuffing@tA +handcuffs@N +handed@A +handedness@N +handel@N +handful@N +handfuls@p +handgun@N +handguns@p +handhold@N +handholds@p +handicap@NVt +handicapped@A +handicapper@N +handicappers@p +handicapping@V +handicaps@pVt +handicraft@N +handicrafts@p +handier@A +handiest@A +handily@v +handiness@N +handing@A +handiwork@N +handkerchief@N +handkerchiefs@p +handkerchieves@? +handle@NVi +handlebar@N +handlebars@p +handled@V +handler@N +handlers@p +handles@pVi +handling@N +handmade@A +handmaid@N +handmaiden@N +handmaidens@p +handmaids@p +handout@N +handouts@p +handover@? +handovers@p +handpick@t +handpicked@t +handpicking@t +handpicks@t +handrail@N +handrails@p +hands@N +handsaw@N +handsaws@p +handset@N +handsets@p +handsful@? +handshake@N +handshakes@p +handshaking@N +handshakings@p +handsome@A +handsomely@v +handsomeness@N +handsomer@A +handsomest@A +handspring@N +handsprings@p +handstand@N +handstands@p +handwork@N +handwriting@N +handwritten@A +handy@A +handyman@N +handymen@p +hang@VNit +hangar@N +hangars@p +hangdog@AN +hanged@VAit +hanger@N +hangers@p +hanging@NA +hangings@p +hangman@N +hangmen@p +hangnail@N +hangnails@p +hangout@N +hangouts@p +hangover@N +hangovers@p +hangs@Vpit +hangzhou@? +hank@N +hanker@V +hankered@V +hankering@N +hankerings@p +hankers@V +hankie@N +hankies@p +hanks@p +hanky@N +hannah@N +hannibal@N +hanoi@N +hanover@N +hanoverian@AN +hans@N +hansom@N +hansoms@p +hanukkah@N +hanukkahs@p +haphazard@vAN +haphazardly@v +hapless@A +happen@itv +happened@itv +happening@N +happenings@p +happens@itv +happenstance@N +happenstances@p +happier@A +happiest@A +happily@v +happiness@N +happy@A! +hapsburg@N +harangue@VN +harangued@V +harangues@Vp +haranguing@V +harare@? +harass@t +harassed@A +harasses@? +harassing@t +harassment@N +harbin@N +harbinger@Nt +harbingers@pt +harbor@Nti +harbored@Ati +harboring@Ati +harbormaster@? +harbormasters@p +harbors@pti +harbour@N +harboured@A +harbouring@A +harbours@p +hard@AvN +hardback@NA +hardbacks@p +hardball@N +hardboard@N +hardcore@N +hardcover@NA +hardcovers@p +harden@N +hardened@A +hardener@N +hardeners@p +hardening@N +hardens@p +harder@? +hardest@? +hardheaded@A +hardheadedly@v +hardheadedness@N +hardhearted@A +hardheartedly@v +hardheartedness@N +hardier@A +hardiest@A +hardily@v +hardiness@N +harding@N +hardline@? +hardliner@? +hardliners@p +hardly@v +hardness@N +hardscrabble@A +hardship@N +hardships@p +hardtack@N +hardtop@N +hardtops@p +hardware@N +hardwired@? +hardwood@N +hardwoods@p +hardy@AN +hare@N +harebell@N +harebells@p +harebrained@A +hared@A +harelip@N +harelips@p +harem@N +harems@p +hares@p +hargreaves@N +haricot@N +haricots@p +haring@A +hark@i +harked@i +harken@V +harkened@V +harkening@V +harkens@V +harking@i +harks@i +harlem@N +harlequin@NA +harlequins@p +harley@N +harlot@NA +harlots@p +harlow@N +harm@Nt +harmed@At +harmful@A +harmfully@v +harmfulness@N +harming@At +harmless@A +harmlessly@v +harmlessness@N +harmonic@AN +harmonica@N +harmonically@v +harmonicas@p +harmonics@N +harmonies@p +harmonious@A +harmoniously@v +harmoniousness@N +harmonisation@N +harmonise@ti +harmonised@ti +harmonises@ti +harmonising@ti +harmonization@N +harmonize@Vti +harmonized@V +harmonizes@Vti +harmonizing@V +harmony@N +harms@N +harness@N +harnessed@A +harnesses@? +harnessing@A +harp@N +harped@A +harpies@p +harping@N +harpist@N +harpists@p +harpoon@Nt +harpooned@At +harpooning@At +harpoons@pt +harps@p +harpsichord@N +harpsichords@p +harpy@N +harridan@N +harridans@p +harried@V +harries@p +harris@N +harrisburg@N +harrison@N +harrow@N +harrowed@A +harrowing@A +harrows@p +harrumph@i +harrumphed@i +harrumphing@i +harrumphs@i +harry@N +harrying@V +harsh@A +harsher@? +harshest@? +harshly@v +harshness@N +hart@N +harte@N +hartford@N +harts@N +harvest@NVt +harvested@AVt +harvester@N +harvesters@p +harvesting@AVt +harvests@pVt +harvey@N +has@V +hash@Nt +hashed@At +hasheesh@? +hashes@? +hashing@N +hashish@N +hasidim@p +hasp@Nt +hasps@pt +hassle@NV +hassled@V +hassles@pV +hassling@V +hassock@N +hassocks@p +hast@V +haste@NV +hasted@V +hasten@Vt +hastened@Vt +hastening@Vt +hastens@Vt +hastes@pV +hastier@A +hastiest@A +hastily@v +hastiness@N +hasting@V +hastings@N +hasty@A +hat@NV +hatband@N +hatbands@p +hatbox@N +hatboxes@? +hatch@N +hatchback@N +hatchbacks@p +hatched@A +hatcheries@p +hatchery@N +hatches@? +hatchet@N +hatchets@p +hatching@N +hatchway@N +hatchways@p +hate@ViN +hated@V +hateful@A +hatefully@v +hatefulness@N +hater@N +haters@p +hates@Vip +hatfield@N +hath@V +hathaway@N +hating@V +hatpin@N +hatpins@p +hatred@N +hatreds@p +hats@pV +hatstand@? +hatstands@p +hatted@V +hatter@N +hatteras@N +hatters@p +hatting@V +haughtier@A +haughtiest@A +haughtily@v +haughtiness@N +haughty@A +haul@VtiN +haulage@N +hauled@VtiA +hauler@N +haulers@p +haulier@N +hauliers@p +hauling@VtiA +hauls@Vtip +haunch@N +haunches@? +haunt@VtN +haunted@A +haunting@A +hauntingly@v +haunts@Vtp +hauptmann@N +hausa@N +hauteur@N +havana@N +havanas@p +havarti@? +have@VN +havel@N +haven@N +havens@N +haversack@N +haversacks@p +haves@Vp +having@A +havoc@NV +haw@N!i +hawaii@N +hawaiian@AN +hawaiians@p +hawed@A!i +hawing@A!i +hawk@N +hawked@A +hawker@N +hawkers@p +hawking@N +hawkins@N +hawkish@A +hawkishness@? +hawks@p +haws@p!i +hawser@N +hawsers@p +hawthorn@N +hawthorne@N +hawthorns@p +hay@N +haycock@N +haycocks@p +haydn@N +hayed@A +hayes@N +haying@A +hayloft@N +haylofts@p +haymaking@? +haymow@N +haymows@p +hayrick@N +hayricks@p +hayride@N +hayrides@p +hays@N +hayseed@N +hayseeds@p +haystack@N +haystacks@p +haywire@NA +hazard@N +hazarded@A +hazarding@A +hazardous@A +hazards@p +haze@N +hazed@t +hazel@N +hazelnut@N +hazelnuts@p +hazels@p +hazes@p +hazier@A +haziest@A +hazily@v +haziness@N +hazing@Nt +hazings@pt +hazlitt@N +hazy@A +hbo@? +he@N +head@N +headache@N +headaches@p +headband@N +headbands@p +headbanger@? +headbangers@p +headbanging@? +headboard@N +headboards@p +headbutt@? +headbutted@? +headbutting@? +headbutts@p +headcase@? +headcases@? +headcheese@N +headcount@? +headcounts@p +headdress@N +headdresses@? +headed@A +header@N +headers@p +headfirst@Av +headgear@N +headhunt@Ni +headhunted@Ai +headhunter@N +headhunters@p +headhunting@NA +headhunts@pi +headier@A +headiest@A +heading@N +headings@p +headlamp@? +headlamps@p +headland@N +headlands@p +headless@A +headlight@N +headlights@p +headline@Nt +headlined@V +headliner@N +headliners@p +headlines@pt +headlining@V +headlock@N +headlocks@p +headlong@vA +headman@N +headmaster@N +headmasters@p +headmen@p +headmistress@N +headmistresses@? +headphone@N +headphones@p +headquarter@ti +headquartered@ti +headquartering@ti +headquarters@p +headrest@N +headrests@p +headroom@N +heads@!v +headscarf@N +headscarves@? +headset@N +headsets@p +headship@N +headships@p +headstone@N +headstones@p +headstrong@A +headteacher@? +headteachers@p +headwaiter@N +headwaiters@p +headwaters@p +headway@N +headwind@N +headwinds@p +headword@N +headwords@p +heady@A +heal@Vit +healed@Vit +healer@N +healers@p +healing@AN +heals@Vit +health@N! +healthcare@? +healthful@A +healthfully@v +healthfulness@N +healthier@A +healthiest@A +healthily@v +healthiness@N +healthy@A +heap@NvVt +heaped@AvVt +heaping@A +heaps@N +hear@Vti +heard@V +hearer@N +hearers@p +hearing@N +hearings@p +hearken@V +hearkened@V +hearkening@V +hearkens@V +hears@Vti +hearsay@N +hearse@N +hearses@p +hearst@N +heart@NV +heartache@N +heartaches@p +heartbeat@N +heartbeats@p +heartbreak@N +heartbreaking@A +heartbreaks@p +heartbroken@A +heartburn@N +hearten@V +heartened@V +heartening@V +heartens@V +heartfelt@A +hearth@N +hearthrug@? +hearthrugs@p +hearths@p +heartier@A +hearties@A +heartiest@A +heartily@v +heartiness@N +heartland@N +heartlands@p +heartless@A +heartlessly@v +heartlessness@N +heartrending@A +hearts@N +heartsick@A +heartstrings@p +heartthrob@N +heartthrobs@p +heartwarming@A +hearty@AN +heat@NV +heated@A +heatedly@v +heater@N +heaters@p +heath@N +heathen@NA +heathenish@A +heathens@p +heather@N +heaths@p +heating@AV +heatproof@? +heats@pV +heatstroke@N +heatwave@? +heatwaves@? +heave@VtiN +heaved@V +heaven@N +heavenlier@? +heavenliest@? +heavenly@A +heavens@p +heavenward@Av +heavenwards@v +heaves@N +heavier@A +heavies@A +heaviest@A +heavily@v +heaviness@N +heaving@VtiA +heaviside@N +heavy@AN +heavyset@A +heavyweight@N +heavyweights@p +hebe@N +hebraic@A +hebrew@NA +hebrews@N +hebrides@NA +hecate@N +heck@!N +heckle@VtN +heckled@V +heckler@N +hecklers@p +heckles@Vtp +heckling@V +hectare@N +hectares@p +hectic@AN +hectically@v +hector@N +hectored@A +hectoring@A +hectors@p +hecuba@N +hedge@Nti +hedged@V +hedgehog@N +hedgehogs@p +hedgerow@N +hedgerows@p +hedges@N +hedging@V +hedonism@N +hedonist@NA +hedonistic@A +hedonists@p +heed@NV +heeded@AV +heedful@A +heeding@AV +heedless@A +heedlessly@v +heedlessness@N +heeds@pV +heehaw@! +heehawed@! +heehawing@! +heehaws@! +heel@NtV +heeled@A +heeling@N +heels@ptV +heft@tN +hefted@tA +heftier@A +heftiest@A +heftily@v +hefting@tA +hefts@tp +hefty@A +hegel@N +hegelian@AN +hegemonic@A +hegemony@N +hegira@N +heidegger@N +heidelberg@N +heifer@N +heifers@p +heifetz@N +height@N +heighten@V +heightened@V +heightening@V +heightens@V +heights@p +heine@N +heinous@A +heinously@v +heinousness@N +heinz@? +heir@N +heiress@N +heiresses@? +heirloom@N +heirlooms@p +heirs@p +heisenberg@N +heist@Nt +heisted@At +heisting@At +heists@pt +held@N +helen@N +helena@N +helical@A +helices@N +helicon@N +helicopter@N +helicoptered@A +helicoptering@A +helicopters@p +heliopolis@N +helios@N +heliotrope@N +heliotropes@p +helipad@N +helipads@p +heliport@N +heliports@p +helium@N +helix@N +helixes@? +hell@N +hellebore@N +hellenic@AN +hellenisation@N +hellenise@ti +hellenism@N +hellenisms@p +hellenistic@A +hellenization@N +hellenize@V +heller@N +hellespont@N +hellhole@N +hellholes@p +hellion@N +hellions@p +hellish@Av +hellishly@v +hellman@N +hello@N +hellos@p +hells@p +helluva@vA +helm@N +helmet@N +helmeted@A +helmets@p +helmholtz@N +helms@N +helmsman@N +helmsmen@p +helot@N +helots@p +help@VtN! +helped@V +helper@N +helpers@p +helpful@A +helpfully@v +helpfulness@N +helping@N +helpings@p +helpless@A +helplessly@v +helplessness@N +helpline@? +helplines@? +helpmate@N +helpmates@p +helpmeet@N +helpmeets@p +helps@Vtp! +helsinki@N +hem@NVt +hematological@A +hematologist@N +hematologists@p +hematology@N +hemingway@N +hemisphere@N +hemispheres@p +hemispheric@A +hemispherical@A +hemline@N +hemlines@p +hemlock@N +hemlocks@p +hemmed@V +hemming@V +hemoglobin@N +hemophilia@N +hemophiliac@N +hemophiliacs@p +hemorrhage@Ni +hemorrhaged@V +hemorrhages@pi +hemorrhaging@V +hemorrhoid@N +hemorrhoids@p +hemp@N +hempen@A +hems@pVt +hemstitch@NV +hemstitched@AV +hemstitches@? +hemstitching@AV +hen@N +hence@Cv! +henceforth@v +henceforward@? +henchman@N +henchmen@p +hendrix@N +henley@N +henna@Nt +hennaed@V +hennaing@V +hennas@pt +henpeck@t +henpecked@t +henpecking@t +henpecks@t +henry@N +hens@p +hep@A +hepatic@AN +hepatitis@N +hepburn@N +hephaestus@N +hepper@? +heppest@? +hepplewhite@A +heptagon@N +heptagonal@A +heptagons@p +heptathlon@? +heptathlons@p +her@rD +hera@N +heraclitus@N +herald@N +heralded@A +heraldic@A +heralding@A +heraldry@N +heralds@p +herb@N +herbaceous@A +herbage@N +herbal@AN +herbalist@N +herbalists@p +herbals@p +herbart@N +herbert@N +herbicide@N +herbicides@p +herbivore@N +herbivores@p +herbivorous@A +herbs@p +herculaneum@N +herculean@A +hercules@N +herd@NVt +herded@AVt +herder@N +herding@AVt +herds@pVt +herdsman@N +herdsmen@p +here@N +hereabout@v +hereabouts@v +hereafter@vN +hereafters@vp +hereby@v +hereditary@A +heredity@N +hereford@N +herein@v +hereinafter@v +hereof@v +herero@N +heresies@p +heresy@N +heretic@N +heretical@A +heretics@p +hereto@v +heretofore@vAN +hereupon@v +herewith@v +heritage@N +heritages@p +hermaphrodite@NA +hermaphrodites@p +hermaphroditic@A +hermaphroditus@N +hermes@N +hermetic@A +hermetically@v +hermit@N +hermitage@N +hermitages@p +hermits@p +hernia@N +herniae@p +hernias@p +hero@N +herod@N +herodotus@N +heroes@p +heroic@A +heroically@v +heroics@p +heroin@N +heroine@N +heroines@p +heroins@p +heroism@N +heron@N +herons@p +heros@N +herpes@N +herrick@N +herring@N +herringbone@NVi +herrings@p +hers@r +herschel@N +herself@r +hertz@N +hertzes@? +herzegovina@N +herzl@N +hes@p +heshvan@N +hesiod@N +hesitancy@N +hesitant@A +hesitantly@v +hesitate@i +hesitated@i +hesitates@i +hesitating@i +hesitatingly@v +hesitation@N +hesitations@p +hesperus@N +hess@N +hesse@N +hessian@N +hetero@A +heterodox@A +heterodoxy@N +heterogeneity@N +heterogeneous@A +heteros@p +heterosexual@NA +heterosexuality@N +heterosexually@? +heterosexuals@p +heuristic@AN +heuristics@p +hew@N +hewed@V +hewer@N +hewers@p +hewing@V +hewn@V +hews@p +hex@tN +hexadecimal@? +hexadecimals@p +hexagon@N +hexagonal@A +hexagons@p +hexameter@N +hexameters@p +hexed@tA +hexes@? +hexing@tA +hey@! +heyday@N +heydays@p +heyerdahl@N +heywood@N +hezekiah@N +hf@N +hg@N +hgt@N +hhs@p +hi@! +hialeah@N +hiatus@N +hiatuses@p +hiawatha@N +hibachi@N +hibachis@p +hibernate@i +hibernated@i +hibernates@i +hibernating@i +hibernation@N +hibernia@N +hibiscus@N +hibiscuses@p +hiccough@? +hiccoughed@? +hiccoughing@? +hiccoughs@p +hiccup@NV +hiccuped@V +hiccuping@V +hiccupped@V +hiccupping@V +hiccups@pV +hick@N +hickey@N +hickeys@p +hickok@N +hickories@? +hickory@N +hicks@N +hid@V +hidden@VA +hide@VtN +hideaway@N +hideaways@p +hidebound@A +hided@V +hideous@A +hideously@v +hideousness@N +hideout@N +hideouts@p +hides@Vtp +hiding@N +hidings@p +hie@V +hied@V +hieing@V +hierarchical@A +hierarchically@v +hierarchies@p +hierarchy@N +hieroglyph@? +hieroglyphic@AN +hieroglyphics@N +hieroglyphs@p +hieronymus@N +hies@V +hifalutin@A +high@AvN +highball@N +highballs@p +highborn@A +highboy@N +highboys@p +highbrow@NA +highbrows@p +highchair@N +highchairs@p +higher@? +highers@p +highest@? +highfalutin@A +highfaluting@? +highjack@V +highjacked@V +highjacker@N +highjackers@p +highjacking@V +highjacks@V +highland@N +highlander@N +highlanders@p +highlands@N +highlight@Nt +highlighted@V +highlighter@? +highlighters@p +highlighting@V +highlights@pt +highly@v +highness@N +highs@pv +hightail@i +hightailed@i +hightailing@i +hightails@i +highway@N +highwayman@N +highwaymen@p +highways@p +hijack@tN +hijacked@tA +hijacker@N +hijackers@p +hijacking@tA +hijackings@p +hijacks@tp +hijinks@N +hike@iN +hiked@V +hiker@N +hikers@p +hikes@ip +hiking@V +hilarious@A +hilariously@v +hilarity@N +hilbert@N +hildebrand@N +hill@N +hillary@N +hillbillies@p +hillbilly@N +hillel@N +hillier@A +hilliest@A +hillock@N +hillocks@p +hills@N +hillside@N +hillsides@p +hilltop@Ni +hilltops@pi +hilly@A +hilt@Nt +hilton@N +hilts@pt +him@N +himalayas@p +himmler@N +hims@N +himself@r +hinayana@N +hind@AN +hindemith@N +hindenburg@N +hinder@VtA +hindered@VtA +hindering@VtA +hinders@Vtp +hindi@N +hindmost@A +hindquarter@N +hindquarters@p +hindrance@N +hindrances@p +hinds@p +hindsight@N +hindu@NA +hinduism@N +hinduisms@p +hindus@N +hindustan@N +hindustani@NA +hines@N +hing@A +hinge@Nti +hinged@V +hinges@pti +hinging@V +hings@p +hint@NV +hinted@AV +hinterland@N +hinterlands@p +hinting@AV +hints@pV +hip@N!A +hipbath@? +hipbaths@p +hiphuggers@N +hipparchus@N +hipped@A +hipper@A +hippest@A +hippie@N +hippies@p +hipping@NV +hippo@N +hippocrates@N +hippocratic@A +hippopotami@? +hippopotamus@N +hippopotamuses@p +hippos@p +hippy@AN +hips@p! +hipster@N +hipsters@p +hiram@N +hire@tN +hired@V +hireling@N +hirelings@p +hires@tp +hiring@V +hirohito@N +hiroshima@N +hirsute@A +his@Dr +hispanic@A +hispanics@p +hispaniola@N +hiss@N +hissed@A +hisses@? +hissing@N +histamine@N +histamines@p +histogram@N +histograms@p +historian@N +historians@p +historic@A +historical@A +historically@v +histories@p +history@N +histrionic@AN +histrionically@v +histrionics@N +hit@AVN +hitch@VtiN +hitchcock@N +hitched@VtiA +hitches@? +hitchhike@i +hitchhiked@i +hitchhiker@? +hitchhikers@p +hitchhikes@i +hitchhiking@i +hitching@VtiA +hither@vA +hitherto@v +hitler@N +hitlers@p +hits@pV +hitter@N +hitters@p +hitting@V +hittite@NA +hiv@? +hive@NVt +hived@V +hives@N +hiving@V +hiya@? +hm@N +hmm@? +hmo@? +hmong@? +hms@N +ho@! +hoagie@? +hoagies@? +hoagy@? +hoard@NV +hoarded@AV +hoarder@N +hoarders@p +hoarding@N +hoardings@p +hoards@pV +hoarfrost@N +hoarier@A +hoariest@A +hoariness@N +hoarse@A +hoarsely@v +hoarseness@N +hoarser@? +hoarsest@? +hoary@A +hoax@Nt +hoaxed@At +hoaxer@N +hoaxers@p +hoaxes@? +hoaxing@At +hob@NV +hobart@N +hobbes@NA +hobbies@p +hobbit@? +hobbits@p +hobble@itN +hobbled@V +hobbles@itp +hobbling@V +hobbs@N +hobby@N +hobbyhorse@Ni +hobbyhorses@pi +hobbyist@N +hobbyists@p +hobgoblin@N +hobgoblins@p +hobnail@N +hobnailed@A +hobnailing@A +hobnails@p +hobnob@V +hobnobbed@V +hobnobbing@V +hobnobs@V +hobo@N +hoboes@p +hobos@p +hobs@pV +hock@N +hocked@A +hockey@N +hocking@N +hocks@p +hockshop@N +hockshops@p +hod@N +hodgepodge@N +hodgepodges@p +hodgkin@N +hods@p +hoe@N +hoed@V +hoedown@N +hoedowns@p +hoeing@V +hoes@N +hog@NV +hogan@N +hogans@p +hogarth@N +hogged@A +hogging@V +hoggish@A +hogs@pV +hogshead@N +hogsheads@p +hogwash@N +hohenlohe@N +hohenstaufen@N +hohenzollern@N +hohokam@AN +hoick@V +hoicked@V +hoicking@V +hoicks@! +hoist@tN +hoisted@tA +hoisting@tA +hoists@tp +hokey@A +hokier@? +hokiest@? +hokkaido@N +hokum@N +hokusai@N +holbein@N +hold@VtiN +holdall@N +holdalls@p +holder@N +holders@p +holding@N +holdings@p +holdout@N +holdouts@p +holdover@N +holdovers@p +holds@N +holdup@N +holdups@p +hole@N +holed@V +holes@p +holiday@N +holidayed@A +holidaying@A +holidaymaker@? +holidaymakers@p +holidays@p +holier@A +holiest@A +holiness@N +holing@V +holism@N +holistic@A +holistically@v +holland@N +hollands@N +holler@VN +hollered@VA +hollering@VA +hollers@Vp +hollies@p +hollo@N!i +hollos@p!i +hollow@ANV +hollowed@AV +hollower@? +hollowest@? +hollowing@AV +hollowly@v +hollowness@N +hollows@pV +holly@N +hollyhock@N +hollyhocks@p +hollywood@N +holmes@N +holocaust@N +holocausts@p +holocene@AN +hologram@N +holograms@p +holograph@N +holographic@? +holographs@p +holography@N +hols@p +holst@N +holstein@N +holsteins@p +holster@N +holstered@A +holstering@A +holsters@p +holt@N +holy@AN +homage@NVt +homages@pVt +homburg@N +homburgs@p +home@N +homebodies@p +homebody@N +homeboy@? +homeboys@p +homecoming@N +homecomings@p +homed@V +homegrown@? +homeland@N +homelands@p +homeless@A +homelessness@N +homelier@A +homeliest@A +homeliness@N +homely@A +homemade@A +homemaker@NA +homemakers@p +homeopath@? +homeopathic@A +homeopaths@p +homeopathy@N +homeowner@? +homeowners@p +homepage@? +homepages@? +homer@N +homered@A +homeric@A +homering@A +homeroom@N +homerooms@p +homers@p +homes@p +homesick@A +homesickness@N +homespun@AN +homestead@N +homesteaded@A +homesteader@N +homesteaders@p +homesteading@A +homesteads@p +homestretch@N +homestretches@? +hometown@N +hometowns@p +homeward@Av +homewards@pv +homework@N +homeworker@N +homeworkers@p +homeworking@A +homey@A +homeyness@N +homeys@p +homicidal@A +homicide@N +homicides@p +homie@? +homier@A +homies@? +homiest@A +homilies@p +homily@N +hominess@N +homing@N +hominy@N +homoeopath@? +homoeopathic@A +homoeopaths@p +homoeopathy@N +homoerotic@A +homogeneity@N +homogeneous@AN +homogeneously@v +homogenisation@? +homogenise@? +homogenised@? +homogenises@? +homogenising@? +homogenization@N +homogenize@t +homogenized@t +homogenizes@t +homogenizing@t +homogenous@A +homograph@N +homographs@p +homonym@N +homonyms@p +homophobia@? +homophobic@? +homophone@N +homophones@p +homosexual@NA +homosexuality@N +homosexuals@p +homy@A +hon@N +honcho@? +honchos@p +honduran@AN +hondurans@p +honduras@N +hone@Nti +honed@Vi +hones@pti +honest@A +honester@? +honestest@? +honestly@v! +honesty@N +honey@N +honeybee@N +honeybees@p +honeycomb@Nt +honeycombed@At +honeycombing@At +honeycombs@pt +honeydew@N +honeydews@p +honeyed@A +honeying@V +honeymoon@Ni +honeymooned@Ai +honeymooner@N +honeymooners@p +honeymooning@Ai +honeymoons@pi +honeypot@? +honeypots@p +honeys@p +honeysuckle@N +honeysuckles@p +honiara@N +honied@A +honing@Vi +honk@NVi +honked@AVi +honkey@? +honkeys@p +honkie@? +honkies@p +honking@AVi +honks@pVi +honky@N +honolulu@N +honor@N +honorable@A +honorably@v +honoraria@? +honorarium@N +honorariums@p +honorary@A +honored@A +honorific@A +honorifics@p +honoring@A +honors@p +honour@NtA +honourable@A +honourably@v +honoured@At +honouring@At +honours@pt +honshu@N +hooch@N +hood@N +hooded@A +hooding@A +hoodlum@N +hoodlums@p +hoodoo@NV +hoodooed@p +hoodooing@p +hoodoos@pV +hoods@p +hoodwink@t +hoodwinked@t +hoodwinking@t +hoodwinks@t +hooey@N! +hoof@Nt +hoofed@A +hoofer@N +hoofers@p +hoofing@At +hoofs@p +hook@N +hookah@N +hookahs@p +hooke@N +hooked@A +hooker@N +hookers@p +hookey@N +hooking@A +hooks@p +hookup@N +hookups@p +hookworm@N +hookworms@p +hooky@N +hooligan@N +hooliganism@N +hooligans@p +hoop@NtV +hooped@AtV +hooping@AtV +hoopla@N +hoops@ptV +hoorah@? +hoorahs@p +hooray@!NV! +hoorayed@!AV! +hooraying@!AV! +hoorays@!pV! +hoosier@N +hoot@NVti! +hootch@N +hooted@AVti! +hooter@N +hooters@p +hooting@AVti! +hoots@pVti! +hoover@NV +hoovered@AV +hoovering@AV +hoovers@pV +hooves@N +hop@NVit +hope@N +hoped@V +hopeful@AN +hopefully@v +hopefulness@N +hopefuls@p +hopeless@A +hopelessly@v +hopelessness@N +hopes@p +hopi@N +hoping@V +hopkins@N +hopped@V +hopper@N +hoppers@p +hopping@NA +hops@p +hopscotch@N +hopscotched@A +hopscotches@? +hopscotching@A +horace@N +horde@Ni +horded@V +hordes@pi +hording@V +horizon@N +horizons@p +horizontal@AN +horizontally@v +horizontals@p +hormonal@A +hormone@N +hormones@p +hormuz@N +horn@N +horned@A +hornet@N +hornets@p +hornier@A +horniest@A +hornless@A +hornpipe@N +hornpipes@p +horns@p +horny@A +horology@N +horoscope@N +horoscopes@p +horowitz@N +horrendous@A +horrendously@v +horrible@A +horribly@v +horrid@A +horridly@v +horrific@A +horrifically@v +horrified@t +horrifies@? +horrify@V +horrifying@t +horrifyingly@v +horror@N +horrors@p! +horse@Nt +horseback@N +horsebox@N +horseboxes@? +horsed@NV +horseflies@? +horsefly@N +horsehair@N +horsehide@N +horseman@N +horsemanship@N +horsemen@p +horseplay@N +horsepower@N +horseradish@N +horseradishes@? +horses@p +horseshit@N +horseshoe@NV +horseshoed@V +horseshoeing@V +horseshoes@N +horsetail@N +horsetails@p +horsetrading@? +horsewhip@NV +horsewhipped@V +horsewhipping@V +horsewhips@pV +horsewoman@N +horsewomen@p +horsey@A +horsier@A +horsiest@A +horsing@NV +horsy@A +horthy@N +horticultural@A +horticulturalist@? +horticulturalists@p +horticulture@N +horticulturist@N +horticulturists@p +horus@N +hos@N +hosanna@!N +hosannas@!p +hose@N +hosea@N +hosed@A +hosepipe@? +hosepipes@? +hoses@p +hosiery@N +hosing@A +hospice@N +hospices@p +hospitable@A +hospitably@v +hospital@N +hospitalisation@? +hospitalisations@p +hospitalise@? +hospitalised@? +hospitalises@? +hospitalising@? +hospitality@N +hospitalization@N +hospitalizations@p +hospitalize@t +hospitalized@t +hospitalizes@t +hospitalizing@t +hospitals@p +host@N +hostage@N +hostages@p +hosted@A +hostel@N +hosteled@A +hosteler@N +hostelers@p +hosteling@A +hostelled@? +hostelling@N +hostelries@p +hostelry@N +hostels@p +hostess@N +hostessed@A +hostesses@? +hostessing@A +hostile@A +hostilely@v +hostiles@p +hostilities@p +hostility@N +hosting@A +hostler@N +hostlers@p +hosts@p +hot@Av +hotbed@N +hotbeds@p +hotcake@? +hotcakes@? +hotel@N +hotelier@N +hoteliers@p +hotels@p +hotfoot@AV +hotfooted@AV +hotfooting@AV +hotfoots@p +hothead@N +hotheaded@A +hotheadedly@v +hotheadedness@N +hotheads@p +hothouse@N +hothouses@p +hotline@? +hotlines@? +hotlink@? +hotlinks@p +hotly@v +hotness@N +hotplate@N +hotplates@p +hotpot@N +hotpots@p +hots@pv +hotshot@AN +hotshots@p +hotspot@? +hotspots@p +hotted@? +hottentot@N +hotter@Ai +hottest@vVA +hotting@A +houdini@N +hoummos@p +houmous@N +hound@N +hounded@A +hounding@N +hounds@p +hour@N +hourglass@N +hourglasses@? +hourly@Av +hours@p +house@N +houseboat@N +houseboats@p +housebound@A +houseboy@N +houseboys@p +housebreak@t +housebreaker@N +housebreakers@p +housebreaking@N +housebreaks@t +housebroke@t +housebroken@t +houseclean@ti +housecleaned@ti +housecleaning@N +housecleans@ti +housecoat@N +housecoats@p +housed@V +houseflies@p +housefly@N +houseful@N +household@N +householder@N +householders@p +households@p +househusband@? +househusbands@p +housekeeper@N +housekeepers@p +housekeeping@N +housemaid@N +housemaids@p +houseman@N +housemaster@N +housemasters@p +housemate@? +housemates@? +housemen@p +housemistress@? +housemistresses@? +housemother@N +housemothers@p +houseplant@? +houseplants@p +houseproud@? +houseroom@N +houses@p +housetop@N +housetops@p +housewares@p +housewarming@N +housewarmings@p +housewife@N +housewifely@A +housewives@? +housework@N +housing@N +housings@p +housman@N +houston@N +houyhnhnm@N +hov@? +hove@N +hovel@NV +hovels@pV +hover@iN +hovercraft@N +hovercrafts@p +hovered@iA +hovering@iA +hovers@ip +how@N +howard@N +howdah@N +howdahs@p +howdy@! +howe@N +however@Cv +howitzer@N +howitzers@p +howl@NVi +howled@AVi +howler@N +howlers@p +howling@Av +howls@pVi +hows@p +howsoever@Cv +hoyle@N +hp@N +hq@N +hr@N +hrh@N +hrs@N +hs@N +hst@? +ht@N +html@? +http@? +huang@N +hub@N +hubbard@N +hubbies@p +hubbub@N +hubbubs@p +hubby@N +hubcap@N +hubcaps@p +hubris@N +hubs@p +huckleberries@p +huckleberry@N +huckster@Nt +huckstered@At +huckstering@At +hucksters@pt +hud@N +huddle@NVit +huddled@V +huddles@pVit +huddling@V +hudson@N +hue@N +hued@A +hues@p +huff@N +huffed@A +huffier@A +huffiest@A +huffily@v +huffing@A +huffs@p +huffy@A +hug@VN +huge@A +hugely@v +hugeness@N +huger@A +hugest@A +hugged@V +hugging@V +hughes@N +hugo@N +hugs@Vp +huguenot@NA +huguenots@p +huh@! +hui@N +hula@N +hulas@p +hulk@Ni +hulking@A +hulks@pi +hull@N +hullabaloo@N +hullabaloos@p +hulled@A +hulling@N +hulls@p +hum@N +human@AN +humane@A +humanely@v +humaneness@N +humaner@? +humanest@? +humanisation@N +humanise@ti +humanised@ti +humaniser@N +humanisers@p +humanises@ti +humanising@ti +humanism@N +humanist@N +humanistic@A +humanists@p +humanitarian@AN +humanitarianism@N +humanitarians@p +humanities@p +humanity@N +humanization@N +humanize@V +humanized@V +humanizer@N +humanizers@p +humanizes@V +humanizing@V +humankind@N +humanly@v +humanness@N +humanoid@AN +humanoids@p +humans@p +humble@At +humbled@A +humbleness@N +humbler@A +humbles@pt +humblest@A +humbling@A +humblings@p +humbly@v +humboldt@N +humbug@NV +humbugged@V +humbugging@V +humbugs@pV +humdinger@N +humdingers@p +humdrum@AN +hume@N +humeri@? +humerus@N +humid@A +humidified@t +humidifier@N +humidifiers@p +humidifies@? +humidify@V +humidifying@t +humidity@N +humidor@N +humidors@p +humiliate@t +humiliated@t +humiliates@t +humiliating@t +humiliation@N +humiliations@p +humility@N +hummed@V +humming@AV +hummingbird@N +hummingbirds@p +hummock@N +hummocks@p +hummus@p +humongous@p +humor@Nt +humored@At +humoring@At +humorist@N +humorists@p +humorless@A +humorlessness@N +humorous@A +humorously@v +humors@pt +humour@Nt +humoured@At +humouring@At +humourless@A +humourlessness@N +humours@pt +hump@N +humpback@N +humpbacked@A +humpbacks@p +humped@A +humph@! +humphrey@N +humping@A +humps@p +hums@N +humungous@p +humus@N +humvee@? +hun@N +hunch@NVi +hunchback@N +hunchbacked@A +hunchbacks@p +hunched@AVi +hunches@? +hunching@AVi +hundred@ND +hundredfold@Av +hundreds@pD +hundredth@AN +hundredths@p +hundredweight@N +hundredweights@p +hung@N +hungarian@NA +hungarians@p +hungary@N +hunger@N +hungered@A +hungering@A +hungers@p +hungover@? +hungrier@? +hungriest@? +hungrily@v +hungry@A +hunk@N +hunker@iN +hunkered@iA +hunkering@iA +hunkers@p +hunkier@? +hunkiest@? +hunks@N +hunky@AN +huns@p +hunt@N +hunted@A +hunter@N +hunters@p +hunting@N +huntress@N +huntresses@? +hunts@N +huntsman@N +huntsmen@p +huntsville@N +hurdle@NVt +hurdled@V +hurdler@N +hurdlers@p +hurdles@pVt +hurdling@V +hurl@tN +hurled@tA +hurler@N +hurlers@p +hurling@N +hurls@tp +huron@N +hurrah@V +hurrahed@V +hurrahing@V +hurrahs@V +hurray@? +hurrayed@? +hurraying@? +hurrays@p +hurricane@N +hurricanes@p +hurried@A +hurriedly@v +hurries@V +hurry@VtN +hurrying@V +hurt@ViN +hurtful@A +hurtfully@v +hurtfulness@N +hurting@ViA +hurtle@Vi +hurtled@V +hurtles@Vi +hurtling@A +hurts@Vip +hus@N +husband@NVt +husbanded@AVt +husbanding@AVt +husbandry@N +husbands@pVt +hush@VN!t +hushed@VA!t +hushes@? +hushing@VA!t +husk@Nt +husked@At +husker@N +huskers@p +huskier@A +huskies@p +huskiest@A +huskily@v +huskiness@N +husking@N +husks@pt +husky@AN +hussar@N +hussars@p +hussein@N +husserl@N +hussies@p +hussite@NA +hussy@N +hustings@N +hustle@VtiN +hustled@V +hustler@N +hustlers@p +hustles@Vtip +hustling@V +huston@N +hut@N +hutch@Nt +hutches@? +hutchinson@N +huts@p +hutu@N +hutzpa@? +hutzpah@? +huxley@N +huygens@N +hwy@? +hyacinth@N +hyacinths@p +hyades@p +hyaena@N +hyaenas@p +hybrid@NA +hybridise@ti +hybridised@ti +hybridises@ti +hybridising@ti +hybridize@V +hybridized@V +hybridizes@V +hybridizing@V +hybrids@p +hyde@N +hyderabad@N +hydra@N +hydrae@p +hydrangea@N +hydrangeas@p +hydrant@N +hydrants@p +hydras@p +hydrate@NV +hydrated@A +hydrates@pV +hydrating@V +hydration@N +hydraulic@A +hydraulically@v +hydraulics@N +hydrocarbon@N +hydrocarbons@p +hydroelectric@A +hydroelectricity@N +hydrofoil@N +hydrofoils@p +hydrogen@N +hydrogenate@N +hydrogenated@t +hydrogenates@p +hydrogenating@t +hydrology@N +hydrolysis@N +hydrometer@N +hydrometers@p +hydrophobia@N +hydroplane@Ni +hydroplaned@V +hydroplanes@pi +hydroplaning@V +hydroponic@A +hydroponics@N +hydrosphere@N +hydrotherapy@N +hyena@N +hyenas@p +hygiene@N +hygienic@A +hygienically@v +hygienist@N +hygienists@p +hygrometer@N +hygrometers@p +hying@V +hymen@N +hymens@p +hymn@NV +hymnal@NA +hymnals@p +hymned@AV +hymning@AV +hymns@pV +hype@Nit +hyped@A +hyper@? +hyperactive@A +hyperactivity@N +hyperbola@N +hyperbolae@? +hyperbolas@p +hyperbole@N +hyperbolic@A +hypercritical@A +hypercritically@v +hyperinflation@? +hyperion@N +hyperlink@? +hyperlinks@p +hypermarket@N +hypermarkets@p +hypersensitive@A +hypersensitivities@? +hypersensitivity@N +hyperspace@N +hyperspaces@p +hypertension@N +hypertext@? +hyperventilate@? +hyperventilated@? +hyperventilates@? +hyperventilating@? +hyperventilation@N +hypes@pit +hyphen@Nt +hyphenate@t +hyphenated@A +hyphenates@t +hyphenating@V +hyphenation@N +hyphenations@p +hyphened@At +hyphening@At +hyphens@pt +hyping@A +hypnoses@p +hypnosis@N +hypnotherapist@? +hypnotherapists@p +hypnotherapy@N +hypnotic@AN +hypnotically@v +hypnotics@p +hypnotise@ti +hypnotised@ti +hypnotises@ti +hypnotising@ti +hypnotism@N +hypnotist@N +hypnotists@p +hypnotize@t +hypnotized@V +hypnotizes@t +hypnotizing@V +hypo@N +hypoallergenic@? +hypochondria@N +hypochondriac@NA +hypochondriacs@p +hypocrisies@p +hypocrisy@N +hypocrite@N +hypocrites@p +hypocritical@A +hypocritically@v +hypodermic@AN +hypodermics@p +hypoglycemia@N +hypoglycemic@A +hypoglycemics@p +hypos@p +hypotenuse@N +hypotenuses@p +hypothalami@? +hypothalamus@N +hypothermia@N +hypotheses@p +hypothesis@N +hypothesise@it +hypothesised@it +hypothesises@it +hypothesising@it +hypothesize@V +hypothesized@V +hypothesizes@V +hypothesizing@V +hypothetical@A +hypothetically@v +hysterectomies@p +hysterectomy@N +hysteresis@N +hysteria@N +hysteric@NA +hysterical@A +hysterically@v +hysterics@N +hz@? +i@N +ia@N +iamb@N +iambic@AN +iambics@p +iambs@p +iapetus@N +ibadan@N +iberia@N +iberian@NA +ibex@N +ibexes@? +ibices@? +ibid@N +ibis@N +ibises@p +ibiza@N +ibm@? +ibo@N +ibsen@N +ibuprofen@? +icarus@N +icbm@N +icbms@p +icc@N +ice@N +iceberg@N +icebergs@p +icebound@A +icebox@N +iceboxes@? +icebreaker@N +icebreakers@p +icecap@N +icecaps@p +iced@A +iceland@N +icelander@N +icelanders@p +icelandic@AN +ices@p +icicle@N +icicles@p +icier@A +iciest@A +icily@v +iciness@N +icing@N +icings@p +ickier@A +ickiest@A +icky@A +icon@N +iconic@A +iconoclasm@N +iconoclast@N +iconoclastic@A +iconoclasts@p +iconography@N +icons@p +icu@? +icy@A +id@N +ida@N +idaho@N +idahoan@AN +idahoans@p +idahoes@? +idahos@p +idea@N +ideal@NA +idealisation@N +idealisations@p +idealise@ti +idealised@i +idealises@ti +idealising@i +idealism@N +idealist@NA +idealistic@A +idealistically@v +idealists@p +idealization@N +idealizations@p +idealize@Vti +idealized@V +idealizes@Vti +idealizing@V +ideally@v +ideals@p +ideas@p +idem@rA +idempotent@A +identical@A +identically@v +identifiable@A +identification@N +identifications@p +identified@V +identifier@N +identifiers@p +identifies@? +identify@Vi +identifying@V +identikit@N +identikits@p +identities@? +identity@N +ideogram@N +ideograms@p +ideograph@N +ideographs@p +ideological@? +ideologically@v +ideologies@p +ideologist@N +ideologists@p +ideologue@? +ideologues@? +ideology@N +ides@N +idiocies@p +idiocy@N +idiom@N +idiomatic@A +idiomatically@v +idioms@p +idiosyncrasies@p +idiosyncrasy@N +idiosyncratic@A +idiot@N +idiotic@A +idiotically@v +idiots@p +idle@AVit +idled@A +idleness@N +idler@N +idlers@p +idles@pVit +idlest@A +idling@A +idly@v +idol@N +idolater@N +idolaters@p +idolatrous@A +idolatry@N +idolise@ti +idolised@ti +idolises@ti +idolising@ti +idolize@ti +idolized@V +idolizes@ti +idolizing@V +idols@p +ids@p +idyl@? +idyll@N +idyllic@A +idyllically@v +idylls@p +idyls@p +ie@N +ieyasu@N +if@CN +iffier@? +iffiest@? +iffy@A +ifs@N +igloo@N +igloos@p +ignatius@N +igneous@A +ignite@Vt +ignited@V +ignites@Vt +igniting@V +ignition@N +ignitions@p +ignoble@A +ignobly@v +ignominies@p +ignominious@A +ignominiously@v +ignominy@N +ignoramus@N +ignoramuses@p +ignorance@N +ignorant@A +ignorantly@v +ignore@t +ignored@t +ignores@t +ignoring@t +iguana@NA +iguanas@p +ijssel@N +ikhnaton@N +ikon@N +ikonic@? +ikons@p +il@N +ila@N +iliad@N +ilk@N +ilks@p +ill@ANv +illegal@A +illegalities@p +illegality@N +illegally@v +illegals@p +illegibility@N +illegible@A +illegibly@v +illegitimacy@N +illegitimate@A +illegitimately@v +illiberal@A +illicit@A +illicitly@v +illicitness@N +illinois@NA +illiteracy@N +illiterate@AN +illiterates@p +illness@N +illnesses@? +illogical@A +illogicality@N +illogically@v +ills@pv +illuminate@tiAN +illuminated@V +illuminates@tip +illuminati@p +illuminating@A +illumination@N +illuminations@p +illumine@V +illumined@ti +illumines@V +illumining@ti +illus@N +illusion@N +illusionist@N +illusionists@p +illusions@p +illusive@A +illusory@A +illustrate@Vt +illustrated@V +illustrates@Vt +illustrating@V +illustration@N +illustrations@p +illustrative@A +illustrator@N +illustrators@p +illustrious@A +image@Nt +imaged@V +imagery@N +images@pt +imaginable@A +imaginably@v +imaginary@A +imagination@N +imaginations@p +imaginative@A +imaginatively@v +imagine@Vt +imagined@V +imagines@Vt +imaging@V +imagining@V +imaginings@V +imam@N +imams@p +imbalance@N +imbalanced@A +imbalances@p +imbecile@NA +imbeciles@p +imbecilic@A +imbecilities@p +imbecility@N +imbed@V +imbedded@t +imbedding@t +imbeds@V +imbibe@Vt +imbibed@V +imbibes@Vt +imbibing@V +imbroglio@N +imbroglios@p +imbue@V +imbued@t +imbues@V +imbuing@t +imf@N +imho@? +imitate@t +imitated@t +imitates@t +imitating@t +imitation@N +imitations@p +imitative@A +imitator@N +imitators@p +immaculate@A +immaculately@v +immaculateness@N +immanence@v +immanent@A +immaterial@A +immature@A +immaturely@v +immaturity@N +immeasurable@A +immeasurably@v +immediacy@N +immediate@A +immediately@vC +immemorial@A +immense@A +immensely@v +immensities@p +immensity@N +immerse@t +immersed@A +immerses@t +immersing@t +immersion@N +immersions@p +immigrant@N +immigrants@p +immigrate@it +immigrated@V +immigrates@it +immigrating@V +immigration@N +imminence@N +imminent@A +imminently@v +immobile@A +immobilisation@N +immobilise@t +immobilised@t +immobiliser@? +immobilisers@p +immobilises@t +immobilising@t +immobility@N +immobilization@N +immobilize@t +immobilized@t +immobilizer@? +immobilizers@p +immobilizes@t +immobilizing@t +immoderate@A +immoderately@v +immodest@A +immodestly@v +immodesty@N +immolate@t +immolated@t +immolates@t +immolating@t +immolation@N +immoral@A +immoralities@p +immorality@N +immorally@v +immortal@AN +immortalise@t +immortalised@t +immortalises@t +immortalising@t +immortality@N +immortalize@t +immortalized@t +immortalizes@t +immortalizing@t +immortally@v +immortals@p +immovable@A +immovably@v +immoveable@? +immune@AN +immunisation@N +immunisations@p +immunise@t +immunised@t +immunises@t +immunising@t +immunity@N +immunization@N +immunizations@p +immunize@V +immunized@t +immunizes@V +immunizing@t +immunodeficiency@? +immunology@N +immure@t +immured@t +immures@t +immuring@t +immutability@N +immutable@A +immutably@v +imnsho@? +imo@N +imp@N +impact@NV +impacted@A +impacting@AV +impacts@pV +impair@t +impaired@t +impairing@t +impairment@N +impairments@p +impairs@t +impala@N +impalas@p +impale@t +impaled@t +impalement@N +impales@t +impaling@t +impalpable@A +impanel@V +impaneled@t +impaneling@t +impanelled@t +impanelling@t +impanels@V +impart@t +imparted@t +impartial@A +impartiality@N +impartially@v +imparting@t +imparts@t +impassable@A +impasse@N +impasses@p +impassioned@A +impassive@A +impassively@v +impassivity@N +impatience@N +impatiences@p +impatient@A +impatiently@v +impeach@t +impeachable@A +impeached@t +impeaches@? +impeaching@t +impeachment@N +impeachments@p +impeccability@N +impeccable@A +impeccably@v +impecunious@A +impecuniousness@N +impedance@N +impede@t +impeded@t +impedes@t +impediment@N +impedimenta@p +impediments@p +impeding@t +impel@VA +impelled@t +impelling@t +impels@Vp +impend@i +impended@i +impending@A +impends@i +impenetrability@N +impenetrable@A +impenetrably@v +impenitence@N +impenitent@A +imperative@AN +imperatively@v +imperatives@p +imperceptible@A +imperceptibly@v +imperfect@AN +imperfection@N +imperfections@p +imperfectly@v +imperfects@p +imperial@AN +imperialism@N +imperialist@NA +imperialistic@A +imperialists@p +imperially@v +imperials@p +imperil@t +imperiled@t +imperiling@t +imperilled@t +imperilling@t +imperils@t +imperious@A +imperiously@v +imperiousness@N +imperishable@A +impermanence@N +impermanent@A +impermeable@A +impermissible@A +impersonal@A +impersonally@v +impersonate@t +impersonated@V +impersonates@t +impersonating@V +impersonation@N +impersonations@p +impersonator@N +impersonators@p +impertinence@N +impertinences@p +impertinent@A +impertinently@v +imperturbability@N +imperturbable@A +imperturbably@v +impervious@A +impetigo@N +impetuosity@N +impetuous@A +impetuously@v +impetuousness@N +impetus@N +impetuses@p +impieties@p +impiety@N +impinge@i +impinged@V +impingement@N +impinges@i +impinging@V +impious@A +impiously@v +impiousness@N +impish@A +impishly@v +impishness@N +implacability@N +implacable@A +implacably@v +implant@VtN +implantation@N +implanted@VtA +implanting@VtA +implants@Vtp +implausibilities@p +implausibility@N +implausible@A +implausibly@v +implement@NVt +implementable@? +implementation@N +implementations@p +implemented@AVt +implementer@N +implementing@AVt +implements@pVt +implicate@t +implicated@t +implicates@t +implicating@t +implication@N +implications@p +implicit@A +implicitly@v +implied@A +implies@? +implode@Vt +imploded@V +implodes@Vt +imploding@V +implore@t +implored@V +implores@t +imploring@V +imploringly@v +implosion@N +implosions@p +imply@V +implying@t +impolite@A +impolitely@v +impoliteness@N +impolitenesses@? +impolitic@A +imponderable@AN +imponderables@p +import@VtN +importance@N +important@A +importantly@v +importation@N +importations@p +imported@VtA +importer@N +importers@p +importing@VtA +imports@Vtp +importunate@A +importune@t +importuned@V +importunes@t +importuning@V +importunity@N +impose@Vit +imposed@V +imposes@Vit +imposing@A +imposingly@v +imposition@N +impositions@p +impossibilities@p +impossibility@N +impossible@A +impossibles@p +impossibly@v +imposter@N +imposters@p +impostor@N +impostors@p +imposture@N +impostures@p +impotence@N +impotent@A +impotently@v +impound@t +impounded@t +impounding@t +impounds@t +impoverish@t +impoverished@A +impoverishes@? +impoverishing@t +impoverishment@N +impracticability@N +impracticable@A +impracticably@v +impractical@A +impracticality@N +imprecation@N +imprecations@p +imprecise@A +imprecisely@v +imprecision@N +impregnability@N +impregnable@A +impregnably@v +impregnate@VtA +impregnated@V +impregnates@Vtp +impregnating@V +impregnation@N +impresario@N +impresarios@p +impress@VtN +impressed@V +impresses@? +impressing@VtA +impression@N +impressionable@A +impressionism@N +impressionist@NA +impressionistic@A +impressionists@p +impressions@p +impressive@A +impressively@v +impressiveness@N +imprimatur@N +imprimaturs@p +imprint@NV +imprinted@AV +imprinting@N +imprints@pV +imprison@t +imprisoned@t +imprisoning@t +imprisonment@N +imprisonments@p +imprisons@t +improbabilities@p +improbability@N +improbable@A +improbably@v +impromptu@AvN +impromptus@pv +improper@A +improperly@v +improprieties@p +impropriety@N +improvable@A +improve@VtiN +improved@V +improvement@N +improvements@p +improves@Vtip +improvidence@N +improvident@A +improvidently@v +improving@V +improvisation@N +improvisations@p +improvise@V +improvised@V +improvises@V +improvising@V +imprudence@N +imprudent@A +imprudently@v +imps@p +impudence@N +impudent@A +impudently@v +impugn@t +impugned@t +impugning@t +impugns@t +impulse@N +impulsed@A +impulses@p +impulsing@A +impulsion@N +impulsive@A +impulsively@v +impulsiveness@N +impunity@N +impure@A +impurely@v +impurer@? +impurest@? +impurities@p +impurity@N +imputation@N +imputations@p +impute@t +imputed@t +imputes@t +imputing@t +in@N +inabilities@? +inability@N +inaccessibility@N +inaccessible@A +inaccuracies@p +inaccuracy@N +inaccurate@A +inaccurately@v +inaction@N +inactive@A +inactivity@N +inadequacies@? +inadequacy@N +inadequate@A +inadequately@v +inadmissible@A +inadvertence@N +inadvertent@A +inadvertently@v +inadvisable@A +inalienable@A +inamorata@N +inamoratas@p +inane@AN +inanely@v +inaner@? +inanest@? +inanimate@A +inanities@p +inanity@N +inapplicable@A +inappropriate@A +inappropriately@v +inappropriateness@N +inapt@A +inarticulacy@? +inarticulate@A +inarticulately@v +inarticulateness@N +inasmuch@? +inattention@N +inattentive@A +inattentively@v +inaudibility@N +inaudible@A +inaudibly@v +inaugural@AN +inaugurals@p +inaugurate@t +inaugurated@t +inaugurates@t +inaugurating@t +inauguration@N +inaugurations@p +inauspicious@A +inauspiciously@v +inboard@Av +inboards@pv +inborn@A +inbound@A +inbred@A +inbreed@VAt +inbreeding@N +inbreeds@Vpt +inbuilt@? +inc@N +inca@N +incalculable@A +incalculably@v +incandescence@N +incandescent@A +incantation@N +incantations@p +incapability@N +incapable@A +incapacitate@t +incapacitated@t +incapacitates@t +incapacitating@t +incapacity@N +incarcerate@VtA +incarcerated@V +incarcerates@Vtp +incarcerating@V +incarceration@N +incarcerations@p +incarnate@AVt +incarnated@V +incarnates@pVt +incarnating@V +incarnation@N +incarnations@p +incas@p +incautious@A +incautiously@v +inced@A +incendiaries@p +incendiary@AN +incense@NVt +incensed@Vt +incenses@pVt +incensing@Vt +incentive@NA +incentives@p +inception@N +inceptions@p +incessant@A +incessantly@v +incest@N +incestuous@A +incestuously@v +incestuousness@N +inch@NV +inched@AV +inches@? +inching@AV +inchoate@AVt +inchon@N +incidence@N +incidences@p +incident@N +incidental@AN +incidentally@v +incidentals@p +incidents@p +incinerate@V +incinerated@t +incinerates@V +incinerating@t +incineration@N +incinerator@N +incinerators@p +incing@A +incipient@A +incise@t +incised@A +incises@t +incising@t +incision@N +incisions@p +incisive@A +incisively@v +incisiveness@N +incisor@N +incisors@p +incite@t +incited@t +incitement@N +incitements@p +incites@t +inciting@t +incivilities@p +incivility@N +inclemency@N +inclement@A +inclination@N +inclinations@p +incline@VN +inclined@V +inclines@Vp +inclining@N +inclose@V +inclosed@t +incloses@V +inclosing@t +inclosure@N +inclosures@p +include@t +included@A +includes@t +including@t +inclusion@N +inclusions@p +inclusive@A +inclusively@v +incognito@N +incognitos@p +incoherence@N +incoherent@A +incoherently@v +incombustible@AN +income@N +incomer@N +incomers@p +incomes@p +incoming@AN +incommensurate@A +incommunicado@v +incomparable@A +incomparably@v +incompatibilities@? +incompatibility@N +incompatible@AN +incompatibles@p +incompatibly@v +incompetence@N +incompetent@AN +incompetently@v +incompetents@p +incomplete@A +incompletely@v +incompleteness@N +incomprehensibility@N +incomprehensible@A +incomprehensibly@v +incomprehension@N +inconceivable@A +inconceivably@v +inconclusive@A +inconclusively@v +incongruities@p +incongruity@N +incongruous@A +incongruously@v +inconsequential@A +inconsequentially@v +inconsiderable@A +inconsiderate@A +inconsiderately@v +inconsiderateness@N +inconsistencies@p +inconsistency@N +inconsistent@A +inconsistently@v +inconsolable@A +inconsolably@v +inconspicuous@A +inconspicuously@v +inconspicuousness@N +inconstancy@N +inconstant@A +incontestable@A +incontestably@v +incontinence@N +incontinent@Av +incontrovertible@A +incontrovertibly@v +inconvenience@Nt +inconvenienced@V +inconveniences@pt +inconveniencing@V +inconvenient@A +inconveniently@v +incorporate@VA +incorporated@A +incorporates@Vp +incorporating@A +incorporation@N +incorporeal@A +incorrect@A +incorrectly@v +incorrectness@N +incorrigibility@N +incorrigible@AN +incorrigibly@v +incorruptibility@N +incorruptible@A +incorruptibly@v +increase@VN +increased@V +increases@Vp +increasing@A +increasingly@v +incredibility@N +incredible@A +incredibly@v +incredulity@N +incredulous@A +incredulously@v +increment@N +incremental@A +incrementally@? +incremented@A +increments@p +incriminate@t +incriminated@t +incriminates@t +incriminating@t +incrimination@N +incriminatory@A +incrust@VA +incrustation@N +incrustations@p +incrusted@VA +incrusting@VA +incrusts@Vp +incs@p +incubate@Vi +incubated@V +incubates@Vi +incubating@V +incubation@N +incubator@N +incubators@p +incubi@p +incubus@N +incubuses@? +inculcate@t +inculcated@t +inculcates@t +inculcating@t +inculcation@N +inculpate@t +inculpated@t +inculpates@t +inculpating@t +incumbencies@p +incumbency@N +incumbent@AN +incumbents@p +incur@V +incurable@AN +incurables@p +incurably@v +incurious@A +incurred@t +incurring@t +incurs@V +incursion@N +incursions@p +ind@N +indebted@A +indebtedness@N +indecencies@p +indecency@N +indecent@A +indecently@v +indecipherable@A +indecision@N +indecisive@A +indecisively@v +indecisiveness@N +indecorous@A +indecorously@v +indeed@v! +indefatigable@A +indefatigably@v +indefensible@A +indefensibly@v +indefinable@A +indefinably@v +indefinite@A +indefinitely@v +indelible@A +indelibly@v +indelicacies@p +indelicacy@N +indelicate@A +indelicately@v +indemnification@N +indemnifications@p +indemnified@t +indemnifies@? +indemnify@V +indemnifying@t +indemnities@p +indemnity@N +indent@VNt +indentation@N +indentations@p +indented@A +indenting@VAt +indents@Vpt +indenture@Nit +indentured@V +indentures@pit +indenturing@V +independence@N +independent@AN +independently@v +independents@p +indescribable@A +indescribably@v +indestructibility@N +indestructible@A +indestructibly@v +indeterminable@A +indeterminacy@N +indeterminate@A +indeterminately@v +index@Nt +indexation@? +indexations@p +indexed@At +indexes@? +indexing@At +india@N +indian@NA +indiana@N +indianan@? +indianans@p +indianapolis@N +indians@p +indicate@t +indicated@t +indicates@t +indicating@t +indication@N +indications@p +indicative@AN +indicatives@p +indicator@N +indicators@p +indices@N +indict@t +indictable@A +indicted@t +indicting@t +indictment@N +indictments@p +indicts@t +indie@? +indies@N +indifference@N +indifferent@A +indifferently@v +indigence@N +indigenous@A +indigent@AN +indigents@p +indigestible@A +indigestion@N +indignant@A +indignantly@v +indignation@N +indignities@p +indignity@N +indigo@N +indirect@A +indirection@N +indirectly@v +indirectness@N +indiscernible@A +indiscipline@N +indiscreet@A +indiscreetly@v +indiscretion@N +indiscretions@p +indiscriminate@A +indiscriminately@v +indispensability@N +indispensable@AN +indispensables@p +indispensably@v +indisposed@A +indisposition@N +indispositions@p +indisputable@A +indisputably@v +indissolubility@N +indissoluble@A +indissolubly@v +indistinct@A +indistinctly@v +indistinctness@N +indistinguishable@A +individual@AN +individualise@t +individualised@t +individualises@t +individualising@t +individualism@N +individualist@N +individualistic@A +individualistically@v +individualists@p +individuality@N +individualize@t +individualized@t +individualizes@t +individualizing@t +individually@v +individuals@p +indivisibility@N +indivisible@A +indivisibly@v +indochina@N +indochinese@AN +indoctrinate@t +indoctrinated@t +indoctrinates@t +indoctrinating@t +indoctrination@N +indolence@N +indolent@A +indolently@v +indomitable@A +indomitably@v +indonesia@N +indonesian@AN +indonesians@p +indoor@A +indoors@v +indore@N +indorse@V +indorsed@t +indorsement@N +indorsements@p +indorses@V +indorsing@t +indra@N +indubitable@A +indubitably@v +induce@t +induced@t +inducement@N +inducements@p +induces@t +inducing@t +induct@t +inductance@N +inducted@t +inductee@N +inductees@p +inducting@t +induction@N +inductions@p +inductive@A +inductively@v +inducts@t +indue@V +indued@t +indues@V +induing@t +indulge@Vti +indulged@V +indulgence@Nt +indulgences@pt +indulgent@A +indulgently@v +indulges@Vti +indulging@V +indus@N +industrial@A +industrialisation@N +industrialise@t +industrialised@t +industrialises@t +industrialising@t +industrialism@N +industrialist@N +industrialists@p +industrialization@N +industrialize@ti +industrialized@V +industrializes@ti +industrializing@V +industrially@v +industries@p +industrious@A +industriously@v +industriousness@N +industry@N +inebriate@VNA +inebriated@V +inebriates@Vp +inebriating@V +inebriation@N +inedible@A +ineducable@A +ineffable@A +ineffably@v +ineffective@A +ineffectively@v +ineffectiveness@N +ineffectual@A +ineffectually@v +inefficiencies@p +inefficiency@N +inefficient@A +inefficiently@v +inelastic@A +inelegance@N +inelegant@A +inelegantly@v +ineligibility@N +ineligible@AN +ineligibles@p +ineluctable@A +ineluctably@v +inept@A +ineptitude@N +ineptly@v +ineptness@N +inequalities@p +inequality@N +inequitable@A +inequities@p +inequity@N +ineradicable@A +inert@A +inertia@N +inertial@A +inertly@v +inertness@N +ines@N +inescapable@A +inescapably@v +inessential@AN +inessentials@p +inestimable@A +inestimably@v +inevitability@N +inevitable@AN +inevitably@v +inexact@A +inexcusable@A +inexcusably@v +inexhaustible@A +inexhaustibly@v +inexorability@N +inexorable@A +inexorably@v +inexpedient@A +inexpensive@A +inexpensively@v +inexperience@N +inexperienced@A +inexpert@A +inexpertly@v +inexplicable@A +inexplicably@v +inexpressible@A +inexpressibly@v +inexpressive@A +inextinguishable@A +inextricable@A +inextricably@v +infallibility@N +infallible@AN +infallibly@v +infamies@p +infamous@A +infamously@v +infamy@N +infancy@N +infant@NA +infanticide@N +infanticides@p +infantile@A +infantries@p +infantry@N +infantryman@N +infantrymen@p +infants@p +infarction@N +infatuate@VtAN +infatuated@A +infatuates@Vtp +infatuating@V +infatuation@N +infatuations@p +infect@VA +infected@VA +infecting@VA +infection@N +infections@p +infectious@A +infectiously@v +infectiousness@N +infects@Vp +infelicities@p +infelicitous@A +infelicity@N +infer@Vt +inference@N +inferences@p +inferential@A +inferior@AN +inferiority@N +inferiors@p +infernal@A +inferno@N +infernos@p +inferred@V +inferring@V +infers@Vt +infertile@A +infertility@N +infest@t +infestation@N +infestations@p +infested@t +infesting@t +infests@t +infidel@NA +infidelities@p +infidelity@N +infidels@p +infield@N +infielder@N +infielders@p +infields@p +infighting@N +infill@N +infilled@A +infilling@A +infills@p +infiltrate@VN +infiltrated@V +infiltrates@Vp +infiltrating@V +infiltration@N +infiltrator@N +infiltrators@p +infinite@A +infinitely@v +infinitesimal@AN +infinitesimally@v +infinitesimals@p +infinities@p +infinitive@N +infinitives@p +infinitude@N +infinity@N +infirm@A +infirmaries@p +infirmary@N +infirmities@p +infirmity@N +infix@VtN +inflame@Vt +inflamed@V +inflames@Vt +inflaming@V +inflammable@AN +inflammation@N +inflammations@p +inflammatory@A +inflatable@NA +inflatables@p +inflate@Vti +inflated@A +inflates@Vti +inflating@V +inflation@N +inflationary@A +inflect@Vt +inflected@Vt +inflecting@Vt +inflection@N +inflectional@A +inflections@p +inflects@Vt +inflexibility@N +inflexible@A +inflexibly@v +inflexion@N +inflexions@p +inflict@t +inflicted@t +inflicting@t +infliction@N +inflicts@t +inflorescence@N +inflow@N +inflows@p +influence@Nt +influenced@V +influences@pt +influencing@V +influential@A +influentially@v +influenza@N +influx@N +influxes@? +info@N +infomercial@? +infomercials@p +inform@tiA +informal@A +informality@N +informally@v +informant@N +informants@p +information@N +informational@A +informative@A +informed@A +informer@N +informers@p +informing@tiA +informs@tip +infotainment@? +infraction@N +infractions@p +infrared@NA +infrastructural@? +infrastructure@N +infrastructures@p +infrequency@N +infrequent@A +infrequently@v +infringe@ti +infringed@V +infringement@N +infringements@p +infringes@ti +infringing@V +infuriate@VtA +infuriated@V +infuriates@Vtp +infuriating@V +infuriatingly@v +infuse@t +infused@V +infuses@t +infusing@V +infusion@N +infusions@p +inge@N +ingenious@A +ingeniously@v +ingenuity@N +ingenuous@A +ingenuously@v +ingenuousness@N +ingest@t +ingested@t +ingesting@t +ingestion@N +ingests@t +inglenook@N +inglenooks@p +inglewood@N +inglorious@A +ingloriously@v +ingot@Nt +ingots@pt +ingrain@VtAN +ingrained@A +ingraining@VtA +ingrains@Vtp +ingrate@NA +ingrates@p +ingratiate@t +ingratiated@t +ingratiates@t +ingratiating@A +ingratiatingly@v +ingratitude@N +ingredient@N +ingredients@p +ingres@N +ingress@N +ingresses@? +ingrowing@A +ingrown@A +inhabit@ti +inhabitable@A +inhabitant@N +inhabitants@p +inhabited@A +inhabiting@ti +inhabits@ti +inhalant@AN +inhalants@p +inhalation@N +inhalations@p +inhalator@N +inhalators@p +inhale@V +inhaled@V +inhaler@N +inhalers@p +inhales@V +inhaling@V +inhere@i +inhered@i +inherent@A +inherently@v +inheres@i +inhering@i +inherit@Vit +inheritance@N +inheritances@p +inherited@A +inheriting@Vit +inheritor@N +inheritors@p +inherits@Vit +inhibit@t +inhibited@t +inhibiting@t +inhibition@N +inhibitions@p +inhibits@t +inhospitable@A +inhuman@A +inhumane@A +inhumanely@v +inhumanities@p +inhumanity@N +inhumanly@v +inimical@A +inimically@v +inimitable@A +inimitably@v +iniquities@p +iniquitous@A +iniquity@N +initial@ANV +initialed@AV +initialing@AV +initialisation@? +initialise@? +initialised@? +initialises@? +initialising@? +initialization@? +initialize@t +initialized@t +initializes@t +initializing@t +initialled@? +initialling@V +initially@v +initials@pV +initiate@VtAN +initiated@V +initiates@Vtp +initiating@V +initiation@N +initiations@p +initiative@NA +initiatives@p +initiator@N +initiators@p +inject@t +injected@t +injecting@t +injection@N +injections@p +injector@N +injectors@p +injects@t +injudicious@A +injudiciously@v +injunction@N +injunctions@p +injure@t +injured@A +injures@t +injuries@p +injuring@t +injurious@A +injury@N +injustice@N +injustices@p +ink@Nt +inkblot@N +inkblots@p +inked@At +inkier@A +inkiest@A +inkiness@N +inking@At +inkling@N +inklings@p +inks@pt +inkstand@N +inkstands@p +inkwell@N +inkwells@p +inky@A +inlaid@A +inland@ANv +inlay@VtN +inlaying@V +inlays@Vtp +inlet@NVt +inlets@pVt +inline@N +inmate@N +inmates@p +inmost@A +inn@N +innards@p +innate@A +innately@v +inner@AN +innermost@A +inning@N +innings@N +innit@? +innkeeper@N +innkeepers@p +innocence@N +innocent@AN +innocently@v +innocents@p +innocuous@A +innocuously@v +innocuousness@N +innovate@V +innovated@V +innovates@V +innovating@V +innovation@N +innovations@p +innovative@A +innovator@N +innovators@p +innovatory@A +inns@p +innuendo@N +innuendoes@p +innuendos@p +innumerable@A +innumeracy@? +innumerate@AN +inoculate@Vt +inoculated@V +inoculates@Vt +inoculating@V +inoculation@N +inoculations@p +inoffensive@A +inoffensively@v +inoperable@A +inoperative@A +inopportune@A +inopportunely@v +inordinate@A +inordinately@v +inorganic@A +inpatient@N +inpatients@p +input@Nt +inputs@pt +inputted@V +inputting@V +inquest@N +inquests@p +inquietude@N +inquire@i +inquired@V +inquirer@N +inquirers@p +inquires@i +inquiries@p +inquiring@A +inquiringly@v +inquiry@N +inquisition@N +inquisitions@p +inquisitive@A +inquisitively@v +inquisitiveness@N +inquisitor@N +inquisitorial@A +inquisitors@p +inquorate@? +inroad@N +inroads@p +ins@N +insalubrious@A +insane@A +insanely@v +insaner@? +insanest@? +insanitary@A +insanity@N +insatiable@A +insatiably@v +inscribe@t +inscribed@t +inscribes@t +inscribing@t +inscription@N +inscriptions@p +inscrutability@N +inscrutable@A +inscrutably@v +inseam@? +inseams@p +insect@N +insecticidal@A +insecticide@N +insecticides@p +insectivore@N +insectivores@p +insectivorous@A +insects@p +insecure@A +insecurely@v +insecurities@p +insecurity@N +inseminate@t +inseminated@t +inseminates@t +inseminating@t +insemination@N +insensate@A +insensibility@N +insensible@A +insensibly@v +insensitive@A +insensitively@? +insensitivity@N +insentience@N +insentient@A +inseparability@N +inseparable@A +inseparables@p +inseparably@v +insert@VtN +inserted@A +inserting@VtA +insertion@N +insertions@p +inserts@Vtp +inset@VtN +insets@Vtp +insetted@? +insetting@V +inshore@Av +inside@NPAv +insider@N +insiders@p +insides@A +insidious@A +insidiously@v +insidiousness@N +insight@N +insightful@A +insights@p +insigne@N +insignes@p +insignia@N +insignias@p +insignificance@N +insignificant@A +insignificantly@v +insincere@A +insincerely@v +insincerity@N +insinuate@Vt +insinuated@V +insinuates@Vt +insinuating@A +insinuation@N +insinuations@p +insipid@A +insipidity@N +insipidly@v +insipidness@N +insist@V +insisted@V +insistence@N +insistent@A +insistently@v +insisting@V +insists@V +insofar@v +insole@N +insolence@N +insolent@A +insolently@v +insoles@p +insolubility@N +insoluble@A +insolvable@A +insolvencies@? +insolvency@N +insolvent@AN +insolvents@p +insomnia@N +insomniac@AN +insomniacs@p +insouciance@N +insouciant@A +inspect@t +inspected@t +inspecting@t +inspection@N +inspections@p +inspector@N +inspectorate@N +inspectorates@p +inspectors@p +inspects@t +inspiration@N +inspirational@A +inspirations@p +inspire@Vt +inspired@V +inspires@Vt +inspiring@V +instabilities@? +instability@N +instal@t +install@V +installation@N +installations@p +installed@t +installing@t +installment@N +installments@p +installs@V +instalment@N +instalments@p +instals@t +instance@Nt +instanced@V +instances@pt +instancing@V +instant@NAv +instantaneous@A +instantaneously@v +instantly@v +instants@pv +instead@v +instep@N +insteps@p +instigate@t +instigated@t +instigates@t +instigating@t +instigation@N +instigator@N +instigators@p +instil@t +instill@t +instilled@t +instilling@t +instills@t +instils@t +instinct@N +instinctive@A +instinctively@v +instincts@p +instinctual@? +institute@tN +instituted@V +institutes@N +instituting@V +institution@N +institutional@A +institutionalisation@N +institutionalise@t +institutionalised@t +institutionalises@t +institutionalising@t +institutionalization@N +institutionalize@t +institutionalized@t +institutionalizes@t +institutionalizing@t +institutions@p +instruct@t +instructed@t +instructing@t +instruction@N +instructional@A +instructions@p +instructive@A +instructively@v +instructor@N +instructors@p +instructs@t +instrument@NV +instrumental@AN +instrumentalist@NA +instrumentalists@p +instrumentality@N +instrumentals@p +instrumentation@N +instrumented@AV +instrumenting@AV +instruments@pV +insubordinate@AN +insubordination@N +insubstantial@A +insufferable@A +insufferably@v +insufficiency@N +insufficient@A +insufficiently@v +insular@AN +insularity@N +insulate@t +insulated@t +insulates@t +insulating@t +insulation@N +insulator@N +insulators@p +insulin@N +insult@VtN +insulted@VtA +insulting@A +insultingly@v +insults@Vtp +insuperable@A +insuperably@v +insupportable@A +insurance@N +insurances@p +insure@V +insured@AN +insureds@p +insurer@N +insurers@p +insures@V +insurgence@N +insurgences@p +insurgencies@? +insurgency@N +insurgent@AN +insurgents@p +insuring@V +insurmountable@A +insurrection@NA +insurrectionist@N +insurrectionists@p +insurrections@p +int@N +intact@A +intagli@p +intaglio@N +intaglios@p +intake@N +intakes@p +intangible@AN +intangibles@p +intangibly@v +integer@N +integers@p +integral@AN +integrally@v +integrals@p +integrate@VtA +integrated@V +integrates@Vtp +integrating@V +integration@N +integrator@N +integrity@N +integument@N +integuments@p +intellect@N +intellects@p +intellectual@AN +intellectualise@ti +intellectualised@ti +intellectualises@ti +intellectualising@ti +intellectualism@NA +intellectualize@V +intellectualized@V +intellectualizes@V +intellectualizing@V +intellectually@v +intellectuals@p +intelligence@N +intelligent@A +intelligently@v +intelligentsia@N +intelligibility@N +intelligible@A +intelligibly@v +intelsat@N +intemperance@N +intemperate@A +intemperately@v +intend@Vt +intended@AN +intendeds@p +intending@Vt +intends@Vt +intense@A +intensely@v +intenser@? +intensest@? +intensification@N +intensified@V +intensifier@N +intensifiers@p +intensifies@? +intensify@Vt +intensifying@V +intensities@p +intensity@N +intensive@AN +intensively@v +intensives@p +intent@NA +intention@N +intentional@A +intentionally@v +intentions@p +intently@v +intentness@N +intents@p +inter@V +interact@i +interacted@i +interacting@i +interaction@N +interactions@p +interactive@A +interactively@? +interactivity@? +interacts@i +interbred@? +interbreed@V +interbreeding@V +interbreeds@V +intercede@i +interceded@t +intercedes@i +interceding@t +intercept@VtN +intercepted@VtA +intercepting@VtA +interception@N +interceptions@p +interceptor@N +interceptors@p +intercepts@Vtp +intercession@N +intercessions@p +intercessor@N +intercessors@p +interchange@VN +interchangeability@N +interchangeable@A +interchangeably@v +interchanged@V +interchanges@Vp +interchanging@V +intercity@A +intercollegiate@A +intercom@N +intercommunication@N +intercoms@p +interconnect@? +interconnected@? +interconnecting@? +interconnection@N +interconnections@p +interconnects@p +intercontinental@A +intercourse@N +interdenominational@A +interdepartmental@A +interdependence@N +interdependent@A +interdict@NVt +interdicted@AVt +interdicting@AVt +interdiction@N +interdicts@pVt +interdisciplinary@A +interest@Nt +interested@A +interesting@A +interestingly@v +interests@pt +interface@N +interfaced@V +interfaces@p +interfacing@N +interfaith@A +interfere@i +interfered@i +interference@N +interferes@i +interfering@i +interferon@N +intergalactic@A +intergovernmental@A +interim@ANv +interior@N +interiors@p +interj@? +interject@t +interjected@t +interjecting@t +interjection@N +interjections@p +interjects@t +interlace@Vt +interlaced@V +interlaces@Vt +interlacing@V +interlard@t +interlarded@t +interlarding@t +interlards@t +interleave@t +interleaved@t +interleaves@p +interleaving@t +interleukin@? +interlink@tN +interlinked@tA +interlinking@tA +interlinks@tp +interlock@VN +interlocked@VA +interlocking@VA +interlocks@Vp +interlocutor@N +interlocutors@p +interlocutory@A +interloper@N +interlopers@p +interlude@N +interluded@A +interludes@p +interluding@A +intermarriage@N +intermarriages@p +intermarried@i +intermarries@? +intermarry@V +intermarrying@i +intermediaries@p +intermediary@NA +intermediate@ANVi +intermediates@pVi +interment@N +interments@p +intermezzi@p +intermezzo@N +intermezzos@p +interminable@A +interminably@v +intermingle@ti +intermingled@ti +intermingles@ti +intermingling@ti +intermission@N +intermissions@p +intermittent@A +intermittently@v +intern@VtiNA +internal@AN +internalisation@? +internalise@? +internalised@? +internalises@? +internalising@? +internalization@N +internalize@t +internalized@t +internalizes@t +internalizing@t +internally@v +internals@p +international@AN +internationale@N +internationalisation@N +internationalise@t +internationalised@t +internationalises@t +internationalising@t +internationalism@N +internationalist@N +internationalists@p +internationalization@N +internationalize@t +internationalized@t +internationalizes@t +internationalizing@t +internationally@v +internationals@p +interne@N +internecine@A +interned@VtiA +internee@N +internees@p +internement@? +internes@p +interneship@? +interneships@p +internet@? +internets@p +interning@VtiA +internist@N +internists@p +internment@N +interns@Vtip +internship@N +internships@p +interoffice@A +interpenetrate@V +interpenetrated@V +interpenetrates@V +interpenetrating@V +interpenetration@N +interpersonal@A +interplanetary@A +interplay@N +interpol@N +interpolate@Vi +interpolated@V +interpolates@Vi +interpolating@V +interpolation@N +interpolations@p +interpose@V +interposed@V +interposes@V +interposing@V +interposition@N +interpret@Vi +interpretation@N +interpretations@p +interpretative@A +interpreted@Vi +interpreter@N +interpreters@p +interpreting@Vi +interpretive@A +interprets@Vi +interracial@A +interred@t +interregna@? +interregnum@N +interregnums@p +interrelate@V +interrelated@A +interrelates@V +interrelating@ti +interrelation@N +interrelations@p +interrelationship@N +interrelationships@p +interring@t +interrogate@V +interrogated@V +interrogates@V +interrogating@V +interrogation@N +interrogations@p +interrogative@AN +interrogatives@p +interrogator@N +interrogatories@p +interrogators@p +interrogatory@AN +interrupt@VtN +interrupted@A +interrupting@VtA +interruption@N +interruptions@p +interrupts@Vtp +inters@V +interscholastic@A +intersect@V +intersected@V +intersecting@V +intersection@N +intersections@p +intersects@V +intersperse@t +interspersed@t +intersperses@t +interspersing@t +interstate@Av +interstates@pv +interstellar@A +interstice@N +interstices@p +intertwine@VNv +intertwined@ti +intertwines@Vpv +intertwining@ti +interurban@AN +interval@N +intervals@p +intervene@i +intervened@i +intervenes@i +intervening@i +intervention@N +interventionism@N +interventionist@AN +interventionists@p +interventions@p +interview@NV +interviewed@AV +interviewee@N +interviewees@p +interviewer@N +interviewers@p +interviewing@AV +interviews@pV +interwar@i +interweave@tiN +interweaved@V +interweaves@tip +interweaving@V +interwove@V +interwoven@V +intestate@AN +intestinal@A +intestine@N +intestines@p +intimacies@p +intimacy@N +intimate@At +intimated@t +intimately@v +intimates@pt +intimating@t +intimation@N +intimations@p +intimidate@t +intimidated@t +intimidates@t +intimidating@t +intimidation@N +into@P +intolerable@A +intolerably@v +intolerance@N +intolerant@A +intolerantly@v +intonation@N +intonations@p +intone@V +intoned@V +intones@V +intoning@V +intoxicant@NA +intoxicants@p +intoxicate@t +intoxicated@A +intoxicates@t +intoxicating@V +intoxication@N +intractability@N +intractable@A +intractably@v +intramural@A +intranet@? +intranets@p +intransigence@N +intransigent@AN +intransigently@v +intransigents@p +intransitive@A +intransitively@v +intransitives@p +intrauterine@A +intravenous@A +intravenouses@? +intravenously@v +intrench@V +intrenched@V +intrenches@? +intrenching@V +intrenchment@N +intrepid@A +intrepidly@v +intricacies@p +intricacy@N +intricate@A +intricately@v +intrigue@VtiN +intrigued@V +intrigues@Vtip +intriguing@V +intriguingly@v +intrinsic@A +intrinsically@v +intro@N +introduce@t +introduced@t +introduces@t +introducing@t +introduction@N +introductions@p +introductory@A +intros@p +introspection@N +introspective@A +introspectively@v +introversion@N +introvert@NAVt +introverted@AVt +introverts@pVt +intrude@V +intruded@V +intruder@N +intruders@p +intrudes@V +intruding@V +intrusion@N +intrusions@p +intrusive@A +intrust@V +intrusted@V +intrusting@V +intrusts@V +intuit@V +intuited@V +intuiting@V +intuition@N +intuitions@p +intuitive@A +intuitively@v +intuits@V +inuit@N +inuits@p +inundate@t +inundated@t +inundates@t +inundating@t +inundation@N +inundations@p +inure@ti +inured@V +inures@ti +inuring@V +invade@Vt +invaded@V +invader@N +invaders@p +invades@Vt +invading@V +invalid@NAt +invalidate@t +invalidated@t +invalidates@t +invalidating@t +invalidation@N +invalided@At +invaliding@At +invalidity@N +invalids@pt +invaluable@A +invar@N +invariable@AN +invariables@p +invariably@v +invariant@NA +invasion@N +invasions@p +invasive@A +invective@NA +inveigh@i +inveighed@i +inveighing@i +inveighs@i +inveigle@t +inveigled@t +inveigles@t +inveigling@t +invent@V +invented@V +inventing@V +invention@N +inventions@p +inventive@A +inventively@v +inventiveness@N +inventor@N +inventoried@p +inventories@p +inventors@p +inventory@Nt +inventorying@p +invents@V +inverse@AN +inversely@v +inverses@p +inversion@N +inversions@p +invert@VtN +invertebrate@NA +invertebrates@p +inverted@VtA +inverting@VtA +inverts@Vtp +invest@Vti +invested@Vti +investigate@V +investigated@V +investigates@V +investigating@V +investigation@N +investigations@p +investigative@A +investigator@N +investigators@p +investigatory@A +investing@Vti +investiture@N +investitures@p +investment@N +investments@p +investor@N +investors@p +invests@Vti +inveterate@A +invidious@A +invidiously@v +invidiousness@N +invigilate@i +invigilated@i +invigilates@i +invigilating@i +invigilation@N +invigilator@N +invigilators@p +invigorate@t +invigorated@t +invigorates@t +invigorating@t +invigoration@N +invincibility@N +invincible@A +invincibly@v +inviolability@N +inviolable@A +inviolate@A +invisibility@N +invisible@AN +invisibly@v +invitation@N +invitational@A +invitationals@p +invitations@p +invite@VtN +invited@V +invites@Vtp +inviting@A +invitingly@v +invocation@N +invocations@p +invoice@Nt +invoiced@V +invoices@pt +invoicing@V +invoke@t +invoked@t +invokes@t +invoking@t +involuntarily@v +involuntary@A +involve@t +involved@A +involvement@N +involvements@p +involves@t +involving@t +invulnerability@N +invulnerable@A +invulnerably@v +inward@AvN +inwardly@v +inwards@vp +io@N +ioctl@? +iodine@N +iodise@? +iodised@? +iodises@? +iodising@? +iodize@tN +iodized@t +iodizes@tp +iodizing@t +ion@N +ionesco@N +ionian@NA +ionic@A +ionics@p +ionisation@N +ionise@ti +ionised@ti +ioniser@N +ionisers@p +ionises@ti +ionising@ti +ionization@N +ionize@V +ionized@V +ionizer@N +ionizers@p +ionizes@V +ionizing@V +ionosphere@N +ionospheres@p +ions@p +iota@N +iotas@p +iou@N +iowa@N +iowan@? +iowans@p +iowas@p +ipa@N +ipad@? +ipecac@N +ipecacs@p +iphigenia@N +iphone@? +iq@N +iqbal@N +iquitos@N +ir@N +ira@N +iran@N +iranian@NA +iranians@p +iraq@N +iraqi@NA +iraqis@p +iras@p +irascibility@N +irascible@A +irascibly@v +irate@A +irately@v +irateness@? +ire@N +ireland@N +irene@N +iridescence@N +iridescent@A +iridium@N +iris@N +irises@? +irish@AN +irishman@N +irishmen@p +irishwoman@N +irishwomen@p +irk@t +irked@t +irking@t +irks@t +irksome@A +irkutsk@N +iron@NAVt +ironclad@AN +ironclads@p +ironed@AVt +ironic@A +ironical@A +ironically@v +ironies@p +ironing@N +ironmonger@N +ironmongers@p +ironmongery@N +irons@p +ironstone@N +ironware@N +ironwork@N +irony@NA +iroquoian@NA +iroquois@NA +irradiate@ti +irradiated@V +irradiates@ti +irradiating@V +irradiation@N +irrational@A +irrationality@N +irrationally@v +irrationals@p +irrawaddy@N +irreconcilable@AN +irreconcilably@v +irrecoverable@A +irrecoverably@v +irredeemable@A +irredeemably@v +irreducible@A +irreducibly@v +irrefutable@A +irrefutably@v +irregardless@A +irregular@AN +irregularities@p +irregularity@N +irregularly@v +irregulars@p +irrelevance@N +irrelevances@p +irrelevancies@p +irrelevancy@N +irrelevant@A +irrelevantly@v +irreligious@A +irremediable@A +irremediably@v +irreparable@A +irreparably@v +irreplaceable@A +irrepressible@A +irrepressibly@v +irreproachable@A +irreproachably@v +irresistible@A +irresistibly@v +irresolute@A +irresolutely@v +irresolution@N +irrespective@Av +irresponsibility@N +irresponsible@A +irresponsibly@v +irretrievable@A +irretrievably@v +irreverence@N +irreverent@A +irreverently@v +irreversible@A +irreversibly@v +irrevocable@A +irrevocably@v +irrigate@Vt +irrigated@t +irrigates@Vt +irrigating@t +irrigation@N +irritability@N +irritable@A +irritably@v +irritant@AN +irritants@p +irritate@Vt +irritated@V +irritates@Vt +irritating@V +irritatingly@v +irritation@N +irritations@p +irruption@N +irruptions@p +irs@N +irving@N +is@N +isaac@N +isabella@N +isaiah@N +iscariot@N +isfahan@N +isherwood@N +ishmael@N +ishtar@N +isinglass@N +isis@N +islam@N +islamabad@N +islamic@A +islamism@N +islamist@? +islams@p +island@N +islander@N +islanders@p +islands@p +isle@N +isles@p +islet@N +islets@p +ism@N +isms@p +iso@? +isobar@N +isobars@p +isolate@tA +isolated@V +isolates@tp +isolating@A +isolation@N +isolationism@NA +isolationist@N +isolationists@p +isolde@N +isometric@AN +isometrics@N +isomorphic@A +isosceles@A +isotherm@N +isotherms@p +isotope@N +isotopes@p +isotopic@A +isotropic@A +israel@N +israeli@NA +israelis@p +israelite@N +israels@p +issachar@N +issuance@N +issue@Nti +issued@V +issues@pti +issuing@V +istanbul@N +isthmi@? +isthmus@N +isthmuses@p +it@rN +italian@NA +italians@p +italic@AN +italicise@? +italicised@? +italicises@? +italicising@? +italicize@Vt +italicized@V +italicizes@Vt +italicizing@V +italics@p +italy@N +itch@Ni +itched@Ai +itches@? +itchier@A +itchiest@A +itchiness@N +itching@AN +itchy@A +item@NVtv +itemisation@? +itemise@? +itemised@? +itemises@? +itemising@? +itemization@N +itemize@t +itemized@t +itemizes@t +itemizing@t +items@pVtv +iterate@t +iterated@t +iterates@t +iterating@t +iteration@N +iterations@p +iterative@A +iterator@? +iterators@p +ithaca@NA +ithacan@A +itinerant@AN +itinerants@p +itineraries@p +itinerary@NA +ito@N +its@D +itself@r +iud@N +iv@N +ivan@N +ives@N +ivied@A +ivies@p +ivories@p +ivory@N +ivs@p +ivy@N +iyar@N +izanagi@N +izanami@N +izhevsk@N +izmir@N +jab@VN +jabbed@V +jabber@VN +jabbered@VA +jabberer@N +jabberers@p +jabbering@VA +jabbers@Vp +jabbing@V +jabot@N +jabots@p +jabs@Vp +jack@N +jackal@N +jackals@p +jackass@N +jackasses@? +jackboot@N +jackbooted@A +jackboots@p +jackdaw@N +jackdaws@p +jacked@A +jacket@Nt +jackets@pt +jackhammer@N +jackhammers@p +jacking@A +jackknife@Ni +jackknifed@Ai +jackknifes@pi +jackknifing@Ai +jackknives@p +jackpot@N +jackpots@p +jackrabbit@? +jackrabbits@p +jacks@N +jackson@N +jacksonian@AN +jacksonville@N +jacob@N +jacobean@AN +jacobi@N +jacobin@NA +jacobite@N +jacobs@N +jacquard@N +jacuzzi@? +jade@N +jaded@A +jades@p +jading@V +jag@N +jagged@A +jaggeder@? +jaggedest@? +jaggedly@v +jaggedness@N +jaggies@? +jaggieses@? +jags@p +jaguar@N +jaguars@p +jail@Nt +jailbird@N +jailbirds@p +jailbreak@N +jailbreaks@p +jailed@At +jailer@N +jailers@p +jailhouse@N +jailhouses@p +jailing@At +jailor@? +jailors@p +jails@pt +jain@NA +jainism@NA +jaipur@N +jakarta@N +jalopies@p +jalopy@N +jalousie@N +jalousies@p +jam@N +jamaica@NA +jamaican@AN +jamaicans@p +jamb@N +jamboree@N +jamborees@p +jambs@p +james@N +jamestown@N +jammed@V +jammier@? +jammiest@? +jamming@V +jammy@A +jams@p +jan@N +jane@N +janet@N +jangle@Vt +jangled@V +jangles@Vt +jangling@V +janissary@N +janitor@N +janitorial@A +janitors@p +jansen@N +jansenist@N +januaries@p +january@N +janus@N +japan@N +japanese@AN +japaneses@p +japanned@V +japanning@V +japans@p +jape@NV +japed@V +japes@pV +japing@V +jar@NVi +jargon@Ni +jarlsberg@? +jarred@N +jarring@V +jars@pVi +jasmine@N +jasmines@p +jason@N +jasper@N +jataka@N +jaundice@NV +jaundiced@V +jaundices@pV +jaundicing@V +jaunt@Ni +jaunted@Ai +jauntier@A +jauntiest@A +jauntily@v +jauntiness@N +jaunting@Ai +jaunts@pi +jaunty@A +java@NA +javanese@p +javas@p +javelin@N +javelins@p +jaw@Ni +jawbone@N +jawboned@V +jawbones@p +jawboning@V +jawbreaker@N +jawbreakers@p +jawed@Ai +jawing@Ai +jawline@? +jawlines@? +jaws@p +jaxartes@N +jay@N +jaycee@N +jaycees@p +jays@p +jaywalk@i +jaywalked@i +jaywalker@N +jaywalkers@p +jaywalking@i +jaywalks@i +jazz@Ni +jazzed@Ai +jazzes@? +jazzier@A +jazziest@A +jazzing@Ai +jazzy@A +jealous@A +jealousies@p +jealously@v +jealousy@N +jean@N +jeans@N +jeep@N +jeeps@N +jeer@VN +jeered@VA +jeering@VA +jeeringly@v +jeers@Vp +jeez@! +jefferson@N +jeffersonian@AN +jeffrey@N +jehad@N +jehads@p +jehoshaphat@N +jehovah@N +jejune@A +jell@VN +jelled@VA +jellied@A +jellies@p +jelling@VA +jello@N +jellos@p +jells@Vp +jelly@NV +jellybean@N +jellybeans@p +jellyfish@N +jellyfishes@? +jellying@NV +jemmied@V +jemmies@V +jemmy@N +jemmying@V +jenkins@N +jenner@N +jeopardise@t +jeopardised@t +jeopardises@t +jeopardising@t +jeopardize@Vt +jeopardized@t +jeopardizes@Vt +jeopardizing@t +jeopardy@N +jephthah@N +jeremiad@N +jeremiads@p +jeremiah@N +jeremiahs@p +jericho@N +jerk@VtN +jerked@VtA +jerkier@A +jerkiest@A +jerkily@v +jerkin@N +jerkiness@N +jerking@VtA +jerkins@p +jerks@Vtp +jerkwater@A +jerky@A +jeroboam@N +jeroboams@p +jerome@N +jerry@N +jerrycan@? +jerrycans@p +jersey@N +jerseys@p +jerusalem@N +jessamine@N +jessamines@p +jesse@N +jest@NV +jested@AV +jester@N +jesters@p +jesting@AN +jests@pV +jesuit@N +jesuits@p +jesus@N! +jet@N +jetliner@N +jetliners@p +jets@p +jetsam@N +jetted@NV +jetties@p +jetting@NV +jettison@tN +jettisoned@tA +jettisoning@tA +jettisons@tp +jetty@NA +jetway@? +jew@Nt +jewel@N +jeweled@V +jeweler@N +jewelers@p +jeweling@V +jewelled@V +jeweller@N +jewellers@p +jewellery@N +jewelling@V +jewelries@? +jewelry@N +jewels@p +jewish@AN +jewishness@N +jewry@N +jews@N +jezebel@N +jezebels@p +jib@NV +jibbed@Vit +jibbing@Vit +jibe@Vi +jibed@Vit +jibes@Vi +jibing@Vit +jibs@pV +jidda@N +jiffies@p +jiffy@N +jig@NV +jigged@V +jigger@N +jiggered@A +jiggering@A +jiggers@! +jigging@NV +jiggle@V +jiggled@V +jiggles@V +jiggling@V +jigs@pV +jigsaw@N +jigsawed@V +jigsawing@V +jigsawn@V +jigsaws@p +jihad@N +jihads@p +jilin@? +jill@N +jilt@tN +jilted@tA +jilting@tA +jilts@tp +jimmied@p +jimmies@p +jimmy@N +jimmying@p +jinan@? +jingle@ViN +jingled@V +jingles@Vip +jingling@V +jingoism@NA +jingoist@NA +jingoistic@A +jingoists@p +jink@VN +jinked@VA +jinking@VA +jinks@p +jinn@N +jinnah@N +jinni@N +jinnis@p +jinns@p +jinricksha@? +jinrickshas@p +jinrikisha@N +jinrikishas@p +jinx@N +jinxed@A +jinxes@? +jinxing@A +jitney@N +jitneys@p +jitterbug@NV +jitterbugged@V +jitterbugging@V +jitterbugs@pV +jitterier@? +jitteriest@? +jitters@ip +jittery@A +jiujitsu@N +jivaro@N +jive@Ni +jived@V +jives@pi +jiving@V +joan@N +job@N +jobbed@NVti +jobber@N +jobbers@p +jobbing@NVti +jobless@AN +joblessness@N +jobs@p +jobshare@? +jobshares@? +jobsworth@? +jobsworths@p +jocasta@N +jock@N +jockey@Nt +jockeyed@p +jockeying@p +jockeys@p +jocks@p +jockstrap@N +jockstraps@p +jocose@A +jocosely@v +jocosity@N +jocular@A +jocularity@N +jocularly@v +jocund@A +jocundity@N +jocundly@v +jodhpurs@p +joe@N +joel@N +joey@N +joeys@p +jog@VitN +jogged@V +jogger@N +joggers@p +jogging@V +joggle@VtN +joggled@V +joggles@Vtp +joggling@V +jogs@Vitp +johannesburg@N +john@N +johnnie@N +johnnies@p +johnny@N +johns@N +johnson@N +join@VitN +joined@VitA +joiner@N +joiners@p +joinery@N +joining@VitA +joins@Vitp +joint@NAt +jointed@A +jointing@At +jointly@v +joints@pt +joist@Nt +joists@pt +jojoba@N +joke@Ni +joked@V +joker@N +jokers@p +jokes@pi +jokey@? +jokier@? +jokiest@? +joking@V +jokingly@v +joky@? +joliet@N +jollied@V +jollier@AN +jollies@p +jolliest@A +jollification@N +jollifications@p +jolliness@N +jollity@N +jolly@Avt +jollying@V +jolson@N +jolt@tN +jolted@tA +jolting@tA +jolts@tp +jonah@N +jonahs@p +jonathan@N +jones@N +jonquil@N +jonquils@p +jonson@N +joplin@N +jordan@N +jordanian@? +jordanians@p +joseph@N +josephine@N +josephs@p +josephus@N +josh@N +joshed@A +joshes@? +joshing@A +joshua@N +josiah@N +jostle@VN +jostled@V +jostles@Vp +jostling@V +jot@VN +jots@Vp +jotted@V +jotter@N +jotters@p +jotting@N +jottings@p +joule@N +joules@p +jounce@VN +jounced@V +jounces@Vp +jouncing@V +journal@N +journalese@N +journalism@N +journalist@N +journalistic@A +journalists@p +journals@p +journey@Ni +journeyed@p +journeying@p +journeyman@N +journeymen@p +journeys@p +journo@N +journos@p +joust@Ni +jousted@Ai +jousting@Ai +jousts@pi +jove@N +jovial@A +joviality@N +jovially@v +jovian@AN +jowl@N +jowls@p +jowly@A +joy@N +joyce@NA +joycean@AN +joyed@A +joyful@A +joyfuller@? +joyfullest@? +joyfully@v +joyfulness@N +joying@A +joyless@A +joylessly@v +joylessness@N +joyous@A +joyously@v +joyousness@N +joyridden@? +joyride@N +joyrider@? +joyriders@p +joyrides@p +joyriding@A +joyrode@? +joys@p +joystick@? +joysticks@p +jp@N +jr@N +juarez@? +jubal@N +jubilant@A +jubilantly@v +jubilation@N +jubilee@N +jubilees@p +judah@N +judaic@A +judaism@N +judaisms@p +judas@N +judases@? +judder@iN +juddered@iA +juddering@iA +judders@ip +jude@N +judea@N +judge@NVt +judged@V +judgement@? +judgemental@A +judgements@p +judges@N +judgeship@N +judging@V +judgment@N +judgmental@A +judgments@p +judicature@N +judicial@A +judicially@v +judiciaries@p +judiciary@AN +judicious@A +judiciously@v +judiciousness@N +judith@N +judo@N +judy@N +jug@NV +jugful@N +jugfuls@p +jugged@V +juggernaut@N +juggernauts@p +jugging@V +juggle@VtN +juggled@V +juggler@N +jugglers@p +juggles@Vtp +juggling@V +jugs@pV +jugular@AN +jugulars@p +juice@N +juiced@V +juicer@N +juicers@p +juices@p +juicier@A +juiciest@A +juiciness@N +juicing@V +juicy@A +jujitsu@N +jujube@N +jujubes@p +jujutsu@N +jukebox@N +jukeboxes@? +jul@N +julep@N +juleps@p +jules@N +julian@NA +juliana@N +julienne@AN +julies@p +juliet@N +july@N +jumble@VtN +jumbled@V +jumbles@Vtp +jumbling@V +jumbo@N +jumbos@p +jump@itN +jumped@itA +jumper@N +jumpers@p +jumpier@A +jumpiest@A +jumpiness@N +jumping@itA +jumps@itp +jumpsuit@? +jumpsuits@p +jumpy@A +jun@N +junco@N +juncoes@? +juncos@p +junction@N +junctions@p +juncture@N +junctures@p +june@N +juneau@N +junes@p +jung@N +jungfrau@N +jungian@A +jungle@N +jungles@p +junior@A +juniors@p +juniper@N +junipers@p +junk@Nt +junked@At +junker@N +junkers@N +junket@NVi +junketed@AVi +junketing@AVi +junkets@pVi +junkie@N +junkier@? +junkies@p +junkiest@? +junking@At +junks@pt +junky@? +junkyard@N +junkyards@p +juno@N +junta@N +juntas@p +jupiter@N +jurassic@AN +juridical@A +juries@p +jurisdiction@N +jurisdictional@? +jurisdictions@p +jurisprudence@N +jurist@N +jurists@p +juror@N +jurors@p +jury@NA +juryman@N +jurymen@p +jurywoman@N +jurywomen@p +just@Av +juster@N +justest@? +justice@N +justices@p +justifiable@A +justifiably@v +justification@N +justifications@p +justified@V +justifies@? +justify@V +justifying@V +justly@v +justness@N +jut@VN +jute@N +jutland@N +juts@Vp +jutted@V +jutting@V +juvenal@A +juvenile@AN +juveniles@p +juxtapose@t +juxtaposed@t +juxtaposes@t +juxtaposing@t +juxtaposition@N +juxtapositions@p +jv@N +kaaba@N +kabob@N +kabobs@p +kaboom@? +kabuki@N +kabul@N +kafka@NA +kafkaesque@? +kaftan@N +kaftans@p +kagoshima@N +kahuna@N +kahunas@p +kaifeng@N +kaiser@N +kalahari@N +kalamazoo@N +kalashnikov@? +kale@N +kaleidoscope@N +kaleidoscopes@p +kaleidoscopic@A +kaleidoscopically@v +kalevala@N +kalgoorlie@N +kali@N +kalmyk@? +kama@N +kamchatka@N +kamikaze@N +kamikazes@p +kampala@N +kampuchea@N +kanchenjunga@N +kandahar@N +kandinsky@N +kangaroo@NV +kangaroos@p +kannada@N +kano@N +kanpur@N +kans@N +kansan@AN +kansans@p +kansas@N +kant@N +kantian@AN +kaohsiung@N +kaolin@N +kapok@N +kaput@N +karachi@N +karaganda@N +karakorum@N +karakul@N +karaoke@? +karaokes@? +karat@N +karate@N +karats@p +karen@N +karma@N +kart@N +karts@p +kashmir@N +kathiawar@N +katmai@N +katmandu@N +katowice@N +katydid@N +katydids@p +kauai@N +kaunas@N +kawasaki@N +kay@N +kayak@N +kayaked@A +kayaking@A +kayaks@p +kazakh@N +kazakhstan@? +kazan@N +kazantzakis@N +kazoo@N +kazoos@p +kc@N +keats@N +kebab@N +kebabs@p +kebob@? +kebobs@p +kedgeree@N +keel@N +keeled@A +keelhaul@t +keelhauled@t +keelhauling@t +keelhauls@t +keeling@A +keels@p +keen@AVN +keened@AV +keener@N +keenest@? +keening@N +keenly@v +keenness@N +keens@pV +keep@VtN +keeper@N +keepers@p +keeping@N +keeps@Vtp +keepsake@N +keepsakes@p +keewatin@N +keg@N +kegs@p +keller@N +kellogg@N +kelly@N +kelp@N +kelvin@N +kelvins@p +kemerovo@N +kempis@N +ken@N +kenned@A +kennedy@N +kennel@NV +kenneled@V +kenneling@V +kennelled@V +kennelling@V +kennels@pV +kenning@N +kens@p +kent@N +kentuckian@AN +kentuckians@p +kentucky@N +kenya@N +kenyan@AN +kenyans@p +kenyatta@N +kepler@N +kept@V +keratin@N +kerb@Nt +kerbed@At +kerbing@N +kerbs@pt +kerbside@? +kerchief@N +kerchiefs@p +kerchieves@? +kerfuffle@Nt +kerfuffles@pt +kern@N +kernel@NV +kernels@pV +kerosene@N +kerosine@? +kerouac@N +kerr@N +kerry@N +kestrel@N +kestrels@p +ketch@N +ketches@? +ketchup@N +kettering@N +kettle@N +kettledrum@N +kettledrums@p +kettles@p +kevlar@? +kewpie@N +key@N +keyboard@Nt +keyboarded@At +keyboarder@? +keyboarders@p +keyboarding@At +keyboardist@? +keyboardists@p +keyboards@pt +keyed@A +keyhole@N +keyholes@p +keying@A +keynes@N +keynesian@N +keynote@Nt +keynoted@V +keynotes@pt +keynoting@V +keypad@? +keypads@p +keypunch@t +keypunched@t +keypunches@? +keypunching@t +keys@p +keystone@N +keystones@p +keystroke@N +keystrokes@p +keyword@N +keywords@p +kg@N +kgb@? +khabarovsk@N +khachaturian@N +khaki@N +khakis@N +khan@N +khans@p +kharkov@N +khartoum@N +khmer@NA +khoikhoi@N +khoisan@NA +khrushchev@N +khufu@N +khz@N +kia@? +kibbutz@N +kibbutzes@? +kibbutzim@p +kibitz@i +kibitzed@i +kibitzer@N +kibitzers@p +kibitzes@? +kibitzing@i +kibosh@Nt +kick@tNi +kickapoo@N +kickback@NV +kickbacks@pV +kickboxing@? +kicked@tAi +kicker@N +kickers@p +kickier@? +kickiest@? +kicking@tAi +kickoff@N +kickoffs@p +kicks@tpi +kickstand@N +kickstands@p +kicky@? +kid@N +kidd@N +kidded@V +kidder@N +kidders@p +kiddie@? +kiddies@p +kidding@NV +kiddo@N +kiddoes@p +kiddos@p +kiddy@N +kidnap@V +kidnaped@t +kidnaper@N +kidnapers@p +kidnaping@t +kidnapped@N +kidnapper@N +kidnappers@p +kidnapping@t +kidnappings@t +kidnaps@V +kidney@N +kidneys@p +kids@p +kiel@N +kielbasa@N +kielbasas@p +kielbasy@? +kierkegaard@N +kiev@N +kigali@N +kike@N +kikes@p +kikuyu@N +kilauea@N +kilimanjaro@N +kill@VN +killdeer@N +killdeers@p +killed@VA +killer@N +killers@p +killing@AN +killings@p +killjoy@? +killjoys@p +kills@Vp +kiln@Nt +kilned@At +kilning@At +kilns@pt +kilo@N +kilobyte@? +kilobytes@? +kilocycle@N +kilocycles@p +kilogram@N +kilogramme@? +kilogrammes@? +kilograms@p +kilohertz@N +kilohertzes@? +kilometer@N +kilometers@p +kilometre@N +kilometres@p +kilos@p +kiloton@N +kilotons@p +kilowatt@N +kilowatts@p +kilt@Nt +kilted@A +kilter@N +kilts@pt +kimberley@N +kimono@N +kimonos@p +kin@N +kind@AN +kinda@? +kinder@? +kindergarten@N +kindergartener@? +kindergarteners@p +kindergartens@p +kindest@? +kindhearted@A +kindle@V +kindled@V +kindles@V +kindlier@A +kindliest@A +kindliness@N +kindling@N +kindly@Av +kindness@N +kindnesses@? +kindred@AN +kinds@p +kinematic@A +kinematics@N +kinetic@A +kinetics@N +kinfolk@p +kinfolks@p +king@N +kingdom@N +kingdoms@p +kingfisher@N +kingfishers@p +kinglier@A +kingliest@A +kingly@Av +kingmaker@N +kingmakers@p +kingpin@N +kingpins@p +kings@N +kingship@N +kingston@N +kingstown@N +kink@N +kinked@A +kinkier@A +kinkiest@A +kinking@A +kinks@p +kinky@A +kinsey@N +kinsfolk@p +kinshasa@N +kinship@N +kinsman@N +kinsmen@p +kinswoman@N +kinswomen@p +kiosk@N +kiosks@p +kiowa@N +kip@N +kipling@N +kipped@A +kipper@N +kippered@A +kippering@A +kippers@p +kipping@A +kips@p +kirchhoff@N +kirghiz@N +kiribati@? +kirk@N +kirov@N +kirsch@N +kirsches@? +kisangani@N +kishinev@N +kislev@N +kismet@N +kiss@tiN +kissed@tiA +kisser@N +kissers@p +kisses@? +kissing@tiA +kissinger@N +kissogram@? +kissograms@p +kit@N +kitakyushu@N +kitbag@N +kitbags@p +kitchen@N +kitchener@N +kitchenette@N +kitchenettes@p +kitchens@p +kitchenware@N +kite@NVti +kited@V +kites@pVti +kith@N +kiting@V +kits@p +kitsch@N +kitschy@? +kitted@V +kitten@NV +kittenish@A +kittens@pV +kitties@p +kitting@V +kitty@N +kiwanis@N +kiwi@N +kiwis@p +kkk@N +klan@N +klansman@N +klaxon@N +klaxons@p +klee@N +kleenex@N +kleenexes@? +kleptomania@N +kleptomaniac@N +kleptomaniacs@p +klimt@N +kline@N +klondike@N +klondikes@p +kludge@? +kludged@? +kludges@? +kludging@? +kluge@N +kluged@A +kluges@p +kluging@A +klutz@N +klutzes@? +klutzier@? +klutziest@? +klutzy@A +km@N +knack@N +knacker@Nt +knackered@At +knackering@At +knackers@pt +knacks@p +knackwurst@N +knackwursts@p +knapsack@N +knapsacks@p +knave@N +knavery@N +knaves@p +knavish@A +knead@t +kneaded@t +kneader@N +kneaders@p +kneading@t +kneads@t +knee@NV +kneecap@NVt +kneecapped@? +kneecapping@? +kneecaps@pVt +kneed@V +kneeing@V +kneel@VN +kneeled@V +kneeling@V +kneels@Vp +knees@pV +knell@Nit +knelled@Ait +knelling@Ait +knells@pit +knelt@V +knesset@N +knew@V +knicker@? +knickerbocker@N +knickerbockers@p +knickers@p +knickknack@N +knickknacks@p +knife@Nt +knifed@At +knifes@pt +knifing@At +knight@N +knighted@A +knighthood@N +knighthoods@p +knighting@A +knightly@A +knights@p +knit@VN +knits@Vp +knitted@A +knitter@N +knitters@p +knitting@N +knitwear@N +knives@N +knob@NV +knobbier@A +knobbiest@A +knobbly@? +knobby@A +knobs@pV +knock@tiN +knockabout@NA +knockdown@AN +knocked@tiA +knocker@N +knockers@p +knocking@tiA +knockoff@? +knockoffs@p +knockout@NV +knockouts@pV +knocks@tip +knockwurst@N +knockwursts@p +knoll@N +knolls@p +knossos@N +knot@NV +knothole@N +knotholes@p +knots@pV +knotted@A +knottier@A +knottiest@A +knotting@N +knotty@A +know@VN +knowable@A +knowing@AN +knowingly@v +knowings@p +knowledge@N +knowledgeable@A +knowledgeably@v +known@VAN +knows@Vp +knox@N +knoxville@N +knuckle@Nti +knuckled@V +knuckleduster@? +knuckledusters@p +knucklehead@N +knuckleheads@p +knuckles@pti +knuckling@V +knuth@N +knuths@p +ko@N +koala@N +koalas@p +koan@N +koans@p +kobe@N +koch@N +kodak@Nti +kodiak@N +koestler@N +kohinoor@N +kohl@N +kohlrabi@N +kohlrabies@p +kolyma@N +kongo@N +kook@N +kookaburra@N +kookaburras@p +kookie@? +kookier@A +kookiest@A +kookiness@? +kooks@p +kooky@A +kopeck@N +kopecks@p +kopek@? +kopeks@p +koran@N +korans@p +korea@N +korean@AN +koreans@p +korma@N +korzybski@N +kosciusko@N +kosher@AN +koshered@A +koshering@A +koshers@p +kossuth@N +kosygin@N +kowloon@N +kowtow@iN +kowtowed@iA +kowtowing@iA +kowtows@ip +kp@N +kr@N +krakatoa@N +krakow@N +krasnodar@N +krasnoyarsk@N +krebs@N +kremlin@N +kremlinologist@N +krill@N +krishna@N +krone@N +kroner@p +kronor@p +kropotkin@N +kruger@N +krugerrand@? +krupp@N +krypton@N +ks@p +kshatriya@N +kubrick@N +kudos@N +kudzu@N +kudzus@p +kuibyshev@N +kumquat@N +kumquats@p +kunming@N +kuomintang@N +kurd@N +kurdish@NA +kurdistan@N +kurile@? +kurosawa@N +kutuzov@N +kuwait@N +kuwaiti@NA +kuwaitis@p +kvetch@? +kvetched@? +kvetches@? +kvetching@? +kw@N +kwakiutl@N +kwangju@N +kwanzaa@? +kwanzaas@p +ky@N +kyoto@N +kyrgyzstan@? +kyushu@N +la@N +lab@N +laban@N +label@NVt +labeled@V +labeling@V +labelled@V +labelling@V +labels@pVt +labia@N +labial@AN +labials@p +labium@N +labor@VN +laboratories@p +laboratory@N +labored@A +laborer@N +laborers@p +laboring@VA +laborious@A +laboriously@v +laboriousness@N +labors@N +labour@Nit +laboured@A +labourer@N +labourers@p +labouring@Ait +labours@pit +labrador@N +labradors@p +labs@p +laburnum@N +laburnums@p +labyrinth@N +labyrinthine@A +labyrinths@p +lace@NVt +laced@V +lacerate@VtA +lacerated@A +lacerates@Vtp +lacerating@V +laceration@N +lacerations@p +laces@pVt +lachesis@N +lachrymal@A +lachrymose@A +lacier@A +laciest@A +lacing@N +lack@NV +lackadaisical@A +lackadaisically@v +lacked@AV +lackey@NV +lackeys@p +lacking@PA +lackluster@AN +lacklustre@A +lacks@pV +laconic@A +laconically@v +lacquer@N +lacquered@A +lacquering@A +lacquers@p +lacrimal@A +lacrosse@N +lactate@Ni +lactated@i +lactates@pi +lactating@i +lactation@N +lactic@A +lactose@N +lacuna@N +lacunae@p +lacunas@p +lacy@A +lad@N +ladder@NV +laddered@AV +laddering@AV +ladders@pV +laddie@N +laddies@p +laddish@A +laddishness@? +lade@Vt +laded@V +laden@A +lades@Vt +ladies@N +lading@N +ladings@p +ladle@Nt +ladled@At +ladles@pt +ladling@At +ladoga@N +lads@p +lady@N +ladybird@N +ladybirds@p +ladybug@N +ladybugs@p +ladyfinger@N +ladyfingers@p +ladylike@A +ladyship@N +ladyships@p +lafayette@N +lag@VN +lager@N +lagers@p +laggard@NA +laggards@p +lagged@V +lagging@N +lagniappe@N +lagniappes@p +lagoon@N +lagoons@p +lagos@N +lagrange@N +lagrangian@? +lags@Vp +lahore@N +laid@V +lain@V +lair@Nit +laird@N +lairds@p +lairs@pit +laity@N +laius@N +lake@N +lakes@p +lakeside@? +lakewood@N +lakota@? +lakshmi@N +lallygag@V +lallygagged@i +lallygagging@i +lallygags@V +lam@N +lama@N +lamarck@N +lamas@N +lamaseries@p +lamasery@N +lamaze@? +lamb@N +lambada@? +lambadas@p +lambast@? +lambaste@t +lambasted@t +lambastes@t +lambasting@t +lambasts@p +lambda@N +lambed@A +lambent@A +lambert@N +lambing@A +lambkin@N +lambkins@p +lambrusco@? +lambs@p +lambskin@N +lambskins@p +lambswool@? +lame@AtN +lamebrain@N +lamebrains@p +lamed@N +lamely@v +lameness@N +lament@VN +lamentable@A +lamentably@v +lamentation@N +lamentations@N +lamented@A +lamenting@VA +laments@Vp +lamer@A +lamers@p +lames@p +lamest@A +laminate@VtNA +laminated@V +laminates@Vtp +laminating@V +lamination@N +laming@A +lammed@V +lamming@V +lamp@N +lampblack@N +lamplight@N +lampoon@Nt +lampooned@At +lampooning@At +lampoons@pt +lamppost@N +lampposts@p +lamprey@N +lampreys@p +lamps@p +lampshade@N +lampshades@p +lams@p +lanai@N +lancashire@N +lancaster@N +lance@N +lanced@V +lancelot@N +lancer@N +lancers@N +lances@p +lancet@N +lancets@p +lancing@V +land@N +landed@A +lander@N +landfall@N +landfalls@p +landfill@? +landfills@p +landholder@N +landholders@p +landholding@AN +landholdings@p +landing@N +landings@p +landladies@p +landlady@N +landless@A +landlocked@A +landlord@N +landlords@p +landlubber@N +landlubbers@p +landmark@N +landmarks@p +landmass@N +landmasses@? +landmine@? +landmines@? +landowner@NA +landowners@p +landownership@N +landowning@NA +lands@p +landsat@? +landscape@Nti +landscaped@V +landscaper@N +landscapers@p +landscapes@pti +landscaping@V +landslid@V +landslidden@V +landslide@N +landslides@p +landsliding@V +landslip@? +landslips@p +landward@Av +landwards@v +lane@N +lanes@p +lang@A +langland@N +langley@N +langmuir@N +language@N +languages@p +languid@A +languidly@v +languish@i +languished@i +languishes@? +languishing@A +languor@N +languorous@A +languorously@v +languors@p +lank@A +lanker@? +lankest@? +lankier@? +lankiest@? +lankiness@N +lanky@A +lanolin@N +lansing@N +lantern@N +lanterns@p +lanyard@N +lanyards@p +lanzhou@? +lao@NA +laocoon@N +laos@NA +laotian@NA +laotians@p +lap@NV +lapdog@? +lapdogs@p +lapel@N +lapels@p +lapidaries@p +lapidary@NA +laplace@N +lapland@N +lapp@NA +lapped@V +lapping@V +lapps@p +laps@pV +lapse@Ni +lapsed@V +lapses@pi +lapsing@V +laptop@? +laptops@p +lapwing@N +lapwings@p +larboard@NA +larboards@p +larcenies@p +larcenous@A +larceny@N +larch@N +larches@? +lard@Nt +larded@At +larder@N +larders@p +larding@At +lards@pt +laredo@N +large@ANv +largely@v +largeness@N +larger@A +larges@pv +largess@N +largesse@? +largest@A +largish@A +largo@AvN +largos@p +lariat@N +lariats@p +lark@N +larked@A +larking@A +larks@p +larkspur@N +larkspurs@p +larousse@N +lars@N +larva@N +larvae@p +larval@A +larvas@p +larynges@p +laryngitis@N +larynx@N +larynxes@? +lasagna@? +lasagnas@p +lasagne@N +lasagnes@p +lascivious@A +lasciviously@v +lasciviousness@N +lase@i +lased@i +laser@N +lasers@p +lases@i +lash@N +lashed@A +lashes@? +lashing@N +lashings@p +lasing@i +lass@N +lassa@N +lasses@? +lassie@N +lassies@p +lassitude@N +lasso@NV +lassoed@p +lassoes@p +lassoing@p +lassos@p +last@AvNVt +lasted@AvVt +lasting@AN +lastingly@v +lastly@v +lasts@pvVt +lat@N +latch@NV +latched@AV +latches@? +latching@N +latchkey@N +latchkeys@p +late@Av +latecomer@N +latecomers@p +lately@v +latency@N +lateness@N +latent@A +later@Av +lateral@AN +lateraled@A +lateraling@A +lateralled@? +lateralling@? +laterally@v +laterals@p +latest@AvN +latex@N +lath@Nt +lathe@N +lathed@V +lather@NVit +lathered@AVit +lathering@AVit +lathers@pVit +lathery@A +lathes@p +lathing@NV +laths@pt +latin@NA +latina@N +latino@N +latinos@p +latins@p +latitude@N +latitudes@p +latitudinal@A +latrine@N +latrines@p +lats@p +latte@? +latter@A +latterly@v +lattes@? +lattice@NV +latticed@A +lattices@pV +latticework@N +latticeworks@p +latvia@N +latvian@AN +latvians@p +laud@N +laudable@A +laudably@v +laudanum@N +laudatory@A +lauded@A +lauder@N +lauding@A +lauds@N +laue@N +laugh@itN +laughable@A +laughably@v +laughed@itA +laughing@NA +laughingly@v +laughingstock@N +laughingstocks@p +laughs@itp +laughter@N +launch@VtiN +launched@VtiA +launcher@N +launchers@p +launches@? +launching@VtiA +launder@VN +laundered@VA +launderer@N +launderers@p +launderette@N +launderettes@p +laundering@VA +launders@Vp +laundress@N +laundresses@? +laundrette@? +laundrettes@? +laundries@p +laundromat@N +laundromats@p +laundry@N +laundryman@N +laundrymen@? +laurasia@N +laureate@AN +laureates@p +laurel@N +laurels@p +lav@N +lava@N +laval@N +lavatorial@? +lavatories@p +lavatory@N +lavender@N +lavenders@p +lavish@At +lavished@At +lavisher@N +lavishes@? +lavishest@? +lavishing@At +lavishly@v +lavishness@N +lavoisier@N +lavs@p +law@N +lawbreaker@NA +lawbreakers@p +lawful@A +lawfully@v +lawfulness@N +lawgiver@NA +lawgivers@p +lawless@A +lawlessly@v +lawlessness@N +lawmaker@N +lawmakers@p +lawman@N +lawmen@p +lawn@N +lawnmower@? +lawnmowers@p +lawns@p +lawrence@N +lawrencium@N +laws@N +lawson@N +lawsuit@N +lawsuits@p +lawyer@N +lawyers@p +lax@A +laxative@NA +laxatives@p +laxer@? +laxest@? +laxity@N +laxly@v +laxness@N +lay@N +layabout@NV +layabouts@pV +layamon@N +layaway@? +layer@NV +layered@AV +layering@N +layers@pV +layette@N +layettes@p +laying@A +layman@N +laymen@p +layoff@N +layoffs@p +layout@N +layouts@p +layover@N +layovers@p +laypeople@? +layperson@? +laypersons@p +lays@p +laywoman@N +laywomen@p +lazarus@N +laze@itN +lazed@V +lazes@N +lazied@? +lazier@A +lazies@? +laziest@A +lazily@v +laziness@N +lazing@V +lazy@A +lazybones@N +lazying@A +lb@N +lbs@p +lbw@? +lcd@N +lea@N +leach@N +leached@A +leaches@? +leaching@A +lead@N +leadbelly@N +leaded@A +leaden@A +leader@N +leaders@p +leadership@N +leaderships@p +leading@AN +leads@p +leaf@N +leafed@A +leafier@A +leafiest@A +leafing@A +leafless@A +leaflet@N +leafleted@A +leafleting@A +leaflets@p +leafletted@? +leafletting@? +leafs@p +leafy@A +league@NV +leagued@V +leagues@pV +leaguing@V +leah@N +leak@NVi +leakage@N +leakages@p +leaked@AVi +leakey@N +leakier@? +leakiest@? +leaking@AVi +leaks@pVi +leaky@A +lean@N +leander@N +leaned@V +leaner@N +leanest@? +leaning@N +leanings@p +leanness@N +leans@p +leap@VitN +leaped@V +leapfrog@NVi +leapfrogged@V +leapfrogging@V +leapfrogs@pVi +leaping@VitA +leaps@Vitp +leapt@V +lear@N +learn@Vti +learned@A +learner@N +learners@p +learning@N +learns@Vti +learnt@V +leas@p +lease@Nt +leaseback@N +leasebacks@p +leased@V +leasehold@N +leaseholder@N +leaseholders@p +leaseholds@p +leases@pt +leash@Nt +leashed@At +leashes@? +leashing@At +leasing@NV +least@DvA +leastways@v +leastwise@v +leather@Nt +leatherette@N +leatherneck@N +leathernecks@p +leathers@pt +leathery@A +leave@VtN +leaved@A +leaven@NVt +leavened@AVt +leavening@N +leavens@pVt +leavenworth@N +leaver@N +leavers@p +leaves@N +leaving@NVi +leavings@p +lebanese@p +lebanon@N +lech@iN +leched@iA +lecher@N +lecherous@A +lecherously@v +lechers@p +lechery@N +leches@? +leching@iA +lecithin@N +lectern@N +lecterns@p +lecture@NVt +lectured@V +lecturer@N +lecturers@p +lectures@pVt +lectureship@N +lectureships@p +lecturing@V +led@V +leda@N +ledge@N +ledger@Ni +ledgers@pi +ledges@p +lee@N +leech@Nt +leeched@At +leeches@? +leeching@At +leeds@N +leek@N +leeks@p +leer@iN +leered@iA +leerier@A +leeriest@A +leering@iA +leers@ip +leery@A +lees@p +leeuwenhoek@N +leeward@ANv +leewards@pv +leeway@N +left@AvNV +lefter@? +leftest@? +leftie@? +lefties@p +leftism@N +leftist@AN +leftists@p +leftmost@? +leftover@NA +leftovers@p +lefts@pvV +leftward@Av +leftwards@v +lefty@N +leg@NV +legacies@p +legacy@N +legal@A +legalese@N +legaleses@p +legalisation@? +legalise@t +legalised@t +legalises@t +legalising@t +legalism@NA +legalisms@p +legalistic@A +legalistically@v +legalities@p +legality@N +legalization@N +legalize@t +legalized@t +legalizes@t +legalizing@t +legally@v +legals@p +legate@N +legatee@N +legatees@p +legates@p +legation@N +legations@p +legato@N +legatos@p +legend@N +legendary@A +legendre@N +legends@p +legerdemain@N +legged@A +leggier@A +leggiest@A +leggin@? +legging@NV +leggings@p +leggins@p +leggy@A +leghorn@N +legibility@N +legible@A +legibly@v +legion@NA +legionaries@p +legionary@AN +legionnaire@N +legionnaires@p +legions@p +legislate@it +legislated@V +legislates@it +legislating@V +legislation@N +legislative@AN +legislator@N +legislators@p +legislature@N +legislatures@p +legit@AN +legitimacy@N +legitimate@AVt +legitimated@AV +legitimately@v +legitimates@pVt +legitimating@AV +legitimise@t +legitimised@t +legitimises@t +legitimising@t +legitimize@t +legitimized@t +legitimizes@t +legitimizing@t +legless@A +legman@N +legmen@p +legroom@N +legrooms@p +legs@pV +legume@N +legumes@p +leguminous@A +legwarmer@? +legwarmers@p +legwork@N +lei@N +leibniz@N +leicester@N +leiden@N +leigh@N +leipzig@N +leis@N +leisure@N +leisured@A +leisurely@Av +leisurewear@? +leitmotif@N +leitmotifs@p +leitmotiv@N +leitmotivs@p +lemma@N +lemmas@p +lemme@? +lemming@N +lemmings@p +lemon@N +lemonade@N +lemonades@p +lemongrass@? +lemons@p +lemony@A +lemur@N +lemurs@p +lena@N +lend@Vit +lender@N +lenders@p +lending@V +lends@Vit +length@N +lengthen@V +lengthened@V +lengthening@V +lengthens@V +lengthier@A +lengthiest@A +lengthily@v +lengths@p +lengthways@vA +lengthwise@vA +lengthy@A +leniency@N +lenient@A +leniently@v +lenin@N +leningrad@N +leninism@NA +leninist@AN +lens@N +lenses@p +lent@N +lenten@A +lentil@N +lentils@p +lents@p +leo@N +leon@N +leoncavallo@N +leonid@N +leonidas@N +leonine@A +leopard@N +leopards@p +leos@N +leotard@N +leotards@p +leper@N +lepers@p +lepidus@N +leprechaun@N +leprechauns@p +leprosy@N +leprous@A +lept@? +lepus@N +lerner@N +les@N +lesbian@NA +lesbianism@N +lesbians@p +lesion@N +lesions@p +lesotho@N +less@DvP +lessee@N +lessees@p +lessen@Vt +lessened@Vt +lessening@Vt +lessens@Vt +lesseps@N +lesser@A +lesson@Nt +lessons@pt +lessor@N +lessors@p +lest@C +let@N +letdown@N +letdowns@p +lethal@A +lethally@v +lethargic@A +lethargically@v +lethargy@N +lethe@N +lets@p +letter@NV +letterbomb@? +letterbombs@p +letterbox@? +letterboxes@? +lettered@A +letterhead@N +letterheads@p +lettering@N +letters@N +letting@V +lettings@V +lettuce@N +lettuces@p +letup@N +letups@p +leucotomies@p +leucotomy@N +leukaemia@N +leukemia@N +leukocyte@N +leukocytes@p +levant@N +levee@N +levees@p +level@AVN +leveled@AV +leveler@N +levelers@p +levelheaded@? +levelheadedness@? +leveling@AV +levelled@? +leveller@N +levellers@p +levelling@v +levelness@N +levels@pV +lever@N +leverage@N +leveraged@A +leverages@p +leveraging@A +levered@A +levering@A +levers@p +levi@N +leviathan@N +leviathans@p +levied@A +levies@? +levitate@Vt +levitated@V +levitates@Vt +levitating@V +levitation@N +leviticus@N +levity@N +levy@N +levying@A +lewd@A +lewder@? +lewdest@? +lewdly@v +lewdness@N +lewis@N +lexer@? +lexers@p +lexica@p +lexical@A +lexicographer@N +lexicographers@p +lexicography@N +lexicon@N +lexicons@p +lexington@N +lexis@N +lg@N +lhasa@N +li@N +liabilities@p +liability@N +liable@A +liaise@i +liaised@i +liaises@i +liaising@i +liaison@N +liaisons@p +liar@N +liars@p +lib@N +libation@N +libations@p +libby@N +libel@NVt +libeled@V +libeler@N +libelers@p +libeling@V +libelled@V +libeller@? +libellers@p +libelling@V +libellous@p +libelous@A +libels@pVt +liberal@AN +liberalisation@N +liberalisations@p +liberalise@ti +liberalised@ti +liberalises@ti +liberalising@ti +liberalism@NA +liberality@N +liberalization@N +liberalizations@p +liberalize@V +liberalized@ti +liberalizes@V +liberalizing@ti +liberally@v +liberals@p +liberate@t +liberated@t +liberates@t +liberating@t +liberation@N +liberator@N +liberators@p +liberia@N +liberian@AN +liberians@p +libertarian@NA +libertarians@p +liberties@p +libertine@NA +libertines@p +liberty@N +libidinous@A +libido@N +libidos@p +libra@N +librarian@N +librarians@p +librarianship@N +libraries@p +library@N +libras@p +libretti@p +librettist@N +librettists@p +libretto@N +librettos@p +libreville@N +librium@N +libya@N +libyan@AN +libyans@p +lice@N +licence@N +licenced@t +licences@p +licencing@t +license@t +licensed@V +licensee@N +licensees@p +licenses@t +licensing@V +licentiate@N +licentiates@p +licentious@A +licentiously@v +licentiousness@N +lichee@N +lichees@p +lichen@N +lichens@p +lichtenstein@N +licit@A +lick@N +licked@A +licking@N +lickings@p +licks@p +licorice@N +licorices@p +lid@N +lidded@A +lido@N +lidos@p +lids@p +lie@N +liebfraumilch@N +liechtenstein@N +lied@N +lief@N +liefer@? +liefest@? +liege@AN +lieges@p +lien@N +liens@p +lies@p +lieu@N +lieutenancy@N +lieutenant@N +lieutenants@p +life@N +lifebelt@? +lifebelts@p +lifeblood@N +lifeboat@N +lifeboats@p +lifeforms@p +lifeguard@N +lifeguards@p +lifeless@A +lifelike@A +lifeline@N +lifelines@p +lifelong@A +lifer@N +lifers@p +lifesaver@N +lifesavers@p +lifesaving@AN +lifespan@? +lifespans@p +lifestyle@? +lifestyles@? +lifetime@N +lifetimes@p +lifework@N +lifeworks@p +lift@VNti +lifted@VAti +lifting@VAti +liftoff@NVi +liftoffs@pVi +lifts@Vpti +ligament@N +ligaments@p +ligature@Nt +ligatured@V +ligatures@pt +ligaturing@V +light@N +lighted@i +lighten@Vit +lightened@Vit +lightening@N +lightens@Vit +lighter@N +lighters@p +lightest@? +lightheaded@A +lighthearted@? +lightheartedly@v +lightheartedness@N +lighthouse@N +lighthouses@p +lighting@N +lightly@v +lightness@N +lightning@N +lightninged@V +lightnings@p +lights@p +lightship@N +lightships@p +lightweight@AN +lightweights@p +lignite@NA +likable@A +likableness@N +like@APvCNt +likeable@A +likeableness@N +liked@V +likelier@A +likeliest@A +likelihood@N +likelihoods@p +likely@Av +liken@t +likened@t +likeness@N +likenesses@? +likening@t +likens@t +liker@N +likes@pPvCt +likest@? +likewise@v +liking@N +lilac@N +lilacs@p +lilies@? +lilith@N +liliuokalani@N +lille@N +lilliputian@NA +lilliputians@p +lilo@N +lilongwe@N +lilos@p +lilt@Ni +lilted@Ai +lilting@Ai +lilts@pi +lily@N +lima@N +limb@Nt +limber@ANV +limbered@AV +limbering@AV +limbers@pV +limbless@A +limbo@N +limbos@p +limbs@pt +limburger@N +lime@NtAi +limeade@N +limeades@p +limed@V +limelight@N +limerick@N +limericks@p +limes@N +limescale@? +limestone@N +limey@NA +limeys@p +limier@A +limiest@A +liming@V +limit@Nt +limitation@N +limitations@p +limited@AN +limiting@A +limitings@p +limitless@A +limits@pt +limn@t +limned@t +limning@t +limns@t +limo@? +limoges@N +limos@p +limousin@N +limousine@N +limousines@p +limp@iNA +limped@iA +limper@N +limpest@? +limpet@N +limpets@p +limpid@A +limpidity@N +limpidly@v +limping@iA +limply@v +limpness@N +limpopo@N +limps@ip +limy@A +linage@N +linchpin@N +linchpins@p +lincoln@N +lincolns@p +lind@N +lindbergh@N +linden@N +lindens@p +lindsay@N +lindsey@N +lindy@N +line@N +lineage@N +lineages@p +lineal@A +lineally@v +lineament@N +lineaments@p +linear@A +linearity@N +linearly@v +linebacker@N +linebackers@p +lined@V +linefeed@? +lineman@N +linemen@p +linen@N +linens@p +liner@N +liners@p +lines@p +linesman@N +linesmen@p +lineup@? +lineups@p +ling@N +linger@V +lingered@V +lingerer@N +lingerers@p +lingerie@N +lingering@V +lingeringly@v +lingerings@p +lingers@V +lingo@N +lingoes@p +lingos@p +lings@p +lingual@AN +linguist@N +linguistic@A +linguistically@v +linguistics@N +linguists@p +liniment@N +liniments@p +lining@N +linings@p +link@N +linkage@N +linkages@p +linked@A +linker@N +linking@A +linkman@N +linkmen@p +links@p +linkup@? +linkups@p +linnaeus@N +linnet@N +linnets@p +lino@N +linoleum@N +linotype@N +linseed@N +lint@N +linted@A +lintel@N +lintels@p +linting@A +lints@p +linus@N +linux@? +linuxes@? +lion@N +lioness@N +lionesses@? +lionhearted@A +lionisation@N +lionise@ti +lionised@ti +lionises@ti +lionising@ti +lionization@N +lionize@t +lionized@V +lionizes@t +lionizing@V +lions@N +lip@NV +lipid@N +lipids@p +lipizzaner@N +liposuction@? +lippi@N +lippmann@N +lippy@A +lipread@? +lipreading@? +lipreads@p +lips@pV +lipstick@N +lipsticked@A +lipsticking@A +lipsticks@p +liquefaction@N +liquefied@ti +liquefies@? +liquefy@V +liquefying@ti +liqueur@N +liqueurs@p +liquid@NA +liquidate@Vt +liquidated@V +liquidates@Vt +liquidating@V +liquidation@N +liquidations@p +liquidator@N +liquidators@p +liquidise@t +liquidised@t +liquidiser@? +liquidisers@p +liquidises@t +liquidising@t +liquidity@N +liquidize@Vt +liquidized@t +liquidizer@N +liquidizers@p +liquidizes@Vt +liquidizing@t +liquids@p +liquified@? +liquifies@? +liquify@V +liquifying@V +liquor@NV +liquored@AV +liquoring@AV +liquors@pV +lira@N +liras@p +lire@p +lisbon@N +lisle@N +lisp@NV +lisped@AV +lisping@AV +lisps@pV +lissom@A +lissome@A +list@N +listed@A +listen@i +listenable@? +listened@i +listener@N +listeners@p +listening@i +listens@i +lister@N +listeria@N +listing@N +listings@p +listless@A +listlessly@v +listlessness@N +lists@p +liszt@N +lit@N +litanies@p +litany@N +litchi@N +litchis@p +lite@? +liter@N +literacy@N +literal@AN +literally@v +literalness@N +literals@p +literary@A +literate@AN +literates@p +literati@p +literature@N +liters@p +lithe@A +lithely@v +lither@A +lithest@A +lithium@N +lithograph@Nt +lithographed@At +lithographer@N +lithographers@p +lithographic@A +lithographing@At +lithographs@pt +lithography@N +lithosphere@N +lithospheres@p +lithuania@N +lithuanian@AN +lithuanians@p +litigant@NA +litigants@p +litigate@Vi +litigated@V +litigates@Vi +litigating@V +litigation@N +litigator@N +litigators@p +litigious@A +litigiousness@N +litmus@N +litre@N +litres@p +litter@NVt +litterbug@N +litterbugs@p +littered@AVt +littering@AVt +litters@pVt +little@DAv +littleness@N +littler@D +littlest@D +littoral@AN +littorals@p +liturgical@A +liturgically@v +liturgies@p +liturgy@N +livability@N +livable@A +live@VtA +liveable@A +lived@AV +livelier@A +liveliest@A +livelihood@N +livelihoods@p +liveliness@N +livelong@AN +livelongs@p +lively@Av +liven@V +livened@V +livening@V +livens@V +liver@N +liveried@A +liveries@p +liverish@A +liverpool@N +liverpudlian@NA +livers@p +liverwurst@N +livery@NA +lives@N +livest@A +livestock@N +liveware@N +livewares@p +livid@A +lividly@v +living@AN +livings@p +livingston@N +livingstone@N +livonia@N +livy@N +lizard@N +lizards@p +ljubljana@N +llama@N +llamas@p +llano@N +llanos@p +llewellyn@N +lloyd@N +ln@N +lo@! +load@NV +loadable@? +loaded@A +loader@N +loaders@p +loading@N +loads@pv +loadstar@N +loadstars@p +loadstone@N +loadstones@p +loaf@Nit +loafed@Ait +loafer@N +loafers@p +loafing@Ait +loafs@pit +loam@Nt +loamier@? +loamiest@? +loamy@A +loan@NV +loaned@AV +loaner@N +loaners@p +loaning@N +loans@pV +loanword@? +loanwords@p +loath@A +loathe@t +loathed@t +loathes@t +loathing@N +loathings@p +loathsome@A +loathsomeness@N +loaves@N +lob@NV +lobachevsky@N +lobbed@V +lobbied@p +lobbies@p +lobbing@V +lobby@NV +lobbying@p +lobbyist@N +lobbyists@p +lobe@N +lobed@A +lobes@p +lobotomies@p +lobotomy@N +lobs@pV +lobster@N +lobsters@p +local@AN +locale@N +locales@p +localisation@N +localise@ti +localised@ti +localises@ti +localising@ti +localities@p +locality@N +localization@N +localize@Vt +localized@V +localizes@Vt +localizing@V +locally@v +locals@p +locate@ti +located@V +locates@ti +locating@V +location@N +locations@p +lochinvar@N +loci@N +lock@N +lockable@A +locke@N +lockean@NA +locked@A +locker@N +lockers@p +locket@N +lockets@p +locking@A +lockjaw@N +lockout@N +lockouts@p +locks@p +locksmith@N +locksmiths@p +lockstep@? +lockup@N +lockups@p +loco@NAt +locomotion@N +locomotive@NA +locomotives@p +locos@p +locoweed@N +locoweeds@p +locum@N +locums@p +locus@N +locust@N +locusts@p +locution@N +locutions@p +lode@N +lodes@p +lodestar@N +lodestars@p +lodestone@N +lodestones@p +lodge@N +lodged@AV +lodger@N +lodgers@p +lodges@p +lodging@N +lodgings@p +lodz@? +loewe@N +loewi@N +loft@Nt +lofted@At +loftier@A +loftiest@A +loftily@v +loftiness@N +lofting@N +lofts@pt +lofty@A +log@NV +logan@N +loganberries@p +loganberry@N +logarithm@N +logarithmic@A +logarithms@p +logbook@N +logbooks@p +loge@N +loges@p +logged@V +logger@N +loggerhead@N +loggerheads@p +loggers@p +logging@N +logic@N +logical@A +logically@v +logician@N +logicians@p +logistic@NA +logistical@? +logistically@v +logistics@N +logjam@N +logjams@p +logo@N +logos@N +logotype@N +logotypes@p +logrolling@N +logs@pV +lohengrin@N +loin@N +loincloth@N +loincloths@p +loins@p +loire@N +loiter@i +loitered@i +loiterer@N +loiterers@p +loitering@i +loiters@i +loki@N +lolita@N +loll@iN +lollard@N +lolled@iA +lollies@p +lolling@iA +lollipop@N +lollipops@p +lollop@i +lolloped@i +lolloping@i +lollops@i +lolls@ip +lolly@N +lollygag@i +lollygagged@i +lollygagging@i +lollygags@i +lollypop@? +lollypops@p +lombard@NA +lombardy@N +lome@? +london@N +londoner@N +lone@A +lonelier@A +loneliest@A +loneliness@N +lonely@A +loner@N +loners@p +lonesome@AN +long@ANvi +longboat@N +longboats@p +longbow@N +longbows@p +longed@V +longer@? +longest@? +longevity@N +longfellow@N +longhair@NA +longhairs@p +longhand@N +longhorn@N +longhorns@p +longhouse@? +longhouses@? +longing@NA +longingly@v +longings@p +longish@A +longitude@N +longitudes@p +longitudinal@A +longitudinally@v +longs@p +longshoreman@N +longshoremen@p +longtime@A +longueur@N +longueurs@p +longways@v +longwise@Av +loo@N +loofah@N +loofahs@p +look@VtN +lookalike@? +lookalikes@? +looked@VtA +looker@N +lookers@p +looking@VtA +lookout@NV +lookouts@pV +looks@Vtp +loom@N +loomed@A +looming@N +looms@p +loon@N +looney@AN +looneyier@? +looneyies@? +looneys@p +loonier@A +loonies@A +looniest@A +loons@p +loony@AN +loop@NV +looped@A +loophole@Nt +loopholes@pt +loopier@? +loopiest@? +looping@AV +loops@pV +loopy@A +loos@N +loose@ANvt +loosed@V +loosely@v +loosen@Vt +loosened@Vt +looseness@N +loosening@Vt +loosens@Vt +looser@A +looses@pvt +loosest@vVA +loosing@N +loot@NV +looted@AV +looter@N +looters@p +looting@AV +loots@pV +lop@VNi +lope@iN +loped@V +lopes@N +loping@V +lopped@V +lopping@V +lops@Vpi +lopsided@A +lopsidedly@v +lopsidedness@N +loquacious@A +loquaciously@v +loquacity@N +lord@N! +lorded@A! +lording@N +lordlier@A +lordliest@A +lordly@Av +lords@N +lordship@N +lordships@p +lore@N +lorelei@N +loren@N +lorentz@N +lorenz@N +lorgnette@N +lorgnettes@p +lorn@A +lorraine@N +lorries@p +lorry@N +lose@N +loser@N +losers@p +loses@p +losing@A +loss@N +losses@p +lost@A +lot@N +loth@A +lothario@N +lotion@N +lotions@p +lots@pv +lotteries@p +lottery@N +lotto@N +lotus@N +lotuses@p +louche@A +loud@Av +louder@? +loudest@? +loudhailer@? +loudhailers@p +loudly@v +loudmouth@N +loudmouthed@A +loudmouths@p +loudness@N +loudspeaker@N +loudspeakers@p +lough@N +loughs@p +louis@N +louisiana@N +louisianan@AN +louisianans@p +louisianian@AN +louisianians@p +louisville@N +lounge@iN +lounged@V +lounger@N +loungers@p +lounges@ip +lounging@AV +lour@V +lourdes@N +loured@V +louring@A +lours@V +louse@Nt +loused@At +louses@pt +lousier@A +lousiest@A +lousiness@N +lousing@At +lousy@A +lout@Ni +loutish@A +loutishness@N +louts@pi +louver@N +louvered@A +louvers@p +louvre@N +louvred@A +louvres@p +lovable@A +love@N +loveable@A +lovebird@N +lovebirds@p +loved@V +lovelace@N +loveless@A +lovelier@A +lovelies@? +loveliest@A +loveliness@N +lovelorn@A +lovely@AN +lovemaking@N +lover@N +lovers@p +loves@p +lovesick@A +lovey@N +loveys@p +loving@A +lovingly@v +low@AvNV +lowbrow@NA +lowbrows@p +lowdown@? +lowed@i +lowell@N +lower@AtiN +lowercase@? +lowered@Ati +lowering@A +lowers@pti +lowest@? +lowing@i +lowish@A +lowland@A +lowlander@N +lowlanders@p +lowlands@N +lowlier@A +lowliest@A +lowliness@N +lowly@A +lowness@N +lows@pvV +lox@N +loxes@? +loyal@A +loyaler@? +loyalest@? +loyalist@N +loyalists@p +loyaller@? +loyallest@? +loyally@v +loyalties@p +loyalty@N +loyola@N +lozenge@N +lozenges@p +lp@N +lpn@? +lpns@p +lr@N +ls@N +lsd@N +lt@N +ltd@N +lu@N +luanda@N +luau@N +luaus@p +lubavitcher@? +lubber@Nv +lubbers@pv +lubbock@N +lube@N +lubed@A +lubes@p +lubing@A +lubricant@NA +lubricants@p +lubricate@ti +lubricated@V +lubricates@ti +lubricating@V +lubrication@N +lubricator@N +lubricators@p +lubricious@A +lubriciously@v +lubumbashi@N +lucian@N +lucid@A +lucidity@N +lucidly@v +lucidness@N +lucifer@N +lucite@N +luck@Ni +lucked@Ai +luckier@A +luckiest@A +luckily@v +luckiness@N +lucking@Ai +luckless@A +lucknow@N +lucks@pi +lucky@A +lucrative@A +lucratively@v +lucre@N +lucretia@N +lucretius@N +lucy@N +luddite@NA +ludhiana@N +ludicrous@A +ludicrously@v +ludicrousness@N +ludo@N +luftwaffe@N +lug@N +luge@N +luger@N +luges@p +luggage@N +lugged@V +lugging@V +lughole@? +lugholes@? +lugs@p +lugubrious@A +lugubriously@v +lugubriousness@N +luke@N +lukewarm@A +lull@N +lullabies@p +lullaby@Nt +lulled@A +lulling@A +lulls@p +lully@N +lulu@N +lulus@p +lumbago@N +lumbar@A +lumber@Nti +lumbered@Ati +lumbering@NA +lumberjack@N +lumberjacks@p +lumberman@N +lumbermen@p +lumbers@pti +lumberyard@N +lumberyards@p +luminaries@p +luminary@NA +luminescence@N +luminescent@A +luminosity@N +luminous@A +luminously@v +lummox@N +lummoxes@? +lump@Nti +lumpectomies@? +lumpectomy@? +lumped@Ati +lumpen@A +lumpier@A +lumpiest@A +lumpiness@N +lumping@Ati +lumpish@A +lumps@pti +lumpy@A +luna@N +lunacies@p +lunacy@N +lunar@A +lunatic@AN +lunatics@p +lunch@Nit +lunchbox@? +lunchboxes@? +lunched@Ait +luncheon@N +luncheonette@N +luncheonettes@p +luncheons@p +lunches@? +lunching@Ait +lunchroom@N +lunchrooms@p +lunchtime@N +lunchtimes@p +lung@N +lunge@NiV +lunged@V +lunges@piV +lungful@? +lungfuls@p +lunging@V +lungs@p +lupercalia@N +lupin@N +lupine@A +lupines@p +lupins@p +lupus@N +lurch@iN +lurched@iA +lurches@? +lurching@iA +lure@tN +lured@V +lures@tp +lurgy@? +lurid@A +luridly@v +luridness@N +luring@V +lurk@iN +lurked@iA +lurker@N +lurkers@p +lurking@iA +lurks@ip +lusaka@N +luscious@A +lusciously@v +lusciousness@N +lush@ANV +lusher@? +lushes@? +lushest@? +lushness@N +lusitania@N +lust@N +lusted@A +luster@Nti +lustful@A +lustfully@v +lustier@A +lustiest@A +lustily@v +lustiness@N +lusting@A +lustre@NV +lustrous@A +lusts@p +lusty@A +lute@Nt +lutes@pt +luther@N +lutheran@NA +lutheranism@N +lutherans@p +luvvie@? +luxembourg@N +luxembourger@? +luxembourgers@p +luxuriance@N +luxuriant@A +luxuriantly@v +luxuriate@i +luxuriated@i +luxuriates@i +luxuriating@i +luxuries@p +luxurious@A +luxuriously@v +luxuriousness@N +luxury@N +luzon@N +lvov@N +lyceum@N +lyceums@p +lychee@N +lychees@p +lychgate@? +lychgates@? +lycra@? +lycurgus@N +lydia@N +lye@N +lyell@N +lying@V +lyly@N +lymph@N +lymphatic@AN +lymphatics@p +lymphoma@N +lymphomas@p +lymphomata@? +lynch@N +lynched@A +lynches@? +lynching@N +lynchings@p +lynchpin@? +lynchpins@p +lynn@N +lynx@N +lynxes@? +lyon@N +lyons@N +lyra@N +lyre@N +lyrebird@N +lyrebirds@p +lyres@p +lyric@AN +lyrical@A +lyrically@v +lyricism@N +lyricist@N +lyricists@p +lyrics@p +lysenko@N +lysol@N +ma@N +mac@N +macabre@A +macadam@N +macadamia@N +macadamias@p +macao@N +macaroni@N +macaronies@p +macaronis@p +macaroon@N +macaroons@p +macarthur@N +macaulay@N +macaw@N +macaws@p +macbeth@N +macdonald@N +mace@N +maced@N +macedonia@N +macedonian@AN +macedonians@p +macerate@V +macerated@V +macerates@V +macerating@V +maceration@N +maces@p +mach@N +machete@N +machetes@p +machiavelli@N +machiavellian@AN +machinable@A +machination@N +machinations@p +machine@Nt +machined@V +machinery@N +machines@pt +machining@V +machinist@N +machinists@p +machismo@N +macho@? +macing@A +macintosh@N +macintoshes@? +mack@N +mackenzie@N +mackerel@N +mackerels@p +mackinaw@N +mackinaws@p +mackintosh@N +mackintoshes@? +macks@p +macmillan@N +macon@N +macro@N +macrobiotic@A +macrobiotics@N +macrocosm@N +macrocosms@p +macroeconomic@? +macroeconomics@N +macrologies@? +macrology@? +macron@N +macrons@p +macros@p +macroscopic@A +macs@p +mad@AV +madagascan@NA +madagascans@p +madagascar@NA +madam@N +madame@N +madams@p +madcap@AN +madcaps@p +madden@N +maddened@A +maddening@A +maddeningly@? +maddens@p +madder@N +madders@p +maddest@A +made@VA +madeira@N +madeiras@p +mademoiselle@N +mademoiselles@p +madhouse@N +madhouses@p +madison@N +madly@v +madman@N +madmen@p +madness@N +madonna@N +madonnas@p +madras@N +madrases@? +madrid@N +madrigal@N +madrigals@p +mads@pV +madwoman@N +madwomen@p +maelstrom@N +maelstroms@p +maestri@? +maestro@N +maestros@p +mafia@N +mafias@p +mafiosi@? +mafioso@N +mafiosos@p +mag@N +magazine@N +magazines@p +magdalena@N +magellan@N +magellanic@? +magenta@N +maggot@N +maggots@p +magi@N +magic@NAt +magical@A +magically@v +magician@N +magicians@p +magicked@? +magicking@? +magics@pt +magisterial@A +magisterially@v +magistracy@N +magistrate@N +magistrates@p +magma@N +magnanimity@N +magnanimous@A +magnanimously@? +magnate@N +magnates@p +magnesia@N +magnesium@N +magnet@N +magnetic@A +magnetically@v +magnetisation@N +magnetise@t +magnetised@t +magnetises@t +magnetising@t +magnetism@N +magnetization@N +magnetize@t +magnetized@t +magnetizes@t +magnetizing@t +magneto@N +magnetos@p +magnetosphere@N +magnets@p +magnification@N +magnifications@p +magnificence@N +magnificent@A +magnificently@v +magnified@V +magnifier@? +magnifiers@p +magnifies@? +magnify@Vt +magnifying@V +magnitogorsk@N +magnitude@N +magnitudes@p +magnolia@N +magnolias@p +magnum@N +magnums@p +magog@N +magpie@N +magpies@p +magritte@N +mags@p +magyar@NA +magyars@p +mahabharata@? +maharaja@? +maharajah@N +maharajahs@p +maharajas@p +maharanee@N +maharanees@p +maharani@N +maharanis@p +maharashtra@N +maharishi@N +maharishis@p +mahatma@N +mahatmas@p +mahayana@N +mahayanist@N +mahdi@NA +mahican@N +mahicans@p +mahjong@N +mahler@N +mahoganies@p +mahogany@N +maid@N +maiden@N +maidenhair@N +maidenhead@N +maidenheads@p +maidenhood@N +maidenly@A +maidens@p +maids@p +maidservant@N +maidservants@p +mail@Nt +mailbag@N +mailbags@p +mailbomb@? +mailbombed@? +mailbombing@? +mailbombs@p +mailbox@N +mailboxes@? +mailed@A +mailer@N +mailers@p +mailing@At +mailings@p +maillol@N +mailman@N +mailmen@p +mails@pt +mailshot@? +mailshots@p +maim@tN +maimed@tA +maiming@tA +maimonides@N +maims@tp +main@AN +maine@N +mainframe@? +mainframes@? +mainland@N +mainlands@p +mainline@ti +mainlined@ti +mainlines@ti +mainlining@ti +mainly@v +mainmast@N +mainmasts@p +mains@N +mainsail@N +mainsails@p +mainspring@N +mainsprings@p +mainstay@N +mainstays@p +mainstream@NA +mainstreamed@A +mainstreaming@A +mainstreams@p +maintain@t +maintainability@? +maintainable@A +maintained@t +maintainer@N +maintainers@p +maintaining@t +maintains@t +maintenance@N +maisonette@N +maisonettes@p +maize@N +maizes@p +maj@? +majestic@A +majestically@v +majesties@p +majesty@N +major@N +majordomo@? +majordomos@p +majored@A +majorette@N +majorettes@p +majoring@A +majorities@p +majority@N +majorly@? +majors@p +majuro@? +make@ViN +makeover@? +makeovers@p +maker@N +makers@p +makes@Vip +makeshift@AN +makeshifts@p +makeup@N +makeups@p +makeweight@N +makeweights@p +making@N +makings@p +malabo@N +malacca@N +malachi@N +malachite@N +maladies@p +maladjusted@A +maladjustment@N +maladministration@? +maladroit@A +maladroitly@v +maladroitness@N +malady@N +malagasy@NA +malaise@N +malamud@N +malapropism@N +malapropisms@p +malaria@N +malarial@A +malarkey@N +malawi@N +malay@NA +malayalam@N +malayan@N +malays@p +malaysia@N +malaysian@? +malaysians@p +malcolm@N +malcontent@AN +malcontents@p +maldives@pN +maldivian@? +maldivians@p +male@AN +malediction@N +maledictions@p +malefactor@N +malefactors@p +maleness@N +males@p +malevolence@? +malevolent@A +malevolently@v +malfeasance@NA +malformation@N +malformations@p +malformed@? +malfunction@iN +malfunctioned@iA +malfunctioning@iA +malfunctions@ip +mali@N +malian@? +malians@p +malice@N +malicious@A +maliciously@v +malign@At +malignancies@p +malignancy@N +malignant@A +malignantly@v +maligned@At +maligning@At +malignity@N +maligns@pt +malinger@i +malingered@i +malingerer@N +malingerers@p +malingering@i +malingers@i +malinowski@N +mall@N +mallard@N +mallards@p +malleability@N +malleable@A +mallet@N +mallets@p +mallow@N +mallows@p +malls@p +malnourished@A +malnutrition@N +malodorous@A +malpractice@N +malpractices@p +malraux@N +malt@NV +malta@N +malted@AV +malteds@p +maltese@AN +malthus@N +malthusian@AN +malting@N +maltreat@t +maltreated@t +maltreating@t +maltreatment@? +maltreats@t +malts@pV +mam@N +mama@N +mamas@p +mamba@N +mambas@p +mambo@Ni +mamboed@Ai +mamboing@Ai +mambos@pi +mameluke@N +mamet@? +mamma@N +mammal@N +mammalian@NA +mammalians@p +mammals@p +mammary@A +mammas@p +mammies@? +mammogram@? +mammograms@p +mammography@? +mammon@N +mammoth@NA +mammoths@p +mammy@N +mams@p +man@N +manacle@Nt +manacled@At +manacles@pt +manacling@At +manage@ViN +manageability@? +manageable@A +managed@V +management@N +managements@p +manager@N +manageress@N +manageresses@? +managerial@A +managers@p +manages@Vip +managing@A +managua@N +manama@N +manasseh@N +manatee@N +manatees@p +manaus@N +manchester@N +manchu@NA +manchuria@N +manchurian@AN +mandala@N +mandalas@p +mandalay@N +mandarin@N +mandarins@p +mandate@NVt +mandated@V +mandates@pVt +mandating@V +mandatory@AN +mandela@? +mandelbrot@? +mandible@NA +mandibles@p +mandingo@N +mandolin@N +mandolins@p +mandrake@N +mandrakes@p +mandrill@N +mandrills@p +mane@N +manes@N +manet@i +maneuver@NV +maneuverability@N +maneuverable@A +maneuvered@AV +maneuvering@AV +maneuverings@p +maneuvers@pV +manful@A +manfully@v +manganese@N +mange@N +manged@A +mangeds@p +manger@N +mangers@p +mangetout@? +mangetouts@p +mangier@A +mangiest@A +mangle@tN +mangled@Vt +mangler@N +manglers@p +mangles@tp +mangling@Vt +mango@N +mangoes@? +mangos@p +mangrove@N +mangroves@p +mangy@A +manhandle@t +manhandled@t +manhandles@t +manhandling@t +manhattan@N +manhattans@p +manhole@N +manholes@p +manhood@N +manhunt@N +manhunts@p +mani@N +mania@N +maniac@N +maniacal@A +maniacally@v +maniacs@p +manias@p +manic@AN +manically@? +manichean@NA +manics@p +manicure@NVt +manicured@AVt +manicures@pVt +manicuring@AVt +manicurist@N +manicurists@p +manifest@AtiN +manifestation@N +manifestations@p +manifested@Ati +manifesting@Ati +manifestly@? +manifesto@N +manifestoes@? +manifestos@p +manifests@pti +manifold@ANt +manifolded@At +manifolding@At +manifolds@pt +manikin@N +manikins@p +manila@N +manilas@p +manilla@N +manioc@N +manipulate@t +manipulated@t +manipulates@t +manipulating@t +manipulation@? +manipulations@p +manipulative@N +manipulator@N +manipulators@p +manitoba@N +mankind@N +manky@A +manlier@A +manliest@A +manliness@N +manly@Av +mann@N +manna@N +manned@A +mannequin@N +mannequins@p +manner@N +mannered@A +mannerism@N +mannerisms@p +mannerly@Av +manners@N +mannikin@N +mannikins@p +manning@N +mannish@A +mannishly@v +mannishness@N +manoeuver@? +manoeuvered@? +manoeuvering@? +manoeuverings@p +manoeuvers@p +manoeuvrability@? +manoeuvrable@? +manoeuvre@Nti +manoeuvred@Ati +manoeuvres@pti +manoeuvring@Ati +manoeuvrings@p +manor@N +manorial@A +manors@p +manpower@N +mans@p +mansard@N +mansards@p +manse@N +manservant@N +manses@p +mansfield@N +mansion@N +mansions@p +manslaughter@N +mantegna@N +mantel@N +mantelpiece@N +mantelpieces@p +mantels@p +mantelshelf@? +mantelshelves@? +mantes@? +mantilla@N +mantillas@p +mantis@N +mantises@? +mantissa@N +mantle@N +mantled@V +mantlepiece@? +mantlepieces@? +mantles@p +mantling@N +mantoes@? +mantra@N +mantras@p +manual@AN +manually@v +manuals@p +manufacture@VtN +manufactured@V +manufacturer@N +manufacturers@p +manufactures@Vtp +manufacturing@V +manumit@V +manumits@V +manumitted@t +manumitting@t +manure@Nt +manured@V +manures@pt +manuring@V +manuscript@N +manuscripts@p +manx@AN +many@DN +maoism@NA +maoisms@p +maoist@? +maoists@p +maori@NA +maoris@p +map@N +maple@N +maples@N +mapped@V +mapper@? +mapping@N +mappings@p +maps@p +maputo@N +mar@N +marabou@N +marabous@p +maraca@N +maracaibo@N +maracas@p +maraschino@N +marat@N +maratha@N +marathi@AN +marathon@N +marathoner@N +marathoners@p +marathons@p +maraud@VN +marauded@VA +marauder@N +marauders@p +marauding@A +marauds@Vp +marble@N +marbled@V +marbles@N +marbling@N +marc@N +marceau@N +march@itN +marched@itA +marcher@N +marchers@p +marches@N +marching@itA +marchioness@N +marchionesses@? +marciano@N +marconi@N +marduk@N +mare@N +mares@p +margaret@N +margarine@N +margarita@N +margaritas@p +marge@N +margin@Nt +marginal@A +marginalia@p +marginalisation@? +marginalise@? +marginalised@? +marginalises@? +marginalising@? +marginalization@? +marginalize@? +marginalized@? +marginalizes@? +marginalizing@? +marginally@? +marginals@p +margins@pt +maria@N +mariachi@N +mariachis@p +marian@AN +marianne@N +marigold@N +marigolds@p +marihuana@? +marijuana@N +marimba@N +marimbas@p +marin@N +marina@N +marinade@NV +marinaded@AV +marinades@pV +marinading@AV +marinas@p +marinate@V +marinated@t +marinates@V +marinating@t +marine@AN +mariner@N +mariners@p +marines@p +marionette@N +marionettes@p +maritain@N +marital@A +maritime@A +marius@N +marjoram@N +mark@N +markdown@NVt +markdowns@pVt +marked@A +markedly@v +marker@N +markers@p +market@N +marketability@N +marketable@A +marketed@A +marketeer@? +marketeers@p +marketer@N +marketers@p +marketing@N +marketplace@N +marketplaces@p +markets@p +markham@N +marking@N +markings@p +markov@? +marks@N +marksman@N +marksmanship@? +marksmen@? +markup@N +markups@p +marlborough@N +marlin@N +marlins@p +marlowe@N +marmalade@NA +marmara@N +marmoset@N +marmosets@p +marmot@N +marmots@p +marne@N +maronite@N +maroon@tN +marooned@tA +marooning@tA +maroons@tp +marque@N +marquee@N +marquees@p +marques@p +marquess@N +marquesses@? +marquetry@N +marquette@N +marquis@N +marquise@N +marquises@p +marred@t +marriage@N +marriageable@A +marriages@p +married@AN +marrieds@p +marries@? +marring@t +marrow@N +marrows@p +marry@Vt! +marrying@V +mars@N +marsala@N +marseillaise@N +marseilles@N +marses@p +marsh@N +marshal@N +marshaled@V +marshaling@V +marshall@N +marshalled@V +marshalling@V +marshals@p +marshes@? +marshier@A +marshiest@A +marshland@N +marshlands@p +marshmallow@N +marshmallows@p +marshy@A +marsupial@NA +marsupials@p +mart@N +martel@N +marten@N +martens@N +martha@N +martial@A +martian@AN +martians@p +martin@N +martinet@N +martinets@p +martini@N +martinique@NA +martinis@p +martins@p +marts@p +martyr@N +martyrdom@N +martyred@A +martyring@A +martyrs@p +marvel@N +marveled@V +marveling@V +marvelled@V +marvelling@V +marvellous@A +marvellously@v +marvelous@A +marvelously@v +marvels@p +marvin@N +marx@N +marxism@N +marxisms@p +marxist@NA +marxists@p +mary@N +maryland@N +marylander@? +marzipan@N +mas@N +masai@N +masaryk@N +masc@N +mascagni@N +mascara@N +mascaraed@A +mascaraing@A +mascaras@p +mascot@N +mascots@p +masculine@A +masculines@p +masculinity@N +masefield@N +maseru@N +mash@Nt +mashed@At +masher@? +mashers@p +mashes@p +mashhad@N +mashing@At +mask@NVt +masked@A +masking@AVt +masks@pVt +masochism@N +masochist@N +masochistic@A +masochists@p +mason@N +masonic@A +masonite@N +masonry@N +masons@p +masque@N +masquerade@Ni +masqueraded@V +masquerader@N +masqueraders@p +masquerades@pi +masquerading@V +masques@p +mass@N +massachusetts@N +massacre@Nt +massacred@V +massacres@pt +massacring@V +massage@Nt +massaged@V +massages@pt +massaging@V +massasoit@N +massed@A +massenet@N +masses@p +masseur@N +masseurs@p +masseuse@N +masseuses@p +massey@N +massif@N +massifs@p +massing@A +massive@A +massively@v +massiveness@N +mast@N +mastectomies@p +mastectomy@N +master@N +masterclass@? +masterclasses@? +mastered@A +masterful@A +masterfully@v +mastering@A +masterly@A +mastermind@tN +masterminded@tA +masterminding@tA +masterminds@tp +masterpiece@N +masterpieces@p +masters@p +masterstroke@N +masterstrokes@p +masterwork@? +masterworks@p +mastery@N +masthead@Nt +mastheads@pt +mastic@N +masticate@V +masticated@ti +masticates@V +masticating@ti +mastication@N +mastiff@N +mastiffs@p +mastitis@N +mastodon@N +mastodons@p +mastoid@AN +mastoids@p +masts@p +masturbate@V +masturbated@V +masturbates@V +masturbating@V +masturbation@N +masturbatory@A +mat@N +matador@N +matadors@p +match@NV +matchbook@N +matchbooks@p +matchbox@N +matchboxes@? +matched@AV +matches@? +matching@AV +matchless@A +matchmaker@NA +matchmakers@p +matchmaking@NA +matchstick@N +matchsticks@p +matchwood@N +mate@N +mated@V +mater@N +material@NA +materialisation@N +materialise@ti +materialised@ti +materialises@ti +materialising@ti +materialism@N +materialist@N +materialistic@? +materialistically@? +materialists@p +materialization@N +materialize@i +materialized@V +materializes@i +materializing@V +materially@v +materials@p +maternal@A +maternally@v +maternity@N +maters@p +mates@p +matey@AN +mateys@p +math@N +mathematical@A +mathematically@v +mathematician@N +mathematicians@p +mathematics@N +mather@N +maths@N +matilda@N +mating@NV +matins@N +matisse@N +matres@? +matriarch@N +matriarchal@A +matriarchies@p +matriarchs@p +matriarchy@N +matrices@N +matricide@N +matricides@p +matriculate@ViN +matriculated@V +matriculates@Vip +matriculating@V +matriculation@N +matrimonial@A +matrimony@N +matrix@N +matrixes@? +matron@N +matronly@A +matrons@p +mats@N +matt@ANV +matte@N +matted@A +matter@Ni +mattered@Ai +matterhorn@N +mattering@Ai +matters@pi +mattes@p +matthew@N +matthews@N +matthias@N +matting@N +mattins@N +mattock@N +mattocks@p +mattress@N +mattresses@? +matts@pV +maturation@N +mature@AVi +matured@AVi +maturely@v +maturer@N +matures@pVi +maturest@? +maturing@AVi +maturities@? +maturity@N +matzo@N +matzoh@? +matzohs@p +matzos@p +matzot@? +matzoth@p +maudlin@A +maugham@N +maui@N +maul@tN +mauled@tA +mauling@tA +mauls@tp +maunder@i +maundered@i +maundering@i +maunders@i +maupassant@N +mauriac@N +maurice@N +mauritania@NA +mauritius@N +maurois@N +mauser@N +mausolea@? +mausoleum@N +mausoleums@p +mauve@N +maven@? +mavens@p +maverick@N +mavericks@p +mavin@N +mavins@p +maw@N +mawkish@A +mawkishly@v +mawkishness@N +maws@p +max@N +maxed@A +maxes@? +maxilla@N +maxillae@? +maxillary@AN +maxillas@p +maxim@N +maxima@N +maximal@A +maximally@v +maximilian@N +maximisation@? +maximise@? +maximised@? +maximises@? +maximising@? +maximization@N +maximize@t +maximized@t +maximizes@t +maximizing@t +maxims@p +maximum@NA +maximums@p +maxing@A +maxwell@N +may@N +maya@N +mayan@A +mayans@p +mayas@p +maybe@v +maybes@v +mayday@N +maydays@p +mayer@N +mayfair@N +mayflies@p +mayflower@N +mayflowers@p +mayfly@N +mayhem@N +mayo@N +mayonnaise@N +mayor@N +mayoral@A +mayoralty@N +mayoress@N +mayoresses@? +mayors@p +maypole@N +maypoles@p +mays@N +mazarin@N +mazda@N +maze@N +mazes@p +mazourka@? +mazourkas@p +mazurka@N +mazurkas@p +mb@N +mba@N +mbabane@N +mc@N +mccarthy@N +mccarthyism@NA +mcclellan@N +mccormick@N +mccoy@N +mcintosh@N +mckinley@N +md@N +me@N +mead@N +meade@N +meadow@N +meadowlark@N +meadowlarks@p +meadows@N +meager@A +meagerly@v +meagerness@N +meagre@A +meal@N +mealier@A +mealiest@A +meals@p +mealtime@N +mealtimes@p +mealy@A +mean@ViAN +meander@iN +meandered@iA +meandering@iA +meanderings@p +meanders@ip +meaner@? +meanest@? +meanie@N +meanies@p +meaning@NA +meaningful@A +meaningfully@v +meaningfulness@N +meaningless@A +meaninglessly@v +meaninglessness@N +meanings@p +meanly@v +meanness@? +means@N +meant@V +meantime@Nv +meanwhile@vN +meany@N +measles@N +measlier@A +measliest@A +measly@A +measurable@A +measurably@v +measure@Nit +measured@A +measureless@A +measurement@N +measurements@p +measures@p +measuring@V +meat@N +meatball@N +meatballs@p +meatier@A +meatiest@A +meatloaf@? +meatloaves@? +meats@p +meaty@A +mecca@N +meccas@p +mechanic@N +mechanical@AN +mechanically@v +mechanics@N +mechanisation@? +mechanise@? +mechanised@? +mechanises@? +mechanising@? +mechanism@N +mechanisms@p +mechanistic@A +mechanistically@? +mechanization@N +mechanize@t +mechanized@t +mechanizes@t +mechanizing@t +med@N +medal@NVA +medalist@? +medalists@p +medallion@N +medallions@p +medallist@N +medallists@p +medals@pV +medan@N +meddle@i +meddled@i +meddler@? +meddlers@p +meddles@i +meddlesome@A +meddling@i +medea@N +medellin@? +media@N +mediaeval@A +medial@AN +median@AN +medians@p +medias@p +mediate@VitA +mediated@V +mediates@Vitp +mediating@V +mediation@N +mediator@N +mediators@p +medic@N +medicaid@N +medicaids@p +medical@AN +medically@? +medicals@p +medicare@N +medicares@p +medicate@t +medicated@t +medicates@t +medicating@t +medication@N +medications@p +medici@N +medicinal@AN +medicinally@? +medicine@N +medicines@p +medico@N +medicos@p +medics@p +medieval@A +medina@N +mediocre@A +mediocrities@p +mediocrity@N +meditate@i +meditated@V +meditates@i +meditating@V +meditation@N +meditations@p +meditative@? +meditatively@v +mediterranean@NA +mediterraneans@p +medium@AN +mediums@p +medley@NA +medleys@p +medulla@N +medullae@p +medullas@p +medusa@N +meek@A +meeker@N +meekest@? +meekly@v +meekness@N +meet@VtNA +meeting@N +meetinghouse@? +meetinghouses@? +meetings@p +meets@Vtp +meg@N +mega@? +megabucks@p +megabyte@? +megabytes@? +megacycle@N +megacycles@p +megahertz@N +megahertzes@p +megalith@N +megalithic@A +megaliths@p +megalomania@N +megalomaniac@N +megalomaniacs@p +megalopolis@N +megalopolises@? +megaphone@N +megaphoned@A +megaphones@p +megaphoning@A +megapixel@? +megapixels@p +megastar@? +megastars@p +megaton@N +megatons@p +megawatt@N +megawatts@p +mego@? +megos@p +megs@p +meir@N +mekong@N +melamine@N +melancholia@N +melancholic@AN +melancholics@p +melancholy@NA +melanesia@N +melanesian@AN +melange@? +melanges@? +melanin@N +melanoma@N +melanomas@p +melanomata@p +melba@N +melbourne@NA +melchior@N +melchizedek@N +meld@VN +melded@VA +melding@VA +melds@Vp +mellifluous@A +mellifluously@v +mellon@N +mellow@AV +mellowed@AV +mellower@? +mellowest@? +mellowing@AV +mellowness@N +mellows@pV +melodic@A +melodically@v +melodies@p +melodious@A +melodiously@v +melodiousness@? +melodrama@N +melodramas@p +melodramatic@AN +melodramatically@v +melody@N +melon@N +melons@p +melpomene@N +melt@VN +meltdown@? +meltdowns@p +melted@VA +melting@VA +melts@Vp +melville@N +member@N +members@p +membership@N +memberships@p +membrane@N +membranes@p +membranous@A +meme@? +memento@N +mementoes@p +mementos@p +memes@? +memling@N +memo@N +memoir@N +memoirs@p +memorabilia@p +memorable@A +memorably@v +memoranda@? +memorandum@N +memorandums@p +memorial@AN +memorialise@t +memorialised@t +memorialises@t +memorialising@t +memorialize@t +memorialized@t +memorializes@t +memorializing@t +memorials@p +memories@? +memorisation@? +memorise@p +memorised@A +memorises@p +memorising@A +memorization@N +memorize@t +memorized@t +memorizes@t +memorizing@t +memory@N +memos@p +memphis@N +memsahib@N +memsahibs@p +men@N +menace@VN +menaced@V +menaces@Vp +menacing@V +menacingly@v +menage@? +menagerie@N +menageries@p +menages@? +menander@N +mencius@N +mencken@N +mend@N +mendacious@p +mendacity@N +mended@A +mendel@N +mendelian@A +mendelssohn@N +mender@N +menders@p +mendicant@AN +mendicants@p +mending@N +mendoza@N +mends@p +menes@N +menfolk@p +menhaden@N +menhadens@p +menial@AN +menially@v +menials@p +meningitis@N +mennonite@N +mennonites@p +menominee@? +menopausal@A +menopause@N +menorah@N +menorahs@p +menotti@N +mensa@N +menservants@Np +menses@N +menstrual@A +menstruate@i +menstruated@i +menstruates@i +menstruating@i +menstruation@N +menswear@N +mental@A +mentalities@p +mentality@N +mentally@v +menthol@N +mentholated@A +mention@tN +mentioned@tA +mentioning@tA +mentions@tp +mentor@N +mentored@A +mentoring@A +mentors@p +menu@N +menus@p +menzies@N +meow@i! +meowed@i! +meowing@i! +meows@i! +mephistopheles@N +mercantile@A +mercator@N +mercenaries@p +mercenary@AN +mercerise@? +mercerised@? +mercerises@? +mercerising@? +mercerize@t +mercerized@t +mercerizes@t +mercerizing@t +merchandise@NV +merchandised@V +merchandises@pV +merchandising@V +merchandize@? +merchandized@? +merchandizes@? +merchandizing@? +merchant@N +merchantman@N +merchantmen@p +merchants@p +mercia@N +mercies@p +merciful@A +mercifully@v +merciless@A +mercilessly@v +mercurial@AN +mercuric@A +mercuries@p +mercurochrome@N +mercury@N +mercy@N +mere@AN +meredith@N +merely@v +meres@p +merest@A +meretricious@A +merganser@N +mergansers@p +merge@V +merged@V +merger@N +mergers@p +merges@V +merging@V +meridian@N +meridians@p +meringue@N +meringues@p +merino@NA +merinos@p +merit@Nt +merited@A +meriting@At +meritocracies@? +meritocracy@N +meritocratic@? +meritorious@A +meritoriously@v +merits@p +merlin@N +merlot@? +mermaid@N +mermaids@p +merman@N +mermen@? +merovingian@AN +merrier@A +merriest@A +merrily@N +merriment@N +merriness@? +merry@A +merrymaker@N +merrymakers@p +merrymaking@N +merthiolate@N +merton@N +mes@p +mesa@N +mesas@p +mescal@N +mescalin@? +mescaline@N +mescals@p +mesdames@N +mesdemoiselles@N +mesh@NVi +meshed@N +meshes@? +meshing@AVi +mesmeric@? +mesmerise@? +mesmerised@? +mesmerises@? +mesmerising@? +mesmerism@N +mesmerize@t +mesmerized@t +mesmerizes@t +mesmerizing@t +mesolithic@NA +mesopotamia@NA +mesozoic@AN +mesquite@N +mesquites@p +mess@Nti +message@Nt +messaged@At +messages@pt +messaging@At +messed@Ati +messenger@N +messengers@p +messes@? +messiaen@N +messiah@N +messiahs@p +messianic@A +messier@A +messiest@A +messieurs@N +messily@v +messiness@N +messing@N +messy@A +mestizo@N +mestizoes@? +mestizos@p +met@V +meta@AN +metabolic@A +metabolise@ti +metabolised@ti +metabolises@ti +metabolising@ti +metabolism@N +metabolisms@p +metabolize@V +metabolized@V +metabolizes@V +metabolizing@V +metacarpal@AN +metacarpals@p +metacarpi@? +metacarpus@N +metal@NAVt +metalanguage@N +metalanguages@p +metaled@V +metalled@A +metallic@A +metallurgical@? +metallurgist@? +metallurgists@p +metallurgy@N +metals@pVt +metalwork@N +metamorphic@A +metamorphism@N +metamorphose@V +metamorphosed@V +metamorphoses@N +metamorphosing@V +metamorphosis@N +metaphor@N +metaphorical@A +metaphorically@v +metaphors@p +metaphysical@A +metaphysics@N +metastases@p +metastasis@N +metastasise@? +metastasised@A +metastasises@? +metastasising@A +metastasize@i +metastasized@i +metastasizes@i +metastasizing@i +metatarsal@AN +metatarsals@p +mete@tVN +meted@t +meteor@N +meteoric@A +meteorite@N +meteorites@p +meteoroid@N +meteoroids@p +meteorological@A +meteorologist@? +meteorologists@p +meteorology@N +meteors@p +meter@N +metered@A +metering@A +meters@p +metes@tVp +methadon@? +methadone@N +methane@N +methanol@N +methinks@Vt +method@N +methodical@A +methodically@v +methodism@N +methodisms@p +methodist@NA +methodists@p +methodological@? +methodologically@? +methodologies@p +methodology@N +methods@p +methought@V +meths@N +methuselah@N +meticulous@A +meticulously@v +meticulousness@N +meting@t +metre@N +metres@p +metric@AN +metrical@A +metrically@v +metrication@? +metrics@N +metro@N +metronome@N +metronomes@p +metropolis@N +metropolises@p +metropolitan@AN +metros@p +metternich@N +mettle@N +mettlesome@A +meuse@N +mew@iNt +mewed@iAt +mewing@iAt +mewl@iN +mewled@iA +mewling@iA +mewls@ip +mews@N +mexicali@N +mexican@AN +mexicans@p +mexico@N +meyerbeer@N +mezzanine@N +mezzanines@p +mezzo@vN +mezzos@vp +mfg@? +mfr@? +mg@N +mhz@? +mi@N +mia@N +miami@N +miamis@p +miaow@Ni +miaowed@Ai +miaowing@Ai +miaows@pi +miasma@N +miasmas@p +miasmata@p +mic@N +mica@N +micah@N +micawber@N +mice@N +mich@N +michael@N +michelangelo@N +michelson@N +michigan@N +michigander@? +michiganders@p +mick@N +mickey@N +mickeys@p +micks@p +micmac@N +micra@N +micro@N +microbe@N +microbes@p +microbiological@A +microbiologist@N +microbiologists@p +microbiology@N +microchip@? +microchips@p +microcode@? +microcomputer@? +microcomputers@p +microcosm@N +microcosms@p +microeconomics@N +microelectronic@A +microelectronics@N +microfiche@N +microfiches@p +microfilm@NV +microfilmed@AV +microfilming@AV +microfilms@pV +microfloppies@? +microfloppieses@? +microlight@? +microlights@p +micrometer@N +micrometers@p +micrometre@? +micrometres@? +micron@N +micronesia@N +micronesian@AN +microns@p +microorganism@N +microorganisms@p +microphone@N +microphones@p +microprocessor@N +microprocessors@p +micros@N +microscope@N +microscopes@p +microscopic@A +microscopically@? +microscopy@N +microsecond@N +microseconds@p +microsoft@? +microsurgery@N +microwavable@? +microwave@N +microwaveable@? +microwaved@A +microwaves@p +microwaving@A +mics@p +mid@ANP +midair@N +midas@N +midday@N +middies@p +middle@ANt +middlebrow@NA +middlebrows@p +middleman@N +middlemen@p +middles@pt +middleton@N +middleweight@N +middleweights@p +middling@Av +middy@N +midfield@N +midfielder@? +midfielders@p +midge@N +midges@p +midget@N +midgets@p +midland@N +midlands@N +midmost@Av +midnight@Nv +midpoint@N +midpoints@p +midriff@N +midriffs@p +midsection@N +midsections@p +midshipman@N +midshipmen@? +midsize@? +midsized@? +midst@NP +midstream@N +midsummer@N +midterm@N +midterms@p +midtown@N +midway@AN +midways@p +midweek@N +midweeks@p +midwest@N +midwestern@? +midwife@N +midwifed@A +midwiferies@? +midwifery@N +midwifes@p +midwifing@A +midwinter@N +midwived@? +midwives@? +midwiving@? +midyear@N +midyears@p +mien@N +miens@p +miff@VN +miffed@A +miffing@VA +miffs@Vp +mig@N +might@VN +mightier@A +mightiest@A +mightily@v +mightiness@N +mighty@AvN +migraine@N +migraines@p +migrant@NA +migrants@p +migrate@i +migrated@i +migrates@i +migrating@i +migration@N +migrations@p +migratory@A +mike@N +miked@V +mikes@N +miking@V +mil@N +milan@N +milch@N +mild@AN +milder@? +mildest@? +mildew@NV +mildewed@AV +mildewing@AV +mildews@pV +mildly@v +mildness@N +mile@N +mileage@N +mileages@p +milepost@N +mileposts@p +miler@N +milers@p +miles@N +milestone@N +milestones@p +milieu@N +milieus@p +milieux@? +militancy@N +militant@AN +militantly@v +militants@p +militaries@? +militarily@v +militarisation@N +militarise@t +militarised@t +militarises@t +militarising@t +militarism@N +militarist@N +militaristic@? +militarists@p +militarization@N +militarize@t +militarized@t +militarizes@t +militarizing@t +military@AN +militate@i +militated@i +militates@i +militating@i +militia@N +militiaman@N +militiamen@p +militias@p +milk@NVit +milked@AVit +milker@N +milkier@A +milkiest@A +milkiness@N +milking@AVit +milkmaid@N +milkmaids@p +milkman@N +milkmen@p +milks@N +milkshake@? +milkshakes@? +milksop@N +milksops@p +milkweed@N +milkweeds@p +milky@A +mill@N +millage@? +millay@N +milled@A +millennia@? +millennial@A +millennium@N +millenniums@p +millepede@N +millepedes@p +miller@N +millers@p +millet@N +millibar@N +millibars@p +milligram@N +milligramme@? +milligrammes@? +milligrams@p +millikan@N +milliliter@N +milliliters@p +millilitre@N +millilitres@p +millimeter@N +millimeters@p +millimetre@N +millimetres@p +milliner@N +milliners@p +millinery@N +milling@N +million@ND +millionaire@N +millionaires@p +millionairess@? +millionairesses@? +millions@pD +millionth@NA +millionths@p +millipede@N +millipedes@p +millisecond@N +milliseconds@p +millpond@N +millponds@p +millrace@N +millraces@p +mills@N +millstone@N +millstones@p +milne@N +milometer@N +milometers@p +milquetoast@N +milquetoasts@p +mils@p +miltiades@N +milton@N +miltonic@A +milwaukee@N +mime@NV +mimed@V +mimeograph@Nt +mimeographed@At +mimeographing@At +mimeographs@pt +mimes@pV +mimetic@A +mimic@VNA +mimicked@V +mimicking@V +mimicries@p +mimicry@N +mimics@Vp +miming@V +mimosa@N +mimosas@p +min@N +minaret@N +minarets@p +minatory@A +mince@tiN +minced@tiA +mincemeat@N +mincer@N +mincers@p +minces@tip +mincing@A +mind@NVt +mindanao@N +mindbogglingly@? +minded@A +mindedness@? +minder@N +minders@p +mindful@A +mindfully@v +mindfulness@N +minding@AVt +mindless@A +mindlessly@v +mindlessness@N +mindoro@N +minds@pVt +mindset@? +mindsets@p +mine@N +mined@V +minefield@N +minefields@p +miner@N +mineral@NA +mineralogist@N +mineralogists@p +mineralogy@N +minerals@p +miners@p +minerva@N +mines@N +minestrone@N +minesweeper@N +minesweepers@p +ming@NA +mingle@Vi +mingled@V +mingles@Vi +mingling@V +mingy@A +mini@AN +miniature@NA +miniatures@p +miniaturisation@? +miniaturise@? +miniaturised@? +miniaturises@? +miniaturising@? +miniaturist@N +miniaturists@p +miniaturization@N +miniaturize@t +miniaturized@t +miniaturizes@t +miniaturizing@t +minibar@? +minibars@p +minibike@? +minibikes@? +minibus@N +minibuses@? +minibusses@? +minicab@N +minicabs@p +minicam@N +minicams@p +minicomputer@N +minicomputers@p +minifloppies@? +minifloppieses@? +minim@NA +minima@N +minimal@A +minimalism@? +minimalist@N +minimalists@p +minimally@v +minimisation@N +minimise@t +minimised@t +minimises@t +minimising@t +minimization@N +minimize@t +minimized@t +minimizes@t +minimizing@t +minims@p +minimum@NA +minimums@p +mining@N +minion@NA +minions@p +minis@p +miniscule@? +miniscules@? +miniseries@? +miniskirt@N +miniskirts@p +minister@Nit +ministered@Ait +ministerial@A +ministering@Ait +ministers@pit +ministrant@AN +ministrants@p +ministration@N +ministrations@p +ministries@p +ministry@N +minivan@? +minivans@p +mink@N +minks@p +minn@N +minneapolis@N +minnesota@N +minnesotan@AN +minnesotans@p +minnow@N +minnows@p +minoan@AN +minoans@p +minor@ANi +minored@Ai +minoring@Ai +minorities@p +minority@N +minors@pi +minos@N +minotaur@N +minsk@N +minster@N +minsters@p +minstrel@N +minstrels@p +mint@NAVt +minted@AVt +mintier@? +mintiest@? +minting@AVt +mints@pVt +minty@? +minuend@N +minuends@p +minuet@N +minuets@p +minuit@N +minus@PAN +minuscule@NA +minuscules@p +minuses@? +minute@NtA +minuted@V +minutely@vA +minuteman@N +minutemen@? +minuteness@N +minuter@? +minutes@p +minutest@? +minutia@N +minutiae@p +minuting@V +minx@N +minxes@? +miocene@AN +mips@p +mipses@? +mirabeau@N +miracle@N +miracles@p +miraculous@A +miraculously@v +mirage@N +mirages@p +miranda@N +mire@NVt +mired@V +mires@pVt +miring@V +miro@? +mirror@Nt +mirrored@At +mirroring@At +mirrors@pt +mirth@N +mirthful@A +mirthfully@v +mirthless@A +mirthlessly@v +misadventure@N +misadventures@p +misalignment@N +misalliance@N +misalliances@p +misanthrope@N +misanthropes@p +misanthropic@? +misanthropist@? +misanthropists@p +misanthropy@N +misapplication@? +misapplications@p +misapplied@A +misapplies@? +misapply@V +misapplying@t +misapprehend@t +misapprehended@t +misapprehending@t +misapprehends@t +misapprehension@N +misapprehensions@p +misappropriate@t +misappropriated@t +misappropriates@t +misappropriating@t +misappropriation@? +misappropriations@p +misbegotten@A +misbehave@V +misbehaved@V +misbehaves@V +misbehaving@V +misbehavior@N +misbehaviour@? +misc@N +miscalculate@t +miscalculated@ti +miscalculates@t +miscalculating@ti +miscalculation@N +miscalculations@p +miscall@t +miscalled@t +miscalling@t +miscalls@t +miscarriage@N +miscarriages@p +miscarried@? +miscarries@? +miscarry@V +miscarrying@V +miscast@V +miscasting@V +miscasts@V +miscegenation@N +miscellaneous@A +miscellanies@p +miscellany@N +mischance@N +mischances@p +mischief@N +mischievous@A +mischievously@v +mischievousness@N +misconceive@V +misconceived@ti +misconceives@V +misconceiving@ti +misconception@N +misconceptions@p +misconduct@NVt +misconducted@AVt +misconducting@AVt +misconducts@pVt +misconstruction@N +misconstructions@p +misconstrue@V +misconstrued@t +misconstrues@V +misconstruing@t +miscount@VN +miscounted@VA +miscounting@VA +miscounts@Vp +miscreant@NA +miscreants@p +miscue@Ni +miscued@V +miscues@pi +miscuing@V +misdeal@VN +misdealing@V +misdeals@Vp +misdealt@V +misdeed@N +misdeeds@p +misdemeanor@N +misdemeanors@p +misdemeanour@N +misdemeanours@p +misdiagnose@? +misdiagnosed@? +misdiagnoses@? +misdiagnosing@? +misdiagnosis@p +misdid@V +misdirect@t +misdirected@t +misdirecting@t +misdirection@N +misdirects@t +misdo@ti +misdoes@? +misdoing@V +misdoings@V +misdone@V +miser@N +miserable@A +miserably@v +miseries@p +miserliness@N +miserly@A +misers@p +misery@N +misfeasance@N +misfeature@N +misfeatures@p +misfire@iN +misfired@iA +misfires@ip +misfiring@iA +misfit@NV +misfits@pV +misfitted@V +misfitting@V +misfortune@N +misfortunes@p +misgiving@N +misgivings@p +misgovern@V +misgoverned@V +misgoverning@V +misgoverns@V +misguide@t +misguided@A +misguidedly@v +misguides@t +misguiding@t +mishandle@t +mishandled@t +mishandles@t +mishandling@t +mishap@N +mishaps@p +mishear@V +misheard@t +mishearing@t +mishears@V +mishit@NV +mishits@pV +mishitting@? +mishmash@N +mishmashes@? +misidentified@V +misidentifies@? +misidentify@V +misidentifying@V +misinform@t +misinformation@N +misinformed@t +misinforming@t +misinforms@t +misinterpret@t +misinterpretation@N +misinterpretations@p +misinterpreted@t +misinterpreting@t +misinterprets@t +misjudge@V +misjudged@V +misjudgement@? +misjudgements@p +misjudges@V +misjudging@V +misjudgment@? +misjudgments@p +miskito@? +mislaid@t +mislay@V +mislaying@t +mislays@V +mislead@V +misleading@A +misleadingly@? +misleads@V +misled@? +mismanage@t +mismanaged@ti +mismanagement@N +mismanages@t +mismanaging@ti +mismatch@VN +mismatched@VA +mismatches@? +mismatching@VA +misname@? +misnamed@? +misnames@? +misnaming@? +misnomer@N +misnomers@p +misogynist@N +misogynistic@A +misogynists@p +misogyny@N +misplace@t +misplaced@t +misplaces@t +misplacing@t +misplay@tN +misplayed@tA +misplaying@tA +misplays@tp +misprint@NVt +misprinted@AVt +misprinting@AVt +misprints@pVt +mispronounce@V +mispronounced@V +mispronounces@V +mispronouncing@V +mispronunciation@N +mispronunciations@p +misquotation@N +misquotations@p +misquote@V +misquoted@V +misquotes@V +misquoting@V +misread@V +misreading@V +misreadings@p +misreads@V +misreport@tN +misreported@tA +misreporting@tA +misreports@tp +misrepresent@t +misrepresentation@N +misrepresentations@p +misrepresented@t +misrepresenting@t +misrepresents@t +misrule@tN +misruled@V +misrules@tp +misruling@V +miss@N +missal@N +missals@p +missed@A +misses@p +misshapen@A +missile@N +missilery@N +missiles@p +missing@A +mission@Nt +missionaries@p +missionary@N +missions@pt +missis@N +mississauga@N +mississippi@N +mississippian@AN +mississippians@p +missive@NA +missives@p +missouri@NA +missourian@AN +missourians@p +misspell@V +misspelled@ti +misspelling@N +misspellings@p +misspells@V +misspelt@? +misspend@V +misspending@V +misspends@V +misspent@? +misstate@t +misstated@t +misstatement@N +misstatements@p +misstates@t +misstating@t +misstep@N +missteps@p +missus@N +mist@NV +mistake@NV +mistaken@A +mistakenly@v +mistakes@pV +mistaking@V +mistassini@N +misted@AV +mister@N +misters@p +mistier@A +mistiest@A +mistily@? +mistime@t +mistimed@t +mistimes@t +mistiming@t +mistiness@? +misting@AV +mistletoe@N +mistook@V +mistranslated@ti +mistreat@t +mistreated@t +mistreating@t +mistreatment@N +mistreats@t +mistress@N +mistresses@? +mistrial@N +mistrials@p +mistrust@VN +mistrusted@VA +mistrustful@A +mistrustfully@v +mistrusting@VA +mistrusts@Vp +mists@N +misty@A +mistype@V +mistypes@V +mistyping@V +misunderstand@V +misunderstanding@N +misunderstandings@p +misunderstands@V +misunderstood@A +misuse@Nt +misused@V +misuses@pt +misusing@V +mitchell@N +mite@N +miter@NV +mitered@A +mitering@AV +miters@pV +mites@p +mitigate@V +mitigated@V +mitigates@V +mitigating@V +mitigation@N +mitosis@N +mitre@N +mitred@t +mitres@p +mitring@t +mitt@N +mitten@N +mittens@p +mitts@p +mix@tNi +mixed@A +mixer@N +mixers@p +mixes@? +mixing@V +mixtec@N +mixture@N +mixtures@p +mizar@N +mizzen@NA +mizzenmast@N +mizzenmasts@p +mizzens@p +ml@N +mm@N +mn@N +mnemonic@AN +mnemonics@N +mnemosyne@N +mo@N +moan@NVi +moaned@AVi +moaner@? +moaners@p +moaning@AVi +moans@pVi +moat@Nt +moated@At +moats@pt +mob@NVt +mobbed@? +mobbing@? +mobile@AN +mobiles@p +mobilisation@N +mobilisations@p +mobilise@ti +mobilised@ti +mobilises@ti +mobilising@ti +mobility@Ni +mobilization@N +mobilizations@p +mobilize@Vt +mobilized@Vt +mobilizes@Vt +mobilizing@Vt +mobs@pv +mobster@N +mobsters@p +moccasin@N +moccasins@p +mocha@N +mock@VtNA +mocked@VtA +mocker@? +mockeries@p +mockers@N +mockery@N +mocking@VtA +mockingbird@N +mockingbirds@p +mockingly@? +mocks@Vtp +mod@AN +modal@A +modals@p +modded@? +modding@? +mode@N +model@NV +modeled@AV +modeler@N +modelers@p +modeling@N +modelings@p +modelled@? +modeller@N +modellers@p +modelling@V +modellings@V +models@pV +modem@N +modems@p +moderate@ANV +moderated@V +moderately@v +moderates@pV +moderating@V +moderation@N +moderator@N +moderators@p +modern@AN +modernisation@N +modernise@ti +modernised@ti +modernises@ti +modernising@ti +modernism@NA +modernist@? +modernistic@A +modernists@p +modernity@N +modernization@N +modernize@ti +modernized@V +modernizes@ti +modernizing@V +moderns@p +modes@p +modest@A +modestly@v +modesto@N +modesty@N +modicum@N +modicums@p +modifiable@A +modification@N +modifications@p +modified@V +modifier@N +modifiers@p +modifies@? +modify@Vi +modifying@V +modigliani@N +modish@A +modishly@v +mods@N +modular@A +modulate@t +modulated@V +modulates@t +modulating@V +modulation@N +modulations@p +modulator@N +modulators@p +module@N +modules@p +modulo@v +modulus@N +mogadishu@? +moggie@? +moggy@? +mogul@N +moguls@p +mohair@N +mohammed@N +mohammedan@NA +mohammedanism@N +mohammedanisms@p +mohammedans@p +mohawk@N +mohawks@p +mohican@N +mohicans@p +moi@N +moieties@? +moiety@N +moira@N +moire@N +moires@p +moist@A +moisten@V +moistened@V +moistening@V +moistens@V +moister@? +moistest@? +moistly@v +moistness@N +moisture@N +moisturise@? +moisturised@? +moisturiser@? +moisturisers@p +moisturises@? +moisturising@? +moisturize@t +moisturized@t +moisturizer@? +moisturizers@p +moisturizes@t +moisturizing@t +mojave@N +molar@NA +molars@p +molasses@N +mold@NV +moldavia@N +molded@AV +molder@VN +moldered@VA +moldering@VA +molders@Vp +moldier@? +moldiest@? +moldiness@N +molding@N +moldings@p +moldova@? +molds@pV +moldy@A +mole@N +molecular@A +molecule@N +molecules@p +molehill@N +molehills@p +moles@p +moleskin@N +molest@t +molestation@N +molested@t +molester@N +molesters@p +molesting@t +molests@t +moliere@? +molina@N +moll@N +mollification@N +mollified@? +mollifies@? +mollify@V +mollifying@V +molls@p +mollusc@N +molluscs@p +mollusk@? +mollusks@p +mollycoddle@tN +mollycoddled@V +mollycoddles@tp +mollycoddling@V +moloch@N +molokai@N +molotov@N +molt@VN +molted@VA +molten@AV +molting@VA +molts@Vp +moluccas@p +molybdenum@N +mom@N +mombasa@N +moment@N +momentarily@v +momentary@A +momentous@A +momentousness@N +moments@p +momentum@N +momma@? +mommas@p +mommies@? +mommy@N +moms@p +mon@N +monaco@NA +monarch@NA +monarchic@? +monarchical@A +monarchies@p +monarchism@N +monarchist@NA +monarchists@p +monarchs@p +monarchy@N +monasteries@? +monastery@N +monastic@AN +monasticism@N +monastics@p +monaural@A +monday@N +mondays@v +mondrian@N +monet@N +monetarily@v +monetarism@? +monetarist@N +monetarists@p +monetary@A +money@N +moneybag@N +moneybags@N +moneybox@? +moneyboxes@? +moneyed@A +moneylender@N +moneylenders@p +moneymaker@N +moneymakers@p +moneymaking@N +moneys@p +mongeese@? +monger@NA +mongered@A +mongering@A +mongers@p +mongol@N +mongolia@N +mongolian@A +mongolians@p +mongolism@N +mongoloid@AN +mongols@p +mongoose@N +mongooses@p +mongrel@NA +mongrels@p +monicker@? +monickers@p +monied@A +monies@N +moniker@N +monikers@p +monitor@NVt +monitored@AVt +monitoring@AVt +monitors@pVt +monk@N +monkey@Nit +monkeyed@p +monkeying@p +monkeys@p +monkeyshine@? +monkeyshines@? +monks@p +monmouth@N +mono@AN +monochromatic@AN +monochrome@N +monochromes@p +monocle@N +monocles@p +monocotyledon@N +monocotyledons@p +monogamous@A +monogamy@N +monogram@N +monogrammed@? +monogramming@? +monograms@p +monograph@Nt +monographs@pt +monolingual@A +monolinguals@p +monolith@N +monolithic@A +monoliths@p +monolog@? +monologs@p +monologue@N +monologues@p +monomania@N +monomaniac@N +monomaniacs@p +monongahela@N +mononucleosis@N +monophonic@A +monoplane@N +monoplanes@p +monopolies@? +monopolisation@N +monopolise@t +monopolised@t +monopolises@t +monopolising@t +monopolist@N +monopolistic@A +monopolists@p +monopolization@? +monopolize@t +monopolized@t +monopolizes@t +monopolizing@t +monopoly@N +monorail@N +monorails@p +monosyllabic@A +monosyllable@N +monosyllables@p +monotheism@NA +monotheist@? +monotheistic@A +monotheists@p +monotone@NA +monotones@p +monotonic@A +monotonically@v +monotonous@A +monotonously@v +monotony@N +monoxide@N +monoxides@p +monroe@N +monrovia@N +mons@N +monsieur@N +monsignor@N +monsignori@p +monsignors@p +monsoon@N +monsoons@p +monster@N +monsters@p +monstrance@N +monstrances@p +monstrosities@p +monstrosity@N +monstrous@A +monstrously@v +mont@N +montage@N +montages@p +montague@N +montaigne@N +montana@N +montanan@AN +montanans@p +montcalm@N +montenegrin@? +montenegro@N +monterrey@N +montesquieu@N +montessori@N +monteverdi@N +montevideo@N +montezuma@? +montgolfier@N +montgomery@N +month@N +monthlies@? +monthly@AvN +months@p +monticello@? +montpelier@N +montrachet@? +montreal@N +montserrat@N +monument@N +monumental@A +monumentally@v +monuments@p +moo@i! +mooch@Vit +mooched@Vit +moocher@? +moochers@p +mooches@? +mooching@Vit +mood@N +moodier@A +moodiest@A +moodily@v +moodiness@N +moods@p +moody@A +mooed@V +moog@? +mooing@V +moon@N +moonbeam@N +moonbeams@p +mooned@A +mooning@A +moonless@A +moonlight@NV +moonlighted@V +moonlighter@? +moonlighters@p +moonlighting@N +moonlights@pV +moonlit@A +moons@p +moonscape@N +moonscapes@p +moonshine@N +moonshines@p +moonshot@N +moonshots@p +moonstone@N +moonstones@p +moonstruck@A +moor@N +moore@N +moored@A +moorhen@N +moorhens@p +mooring@N +moorings@p +moorish@A +moorland@N +moorlands@p +moors@p +moos@V +moose@N +moot@AtN +mooted@At +mooting@At +moots@pt +mop@NVt +mope@iN +moped@N +mopeds@p +mopes@p +moping@V +mopped@V +moppet@N +moppets@p +mopping@V +mops@pVt +moraine@N +moraines@p +moral@AN +morale@N +moralise@it +moralised@it +moralises@it +moralising@it +moralist@N +moralistic@A +moralists@p +moralities@p +morality@N +moralize@it +moralized@V +moralizes@it +moralizing@V +morally@? +morals@p +morass@N +morasses@? +moratoria@? +moratorium@N +moratoriums@p +moravia@N +moravian@AN +moray@N +morays@p +morbid@A +morbidity@N +morbidly@? +mordant@ANt +mordantly@v +mordants@pt +mordred@N +more@Dv +moreish@A +moreover@C +mores@p +morgan@N +morgue@N +morgues@p +moribund@A +morley@N +mormon@NA +mormonism@N +mormonisms@p +mormons@p +morn@N +morning@N +mornings@v +morns@p +moro@N +moroccan@AN +moroccans@p +morocco@N +moron@N +moroni@N +moronic@A +morons@p +morose@A +morosely@v +moroseness@N +morph@N +morphed@A +morpheme@N +morphemes@p +morpheus@N +morphia@? +morphine@N +morphing@A +morphological@A +morphology@N +morphs@p +morris@N +morrison@N +morrow@N +morrows@p +morse@N +morsel@N +morsels@p +mortal@AN +mortality@N +mortally@v +mortals@p +mortar@Nt +mortarboard@N +mortarboards@p +mortared@At +mortaring@At +mortars@pt +mortgage@Nt +mortgaged@At +mortgagee@N +mortgagees@p +mortgager@? +mortgagers@p +mortgages@pt +mortgaging@At +mortgagor@N +mortgagors@p +mortice@Nt +morticed@t +mortices@pt +mortician@N +morticians@p +morticing@t +mortification@N +mortified@V +mortifies@? +mortify@Vt +mortifying@V +mortimer@N +mortise@Nt +mortised@At +mortises@pt +mortising@At +mortuaries@p +mortuary@NA +mos@p +mosaic@A +mosaics@p +moscow@N +moseley@N +moselle@N +moses@N +mosey@i +moseyed@i +moseying@i +moseys@i +mosh@? +moshed@A +moshes@p +moshing@A +moslem@NA +moslems@p +mosque@N +mosques@p +mosquito@N +mosquitoes@p +mosquitos@p +moss@N +mosses@? +mossier@A +mossiest@A +mossy@A +most@Dv +mostly@v +mosul@N +mote@NV +motel@N +motels@p +motes@pV +motet@N +motets@p +moth@N +mothball@Nt +mothballed@At +mothballing@At +mothballs@pt +mother@Nt +motherboard@? +motherboards@p +mothered@At +motherfucker@N +motherfuckers@p +motherfucking@? +motherhood@N +mothering@N +motherland@N +motherlands@p +motherless@Av +motherliness@N +motherly@A +mothers@pt +moths@p +motif@N +motifs@p +motile@AN +motiles@p +motion@NV +motioned@AV +motioning@AV +motionless@A +motions@pV +motivate@t +motivated@t +motivates@t +motivating@t +motivation@N +motivational@A +motivations@p +motivator@? +motivators@p +motive@NAt +motiveless@A +motives@pt +motley@AN +motleys@p +motlier@? +motliest@? +motocross@N +motocrosses@? +motor@NAit +motorbike@N +motorbiked@A +motorbikes@p +motorbiking@A +motorboat@N +motorboats@p +motorcade@N +motorcades@p +motorcar@N +motorcars@p +motorcycle@Ni +motorcycled@V +motorcycles@pi +motorcycling@V +motorcyclist@N +motorcyclists@p +motored@V +motoring@N +motorise@t +motorised@t +motorises@t +motorising@t +motorist@N +motorists@p +motorize@t +motorized@t +motorizes@t +motorizing@t +motorman@N +motormen@p +motormouth@? +motormouths@p +motors@pit +motorway@N +motorways@p +motown@N +motrin@? +mott@N +mottle@tN +mottled@A +mottles@tp +mottling@tA +motto@N +mottoes@p +mottos@p +mould@NtV +moulded@AtV +moulder@VN +mouldered@VA +mouldering@VA +moulders@Vp +mouldier@A +mouldiest@A +moulding@N +mouldings@p +moulds@ptV +mouldy@AN +moult@VN +moulted@VA +moulting@VA +moults@Vp +mound@N +mounded@A +mounding@N +mounds@p +mount@N +mountain@N +mountaineer@Ni +mountaineered@Ai +mountaineering@N +mountaineers@pi +mountainous@A +mountains@p +mountainside@N +mountainsides@p +mountaintop@NA +mountaintops@p +mountbatten@N +mountebank@Ni +mountebanks@pi +mounted@A +mountie@N +mounties@p +mounting@N +mountings@p +mounts@p +mourn@Vit +mourned@Vit +mourner@N +mourners@p +mournful@A +mournfully@? +mournfulness@? +mourning@NA +mourns@Vit +mouse@NVit +moused@AVit +mouser@N +mousers@p +mouses@pVit +mousetrap@N +mousetrapped@V +mousetrapping@V +mousetraps@p +mousey@A +mousier@A +mousiest@A +mousiness@N +mousing@N +moussaka@N +moussakas@p +mousse@N +moussed@A +mousses@p +moussing@A +moussorgsky@N +moustache@N +moustached@A +moustaches@p +moustachioed@? +mousy@A +mouth@NVti +mouthed@AVti +mouthful@N +mouthfuls@p +mouthing@AVti +mouthpiece@N +mouthpieces@p +mouths@pVti +mouthwash@N +mouthwashes@? +mouthwatering@A +mouthy@A +movable@AN +movables@p +move@VNit +moveable@AN +moveables@p +moved@V +movement@N +movements@p +mover@N +movers@p +moves@Vpit +movie@N +moviegoer@? +moviegoers@p +movies@p +moving@A +movingly@? +mow@VtN +mowed@V +mower@N +mowers@p +mowing@NV +mown@V +mows@Vtp +moxie@N +mozambican@? +mozambicans@p +mozambique@N +mozart@NA +mozzarella@N +mp@N +mpg@N +mph@N +mr@N +mri@? +mrs@N +ms@N +msg@N +mst@? +mt@N +mtv@N +mu@N +much@DvA +mucilage@N +muck@Nt +mucked@At +muckier@A +muckiest@A +mucking@Av +muckrake@Ni +muckraked@i +muckraker@N +muckrakers@p +muckrakes@pi +muckraking@i +mucks@pt +mucky@A +mucous@A +mucus@N +mud@NV +muddied@? +muddier@A +muddies@? +muddiest@A +muddiness@N +muddle@tN +muddled@tA +muddles@tp +muddling@tA +muddy@AVN +muddying@AV +mudflap@? +mudflaps@p +mudflat@? +mudflats@p +mudguard@N +mudguards@p +mudpack@N +mudpacks@p +mudslide@? +mudslides@? +mudslinger@N +mudslingers@p +mudslinging@N +muenster@N +muesli@N +muezzin@N +muezzins@p +muff@NVt +muffed@AVt +muffin@N +muffing@AVt +muffins@p +muffle@tN +muffled@tA +muffler@N +mufflers@p +muffles@tp +muffling@tA +muffs@pVt +mufti@N +muftis@p +mug@NV +mugged@? +mugger@N +muggers@p +muggier@A +muggiest@A +mugginess@? +mugging@? +muggings@p +muggins@N +muggy@A +mugs@pV +muhammad@N +muhammadan@NA +muhammadanism@? +muhammadanisms@p +muhammadans@p +muir@N +mujaheddin@? +mukluk@N +mukluks@p +mulatto@NA +mulattoes@? +mulattos@p +mulberries@p +mulberry@N +mulch@Nt +mulched@At +mulches@? +mulching@At +mule@N +mules@p +muleteer@N +muleteers@p +mulish@A +mulishly@v +mulishness@N +mull@N +mullah@N +mullahs@p +mulled@A +mullet@N +mullets@p +mulligatawny@N +mulling@A +mullion@Nt +mullioned@At +mullions@pt +mulls@p +multan@N +multicolored@A +multicoloured@? +multics@p +multicses@? +multicultural@? +multiculturalism@? +multidimensional@A +multifaceted@A +multifarious@A +multifariousness@N +multilateral@A +multilingual@A +multimedia@p +multimillionaire@N +multimillionaires@p +multinational@A +multinationals@p +multiparty@? +multiple@AN +multiples@p +multiplex@NA +multiplexed@A +multiplexer@? +multiplexers@p +multiplexes@? +multiplexing@A +multiplexor@? +multiplexors@p +multiplicand@N +multiplicands@p +multiplication@N +multiplications@p +multiplicative@A +multiplicities@p +multiplicity@N +multiplied@V +multiplier@N +multipliers@p +multiplies@? +multiply@Vti +multiplying@V +multiprocessing@? +multipurpose@A +multiracial@A +multitask@? +multitasking@? +multitasks@p +multitude@N +multitudes@p +multitudinous@A +multivariate@A +multivitamin@? +multivitamins@p +mum@NAV +mumble@VN +mumbled@V +mumbler@N +mumblers@p +mumbles@Vp +mumbling@V +mumford@N +mummer@N +mummers@p +mummery@N +mummies@p +mummification@N +mummified@V +mummifies@? +mummify@Vit +mummifying@V +mummy@N +mumps@N +mums@pV +munch@N +munched@A +munches@? +munchies@? +munching@A +munchkin@? +munchkins@p +mundane@A +mundanely@v +mundanes@p +mung@? +munged@? +munging@? +mungs@p +munich@N +municipal@A +municipalities@? +municipality@N +municipally@v +municipals@p +munificence@N +munificent@A +munition@t +munitions@p +munro@N +mural@NA +muralist@N +muralists@p +murals@p +murat@N +murder@NV +murdered@AV +murderer@N +murderers@p +murderess@? +murderesses@? +murdering@AV +murderous@A +murderously@v +murders@pV +murdoch@N +murillo@N +murk@NA +murkier@? +murkiest@? +murkily@? +murkiness@? +murks@p +murky@AN +murmansk@N +murmur@NVi +murmured@AVi +murmuring@AVi +murmurings@p +murmurs@pVi +murphy@N +murray@N +murrumbidgee@N +muscat@N +muscatel@N +muscatels@p +muscle@Ni +muscled@Ai +muscleman@N +musclemen@? +muscles@pi +muscling@Ai +muscly@A +muscovite@N +muscular@A +muscularity@N +musculature@N +muse@N +mused@V +muses@p +museum@N +museums@p +mush@N! +mushed@A! +musher@N +mushers@p +mushes@? +mushier@A +mushiest@A +mushiness@N +mushing@A! +mushroom@Ni +mushroomed@Ai +mushrooming@Ai +mushrooms@pi +mushy@A +music@N +musical@AN +musicale@N +musicales@p +musicality@N +musically@v +musicals@p +musician@N +musicians@p +musicianship@N +musicologist@N +musicologists@p +musicology@N +musics@p +musing@VN +musings@Vp +musk@N +muskellunge@N +muskellunges@p +musket@N +musketeer@N +musketeers@p +musketry@N +muskets@p +muskier@A +muskiest@A +muskiness@N +muskmelon@N +muskmelons@p +muskogee@p +muskrat@N +muskrats@p +musky@AN +muslim@NA +muslims@p +muslin@N +muss@tN +mussed@tA +mussel@N +mussels@p +musses@? +mussier@A +mussiest@A +mussing@tA +mussolini@N +mussorgsky@N +mussy@iAN +must@VN +mustache@N +mustached@A +mustaches@p +mustachioed@A +mustang@N +mustangs@p +mustard@N +muster@VtN +mustered@VtA +mustering@VtA +musters@Vtp +mustier@A +mustiest@A +mustiness@N +musts@Vp +musty@A +mutability@N +mutable@A +mutant@NA +mutants@p +mutate@V +mutated@V +mutates@V +mutating@V +mutation@N +mutations@p +mute@ANtV +muted@V +mutely@? +muteness@? +muter@? +mutes@ptV +mutest@? +mutilate@t +mutilated@t +mutilates@t +mutilating@t +mutilation@N +mutilations@p +mutineer@N +mutineers@p +muting@V +mutinied@p +mutinies@p +mutinous@A +mutinously@v +mutiny@NV +mutinying@p +mutt@N +mutter@ViN +muttered@ViA +muttering@ViA +mutterings@p +mutters@Vip +mutton@N +mutts@p +mutual@A +mutuality@? +mutually@v +muumuu@N +muumuus@p +muzak@N +muzzily@v +muzziness@N +muzzle@Nt +muzzled@V +muzzles@pt +muzzling@V +muzzy@A +mvp@? +my@D! +myanmar@? +mycenae@N +mycenaean@A +mycology@N +mylar@? +mylars@p +myna@N +mynah@? +mynahes@? +mynahs@p +mynas@p +myopia@N +myopic@A +myopically@? +myriad@AN +myriads@p +myron@N +myrrh@N +myrtle@N +myrtles@p +mys@D! +myself@r +mysore@N +mysteries@p +mysterious@A +mysteriously@v +mysteriousness@N +mystery@N +mystic@N +mystical@A +mystically@v +mysticism@N +mystics@p +mystification@N +mystified@t +mystifies@? +mystify@V +mystifying@t +mystique@N +myth@N +mythic@? +mythical@A +mythological@A +mythologies@p +mythologist@N +mythologists@p +mythology@N +myths@p +myxomatosis@N +na@N +naacp@N +naan@? +naans@p +nab@N +nabbed@t +nabbing@t +nabob@N +nabobs@p +nabokov@N +nabs@p +nacho@? +nachos@p +nacre@N +nader@N +nadir@N +nadirs@p +nae@NvA +naff@? +naffer@? +naffest@? +nafta@? +nag@VN +nagasaki@N +nagged@V +nagging@AV +nagoya@N +nagpur@N +nags@Vp +nagware@? +nagwares@? +nagy@N +nah@N +nahuatl@N +nahum@N +naiad@N +naiades@? +naiads@p +nail@Nt +nailbrush@N +nailbrushes@? +nailed@At +nailing@At +nails@pt +nairobi@N +naive@AN +naively@v +naiver@? +naivest@? +naivety@N +naked@A +nakedly@v +nakedness@N +name@Nt +named@NV +nameless@A +namely@v +nameplate@N +nameplates@p +names@N +namesake@N +namesakes@p +namibia@N +namibian@? +namibians@p +naming@NV +nan@N +nanak@N +nanchang@N +nancy@N +nanjing@? +nanking@N +nankings@p +nannies@p +nanny@N +nanobot@? +nanobots@p +nanosecond@N +nanoseconds@p +nanotechnologies@? +nanotechnology@? +nans@p +nansen@N +nantucket@N +naomi@N +nap@N +napalm@Nt +napalmed@At +napalming@At +napalms@pt +nape@N +napes@p +naphtha@N +naphthalene@N +napkin@N +napkins@p +naples@N +napoleon@N +napoleonic@A +napped@V +nappier@A +nappies@p +nappiest@A +napping@V +nappy@N +naps@p +narc@? +narcissi@? +narcissism@N +narcissist@N +narcissistic@A +narcissists@p +narcissus@N +narcissuses@p +narcolepsy@N +narcoleptic@AN +narcosis@N +narcotic@NA +narcotics@p +narcs@p +nark@Nti +narked@Ati +narking@Ati +narks@pti +narky@? +narragansett@N +narrate@V +narrated@V +narrates@V +narrating@V +narration@N +narrations@p +narrative@NA +narratives@p +narrator@N +narrators@p +narrow@AVN +narrowed@AV +narrower@? +narrowest@? +narrowing@AV +narrowly@v +narrowness@N +narrows@N +narwhal@N +narwhals@p +nary@N +nasa@N +nasal@AN +nasalise@? +nasalised@? +nasalises@? +nasalising@? +nasalize@t +nasalized@V +nasalizes@t +nasalizing@V +nasally@v +nasals@p +nascent@A +nasdaq@? +nash@N +nashua@N +nashville@N +nassau@N +nasser@N +nastier@A +nastiest@A +nastily@v +nastiness@N +nasturtium@N +nasturtiums@p +nasty@A +natal@A +natch@v +natchez@p +nathan@N +nathans@p +nation@N +national@AN +nationalisation@? +nationalisations@p +nationalise@? +nationalised@? +nationalises@? +nationalising@? +nationalism@NA +nationalist@NA +nationalistic@? +nationalists@p +nationalities@p +nationality@N +nationalization@N +nationalizations@p +nationalize@t +nationalized@t +nationalizes@t +nationalizing@t +nationally@v +nationals@p +nationhood@N +nations@N +nationwide@A +native@AN +natives@p +nativities@p +nativity@N +natl@N +nato@N +natter@iN +nattered@iA +nattering@iA +natters@ip +nattier@A +nattiest@A +nattily@v +natty@A +natural@AN +naturalisation@N +naturalise@? +naturalised@? +naturalises@? +naturalising@? +naturalism@N +naturalist@N +naturalistic@A +naturalists@p +naturalization@N +naturalize@ti +naturalized@V +naturalizes@ti +naturalizing@V +naturally@v +naturalness@? +naturals@p +nature@N +natures@p +naturism@NA +naturist@? +naturists@p +naugahyde@? +naught@NvA +naughtier@A +naughtiest@A +naughtily@v +naughtiness@N +naughts@pv +naughty@AN +nauru@N +nausea@N +nauseate@t +nauseated@t +nauseates@t +nauseating@A +nauseatingly@v +nauseous@A +nauseously@v +nauseousness@N +nautical@A +nautically@v +nautili@? +nautilus@N +nautiluses@? +navaho@N +navahoes@? +navahos@p +navajo@? +navajoes@? +navajos@p +naval@A +navarre@N +nave@N +navel@N +navels@p +naves@p +navies@? +navigability@N +navigable@A +navigate@Vti +navigated@V +navigates@Vti +navigating@V +navigation@N +navigational@A +navigator@N +navigators@p +navvies@p +navvy@N +navy@N +nay@N +nays@p +naysayer@? +naysayers@p +nazarene@NA +nazareth@N +nazca@? +nazi@NA +naziism@? +naziisms@p +nazis@p +nazism@? +nazisms@p +nb@N +nba@N +nbc@? +nc@N +ncaa@N +nco@N +nd@N +ne@? +neanderthal@AN +neanderthals@p +neapolitan@NA +near@PvVN +nearby@Av +neared@PvVA +nearer@? +nearest@? +nearing@PvVA +nearly@v +nearness@N +nears@PvVp +nearside@N +nearsighted@? +nearsightedness@? +neat@AN +neaten@t +neatened@t +neatening@t +neatens@t +neater@? +neatest@? +neath@P +neatly@v +neatness@N +nebraska@N +nebraskan@? +nebraskans@p +nebuchadnezzar@N +nebula@N +nebulae@p +nebular@? +nebulas@p +nebulous@A +nebulousness@N +necessaries@p +necessarily@v +necessary@A +necessitate@t +necessitated@t +necessitates@t +necessitating@t +necessities@? +necessity@N +neck@Ni +neckband@N +neckbands@p +necked@Ai +neckerchief@N +neckerchiefs@p +neckerchieves@? +necking@N +necklace@N +necklaced@A +necklaces@p +necklacing@A +necklacings@p +neckline@N +necklines@p +necks@pi +necktie@N +neckties@p +necromancer@N +necromancers@p +necromancy@N +necrophilia@N +necrophiliac@AN +necrophiliacs@p +necropoleis@p +necropoles@? +necropoli@? +necropolis@N +necropolises@p +necrosis@N +nectar@N +nectarine@N +nectarines@p +need@VtN +needed@VtA +needful@A +needier@A +neediest@A +neediness@N +needing@VtA +needle@Nti +needled@V +needlepoint@N +needles@N +needless@A +needlessly@? +needlewoman@N +needlewomen@p +needlework@N +needling@V +needs@v +needy@A +nefarious@A +nefariously@v +nefariousness@N +nefertiti@N +neg@? +negate@t +negated@t +negates@t +negating@t +negation@N +negations@p +negative@ANt +negatived@V +negatively@v +negatives@pt +negativing@V +negativity@N +neglect@tN +neglected@tA +neglectful@A +neglectfully@v +neglecting@tA +neglects@tp +neglig@? +negligee@N +negligees@p +negligence@N +negligent@A +negligently@v +negligible@A +negligibly@v +negligs@p +negotiable@A +negotiate@Vt +negotiated@Vt +negotiates@Vt +negotiating@Vt +negotiation@N +negotiations@p +negotiator@N +negotiators@p +negro@NA +negroes@p +negroid@AN +negroids@p +negros@N +nehemiah@N +nehru@N +neigh@Nit +neighbor@N +neighbored@A +neighborhood@N +neighborhoods@p +neighboring@A +neighborliness@N +neighborly@A +neighbors@p +neighbour@NV +neighboured@AV +neighbourhood@N +neighbourhoods@p +neighbouring@AV +neighbourliness@N +neighbourly@A +neighbours@pV +neighed@Ait +neighing@Ait +neighs@pit +neither@DCv +nelson@N +nematode@N +nematodes@p +nembutal@N +nemeses@p +nemesis@N +neoclassic@N +neoclassical@? +neoclassicism@N +neocolonialism@N +neocolonialist@N +neodymium@N +neogene@AN +neolithic@NA +neologism@N +neologisms@p +neon@N +neonatal@A +neonate@N +neonates@p +neophilia@? +neophilias@p +neophyte@N +neophytes@p +neoprene@N +nepal@N +nepalese@AN +nepali@NA +nephew@N +nephews@p +nephritis@N +nepotism@N +nepotistic@A +neptune@N +neptunium@N +nerd@? +nerdier@? +nerdiest@? +nerds@p +nerdy@? +nereid@N +nerf@? +nero@N +neruda@N +nerve@Nt +nerved@V +nerveless@A +nervelessly@v +nerves@p +nervier@? +nerviest@? +nerving@N +nervous@A +nervously@v +nervousness@N +nervy@A +nesselrode@N +nest@Nit +nested@At +nesting@Ait +nestle@it +nestled@it +nestles@it +nestling@N +nestlings@p +nestor@N +nestorius@N +nests@pit +net@NVA +netball@N +nether@A +netherlander@N +netherlanders@p +netherlands@N +nethermost@D +netherworld@? +netiquette@? +netiquettes@? +nets@pV +nett@ANV +netted@V +netter@? +netters@p +netting@N +nettle@Nt +nettled@V +nettles@pt +nettlesome@A +nettling@V +netts@pV +network@N +networked@A +networking@A +networks@p +neural@A +neuralgia@N +neuralgic@? +neuritis@N +neurological@? +neurologist@N +neurologists@p +neurology@N +neuron@NA +neurons@p +neuroses@p +neurosis@N +neurosurgery@N +neurotic@AN +neurotically@v +neurotics@p +neurotransmitter@? +neurotransmitters@p +neuter@ANt +neutered@At +neutering@At +neuters@pt +neutral@AN +neutralisation@? +neutralise@N +neutralised@A +neutraliser@? +neutralisers@p +neutralises@p +neutralising@A +neutralist@? +neutralists@p +neutrality@N +neutralization@N +neutralize@V +neutralized@V +neutralizer@? +neutralizers@p +neutralizes@V +neutralizing@t +neutrally@v +neutrals@p +neutrino@N +neutrinos@p +neutron@N +neutrons@p +nev@N +neva@N +nevada@N +nevadan@? +nevadans@p +never@v! +nevermore@v +nevertheless@C +nevis@N +new@Av +newark@N +newbie@? +newbies@? +newborn@A +newborns@p +newcastle@N +newcomer@N +newcomers@p +newel@N +newels@p +newer@? +newest@? +newfangled@A +newfoundland@N +newfoundlands@p +newline@? +newlines@? +newly@v +newlywed@N +newlyweds@p +newman@N +newness@N +newport@N +news@N +newsagent@N +newsagents@p +newsboy@N +newsboys@p +newscast@N +newscaster@N +newscasters@p +newscasts@p +newses@? +newsflash@? +newsflashes@? +newsgroup@? +newsgroups@p +newshound@? +newshounds@p +newsier@A +newsiest@A +newsletter@N +newsletters@p +newsman@N +newsmen@p +newspaper@N +newspaperman@N +newspapermen@p +newspapers@p +newspaperwoman@N +newspaperwomen@p +newsprint@N +newsreader@N +newsreaders@p +newsreel@N +newsreels@p +newsroom@? +newsrooms@p +newsstand@N +newsstands@p +newsworthier@? +newsworthiest@? +newsworthy@A +newsy@A +newt@N +newton@N +newtonian@? +newtons@p +newts@p +nexis@p +next@AvP +nexus@N +nexuses@? +nfl@N +nh@? +nhl@? +ni@N +niacin@N +niagara@N +niamey@N +nib@NVt +nibble@ViN +nibbled@V +nibbler@N +nibblers@p +nibbles@Vip +nibbling@V +nibelung@N +nibs@p +nicaea@N +nicaragua@N +nicaraguan@? +nicaraguans@p +nice@A +nicely@v +nicene@A +niceness@N +nicer@A +nicest@A +niceties@p +nicety@N +niche@Nt +niches@pt +nicholas@N +nicholson@N +nick@N +nicked@A +nickel@NV +nickelodeon@N +nickelodeons@p +nickels@pV +nicking@A +nicklaus@N +nickle@? +nickles@N +nicknack@N +nicknacks@p +nickname@Nt +nicknamed@V +nicknames@pt +nicknaming@V +nicks@N +nicodemus@N +nicosia@N +nicotine@N +niece@N +nieces@p +nielsen@N +nietzsche@N +niff@NV +niffy@? +niftier@A +niftiest@A +nifty@A +niger@N +nigeria@N +nigerian@? +nigerians@p +niggard@NA +niggardliness@N +niggardly@Av +niggards@p +nigger@N +niggers@p +niggle@it +niggled@i +niggles@it +niggling@A +nigh@AvP +nigher@? +nighest@? +night@N +nightcap@N +nightcaps@p +nightclothes@? +nightclub@N +nightclubbed@? +nightclubbing@? +nightclubs@p +nightdress@N +nightdresses@? +nightfall@N +nightgown@N +nightgowns@p +nighthawk@N +nighthawks@p +nightie@N +nighties@p +nightingale@N +nightingales@p +nightlife@N +nightlight@? +nightlights@p +nightlong@Av +nightly@Av +nightmare@N +nightmares@p +nightmarish@A +nights@v +nightshade@N +nightshades@p +nightshirt@N +nightshirts@p +nightspot@N +nightspots@p +nightstand@N +nightstands@p +nightstick@? +nightsticks@p +nighttime@? +nightwatchman@? +nightwatchmen@? +nightwear@N +nighty@N +nihilism@N +nihilist@NA +nihilistic@A +nihilists@p +nijinsky@N +nike@N +nikkei@? +nikolayev@N +nil@N +nile@N +nimbi@? +nimble@A +nimbleness@N +nimbler@? +nimblest@? +nimbly@v +nimbus@N +nimbuses@? +nimby@? +nimitz@N +nimrod@N +nina@N +nincompoop@N +nincompoops@p +nine@ND +ninepin@? +ninepins@N +nines@pD +nineteen@ND +nineteens@pD +nineteenth@AN +nineteenths@p +nineties@p +ninetieth@AN +ninetieths@p +ninety@ND +nineveh@N +ninja@? +ninjas@p +ninnies@p +ninny@N +nintendo@? +ninth@ANv +ninths@pv +niobe@N +nip@N +nipped@V +nipper@N +nippers@p +nippier@? +nippiest@? +nipping@A +nipple@N +nipples@p +nippon@N +nippy@A +nips@p +nirvana@N +nisan@N +nisei@N +nissan@N +nit@N +nite@? +niter@N +nites@? +nitpick@? +nitpicked@? +nitpicker@? +nitpickers@p +nitpicking@? +nitpicks@p +nitrate@Nt +nitrated@V +nitrates@pt +nitrating@V +nitre@N +nitrogen@N +nitrogenous@A +nitroglycerin@N +nitroglycerine@? +nits@p +nitwit@N +nitwits@p +nix@!Nt +nixed@!At +nixes@p +nixing@!At +nixon@N +nj@N +nkrumah@N +nm@N +no@N +noah@N +nob@N +nobble@t +nobbled@t +nobbles@t +nobbling@t +nobel@N +nobelist@N +nobelists@p +nobility@N +noble@AN +nobleman@N +noblemen@p +nobleness@N +nobler@A +nobles@p +noblest@A +noblewoman@rN +noblewomen@? +nobly@? +nobodies@? +nobody@rN +nobs@p +nocturnal@A +nocturnally@v +nocturne@N +nocturnes@p +nod@N +nodal@A +nodded@V +nodding@V +noddle@NV +noddles@pV +noddy@N +node@N +nodes@p +nods@p +nodular@A +nodule@N +nodules@p +noel@N +noels@p +noes@p +noggin@N +noggins@p +noh@N +nohow@v +noise@Nti +noised@V +noiseless@A +noiselessly@v +noiselessness@N +noisemaker@NA +noisemakers@p +noises@pti +noisier@A +noisiest@A +noisily@v +noisiness@N +noising@V +noisome@A +noisy@A +nomad@N +nomadic@A +nomads@p +nome@N +nomenclature@N +nomenclatures@p +nominal@AN +nominally@? +nominate@ViA +nominated@V +nominates@Vip +nominating@V +nomination@N +nominations@p +nominative@AN +nominatives@p +nominee@N +nominees@p +non@? +nona@N +nonabrasive@A +nonabsorbent@AN +nonabsorbents@p +nonagenarian@NA +nonagenarians@p +nonalcoholic@A +nonaligned@A +nonbeliever@N +nonbelievers@p +nonbreakable@A +nonce@N +nonchalance@N +nonchalant@A +nonchalantly@v +noncom@N +noncombatant@N +noncombatants@p +noncommercial@AN +noncommercials@p +noncommittal@A +noncommittally@? +noncompetitive@A +noncompliance@N +noncoms@p +nonconductor@N +nonconductors@p +nonconformism@? +nonconformist@N +nonconformists@p +nonconformity@N +noncontagious@A +noncooperation@N +nondairy@? +nondeductible@AN +nondenominational@A +nondescript@AN +nondrinker@N +nondrinkers@p +none@rN +nonempty@A +nonentities@? +nonentity@N +nonessential@AN +nonesuch@N +nonesuches@? +nonetheless@C +nonevent@N +nonevents@p +nonexempt@AN +nonexistence@N +nonexistent@A +nonfat@A +nonfatal@A +nonfiction@N +nonflammable@A +nongovernmental@A +nonhazardous@A +nonhuman@A +nonindustrial@AN +noninterference@N +nonintervention@NA +nonjudgmental@? +nonlinear@A +nonliving@AN +nonmalignant@A +nonmember@N +nonmembers@p +nonnegotiable@A +nonobjective@A +nonpareil@NA +nonpareils@p +nonpartisan@A +nonpartisans@p +nonpayment@N +nonpayments@p +nonphysical@A +nonplus@VN +nonplused@V +nonpluses@? +nonplusing@V +nonplussed@V +nonplusses@? +nonplussing@V +nonpoisonous@A +nonpolitical@A +nonpolluting@? +nonprescription@? +nonproductive@A +nonprofessional@AN +nonprofessionals@p +nonprofit@A +nonprofits@p +nonproliferation@N +nonrefillable@A +nonrefundable@? +nonrenewable@A +nonrepresentational@A +nonresident@NA +nonresidents@p +nonrestrictive@A +nonreturnable@A +nonreturnables@p +nonrigid@A +nonscheduled@A +nonseasonal@A +nonsectarian@A +nonsense@N! +nonsensical@A +nonsensically@v +nonsexist@? +nonskid@? +nonsmoker@N +nonsmokers@p +nonsmoking@A +nonspecific@A +nonstandard@A +nonstarter@N +nonstarters@p +nonstick@A +nonstop@Av +nonsupport@? +nontaxable@AN +nontechnical@A +nontoxic@A +nontransferable@A +nontrivial@A +nonunion@AN +nonuser@N +nonusers@p +nonverbal@A +nonviolence@N +nonviolent@? +nonvoting@A +nonwhite@NA +nonwhites@p +nonzero@A +noodle@N +noodled@A +noodles@p +noodling@A +nook@N +nookie@N +nooks@p +nooky@? +noon@N +noonday@N +noontime@N +noose@Nt +nooses@pt +nootka@N +nope@v +nor@C +nordic@A +nordics@p +norfolk@N +norm@N +norma@N +normal@AN +normalcy@N +normalisation@N +normalise@ti +normalised@ti +normalises@ti +normalising@ti +normality@N +normalization@? +normalize@t +normalized@V +normalizes@t +normalizing@V +normally@v +norman@NA +normandy@N +normans@p +normative@A +norms@p +norplant@? +norse@AN +norseman@N +norsemen@? +north@NA +northampton@N +northbound@A +northeast@N +northeaster@N +northeasterly@AvN +northeastern@A +northeasters@p +northeasts@p +northeastward@AvN +northeastwards@v +northerlies@? +northerly@AvN +northern@A +northerner@N +northerners@p +northernmost@A +norths@p +northward@AvN +northwards@v +northwest@N +northwesterly@AvN +northwestern@? +northwests@p +northwestward@AvN +northwestwards@v +norway@N +norwegian@AN +norwegians@p +norwich@N +nos@N +nose@Nti +nosebag@N +nosebags@p +nosebleed@N +nosebleeds@p +nosed@V +nosedive@? +nosedived@? +nosedives@? +nosediving@? +nosedove@? +nosegay@N +nosegays@p +noses@pti +nosey@N +nosh@NV +noshed@AV +noshes@? +noshing@AV +nosier@A +nosiest@A +nosiness@N +nosing@N +nostalgia@N +nostalgic@? +nostalgically@v +nostradamus@N +nostril@N +nostrils@p +nostrum@N +nostrums@p +nosy@A +not@v +notable@AN +notables@p +notably@v +notaries@p +notarise@? +notarised@? +notarises@? +notarising@? +notarize@t +notarized@t +notarizes@t +notarizing@t +notary@N +notation@N +notations@p +notch@Nt +notched@At +notches@? +notching@At +note@Nt +notebook@N +notebooks@p +noted@A +notelet@N +notelets@p +notepad@? +notepads@p +notepaper@N +notes@p +noteworthy@A +nothing@rvN +nothingness@N +nothings@rvp +notice@NVt +noticeable@A +noticeably@? +noticeboard@? +noticeboards@p +noticed@V +notices@pVt +noticing@V +notifiable@A +notification@N +notifications@p +notified@t +notifies@? +notify@V +notifying@t +noting@V +notion@N +notional@A +notionally@v +notions@p +notoriety@? +notorious@A +notoriously@v +nottingham@N +notwithstanding@PC +notwork@? +notworks@p +nouakchott@N +nougat@N +nougats@p +nought@N +noughts@p +noun@N +nouns@p +nourish@t +nourished@t +nourishes@? +nourishing@t +nourishment@N +nous@N +nov@N +nova@N +novae@p +novas@p +novel@NA +novelette@N +novelettes@p +novelist@N +novelists@p +novella@N +novellas@p +novelle@? +novels@p +novelties@p +novelty@N +november@N +novembers@p +novgorod@N +novice@N +novices@p +novitiate@N +novitiates@p +novocain@? +novocaine@N +novokuznetsk@N +novosibirsk@N +now@vCN +nowadays@v +noway@v +nowhere@vN +nowise@v +nowt@N +noxious@A +nozzle@N +nozzles@p +np@? +npr@? +nt@N +nth@A +nu@N +nuance@N +nuanced@A +nuances@p +nub@N +nubia@NA +nubian@NA +nubile@A +nubs@p +nuclear@A +nuclei@N +nucleic@? +nucleus@N +nucleuses@? +nude@AN +nuder@? +nudes@p +nudest@? +nudge@tN +nudged@V +nudges@tp +nudging@V +nudism@N +nudist@NA +nudists@p +nudity@N +nugatory@A +nugget@Nt +nuggets@pt +nuisance@N +nuisances@p +nuke@N +nuked@A +nukes@p +nuking@A +nukualofa@? +null@A +nullification@N +nullified@t +nullifies@? +nullify@V +nullifying@t +nullity@N +nulls@p +numb@At +numbed@At +number@NV +numbered@AV +numbering@AV +numberless@A +numbers@N +numberses@? +numbest@? +numbing@A +numbly@v +numbness@N +numbs@pt +numbskull@N +numbskulls@p +numeracy@? +numeral@NA +numerals@p +numerate@AVt +numerated@t +numerates@pVt +numerating@t +numeration@N +numerations@p +numerator@N +numerators@p +numeric@A +numerical@A +numerically@v +numerology@N +numerous@A +numinous@A +numismatic@? +numismatics@N +numismatist@N +numismatists@p +numskull@N +numskulls@p +nun@N +nuncio@N +nuncios@p +nunneries@p +nunnery@N +nuns@p +nuptial@A +nuptials@p +nuremberg@N +nureyev@N +nurse@N +nursed@A +nursemaid@N +nursemaids@p +nurseries@p +nursery@N +nurseryman@N +nurserymen@p +nurses@p +nursing@A +nurture@Nt +nurtured@V +nurtures@pt +nurturing@V +nut@N +nutcase@N +nutcases@p +nutcracker@N +nutcrackers@p +nuthatch@N +nuthatches@? +nuthouse@N +nuthouses@p +nutmeat@N +nutmeats@p +nutmeg@N +nutmegs@p +nutria@N +nutrias@p +nutrient@NA +nutrients@p +nutriment@N +nutriments@p +nutrition@N +nutritional@? +nutritionally@? +nutritionist@N +nutritionists@p +nutritious@A +nutritive@AN +nuts@A!p +nutshell@N +nutshells@p +nutted@V +nutter@N +nutters@p +nuttier@? +nuttiest@? +nuttiness@N +nutting@N +nutty@A +nuzzle@Vit +nuzzled@Vit +nuzzles@Vit +nuzzling@Vit +nv@N +nw@N +nwt@N +ny@N +nybble@? +nybbled@? +nybbles@? +nybbling@? +nyc@N +nyetwork@? +nyetworks@p +nylon@N +nylons@p +nymph@N +nymphet@N +nymphets@p +nympho@N +nymphomania@NA +nymphomaniac@AN +nymphomaniacs@p +nymphos@p +nymphs@p +nz@? +oaf@N +oafish@A +oafishness@? +oafs@p +oahu@N +oak@N +oaken@A +oakland@N +oakley@N +oaks@N +oakum@N +oar@NV +oared@A +oaring@AV +oarlock@N +oarlocks@p +oars@! +oarsman@N +oarsmen@? +oarswoman@? +oarswomen@? +oas@N +oases@p +oasis@N +oat@N +oatcake@N +oatcakes@p +oaten@A +oates@N +oath@N +oaths@p +oatmeal@N +oats@p +oaxaca@N +ob@N +obadiah@N +obduracy@? +obdurate@A +obdurately@? +obedience@N +obedient@A +obediently@v +obeisance@N +obeisances@p +obeisant@A +obelisk@N +obelisks@p +oberon@N +obese@A +obesity@N +obey@V +obeyed@V +obeying@V +obeys@V +obfuscate@t +obfuscated@t +obfuscates@t +obfuscating@t +obfuscation@N +obfuscations@p +obit@N +obits@p +obituaries@p +obituary@N +obj@N +object@Nti +objected@Ati +objectification@? +objecting@Ati +objection@N +objectionable@A +objectionably@v +objections@p +objective@AN +objectively@v +objectiveness@N +objectives@p +objectivity@N +objector@N +objectors@p +objects@pti +oblate@AN +oblation@N +oblations@p +obligate@VA +obligated@VA +obligates@Vp +obligating@VA +obligation@N +obligations@p +obligatory@A +oblige@t +obliged@V +obliges@t +obliging@A +obligingly@v +oblique@ANi +obliquely@v +obliqueness@? +obliques@pi +obliterate@t +obliterated@t +obliterates@t +obliterating@t +obliteration@N +oblivion@N +oblivious@A +obliviously@v +obliviousness@N +oblong@AN +oblongs@p +obloquy@N +obnoxious@A +obnoxiously@v +obnoxiousness@N +oboe@N +oboes@p +oboist@? +oboists@p +obscene@A +obscenely@? +obscener@? +obscenest@? +obscenities@? +obscenity@N +obscurantism@N +obscurantist@NA +obscure@AtN +obscured@At +obscurely@v +obscurer@? +obscures@pt +obscurest@? +obscuring@At +obscurities@? +obscurity@N +obsequies@p +obsequious@A +obsequiously@? +obsequiousness@? +obsequy@? +observable@A +observably@v +observance@N +observances@p +observant@A +observantly@v +observation@N +observational@? +observations@p +observatories@p +observatory@N +observe@t +observed@V +observer@N +observers@p +observes@t +observing@V +obsess@t +obsessed@t +obsesses@? +obsessing@t +obsession@N +obsessional@A +obsessionally@? +obsessions@p +obsessive@A +obsessively@? +obsessives@p +obsidian@N +obsolescence@? +obsolescent@A +obsolete@A +obsoleted@V +obsoletes@p +obsoleting@V +obstacle@N +obstacles@p +obstetric@A +obstetrical@? +obstetrician@N +obstetricians@p +obstetrics@N +obstinacy@N +obstinate@A +obstinately@v +obstreperous@A +obstreperousness@N +obstruct@tN +obstructed@tA +obstructing@tA +obstruction@N +obstructionism@N +obstructionist@N +obstructionists@p +obstructions@p +obstructive@A +obstructively@v +obstructiveness@N +obstructs@tp +obtain@ti +obtainable@? +obtained@ti +obtaining@ti +obtains@ti +obtrude@Vt +obtruded@V +obtrudes@Vt +obtruding@V +obtrusive@A +obtrusively@v +obtrusiveness@N +obtuse@A +obtusely@? +obtuseness@? +obtuser@? +obtusest@? +obverse@AN +obverses@p +obviate@t +obviated@t +obviates@t +obviating@t +obvious@A +obviously@? +obviousness@N +ocarina@N +ocarinas@p +occam@N +occasion@Nt +occasional@A +occasionally@v +occasioned@At +occasioning@At +occasions@p +occident@N +occidental@ANv +occidentals@pv +occlude@t +occluded@V +occludes@t +occluding@V +occlusion@N +occlusions@p +occult@AVi +occultist@NA +occultists@p +occupancy@N +occupant@N +occupants@p +occupation@N +occupational@A +occupationally@v +occupations@p +occupied@? +occupier@N +occupiers@p +occupies@? +occupy@V +occupying@V +occur@V +occurred@i +occurrence@N +occurrences@p +occurring@i +occurs@V +ocean@N +oceanfront@N +oceangoing@? +oceania@N +oceanic@A +oceanographer@N +oceanographers@p +oceanographic@A +oceanography@N +oceans@p +oceanus@N +ocelot@N +ocelots@p +och@! +ocher@NAV +ochre@Nt +ocker@N +ockers@p +oct@N +octagon@N +octagonal@A +octagons@p +octal@AN +octane@N +octanes@p +octave@N +octaves@p +octavia@N +octet@N +octets@p +octette@? +octettes@? +october@N +octobers@p +octogenarian@NA +octogenarians@p +octopi@p +octopus@N +octopuses@p +ocular@AN +oculars@p +oculist@N +oculists@p +od@N +odd@AN +oddball@NA +oddballs@p +odder@? +oddest@? +oddities@? +oddity@N +oddly@v +oddment@N +oddments@p +oddness@N +odds@p +ode@N +oder@N +odes@p +odessa@N +odets@N +odin@N +odious@A +odiously@v +odium@N +odometer@N +odometers@p +odor@N +odoriferous@A +odorless@A +odorous@A +odors@p +odour@N +odourless@A +odours@p +ods@p +odysseus@N +odyssey@N +odysseys@p +oe@N +oecus@p +oedema@N +oedipal@A +oedipus@N +oesophagi@? +oesophaguses@? +oestrogen@N +oeuvre@N +oeuvres@p +of@N +off@PvAN +offal@N +offbeat@NA +offbeats@p +offed@PvA +offenbach@N +offence@N +offences@p +offend@Vti +offended@Vti +offender@N +offenders@p +offending@Vti +offends@Vti +offense@N +offenses@p +offensive@AN +offensively@v +offensiveness@N +offensives@p +offer@ViNt +offered@ViAt +offering@N +offerings@p +offers@Vipt +offertories@p +offertory@N +offhand@Av +offhandedly@? +offhandedness@? +office@N +officeholder@N +officeholders@p +officer@Nt +officers@pt +offices@p +official@AN +officialdom@N +officialese@N +officially@v +officials@p +officiate@i +officiated@V +officiates@i +officiating@V +officious@A +officiously@v +officiousness@N +offing@N +offings@p +offish@A +offline@? +offload@? +offloaded@? +offloading@? +offloads@p +offs@Pvp +offset@Nti +offsets@pti +offsetting@? +offshoot@N +offshoots@p +offshore@Av +offside@AvN +offspring@N +offsprings@p +offstage@Av +offstages@pv +oft@v +often@vA +oftener@? +oftenest@? +oftentimes@? +ogbomosho@N +ogle@VtN +ogled@VtA +ogles@Vtp +oglethorpe@N +ogling@VtA +ogre@N +ogres@p +oh@! +ohio@N +ohioan@? +ohioans@p +ohm@N +ohms@N +oho@! +ohs@! +oi@? +oik@N +oiks@p +oil@Nt +oilcan@N +oilcans@p +oilcloth@N +oilcloths@p +oiled@At +oilfield@N +oilfields@p +oilier@A +oiliest@A +oiliness@N +oiling@At +oilman@N +oilmen@? +oils@pt +oilskin@N +oilskins@p +oily@A +oink@! +oinked@! +oinking@! +oinks@! +ointment@N +ointments@p +oj@? +ojibwa@N +ojibwas@p +ok@? +okay@AvtN +okaying@Avt +okays@pvt +okeechobee@N +okefenokee@? +okhotsk@N +okinawa@N +okla@N +oklahoma@N +oklahoman@? +okra@N +okras@p +oks@p +oktoberfest@? +old@AN +olde@? +olden@A +oldenburg@N +older@A +oldest@A +oldie@N +oldies@p +oldish@? +oldster@N +oleaginous@A +oleander@N +oleanders@p +oleo@? +oleomargarine@N +olfactories@p +olfactory@AN +oligarch@N +oligarchic@A +oligarchies@p +oligarchs@p +oligarchy@N +oligocene@AN +olive@N +oliver@N +olives@N +olivier@N +olmec@? +olympia@N +olympiad@N +olympiads@p +olympian@AN +olympians@p +olympias@N +olympic@A +olympics@p +olympus@N +omaha@N +omahas@p +oman@N +omayyad@N +ombudsman@N +ombudsmen@? +omdurman@N +omega@N +omegas@p +omelet@N +omelets@p +omelette@N +omelettes@p +omen@Nt +omens@pt +ominous@A +ominously@v +omission@N +omissions@p +omit@V +omits@V +omitted@t +omitting@t +omnibus@NA +omnibuses@p +omnibusses@? +omnipotence@N +omnipotent@AN +omnipresence@N +omnipresent@A +omniscience@N +omniscient@A +omnivore@N +omnivores@p +omnivorous@A +omsk@N +on@N +onassis@N +once@vCN +oncologist@? +oncologists@p +oncology@N +oncoming@AN +one@DrN +onega@N +oneida@N +oneness@N +onerous@A +onerousness@N +ones@Drp +oneself@r +onetime@? +ongoing@A +onion@N +onions@N +onionskin@N +online@? +onlooker@N +onlookers@p +only@Av +onomatopoeia@N +onomatopoeic@? +onondaga@N +onrush@N +onrushes@? +onrushing@A +onset@N +onsets@p +onshore@Av +onside@Av +onslaught@N +onslaughts@p +onstage@vA +ontario@N +onto@P +ontological@A +ontology@N +onus@N +onuses@p +onward@Av +onwards@v +onyx@N +onyxes@? +oodles@p +ooh@! +oohed@! +oohing@! +oohs@! +oomph@N +oops@! +ooze@itN +oozed@V +oozes@itp +oozing@V +oozy@A +op@N +opacity@N +opal@N +opalescence@? +opalescent@A +opals@p +opaque@ANVt +opaqued@V +opaquely@v +opaqueness@N +opaquer@? +opaques@pVt +opaquest@? +opaquing@V +opec@N +open@AVitN +opencast@? +opened@AVit +opener@N +openers@p +openest@? +openhanded@? +opening@N +openings@p +openly@? +openness@? +opens@pVit +openwork@N +opera@N +operable@A +operand@N +operands@p +operas@p +operate@Vti +operated@Vti +operates@Vti +operatic@A +operatically@? +operating@Vti +operation@N +operational@A +operationally@? +operations@p +operative@AN +operatives@p +operator@N +operators@p +operetta@N +operettas@p +ophiuchus@NC +ophthalmic@A +ophthalmologist@N +ophthalmologists@p +ophthalmology@N +opiate@NAVt +opiates@pVt +opine@V +opined@V +opines@V +opining@V +opinion@N +opinionated@A +opinions@p +opium@N +opossum@N +opossums@p +oppenheimer@N +opponent@NA +opponents@p +opportune@A +opportunely@v +opportunism@N +opportunist@NA +opportunistic@A +opportunistically@v +opportunists@p +opportunities@p +opportunity@N +oppose@ti +opposed@ti +opposes@ti +opposing@ti +opposite@ANPv +opposites@pPv +opposition@N +oppositions@p +oppress@t +oppressed@t +oppresses@? +oppressing@t +oppression@N +oppressive@A +oppressively@v +oppressiveness@N +oppressor@N +oppressors@p +opprobrious@A +opprobrium@N +ops@N +opt@V +opted@V +optic@AN +optical@A +optically@? +optician@N +opticians@p +optics@N +optima@? +optimal@A +optimisation@? +optimise@N +optimised@A +optimiser@? +optimises@p +optimising@A +optimism@N +optimisms@p +optimist@N +optimistic@A +optimistically@v +optimists@p +optimization@N +optimize@ti +optimized@V +optimizer@? +optimizes@ti +optimizing@V +optimum@NA +optimums@p +opting@V +option@N +optional@A +optionally@v +optioned@A +optioning@A +options@p +optometrist@N +optometrists@p +optometry@N +opts@V +opulence@N +opulent@A +opus@N +opuses@p +or@NA +oracle@N +oracles@p +oracular@A +oral@AN +orally@v +orals@p +oran@N +orange@N +orangeade@N +orangeades@p +orangeness@? +orangeries@p +orangery@N +oranges@p +orangutan@N +orangutang@? +orangutangs@p +orangutans@p +orate@i +orated@it +orates@i +orating@it +oration@N +orations@p +orator@N +oratorical@A +oratories@p +oratorio@N +oratorios@p +orators@p +oratory@N +orb@NVt +orbit@NVti +orbital@N +orbitals@p +orbited@AVti +orbiting@AVti +orbits@pVti +orbs@pVt +orchard@N +orchards@p +orchestra@N +orchestral@A +orchestras@p +orchestrate@t +orchestrated@ti +orchestrates@t +orchestrating@ti +orchestration@N +orchestrations@p +orchid@N +orchids@p +ordain@t +ordained@t +ordaining@t +ordains@t +ordeal@N +ordeals@p +order@Nt! +ordered@At! +ordering@At! +orderings@p +orderlies@? +orderliness@? +orderly@AvN +orders@pt! +ordinal@AN +ordinals@p +ordinance@N +ordinances@p +ordinaries@? +ordinarily@v +ordinariness@? +ordinary@AN +ordination@N +ordinations@p +ordnance@N +ordovician@AN +ordure@N +ore@N +oregano@N +oregon@N +oregonian@AN +oregonians@p +oreo@? +ores@p +orestes@N +organ@N +organdie@N +organdy@N +organelle@N +organelles@p +organic@AN +organically@v +organics@p +organisation@? +organisational@A +organisations@p +organise@ti +organised@ti +organiser@? +organisers@p +organises@ti +organising@ti +organism@N +organisms@p +organist@N +organists@p +organization@N +organizational@A +organizations@p +organize@Vti +organized@V +organizer@N +organizers@p +organizes@Vti +organizing@V +organs@p +orgasm@N +orgasmic@A +orgasms@p +orgiastic@? +orgies@p +orgy@N +orient@N +oriental@A +orientalist@N +orientalists@p +orientals@p +orientate@Vt +orientated@ti +orientates@Vt +orientating@ti +orientation@N +orientations@p +oriented@A +orienteering@N +orienting@A +orients@p +orifice@N +orifices@p +origami@N +origin@N +original@AN +originality@N +originally@v +originals@p +originate@Vi +originated@V +originates@Vi +originating@V +origination@N +originator@N +originators@p +origins@p +orinoco@N +oriole@N +orioles@p +orion@N +oriya@N +orizaba@N +orlando@N +orleans@N +orlon@N +orlons@p +orly@N +ormolu@N +ornament@NVt +ornamental@AN +ornamentation@N +ornamented@A +ornamenting@AVt +ornaments@pVt +ornate@A +ornately@v +ornateness@N +ornerier@? +orneriest@? +ornery@A +ornithological@A +ornithologist@N +ornithologists@p +ornithology@N +orotund@A +orphan@Nt +orphanage@N +orphanages@p +orphaned@At +orphaning@At +orphans@pt +orpheus@N +orphic@A +orthodontia@? +orthodontic@A +orthodontics@NA +orthodontist@N +orthodontists@p +orthodox@A +orthodoxies@p +orthodoxy@N +orthogonal@A +orthogonality@N +orthographic@A +orthographically@v +orthographies@p +orthography@N +orthopaedic@? +orthopaedics@N +orthopaedist@? +orthopaedists@p +orthopedic@A +orthopedics@N +orthopedist@N +orthopedists@p +orwell@N +orwellian@? +os@N +osage@N +osaka@N +osborne@N +oscar@N +oscars@p +osceola@? +oscillate@i +oscillated@V +oscillates@i +oscillating@V +oscillation@N +oscillations@p +oscillator@N +oscillators@p +oscilloscope@N +oscilloscopes@p +oses@? +osha@? +oshawa@N +osier@N +osiers@p +osiris@N +oslo@N +osmosis@N +osmotic@? +osprey@N +ospreys@p +ossification@N +ossified@A +ossifies@? +ossify@Vi +ossifying@V +ostensible@A +ostensibly@v +ostentation@N +ostentatious@p +ostentatiously@v +osteoarthritis@NA +osteopath@N +osteopaths@p +osteopathy@N +osteoporosis@N +ostler@N +ostlers@p +ostracise@N +ostracised@A +ostracises@p +ostracising@A +ostracism@N +ostracize@t +ostracized@t +ostracizes@t +ostracizing@t +ostrich@N +ostriches@? +ostrogoth@N +ostwald@N +oswald@N +ot@N +other@Drv +otherness@N +others@Drv +otherwise@CvAr +otherworldly@A +otiose@A +otis@N +otoh@? +ottawa@N +ottawas@p +otter@N +otters@p +otto@N +ottoman@AN +ottomans@p +ouagadougou@N +ouch@!N +ought@VNv +ouija@N +ounce@N +ounces@p +our@D +ours@r +ourselves@r +oust@t +ousted@t +ouster@N +ousters@p +ousting@t +ousts@t +out@vP!Nti +outage@N +outages@p +outback@NA +outbacks@p +outbalance@t +outbalanced@t +outbalances@t +outbalancing@t +outbid@V +outbidding@t +outbids@V +outboard@AvN +outbound@A +outbreak@N +outbreaks@p +outbuilding@N +outbuildings@p +outburst@N +outbursts@p +outcast@NA +outcasts@p +outclass@t +outclassed@t +outclasses@? +outclassing@t +outcome@N +outcomes@p +outcries@? +outcrop@Ni +outcropped@V +outcropping@V +outcroppings@V +outcrops@pi +outcry@Nt +outdated@A +outdid@t +outdistance@t +outdistanced@t +outdistances@t +outdistancing@t +outdo@V +outdoes@? +outdoing@t +outdone@? +outdoor@A +outdoors@vN +outed@vP!Ati +outer@AN +outermost@A +outerwear@N +outface@t +outfaced@t +outfaces@t +outfacing@t +outfall@N +outfalls@p +outfield@N +outfielder@N +outfielders@p +outfields@p +outfit@NV +outfits@pV +outfitted@V +outfitter@N +outfitters@p +outfitting@V +outflank@t +outflanked@t +outflanking@t +outflanks@t +outflow@N +outflows@p +outfox@t +outfoxed@t +outfoxes@? +outfoxing@t +outgo@tN +outgoes@? +outgoing@AN +outgoings@p +outgrew@V +outgrow@V +outgrowing@V +outgrown@V +outgrows@V +outgrowth@N +outgrowths@p +outguess@t +outguessed@t +outguesses@? +outguessing@t +outgun@t +outgunned@t +outgunning@t +outguns@t +outhouse@N +outhouses@p +outing@N +outings@p +outlaid@V +outlandish@A +outlandishly@v +outlandishness@N +outlast@t +outlasted@t +outlasting@t +outlasts@t +outlaw@N +outlawed@A +outlawing@A +outlaws@p +outlay@Nt +outlaying@V +outlays@pt +outlet@N +outlets@p +outline@Nt +outlined@V +outlines@pt +outlining@V +outlive@t +outlived@t +outlives@t +outliving@t +outlook@N +outlooks@p +outlying@A +outmaneuver@? +outmaneuvered@? +outmaneuvering@? +outmaneuvers@p +outmanoeuvre@t +outmanoeuvred@t +outmanoeuvres@t +outmanoeuvring@t +outmoded@A +outnumber@t +outnumbered@t +outnumbering@t +outnumbers@t +outpace@t +outpaced@t +outpaces@t +outpacing@t +outpatient@N +outpatients@p +outperform@t +outperformed@t +outperforming@t +outperforms@t +outplacement@? +outplay@t +outplayed@t +outplaying@t +outplays@t +outpoint@t +outpointed@t +outpointing@t +outpoints@t +outpost@N +outposts@p +outpouring@N +outpourings@p +output@N +outputs@p +outputted@? +outputting@? +outrage@Nt +outraged@V +outrageous@A +outrageously@v +outrages@pt +outraging@V +outran@V +outrank@t +outranked@t +outranking@t +outranks@t +outreach@VtN +outreached@VtA +outreaches@? +outreaching@VtA +outrider@N +outriders@p +outrigger@N +outriggers@p +outright@Av +outrun@V +outrunning@? +outruns@V +outs@vP!pti +outsell@V +outselling@t +outsells@V +outset@N +outsets@p +outshine@Vti +outshined@Vti +outshines@Vti +outshining@V +outshone@V +outside@PAvN +outsider@N +outsiders@p +outsides@Ppv +outsize@AN +outsized@A +outsizes@p +outskirt@N +outskirts@p +outsmart@t +outsmarted@t +outsmarting@t +outsmarts@t +outsold@t +outsource@? +outsourced@? +outsources@? +outsourcing@? +outspoken@A +outspokenly@v +outspokenness@N +outspread@VAN +outspreading@V +outspreads@Vp +outstanding@A +outstandingly@? +outstation@Nv +outstations@pv +outstay@t +outstayed@t +outstaying@t +outstays@t +outstretch@t +outstretched@t +outstretches@? +outstretching@t +outstrip@V +outstripped@t +outstripping@t +outstrips@V +outstript@? +outta@? +outtake@? +outtakes@? +outvote@t +outvoted@t +outvotes@t +outvoting@t +outward@AvN +outwardly@v +outwards@v +outwear@V +outwearing@V +outwears@V +outweigh@t +outweighed@t +outweighing@t +outweighs@t +outwit@V +outwith@P +outwits@V +outwitted@t +outwitting@t +outwore@? +outwork@NV +outworker@N +outworkers@p +outworn@AV +ouzo@N +ouzos@p +ova@N +oval@AN +ovals@p +ovarian@A +ovaries@p +ovary@N +ovation@N +ovations@p +oven@N +ovenproof@? +ovens@p +ovenware@N +over@PvAN +overabundance@N +overabundant@A +overachieve@i +overachieved@i +overachiever@? +overachievers@p +overachieves@i +overachieving@i +overact@V +overacted@V +overacting@V +overactive@A +overacts@V +overage@A +overages@p +overall@AvN +overalls@pv +overambitious@A +overanxious@A +overarching@t +overarm@Av +overate@V +overawe@t +overawed@t +overawes@t +overawing@t +overbalance@VtN +overbalanced@V +overbalances@Vtp +overbalancing@V +overbear@Vt +overbearing@A +overbears@Vt +overbid@VN +overbidding@V +overbids@Vp +overbite@N +overbites@p +overblown@A +overboard@v +overbook@t +overbooked@t +overbooking@t +overbooks@t +overbore@? +overborne@? +overburden@VtN +overburdened@VtA +overburdening@VtA +overburdens@Vtp +overcame@V +overcast@AVN +overcasting@N +overcasts@pV +overcautious@A +overcharge@VtN +overcharged@VtA +overcharges@Vtp +overcharging@VtA +overclock@? +overclocked@? +overclocking@? +overclocks@p +overcoat@N +overcoats@p +overcome@Vti +overcomes@Vti +overcoming@V +overcompensate@Vi +overcompensated@Vi +overcompensates@Vi +overcompensating@Vi +overcompensation@N +overconfident@? +overcook@t +overcooked@t +overcooking@t +overcooks@t +overcrowd@ti +overcrowded@ti +overcrowding@ti +overcrowds@ti +overdevelop@t +overdeveloped@t +overdeveloping@t +overdevelops@t +overdid@V +overdo@V +overdoes@? +overdoing@V +overdone@V +overdose@NVt +overdosed@V +overdoses@pVt +overdosing@V +overdraft@N +overdrafts@p +overdraw@Vt +overdrawing@Vt +overdrawn@? +overdraws@Vt +overdress@VN +overdressed@V +overdresses@? +overdressing@V +overdrew@? +overdrive@Nt +overdrives@pt +overdue@A +overeager@A +overeat@it +overeaten@V +overeating@V +overeats@it +overemphasis@N +overemphasise@? +overemphasised@A +overemphasises@? +overemphasising@A +overemphasize@t +overemphasized@t +overemphasizes@t +overemphasizing@t +overenthusiastic@A +overestimate@VtN +overestimated@VtA +overestimates@Vtp +overestimating@VtA +overestimation@N +overexcite@t +overexcited@t +overexcites@t +overexciting@t +overexpose@t +overexposed@t +overexposes@t +overexposing@t +overexposure@N +overextend@V +overextended@V +overextending@V +overextends@V +overflew@V +overflies@? +overflight@N +overflights@p +overflow@VitN +overflowed@VitA +overflowing@VitA +overflown@V +overflows@Vitp +overfly@V +overflying@V +overfull@? +overgenerous@A +overgrew@V +overground@A +overgrow@Vti +overgrowing@V +overgrown@V +overgrows@Vti +overgrowth@N +overhand@AvV +overhands@pvV +overhang@VtN +overhanging@V +overhangs@Vtp +overhaul@VtN +overhauled@VtA +overhauling@VtA +overhauls@Vtp +overhead@AvN +overheads@p +overhear@V +overheard@t +overhearing@t +overhears@V +overheat@VtN +overheated@VtA +overheating@VtA +overheats@Vtp +overhung@V +overindulge@ti +overindulged@ti +overindulgence@N +overindulges@ti +overindulging@ti +overjoy@t +overjoyed@t +overjoying@t +overjoys@t +overkill@N +overladen@? +overlaid@V +overlain@t +overland@AvV +overlap@ViN +overlapped@V +overlapping@V +overlaps@Vip +overlay@tN +overlaying@V +overlays@tp +overleaf@v +overlie@V +overlies@V +overload@VtN +overloaded@VtA +overloading@VtA +overloads@Vtp +overlong@Av +overlook@VtN +overlooked@VtA +overlooking@VtA +overlooks@Vtp +overlord@N +overlords@p +overly@v +overlying@t +overmanned@V +overmanning@V +overmuch@vAN +overmuches@? +overnight@vA +overnights@vp +overpaid@t +overpass@Nt +overpasses@? +overpay@V +overpaying@t +overpays@V +overplay@t +overplayed@t +overplaying@t +overplays@t +overpopulate@t +overpopulated@t +overpopulates@t +overpopulating@t +overpopulation@N +overpower@t +overpowered@t +overpowering@A +overpoweringly@v +overpowers@t +overprice@t +overpriced@t +overprices@t +overpricing@t +overprint@VtN +overprinted@VtA +overprinting@VtA +overprints@Vtp +overproduce@? +overproduced@? +overproduces@? +overproducing@? +overproduction@? +overprotective@? +overqualified@t +overran@V +overrate@t +overrated@t +overrates@t +overrating@t +overreach@ti +overreached@ti +overreaches@? +overreaching@ti +overreact@i +overreacted@i +overreacting@i +overreaction@N +overreactions@p +overreacts@i +overridden@? +override@V +overrides@V +overriding@A +overripe@AN +overrode@? +overrule@t +overruled@t +overrules@t +overruling@t +overrun@tiN +overrunning@V +overruns@tip +overs@Pvp +oversampling@? +oversaw@t +overseas@vAN +oversee@V +overseeing@t +overseen@t +overseer@N +overseers@p +oversees@V +oversell@Vt +overselling@V +oversells@Vt +oversensitive@? +oversexed@A +overshadow@t +overshadowed@t +overshadowing@t +overshadows@t +overshoe@N +overshoes@p +overshoot@Vt +overshooting@V +overshoots@Vt +overshot@A +oversight@N +oversights@p +oversimplification@N +oversimplifications@p +oversimplified@t +oversimplifies@? +oversimplify@V +oversimplifying@t +oversize@AN +oversized@A +oversleep@V +oversleeping@V +oversleeps@V +overslept@V +oversold@V +overspecialise@? +overspecialised@? +overspecialises@? +overspecialising@? +overspecialize@V +overspecialized@V +overspecializes@V +overspecializing@V +overspend@Vt +overspending@Vt +overspends@Vt +overspent@? +overspill@NV +overspread@t +overspreading@t +overspreads@t +overstaffed@t +overstate@t +overstated@t +overstatement@? +overstatements@p +overstates@t +overstating@t +overstay@t +overstayed@A +overstaying@t +overstays@t +overstep@V +overstepped@t +overstepping@t +oversteps@V +overstock@tN +overstocked@tA +overstocking@N +overstocks@tp +overstretch@t +overstretched@t +overstretches@? +overstretching@t +overstuffed@A +oversubscribe@t +oversubscribed@t +oversubscribes@t +oversubscribing@t +oversupplied@p +oversupplies@p +oversupply@Nt +oversupplying@p +overt@A +overtake@Vt +overtaken@? +overtakes@Vt +overtaking@Vt +overtax@t +overtaxed@t +overtaxes@? +overtaxing@t +overthrew@? +overthrow@tN +overthrowing@tA +overthrown@? +overthrows@tp +overtime@NvVt +overtimes@pvVt +overtire@it +overtired@it +overtires@it +overtiring@it +overtly@v +overtone@N +overtones@p +overtook@V +overture@Nt +overtures@pt +overturn@VtN +overturned@VtA +overturning@VtA +overturns@Vtp +overuse@tN +overused@V +overuses@tp +overusing@V +overvaluation@N +overvaluations@p +overvalue@t +overvalued@t +overvalues@t +overvaluing@t +overview@N +overviews@p +overweening@A +overweeningly@v +overweight@ANVt +overwhelm@t +overwhelmed@t +overwhelming@A +overwhelmingly@v +overwhelms@t +overwinter@i +overwintered@i +overwintering@i +overwinters@i +overwork@VN +overworked@VA +overworking@V +overworks@Vp +overwrite@V +overwrites@V +overwriting@V +overwritten@? +overwrote@V +overwrought@A +overzealous@A +ovid@N +oviduct@N +oviducts@p +oviparous@A +ovoid@AN +ovoids@p +ovulate@i +ovulated@i +ovulates@i +ovulating@i +ovulation@? +ovule@N +ovules@p +ovum@N +ow@! +owe@Vi +owed@V +owen@N +owens@N +owes@Vi +owing@AV +owl@N +owlet@N +owlets@p +owlish@A +owlishly@A +owls@p +own@Dt +owned@Dt +owner@N +owners@p +ownership@N +owning@Dt +owns@Dt +ox@N +oxbow@N +oxbows@p +oxcart@N +oxcarts@p +oxen@N +oxford@N +oxfords@p +oxidation@N +oxide@N +oxides@p +oxidisation@? +oxidise@ti +oxidised@ti +oxidiser@? +oxidisers@p +oxidises@ti +oxidising@ti +oxidization@N +oxidize@V +oxidized@V +oxidizer@N +oxidizers@p +oxidizes@V +oxidizing@V +oxnard@? +oxonian@AN +oxtail@N +oxtails@p +oxus@N +oxyacetylene@N +oxygen@N +oxygenate@N +oxygenated@t +oxygenates@p +oxygenating@t +oxygenation@N +oxymora@? +oxymoron@N +oxymorons@p +oyster@Ni +oysters@pi +oz@N +ozarks@p +ozone@N +pa@N +pablum@N +pac@N +pace@N +paced@AV +pacemaker@N +pacemakers@p +paces@p +pacesetter@N +pacesetters@p +pacey@? +pachyderm@N +pachyderms@p +pacier@? +paciest@? +pacific@A +pacifically@v +pacification@N +pacified@t +pacifier@N +pacifiers@p +pacifies@? +pacifism@N +pacifist@N +pacifists@p +pacify@V +pacifying@t +pacing@V +pack@N +package@Nt +packaged@V +packages@pt +packaging@N +packed@A +packer@N +packers@p +packet@Nt +packets@pt +packing@N +packs@p +pact@N +pacts@p +pacy@? +pad@N +padded@? +paddies@p +padding@N +paddle@NVti +paddled@Vi +paddles@pVti +paddling@Vi +paddock@Nt +paddocked@At +paddocking@At +paddocks@pt +paddy@N +paderewski@N +padlock@Nt +padlocked@At +padlocking@At +padlocks@pt +padre@N +padres@p +pads@p +paean@N +paeans@p +paediatric@A +paediatrician@N +paediatricians@p +paediatrics@N +paedophile@? +paedophiles@? +paedophilia@NA +paella@N +paellas@p +pagan@NA +paganini@N +paganism@N +pagans@p +page@N +pageant@N +pageantry@N +pageants@p +pageboy@N +pageboys@p +paged@V +pager@? +pagers@p +pages@N +paginate@t +paginated@t +paginates@t +paginating@t +pagination@? +paging@V +pagoda@N +pagodas@p +pah@! +pahlavi@N +paid@V +pail@N +pailful@N +pailfuls@p +pails@p +pailsful@? +pain@N +paine@N +pained@A +painful@A +painfuller@? +painfullest@? +painfully@v +paining@A +painkiller@N +painkillers@p +painkilling@? +painless@A +painlessly@? +pains@p +painstaking@A +painstakingly@v +paint@NVt +paintball@? +paintbox@N +paintboxes@? +paintbrush@N +paintbrushes@? +painted@A +painter@N +painterly@A +painters@p +painting@N +paintings@p +paints@pVt +paintwork@? +pair@NV +paired@AV +pairing@AV +pairings@p +pairs@p +pairwise@? +paisley@N +paisleys@p +pajama@N +pajamas@p +pakistan@NA +pakistani@? +pakistanis@p +pal@N +palace@N +palaces@p +palaeolithic@NA +palaeontologist@N +palaeontologists@p +palaeontology@N +palatable@A +palatal@AN +palatals@p +palate@N +palates@p +palatial@A +palau@? +palaver@Nit +palavered@Ait +palavering@Ait +palavers@pit +pale@AViNt +paled@AV +paleface@N +palefaces@p +palembang@N +paleness@? +paleocene@? +paleogene@AN +paleolithic@A +paleontologist@? +paleontologists@p +paleontology@N +paleozoic@AN +paler@A +palermo@N +pales@N +palest@A +palestine@N +palestinian@? +palestinians@p +palestrina@N +palette@N +palettes@p +paley@N +palimony@? +palimpsest@NA +palimpsests@p +palindrome@N +palindromes@p +palindromic@A +paling@N +palings@p +palisade@Nt +palisades@N +palish@A +pall@N +palladio@N +palladium@N +pallbearer@N +pallbearers@p +palled@V +pallet@N +pallets@p +palliate@t +palliated@t +palliates@t +palliating@t +palliation@N +palliative@AN +palliatives@p +pallid@A +palling@V +pallor@N +palls@p +pally@A +palm@N +palmed@A +palmer@N +palmerston@N +palmetto@N +palmettoes@p +palmettos@p +palmier@A +palmiest@A +palming@A +palmist@N +palmistry@N +palmists@p +palms@p +palmtop@? +palmtops@p +palmy@A +palomino@N +palominos@p +palpable@A +palpably@v +palpate@tA +palpated@t +palpates@tp +palpating@t +palpation@N +palpitate@i +palpitated@i +palpitates@i +palpitating@i +palpitation@N +palpitations@p +pals@N +palsied@p +palsies@p +palsy@NVt +palsying@p +paltrier@A +paltriest@A +paltriness@N +paltry@A +pampas@N +pamper@t +pampered@t +pampering@t +pampers@t +pamphlet@N +pamphleteer@Ni +pamphleteers@pi +pamphlets@p +pan@ANV +panacea@N +panaceas@p +panache@N +panama@N +panamanian@AN +panamanians@p +panamas@p +panatella@N +panatellas@p +pancake@NV +pancaked@AV +pancakes@pV +pancaking@AV +panchromatic@A +pancreas@N +pancreases@? +pancreatic@A +panda@N +pandas@p +pandemic@AN +pandemics@p +pandemonium@N +pander@iN +pandered@iA +panderer@? +panderers@p +pandering@iA +panders@ip +pandora@N +pane@N +panegyric@N +panegyrics@p +panel@NVt +paneled@V +paneling@N +panelings@p +panelist@N +panelists@p +panelled@V +panelling@N +panellings@p +panellist@N +panellists@p +panels@pVt +panes@p +pang@N +pangs@p +panhandle@NV +panhandled@V +panhandler@? +panhandlers@p +panhandles@pV +panhandling@V +panic@A +panicked@? +panickier@? +panickiest@? +panicking@? +panicky@A +panics@p +panier@N +paniers@p +pankhurst@N +panned@V +pannier@N +panniers@p +panning@V +panoplies@p +panoply@N +panorama@N +panoramas@p +panoramic@A +panpipes@p +pans@pV +pansies@p +pansy@N +pant@ViN +pantagruel@N +pantaloons@p +pantechnicon@N +pantechnicons@p +panted@ViA +pantheism@N +pantheist@? +pantheistic@A +pantheists@p +pantheon@N +pantheons@p +panther@N +panthers@p +pantie@N +panties@p +panting@ViA +panto@N +pantomime@NV +pantomimed@V +pantomimes@pV +pantomiming@V +pantos@p +pantries@p +pantry@N +pants@p +pantsuit@N +pantsuits@p +panty@? +pantyhose@? +pap@N +papa@N +papacies@? +papacy@N +papal@A +paparazzi@? +paparazzo@? +papas@p +papaw@N +papaws@p +papaya@N +papayas@p +paper@NAVt +paperback@NA +paperbacks@p +paperbark@N +paperbarks@p +paperboy@N +paperboys@p +paperclip@N +paperclips@p +papered@AVt +papergirl@N +papergirls@p +paperhanger@N +paperhangers@p +papering@AVt +paperless@? +papers@pVt +paperweight@N +paperweights@p +paperwork@N +papery@A +papilla@N +papillae@p +papist@NA +papists@p +papoose@N +papooses@p +pappy@AN +paprika@N +paps@p +papyri@? +papyrus@N +papyruses@? +par@N +para@N +parable@N +parables@p +parabola@N +parabolas@p +parabolic@A +paracelsus@N +paracetamol@N +paracetamols@p +parachute@NV +parachuted@V +parachutes@pV +parachuting@V +parachutist@N +parachutists@p +paraclete@N +parade@NVti +paraded@AVti +parades@pVti +paradigm@N +paradigmatic@A +paradigms@p +parading@AVti +paradise@N +paradises@p +paradox@N +paradoxes@? +paradoxical@A +paradoxically@v +paraffin@Nt +paragliding@? +paragon@Nt +paragons@pt +paragraph@Nt +paragraphed@At +paragraphing@At +paragraphs@pt +paraguay@N +paraguayan@? +paraguayans@p +parakeet@N +parakeets@p +paralegal@? +paralegals@p +parallax@N +parallaxes@? +parallel@ANVt +paralleled@V +paralleling@V +parallelism@NA +parallelisms@p +parallelled@V +parallelling@V +parallelogram@N +parallelograms@p +parallels@pVt +paralyse@t +paralysed@t +paralyses@p +paralysing@t +paralysis@N +paralytic@AN +paralytics@p +paralyze@t +paralyzed@t +paralyzes@t +paralyzing@t +paramaribo@N +paramecia@? +paramecium@N +parameciums@p +paramedic@NA +paramedical@A +paramedicals@p +paramedics@p +parameter@N +parameters@p +paramilitaries@? +paramilitary@A +paramount@AN +paramountcy@N +paramour@N +paramours@p +paranoia@N +paranoiac@AN +paranoiacs@p +paranoid@AN +paranoids@p +paranormal@A +parapet@N +parapets@p +paraphernalia@p +paraphrase@NV +paraphrased@AV +paraphrases@p +paraphrasing@AV +paraplegia@N +paraplegic@AN +paraplegics@p +paraprofessional@NA +paraprofessionals@p +parapsychology@N +paraquat@N +paras@p +parascending@? +parasite@N +parasites@p +parasitic@A +parasitical@? +parasitically@v +parasol@N +parasols@p +paratroop@AN +paratrooper@N +paratroopers@p +paratroops@p +parboil@t +parboiled@t +parboiling@t +parboils@t +parc@? +parcel@N +parceled@A +parceling@N +parcelled@? +parcelling@? +parcels@p +parch@Vt +parched@Vt +parcheesi@N +parches@? +parching@Vt +parchment@N +parchments@p +parcs@p +pardner@N +pardners@p +pardon@tN! +pardonable@A +pardonably@v +pardoned@tA! +pardoning@tA! +pardons@tp! +pare@N +pared@t +parent@N +parentage@N +parental@A +parented@A +parentheses@p +parenthesis@N +parenthesise@? +parenthesised@A +parenthesises@? +parenthesising@A +parenthesize@t +parenthesized@t +parenthesizes@t +parenthesizing@t +parenthetic@A +parenthetical@? +parenthetically@v +parenthood@N +parenting@A +parents@p +pares@p +pareto@N +parfait@N +parfaits@p +pariah@N +pariahs@p +paring@N +parings@p +paris@NA +parish@N +parishes@? +parishioner@N +parishioners@p +parisian@N +parisians@p +parities@? +parity@N +park@N +parka@N +parkas@p +parked@A +parker@N +parking@N +parkland@N +parkman@? +parks@N +parkway@N +parkways@p +parky@A +parlance@N +parlay@tN +parlayed@tA +parlaying@tA +parlays@tp +parley@N +parleyed@p +parleying@p +parleys@p +parliament@N +parliamentarian@NA +parliamentarians@p +parliamentary@A +parliaments@p +parlor@N +parlors@p +parlour@N +parlours@p +parlous@Av +parmesan@? +parmesans@p +parnassus@N +parnell@NA +parochial@A +parochialism@Nti +parochially@v +parodied@? +parodies@? +parodist@N +parodists@p +parody@NV +parodying@AV +parole@Nt +paroled@V +parolee@N +parolees@p +paroles@pt +paroling@V +paroxysm@N +paroxysms@p +parquet@Nt +parqueted@V +parqueting@V +parquetry@N +parquets@pt +parr@N +parrakeet@N +parrakeets@p +parred@A +parricide@N +parricides@p +parried@V +parries@V +parring@A +parrish@N +parrot@Nt +parroted@At +parroting@At +parrots@pt +parry@N +parrying@V +pars@N +parse@Vi +parsec@N +parsecs@p +parsed@t +parser@N +parses@Vi +parsi@? +parsimonious@p +parsimoniously@v +parsimony@N +parsing@t +parsley@N +parsnip@N +parsnips@p +parson@N +parsonage@N +parsonages@p +parsons@N +part@NvVit +partake@Vt +partaken@V +partaker@N +partakers@p +partakes@Vt +partaking@V +parted@A +parterre@N +parterres@p +parthenogenesis@N +parthenon@N +parthia@NA +partial@AN +partiality@N +partially@? +partials@p +participant@NA +participants@p +participate@iN +participated@V +participates@ip +participating@V +participation@N +participator@? +participators@p +participatory@? +participial@AN +participle@N +participles@p +particle@N +particles@p +particular@AN +particularisation@N +particularise@ti +particularised@ti +particularises@ti +particularising@ti +particularities@p +particularity@N +particularization@N +particularize@Vt +particularized@V +particularizes@Vt +particularizing@V +particularly@v +particulars@p +particulate@A +particulates@p +partied@A +parties@? +parting@NA +partings@p +partisan@NA +partisans@p +partisanship@N +partition@Nt +partitioned@At +partitioning@At +partitions@pt +partitive@AN +partitives@p +partizan@NA +partizans@p +partly@v +partner@NV +partnered@AV +partnering@AV +partners@p +partnership@N +partnerships@p +partook@V +partridge@N +partridges@p +parts@p +parturition@N +partway@? +party@NA +partying@p +parvenu@NA +parvenus@p +pas@N +pasadena@N +pascal@N +pascals@p +paschal@AN +pasha@N +pashas@p +pass@AVtiN! +passable@A +passably@v +passage@NV +passages@pV +passageway@N +passageways@p +passbook@N +passbooks@p +passed@A +passel@N +passels@p +passenger@N +passengers@p +passer@N +passerby@? +passersby@? +passes@p +passim@v +passing@AvN +passion@N +passionate@A +passionately@v +passionflower@N +passionflowers@p +passionless@A +passions@p +passive@AN +passively@? +passives@p +passivisation@? +passivity@? +passivization@? +passivize@? +passivized@? +passivizes@? +passivizing@? +passkey@N +passkeys@p +passover@N +passovers@p +passport@N +passports@p +password@N +passwords@p +past@ANvP +pasta@N +pastas@p +paste@Nt +pasteboard@NA +pasted@AvP +pastel@NA +pastels@p +pastern@N +pasternak@N +pasterns@p +pastes@pt +pasteur@N +pasteurisation@N +pasteurise@t +pasteurised@t +pasteurises@t +pasteurising@t +pasteurization@N +pasteurize@t +pasteurized@t +pasteurizes@t +pasteurizing@t +pastiche@N +pastiches@p +pastie@? +pastier@A +pasties@A +pastiest@A +pastille@N +pastilles@p +pastime@N +pastimes@p +pasting@AvP +pastor@N +pastoral@AN +pastorals@p +pastorate@N +pastorates@p +pastors@p +pastrami@N +pastries@p +pastry@N +pasts@pvP +pasturage@N +pasture@N +pastured@A +pastureland@? +pastures@p +pasturing@A +pasty@AN +pat@N +patagonia@N +patagonian@? +patch@Nt +patched@At +patches@? +patchier@A +patchiest@A +patchily@? +patchiness@? +patching@At +patchouli@N +patchwork@N +patchworks@p +patchy@A +pate@N +patella@N +patellae@? +patellas@p +patent@NAt +patented@At +patenting@At +patently@v +patents@pt +paterfamilias@N +paternal@A +paternalism@NA +paternalist@? +paternalistic@? +paternalists@p +paternally@v +paternity@N +paterson@N +pates@p +path@N +pathetic@Ap +pathetically@v +pathfinder@N +pathfinders@p +pathogen@N +pathogenic@A +pathogens@p +pathological@A +pathologically@v +pathologist@? +pathologists@p +pathology@N +pathos@N +paths@p +pathway@N +pathways@p +patience@N +patient@AN +patienter@? +patientest@? +patiently@v +patients@p +patina@N +patinae@p +patinas@p +patine@? +patio@N +patios@p +patisserie@N +patisseries@p +patna@N +patois@N +patriarch@N +patriarchal@A +patriarchies@p +patriarchs@p +patriarchy@N +patrician@NA +patricians@p +patricide@N +patricides@p +patrick@N +patrimonial@A +patrimonies@p +patrimony@N +patriot@N +patriotic@A +patriotically@v +patriotism@N +patriots@p +patrol@NV +patrolled@V +patrolling@V +patrolman@N +patrolmen@? +patrols@pV +patrolwoman@? +patrolwomen@? +patron@N +patronage@N +patronages@p +patroness@? +patronesses@? +patronise@t +patronised@t +patronises@t +patronising@A +patronisingly@v +patronize@V +patronized@t +patronizes@V +patronizing@t +patronizingly@? +patrons@p +patronymic@AN +patronymics@p +pats@p +patsies@p +patsy@N +patted@V +patter@itNV +pattered@itAV +pattering@itAV +pattern@NV +patterned@AV +patterning@AV +patterns@pV +patters@itpV +patti@N +patties@p +patting@V +patton@N +patty@N +paucity@N +paul@N +pauli@N +pauline@A +pauling@N +paunch@NV +paunches@? +paunchier@? +paunchiest@? +paunchy@A +pauper@N +pauperise@t +pauperised@t +pauperises@t +pauperising@t +pauperism@N +pauperize@t +pauperized@t +pauperizes@t +pauperizing@t +paupers@p +pause@iN +paused@V +pauses@ip +pausing@V +pavarotti@? +pave@t +paved@t +pavement@N +pavements@p +paves@t +pavilion@Nt +pavilions@pt +paving@N +pavings@p +pavlov@N +pavlova@N +pavlovas@p +pavlovian@? +paw@NVt +pawed@AVt +pawing@AVt +pawl@N +pawls@p +pawn@tN +pawnbroker@N +pawnbrokers@p +pawned@tA +pawnee@N +pawning@tA +pawns@tp +pawnshop@N +pawnshops@p +pawpaw@N +pawpaws@p +paws@pVt +pay@VtiN +payable@A +payback@? +paybacks@p +paycheck@N +paychecks@p +payday@N +paydays@p +payed@t +payee@N +payees@p +payer@N +payers@p +paying@t +payload@N +payloads@p +paymaster@N +paymasters@p +payment@N +payments@p +payoff@NA +payoffs@p +payola@N +payout@? +payouts@p +payphone@? +payphones@? +payroll@N +payrolls@p +pays@Vtip +payslip@? +payslips@p +payware@? +paywares@? +pb@N +pbs@p +pbx@? +pc@N +pcb@? +pcs@p +pct@N +pd@N +pdq@? +pe@N +pea@N +peace@N +peaceable@A +peaceably@v +peaceful@A +peacefully@v +peacefulness@? +peacekeeper@? +peacekeepers@p +peacekeeping@? +peacemaker@N +peacemakers@p +peaces@p +peacetime@N +peach@Ni +peaches@? +peachy@A +peacock@N +peacocks@p +peafowl@N +peafowls@p +peahen@N +peahens@p +peak@Nti +peaked@A +peaking@Ati +peaks@pti +peaky@A +peal@Nit +peale@N +pealed@Ait +pealing@Ait +peals@pit +peanut@N +peanuts@N +pear@N +pearl@N +pearled@A +pearlier@A +pearliest@A +pearling@A +pearls@p +pearly@AN +pears@N +peary@N +peas@p +peasant@N +peasantry@N +peasants@p +pease@N +peashooter@N +peashooters@p +peat@N +peaty@A +pebble@NVt +pebbled@AVt +pebbles@pVt +pebblier@? +pebbliest@? +pebbling@N +pebbly@A +pecan@N +pecans@p +peccadillo@N +peccadilloes@? +peccadillos@p +peccaries@p +peccary@N +pechora@N +peck@N +pecked@A +pecker@N +peckers@p +pecking@A +peckish@A +pecks@p +pecos@N +pecs@p +pectin@N +pectoral@AN +pectorals@p +peculiar@AN +peculiarities@? +peculiarity@N +peculiarly@v +pecuniary@A +pedagog@? +pedagogic@A +pedagogical@? +pedagogically@v +pedagogs@p +pedagogue@N +pedagogues@p +pedagogy@N +pedal@NVA +pedaled@AV +pedaling@V +pedalled@V +pedalling@V +pedalo@N +pedalos@p +pedals@pV +pedant@N +pedantic@A +pedantically@v +pedantry@N +pedants@p +peddle@Vti +peddled@V +peddler@N +peddlers@p +peddles@Vti +peddling@A +pederast@N +pederasts@p +pederasty@N +pedestal@N +pedestals@p +pedestrian@NA +pedestrianisation@? +pedestrianise@i +pedestrianised@i +pedestrianises@i +pedestrianising@i +pedestrianization@? +pedestrianize@t +pedestrianized@i +pedestrianizes@t +pedestrianizing@i +pedestrians@p +pediatric@A +pediatrician@N +pediatricians@p +pediatrics@p +pediatrist@? +pediatrists@p +pedicure@N +pedicured@A +pedicures@p +pedicuring@A +pedigree@N +pedigreed@A +pedigrees@p +pediment@N +pediments@p +pedlar@N +pedlars@p +pedometer@N +pedometers@p +pedophile@? +pedophiles@? +pedophilia@? +pee@VN +peed@A +peeing@VA +peek@iN +peekaboo@NA +peeked@iA +peeking@iA +peeks@ip +peel@N +peeled@A +peeler@N +peelers@p +peeling@N +peelings@p +peels@p +peep@iN +peepbo@? +peeped@iA +peeper@N +peepers@p +peephole@N +peepholes@p +peeping@iA +peeps@ip +peepshow@N +peepshows@p +peer@N +peerage@N +peerages@p +peered@A +peeress@N +peeresses@? +peering@A +peerless@A +peers@N +pees@Vp +peeve@tN +peeved@AV +peeves@tp +peeving@V +peevish@A +peevishly@v +peevishness@N +peewee@AN +peewees@p +peewit@N +peewits@p +peg@N +pegasus@N +pegasuses@? +pegged@A +pegging@A +pegs@p +pei@N +pejorative@AN +pejoratively@v +pejoratives@p +peke@N +pekes@p +pekinese@N +pekineses@p +peking@N +pekingese@NA +pekingeses@p +pekings@p +pekoe@N +pelagic@A +pelican@N +pelicans@p +pellagra@N +pellet@N +pelleted@A +pelleting@A +pellets@p +pellucid@A +pelmet@N +pelmets@p +pelt@tiN +pelted@tiA +pelting@A +pelts@tip +pelves@p +pelvic@A +pelvis@N +pelvises@p +pembroke@N +pen@N +penal@A +penalise@t +penalised@t +penalises@t +penalising@t +penalize@t +penalized@t +penalizes@t +penalizing@t +penalties@p +penalty@N +penance@Nt +penances@pt +pence@N +penchant@N +penchants@p +pencil@NVt +penciled@V +penciling@V +pencilings@V +pencilled@V +pencilling@V +pencillings@V +pencils@pVt +pend@i +pendant@NA +pendants@p +pended@i +pendent@AN +pendents@p +pending@P +pends@i +pendulous@A +pendulum@N +pendulums@p +penelope@N +penes@p +penetrable@? +penetrate@Vti +penetrated@Vti +penetrates@Vti +penetrating@A +penetration@N +penetrations@p +penetrative@A +penfriend@? +penfriends@p +penguin@N +penguins@p +penicillin@N +penile@A +peninsula@N +peninsular@A +peninsulas@p +penis@N +penises@? +penitence@N +penitent@AN +penitential@AN +penitentiaries@p +penitentiary@NA +penitently@v +penitents@p +penknife@N +penknives@p +penlight@N +penlights@p +penlite@? +penlites@? +penmanship@N +penn@N +pennant@N +pennants@p +penned@V +pennies@p +penniless@A +penning@V +pennon@N +pennons@p +pennsylvania@N +pennsylvanian@AN +pennsylvanians@p +penny@N +pennyweight@N +pennyweights@p +pennyworth@N +penologist@N +penologists@p +penology@N +pens@p +pension@Nt +pensionable@A +pensioned@At +pensioner@N +pensioners@p +pensioning@At +pensions@pt +pensive@A +pensively@? +pensiveness@? +pent@N +pentagon@N +pentagonal@A +pentagons@p +pentameter@NA +pentameters@p +pentateuch@N +pentathlon@N +pentathlons@p +pentecost@N +pentecostal@AN +pentecostals@p +pentecosts@p +penthouse@N +penthouses@p +pentium@? +pentiums@p +penultimate@AN +penultimates@p +penumbra@N +penumbras@p +penurious@A +penury@N +peon@N +peonage@N +peonies@p +peons@p +peony@N +people@Nt +peopled@At +peoples@N +peopling@At +peoria@N +pep@NV +pepped@V +pepper@N +peppercorn@N +peppercorns@p +peppered@A +peppering@A +peppermint@N +peppermints@p +pepperoni@? +pepperonis@p +peppers@p +peppery@A +peppier@A +peppiest@A +pepping@V +peppy@A +peps@pV +pepsin@N +peptic@A +peptics@p +pepys@N +pequot@N +per@DP +perambulate@Vt +perambulated@V +perambulates@Vt +perambulating@V +perambulation@N +perambulations@p +perambulator@N +perambulators@p +percale@N +percales@p +perceivable@A +perceive@Vt +perceived@Vt +perceives@Vt +perceiving@Vt +percent@NA +percentage@N +percentages@p +percentile@N +percentiles@p +percents@p +perceptible@A +perceptibly@v +perception@N +perceptions@p +perceptive@A +perceptively@v +perceptiveness@N +perceptual@A +perch@NVt +perchance@v +perched@AVt +percheron@N +perches@p +perching@AVt +percipient@AN +percival@N +percolate@ViN +percolated@V +percolates@Vip +percolating@V +percolation@N +percolator@N +percolators@p +percussion@N +percussionist@N +percussionists@p +percussive@A +percy@N +perdition@N +peregrination@N +peregrinations@p +peregrine@A +peregrines@p +peremptorily@? +peremptory@A +perennial@AN +perennially@v +perennials@p +perestroika@? +perfect@ANVt +perfected@AVt +perfecter@N +perfectest@? +perfectible@A +perfecting@AVt +perfection@N +perfectionism@N +perfectionist@NA +perfectionists@p +perfections@p +perfectly@v +perfects@pVt +perfidies@p +perfidious@A +perfidy@N +perforate@VtA +perforated@A +perforates@Vtp +perforating@VtA +perforation@N +perforations@p +perforce@v +perform@Vti +performance@N +performances@p +performed@Vti +performer@N +performers@p +performing@A +performs@Vti +perfume@NVt +perfumed@V +perfumeries@p +perfumery@N +perfumes@pVt +perfuming@V +perfunctorily@v +perfunctory@A +pergola@N +pergolas@p +perhaps@v +pericardia@? +pericardium@N +pericardiums@p +periclean@A +pericles@N +perigee@N +perigees@p +perihelia@? +perihelion@N +perihelions@p +peril@N +periled@V +periling@V +perilled@V +perilling@V +perilous@A +perilously@v +perils@p +perimeter@N +perimeters@p +perinatal@A +period@N +periodic@A +periodical@NA +periodically@v +periodicals@p +periodicity@N +periodontal@A +periods@p +peripatetic@AN +peripatetics@p +peripheral@A +peripherally@vN +peripherals@p +peripheries@? +periphery@N +periphrases@p +periphrasis@N +periscope@N +periscopes@p +perish@i +perishable@AN +perishables@p +perished@A +perisher@? +perishers@p +perishes@? +perishing@A +peritonea@? +peritoneum@N +peritoneums@p +peritonitis@N +periwig@N +periwigs@p +periwinkle@N +periwinkles@p +perjure@t +perjured@A +perjurer@N +perjurers@p +perjures@t +perjuries@p +perjuring@t +perjury@N +perk@AViN +perked@AVi +perkier@A +perkiest@A +perkily@? +perkiness@? +perking@AVi +perkins@N +perks@pVi +perky@A +perl@N +perls@p +perm@N +permafrost@N +permalloy@N +permanence@N +permanency@N +permanent@A +permanently@v +permanents@p +permeability@N +permeable@A +permeate@V +permeated@V +permeates@V +permeating@V +permeation@? +permed@A +permian@AN +perming@A +permissible@A +permissibly@v +permission@N +permissions@p +permissive@A +permissively@v +permissiveness@N +permit@VtN +permits@Vtp +permitted@V +permitting@V +perms@p +permutation@N +permutations@p +permute@t +permuted@t +permutes@t +permuting@t +pernicious@A +perniciously@v +pernickety@A +pernod@N +peron@? +peroration@N +perorations@p +peroxide@Nt +peroxided@V +peroxides@pt +peroxiding@V +perpendicular@AN +perpendicularly@v +perpendiculars@p +perpetrate@t +perpetrated@t +perpetrates@t +perpetrating@t +perpetration@N +perpetrator@N +perpetrators@p +perpetual@AN +perpetually@v +perpetuals@p +perpetuate@t +perpetuated@t +perpetuates@t +perpetuating@t +perpetuation@N +perpetuity@N +perplex@t +perplexed@A +perplexedly@v +perplexes@? +perplexing@t +perplexities@p +perplexity@N +perquisite@N +perquisites@p +perrier@? +perry@N +persecute@t +persecuted@t +persecutes@t +persecuting@t +persecution@N +persecutions@p +persecutor@N +persecutors@p +perseid@N +persephone@N +perseus@N +perseverance@N +persevere@i +persevered@i +perseveres@i +persevering@A +pershing@N +persia@N +persian@AN +persians@p +persiflage@N +persimmon@N +persimmons@p +persist@i +persisted@i +persistence@N +persistent@A +persistently@v +persisting@i +persists@i +persnickety@A +person@N +persona@N +personable@A +personae@N +personage@N +personages@p +personal@AN +personalise@? +personalised@? +personalises@? +personalising@? +personalities@p +personality@N +personalize@t +personalized@t +personalizes@t +personalizing@t +personally@v +personals@p +personas@p +personification@N +personifications@p +personified@t +personifies@? +personify@V +personifying@t +personnel@N +persons@A +perspective@N +perspectives@p +perspex@N +perspicacious@A +perspicacity@? +perspicuity@N +perspicuous@A +perspiration@N +perspire@V +perspired@V +perspires@V +perspiring@V +persuade@t +persuaded@t +persuades@t +persuading@t +persuasion@N +persuasions@p +persuasive@A +persuasively@v +persuasiveness@N +pert@A +pertain@i +pertained@i +pertaining@i +pertains@i +perter@? +pertest@? +perth@N +pertinacious@A +pertinacity@N +pertinence@? +pertinent@A +pertinently@? +pertly@v +pertness@N +perturb@t +perturbation@N +perturbations@p +perturbed@t +perturbing@t +perturbs@t +pertussis@N +peru@N +perusal@N +perusals@p +peruse@t +perused@t +peruses@t +perusing@t +peruvian@AN +peruvians@p +perv@Ni +pervade@t +pervaded@t +pervades@t +pervading@t +pervasive@A +pervasively@v +pervasiveness@N +perverse@A +perversely@v +perverseness@N +perversion@N +perversions@p +perversity@N +pervert@VtN +perverted@A +perverting@VtA +perverts@Vtp +pervs@pi +peseta@N +pesetas@p +peshawar@N +peskier@A +peskiest@A +pesky@A +peso@N +pesos@p +pessaries@p +pessary@N +pessimal@? +pessimaled@? +pessimaling@? +pessimals@p +pessimism@N +pessimist@N +pessimistic@? +pessimistically@? +pessimists@p +pest@N +pester@t +pestered@t +pestering@t +pesters@t +pesticide@N +pesticides@p +pestilence@N +pestilences@p +pestilent@A +pestilential@A +pestle@NV +pestled@V +pestles@pV +pestling@V +pesto@? +pests@p +pet@N +petal@N +petals@p +petard@N +petards@p +peter@iN +petered@iA +petering@iA +peters@N +petiole@N +petioles@p +petite@A +petites@p +petition@Nti +petitioned@Ati +petitioner@N +petitioners@p +petitioning@Ati +petitions@pti +petra@N +petrarch@N +petrel@N +petrels@p +petrifaction@N +petrified@V +petrifies@? +petrify@Vt +petrifying@V +petrochemical@NA +petrochemicals@p +petrodollar@N +petrodollars@p +petrol@N +petrolatum@N +petroleum@N +petrology@N +pets@p +petted@V +petticoat@N +petticoats@p +pettier@A +pettiest@A +pettifog@V +pettifogged@i +pettifogger@N +pettifoggers@p +pettifogging@A +pettifogs@V +pettily@? +pettiness@? +petting@V +petty@A +petulance@N +petulant@A +petulantly@v +petunia@N +petunias@p +pew@N +pewee@N +pewees@p +pews@p +pewter@NA +pewters@p +peyote@N +pfennig@N +pfennigs@p +pg@N +ph@N +phaedra@N +phage@N +phages@p +phagocyte@N +phagocytes@p +phalanges@Np +phalanx@N +phalanxes@? +phalli@p +phallic@A +phallus@N +phalluses@? +phanerozoic@A +phantasied@? +phantasies@p +phantasm@N +phantasmagoria@N +phantasmagorias@p +phantasmagorical@A +phantasms@p +phantasy@N +phantasying@A +phantom@N +phantoms@p +pharaoh@N +pharaohs@p +pharisee@N +pharisees@p +pharmaceutical@AN +pharmaceuticals@p +pharmacies@p +pharmacist@N +pharmacists@p +pharmacological@A +pharmacologist@N +pharmacologists@p +pharmacology@N +pharmacopeia@? +pharmacopeias@p +pharmacopoeia@N +pharmacopoeias@p +pharmacy@N +pharyngeal@AN +pharynges@p +pharynx@N +pharynxes@? +phase@Nt +phased@At +phases@p +phasing@At +phd@? +pheasant@N +pheasants@p +phenobarbital@N +phenom@? +phenomena@N +phenomenal@A +phenomenally@v +phenomenological@? +phenomenology@N +phenomenon@N +phenomenons@p +phenoms@p +phenotype@N +pheromone@N +pheromones@p +phew@! +phial@N +phials@p +phidias@N +phil@N +philadelphia@N +philander@i +philandered@i +philanderer@N +philanderers@p +philandering@i +philanders@i +philanthropic@A +philanthropically@v +philanthropies@p +philanthropist@N +philanthropists@p +philanthropy@N +philatelic@A +philatelist@N +philatelists@p +philately@N +philharmonic@AN +philharmonics@p +philip@N +philippians@N +philippic@N +philippics@p +philippine@N +philippines@N +philips@N +philistine@NA +philistines@p +philistinism@N +phillip@N +phillips@N +philodendra@? +philodendron@N +philodendrons@p +philological@A +philologist@N +philologists@p +philology@N +philosopher@N +philosophers@p +philosophic@? +philosophical@A +philosophically@v +philosophies@? +philosophise@i +philosophised@i +philosophises@i +philosophising@i +philosophize@it +philosophized@i +philosophizes@it +philosophizing@i +philosophy@N +philter@Nt +philters@pt +philtre@N +philtres@p +phish@? +phished@? +phisher@? +phishers@p +phishing@? +phlebitis@N +phlegm@N +phlegmatic@A +phlegmatically@v +phloem@N +phlox@N +phloxes@? +phobia@N +phobias@p +phobic@? +phobics@p +phobos@N +phoebe@N +phoebes@p +phoenicia@N +phoenix@N +phoenixes@? +phone@NV +phonecard@? +phonecards@p +phoned@A +phoneme@N +phonemes@p +phonemic@A +phones@pV +phonetic@A +phonetically@? +phonetician@N +phoneticians@p +phonetics@N +phoney@A +phoneyed@A +phoneying@A +phoneys@p +phonic@A +phonically@? +phonics@N +phonied@? +phonier@A +phonies@A +phoniest@A +phoniness@N +phoning@A +phonograph@N +phonographs@p +phonological@A +phonologist@N +phonologists@p +phonology@N +phony@AN +phonying@A +phooey@! +phosphate@N +phosphates@p +phosphor@N +phosphorescence@N +phosphorescent@A +phosphoric@A +phosphors@p +phosphorus@N +photo@N +photocell@N +photocells@p +photocopied@? +photocopier@N +photocopiers@p +photocopies@? +photocopy@NV +photocopying@AV +photoed@A +photoelectric@A +photogenic@A +photograph@NV +photographed@AV +photographer@N +photographers@p +photographic@A +photographically@v +photographing@AV +photographs@pV +photography@N +photoing@A +photojournalism@N +photojournalist@N +photojournalists@p +photon@N +photons@p +photos@p +photosensitive@A +photostat@NV +photostats@pV +photostatted@? +photostatting@? +photosynthesis@N +phototypesetter@? +phototypesetting@N +phrasal@A +phrase@Nt +phrasebook@? +phrasebooks@p +phrased@V +phraseology@N +phrases@pt +phrasing@N +phrasings@p +phreaking@? +phreakings@p +phrenologist@N +phrenologists@p +phrenology@N +phrygia@N +phyla@N +phylum@N +physic@NVtA +physical@AN +physicality@N +physically@v +physicals@p +physician@N +physicians@p +physicist@N +physicists@p +physicked@V +physicking@V +physics@N +physio@? +physiognomies@p +physiognomy@N +physiological@A +physiologically@v +physiologist@N +physiologists@p +physiology@N +physios@p +physiotherapist@N +physiotherapists@p +physiotherapy@N +physique@N +physiques@p +pi@N +piaget@N +pianissimi@? +pianissimo@Av +pianissimos@pv +pianist@N +pianists@p +piano@NAv +pianoforte@N +pianofortes@p +pianola@N +pianolas@p +pianos@p +piazza@N +piazzas@p +piazze@? +pic@N +pica@N +picador@N +picadors@p +picaresque@A +picasso@N +picayune@AN +piccadilly@N +piccalilli@N +piccolo@N +piccolos@p +pick@VNt +pickaback@Nv +pickabacked@Av +pickabacking@Av +pickabacks@pv +pickax@Nti +pickaxe@NV +pickaxed@p +pickaxes@p +pickaxing@p +picked@A +picker@N +pickerel@N +pickerels@p +pickers@p +picket@NVt +picketed@AVt +picketer@N +picketers@p +picketing@AVt +pickets@pVt +pickett@N +pickier@A +pickiest@A +picking@VAt +pickings@p +pickle@Nt +pickled@A +pickles@pt +pickling@V +pickpocket@N +pickpockets@p +picks@Vpt +pickup@? +pickups@p +picky@A +picnic@NV +picnicked@V +picnicker@N +picnickers@p +picnicking@V +picnics@pV +pics@p +pict@N +pictograph@N +pictographs@p +pictorial@AN +pictorially@v +pictorials@p +picture@Nt +pictured@V +pictures@pt +picturesque@A +picturesquely@? +picturesqueness@N +picturing@V +piddle@i +piddled@V +piddles@i +piddling@A +pidgin@N +pidgins@p +pie@N +piebald@AN +piebalds@p +piece@Nt +pieced@V +piecemeal@vA +pieces@pt +piecework@N +piecing@V +pied@A +piedmont@A +pieing@A +pier@N +pierce@N +pierced@A +pierces@p +piercing@A +piercingly@v +piercings@p +pierre@N +pierrot@N +piers@N +pies@p +piety@N +piezoelectric@? +piffle@Ni +piffling@V +pig@NV +pigeon@N +pigeonhole@Nt +pigeonholed@V +pigeonholes@pt +pigeonholing@V +pigeons@p +pigged@V +piggeries@p +piggery@N +piggier@p +piggies@p +piggiest@p +pigging@V +piggish@A +piggishness@N +piggy@NA +piggyback@Nv +piggybacked@Av +piggybacking@Av +piggybacks@pv +pigheaded@? +pigheadedly@? +pigheadedness@? +piglet@N +piglets@p +pigment@N +pigmentation@N +pigmented@A +pigments@p +pigmies@p +pigmy@N +pigpen@N +pigpens@p +pigs@N +pigskin@N +pigskins@p +pigsties@p +pigsty@N +pigswill@N +pigtail@N +pigtails@p +piing@V +pike@N +piked@V +piker@N +pikers@p +pikes@p +piking@V +pilaf@N +pilaff@? +pilaffs@p +pilafs@p +pilaster@N +pilasters@p +pilate@N +pilates@p +pilau@N +pilaus@p +pilaw@? +pilaws@p +pilchard@N +pilchards@p +pilcomayo@N +pile@NVit +piled@AV +piles@p +pileup@N +pileups@p +pilfer@V +pilfered@V +pilferer@N +pilferers@p +pilfering@V +pilfers@V +pilgrim@N +pilgrimage@Ni +pilgrimages@pi +pilgrims@p +piling@N +pilings@p +pill@NtiV +pillage@VN +pillaged@V +pillages@Vp +pillaging@V +pillar@Nt +pillared@A +pillars@pt +pillbox@N +pillboxes@? +pilled@AtiV +pilling@AtiV +pillion@Nv +pillions@pv +pillock@? +pillocks@p +pilloried@p +pillories@p +pillory@NVt +pillorying@p +pillow@N +pillowcase@N +pillowcases@p +pillowed@A +pillowing@A +pillows@p +pillowslip@? +pillowslips@p +pills@p +pilot@Nt +piloted@At +pilothouse@N +pilothouses@p +piloting@N +pilots@pt +pimento@N +pimentos@p +pimiento@N +pimientos@p +pimp@Ni +pimped@Ai +pimpernel@N +pimpernels@p +pimping@Ai +pimple@N +pimpled@A +pimples@p +pimplier@? +pimpliest@? +pimply@N +pimps@pi +pin@NVt +pinafore@N +pinafores@p +pinball@N +pincer@? +pincers@p +pinch@VtiN +pinched@VtiA +pinches@? +pinching@VtiA +pincushion@N +pincushions@p +pindar@N +pine@N +pineapple@N +pineapples@p +pined@AVt +pines@N +pinewood@? +pinewoods@p +piney@A +pinfeather@N +pinfeathers@p +ping@N +pinged@i +pinging@i +pings@p +pinhead@N +pinheads@p +pinhole@N +pinholes@p +pining@AVt +pinion@Nt +pinioned@At +pinioning@At +pinions@pt +pink@NAit +pinked@Ait +pinker@? +pinkerton@N +pinkest@? +pinkeye@N +pinkie@N +pinkies@p +pinking@Ait +pinkish@A +pinkness@? +pinko@N +pinkoes@p +pinkos@p +pinks@pit +pinky@N +pinnacle@Nt +pinnacles@pt +pinnate@A +pinned@V +pinnies@? +pinning@V +pinny@N +pinochle@N +pinpoint@tN +pinpointed@tA +pinpointing@tA +pinpoints@tp +pinprick@Nt +pinpricks@pt +pins@pVt +pinstripe@N +pinstriped@A +pinstripes@p +pint@N +pinter@N +pinto@AN +pintoes@? +pintos@p +pints@p +pinup@NA +pinups@p +pinwheel@N +pinwheeled@A +pinwheeling@A +pinwheels@p +piny@A +pioneer@NVt +pioneered@AVt +pioneering@AVt +pioneers@pVt +pious@A +piously@v +piousness@N +pip@N +pipe@NVt +piped@A +pipeline@Nt +pipelines@pt +piper@N +pipers@p +pipes@pVt +pipette@Nt +pipettes@pt +pipework@? +piping@NA +pipit@N +pipits@p +pipped@Vt +pippin@N +pipping@Vt +pippins@p +pips@p +pipsqueak@N +pipsqueaks@p +piquancy@N +piquant@A +piquantly@v +pique@NVt +piqued@V +piques@pVt +piquing@V +piracy@N +piraeus@N +pirandello@N +piranha@N +piranhas@p +pirate@Nt +pirated@At +pirates@pt +piratical@A +pirating@At +pirouette@Ni +pirouetted@V +pirouettes@pi +pirouetting@V +pis@p +pisa@N +piscatorial@A +pisces@N +pisistratus@N +piss@itN +pissed@A +pisser@? +pissers@p +pisses@? +pissing@V +pissoir@? +pissoirs@p +pistachio@NA +pistachios@p +piste@N +pistes@p +pistil@N +pistillate@A +pistils@p +pistol@NV +pistols@pV +piston@N +pistons@p +pit@NV +pita@N +pitas@p +pitch@VtNi +pitchblende@N +pitched@VtAi +pitcher@N +pitchers@p +pitches@? +pitchfork@Nt +pitchforked@At +pitchforking@At +pitchforks@pt +pitching@N +pitchman@N +pitchmen@p +piteous@A +piteously@? +pitfall@N +pitfalls@p +pith@Nt +pithead@N +pitheads@p +pithier@? +pithiest@? +pithily@v +pithy@A +pitiable@A +pitiably@v +pitied@? +pities@? +pitiful@A +pitifully@v +pitiless@A +pitilessly@v +pitilessness@N +piton@N +pitons@p +pits@pV +pitt@N +pitta@N +pittance@N +pittances@p +pittas@p +pitted@V +pitting@V +pitts@N +pittsburgh@N +pituitaries@p +pituitary@NA +pity@NV +pitying@AV +pityingly@v +pivot@Nti +pivotal@A +pivoted@Ati +pivoting@N +pivots@pti +pix@pN +pixel@N +pixels@p +pixie@N +pixies@p +pixy@? +pizarro@N +pizazz@? +pizza@N +pizzas@p +pizzazz@? +pizzeria@N +pizzerias@p +pizzicati@? +pizzicato@AvN +pizzicatos@pv +pkg@N +pkwy@? +pl@N +placard@Nt +placarded@At +placarding@At +placards@pt +placate@t +placated@t +placates@t +placating@t +placation@? +placatory@A +place@NVi +placebo@N +placebos@p +placed@V +placeholder@? +placement@N +placements@p +placenta@N +placentae@p +placental@A +placentals@p +placentas@p +placer@N +placers@p +places@pVi +placid@A +placidity@N +placidly@v +placing@V +placings@V +placket@N +plackets@p +plagiarise@ti +plagiarised@ti +plagiarises@ti +plagiarising@ti +plagiarism@N +plagiarisms@p +plagiarist@N +plagiarists@p +plagiarize@V +plagiarized@V +plagiarizes@V +plagiarizing@V +plague@NVt +plagued@V +plagues@pVt +plaguing@V +plaice@N +plaid@N +plaids@p +plain@ANvV +plainchant@N +plainclothes@? +plainclothesman@? +plainclothesmen@? +plainer@? +plainest@? +plainly@v +plainness@N +plains@p +plainsong@N +plainspoken@? +plaint@N +plaintiff@N +plaintiffs@p +plaintive@A +plaintively@v +plaints@p +plait@Nt +plaited@At +plaiting@N +plaits@pt +plan@NV +planar@A +planck@N +plane@NAit +planed@V +planeload@? +planeloads@p +planer@N +planers@p +planes@pit +planet@N +planetaria@? +planetarium@N +planetariums@p +planetary@AN +planets@p +plangent@A +planing@V +plank@N +planked@A +planking@N +planks@p +plankton@N +planned@V +planner@? +planners@p +planning@V +plannings@V +plans@pV +plant@Nt +plantagenet@N +plantain@N +plantains@p +plantation@N +plantations@p +planted@At +planter@N +planters@p +planting@At +plantings@p +plants@pt +plaque@N +plaques@p +plasma@N +plaster@NVt +plasterboard@N +plastered@A +plasterer@N +plasterers@p +plastering@N +plasters@pVt +plastic@NA +plasticine@N +plasticity@N +plastics@A +plataea@N +plate@N +plateau@N +plateaued@A +plateauing@A +plateaus@p +plateaux@p +plated@A +plateful@? +platefuls@p +platelet@N +platelets@p +platen@N +platens@p +plates@p +platform@N +platformed@A +platforming@A +platforms@p +plath@N +plating@N +platinum@N +platitude@N +platitudes@p +platitudinous@A +plato@N +platonic@A +platonism@N +platonist@? +platoon@N +platooned@A +platooning@A +platoons@p +platte@N +platter@N +platters@p +platypi@? +platypus@N +platypuses@? +plaudit@N +plaudits@p +plausibility@? +plausible@A +plausibly@? +plautus@N +play@VtiN +playable@A +playact@? +playacted@? +playacting@N +playacts@p +playback@NV +playbacks@pV +playbill@N +playbills@p +playboy@N +playboys@p +played@VtiA +player@N +players@p +playful@A +playfully@v +playfulness@N +playgoer@N +playgoers@p +playground@N +playgrounds@p +playgroup@? +playgroups@p +playhouse@N +playhouses@p +playing@VtiA +playmate@N +playmates@p +playoff@? +playoffs@p +playpen@N +playpens@p +playroom@N +playrooms@p +plays@Vtip +playschool@N +playschools@p +plaything@N +playthings@p +playtime@N +playwright@N +playwrights@p +plaza@N +plazas@p +plea@N +plead@Vti +pleaded@V +pleader@N +pleaders@p +pleading@N +pleadingly@v +pleadings@p +pleads@Vti +pleas@N +pleasant@A +pleasanter@? +pleasantest@? +pleasantly@? +pleasantness@N +pleasantries@p +pleasantry@N +please@Vv +pleased@A +pleases@Vv +pleasing@A +pleasingly@v +pleasings@p +pleasurable@A +pleasurably@v +pleasure@NV +pleasured@V +pleasures@pV +pleasuring@V +pleat@Nt +pleated@At +pleating@At +pleats@pt +pleb@N +plebby@A +plebe@N +plebeian@AN +plebeians@p +plebes@p +plebiscite@N +plebiscites@p +plebs@N +plectra@? +plectrum@N +plectrums@p +pled@V +pledge@NVt +pledged@V +pledges@pVt +pledging@V +pleiades@N +pleistocene@AN +plenaries@? +plenary@AN +plenipotentiaries@p +plenipotentiary@AN +plenitude@N +plenitudes@p +plenteous@A +plentiful@A +plentifully@v +plenty@N +plenum@N +plenums@p +plethora@N +pleurisy@N +plexiglas@N +plexiglases@? +plexus@N +plexuses@p +pliability@N +pliable@A +pliancy@N +pliant@A +pliantly@v +plied@V +pliers@p +plies@p +plight@Nt +plighted@At +plighting@At +plights@pt +plimsoll@N +plimsolls@p +plinth@N +plinths@p +pliny@N +pliocene@AN +plo@? +plod@ViN +plodded@V +plodder@N +plodders@p +plodding@V +ploddings@V +plods@Vip +plonk@VN! +plonked@VA! +plonker@? +plonkers@p +plonking@VA! +plonks@Vp! +plop@NV! +plopped@V +plopping@V +plops@pV! +plosive@AN +plosives@p +plot@NV +plots@pV +plotted@? +plotter@N +plotters@p +plotting@? +plough@N +ploughed@A +ploughing@A +ploughman@N +ploughmen@p +ploughs@p +ploughshare@N +ploughshares@p +plover@N +plovers@p +plow@NV +plowed@AV +plowing@AV +plowman@N +plowmen@p +plows@pV +plowshare@N +plowshares@p +ploy@N +ploys@p +pluck@tN +plucked@tA +pluckier@A +pluckiest@A +pluckiness@N +plucking@tA +plucks@tp +plucky@A +plug@NV +plugged@V +plugging@V +plughole@? +plugholes@? +plugin@? +plugins@p +plugs@pV +plum@NAv +plumage@N +plumb@NAv +plumbed@Av +plumber@N +plumbers@p +plumbing@N +plumbings@p +plumbs@pv +plume@N +plumed@V +plumes@p +pluming@V +plummer@? +plummest@? +plummet@iN +plummeted@iA +plummeting@iA +plummets@ip +plummy@A +plump@AViNv +plumped@AViv +plumper@N +plumpest@? +plumping@AViv +plumpness@? +plumps@pViv +plums@pv +plunder@VtN +plundered@VtA +plunderer@? +plunderers@p +plundering@VtA +plunders@Vtp +plunge@ViN +plunged@V +plunger@N +plungers@p +plunges@Vip +plunging@V +plunk@VN!v +plunked@VA!v +plunking@VA!v +plunks@Vp!v +pluperfect@AN +pluperfects@p +plural@AN +pluralise@ti +pluralised@ti +pluralises@ti +pluralising@ti +pluralism@NA +pluralist@? +pluralistic@? +pluralists@p +pluralities@p +plurality@N +pluralize@i +pluralized@V +pluralizes@i +pluralizing@V +plurals@p +plus@PAN +pluses@? +plush@NA +plusher@A +plushest@A +plushier@? +plushiest@? +plushy@? +plusses@? +plutarch@N +pluto@N +plutocracies@p +plutocracy@N +plutocrat@N +plutocratic@? +plutocrats@p +plutonium@N +ply@ViN +plying@V +plymouth@N +plywood@N +pm@N +pmed@A +pming@A +pms@p +pneumatic@AN +pneumatically@v +pneumonia@N +po@N +poach@Vi +poached@Vi +poacher@N +poachers@p +poaches@? +poaching@Vi +pocahontas@N +pock@N +pocked@A +pocket@Nt +pocketbook@N +pocketbooks@p +pocketed@At +pocketful@N +pocketfuls@p +pocketing@N +pocketknife@N +pocketknives@? +pockets@pt +pocking@A +pockmark@Nt +pockmarked@A +pockmarking@At +pockmarks@pt +pocks@p +pod@N +podcast@? +podded@V +podding@V +podgorica@N +podgy@A +podia@? +podiatrist@N +podiatrists@p +podiatry@N +podium@N +podiums@p +pods@p +podunk@N +poe@N +poem@N +poems@p +poesy@N +poet@N +poetess@N +poetesses@? +poetic@A +poetical@? +poetically@v +poetry@N +poets@p +pogrom@N +pogroms@p +poi@N +poignancy@N +poignant@A +poignantly@v +poinsettia@N +poinsettias@p +point@NtVi +pointed@A +pointedly@v +pointer@N +pointers@p +pointier@? +pointiest@? +pointillism@N +pointillist@N +pointillists@p +pointing@N +pointless@A +pointlessly@v +pointlessness@N +points@ptVi +pointy@? +poise@NVt +poised@A +poises@pVt +poising@V +poison@Nt +poisoned@At +poisoner@N +poisoners@p +poisoning@N +poisonings@p +poisonous@A +poisonously@? +poisons@pt +poke@tiN +poked@V +poker@N +pokers@p +pokes@tip +pokey@A +pokeys@p +pokier@A +pokiest@A +poking@V +poky@AN +pol@N +poland@N +polar@A +polaris@N +polarisation@N +polarise@? +polarised@A +polarises@? +polarising@A +polarities@? +polarity@N +polarization@N +polarize@V +polarized@V +polarizes@V +polarizing@V +polaroid@NA +polaroids@p +pole@N +poleaxe@Nt +poleaxed@t +poleaxes@pt +poleaxing@t +polecat@N +polecats@p +poled@V +polemic@AN +polemical@? +polemicist@? +polemicists@p +polemics@N +poles@p +polestar@? +polestars@p +police@Nt +policed@At +policeman@N +policemen@p +polices@pt +policewoman@N +policewomen@p +policies@p +policing@At +policy@N +policyholder@N +policyholders@p +policymaker@? +policymakers@p +poling@V +polio@N +poliomyelitis@N +polios@p +polish@AN +polished@A +polisher@N +polishers@p +polishes@? +polishing@A +politburo@N +politburos@p +polite@A +politely@v +politeness@N +politer@? +politesse@N +politest@? +politic@A +political@A +politically@? +politician@N +politicians@p +politicisation@? +politicise@ti +politicised@ti +politicises@ti +politicising@ti +politicization@? +politicize@ti +politicized@V +politicizes@ti +politicizing@V +politicking@N +politico@N +politicoes@? +politicos@p +politics@N +polities@p +polity@N +polk@N +polka@NV +polkaed@p +polkaing@p +polkas@p +poll@N +pollard@N +pollards@p +polled@A +pollen@N +pollinate@t +pollinated@t +pollinates@t +pollinating@t +pollination@N +polling@A +polliwog@N +polliwogs@p +pollock@N +polls@p +pollster@N +pollsters@p +pollutant@N +pollutants@p +pollute@t +polluted@A +polluter@N +polluters@p +pollutes@t +polluting@t +pollution@N +pollux@N +pollyanna@N +pollywog@N +pollywogs@p +polo@N +polonaise@N +polonaises@p +polonium@N +pols@p +poltergeist@N +poltergeists@p +poltroon@NA +poltroons@p +poly@N +polyandrous@A +polyandry@N +polyester@N +polyesters@p +polyethylene@N +polygamist@N +polygamists@p +polygamous@A +polygamy@N +polyglot@AN +polyglots@p +polygon@N +polygonal@A +polygons@p +polygraph@N +polygraphed@A +polygraphing@A +polygraphs@p +polyhedra@? +polyhedron@N +polyhedrons@p +polyhymnia@N +polymath@N +polymaths@p +polymer@N +polymeric@A +polymerisation@? +polymerization@N +polymers@p +polymorphic@? +polymorphous@A +polynesia@N +polynesian@AN +polynesians@p +polynomial@AN +polynomials@p +polyp@N +polyphemus@N +polyphonic@A +polyphony@N +polypropylene@N +polyps@p +polys@p +polysemous@A +polystyrene@N +polysyllabic@A +polysyllable@N +polysyllables@p +polytechnic@NA +polytechnics@p +polytheism@N +polytheist@N +polytheistic@A +polytheists@p +polythene@N +polyunsaturate@N +polyunsaturated@A +polyunsaturates@p +polyurethane@N +pom@? +pomade@Nt +pomaded@At +pomades@pt +pomading@At +pomander@N +pomanders@p +pomegranate@N +pomegranates@p +pomerania@N +pomeranian@AN +pommel@NV +pommeled@V +pommeling@V +pommelled@V +pommelling@V +pommels@pV +pommies@? +pommy@N +pomona@N +pomp@N +pompadour@N +pompadoured@A +pompadours@p +pompeii@N +pompey@N +pompom@N +pompoms@p +pompon@N +pompons@p +pomposity@N +pompous@A +pompously@v +pompousness@? +poms@p +ponce@N +ponced@A +ponces@p +poncho@N +ponchos@p +poncing@A +poncy@? +pond@N +ponder@V +pondered@V +pondering@V +ponderous@A +ponderously@v +ponderousness@N +ponders@V +ponds@p +pone@N +pones@p +pong@Ni +ponged@Ai +ponging@Ai +pongs@pi +poniard@Nt +poniards@pt +ponied@p +ponies@p +pontchartrain@N +pontiac@N +pontianak@N +pontiff@N +pontiffs@p +pontifical@AN +pontificate@ViN +pontificated@V +pontificates@Vip +pontificating@V +pontoon@N +pontoons@p +pony@N +ponying@p +ponytail@N +ponytails@p +poo@? +pooch@N +pooched@A +pooches@? +pooching@A +poodle@N +poodles@p +pooed@? +poof@N +poofs@p +poofter@? +poofters@p +pooh@! +poohed@! +poohing@! +poohs@! +pooing@? +pool@N +pooled@A +pooling@A +pools@p +poolside@? +poolsides@? +poona@N +poop@N +pooped@A +pooping@A +poops@p +poor@A +poorer@? +poorest@? +poorhouse@N +poorhouses@p +poorly@vA +poos@p +pop@VitNv!A +popcorn@N +pope@N +popes@p +popgun@N +popguns@p +popinjay@N +popinjays@p +poplar@N +poplars@p +poplin@N +popocatepetl@N +popover@N +popovers@p +poppa@N +poppadom@N +poppadoms@p +poppadum@? +poppadums@p +poppas@N +popped@? +popper@N +poppers@p +poppet@N +poppets@p +poppies@p +popping@? +poppy@N +poppycock@N +pops@A +popsicle@N +populace@N +populaces@p +popular@A +popularisation@N +popularise@t +popularised@t +popularises@t +popularising@t +popularity@N +popularization@N +popularize@t +popularized@t +popularizes@t +popularizing@t +popularly@v +populate@t +populated@t +populates@t +populating@t +population@N +populations@p +populism@? +populist@N +populists@p +populous@A +porcelain@N +porcelains@p +porch@N +porches@p +porcine@A +porcupine@N +porcupines@p +pore@iN +pored@A +pores@ip +poring@A +pork@N +porker@N +porkers@p +porkies@? +porky@A +porn@? +porno@? +pornographer@N +pornographers@p +pornographic@? +pornography@N +porosity@N +porous@A +porphyry@N +porpoise@N +porpoised@A +porpoises@p +porpoising@A +porridge@N +porringer@N +porringers@p +port@N +portability@? +portable@AN +portables@p +portage@N +portaged@A +portages@p +portaging@A +portal@N +portals@p +portcullis@N +portcullises@? +ported@A +portend@t +portended@t +portending@t +portends@t +portent@N +portentous@A +portentously@v +portentousness@N +portents@p +porter@N +porterhouse@N +porterhouses@p +porters@p +portfolio@N +portfolios@p +porthole@N +portholes@p +portico@N +porticoes@? +porticos@p +porting@A +portion@Nt +portioned@At +portioning@At +portions@pt +portland@N +portlier@A +portliest@A +portliness@N +portly@A +portmanteau@N +portmanteaus@p +portmanteaux@p +portrait@N +portraitist@N +portraitists@p +portraits@p +portraiture@N +portray@t +portrayal@N +portrayals@p +portrayed@t +portraying@t +portrays@t +ports@p +portsmouth@N +portugal@N +portuguese@NA +pose@VitN +posed@Vt +poseidon@N +poser@N +posers@p +poses@Vitp +poseur@N +poseurs@p +posh@Av +posher@? +poshest@? +posies@? +posing@Vt +posit@tN +posited@tA +positing@tA +position@Nt +positional@A +positioned@At +positioning@At +positions@pt +positive@AN +positively@v +positiveness@? +positives@p +positivism@NA +positivist@AN +positivists@p +positron@N +positrons@p +posits@tp +poss@t +posse@N +posses@p +possess@t +possessed@A +possesses@? +possessing@t +possession@N +possessions@p +possessive@AN +possessively@? +possessiveness@N +possessives@p +possessor@N +possessors@p +possibilities@p +possibility@N +possible@AN +possibles@p +possibly@v +possum@N +possums@p +post@N +postage@N +postal@A +postbag@N +postbags@p +postbox@N +postboxes@? +postcard@N +postcards@p +postcode@N +postcodes@p +postdate@t +postdated@t +postdates@t +postdating@t +postdoc@? +postdoctoral@A +posted@A +poster@N +posterior@AN +posteriors@p +posterity@N +posters@p +postgraduate@N +postgraduates@p +posthaste@vN +posthumous@A +posthumously@v +postie@N +posties@p +postindustrial@? +posting@N +postings@p +postlude@N +postludes@p +postman@N +postmark@N +postmarked@A +postmarking@A +postmarks@p +postmaster@N +postmasters@p +postmen@? +postmistress@N +postmistresses@? +postmodern@? +postmodernism@? +postmodernist@? +postmodernists@p +postmortem@AN +postmortems@p +postnatal@? +postoperative@A +postpaid@vA +postpartum@A +postpone@t +postponed@t +postponement@? +postponements@p +postpones@t +postponing@t +postprandial@A +posts@p +postscript@N +postscripts@p +postseason@A +postulate@VtN +postulated@V +postulates@Vtp +postulating@V +postural@A +posture@NVi +postured@V +postures@pVi +posturing@V +postwar@? +postwoman@? +postwomen@? +posy@N +pot@NV +potable@AN +potables@p +potash@N +potassium@N +potato@N +potatoes@p +potbellied@A +potbellies@p +potbelly@N +potboiler@N +potboilers@p +potemkin@N +potency@N +potent@A +potentate@N +potentates@p +potential@AN +potentialities@? +potentiality@N +potentially@? +potentials@p +potently@v +potful@N +potfuls@p +pothead@N +potheads@p +potholder@N +potholders@p +pothole@N +potholed@A +potholer@N +potholers@p +potholes@p +potholing@N +pothook@N +pothooks@p +potion@N +potions@p +potluck@N +potlucks@p +potomac@N +potpie@N +potpies@p +potpourri@N +potpourris@p +pots@pV +potsdam@N +potsherd@N +potsherds@p +potshot@? +potshots@p +pottage@N +potted@A +potter@N +pottered@A +potteries@p +pottering@A +potters@p +pottery@N +pottier@A +potties@p +pottiest@A +pottiness@? +potting@V +potty@AN +pouch@Nt +pouched@A +pouches@? +pouching@At +pouf@N +pouffe@? +pouffes@? +poufs@p +poultice@N +poulticed@V +poultices@p +poulticing@V +poultry@N +pounce@iNt +pounced@Vt +pounces@ipt +pouncing@Vt +pound@N +poundage@N +pounded@A +pounding@A +poundings@p +pounds@p +pour@VtiN +poured@VtiA +pouring@VtiA +pours@Vtip +poussin@N +pout@VitN +pouted@VitA +pouting@VitA +pouts@Vitp +poverty@N +pow@! +powder@N +powdered@A +powdering@A +powders@p +powdery@At +power@N +powerboat@N +powerboats@p +powered@A +powerful@Av +powerfully@v +powerhouse@N +powerhouses@p +powering@A +powerless@A +powerlessly@v +powerlessness@N +powers@N +powhatan@N +powwow@Ni +powwowed@Ai +powwowing@Ai +powwows@pi +pox@N +poxes@? +pp@N +pr@N +practicability@? +practicable@A +practicably@? +practical@A +practicalities@? +practicality@N +practically@v +practicals@p +practice@NV +practiced@V +practices@pV +practicing@V +practise@Vt +practised@A +practises@Vt +practising@Vt +practitioner@N +practitioners@p +praesidium@? +praesidiums@p +praetorian@AN +pragmatic@A +pragmatically@v +pragmatics@N +pragmatism@NA +pragmatist@NA +pragmatists@p +prague@N +praia@? +prairie@N +prairies@p +praise@Nt +praised@V +praises@pt +praiseworthiness@N +praiseworthy@A +praising@V +prakrit@N +praline@N +pralines@p +pram@N +prams@p +prance@itN +pranced@V +prancer@N +prancers@p +prances@itp +prancing@V +prang@NV +pranged@AV +pranging@AV +prangs@pV +prank@Nti +pranks@pti +prankster@N +pranksters@p +prat@N +prate@itN +prated@A +prates@itp +pratfall@N +pratfalls@p +prating@A +prats@p +prattle@itN +prattled@itA +prattler@N +prattlers@p +prattles@itp +prattling@itA +prawn@N +prawned@A +prawning@A +prawns@p +praxiteles@N +pray@Vt! +prayed@Vt! +prayer@N +prayers@p +praying@Vt! +prays@Vt! +preach@V +preached@V +preacher@N +preachers@p +preaches@? +preachier@A +preachiest@A +preaching@V +preachy@A +preakness@? +preamble@N +preambled@A +preambles@p +preambling@A +prearrange@t +prearranged@t +prearrangement@N +prearranges@t +prearranging@t +precambrian@AN +precarious@A +precariously@v +precariousness@N +precast@AVt +precaution@N +precautionary@A +precautions@p +precede@Vt +preceded@V +precedence@N +precedent@NA +precedents@p +precedes@Vt +preceding@A +precept@N +preceptor@N +preceptors@p +precepts@p +precinct@N +precincts@p +preciosity@N +precious@A +preciously@v +preciousness@? +precipice@N +precipices@p +precipitant@AN +precipitants@p +precipitate@VtAN +precipitated@VtA +precipitately@v +precipitates@Vtp +precipitating@VtA +precipitation@N +precipitations@p +precipitous@A +precipitously@v +precise@A +precisely@v +preciseness@N +preciser@? +precises@p +precisest@? +precision@N +preclude@t +precluded@t +precludes@t +precluding@t +preclusion@? +precocious@A +precociously@v +precociousness@N +precocity@N +precognition@N +preconceive@t +preconceived@t +preconceives@t +preconceiving@t +preconception@N +preconceptions@p +precondition@Nt +preconditioned@At +preconditioning@At +preconditions@pt +precook@t +precooked@t +precooking@t +precooks@t +precursor@N +precursors@p +predate@t +predated@t +predates@t +predating@t +predator@N +predators@p +predatory@A +predecease@VN +predeceased@t +predeceases@Vp +predeceasing@t +predecessor@N +predecessors@p +predefined@t +predestination@N +predestine@t +predestined@t +predestines@t +predestining@t +predetermination@N +predetermine@t +predetermined@t +predeterminer@N +predeterminers@p +predetermines@t +predetermining@t +predicament@N +predicaments@p +predicate@VNA +predicated@V +predicates@Vp +predicating@V +predication@N +predicative@A +predicatively@v +predict@t +predictability@N +predictable@A +predictably@v +predicted@t +predicting@t +prediction@N +predictions@p +predictive@? +predictor@N +predictors@p +predicts@t +predigest@t +predigested@t +predigesting@t +predigests@t +predilection@N +predilections@p +predispose@t +predisposed@t +predisposes@t +predisposing@t +predisposition@N +predispositions@p +predominance@N +predominant@A +predominantly@? +predominate@itA +predominated@V +predominately@v +predominates@itp +predominating@V +preemie@N +preemies@p +preeminence@N +preeminent@A +preeminently@? +preempt@tiN +preempted@tiA +preempting@tiA +preemption@N +preemptive@Ai +preemptively@? +preempts@tip +preen@VN +preened@VA +preening@VA +preens@Vp +preexist@it +preexisted@it +preexisting@it +preexists@it +prefab@N +prefabbed@V +prefabbing@V +prefabricate@t +prefabricated@t +prefabricates@t +prefabricating@t +prefabrication@N +prefabs@p +preface@Nt +prefaced@V +prefaces@pt +prefacing@V +prefatory@A +prefect@N +prefects@p +prefecture@N +prefectures@p +prefer@Vt +preferable@A +preferably@v +preference@N +preferences@p +preferential@A +preferentially@v +preferment@N +preferred@t +preferring@t +prefers@Vt +prefigure@t +prefigured@t +prefigures@t +prefiguring@t +prefix@NVt +prefixed@AVt +prefixes@? +prefixing@AVt +pregnancies@p +pregnancy@N +pregnant@A +preheat@t +preheated@t +preheating@t +preheats@t +prehensile@A +prehistoric@A +prehistory@N +prejudge@t +prejudged@t +prejudgement@N +prejudgements@p +prejudges@t +prejudging@t +prejudgment@N +prejudgments@p +prejudice@Nt +prejudiced@V +prejudices@pt +prejudicial@A +prejudicing@V +prelate@N +prelates@p +prelim@N +preliminaries@p +preliminary@AN +prelims@p +preliterate@A +prelude@NVt +preludes@pVt +premarital@A +premature@A +prematurely@v +premeditate@V +premeditated@i +premeditates@V +premeditating@i +premeditation@N +premenstrual@A +premier@NA +premiere@N +premiered@V +premieres@p +premiering@V +premiers@p +premiership@N +premise@V +premised@V +premises@p +premising@V +premiss@N +premisses@? +premium@N +premiums@p +premonition@N +premonitions@p +premonitory@A +prenatal@ANv +preoccupation@N +preoccupations@p +preoccupied@A +preoccupies@? +preoccupy@V +preoccupying@t +preordain@t +preordained@t +preordaining@t +preordains@t +prep@N +prepackage@t +prepackaged@t +prepackages@t +prepackaging@t +prepacked@? +prepaid@? +preparation@N +preparations@p +preparatory@A +prepare@Vt +prepared@A +preparedness@N +prepares@Vt +preparing@V +prepay@V +prepaying@V +prepayment@N +prepayments@p +prepays@V +preponderance@N +preponderances@p +preponderant@A +preponderantly@v +preponderate@i +preponderated@i +preponderates@i +preponderating@i +preposition@N +prepositional@A +prepositions@p +prepossess@t +prepossessed@t +prepossesses@? +prepossessing@A +preposterous@A +preposterously@v +prepped@? +preppie@? +preppier@? +preppies@? +preppiest@? +prepping@? +preppy@? +preps@p +prepubescent@? +prequel@? +prequels@p +prerecord@t +prerecorded@t +prerecording@t +prerecords@t +preregister@ti +preregistered@ti +preregistering@ti +preregisters@ti +preregistration@N +prerequisite@AN +prerequisites@p +prerogative@NA +prerogatives@p +pres@N +presage@NVti +presaged@V +presages@pVti +presaging@V +presbyterian@AN +presbyterianism@? +presbyterians@p +presbyteries@? +presbytery@N +preschool@AN +preschooler@? +preschoolers@p +preschools@p +prescience@N +prescient@A +prescribe@V +prescribed@V +prescribes@V +prescribing@V +prescription@N +prescriptions@p +prescriptive@A +presence@N +presences@p +present@ANVt +presentable@A +presentation@N +presentations@p +presented@AVt +presenter@? +presenters@p +presentiment@N +presentiments@p +presenting@AVt +presently@v +presents@p +preservation@N +preservationist@? +preservationists@p +preservative@NA +preservatives@p +preserve@ViN +preserved@V +preserver@N +preservers@p +preserves@Vip +preserving@V +preset@V +presets@V +presetting@V +preshrank@? +preshrink@? +preshrinking@? +preshrinks@p +preshrunk@A +preshrunken@? +preside@i +presided@i +presidencies@p +presidency@N +president@N +presidential@? +presidents@p +presides@i +presidia@? +presiding@i +presidium@N +presidiums@p +presley@N +press@N +pressed@A +presses@? +pressie@N +pressies@p +pressing@AN +pressings@p +pressman@N +pressmen@p +pressure@Nt +pressured@V +pressures@pt +pressuring@V +pressurisation@? +pressurise@? +pressurised@? +pressurises@? +pressurising@? +pressurization@N +pressurize@t +pressurized@t +pressurizes@t +pressurizing@t +prestige@N +prestigious@A +presto@vAN +preston@N +prestos@vp +presumable@A +presumably@v +presume@Vt +presumed@V +presumes@Vt +presuming@V +presumption@N +presumptions@p +presumptive@A +presumptuous@A +presumptuously@v +presumptuousness@N +presuppose@t +presupposed@t +presupposes@t +presupposing@t +presupposition@? +presuppositions@p +pretax@? +preteen@? +preteens@p +pretence@N +pretences@p +pretend@Vti +pretended@A +pretender@N +pretenders@p +pretending@Vti +pretends@Vti +pretense@N +pretenses@p +pretension@N +pretensions@p +pretentious@A +pretentiously@? +pretentiousness@? +preterit@NA +preterite@NA +preterites@p +preterits@p +preternatural@A +preternaturally@v +pretext@N +pretexts@p +pretoria@N +prettied@A +prettier@A +pretties@? +prettiest@A +prettified@t +prettifies@? +prettify@V +prettifying@t +prettily@v +prettiness@N +pretty@ANv +prettying@A +pretzel@N +pretzels@p +prev@? +prevail@i +prevailed@i +prevailing@A +prevails@i +prevalence@N +prevalent@A +prevaricate@i +prevaricated@i +prevaricates@i +prevaricating@i +prevarication@? +prevarications@p +prevaricator@N +prevaricators@p +prevent@ti +preventable@? +preventative@? +preventatives@? +prevented@ti +preventible@? +preventing@ti +prevention@N +preventive@AN +preventives@p +prevents@ti +preview@Nt +previewed@At +previewer@? +previewers@p +previewing@At +previews@pt +previous@A +previously@? +prevue@? +prevues@? +prewar@A +prey@Ni +preyed@Ai +preying@Ai +preys@pi +prezzie@? +prezzies@? +priam@N +price@N +priced@V +priceless@A +prices@p +pricey@A +pricier@? +priciest@? +pricing@V +prick@ViN +pricked@ViA +pricking@N +prickle@NVt +prickled@V +prickles@pVt +pricklier@A +prickliest@A +prickling@V +prickly@A +pricks@Vip +pricy@? +pride@N +prided@A +prides@p +priding@A +pried@V +pries@V +priest@N +priestess@N +priestesses@? +priesthood@N +priesthoods@p +priestley@N +priestlier@A +priestliest@A +priestly@A +priests@p +prig@NV +priggish@N +priggishness@? +prigs@pV +prim@AV +primacy@N +primaeval@A +primal@A +primaries@p +primarily@v +primary@AN +primate@NA +primates@N +prime@ANVti +primed@AV +primer@N +primers@p +primes@pVti +primeval@A +priming@N +primitive@AN +primitively@v +primitiveness@N +primitives@p +primly@v +primmer@? +primmest@? +primness@N +primogeniture@N +primordial@AN +primp@V +primped@V +primping@V +primps@V +primrose@N +primroses@p +primula@N +primulas@p +prince@N +princelier@A +princeliest@A +princely@Av +princes@p +princess@N +princesses@? +princeton@N +principal@AN +principalities@p +principality@N +principally@v +principals@p +principe@N +principle@N +principled@A +principles@p +print@VtN +printable@A +printed@VtA +printer@N +printers@p +printing@N +printings@p +printmaking@N +printout@? +printouts@p +prints@Vtp +prion@N +prions@p +prior@AN +prioress@N +prioresses@? +priories@? +priorities@p +prioritisation@? +prioritise@? +prioritised@? +prioritises@? +prioritising@? +prioritization@? +prioritize@? +prioritized@? +prioritizes@? +prioritizing@? +priority@N +priors@p +priory@N +prise@tN +prised@t +prises@tp +prising@t +prism@N +prismatic@A +prisms@p +prison@N +prisoner@N +prisoners@p +prisons@p +prissier@? +prissiest@? +prissily@v +prissiness@N +prissy@A +pristine@A +prithee@! +privacy@N +private@AN +privateer@Ni +privateers@pi +privately@v +privater@? +privates@p +privatest@? +privation@N +privations@p +privatisation@? +privatisations@p +privatise@? +privatised@? +privatises@? +privatising@? +privatization@? +privatizations@p +privatize@? +privatized@? +privatizes@? +privatizing@? +privet@N +privets@p +privier@A +privies@A +priviest@A +privilege@Nt +privileged@A +privileges@pt +privileging@V +privy@AN +prize@NtV +prized@Vt +prizefight@N +prizefighter@N +prizefighters@p +prizefighting@N +prizefights@p +prizes@ptV +prizewinning@? +prizing@Vt +pro@vPNA +proactive@? +proactively@? +probabilistic@? +probabilities@? +probability@N +probable@AN +probables@p +probably@v +probate@Nt +probated@V +probates@pt +probating@V +probation@N +probationary@? +probationer@N +probationers@p +probe@tN +probed@V +probes@tp +probing@V +probings@V +probity@N +problem@N +problematic@A +problematical@? +problematically@? +problems@p +probosces@? +proboscides@p +proboscis@N +proboscises@p +procedural@? +procedure@N +procedures@p +proceed@i +proceeded@i +proceeding@N +proceedings@p +proceeds@p +process@Nti +processed@Ati +processes@? +processing@Ati +procession@Ni +processional@AN +processionals@p +processioned@Ai +processioning@Ai +processions@pi +processor@N +processors@p +proclaim@t +proclaimed@t +proclaiming@t +proclaims@t +proclamation@N +proclamations@p +proclivities@p +proclivity@N +procrastinate@V +procrastinated@V +procrastinates@V +procrastinating@V +procrastination@N +procrastinator@N +procrastinators@p +procreate@Vt +procreated@Vt +procreates@Vt +procreating@Vt +procreation@N +procreative@A +procrustean@A +procrustes@N +proctor@N +proctored@A +proctoring@A +proctors@p +procurator@N +procurators@p +procure@t +procured@V +procurement@N +procurer@N +procurers@p +procures@t +procuring@V +procyon@N +prod@VtN +prodded@V +prodding@V +prodigal@AN +prodigality@? +prodigally@? +prodigals@p +prodigies@p +prodigious@A +prodigiously@v +prodigy@N +prods@Vtp +produce@VtN +produced@V +producer@N +producers@p +produces@Vtp +producing@V +product@N +production@N +productions@p +productive@A +productively@v +productiveness@N +productivity@N +products@p +prof@N +profanation@? +profanations@p +profane@At +profaned@V +profanely@v +profanes@pt +profaning@V +profanities@? +profanity@N +profess@Vt +professed@A +professes@? +professing@Vt +profession@N +professional@AN +professionalisation@N +professionalise@ti +professionalised@ti +professionalises@ti +professionalising@ti +professionalism@NA +professionalization@N +professionalize@ti +professionalized@V +professionalizes@ti +professionalizing@V +professionally@v +professionals@p +professions@p +professor@N +professorial@? +professors@p +professorship@N +professorships@p +proffer@tN +proffered@tA +proffering@tA +proffers@tp +proficiency@N +proficient@AN +proficiently@v +proficients@p +profile@Nt +profiled@V +profiles@pt +profiling@V +profit@NV +profitability@N +profitable@A +profitably@v +profited@AV +profiteer@Ni +profiteered@Ai +profiteering@Ai +profiteers@pi +profiterole@N +profiteroles@p +profiting@AV +profits@pV +profligacy@? +profligate@AN +profligates@p +proforma@? +profound@AN +profounder@? +profoundest@? +profoundly@v +profs@p +profundities@p +profundity@N +profuse@A +profusely@v +profusion@N +profusions@p +progenitor@N +progenitors@p +progeny@N +progesterone@N +prognoses@p +prognosis@N +prognostic@AN +prognosticate@Vt +prognosticated@V +prognosticates@Vt +prognosticating@V +prognostication@N +prognostications@p +prognosticator@? +prognosticators@p +prognostics@p +program@NV +programed@V +programer@? +programers@p +programing@V +programmable@A +programmables@p +programmatic@A +programme@NV +programmed@V +programmer@N +programmers@p +programmes@pV +programming@V +programmings@V +programs@pV +progress@NVi +progressed@AVi +progresses@? +progressing@AVi +progression@N +progressions@p +progressive@AN +progressively@v +progressives@p +prohibit@t +prohibited@t +prohibiting@t +prohibition@N +prohibitionist@N +prohibitionists@p +prohibitions@p +prohibitive@A +prohibitively@v +prohibitory@A +prohibits@t +project@NVti +projected@AVti +projectile@NA +projectiles@p +projecting@AVti +projection@N +projectionist@N +projectionists@p +projections@p +projector@N +projectors@p +projects@pVti +prokofiev@N +prolapse@Ni +prolapsed@Ai +prolapses@pi +prolapsing@Ai +prole@N +proles@p +proletarian@AN +proletarians@p +proletariat@N +proliferate@V +proliferated@V +proliferates@V +proliferating@V +proliferation@N +prolific@A +prolifically@? +prolix@A +prolixity@N +prolog@? +prologs@p +prologue@NV +prologues@pV +prolong@t +prolongation@N +prolongations@p +prolonged@t +prolonging@t +prolongs@t +prom@N +promenade@NVit +promenaded@AVit +promenades@pVit +promenading@AVit +promethean@AN +prometheus@N +prominence@N +prominent@A +prominently@? +promiscuity@N +promiscuous@A +promiscuously@v +promise@VtN +promised@V +promises@Vtp +promising@A +promisingly@? +promissory@A +promo@? +promontories@p +promontory@N +promos@p +promote@t +promoted@t +promoter@N +promoters@p +promotes@t +promoting@t +promotion@N +promotional@A +promotions@p +prompt@AvtN +prompted@Avt +prompter@N +prompters@p +promptest@? +prompting@Avt +promptings@p +promptly@v +promptness@N +prompts@pvt +proms@p +promulgate@t +promulgated@t +promulgates@t +promulgating@t +promulgation@N +pron@? +prone@A +proneness@N +prong@Nt +pronged@At +pronghorn@N +pronghorns@p +prongs@pt +pronominal@A +pronoun@N +pronounce@Vt +pronounceable@A +pronounced@A +pronouncement@N +pronouncements@p +pronounces@Vt +pronouncing@V +pronouns@p +pronto@v +pronunciation@N +pronunciations@p +proof@NAt +proofed@At +proofing@N +proofread@V +proofreader@N +proofreaders@p +proofreading@V +proofreads@V +proofs@pt +prop@VtiN +propaganda@N +propagandise@ti +propagandised@ti +propagandises@ti +propagandising@ti +propagandist@NA +propagandists@p +propagandize@ti +propagandized@V +propagandizes@ti +propagandizing@V +propagate@Vt +propagated@Vt +propagates@Vt +propagating@Vt +propagation@N +propagator@N +propagators@p +propane@N +propel@V +propellant@N +propellants@p +propelled@t +propellent@A +propellents@p +propeller@N +propellers@p +propelling@t +propels@V +propensities@p +propensity@N +proper@AvN +properer@? +properest@? +properly@v +propertied@A +properties@p +property@N +prophecies@p +prophecy@N +prophesied@? +prophesies@? +prophesy@Vi +prophesying@Vi +prophet@N +prophetess@? +prophetesses@? +prophetic@A +prophetically@v +prophets@N +prophylactic@AN +prophylactics@p +prophylaxis@N +propinquity@N +propitiate@t +propitiated@t +propitiates@t +propitiating@t +propitiation@? +propitiatory@AN +propitious@A +propitiously@v +proponent@N +proponents@p +proportion@Nt +proportional@AN +proportionality@N +proportionally@? +proportionals@p +proportionate@AVt +proportionately@v +proportioned@A +proportioning@At +proportions@pt +proposal@N +proposals@p +propose@Vti +proposed@Vti +proposer@N +proposers@p +proposes@Vti +proposing@Vti +proposition@Nt +propositional@A +propositioned@At +propositioning@At +propositions@pt +propound@t +propounded@t +propounding@t +propounds@t +propped@? +propping@? +proprietaries@p +proprietary@AN +proprieties@p +proprietor@N +proprietorial@A +proprietorially@v +proprietors@p +proprietorship@N +proprietress@N +proprietresses@? +propriety@N +props@Vtip +propulsion@N +propulsive@? +prorate@V +prorated@V +prorates@V +prorating@V +pros@N +prosaic@A +prosaically@v +proscenia@? +proscenium@N +prosceniums@p +prosciutto@N +proscribe@t +proscribed@t +proscribes@t +proscribing@t +proscription@N +proscriptions@p +prose@NV +prosecute@ti +prosecuted@ti +prosecutes@ti +prosecuting@ti +prosecution@N +prosecutions@p +prosecutor@N +prosecutors@p +proselyte@NV +proselyted@AV +proselytes@pV +proselyting@AV +proselytise@ti +proselytised@ti +proselytiser@N +proselytisers@p +proselytises@ti +proselytising@ti +proselytize@V +proselytized@ti +proselytizer@? +proselytizers@p +proselytizes@V +proselytizing@ti +prosier@? +prosiest@? +prosodies@? +prosody@N +prospect@NVti +prospected@AVti +prospecting@AVti +prospective@A +prospector@N +prospectors@p +prospects@pVti +prospectus@N +prospectuses@p +prosper@N +prospered@A +prospering@A +prosperity@N +prosperous@A +prosperously@? +prospers@p +prostate@NA +prostates@p +prostheses@p +prosthesis@N +prosthetic@? +prostitute@Nt +prostituted@At +prostitutes@pt +prostituting@At +prostitution@N +prostrate@AVt +prostrated@AVt +prostrates@pVt +prostrating@AVt +prostration@N +prostrations@p +prosy@A +protagonist@N +protagonists@p +protagoras@N +protean@A +protect@t +protected@t +protecting@A +protection@N +protectionism@N +protectionist@N +protectionists@p +protections@p +protective@AN +protectively@v +protectiveness@? +protector@N +protectorate@N +protectorates@p +protectors@p +protects@t +protein@N +proteins@p +proterozoic@NA +protest@NVt +protestant@N +protestantism@N +protestantisms@p +protestants@p +protestation@N +protestations@p +protested@AVt +protester@N +protesters@p +protesting@AVt +protestor@? +protestors@p +protests@pVt +proteus@N +protocol@N +protocols@p +proton@N +protons@p +protoplasm@N +protoplasmic@A +prototype@N +prototypes@p +prototypical@A +prototyping@A +protozoa@N +protozoan@NA +protozoans@p +protozoon@N +protract@t +protracted@t +protracting@t +protraction@N +protractor@N +protractors@p +protracts@t +protrude@V +protruded@V +protrudes@V +protruding@V +protrusion@N +protrusions@p +protuberance@? +protuberances@? +protuberant@A +proud@Av +prouder@? +proudest@? +proudhon@N +proudly@v +proust@N +provable@A +provably@v +prove@Vi +proved@A +proven@VA +provenance@N +provenances@p +provencals@p +provence@N +provender@N +proverb@Nt +proverbial@A +proverbially@v +proverbs@N +proves@Vi +provide@Vi +provided@C +providence@N +providences@p +provident@A +providential@A +providentially@v +providently@v +provider@N +providers@p +provides@Vi +providing@C +province@N +provinces@p +provincial@AN +provincialism@N +provincially@v +provincials@p +proving@ti +provision@Nt +provisional@AN +provisionally@v +provisioned@At +provisioning@At +provisions@pt +proviso@N +provisoes@p +provisos@p +provo@N +provocateur@? +provocateurs@p +provocation@N +provocations@p +provocative@A +provocatively@v +provoke@t +provoked@t +provokes@t +provoking@t +provost@N +provosts@p +prow@N +prowess@N +prowl@VN +prowled@VA +prowler@N +prowlers@p +prowling@VA +prowls@Vp +prows@p +proxies@p +proximate@A +proximity@N +proxy@N +prozac@? +prude@N +prudence@N +prudent@A +prudential@A +prudently@v +prudery@N +prudes@p +prudish@A +prudishly@v +prudishness@N +prune@NV +pruned@t +prunes@pV +pruning@t +prurience@N +prurient@A +pruriently@v +prussia@N +prussian@AN +prut@N +pry@N +prying@AV +ps@N +psalm@N +psalmist@N +psalmists@p +psalms@N +psalter@N +psalters@p +psephologist@N +psephologists@p +psephology@N +pseud@NA +pseudo@A +pseudonym@N +pseudonymous@A +pseudonyms@p +pseudos@p +pseuds@p +pseudy@? +pshaw@! +pshaws@! +psoriasis@N +psst@! +pst@N +psych@t +psyche@N +psyched@t +psychedelia@N +psychedelic@A +psychedelics@p +psyches@p +psychiatric@A +psychiatrist@N +psychiatrists@p +psychiatry@N +psychic@AN +psychical@? +psychically@v +psychics@p +psyching@t +psycho@NA +psychoactive@A +psychoanalyse@t +psychoanalysed@t +psychoanalyses@t +psychoanalysing@t +psychoanalysis@N +psychoanalyst@? +psychoanalysts@p +psychoanalytic@A +psychoanalytically@v +psychoanalyze@? +psychoanalyzed@? +psychoanalyzes@? +psychoanalyzing@? +psychobabble@? +psychodrama@N +psychodramas@p +psychogenic@A +psychokinesis@N +psychokinetic@? +psychological@A +psychologically@v +psychologies@p +psychologist@NA +psychologists@p +psychology@N +psychometric@A +psychopath@N +psychopathic@? +psychopathology@N +psychopaths@p +psychos@p +psychoses@? +psychosis@N +psychosomatic@A +psychotherapies@? +psychotherapist@N +psychotherapists@p +psychotherapy@N +psychotic@AN +psychotics@p +psychotropic@A +psychs@t +pt@N +pta@N +ptah@N +ptarmigan@N +ptarmigans@p +pterodactyl@N +pterodactyls@p +ptolemaic@A +ptolemies@p +ptolemy@N +ptomaine@N +ptomaines@p +pu@? +pub@NV +puberty@N +pubes@N +pubescence@? +pubescent@A +pubic@A +pubis@N +public@AN +publican@N +publicans@p +publication@N +publications@p +publicise@? +publicised@? +publicises@? +publicising@? +publicist@N +publicists@p +publicity@N +publicize@t +publicized@t +publicizes@t +publicizing@t +publicly@v +publish@Vit +publishable@? +published@Vit +publisher@N +publishers@p +publishes@? +publishing@N +pubs@pV +puccini@N +puce@N +puck@N +pucker@VN +puckered@VA +puckering@VA +puckers@Vp +puckish@? +pucks@p +pud@? +pudding@N +puddings@p +puddle@Nt +puddled@V +puddles@pt +puddling@N +pudenda@? +pudendum@N +pudgier@? +pudgiest@? +pudginess@N +pudgy@A +puds@p +puebla@N +pueblo@N +pueblos@p +puerile@A +puerility@N +puff@NVt +puffball@N +puffballs@p +puffed@AVt +puffer@N +puffers@p +puffier@A +puffiest@A +puffin@N +puffiness@? +puffing@AVt +puffins@p +puffs@pVt +puffy@A +pug@NV +pugilism@N +pugilist@? +pugilistic@A +pugilists@p +pugnacious@A +pugnaciously@v +pugnacity@N +pugs@pV +puke@VN +puked@VA +pukes@Vp +puking@VA +pukka@A +pulaski@N +pulchritude@N +pulitzer@N +pull@ViN +pullback@? +pullbacks@p +pulled@ViA +puller@? +pullers@p +pullet@N +pullets@p +pulley@N +pulleys@p +pulling@N +pullman@N +pullmans@p +pullout@? +pullouts@p +pullover@N +pullovers@p +pulls@Vip +pulmonary@A +pulp@NVt +pulped@AVt +pulpier@A +pulpiest@A +pulping@AVt +pulpit@N +pulpits@p +pulps@pVt +pulpy@A +pulsar@N +pulsars@p +pulsate@i +pulsated@i +pulsates@i +pulsating@i +pulsation@N +pulsations@p +pulse@Ni +pulsed@V +pulses@pi +pulsing@V +pulverisation@N +pulverise@ti +pulverised@ti +pulverises@ti +pulverising@ti +pulverization@N +pulverize@Vt +pulverized@V +pulverizes@Vt +pulverizing@V +puma@N +pumas@p +pumice@Nt +pumices@pt +pummel@V +pummeled@t +pummeling@t +pummelled@t +pummelling@? +pummels@V +pump@N +pumped@A +pumpernickel@N +pumping@N +pumpkin@N +pumpkins@p +pumps@p +pun@NV +punch@N +punchbag@? +punchbags@p +punched@A +punches@? +punchier@A +punchiest@A +punching@A +punchline@? +punchlines@? +punchy@A +punctilious@A +punctiliously@v +punctiliousness@N +punctual@A +punctuality@N +punctually@v +punctuate@V +punctuated@V +punctuates@V +punctuating@V +punctuation@N +puncture@Nt +punctured@V +punctures@pt +puncturing@V +pundit@N +pundits@p +pungency@N +pungent@A +pungently@v +punic@AN +punier@A +puniest@A +punish@Vt +punishable@A +punished@Vt +punishes@? +punishing@Vt +punishingly@? +punishment@N +punishments@p +punitive@A +punitively@v +punjab@N +punjabi@NA +punk@NA +punker@? +punkest@? +punks@p +punned@V +punnet@N +punnets@p +punning@V +puns@pV +punster@N +punsters@p +punt@N +punted@A +punter@N +punters@p +punting@A +punts@p +puny@A +pup@NV +pupa@N +pupae@p +pupal@A +pupas@p +pupate@i +pupated@i +pupates@i +pupating@i +pupil@N +pupils@p +pupped@V +puppet@N +puppeteer@N +puppeteers@p +puppetry@N +puppets@p +puppies@p +pupping@V +puppy@N +pups@pV +purana@N +purblind@A +purcell@N +purchasable@A +purchase@tN +purchased@A +purchaser@N +purchasers@p +purchases@tp +purchasing@A +purdah@N +pure@A +purebred@AN +purebreds@p +puree@NV +pureed@A +pureeing@AV +purees@pV +purely@v +pureness@N +purer@A +purest@A +purgative@NA +purgatives@p +purgatorial@A +purgatories@? +purgatory@N +purge@tiN +purged@V +purges@tip +purging@V +purification@? +purified@V +purifier@? +purifiers@p +purifies@? +purify@Vt +purifying@t +purim@N +purims@p +purism@N +purist@N +purists@p +puritan@N +puritanical@A +puritanically@v +puritanism@N +puritanisms@p +puritans@p +purity@N +purl@NVi +purled@AVi +purling@AVi +purloin@V +purloined@V +purloining@V +purloins@V +purls@pVi +purple@NA +purpler@? +purples@p +purplest@? +purplish@A +purport@VtN +purported@VtA +purportedly@? +purporting@VtA +purports@Vtp +purpose@Nt +purposed@V +purposeful@A +purposefully@? +purposefulness@? +purposeless@A +purposelessly@v +purposelessness@N +purposely@v +purposes@pt +purposing@V +purr@itN +purred@itA +purring@itA +purrs@itp +purse@N +pursed@V +purser@N +pursers@p +purses@p +pursing@V +pursuance@N +pursuant@A +pursue@V +pursued@V +pursuer@N +pursuers@p +pursues@V +pursuing@V +pursuit@N +pursuits@p +purulence@N +purulent@A +purvey@t +purveyed@t +purveying@t +purveyor@N +purveyors@p +purveys@t +purview@N +pus@N +pusan@N +pusey@N +push@VtiN +pushbike@? +pushbikes@? +pushcart@N +pushcarts@p +pushchair@N +pushchairs@p +pushed@A +pusher@N +pushers@p +pushes@? +pushier@A +pushiest@A +pushily@? +pushiness@N +pushing@Av +pushkin@N +pushover@N +pushovers@p +pushpin@N +pushpins@p +pushup@? +pushups@p +pushy@A +pusillanimity@N +pusillanimous@A +pusillanimously@? +puss@N +pusses@? +pussier@A +pussies@p +pussiest@A +pussy@NA +pussycat@? +pussycats@p +pussyfoot@iN +pussyfooted@iA +pussyfooting@iA +pussyfoots@ip +pustule@N +pustules@p +put@VN +putative@A +putnam@N +putrefaction@N +putrefied@V +putrefies@? +putrefy@V +putrefying@V +putrescence@N +putrescent@A +putrid@A +puts@Vp +putsch@N +putsches@? +putt@NV +putted@AV +putter@NV +puttered@AV +puttering@AV +putters@pV +puttied@V +putties@p +putting@V +putts@pV +putty@NV +puttying@NV +putz@? +putzes@? +puzzle@VitN +puzzled@V +puzzlement@N +puzzler@N +puzzlers@p +puzzles@Vitp +puzzling@V +pvc@N +px@? +pygmies@p +pygmy@N +pyjama@N +pyjamas@p +pylon@N +pylons@p +pym@N +pyongyang@N +pyorrhea@N +pyorrhoea@N +pyramid@NVt +pyramidal@A +pyramided@AVt +pyramiding@AVt +pyramids@pVt +pyre@N +pyrenees@p +pyres@p +pyrex@N +pyrexes@? +pyrite@N +pyrites@N +pyromania@N +pyromaniac@N +pyromaniacs@p +pyrotechnic@A +pyrotechnics@NA +pyrrhic@A +pythagoras@N +pythagorean@AN +pythias@N +python@N +pythons@p +pyx@N +pyxes@? +pzazz@? +qatar@N +qingdao@? +qt@N +qua@P +quaalude@? +quack@iN +quacked@iA +quackery@N +quacking@iA +quacks@ip +quad@N +quadrangle@N +quadrangles@p +quadrangular@N +quadrant@N +quadrants@p +quadraphonic@? +quadratic@NA +quadrature@N +quadrennial@AN +quadriceps@N +quadricepses@p +quadrilateral@AN +quadrilaterals@p +quadrille@N +quadrilles@p +quadriphonic@? +quadriplegia@N +quadriplegic@N +quadriplegics@p +quadruped@NA +quadrupeds@p +quadruple@VAN +quadrupled@V +quadruples@Vp +quadruplet@N +quadruplets@p +quadruplicate@AVN +quadruplicated@V +quadruplicates@pV +quadruplicating@V +quadrupling@V +quads@p +quaff@V +quaffed@V +quaffing@V +quaffs@V +quagmire@N +quagmires@p +quahaug@? +quahaugs@p +quahog@N +quahogs@p +quail@Ni +quailed@Ai +quailing@Ai +quails@pi +quaint@A +quainter@? +quaintest@? +quaintly@v +quaintness@N +quake@iN +quaked@V +quaker@NA +quakers@p +quakes@ip +quaking@V +qualification@N +qualifications@p +qualified@A +qualifier@N +qualifiers@p +qualifies@? +qualify@Vti +qualifying@V +qualitative@A +qualitatively@v +qualities@? +quality@N +qualm@N +qualms@p +quandaries@p +quandary@N +quango@N +quangos@p +quanta@N +quantifiable@A +quantification@? +quantified@t +quantifier@N +quantifiers@p +quantifies@? +quantify@V +quantifying@t +quantitative@A +quantitatively@v +quantities@? +quantity@N +quantum@N +quarantine@Nt +quarantined@At +quarantines@pt +quarantining@At +quark@N +quarks@p +quarrel@NVi +quarreled@V +quarreling@V +quarrelled@V +quarrelling@V +quarrels@pVi +quarrelsome@A +quarried@p +quarries@p +quarry@NV +quarrying@p +quart@N +quarter@NtiA +quarterback@N +quarterbacked@A +quarterbacking@A +quarterbacks@p +quarterdeck@N +quarterdecks@p +quartered@A +quarterfinal@N +quarterfinals@p +quartering@N +quarterlies@? +quarterly@ANv +quartermaster@N +quartermasters@p +quarters@p +quartet@N +quartets@p +quartette@? +quartettes@? +quarto@N +quartos@p +quarts@p +quartz@N +quasar@N +quasars@p +quash@t +quashed@t +quashes@? +quashing@t +quasi@? +quasimodo@N +quaternary@AN +quatrain@N +quatrains@p +quaver@ViN +quavered@ViA +quavering@ViA +quavers@Vip +quavery@A +quay@N +quays@p +quayside@N +quaysides@p +queasier@A +queasiest@A +queasily@v +queasiness@N +queasy@A +quebec@N +quechua@N +queen@N +queened@A +queening@N +queenlier@A +queenliest@A +queenly@Av +queens@N +queensland@N +queer@ANt +queered@At +queerer@? +queerest@? +queering@At +queerly@? +queerness@? +queers@pt +quell@t +quelled@t +quelling@t +quells@t +quench@t +quenched@t +quenches@? +quenching@t +queried@A +queries@? +querulous@A +querulously@? +query@NVt +querying@AVt +ques@N +queses@? +quest@NV +quested@AV +questing@AV +question@NV +questionable@A +questionably@v +questioned@AV +questioner@N +questioners@p +questioning@A +questioningly@v +questionnaire@N +questionnaires@p +questions@pV +quests@pV +quetzalcoatl@N +queue@NV +queued@V +queueing@AV +queues@pV +queuing@V +quibble@iN +quibbled@iA +quibbler@N +quibblers@p +quibbles@ip +quibbling@AN +quiche@N +quiches@p +quick@ANv! +quicken@V +quickened@V +quickening@V +quickens@V +quicker@? +quickest@? +quickfire@? +quickie@N +quickies@p +quicklime@N +quickly@v +quickness@N +quicksand@N +quicksands@p +quicksilver@NA +quickstep@NV +quicksteps@pV +quid@N +quids@p +quiescence@N +quiescent@A +quiet@ANV +quieted@AV +quieten@Vt +quietened@Vt +quietening@Vt +quietens@Vt +quieter@N +quietest@? +quieting@AV +quietism@NA +quietly@v +quietness@N +quiets@pV +quietude@N +quietus@N +quietuses@? +quiff@N +quiffs@p +quill@N +quills@p +quilt@Nt +quilted@A +quilter@N +quilters@p +quilting@N +quilts@pt +quin@N +quince@N +quinces@p +quine@? +quines@? +quinine@N +quinn@N +quins@p +quint@N +quintessence@N +quintessences@p +quintessential@A +quintessentially@v +quintet@N +quintets@p +quints@p +quintuple@VAN +quintupled@V +quintuples@Vp +quintuplet@N +quintuplets@p +quintupling@V +quip@NV +quipped@V +quipping@V +quips@pV +quire@N +quires@p +quirinal@N +quirk@N +quirked@A +quirkier@? +quirkiest@? +quirking@A +quirks@p +quirky@? +quisling@N +quislings@p +quit@VtA +quite@v +quito@N +quits@! +quitted@A +quitter@? +quitters@p +quitting@A +quiver@iN +quivered@iA +quivering@iA +quivers@ip +quixote@N +quixotic@A +quiz@NVt +quizzed@V +quizzes@V +quizzical@A +quizzically@v +quizzing@V +qumran@N +quoit@N +quoited@A +quoiting@A +quoits@p +quondam@A +quonset@? +quorate@? +quorum@N +quorums@p +quota@N +quotable@A +quotas@p +quotation@N +quotations@p +quote@VtN! +quoted@V +quotes@Vtp! +quoth@V +quotidian@AN +quotient@N +quotients@p +quoting@V +qwerty@? +ra@N +rabat@N +rabbi@N +rabbinate@N +rabbinic@N +rabbinical@A +rabbis@p +rabbit@Ni +rabbited@Ai +rabbiting@Ai +rabbits@pi +rabble@Nt +rabbles@pt +rabelais@N +rabelaisian@AN +rabid@A +rabidly@v +rabies@N +raccoon@N +raccoons@p +race@N +racecourse@N +racecourses@p +raced@V +racegoer@N +racegoers@p +racehorse@N +racehorses@p +raceme@N +racemes@p +racer@N +racers@p +races@p +racetrack@N +racetracks@p +raceway@N +raceways@p +rachmaninoff@N +racial@A +racialism@NA +racialist@N +racialists@p +racially@v +racier@A +raciest@A +racily@v +racine@N +raciness@N +racing@AN +racism@? +racist@NA +racists@p +rack@Nti +racked@Ati +racket@Nit +racketed@Ait +racketeer@Ni +racketeered@Ai +racketeering@Ai +racketeers@pi +racketing@Ait +rackets@N +racking@Ati +racks@pti +raconteur@N +raconteurs@p +racoon@N +racoons@p +racquet@N +racquetball@? +racquetballs@p +racquets@p +racy@A +radar@N +radars@p +raddled@A +radial@AN +radially@? +radials@p +radiance@N +radiant@AN +radiantly@v +radiate@VitA +radiated@V +radiates@Vitp +radiating@V +radiation@N +radiations@p +radiator@N +radiators@p +radical@AN +radicalise@? +radicalised@? +radicalises@? +radicalising@? +radicalism@N +radicalize@? +radicalized@? +radicalizes@? +radicalizing@? +radically@v +radicals@p +radicchio@? +radii@N +radio@NV +radioactive@A +radioactivity@N +radiocarbon@N +radioed@AV +radiogram@N +radiograms@p +radiographer@N +radiographers@p +radiography@N +radioing@p +radioisotope@N +radioisotopes@p +radiologist@N +radiologists@p +radiology@N +radios@pV +radiotelephone@NV +radiotelephones@pV +radiotherapist@N +radiotherapists@p +radiotherapy@N +radish@N +radishes@? +radium@N +radius@N +radiuses@? +radon@N +raf@N +raffia@N +raffish@A +raffishness@N +raffle@Nt +raffled@V +raffles@N +raffling@V +raft@NV +rafted@AV +rafter@N +rafters@p +rafting@AV +rafts@pV +rag@NV +raga@N +ragamuffin@N +ragamuffins@p +ragas@p +ragbag@N +rage@Ni +raged@V +rages@pi +ragga@? +ragged@A +raggeder@? +raggedest@? +raggedier@? +raggediest@? +raggedly@v +raggedness@N +raggedy@A +ragging@Vt +raging@V +raglan@N +raglans@p +ragout@NV +ragouts@pV +rags@p +ragtag@N +ragtags@p +ragtime@N +ragweed@N +ragwort@N +raid@NV +raided@AV +raider@N +raiders@p +raiding@AV +raids@pV +rail@Nti +railcard@? +railcards@p +railed@Ati +railing@N +railings@p +railleries@? +raillery@N +railroad@Nt +railroaded@At +railroading@N +railroads@pt +rails@pti +railway@N +railwayman@N +railwaymen@? +railways@p +raiment@N +rain@Nit +rainbow@N +rainbows@N +raincoat@N +raincoats@p +raindrop@N +raindrops@p +rained@Ait +rainfall@N +rainfalls@p +rainforest@N +rainforests@p +rainier@A +rainiest@A +raining@Ait +rainmaker@N +rainmakers@p +rainproof@At +rains@N +rainstorm@N +rainstorms@p +rainwater@N +rainy@A +raise@VN +raised@AV +raises@Vp +raisin@N +raising@N +raisins@p +raja@? +rajah@N +rajahs@p +rajas@N +rake@NVti +raked@AVi +rakes@pVti +raking@Vi +rakish@A +rakishly@v +rakishness@N +raleigh@N +rallied@t +rallies@? +rally@ViN +rallying@t +ram@N +rama@N +ramadan@N +ramadans@p +ramakrishna@N +ramayana@N +ramble@iN +rambled@V +rambler@N +ramblers@p +rambles@ip +rambling@V +ramblings@V +rambunctious@A +rambunctiousness@? +ramekin@N +ramekins@p +ramequin@? +ramequins@p +ramification@N +ramifications@p +ramified@ti +ramifies@? +ramify@Vi +ramifying@ti +rammed@V +ramming@V +ramp@Ni +rampage@ViN +rampaged@V +rampages@Vip +rampaging@V +rampant@A +rampantly@v +rampart@Nt +ramparts@pt +ramps@pi +ramrod@N +ramrodded@? +ramrodding@? +ramrods@p +rams@p +ramsay@N +ramses@N +ramshackle@A +ran@N +ranch@Ni +ranched@Ai +rancher@N +ranchers@p +ranches@? +ranching@Ai +rancid@A +rancidity@N +rancor@? +rancorous@A +rancorously@v +rancour@N +rand@N +randier@? +randiest@? +randiness@? +random@AN +randomise@? +randomised@? +randomises@? +randomising@? +randomize@t +randomized@t +randomizes@t +randomizing@t +randomly@v +randomness@N +randomnesses@? +randoms@p +randy@AN +ranee@N +ranees@p +rang@V +range@N +ranged@AV +rangefinder@N +rangefinders@p +ranger@N +rangers@p +ranges@p +rangier@A +rangiest@A +ranginess@? +ranging@V +rangoon@N +rangy@A +rani@N +ranis@p +rank@N +ranked@A +ranker@N +rankest@? +rankin@N +rankine@NA +ranking@AN +rankings@p +rankle@i +rankled@V +rankles@i +rankling@V +rankness@N +ranks@p +ransack@t +ransacked@t +ransacking@t +ransacks@t +ransom@N +ransomed@A +ransoming@A +ransoms@p +rant@ViN +ranted@ViA +ranter@N +ranting@ViA +rantings@p +rants@Vip +rap@N +rapacious@A +rapaciously@v +rapaciousness@N +rapacity@N +rape@N +raped@V +rapes@p +raphael@N +rapid@A +rapider@? +rapidest@? +rapidity@N +rapidly@v +rapids@p +rapier@N +rapiers@p +rapine@N +raping@V +rapist@N +rapists@p +rapped@V +rappel@VN +rappelled@V +rappelling@V +rappels@Vp +rapper@N +rappers@p +rapping@NV +rapport@N +rapporteur@N +rapporteurs@p +rapports@p +rapprochement@N +rapprochements@p +raps@p +rapscallion@N +rapscallions@p +rapt@A +raptor@N +raptors@p +rapture@Nt +raptures@pt +rapturous@A +rapturously@v +rare@A +rared@A +rarefied@A +rarefies@? +rarefy@V +rarefying@V +rarely@v +rareness@N +rarer@A +rares@p +rarest@A +raring@A +rarities@p +rarity@N +rascal@NA +rascally@Av +rascals@p +rash@AN +rasher@N +rashers@p +rashes@? +rashest@? +rashly@v +rashness@? +rasp@Nt +raspberries@? +raspberry@N +rasped@At +raspier@A +raspiest@A +rasping@A +rasps@pt +rasputin@N +raspy@A +rastafarian@NA +raster@N +rat@NV +ratatouille@N +ratbag@N +ratbags@p +ratchet@N +ratcheted@A +ratcheting@A +ratchets@p +rate@NVt +rated@V +ratepayer@N +ratepayers@p +rates@p +rather@N +rathskeller@N +rathskellers@p +ratification@? +ratified@t +ratifies@? +ratify@V +ratifying@t +rating@N +ratings@p +ratio@N +ration@Nt +rational@A +rationale@N +rationales@p +rationalisation@N +rationalisations@p +rationalise@ti +rationalised@ti +rationalises@ti +rationalising@ti +rationalism@N +rationalist@? +rationalistic@? +rationalists@p +rationality@N +rationalization@N +rationalizations@p +rationalize@Vt +rationalized@V +rationalizes@Vt +rationalizing@V +rationally@v +rationals@p +rationed@At +rationing@At +rations@p +ratios@p +rats@! +rattan@N +rattans@p +ratted@? +rattier@A +rattiest@A +ratting@? +rattle@VitN +rattled@Vt +rattler@? +rattlers@p +rattles@Vitp +rattlesnake@N +rattlesnakes@p +rattletrap@N +rattletraps@p +rattling@v +rattlings@v +rattrap@N +rattraps@p +ratty@A +raucous@A +raucously@v +raucousness@N +raunchier@? +raunchiest@? +raunchily@? +raunchiness@? +raunchy@A +ravage@VN +ravaged@V +ravages@Vp +ravaging@V +rave@ViN +raved@V +ravel@N +raveled@A +raveling@N +ravelings@p +ravelled@? +ravelling@? +ravellings@p +ravels@p +raven@N +ravened@A +ravening@A +ravenous@A +ravenously@v +ravens@N +raver@N +ravers@p +raves@Vip +ravine@N +ravines@p +raving@A +ravings@p +ravioli@N +raviolis@p +ravish@t +ravished@t +ravishes@? +ravishing@A +ravishingly@v +ravishment@N +raw@AN +rawalpindi@N +rawboned@A +rawer@? +rawest@? +rawhide@N +rawness@N +ray@N +rayleigh@N +rayon@N +rays@p +raze@t +razed@t +razes@t +razing@t +razor@Nt +razors@pt +razz@tN +razzamatazz@? +razzed@tA +razzes@? +razzing@tA +razzmatazz@? +rb@? +rbi@? +rd@N +rda@? +re@iN +reach@tNi +reachable@A +reached@tAi +reaches@? +reaching@tAi +react@i +reactant@N +reactants@p +reacted@i +reacting@i +reaction@N +reactionaries@? +reactionary@AN +reactions@p +reactivate@t +reactivated@V +reactivates@t +reactivating@V +reactivation@N +reactive@A +reactor@N +reactors@p +reacts@i +read@N +readabilities@? +readability@N +readable@A +readdress@t +readdressed@t +readdresses@? +readdressing@t +reader@N +readers@p +readership@N +readerships@p +readied@V +readier@A +readies@? +readiest@VA +readily@v +readiness@N +reading@N +readings@p +readjust@V +readjusted@V +readjusting@V +readjustment@N +readjustments@p +readjusts@V +readmit@V +readmits@V +readmitted@V +readmitting@V +readout@? +readouts@p +reads@p +ready@AN +readying@A +reaffirm@t +reaffirmation@N +reaffirmations@p +reaffirmed@t +reaffirming@t +reaffirms@t +reafforestation@? +reagan@N +reagent@N +reagents@p +real@AN +realer@? +reales@? +realest@? +realign@V +realigned@V +realigning@V +realignment@N +realignments@p +realigns@V +realisable@A +realisation@N +realisations@p +realise@V +realised@V +realises@V +realising@V +realism@N +realist@N +realistic@A +realistically@v +realists@p +realities@p +reality@N +realizable@A +realization@? +realizations@p +realize@Vt +realized@V +realizes@Vt +realizing@A +reallocate@t +reallocated@t +reallocates@t +reallocating@t +reallocation@N +really@v! +realm@N +realms@p +realpolitik@N +reals@p +realtor@N +realtors@p +realty@N +ream@Nt +reamed@At +reamer@N +reamers@p +reaming@At +reams@pt +reanimate@? +reanimated@? +reanimates@? +reanimating@? +reap@Vt +reaped@Vt +reaper@N +reapers@p +reaping@Vt +reappear@i +reappearance@N +reappearances@p +reappeared@i +reappearing@i +reappears@i +reapplied@V +reapplies@? +reapply@V +reapplying@V +reappoint@t +reappointed@t +reappointing@t +reappointment@N +reappoints@t +reapportion@t +reapportioned@t +reapportioning@t +reapportionment@N +reapportions@t +reappraisal@N +reappraisals@p +reappraise@t +reappraised@t +reappraises@t +reappraising@t +reaps@Vt +rear@Nti +reared@Ati +rearguard@N +rearing@Ati +rearm@Vt +rearmament@? +rearmed@Vt +rearming@Vt +rearmost@A +rearms@Vt +rearrange@t +rearranged@V +rearrangement@N +rearrangements@p +rearranges@t +rearranging@V +rears@pti +rearward@AvN +rearwards@pv +reason@NVit +reasonable@A +reasonableness@N +reasonably@v +reasoned@A +reasoning@N +reasons@pVit +reassemble@V +reassembled@V +reassembles@V +reassembling@V +reassert@t +reasserted@t +reasserting@t +reasserts@t +reassess@t +reassessed@t +reassesses@? +reassessing@t +reassessment@N +reassessments@p +reassign@t +reassigned@t +reassigning@t +reassigns@t +reassurance@N +reassurances@p +reassure@t +reassured@t +reassures@t +reassuring@t +reassuringly@v +reawaken@V +reawakened@V +reawakening@N +reawakens@V +rebate@NVt +rebated@V +rebates@pVt +rebating@V +rebecca@N +rebekah@N +rebel@N +rebelled@V +rebelling@V +rebellion@N +rebellions@p +rebellious@A +rebelliously@v +rebelliousness@N +rebels@p +rebind@V +rebinding@V +rebinds@V +rebirth@N +rebirths@p +reboot@? +rebooted@? +rebooting@? +reboots@p +reborn@A +rebound@ViN +rebounded@ViA +rebounding@ViA +rebounds@Vip +rebroadcast@Nt +rebroadcasted@At +rebroadcasting@At +rebroadcasts@pt +rebuff@tN +rebuffed@tA +rebuffing@tA +rebuffs@tp +rebuild@ti +rebuilding@ti +rebuilds@ti +rebuilt@? +rebuke@tN +rebuked@V +rebukes@tp +rebuking@V +rebus@N +rebuses@? +rebut@V +rebuts@V +rebuttal@N +rebuttals@p +rebutted@V +rebutting@V +recalcitrance@N +recalcitrant@AN +recall@tN +recalled@tA +recalling@tA +recalls@tp +recant@V +recantation@? +recantations@p +recanted@V +recanting@V +recants@V +recap@VN +recapitalisation@? +recapitalise@? +recapitalised@? +recapitalises@? +recapitalising@? +recapitalization@N +recapitalize@t +recapitalized@t +recapitalizes@t +recapitalizing@t +recapitulate@Vt +recapitulated@V +recapitulates@Vt +recapitulating@V +recapitulation@N +recapitulations@p +recapped@V +recapping@V +recaps@Vp +recapture@tN +recaptured@V +recaptures@tp +recapturing@V +recast@tN +recasting@V +recasts@tp +recce@NV +recces@pV +recd@? +recede@i +receded@i +recedes@i +receding@i +receipt@Nt +receipted@At +receipting@At +receipts@pt +receivable@AN +receivables@p +receive@Vi +received@V +receiver@N +receivers@p +receivership@N +receives@Vi +receiving@V +recent@A +recenter@? +recentest@? +recently@v +receptacle@N +receptacles@p +reception@N +receptionist@N +receptionists@p +receptions@p +receptive@A +receptively@? +receptiveness@? +receptivity@? +receptor@N +receptors@p +recess@NVt +recessed@AVt +recesses@? +recessing@AVt +recession@N +recessional@AN +recessionals@p +recessionary@? +recessions@p +recessive@AN +recessives@p +recharge@V +rechargeable@A +recharged@V +recharges@V +recharging@V +recheck@NV +rechecked@AV +rechecking@AV +rechecks@pV +recidivism@NA +recidivist@N +recidivists@p +recife@N +recipe@N +recipes@p +recipient@NA +recipients@p +reciprocal@AN +reciprocally@v +reciprocals@p +reciprocate@Vi +reciprocated@Vi +reciprocates@Vi +reciprocating@Vi +reciprocation@N +reciprocity@N +recital@N +recitals@p +recitation@N +recitations@p +recitative@NA +recitatives@p +recite@Vt +recited@A +recites@Vt +reciting@A +reckless@A +recklessly@? +recklessness@? +reckon@Vti +reckoned@Vti +reckoning@N +reckonings@p +reckons@Vti +reclaim@tN +reclaimed@tA +reclaiming@tA +reclaims@tp +reclamation@N +reclassified@? +reclassifies@? +reclassify@? +reclassifying@? +recline@V +reclined@V +recliner@N +recliners@p +reclines@V +reclining@V +recluse@NA +recluses@p +reclusive@A +recognisable@A +recognisably@? +recognisance@? +recognise@t +recognised@t +recogniser@N +recognises@t +recognising@t +recognition@N +recognizable@A +recognizably@v +recognizance@N +recognize@ti +recognized@t +recognizer@N +recognizes@ti +recognizing@t +recoil@ViN +recoiled@ViA +recoiling@ViA +recoils@Vip +recollect@V +recollected@A +recollecting@V +recollection@N +recollections@p +recollects@V +recombination@N +recombine@V +recombined@V +recombines@V +recombining@V +recommence@V +recommenced@V +recommences@V +recommencing@V +recommend@t +recommendation@N +recommendations@p +recommended@t +recommending@t +recommends@t +recompense@tN +recompensed@V +recompenses@tp +recompensing@V +recompilation@N +recompile@t +recompiled@t +recompiling@t +recon@N +reconcilable@A +reconcile@t +reconciled@t +reconciles@t +reconciliation@? +reconciliations@p +reconciling@t +recondite@A +recondition@t +reconditioned@t +reconditioning@t +reconditions@t +reconfiguration@? +reconfigure@? +reconfigured@? +reconnaissance@N +reconnaissances@p +reconnect@t +reconnected@t +reconnecting@t +reconnects@t +reconnoiter@ti +reconnoitered@ti +reconnoitering@ti +reconnoiters@ti +reconnoitre@VN +reconnoitred@ti +reconnoitres@Vp +reconnoitring@ti +reconquer@t +reconquered@t +reconquering@t +reconquers@t +recons@p +reconsider@V +reconsideration@N +reconsidered@V +reconsidering@V +reconsiders@V +reconstitute@tN +reconstituted@A +reconstitutes@tp +reconstituting@tA +reconstitution@N +reconstruct@t +reconstructed@A +reconstructing@t +reconstruction@N +reconstructions@p +reconstructive@A +reconstructs@t +reconvene@V +reconvened@V +reconvenes@V +reconvening@V +recopied@t +recopies@? +recopy@t +recopying@t +record@NV +recorded@AV +recorder@N +recorders@p +recording@N +recordings@p +records@N +recount@t +recounted@t +recounting@t +recounts@t +recoup@VtN +recouped@VtA +recouping@VtA +recoups@Vtp +recourse@N +recover@ti +recoverable@A +recovered@ti +recoveries@p +recovering@ti +recovers@ti +recovery@N +recreant@AN +recreants@p +recreate@V +recreated@V +recreates@V +recreating@V +recreation@N +recreational@A +recreations@p +recriminate@i +recriminated@i +recriminates@i +recriminating@i +recrimination@N +recriminations@p +recriminatory@A +recrudescence@N +recruit@VtN +recruited@VtA +recruiter@N +recruiters@p +recruiting@VtA +recruitment@N +recruits@Vtp +recta@N +rectal@A +rectangle@N +rectangles@p +rectangular@A +rectifiable@? +rectification@N +rectifications@p +rectified@t +rectifier@N +rectifiers@p +rectifies@? +rectify@V +rectifying@t +rectilinear@A +rectitude@N +recto@N +rector@N +rectories@? +rectors@p +rectory@N +rectos@p +rectum@N +rectums@p +recumbent@A +recuperate@i +recuperated@i +recuperates@i +recuperating@i +recuperation@N +recuperative@A +recur@V +recurred@? +recurrence@N +recurrences@p +recurrent@A +recurring@? +recurs@V +recursion@N +recursions@p +recursive@A +recursively@? +recyclable@? +recyclables@? +recycle@tN +recycled@tA +recycles@tp +recycling@tA +red@AN +redbreast@N +redbreasts@p +redbrick@N +redcap@N +redcaps@p +redcoat@N +redcoats@p +redcurrant@N +redcurrants@p +redden@Vi +reddened@Vi +reddening@Vi +reddens@Vi +redder@A +reddest@A +reddish@A +redecorate@V +redecorated@V +redecorates@V +redecorating@V +redecoration@N +rededicate@t +rededicated@t +rededicates@t +rededicating@t +redeem@t +redeemable@A +redeemed@t +redeemer@N +redeemers@p +redeeming@A +redeems@t +redefine@t +redefined@t +redefines@t +redefining@t +redefinition@N +redemption@N +redemptive@? +redeploy@V +redeployed@V +redeploying@V +redeployment@N +redeploys@V +redesign@V +redesigned@V +redesigning@V +redesigns@V +redevelop@t +redeveloped@t +redeveloping@t +redevelopment@N +redevelopments@p +redevelops@t +redhead@N +redheaded@A +redheads@p +redid@t +redirect@tA +redirected@tA +redirecting@tA +redirection@? +redirects@tp +rediscover@t +rediscovered@t +rediscoveries@p +rediscovering@t +rediscovers@t +rediscovery@N +redistribute@t +redistributed@t +redistributes@t +redistributing@t +redistribution@N +redistrict@t +redistricted@t +redistricting@t +redistricts@t +redmond@N +redneck@N +rednecks@p +redness@N +redo@V +redoes@? +redoing@t +redolence@N +redolent@A +redone@t +redouble@VN +redoubled@V +redoubles@Vp +redoubling@V +redoubt@N +redoubtable@A +redoubts@p +redound@it +redounded@it +redounding@it +redounds@it +redraft@NVt +redrafted@AVt +redrafting@AVt +redrafts@pVt +redraw@V +redrawing@V +redrawn@V +redraws@V +redress@tN +redressed@tA +redresses@? +redressing@tA +redrew@V +reds@p +redskin@N +redskins@p +reduce@V +reduced@A +reduces@V +reducible@? +reducing@V +reduction@N +reductionist@? +reductions@p +reductive@AN +redundancies@p +redundancy@N +redundant@A +redundantly@v +redwood@N +redwoods@p +reed@N +reedier@A +reediest@A +reeds@p +reeducate@t +reeducated@t +reeducates@t +reeducating@t +reeducation@N +reedy@A +reef@N +reefed@A +reefer@N +reefers@p +reefing@A +reefs@p +reek@itN +reeked@itA +reeking@itA +reeks@itp +reel@N +reelect@t +reelected@t +reelecting@t +reelection@N +reelections@p +reelects@t +reeled@A +reeling@A +reels@p +reemerge@i +reemerged@i +reemerges@i +reemerging@i +reemphasise@? +reemphasised@A +reemphasises@? +reemphasising@A +reemphasize@t +reemphasized@t +reemphasizes@t +reemphasizing@t +reenact@t +reenacted@t +reenacting@t +reenactment@N +reenactments@p +reenacts@t +reenforce@t +reenforced@t +reenforces@t +reenforcing@t +reenlist@? +reenlisted@? +reenlisting@? +reenlists@p +reenter@ti +reentered@ti +reentering@ti +reenters@ti +reentries@p +reentry@N +reestablish@t +reestablished@t +reestablishes@? +reestablishing@t +reevaluate@t +reevaluated@t +reevaluates@t +reevaluating@t +reeve@N +reeved@A +reeves@N +reeving@t +reexamine@t +reexamined@t +reexamines@t +reexamining@t +ref@N +refashion@t +refashioned@t +refashioning@t +refashions@t +refectories@? +refectory@N +refer@VtANi +referable@? +referee@Nti +refereed@Ati +refereeing@Ati +referees@pti +reference@NtP +referenced@V +references@ptP +referencing@V +referenda@? +referendum@N +referendums@p +referent@N +referential@N +referral@N +referrals@p +referred@V +referring@V +refers@Vtpi +reffed@V +reffing@? +refile@V +refiled@V +refiles@V +refiling@V +refill@VN +refillable@A +refilled@VA +refilling@VA +refills@Vp +refinance@it +refinanced@it +refinances@it +refinancing@it +refine@Vti +refined@A +refinement@N +refinements@p +refiner@? +refineries@p +refiners@p +refinery@N +refines@Vti +refining@V +refinish@tN +refinished@tA +refinishes@? +refinishing@tA +refit@VN +refits@Vp +refitted@? +refitting@? +reflate@V +reflated@V +reflates@V +reflating@V +reflation@N +reflationary@? +reflations@p +reflect@Vti +reflected@Vti +reflecting@Vti +reflection@N +reflections@p +reflective@A +reflectively@v +reflector@N +reflectors@p +reflects@Vti +reflex@NAVt +reflexes@? +reflexive@AN +reflexively@v +reflexives@p +reflexology@? +refocus@V +refocused@V +refocuses@? +refocusing@V +refocussed@? +refocusses@? +refocussing@? +reforest@? +reforestation@? +reforested@? +reforesting@? +reforests@p +reform@tN +reformat@? +reformation@N +reformations@p +reformatories@p +reformatory@NA +reformatted@? +reformatting@? +reformed@A +reformer@N +reformers@p +reforming@tA +reformist@? +reformists@p +reforms@tp +reformulate@t +reformulated@t +reformulates@t +reformulating@t +refract@Vt +refracted@Vt +refracting@Vt +refraction@N +refractories@p +refractory@AN +refracts@Vt +refrain@iN +refrained@iA +refraining@iA +refrains@ip +refresh@Vt +refreshed@Vt +refresher@N +refreshers@p +refreshes@? +refreshing@A +refreshingly@v +refreshment@N +refreshments@p +refrigerant@NA +refrigerants@p +refrigerate@V +refrigerated@t +refrigerates@V +refrigerating@t +refrigeration@N +refrigerator@N +refrigerators@p +refs@p +refuel@V +refueled@V +refueling@V +refuelled@V +refuelling@V +refuels@V +refuge@NV +refugee@N +refugees@p +refuges@pV +refulgence@N +refulgent@A +refund@VtN +refundable@A +refunded@VtA +refunding@VtA +refunds@Vtp +refurbish@t +refurbished@t +refurbishes@? +refurbishing@t +refurbishment@? +refurbishments@p +refurnish@t +refurnished@t +refurnishes@? +refurnishing@t +refusal@N +refusals@p +refuse@tN +refused@V +refuses@tp +refusing@V +refutable@A +refutation@N +refutations@p +refute@t +refuted@t +refutes@t +refuting@t +regain@N +regained@A +regaining@A +regains@p +regal@AN +regale@tN +regaled@V +regales@tp +regalia@N +regaling@V +regally@v +regard@VtN +regarded@VtA +regarding@P +regardless@Av +regards@Vtp +regatta@N +regattas@p +regencies@p +regency@N +regenerate@VtA +regenerated@V +regenerates@Vtp +regenerating@V +regeneration@N +regenerative@A +regent@NA +regents@p +regexp@? +regexps@p +reggae@N +regicide@N +regicides@p +regime@N +regimen@N +regimens@p +regiment@NVt +regimental@AN +regimentation@N +regimented@AVt +regimenting@AVt +regiments@pVt +regimes@p +regina@N +reginae@? +region@N +regional@A +regionalism@NA +regionalisms@p +regionally@v +regions@p +register@Nti +registered@A +registering@Ati +registers@pti +registrant@N +registrants@p +registrar@N +registrars@p +registration@N +registrations@p +registries@p +registry@N +regress@VitN +regressed@VitA +regresses@? +regressing@VitA +regression@N +regressions@p +regressive@A +regret@VN +regretful@A +regretfully@v +regrets@Vp +regrettable@A +regrettably@v +regretted@? +regretting@? +regroup@Vt +regrouped@Vt +regrouping@Vt +regroups@Vt +regular@AN +regularisation@? +regularise@? +regularised@? +regularises@? +regularising@? +regularities@? +regularity@N +regularization@N +regularize@t +regularized@t +regularizes@t +regularizing@t +regularly@v +regulars@p +regulate@t +regulated@t +regulates@t +regulating@t +regulation@N +regulations@p +regulator@N +regulators@p +regulatory@? +regulus@N +regurgitate@VAi +regurgitated@V +regurgitates@Vpi +regurgitating@V +regurgitation@N +rehab@? +rehabbed@? +rehabbing@? +rehabilitate@t +rehabilitated@t +rehabilitates@t +rehabilitating@t +rehabilitation@N +rehabs@p +rehash@tN +rehashed@tA +rehashes@? +rehashing@tA +rehearsal@N +rehearsals@p +rehearse@Vt +rehearsed@V +rehearses@Vt +rehearsing@V +reheat@VtN +reheated@VtA +reheating@N +reheats@Vtp +rehi@? +rehire@t +rehired@t +rehires@t +rehiring@t +rehnquist@? +rehouse@? +rehoused@? +rehouses@? +rehousing@? +reich@N +reichstag@N +reid@N +reign@Ni +reigned@Ai +reigning@Ai +reigns@pi +reimburse@t +reimbursed@t +reimbursement@? +reimbursements@p +reimburses@t +reimbursing@t +reimpose@V +reimposed@V +reimposes@V +reimposing@V +rein@N +reincarnate@VA +reincarnated@VA +reincarnates@Vp +reincarnating@VA +reincarnation@NA +reincarnations@p +reindeer@N +reindeers@p +reined@A +reinforce@t +reinforced@t +reinforcement@N +reinforcements@p +reinforces@t +reinforcing@t +reinhardt@N +reining@A +reinitialise@? +reinitialised@? +reinitialize@? +reinitialized@? +reins@p +reinsert@t +reinserted@t +reinserting@t +reinserts@t +reinstate@t +reinstated@t +reinstatement@N +reinstates@t +reinstating@t +reinsurance@N +reinterpret@V +reinterpretation@N +reinterpretations@p +reinterpreted@V +reinterpreting@V +reinterprets@V +reinvent@t +reinvented@t +reinventing@t +reinvents@t +reinvest@t +reinvested@t +reinvesting@t +reinvests@t +reis@N +reissue@V +reissued@V +reissues@V +reissuing@V +reiterate@t +reiterated@t +reiterates@t +reiterating@t +reiteration@? +reiterations@p +reject@VtN +rejected@VtA +rejecting@VtA +rejection@N +rejections@p +rejects@Vtp +rejig@Vt +rejigged@? +rejigger@t +rejiggered@t +rejiggering@t +rejiggers@t +rejigging@? +rejigs@Vt +rejoice@Vt +rejoiced@V +rejoices@Vt +rejoicing@V +rejoicings@V +rejoin@Vt +rejoinder@N +rejoinders@p +rejoined@Vt +rejoining@Vt +rejoins@Vt +rejuvenate@t +rejuvenated@t +rejuvenates@t +rejuvenating@t +rejuvenation@? +rekindle@V +rekindled@V +rekindles@V +rekindling@V +relabel@t +relabeled@t +relabeling@t +relabelled@? +relabelling@? +relabels@t +relaid@t +relapse@iN +relapsed@V +relapses@ip +relapsing@V +relate@ti +related@A +relatedness@N +relates@ti +relating@V +relation@N +relational@A +relations@p +relationship@N +relationships@p +relative@AN +relatively@? +relatives@p +relativism@NA +relativist@N +relativistic@A +relativists@p +relativity@N +relaunch@t +relaunched@t +relaunches@? +relaunching@t +relax@Vi +relaxant@NA +relaxants@p +relaxation@N +relaxations@p +relaxed@Vi +relaxes@? +relaxing@Vi +relay@NVt +relayed@V +relaying@Vt +relays@pVt +relearn@V +relearned@V +relearning@V +relearns@V +releasable@A +release@tN +released@V +releases@tp +releasing@V +relegate@t +relegated@t +relegates@t +relegating@t +relegation@N +relent@i +relented@i +relenting@i +relentless@A +relentlessly@v +relentlessness@N +relents@i +relevance@N +relevancy@N +relevant@A +relevantly@v +reliability@N +reliable@A +reliably@v +reliance@N +reliant@A +relic@N +relics@p +relied@i +relief@N +reliefs@p +relies@? +relieve@t +relieved@V +relieves@t +relieving@V +religion@N +religions@p +religiosity@N +religious@AN +religiously@v +relinquish@t +relinquished@t +relinquishes@? +relinquishing@t +relinquishment@N +reliquaries@p +reliquary@N +relish@tN +relished@tA +relishes@? +relishing@tA +relive@t +relived@V +relives@t +reliving@V +reload@NV +reloaded@AV +reloading@AV +reloads@pV +relocatable@? +relocate@t +relocated@t +relocates@t +relocating@t +relocation@N +reluctance@N +reluctant@A +reluctantly@v +rely@V +relying@i +rem@N +remade@? +remain@V +remainder@Nt +remaindered@At +remaindering@At +remainders@pt +remained@V +remaining@V +remains@p +remake@NVt +remakes@pVt +remaking@AVt +remand@tN +remanded@tA +remanding@tA +remands@tp +remark@VtN +remarkable@A +remarkably@? +remarked@VtA +remarking@VtA +remarks@Vtp +remarque@N +remarriage@N +remarriages@p +remarried@V +remarries@? +remarry@V +remarrying@V +remaster@t +remastered@t +remastering@t +remasters@t +rematch@NVt +rematches@? +rembrandt@N +remediable@A +remedial@A +remedied@p +remedies@p +remedy@Nt +remedying@p +remember@Vt +remembered@Vt +remembering@Vt +remembers@Vt +remembrance@N +remembrances@p +remind@t +reminded@t +reminder@? +reminders@p +reminding@t +reminds@t +remington@N +reminisce@i +reminisced@i +reminiscence@N +reminiscences@p +reminiscent@A +reminiscently@? +reminisces@i +reminiscing@i +remiss@A +remission@N +remissions@p +remissness@N +remit@VN +remits@Vp +remittance@N +remittances@p +remitted@V +remitting@V +remix@V +remixed@V +remixes@? +remixing@V +remnant@NA +remnants@p +remodel@t +remodeled@t +remodeling@t +remodelled@t +remodelling@t +remodels@t +remold@V +remolded@V +remolding@V +remolds@V +remonstrance@N +remonstrances@p +remonstrate@i +remonstrated@i +remonstrates@i +remonstrating@i +remorse@N +remorseful@A +remorsefully@v +remorseless@A +remorselessly@v +remortgage@t +remortgaged@t +remortgages@t +remortgaging@t +remote@A +remotely@v +remoteness@N +remoter@A +remotes@p +remotest@A +remould@VtN +remoulded@VtA +remoulding@VtA +remoulds@Vtp +remount@VtN +remounted@VtA +remounting@VtA +remounts@Vtp +removable@A +removal@N +removals@p +remove@ViN +removed@A +remover@N +removers@p +removes@Vip +removing@V +rems@p +remunerate@t +remunerated@t +remunerates@t +remunerating@t +remuneration@N +remunerations@p +remunerative@A +remus@N +renaissance@NA +renaissances@p +renal@A +rename@t +renamed@t +renames@t +renaming@t +renascence@N +renascences@p +renascent@A +rend@Vt +render@tN +rendered@tA +rendering@N +renderings@p +renders@tp +rendezvous@NV +rendezvoused@AV +rendezvouses@? +rendezvousing@AV +rending@Vt +rendition@N +renditions@p +rends@Vt +renegade@N +renegaded@A +renegades@p +renegading@A +renege@iVN +reneged@iVA +reneges@iVp +reneging@iVA +renegotiate@ti +renegotiated@V +renegotiates@ti +renegotiating@V +renew@V +renewable@? +renewal@N +renewals@p +renewed@V +renewing@V +renews@V +rennet@N +reno@N +renoir@N +renounce@tiN +renounced@V +renounces@tip +renouncing@V +renovate@t +renovated@V +renovates@t +renovating@V +renovation@N +renovations@p +renovator@N +renovators@p +renown@N +renowned@A +rent@NtiV +rental@NA +rentals@p +rented@AtiV +renter@N +renters@p +renting@AtiV +rents@ptiV +renumber@t +renumbered@t +renumbering@t +renumbers@t +renunciation@N +renunciations@p +reoccupied@t +reoccupies@? +reoccupy@t +reoccupying@t +reoccur@i +reoccurred@i +reoccurring@i +reoccurs@i +reopen@ti +reopened@ti +reopening@ti +reopens@ti +reorder@tN +reordered@tA +reordering@tA +reorders@tp +reorganisation@? +reorganisations@p +reorganise@ti +reorganised@ti +reorganises@ti +reorganising@ti +reorganization@N +reorganizations@p +reorganize@ti +reorganized@ti +reorganizes@ti +reorganizing@ti +rep@N +repackage@t +repackaged@t +repackages@t +repackaging@t +repaid@? +repaint@tN +repainted@tA +repainting@tA +repaints@tp +repair@tNi +repairable@A +repaired@tAi +repairer@N +repairers@p +repairing@tAi +repairman@N +repairmen@p +repairs@tpi +reparation@N +reparations@p +repartee@N +repast@Ni +repasts@pi +repatriate@VtN +repatriated@t +repatriates@Vtp +repatriating@t +repatriation@? +repatriations@p +repay@V +repayable@A +repaying@V +repayment@N +repayments@p +repays@V +repeal@N +repealed@A +repealing@A +repeals@p +repeat@VitN +repeatable@A +repeatably@? +repeated@A +repeatedly@v +repeater@N +repeaters@p +repeating@VitA +repeats@Vitp +repel@V +repellant@? +repellants@p +repelled@V +repellent@AN +repellents@p +repelling@V +repels@V +repent@VA +repentance@N +repentant@A +repented@VA +repenting@VA +repents@Vp +repercussion@N +repercussions@p +repertoire@N +repertoires@p +repertories@p +repertory@N +repetition@N +repetitions@p +repetitious@A +repetitive@A +repetitively@v +rephrase@t +rephrased@t +rephrases@t +rephrasing@t +replace@t +replaceable@? +replaced@t +replacement@N +replacements@p +replaces@t +replacing@t +replay@NV +replayed@AV +replaying@AV +replays@pV +replenish@t +replenished@t +replenishes@? +replenishing@t +replenishment@? +replete@A +repleted@A +repletes@p +repleting@A +repletion@N +replica@N +replicas@p +replicate@VA +replicated@VA +replicates@Vp +replicating@VA +replication@N +replications@p +replicator@? +replicators@p +replied@? +replies@? +reply@VtN +replying@VtA +report@NVti +reportage@N +reported@AVti +reportedly@v +reporter@N +reporters@p +reporting@AVti +reports@pVti +repose@NVit +reposed@Vt +reposeful@A +reposes@pVit +reposing@Vt +repositories@p +repository@N +repossess@t +repossessed@t +repossesses@? +repossessing@t +repossession@N +repossessions@p +reprehend@t +reprehended@t +reprehending@t +reprehends@t +reprehensible@A +reprehensibly@v +represent@t +representation@N +representational@A +representations@p +representative@NA +representatives@p +represented@t +representing@t +represents@t +repress@t +repressed@t +represses@? +repressing@t +repression@N +repressions@p +repressive@A +repressively@v +repressiveness@N +reprieve@tN +reprieved@V +reprieves@tp +reprieving@V +reprimand@Nt +reprimanded@At +reprimanding@At +reprimands@pt +reprint@NVt +reprinted@AVt +reprinting@AVt +reprints@pVt +reprisal@N +reprisals@p +reprise@NV +reprised@AV +reprises@pV +reprising@AV +reprized@? +reproach@tN +reproached@tA +reproaches@? +reproachful@A +reproachfully@v +reproaching@tA +reprobate@ANt +reprobates@pt +reprocess@t +reprocessed@A +reprocesses@? +reprocessing@t +reproduce@Vi +reproduced@V +reproduces@Vi +reproducible@A +reproducing@V +reproduction@N +reproductions@p +reproductive@A +reprogram@Vt +reprogramed@Vt +reprograming@Vt +reprogramme@? +reprogrammed@? +reprogrammes@? +reprogramming@? +reprograms@Vt +reproof@N +reproofed@A +reproofing@A +reproofs@p +reprove@t +reproved@V +reproves@t +reproving@V +reprovingly@? +reps@p +reptile@NA +reptiles@p +reptilian@AN +reptilians@p +republic@N +republican@AN +republicanism@N +republicans@p +republics@p +republish@t +republished@t +republishes@? +republishing@t +repudiate@t +repudiated@t +repudiates@t +repudiating@t +repudiation@N +repudiations@p +repugnance@N +repugnant@A +repulse@tN +repulsed@V +repulses@tp +repulsing@V +repulsion@N +repulsive@A +repulsively@v +repulsiveness@N +reputable@A +reputably@v +reputation@N +reputations@p +repute@tN +reputed@Av +reputedly@v +reputes@tp +reputing@tA +request@tN +requested@tA +requester@? +requesting@tA +requests@tp +requiem@N +requiems@p +require@V +required@V +requirement@N +requirements@p +requires@V +requiring@t +requisite@AN +requisites@p +requisition@Nt +requisitioned@At +requisitioning@At +requisitions@pt +requital@N +requite@t +requited@t +requites@t +requiting@t +reran@V +reread@V +rereading@V +rereads@V +reroute@V +rerouted@V +reroutes@V +rerouting@V +rerun@VtN +rerunning@V +reruns@Vtp +resale@N +resales@p +resat@V +reschedule@t +rescheduled@t +reschedules@t +rescheduling@t +rescind@t +rescinded@t +rescinding@t +rescinds@t +rescission@N +rescue@VN +rescued@V +rescuer@? +rescuers@p +rescues@Vp +rescuing@V +research@NV +researched@AV +researcher@h +researchers@h +researches@? +researching@AV +resell@V +reselling@V +resells@V +resemblance@N +resemblances@p +resemble@t +resembled@t +resembles@t +resembling@t +resend@t +resent@t +resented@t +resentful@A +resentfully@v +resentfulness@N +resenting@t +resentment@N +resentments@p +resents@t +reservation@N +reservations@p +reserve@tN +reserved@A +reservedly@v +reserves@tp +reserving@V +reservist@N +reservists@p +reservoir@N +reservoirs@p +reset@VtN +resets@Vtp +resetting@V +resettle@V +resettled@V +resettlement@N +resettles@V +resettling@V +reshape@t +reshaped@t +reshapes@t +reshaping@t +reshuffle@Nt +reshuffled@V +reshuffles@pt +reshuffling@v +reside@i +resided@i +residence@N +residences@p +residencies@? +residency@N +resident@NA +residential@A +residents@p +resides@i +residing@i +residual@AN +residuals@p +residue@N +residues@p +resign@Vt +resignation@N +resignations@p +resigned@A +resignedly@? +resigning@Vt +resigns@Vt +resilience@N +resiliency@? +resilient@A +resiliently@v +resin@Nt +resinous@A +resins@pt +resist@VtN +resistance@N +resistances@p +resistant@AN +resisted@VtA +resister@N +resisters@p +resisting@VtA +resistor@N +resistors@p +resists@Vtp +resit@V +resits@V +resitting@V +resold@V +resolute@A +resolutely@v +resoluteness@N +resolution@N +resolutions@p +resolve@VN +resolved@A +resolver@N +resolves@Vp +resolving@V +resonance@N +resonances@p +resonant@A +resonantly@v +resonate@V +resonated@V +resonates@V +resonating@V +resonator@N +resonators@p +resort@iN +resorted@iA +resorting@iA +resorts@ip +resound@i +resounded@i +resounding@i +resoundingly@v +resounds@i +resource@N +resourced@A +resourceful@A +resourcefully@v +resourcefulness@N +resources@p +resourcing@A +resp@N +respect@Nt +respectability@N +respectable@A +respectably@? +respected@At +respecter@N +respecters@p +respectful@A +respectfully@v +respecting@P +respective@A +respectively@v +respects@pt +respell@? +respelled@? +respelling@? +respells@p +respelt@? +respiration@N +respirator@N +respirators@p +respiratory@Nit +respire@Vi +respired@Vi +respires@Vi +respiring@Vi +respite@Nt +respites@pt +resplendence@N +resplendent@A +resplendently@? +respond@ViN +responded@ViA +respondent@NA +respondents@p +responding@ViA +responds@Vip +response@N +responses@p +responsibilities@p +responsibility@N +responsible@AN +responsibly@v +responsive@A +responsively@v +responsiveness@N +rest@NVti +restart@VN +restarted@VA +restarting@VA +restarts@Vp +restate@t +restated@t +restatement@N +restatements@p +restates@t +restating@t +restaurant@N +restauranteur@? +restauranteurs@p +restaurants@p +restaurateur@N +restaurateurs@p +rested@AVti +restful@A +restfuller@? +restfullest@? +restfully@v +restfulness@N +resting@A +restitution@N +restive@A +restively@v +restiveness@N +restless@A +restlessly@v +restlessness@N +restock@ti +restocked@ti +restocking@ti +restocks@ti +restoration@N +restorations@p +restorative@AN +restoratives@p +restore@t +restored@t +restorer@N +restorers@p +restores@t +restoring@t +restrain@t +restrained@t +restraining@t +restrains@t +restraint@N +restraints@p +restrict@V +restricted@A +restricting@V +restriction@NA +restrictions@p +restrictive@A +restrictively@v +restricts@V +restroom@? +restrooms@p +restructure@V +restructured@V +restructures@V +restructuring@V +restructurings@V +rests@pVti +restudied@? +restudies@p +restudy@N +restudying@A +resubmit@V +resubmits@V +resubmitted@V +resubmitting@V +result@Ni +resultant@AN +resultants@p +resulted@Ai +resulting@Ai +results@pi +resume@Vt +resumed@V +resumes@Vt +resuming@V +resumption@N +resumptions@p +resupplied@t +resupplies@? +resupply@t +resupplying@t +resurface@t +resurfaced@t +resurfaces@t +resurfacing@t +resurgence@N +resurgences@p +resurgent@A +resurrect@Vt +resurrected@Vt +resurrecting@Vt +resurrection@N +resurrections@p +resurrects@Vt +resuscitate@t +resuscitated@t +resuscitates@t +resuscitating@t +resuscitation@N +resuscitator@N +resuscitators@p +retail@NAvVt +retailed@AvVt +retailer@N +retailers@p +retailing@AvVt +retails@pvVt +retain@t +retained@t +retainer@N +retainers@p +retaining@t +retains@t +retake@VtN +retaken@? +retakes@Vtp +retaking@VtA +retaliate@it +retaliated@V +retaliates@it +retaliating@V +retaliation@N +retaliations@p +retaliatory@A +retard@t +retardant@NA +retardants@p +retardation@N +retarded@A +retarding@t +retards@t +retch@iN +retched@iA +retches@? +retching@iA +retell@V +retelling@V +retells@V +retention@N +retentive@A +retentiveness@? +rethink@VN +rethinking@V +rethinks@Vp +rethought@V +reticence@? +reticent@A +reticently@? +reticulated@V +reticulation@N +reticulations@p +retina@N +retinae@p +retinal@? +retinas@p +retinue@N +retinues@p +retire@Vt +retired@V +retiree@N +retirees@p +retirement@NA +retirements@p +retires@Vt +retiring@A +retold@V +retook@? +retool@V +retooled@V +retooling@V +retools@V +retort@VNt +retorted@VAt +retorting@VAt +retorts@Vpt +retouch@tN +retouched@tA +retouches@? +retouching@tA +retrace@t +retraced@t +retraces@t +retracing@t +retract@ti +retractable@A +retracted@ti +retracting@ti +retraction@N +retractions@p +retracts@ti +retrain@V +retrained@V +retraining@V +retrains@V +retread@VtN +retreaded@V +retreading@V +retreads@Vtp +retreat@VtN +retreated@VtA +retreating@VtA +retreats@Vtp +retrench@Vt +retrenched@Vt +retrenches@? +retrenching@Vt +retrenchment@N +retrenchments@p +retrial@N +retrials@p +retribution@N +retributions@p +retributive@A +retried@V +retries@? +retrievable@A +retrieval@N +retrievals@p +retrieve@VN +retrieved@V +retriever@N +retrievers@p +retrieves@Vp +retrieving@V +retro@N +retroactive@A +retroactively@? +retrod@? +retrodden@? +retrofit@V +retrofits@V +retrofitted@? +retrofitting@? +retrograde@Ai +retrograded@V +retrogrades@pi +retrograding@V +retrogress@i +retrogressed@i +retrogresses@? +retrogressing@i +retrogression@N +retrogressive@A +retrorocket@N +retrorockets@p +retrospect@NVi +retrospected@AVi +retrospecting@AVi +retrospection@N +retrospective@AN +retrospectively@v +retrospectives@p +retrospects@pVi +retry@V +retrying@V +retsina@N +return@itN +returnable@A +returnables@p +returned@itA +returnee@N +returnees@p +returner@? +returners@p +returning@itA +returns@itp +retype@t +retyped@t +retypes@t +retyping@t +reuben@N +reunification@N +reunified@t +reunifies@? +reunify@V +reunifying@t +reunion@N +reunions@p +reunite@V +reunited@ti +reunites@V +reuniting@ti +reupholster@t +reupholstered@t +reupholstering@t +reupholsters@t +reusable@A +reuse@V +reused@V +reuses@V +reusing@V +rev@N +revaluation@N +revaluations@p +revalue@Vt +revalued@t +revalues@Vt +revaluing@t +revamp@tN +revamped@tA +revamping@tA +revamps@tp +reveal@tN +revealed@tA +revealing@tA +revealingly@v +revealings@p +reveals@tp +reveille@N +revel@VN +revelation@N +revelations@p +reveled@V +reveler@? +revelers@p +reveling@V +revelings@V +revelled@V +reveller@? +revellers@p +revelling@V +revellings@V +revelries@? +revelry@N +revels@Vp +revenge@Nt +revenged@V +revengeful@A +revenges@pt +revenging@V +revenue@N +revenues@p +reverberate@it +reverberated@V +reverberates@it +reverberating@V +reverberation@N +reverberations@p +revere@N +revered@t +reverence@N +reverenced@A +reverences@p +reverencing@A +reverend@A +reverends@p +reverent@A +reverential@A +reverentially@v +reverently@? +reveres@p +reverie@N +reveries@p +revering@t +reversal@N +reversals@p +reverse@VNA +reversed@A +reverses@Vp +reversibility@N +reversible@AN +reversing@A +reversion@N +reversions@p +revert@ViN +reverted@ViA +reverting@ViA +reverts@Vip +revery@? +review@VN +reviewed@VA +reviewer@? +reviewers@p +reviewing@VA +reviews@Vp +revile@V +reviled@V +revilement@N +reviler@N +revilers@p +reviles@V +reviling@V +revise@tN +revised@V +revises@tp +revising@V +revision@N +revisionism@NA +revisionist@NA +revisionists@p +revisions@p +revisit@V +revisited@V +revisiting@V +revisits@V +revitalisation@N +revitalise@t +revitalised@t +revitalises@t +revitalising@t +revitalization@N +revitalize@t +revitalized@t +revitalizes@t +revitalizing@t +revival@N +revivalism@N +revivalist@NA +revivalists@p +revivals@p +revive@Vt +revived@V +revives@Vt +revivification@N +revivified@t +revivifies@? +revivify@V +revivifying@t +reviving@V +revocable@A +revocation@N +revocations@p +revokable@? +revoke@tiN +revoked@V +revokes@tip +revoking@V +revolt@Ni +revolted@Ai +revolting@A +revoltingly@v +revolts@pi +revolution@N +revolutionaries@p +revolutionary@A +revolutionise@t +revolutionised@t +revolutionises@t +revolutionising@t +revolutionist@NA +revolutionists@p +revolutionize@t +revolutionized@t +revolutionizes@t +revolutionizing@t +revolutions@p +revolve@Vi +revolved@V +revolver@N +revolvers@p +revolves@Vi +revolving@A +revs@p +revue@N +revues@p +revulsion@N +revved@V +revving@V +reward@Nt +rewarded@At +rewarding@A +rewards@pt +rewind@VtN +rewindable@? +rewinding@VtA +rewinds@Vtp +rewire@t +rewired@t +rewires@t +rewiring@t +reword@t +reworded@t +rewording@t +rewords@t +rework@t +reworked@V +reworking@t +reworkings@p +reworks@t +rewound@t +rewrite@VtN +rewrites@Vtp +rewriting@V +rewritten@V +rewrote@V +rex@N +reykjavik@N +reynolds@N +rfc@N +rfcs@p +rfd@N +rh@N +rhapsodic@AN +rhapsodies@p +rhapsodise@? +rhapsodised@? +rhapsodises@? +rhapsodising@? +rhapsodize@Vi +rhapsodized@V +rhapsodizes@Vi +rhapsodizing@V +rhapsody@N +rhea@N +rheas@p +rhee@N +rhenish@AN +rheostat@N +rheostats@p +rhetoric@N +rhetorical@A +rhetorically@? +rhetorician@N +rhetoricians@p +rheum@N +rheumatic@AN +rheumatics@N +rheumatism@N +rheumier@? +rheumiest@? +rheumy@A +rhine@N +rhineland@N +rhinestone@N +rhinestones@p +rhino@N +rhinoceri@? +rhinoceros@N +rhinoceroses@p +rhinos@p +rhizome@N +rhizomes@p +rho@N +rhodes@N +rhodesia@N +rhodium@N +rhododendron@N +rhododendrons@p +rhombi@p +rhomboid@NA +rhomboids@p +rhombus@N +rhombuses@p +rhone@? +rhubarb@N!V +rhubarbs@p!V +rhyme@NV +rhymed@V +rhymes@pV +rhyming@V +rhythm@N +rhythmic@AN +rhythmical@A +rhythmically@? +rhythms@p +ri@N +rib@NVt +ribald@AN +ribaldry@N +ribbed@t +ribbentrop@N +ribbing@N +ribbon@Nt +ribbons@pt +riboflavin@N +ribs@pVt +ricardo@N +rice@N +riced@A +rices@p +rich@AN +richard@N +richards@N +richardson@N +richelieu@N +richer@N +riches@p +richest@? +richly@v +richmond@N +richness@N +richter@N +richthofen@N +ricing@A +rick@N +ricked@A +ricketier@? +ricketiest@? +rickets@N +rickety@A +ricking@A +rickover@N +ricks@p +ricksha@? +rickshas@p +rickshaw@N +rickshaws@p +ricochet@VN +ricocheted@VA +ricocheting@VA +ricochets@Vp +ricochetted@? +ricochetting@? +ricotta@N +rid@V +riddance@N +ridded@? +ridden@VA +ridding@? +riddle@N +riddled@V +riddles@p +riddling@V +ride@VtiN +rider@N +riders@p +rides@Vtip +ridge@NV +ridged@V +ridgepole@N +ridgepoles@p +ridges@pV +ridging@V +ridicule@Nt +ridiculed@V +ridicules@pt +ridiculing@V +ridiculous@A +ridiculously@v +ridiculousness@N +riding@N +rids@V +riemann@N +riesling@N +rife@A +rifer@? +rifest@? +riff@Ni +riffed@Ai +riffing@Ai +riffle@N +riffled@A +riffles@p +riffling@A +riffraff@N +riffs@pi +rifle@Nt +rifled@V +rifleman@N +riflemen@p +rifles@pt +rifling@N +rift@NV +rifted@AV +rifting@AV +rifts@pV +rig@VN +riga@N +rigamarole@N +rigamaroles@p +rigel@N +rigged@V +rigging@N +right@AvNV! +righted@AvV! +righteous@A +righteously@v +righteousness@N +righter@? +rightest@? +rightful@A +rightfully@v +rightfulness@N +righting@AvV! +rightist@AN +rightists@p +rightly@v +rightmost@? +rightness@N +righto@! +rights@NA +rightward@Av +rightwards@v +rigid@A +rigidity@? +rigidly@? +rigidness@? +rigmarole@N +rigmaroles@p +rigor@N +rigorous@A +rigorously@? +rigors@p +rigour@? +rigours@p +rigs@Vp +rile@t +riled@t +riles@t +riley@A +riling@t +rilke@N +rill@N +rills@p +rim@NVt +rimbaud@N +rime@Nt +rimed@Vi +rimes@pt +riming@Vi +rimless@A +rimmed@V +rimming@V +rims@pVt +rind@N +rinds@p +ring@N +ringed@A +ringer@N +ringers@p +ringing@V +ringleader@N +ringleaders@p +ringlet@N +ringlets@p +ringmaster@N +ringmasters@p +rings@p +ringside@N +ringworm@N +rink@N +rinks@p +rinse@tN +rinsed@V +rinses@tp +rinsing@V +rio@? +rios@p +riot@Nit +rioted@Ait +rioter@N +rioters@p +rioting@Ait +riotous@A +riotously@v +riotousness@N +riots@pit +rip@N +ripcord@N +ripcords@p +ripe@A +ripely@v +ripen@V +ripened@V +ripeness@N +ripening@V +ripens@V +riper@? +ripest@? +ripley@N +ripoff@? +ripoffs@p +riposte@Ni +riposted@V +ripostes@pi +riposting@V +ripped@V +ripper@N +rippers@p +ripping@A +ripple@NitA +rippled@V +ripples@pit +rippling@V +rips@p +ripsaw@N +ripsaws@p +rise@N +risen@V +riser@N +risers@p +rises@p +risible@A +rising@NA +risings@p +risk@Nt +risked@At +riskier@A +riskiest@A +riskily@v +riskiness@N +risking@At +risks@pt +risky@A +risorgimento@N +risotto@N +risottos@p +rissole@N +rissoles@p +ritalin@? +rite@N +rites@p +ritual@NA +ritualised@A +ritualism@N +ritualistic@A +ritualistically@v +ritualized@V +ritually@v +rituals@p +ritzier@A +ritziest@A +ritzy@A +rival@NVt +rivaled@AVt +rivaling@AVt +rivalled@? +rivalling@V +rivalries@p +rivalry@N +rivals@pVt +riven@VA +river@N +rivera@N +riverbed@? +riverbeds@p +riverfront@? +rivers@N +riverside@N +riversides@p +rivet@Nt +riveted@V +riveting@V +rivets@pt +rivetted@V +rivetting@V +riviera@N +rivieras@p +rivulet@N +rivulets@p +riyadh@N +rizal@N +rm@N +rn@N +rna@N +roach@N +roached@A +roaches@? +roaching@A +road@N +roadbed@N +roadbeds@p +roadblock@N +roadblocked@A +roadblocking@A +roadblocks@p +roadhouse@N +roadhouses@p +roadie@? +roadies@? +roadkill@? +roadrunner@N +roadrunners@p +roads@p +roadshow@? +roadshows@p +roadside@? +roadsides@? +roadster@N +roadsters@p +roadway@N +roadways@p +roadwork@N +roadworks@p +roadworthy@A +roam@VN +roamed@VA +roamer@? +roamers@p +roaming@VA +roams@Vp +roan@AN +roans@p +roar@VtN +roared@VtA +roaring@AvN +roars@Vtp +roast@ViN +roasted@ViA +roaster@N +roasters@p +roasting@AN +roasts@Vip +rob@N +robbed@V +robber@N +robberies@p +robbers@p +robbery@N +robbing@V +robe@NV +robed@A +robes@pV +robeson@N +robespierre@N +robin@N +robing@A +robins@N +robinson@N +robot@N +robotic@? +robotics@p +robots@p +robs@p +robson@N +robust@A +robuster@? +robustest@? +robustly@v +robustness@N +rochester@N +rock@N +rockabilly@N +rocked@A +rockefeller@N +rocker@N +rockeries@p +rockers@p +rockery@N +rocket@Nti +rocketed@Ati +rocketing@Ati +rocketry@N +rockets@pti +rockfall@? +rockfalls@p +rockford@N +rockier@A +rockies@p +rockiest@A +rockiness@N +rocking@A +rocks@p +rockwell@N +rocky@A +rococo@NA +rod@N +rode@VN +rodent@N +rodents@p +rodeo@N +rodeos@p +rodgers@N +rodin@N +rodney@N +rods@p +roe@N +roebuck@N +roebucks@p +roentgen@N +roentgens@p +roes@p +rofl@? +roger@!V +rogered@!V +rogering@!V +rogers@N +rogue@Nt +roguery@N +rogues@pt +roguish@A +roguishly@v +roguishness@N +roil@ti +roiled@ti +roiling@ti +roils@ti +roister@i +roistered@i +roisterer@N +roisterers@p +roistering@i +roisters@i +roland@N +role@N +roles@p +roll@VtNi +rolland@N +rollback@N +rollbacks@p +rolled@VtAi +roller@N +rollerblade@? +rollerblading@? +rollers@p +rollerskating@? +rollick@iN +rollicked@iA +rollicking@A +rollicks@ip +rolling@Av +rollmop@N +rollmops@p +rollover@? +rollovers@p +rolls@Vtpi +rolodex@? +rom@N +romaine@N +romaines@p +roman@AN +romance@AN +romanced@A +romances@p +romancing@A +romanesque@A +romania@N +romanian@NA +romanians@p +romanies@p +romano@N +romanov@N +romans@N +romansh@NA +romantic@AN +romantically@v +romanticise@N +romanticised@A +romanticises@p +romanticising@A +romanticism@N +romanticist@? +romanticists@p +romanticize@it +romanticized@V +romanticizes@it +romanticizing@V +romantics@p +romany@N +rome@N +romeo@N +romes@p +rommel@N +romney@N +romp@iN +romped@iA +romper@N +rompers@p +romping@iA +romps@ip +romulus@N +rondo@N +rondos@p +rood@N +roods@p +roof@Nt +roofed@At +roofer@N +roofers@p +roofing@N +roofless@A +roofs@pt +rooftop@? +rooftops@p +rook@Nt +rooked@At +rookeries@p +rookery@N +rookie@N +rookies@p +rooking@At +rooks@pt +room@Ni +roomed@Ai +roomer@N +roomers@p +roomful@N +roomfuls@p +roomier@A +roomiest@A +roominess@N +rooming@Ai +roommate@N +roommates@p +rooms@pi +roomy@A +roosevelt@N +roost@N +roosted@A +rooster@N +roosters@p +roosting@A +roosts@p +root@N +rooted@A +rooter@N +rooting@A +rootless@A +rootlessness@N +roots@N +rope@Nti +roped@V +ropes@pti +ropey@? +ropier@A +ropiest@A +roping@NV +ropy@A +roquefort@N +roqueforts@p +rorschach@? +rosa@N +rosaries@p +rosario@N +rosary@N +rose@N +roseate@A +roseau@? +rosebud@N +rosebuds@p +rosebush@N +rosebushes@? +rosemary@N +roses@p +rosetta@N +rosette@N +rosettes@p +rosewater@? +rosewood@N +rosewoods@p +rosicrucian@NA +rosier@? +rosiest@? +rosily@v +rosin@Nt +rosined@At +rosiness@N +rosining@At +rosins@pt +ross@N +rossetti@N +rossini@N +rostand@N +roster@Nt +rosters@pt +rostov@N +rostra@N +rostrum@N +rostrums@p +rosy@A +rot@N +rota@N +rotarian@NA +rotaries@p +rotary@AN +rotas@p +rotate@VA +rotated@VA +rotates@Vp +rotating@VA +rotation@N +rotational@A +rotations@p +rotc@? +rote@N +rothko@N +rothschild@N +rotisserie@N +rotisseries@p +rotogravure@N +rotogravures@p +rotor@N +rotors@p +rots@p +rotted@A +rotten@A +rottener@? +rottenest@? +rottenness@? +rotter@N +rotterdam@N +rotters@p +rotting@A +rottweiler@N +rottweilers@p +rotund@A +rotunda@N +rotundas@p +rotundity@? +rotundness@? +rouault@N +rouble@N +roubles@p +rouge@Nt +rouged@V +rouges@pt +rough@ANvt +roughage@N +roughcast@NAV +roughed@Avt +roughen@V +roughened@V +roughening@V +roughens@V +rougher@N +roughest@? +roughhouse@NV +roughhoused@AV +roughhouses@pV +roughhousing@AV +roughing@Avt +roughly@v +roughneck@N +roughnecked@A +roughnecking@A +roughnecks@p +roughness@N +roughs@pvt +roughshod@Av +rouging@V +roulette@Nt +roumania@N +round@ANPvVt +roundabout@NAvP +roundabouts@pvP +rounded@A +roundel@N +roundelay@N +roundelays@p +roundels@p +rounder@N +rounders@N +roundest@? +roundhouse@N +roundhouses@p +rounding@AN +roundish@A +roundly@v +roundness@N +rounds@pPvVt +roundup@NV +roundups@pV +roundworm@N +roundworms@p +rouse@VtiN +roused@VtiA +rouses@Vtip +rousing@A +rousseau@N +roust@t +roustabout@N +roustabouts@p +rousted@t +rousting@t +rousts@t +rout@NtVi +route@Nt +routed@V +routeing@At +router@N +routes@pt +routine@NA +routinely@v +routines@p +routing@NV +routinise@? +routinised@? +routinises@? +routinising@? +routinize@t +routinized@t +routinizes@t +routinizing@t +routs@ptVi +roux@N +rove@ViNt +roved@V +rover@N +rovers@p +roves@Vipt +roving@NV +row@N +rowan@N +rowans@p +rowboat@N +rowboats@p +rowdier@? +rowdies@? +rowdiest@? +rowdily@v +rowdiness@N +rowdy@AN +rowdyism@N +rowe@N +rowed@A +rowel@NVt +roweled@V +roweling@V +rowelled@V +rowelling@V +rowels@pVt +rower@N +rowers@p +rowing@A +rowlock@N +rowlocks@p +rows@p +royal@AN +royalist@NA +royalists@p +royally@v +royals@p +royalties@p +royalty@N +royce@N +rpm@N +rps@N +rr@N +rs@N +rsv@N +rsvp@N +rte@? +rtfm@? +rtfmed@? +rtfming@? +rtfms@p +ru@N +rub@VtN +rubbed@V +rubber@N +rubberier@? +rubberiest@? +rubberise@t +rubberised@t +rubberises@t +rubberising@t +rubberize@t +rubberized@t +rubberizes@t +rubberizing@t +rubberneck@Ni +rubbernecked@Ai +rubbernecker@? +rubberneckers@p +rubbernecking@Ai +rubbernecks@pi +rubbers@p +rubbery@A +rubbing@N +rubbings@p +rubbish@Nt +rubbished@At +rubbishes@? +rubbishing@At +rubbishy@? +rubble@N +rubdown@N +rubdowns@p +rube@N +rubella@N +rubens@N +rubes@p +rubicon@N +rubicund@A +rubier@? +rubies@p +rubiest@? +rubinstein@N +ruble@N +rubles@p +rubric@NA +rubrics@p +rubs@Vtp +ruby@N +ruched@A +ruck@NiV +rucked@AiV +rucking@AiV +rucks@piV +rucksack@N +rucksacks@p +ruckus@N +ruckuses@? +ructions@p +rudder@N +rudderless@A +rudders@p +ruddier@A +ruddiest@A +ruddiness@N +ruddy@AvA +rude@A +rudely@v +rudeness@N +ruder@N +rudest@? +rudiment@N +rudimentary@A +rudiments@p +rudolf@N +rue@N +rued@V +rueful@A +ruefully@? +rues@p +ruff@N +ruffed@A +ruffian@N +ruffians@p +ruffing@A +ruffle@VtNi +ruffled@A +ruffles@Vtpi +ruffling@V +ruffs@p +rug@N +rugby@N +rugged@A +ruggeder@? +ruggedest@? +ruggedly@v +ruggedness@? +rugger@N +rugs@p +ruhr@N +ruin@Nti +ruination@N +ruined@Ati +ruing@V +ruining@Ati +ruinous@A +ruinously@v +ruins@pti +rule@NVti +ruled@V +ruler@N +rulers@p +rules@N +ruling@NA +rulings@p +rum@NA +rumania@N +rumba@N +rumbaed@A +rumbaing@A +rumbas@p +rumble@VtiN +rumbled@VtiA +rumbles@Vtip +rumbling@VtiA +rumblings@p +rumbustious@A +ruminant@NA +ruminants@p +ruminate@V +ruminated@V +ruminates@V +ruminating@V +rumination@? +ruminations@p +ruminative@? +ruminatively@? +rummage@VN +rummaged@V +rummages@Vp +rummaging@V +rummer@N +rummest@? +rummy@NA +rumor@N +rumored@A +rumoring@A +rumormonger@N +rumormongers@p +rumors@p +rumour@Nt +rumoured@At +rumouring@At +rumourmonger@? +rumourmongers@p +rumours@pt +rump@N +rumple@VN +rumpled@V +rumples@Vp +rumpling@V +rumps@p +rumpus@N +rumpuses@p +rums@p +run@Vit +runabout@NV +runabouts@pV +runaround@? +runarounds@p +runaway@? +runaways@p +rundown@N +rundowns@p +rune@N +runes@p +rung@NV +rungs@pV +runic@A +runnel@N +runnels@p +runner@N +runners@p +runnier@A +runniest@A +running@AN +runny@A +runnymede@N +runoff@N +runoffs@p +runs@Vit +runt@N +runts@p +runway@N +runways@p +runyon@N +rupee@N +rupees@p +rupert@N +rupture@NV +ruptured@AV +ruptures@pV +rupturing@AV +rural@A +ruse@N +ruses@p +rush@N +rushed@A +rushes@? +rushing@N +rushmore@N +rusk@N +ruskin@N +rusks@p +russ@NA +russell@N +russet@NA +russets@p +russia@N +russian@NA +russians@p +rust@N +rusted@A +rustic@AN +rustically@v +rusticity@? +rustics@p +rustier@A +rustiest@A +rustiness@N +rusting@A +rustle@VN +rustled@V +rustler@N +rustlers@p +rustles@Vp +rustling@V +rustlings@V +rustproof@A +rustproofed@A +rustproofing@A +rustproofs@p +rusts@p +rusty@A +rut@NV +rutabaga@N +rutabagas@p +ruth@N +rutherford@N +ruthless@A +ruthlessly@v +ruthlessness@N +ruts@pV +rutted@V +rutting@V +rv@N +rvs@p +rwanda@N +rwandan@? +rwandans@p +rwandas@p +rx@N +ryder@N +rye@N +saar@N +saarinen@N +sabbath@N +sabbaths@p +sabbatical@AN +sabbaticals@p +saber@N +sabers@p +sabin@N +sabine@NA +sable@N +sables@p +sabotage@Nt +sabotaged@V +sabotages@pt +sabotaging@V +saboteur@N +saboteurs@p +sabre@Nt +sabres@pt +sac@N +sacajawea@? +saccharin@N +saccharine@A +sacerdotal@A +sachem@N +sachems@p +sachet@N +sachets@p +sack@Nt +sackcloth@N +sacked@At +sackful@N +sackfuls@p +sacking@N +sackings@p +sacks@N +sacrament@N +sacramental@AN +sacramento@N +sacraments@p +sacred@A +sacredly@? +sacredness@? +sacrifice@NV +sacrificed@AV +sacrifices@pV +sacrificial@A +sacrificially@? +sacrificing@AV +sacrilege@N +sacrileges@p +sacrilegious@A +sacrilegiously@v +sacristan@N +sacristans@p +sacristies@? +sacristy@N +sacrosanct@A +sacs@p +sad@A +sadat@N +sadden@V +saddened@V +saddening@V +saddens@V +sadder@? +saddest@? +saddle@NVit +saddlebag@N +saddlebags@p +saddled@V +saddler@N +saddlers@p +saddlery@N +saddles@pVit +saddling@V +sadducee@N +sade@N +sades@p +sadhu@N +sadhus@p +sadism@N +sadist@NA +sadistic@A +sadistically@v +sadists@p +sadly@v +sadness@N +sadomasochism@N +sadomasochist@? +sadomasochistic@? +sadomasochists@p +safari@N +safaried@A +safariing@A +safaris@p +safavid@N +safe@AvN +safeguard@Nt +safeguarded@At +safeguarding@At +safeguards@pt +safekeeping@N +safely@v +safeness@N +safer@? +safes@pv +safest@? +safeties@p +safety@N +safflower@N +safflowers@p +saffron@N +saffrons@p +sag@VN +saga@N +sagacious@A +sagaciously@v +sagacity@N +sagas@p +sage@N +sagebrush@N +sagely@v +sager@N +sages@p +sagest@? +sagged@V +sagging@V +saggy@? +sagittarius@NA +sagittariuses@? +sago@N +sags@Vp +saguaro@N +saguaros@p +sahara@N +sahel@? +sahib@N +sahibs@p +said@AVN +saigon@N +sail@NVt +sailboard@? +sailboards@p +sailboat@N +sailboats@p +sailcloth@N +sailed@AVt +sailfish@N +sailfishes@? +sailing@N +sailings@p +sailor@N +sailors@p +sails@pVt +saint@N +sainted@A +sainthood@N +saintlier@A +saintliest@A +saintliness@N +saintly@A +saints@p +saith@V +sakai@N +sake@N +sakharov@N +saki@N +sal@N +salaam@NV +salaamed@AV +salaaming@AV +salaams@pV +salable@A +salacious@A +salaciously@v +salaciousness@N +salad@N +saladin@N +salado@N +salads@p +salamander@N +salamanders@p +salami@N +salamis@N +salaried@A +salaries@p +salary@NV +sale@N +saleable@A +salem@N +salerno@N +saleroom@N +salerooms@p +sales@NA +salesclerk@N +salesclerks@p +salesgirl@N +salesgirls@p +salesman@N +salesmanship@N +salesmen@p +salespeople@p +salesperson@N +salespersons@p +salesroom@N +salesrooms@p +saleswoman@? +saleswomen@? +salience@N +salient@AN +salients@p +salinas@N +saline@AN +salines@p +salinger@N +salinity@N +salish@N +saliva@N +salivary@? +salivate@it +salivated@it +salivates@it +salivating@it +salivation@N +salk@N +sallied@p +sallies@p +sallow@AtN +sallower@? +sallowest@? +sallowness@N +sallust@N +sally@N +sallying@p +salmon@N +salmonella@N +salmonellae@p +salmonellas@p +salmons@p +salon@N +salons@p +saloon@N +saloons@p +salsa@? +salsas@p +salt@N +saltbox@N +saltboxes@? +saltcellar@N +saltcellars@p +salted@A +salter@N +saltest@? +saltier@AN +saltiest@? +saltine@N +saltines@p +saltiness@N +salting@A +saltpeter@N +saltpetre@N +salts@p +saltshaker@? +saltshakers@p +saltwater@A +salty@A +salubrious@A +salutary@A +salutation@N +salutations@p +salute@tN +saluted@V +salutes@tp +saluting@V +salvador@N +salvadoran@? +salvadorans@p +salvadorian@? +salvadorians@p +salvage@Nt +salvageable@A +salvaged@V +salvages@pt +salvaging@V +salvation@N +salve@NtV +salved@Vt +salver@N +salvers@p +salves@ptV +salving@Vt +salvo@N +salvoes@p +salvos@p +sam@N +samara@N +samaritan@NA +samaritans@p +samba@NV +sambaed@p +sambaing@p +sambas@p +same@Av +sameness@N +sames@pv +samey@? +samizdat@N +samizdats@p +samoa@pA +samoan@AN +samosa@? +samosas@p +samovar@N +samovars@p +samoyed@N +sampan@N +sampans@p +sample@Nt +sampled@V +sampler@N +samplers@p +samples@pt +sampling@N +samson@N +samuel@N +samurai@N +samurais@p +san@N +sanatoria@? +sanatorium@N +sanatoriums@p +sancta@? +sanctification@N +sanctified@A +sanctifies@? +sanctify@V +sanctifying@V +sanctimonious@A +sanctimoniously@v +sanctimoniousness@N +sanction@Nt +sanctioned@At +sanctioning@At +sanctions@pt +sanctity@N +sanctuaries@p +sanctuary@N +sanctum@N +sanctums@p +sand@N +sandal@N +sandals@p +sandalwood@N +sandbag@NVt +sandbagged@V +sandbagging@V +sandbags@pVt +sandbank@N +sandbanks@p +sandbar@? +sandbars@p +sandblast@Nt +sandblasted@At +sandblaster@N +sandblasters@p +sandblasting@At +sandblasts@pt +sandbox@N +sandboxes@? +sandburg@N +sandcastle@? +sandcastles@? +sanded@A +sander@N +sanders@N +sandhog@N +sandhogs@p +sandier@A +sandiest@A +sandiness@? +sanding@A +sandinista@? +sandlot@NA +sandlots@p +sandman@N +sandmen@? +sandpaper@Nt +sandpapered@At +sandpapering@At +sandpapers@pt +sandpiper@N +sandpipers@p +sandpit@N +sandpits@p +sands@N +sandstone@N +sandstorm@N +sandstorms@p +sandwich@N +sandwiched@A +sandwiches@? +sandwiching@A +sandy@A +sane@A +sanely@v +saner@A +sanest@A +sanforized@t +sang@N +sanger@N +sangfroid@? +sangria@N +sangs@p +sanguinary@A +sanguine@AN +sanhedrin@N +sanitaria@? +sanitarium@N +sanitariums@p +sanitary@A +sanitation@N +sanitise@t +sanitised@t +sanitises@t +sanitising@t +sanitize@t +sanitized@t +sanitizes@t +sanitizing@t +sanity@N +sank@V +sans@N +sanserif@? +sanskrit@N +santa@N +santayana@N +santeria@? +santiago@N +sap@NVtA +sapience@N +sapient@A +sapling@N +saplings@p +sapped@V +sapper@N +sappers@p +sapphire@N +sapphires@p +sappho@N +sappier@A +sappiest@A +sapping@V +sapporo@N +sappy@A +saprophyte@N +saprophytes@p +saps@pVt +sapsucker@N +sapsuckers@p +saracen@NA +saracens@p +saragossa@N +sarah@N +sarajevo@N +sarape@N +sarapes@p +saratov@N +sarawak@N +sarcasm@N +sarcasms@p +sarcastic@A +sarcastically@v +sarcoma@N +sarcomas@p +sarcomata@? +sarcophagi@p +sarcophagus@N +sarcophaguses@? +sardine@N +sardines@p +sardinia@N +sardonic@A +sardonically@v +saree@N +sarees@p +sarge@N +sargent@N +sarges@p +sari@N +saris@p +sarky@A +sarnie@? +sarnies@? +sarong@N +sarongs@p +sarsaparilla@N +sarsaparillas@p +sarto@N +sartorial@A +sartorially@v +sartre@N +sase@? +sash@Nt +sashay@i +sashayed@i +sashaying@i +sashays@i +sashes@? +saskatchewan@N +saskatoon@N +sasquatch@? +sass@N +sassafras@N +sassafrases@? +sassanian@? +sassed@A +sasses@? +sassier@A +sassiest@? +sassing@A +sassoon@N +sassy@A +sat@N +satan@N +satanic@A +satanically@v +satanism@NA +satanist@N +satanists@p +satay@? +satchel@N +satchels@p +sate@tV +sated@t +sateen@N +satellite@N +satellited@A +satellites@p +satelliting@A +sates@tV +satiate@t +satiated@V +satiates@t +satiating@V +satiety@N +satin@N +sating@t +satinwood@N +satinwoods@p +satiny@A +satire@N +satires@p +satiric@? +satirical@A +satirically@v +satirise@t +satirised@t +satirises@t +satirising@t +satirist@N +satirists@p +satirize@V +satirized@t +satirizes@V +satirizing@t +satisfaction@N +satisfactions@p +satisfactorily@v +satisfactory@A +satisfied@Ai +satisfies@? +satisfy@V +satisfying@V +satisfyingly@v +satrap@N +satraps@p +satsuma@N +satsumas@p +saturate@VtA +saturated@A +saturates@Vtp +saturating@VtA +saturation@N +saturday@N +saturdays@v +saturn@N +saturnalia@N +saturnine@A +satyr@N +satyrs@p +sauce@Nt +sauced@V +saucepan@N +saucepans@p +saucer@N +saucers@p +sauces@pt +saucier@A +sauciest@A +saucily@? +sauciness@? +saucing@V +saucy@A +saudi@? +saudis@p +sauerkraut@N +saul@N +sauna@N +saunaed@A +saunaing@A +saunas@p +saunter@iN +sauntered@iA +sauntering@iA +saunters@ip +sausage@N +sausages@p +saussure@N +sauted@VA +sauterne@? +savage@ANt +savaged@At +savagely@v +savageness@N +savager@? +savageries@p +savagery@N +savages@pt +savagest@? +savaging@At +savanna@N +savannah@N +savannahes@? +savannahs@p +savannas@p +savant@N +savants@p +save@N +saved@V +saver@N +savers@p +saves@p +saving@ANPC +savings@pPC +savior@N +saviors@p +saviour@N +saviours@p +savonarola@N +savor@Nit +savored@Ait +savorier@A +savories@? +savoriest@A +savoring@Ait +savors@pit +savory@N +savour@Nit +savoured@Ait +savourier@A +savouries@? +savouriest@A +savouring@Ait +savours@pit +savoury@AN +savoy@N +savoyard@NA +savoys@p +savvied@? +savvier@? +savvies@? +savviest@? +savvy@VNA +savvying@VA +saw@N +sawdust@N +sawed@V +sawhorse@N +sawhorses@p +sawing@V +sawmill@N +sawmills@p +sawn@V +saws@p +sawyer@N +sawyers@p +sax@N +saxes@p +saxon@NA +saxons@p +saxony@N +saxophone@N +saxophones@p +saxophonist@N +saxophonists@p +say@N +sayers@N +saying@N +sayings@p +says@N +sb@N +sc@h +scab@Ni +scabbard@N +scabbards@p +scabbed@? +scabbier@A +scabbiest@A +scabbing@? +scabby@A +scabies@N +scabrous@A +scabs@pi +scad@N +scads@p +scaffold@Nt +scaffolding@N +scaffolds@pt +scag@NV +scagged@? +scagging@? +scags@pV +scalar@NA +scalars@p +scalawag@N +scalawags@p +scald@VtNA +scalded@VtA +scalding@VtA +scalds@Vtp +scale@NtiV +scaled@AV +scalene@A +scales@N +scalier@A +scaliest@A +scaliness@N +scaling@V +scallion@N +scallions@p +scallop@Nti +scalloped@Ati +scalloping@N +scallops@pti +scallywag@N +scallywags@p +scalp@Nt +scalped@At +scalpel@N +scalpels@p +scalper@N +scalpers@p +scalping@N +scalps@pt +scaly@A +scam@? +scammed@? +scamming@? +scamp@NV +scamper@iN +scampered@iA +scampering@iA +scampers@ip +scampi@N +scampies@? +scamps@pV +scams@p +scan@VtiN +scandal@Nt +scandalise@t +scandalised@t +scandalises@t +scandalising@t +scandalize@t +scandalized@t +scandalizes@t +scandalizing@t +scandalmonger@N +scandalmongers@p +scandalous@p +scandalously@v +scandals@pt +scandinavia@N +scandinavian@AN +scandinavians@p +scanned@V +scanner@N +scanners@p +scanning@V +scans@Vtip +scansion@N +scant@Atv +scanted@Atv +scanter@? +scantest@? +scantier@A +scanties@p +scantiest@A +scantily@v +scantiness@N +scanting@Atv +scants@ptv +scanty@A +scapegoat@N +scapegoated@A +scapegoating@A +scapegoats@p +scapula@N +scapulae@p +scapulas@p +scar@NV +scarab@N +scarabs@p +scaramouch@N +scarborough@N +scarce@Av +scarcely@v +scarceness@N +scarcer@A +scarcest@A +scarcities@? +scarcity@N +scare@VtN +scarecrow@N +scarecrows@p +scared@V +scaremonger@N +scaremongering@N +scaremongers@p +scares@Vtp +scarf@Nt +scarfed@At +scarfing@At +scarfs@pt +scarier@? +scariest@? +scarified@t +scarifies@? +scarify@V +scarifying@t +scaring@V +scarlatina@N +scarlatti@N +scarlet@NA +scarp@Nt +scarper@iN +scarpered@iA +scarpering@iA +scarpers@ip +scarps@pt +scarred@? +scarring@? +scars@pV +scarves@N +scary@A +scat@VN +scathing@A +scathingly@? +scatological@A +scats@Vp +scatted@i +scatter@tN +scatterbrain@N +scatterbrained@A +scatterbrains@p +scattered@tA +scattering@N +scatterings@p +scatters@tp +scatting@i +scatty@A +scavenge@Vt +scavenged@Vt +scavenger@N +scavengers@p +scavenges@Vt +scavenging@Vt +scenario@N +scenarios@p +scene@N +scenery@N +scenes@p +scenic@A +scenically@? +scent@Nti +scented@Ati +scenting@Ati +scents@pti +scepter@? +scepters@p +sceptic@NA +sceptical@A +sceptically@v +scepticism@N +sceptics@p +sceptre@Nt +sceptres@pt +schadenfreude@N +schedule@Nt +scheduled@V +scheduler@? +schedulers@p +schedules@pt +scheduling@V +schelling@N +schema@N +schemas@p +schemata@p +schematic@AN +schematically@v +schematics@p +schematise@t +schematised@t +schematises@t +schematising@t +schematize@t +schematized@t +schematizes@t +schematizing@t +scheme@Nt +schemed@At +schemer@N +schemers@p +schemes@pt +scheming@AN +schenectady@N +scherzi@? +scherzo@N +scherzos@p +schiller@N +schism@N +schismatic@AN +schismatics@p +schisms@p +schist@N +schizo@AN +schizoid@AN +schizoids@p +schizophrenia@N +schizophrenic@A +schizophrenics@p +schizos@p +schlemiel@N +schlemiels@p +schlep@V +schlepp@tN +schlepped@tA +schlepping@tA +schlepps@tp +schleps@V +schliemann@N +schlock@NA +schlocky@? +schmaltz@N +schmaltzier@? +schmaltziest@? +schmaltzy@A +schmalz@? +schmalzy@A +schmidt@N +schmooze@iN +schmoozed@i +schmoozer@? +schmoozers@p +schmoozes@ip +schmoozing@i +schmuck@N +schmucks@p +schnabel@N +schnapps@N +schnauzer@N +schnauzers@p +schnitzel@N +schnitzels@p +schnook@N +schnooks@p +scholar@N +scholarly@? +scholars@p +scholarship@N +scholarships@p +scholastic@AN +scholastically@v +scholasticism@N +school@Nti +schoolbag@N +schoolbags@p +schoolbook@N +schoolbooks@p +schoolboy@N +schoolboys@p +schoolchild@N +schoolchildren@p +schooldays@p +schooled@Ati +schoolgirl@N +schoolgirls@p +schoolhouse@N +schoolhouses@p +schooling@N +schoolkid@? +schoolkids@p +schoolmarm@N +schoolmarmish@? +schoolmarms@p +schoolmaster@Ni +schoolmasters@pi +schoolmate@N +schoolmates@p +schoolmistress@N +schoolmistresses@? +schoolroom@N +schoolrooms@p +schools@p +schoolteacher@N +schoolteachers@p +schoolwork@N +schoolyard@N +schoolyards@p +schooner@N +schooners@p +schopenhauer@N +schrod@? +schrods@p +schtick@? +schticks@p +schubert@N +schumann@N +schuss@Ni +schussed@Ai +schusses@? +schussing@Ai +schwa@N +schwas@p +schweitzer@N +sciatic@A +sciatica@N +science@N +sciences@p +scientific@A +scientifically@? +scientist@N +scientists@p +scimitar@N +scimitars@p +scintilla@N +scintillas@p +scintillate@V +scintillated@V +scintillates@V +scintillating@V +scintillation@N +scion@N +scions@p +scipio@N +scissor@V +scissors@p +sclerosis@N +sclerotic@AN +scoff@itNV +scoffed@itAV +scoffing@itAV +scofflaw@N +scofflaws@p +scoffs@itpV +scold@ViN +scolded@ViA +scolding@ViA +scoldings@p +scolds@Vip +scoliosis@N +scollop@NV +scolloped@AV +scolloping@AV +scollops@pV +sconce@Nt +sconces@pt +scone@N +scones@p +scoop@NV +scooped@AV +scooping@AV +scoops@pV +scoot@VN +scooted@VA +scooter@N +scooters@p +scooting@VA +scoots@Vp +scope@N +scoped@A +scopes@N +scoping@A +scorch@VitN +scorched@VitA +scorcher@N +scorchers@p +scorches@? +scorching@VitA +score@NtVi +scoreboard@N +scoreboards@p +scorecard@N +scorecards@p +scored@NtV +scorekeeper@N +scorekeepers@p +scoreless@A +scoreline@? +scorelines@? +scorer@? +scorers@p +scores@Nt +scoring@Vt +scorn@NVt +scorned@AVt +scornful@A +scornfully@v +scorning@AVt +scorns@pVt +scorpio@NA +scorpion@N +scorpions@p +scorpios@p +scorpius@N +scot@N +scotch@AN +scotched@A +scotches@? +scotching@A +scotchman@N +scotchmen@? +scotchs@p +scotland@N +scots@AN +scotsman@N +scotsmen@p +scotswoman@? +scotswomen@? +scott@N +scottie@N +scottish@AN +scottsdale@N +scotty@N +scoundrel@N +scoundrels@p +scour@VtiN +scoured@VtiA +scourer@N +scourers@p +scourge@Nt +scourged@V +scourges@pt +scourging@V +scouring@N +scours@Vtip +scout@N +scouted@A +scouter@N +scouters@p +scouting@N +scoutmaster@N +scoutmasters@p +scouts@p +scow@N +scowl@iN +scowled@iA +scowling@iA +scowls@ip +scows@p +scrabble@iN +scrabbled@V +scrabbles@ip +scrabbling@V +scraggier@? +scraggiest@? +scragglier@? +scraggliest@? +scraggly@A +scraggy@A +scram@V +scramble@itN +scrambled@V +scrambler@N +scramblers@p +scrambles@itp +scrambling@V +scrammed@i +scramming@i +scrams@V +scranton@N +scrap@NVt +scrapbook@N +scrapbooks@p +scrape@VtiN +scraped@V +scraper@N +scrapers@p +scrapes@Vtip +scrapheap@N +scrapheaps@p +scrapie@N +scraping@V +scrapings@V +scrapped@Vi +scrappier@A +scrappiest@A +scrapping@Vi +scrappy@A +scraps@pVt +scrapyard@? +scrapyards@p +scratch@N +scratchcard@? +scratchcards@p +scratched@A +scratches@N +scratchier@A +scratchiest@A +scratchiness@? +scratching@A +scratchpad@? +scratchpads@p +scratchy@A +scrawl@VN +scrawled@VA +scrawling@VA +scrawls@Vp +scrawnier@A +scrawniest@A +scrawny@A +scream@VitN +screamed@VitA +screaming@VitA +screamingly@v +screams@Vitp +scree@N +screech@NV +screeched@AV +screeches@? +screechier@? +screechiest@? +screeching@AN +screechy@? +screed@N +screeds@p +screen@Nt +screened@At +screening@N +screenings@p +screenplay@N +screenplays@p +screens@N +screenwriter@? +screenwriters@p +screenwriting@? +screes@p +screw@Nt +screwball@NA +screwballs@p +screwdriver@N +screwdrivers@p +screwed@A +screwier@? +screwiest@? +screwing@At +screws@pt +screwy@A +scriabin@NVA +scribble@t +scribbled@V +scribbler@N +scribblers@p +scribbles@t +scribbling@V +scribe@N +scribes@p +scrimmage@Nit +scrimmaged@Ait +scrimmages@pit +scrimmaging@Ait +scrimp@VtA +scrimped@VtA +scrimping@VtA +scrimps@Vtp +scrimshaw@NV +scrimshawed@AV +scrimshawing@AV +scrimshaws@pV +scrip@N +scrips@p +script@N +scripted@A +scripting@A +scripts@p +scriptural@A +scripture@N +scriptures@p +scriptwriter@N +scriptwriters@p +scrod@N +scrods@p +scrofula@N +scrog@N +scrogged@? +scrogging@? +scrogs@p +scroll@Nt +scrolled@At +scrolling@At +scrolls@pt +scrooge@N +scrooges@p +scrota@? +scrotum@N +scrotums@p +scrounge@V +scrounged@V +scrounger@? +scroungers@p +scrounges@V +scrounging@V +scrub@VitNA +scrubbed@AV +scrubber@N +scrubbers@p +scrubbier@A +scrubbiest@A +scrubbing@V +scrubby@A +scrubs@Vitp +scruff@N +scruffier@A +scruffiest@A +scruffily@? +scruffiness@? +scruffs@p +scruffy@A +scrum@NV +scrumhalf@? +scrumhalves@? +scrummage@NV +scrummages@pV +scrummed@? +scrumming@? +scrump@V +scrumped@V +scrumping@V +scrumps@V +scrumptious@A +scrumpy@N +scrums@pV +scrunch@VN +scrunched@VA +scrunches@? +scrunchie@? +scrunchies@? +scrunching@VA +scrunchy@? +scruple@NV +scrupled@V +scruples@pV +scrupling@V +scrupulous@A +scrupulously@v +scrutineer@N +scrutineers@p +scrutinise@ti +scrutinised@ti +scrutinises@ti +scrutinising@ti +scrutinize@t +scrutinized@t +scrutinizes@t +scrutinizing@t +scrutiny@N +scuba@N +scubaed@A +scubaing@A +scubas@p +scud@VN +scudded@V +scudding@V +scuds@Vp +scuff@VtN +scuffed@VtA +scuffing@VtA +scuffle@iN +scuffled@iA +scuffles@ip +scuffling@iA +scuffs@Vtp +scull@NV +sculled@AV +sculleries@p +scullery@N +sculling@AV +scullion@N +scullions@p +sculls@pV +sculpt@Vi +sculpted@Vi +sculpting@Vi +sculptor@N +sculptors@p +sculpts@Vi +sculptural@? +sculpture@NV +sculptured@V +sculptures@pV +sculpturing@V +scum@NV +scumbag@? +scumbags@p +scummed@V +scummier@A +scummiest@A +scumming@V +scummy@At +scums@pV +scupper@Nt +scuppered@At +scuppering@At +scuppers@pt +scurf@N +scurfier@? +scurfiest@? +scurfy@? +scurried@V +scurries@V +scurrilous@A +scurrilously@v +scurry@ViNA +scurrying@V +scurvier@? +scurviest@? +scurvy@? +scuttle@Nit +scuttlebutt@N +scuttled@V +scuttles@pit +scuttling@V +scuzzier@? +scuzziest@? +scuzzy@? +scylla@N +scythe@Nt +scythed@V +scythes@pt +scythia@N +scythian@AN +scything@V +sd@N +se@N +sea@N +seabed@? +seabeds@p +seabird@? +seabirds@p +seaboard@N +seaboards@p +seaborg@N +seaborne@A +seacoast@N +seacoasts@p +seafarer@N +seafarers@p +seafaring@AN +seafloor@? +seafood@N +seafront@N +seafronts@p +seagoing@A +seagull@? +seagulls@p +seahorse@? +seahorses@? +seal@Nti +sealant@N +sealants@p +sealed@VA +sealer@N +sealers@p +sealing@Ati +seals@pV +sealskin@N +seam@Nt +seaman@N +seamanship@N +seamed@At +seamen@? +seamier@A +seamiest@A +seaming@At +seamless@A +seamlessly@v +seams@pt +seamstress@N +seamstresses@? +seamy@A +seaplane@N +seaplanes@p +seaport@N +seaports@p +sear@tNA +search@VtN +searched@VtA +searcher@N +searchers@p +searches@? +searching@A +searchingly@v +searchlight@N +searchlights@p +seared@tA +searing@tA +searingly@? +sears@N +seas@p +seascape@N +seascapes@p +seashell@N +seashells@p +seashore@N +seashores@p +seasick@AN +seasickness@N +seaside@N +seasides@p +season@N +seasonable@A +seasonal@A +seasonality@? +seasonally@v +seasoned@A +seasoning@N +seasonings@p +seasons@p +seat@Nti +seated@Ati +seating@N +seats@pti +seattle@N +seaward@vA +seawards@v +seaway@N +seaways@p +seaweed@N +seaweeds@p +seaworthier@? +seaworthiest@? +seaworthiness@N +seaworthy@A +sebaceous@A +sebum@N +sec@AN +secateurs@p +secede@i +seceded@i +secedes@i +seceding@i +secession@N +secessionist@NA +secessionists@p +seclude@t +secluded@A +secludes@t +secluding@t +seclusion@N +seclusive@A +seconal@? +second@ANtv +secondaries@? +secondarily@v +secondary@AN +seconded@Atv +seconder@N +seconders@p +secondhand@? +seconding@Atv +secondly@v +secondment@? +secondments@p +seconds@ptv +secrecy@N +secret@AN +secretarial@A +secretariat@N +secretariats@p +secretaries@? +secretary@N +secrete@Vt +secreted@A +secretes@Vt +secreting@A +secretion@N +secretions@p +secretive@A +secretively@v +secretiveness@? +secretly@v +secrets@p +secs@N +sect@N +sectarian@AN +sectarianism@N +sectarians@p +section@Nt +sectional@A +sectionalism@N +sectionals@p +sectioned@At +sectioning@At +sections@pt +sector@N +sectors@p +sects@p +secular@AN +secularisation@N +secularise@t +secularised@t +secularises@t +secularising@t +secularism@N +secularist@N +secularists@p +secularization@N +secularize@t +secularized@t +secularizes@t +secularizing@t +secure@At +secured@At +securely@v +securer@? +secures@pt +securest@? +securing@At +securities@p +security@N +secy@? +sedan@N +sedans@p +sedate@At +sedated@V +sedately@v +sedater@? +sedates@pt +sedatest@? +sedating@V +sedation@N +sedative@AN +sedatives@p +sedentary@A +seder@N +seders@p +sedge@N +sediment@N +sedimentary@A +sedimentation@N +sediments@p +sedition@NA +seditious@A +seduce@t +seduced@t +seducer@N +seducers@p +seduces@t +seducing@t +seduction@N +seductions@p +seductive@A +seductively@v +seductiveness@N +seductress@N +seductresses@? +sedulous@A +see@N +seed@N +seedbed@N +seedbeds@p +seeded@A +seedier@A +seediest@A +seediness@N +seeding@A +seedless@A +seedling@N +seedlings@p +seeds@p +seedy@A +seeing@NC +seeings@pC +seek@V +seeker@N +seekers@p +seeking@V +seeks@V +seem@N +seemed@A +seeming@AN +seemingly@? +seemlier@A +seemliest@A +seemliness@N +seemly@Av +seems@p +seen@N +seep@iN +seepage@N +seeped@iA +seeping@iA +seeps@ip +seer@N +seers@p +seersucker@N +sees@p +seesaw@Ni +seesawed@Ai +seesawing@Ai +seesaws@pi +seethe@itN +seethed@itA +seethes@itp +seething@itA +segfault@? +segfaults@p +segment@NV +segmentation@N +segmented@AV +segmenting@AV +segments@pV +segregate@Vt +segregated@V +segregates@Vt +segregating@V +segregation@N +segregationist@N +segregationists@p +segue@V +segued@V +segueing@V +segues@V +seguing@V +seine@N +seismic@A +seismically@? +seismograph@NA +seismographic@A +seismographs@p +seismological@A +seismologist@N +seismologists@p +seismology@N +seize@Vi +seized@V +seizes@Vi +seizing@N +seizure@N +seizures@p +seldom@v +select@VA +selected@VA +selecting@VA +selection@N +selections@p +selective@A +selectively@v +selectivity@N +selectman@N +selectmen@p +selector@N +selectors@p +selects@Vp +selenium@N +seleucid@NA +self@NrA +selfish@A +selfishly@v +selfishness@A +selfless@A +selflessly@v +selflessness@N +selfsame@A +seljuk@NA +sell@N +seller@N +sellers@N +selling@V +sellotape@Nt +sellotaped@At +sellotapes@pt +sellotaping@At +sellout@N +sellouts@p +sells@N +seltzer@N +seltzers@p +selvage@N +selvages@p +selvedge@? +selvedges@? +selves@N +semantic@A +semantically@v +semantics@N +semaphore@NV +semaphored@V +semaphores@pV +semaphoring@V +semarang@N +semblance@N +semblances@p +semen@N +semester@N +semesters@p +semi@N +semiannual@A +semiautomatic@AN +semiautomatics@p +semibreve@N +semibreves@p +semicircle@N +semicircles@p +semicircular@A +semicolon@N +semicolons@p +semiconducting@? +semiconductor@N +semiconductors@p +semiconscious@A +semifinal@N +semifinalist@N +semifinalists@p +semifinals@p +semimonthlies@? +semimonthly@ANv +seminal@A +seminar@N +seminarian@N +seminarians@p +seminaries@p +seminars@p +seminary@NA +seminole@N +seminoles@p +semiotic@A +semiotics@N +semipermeable@A +semiprecious@A +semiprivate@A +semiprofessional@AN +semiprofessionals@p +semiquaver@N +semiquavers@p +semiramis@N +semis@N +semiskilled@A +semite@N +semites@p +semitic@NA +semitics@N +semitone@N +semitones@p +semitrailer@N +semitrailers@p +semitropical@A +semivowel@N +semivowels@p +semiweeklies@? +semiweekly@ANv +semolina@N +semtex@? +sen@N +senate@N +senates@p +senator@N +senatorial@A +senators@p +send@VtN +sendai@N +sender@N +senders@p +sending@Vi +sends@Vtp +seneca@N +senecas@p +senegal@N +senegalese@p +senescence@N +senescent@A +senghor@N +senile@A +senility@N +senior@A +seniority@N +seniors@p +senna@N +sennacherib@N +sensation@N +sensational@A +sensationalise@t +sensationalised@t +sensationalises@t +sensationalising@t +sensationalism@N +sensationalist@? +sensationalists@p +sensationalize@? +sensationalized@? +sensationalizes@? +sensationalizing@? +sensationally@v +sensations@p +sense@Nt +sensed@V +senseless@A +senselessly@v +senselessness@N +senses@pt +sensibilities@p +sensibility@N +sensible@AN +sensibly@v +sensing@V +sensitisation@N +sensitise@? +sensitised@? +sensitises@? +sensitising@? +sensitive@A +sensitively@v +sensitiveness@N +sensitives@p +sensitivities@? +sensitivity@N +sensitization@N +sensitize@Vt +sensitized@V +sensitizes@Vt +sensitizing@V +sensor@N +sensors@p +sensory@A +sensual@A +sensuality@N +sensually@v +sensuous@A +sensuously@? +sensuousness@? +sent@V +sentence@Nt +sentenced@V +sentences@pt +sentencing@V +sententious@A +sententiously@v +sentience@N +sentient@AN +sentiment@N +sentimental@A +sentimentalise@? +sentimentalised@? +sentimentalises@? +sentimentalising@? +sentimentalism@N +sentimentalist@N +sentimentalists@p +sentimentality@N +sentimentalize@V +sentimentalized@V +sentimentalizes@V +sentimentalizing@V +sentimentally@? +sentiments@p +sentinel@Nt +sentinels@pt +sentries@p +sentry@N +seoul@N +sepal@N +sepals@p +separability@N +separable@A +separate@VtiA +separated@V +separately@v +separates@N +separating@V +separation@N +separations@p +separatism@N +separatist@N +separatists@p +separator@N +separators@p +sephardi@N +sepia@NA +sepsis@N +sept@N +septa@N +september@N +septembers@p +septet@N +septets@p +septette@? +septettes@? +septic@AN +septicaemia@N +septicemia@N +septuagenarian@NA +septuagenarians@p +septuagint@N +septuagints@p +septum@N +septums@p +sepulcher@Nt +sepulchered@At +sepulchering@At +sepulchers@pt +sepulchral@A +sepulchre@Nt +sepulchred@t +sepulchres@pt +sepulchring@t +sequel@N +sequels@p +sequence@N +sequenced@A +sequencer@N +sequencers@p +sequences@p +sequencing@A +sequential@A +sequentially@v +sequester@t +sequestered@A +sequestering@t +sequesters@t +sequestrate@t +sequestrated@t +sequestrates@t +sequestrating@t +sequestration@N +sequestrations@p +sequin@N +sequined@A +sequinned@? +sequins@p +sequoia@N +sequoias@p +sequoya@N +sera@N +seraglio@N +seraglios@p +serape@? +serapes@? +seraph@N +seraphic@A +seraphim@N +seraphs@p +serb@NA +serbia@N +serbian@AN +serbians@p +serbs@p +sere@AVN +serenade@Nti +serenaded@V +serenades@pti +serenading@V +serendipitous@p +serendipity@N +serene@A +serenely@v +sereneness@N +serener@? +serenest@? +serenity@N +serer@? +serest@? +serf@N +serfdom@N +serfs@p +serge@N +sergeant@N +sergeants@p +serial@NA +serialisation@N +serialisations@p +serialise@t +serialised@t +serialises@t +serialising@t +serialization@N +serializations@p +serialize@t +serialized@t +serializes@t +serializing@t +serially@v +serials@p +series@N +serif@N +serifs@p +serious@A +seriously@v +seriousness@N +sermon@N +sermonise@ti +sermonised@ti +sermonises@ti +sermonising@ti +sermonize@V +sermonized@V +sermonizes@V +sermonizing@V +sermons@p +serotonin@N +serous@A +serpens@N +serpent@N +serpentine@AN +serpents@p +serrated@V +serried@A +serum@N +serums@p +servant@N +servants@p +serve@VtNi +served@V +server@N +serveries@? +servers@p +servery@? +serves@Vtpi +service@N +serviceable@A +serviced@V +serviceman@N +servicemen@p +services@N +servicewoman@? +servicewomen@? +servicing@V +serviette@N +serviettes@p +servile@A +servility@N +serving@N +servings@p +servitude@N +servo@AN +servomechanism@N +servomechanisms@p +servos@p +sesame@N +sesames@p +session@N +sessions@N +set@N +setback@? +setbacks@p +seth@N +seton@N +sets@p +setsquare@? +setsquares@? +sett@N +settable@? +settee@N +settees@p +setter@N +setters@p +setting@N +settings@p +settle@N +settled@V +settlement@N +settlements@p +settler@N +settlers@p +settles@p +settling@V +setts@p +setup@N +setups@p +seurat@N +seuss@N +sevastopol@N +seven@ND +sevens@N +seventeen@ND +seventeens@pD +seventeenth@AN +seventeenths@p +seventh@ANv +sevenths@pv +seventies@? +seventieth@AN +seventieths@p +seventy@ND +sever@Vt +several@DA +severally@v +severance@N +severances@p +severe@A +severed@Vt +severely@v +severer@A +severest@A +severing@Vt +severity@N +severn@N +severs@Vt +severus@N +seville@N +sew@Vt +sewage@N +seward@N +sewed@V +sewer@Nt +sewerage@N +sewers@pt +sewing@N +sewn@V +sews@Vt +sex@Nt +sexagenarian@NA +sexagenarians@p +sexed@A +sexes@? +sexier@A +sexiest@A +sexily@v +sexiness@N +sexing@At +sexism@NA +sexist@NA +sexists@p +sexless@A +sexologist@N +sexologists@p +sexology@N +sexpot@N +sexpots@p +sextans@N +sextant@N +sextants@p +sextet@N +sextets@p +sextette@? +sextettes@? +sexton@N +sextons@p +sextuplet@N +sextuplets@p +sexual@A +sexuality@N +sexually@? +sexy@A +seychelles@p +seyfert@? +sf@N +sgt@? +sh@! +shabbier@A +shabbiest@A +shabbily@v +shabbiness@N +shabby@A +shack@NV +shacked@AV +shacking@AV +shackle@Nt +shackled@V +shackles@pt +shackleton@N +shackling@V +shacks@pV +shad@N +shade@NV +shaded@V +shades@p +shadier@? +shadiest@? +shadiness@N +shading@N +shadings@p +shadow@Nt +shadowbox@? +shadowboxed@? +shadowboxes@? +shadowboxing@? +shadowed@A +shadowier@? +shadowiest@? +shadowing@At +shadows@pt +shadowy@A +shads@p +shady@A +shaft@NV +shafted@AV +shafting@N +shafts@pV +shag@NVt +shagged@Vt +shaggier@A +shaggiest@A +shagginess@N +shagging@Vt +shaggy@A +shags@pVt +shah@N +shahs@p +shaikh@N +shaikhs@p +shake@VtN +shakedown@i +shakedowns@i +shaken@V +shakeout@N +shakeouts@p +shaker@N +shakers@p +shakes@Vtp +shakespeare@N +shakespearean@AN +shakeup@? +shakeups@p +shakier@A +shakiest@A +shakily@? +shakiness@? +shaking@NV +shaky@A +shale@N +shall@V +shallot@N +shallots@p +shallow@ANV +shallower@? +shallowest@? +shallowly@v +shallowness@N +shallows@pV +shalom@! +shalt@V +sham@NAV +shaman@N +shamanism@N +shamanistic@A +shamans@p +shamble@iN +shambled@V +shambles@N +shambling@V +shambolic@? +shame@Nt +shamed@V +shamefaced@A +shamefacedly@v +shameful@A +shamefully@? +shamefulness@? +shameless@A +shamelessly@v +shamelessness@N +shames@pt +shaming@V +shammed@? +shammies@? +shamming@? +shammy@N +shampoo@NV +shampooed@V +shampooing@V +shampoos@pV +shamrock@N +shamrocks@p +shams@pV +shandies@p +shandy@N +shanghai@N +shanghaied@t +shanghaiing@t +shanghais@p +shank@N +shanks@N +shannon@N +shanties@? +shantung@N +shanty@N +shantytown@N +shantytowns@p +shape@N +shaped@AV +shapeless@A +shapelessly@v +shapelessness@N +shapelier@A +shapeliest@A +shapeliness@? +shapely@A +shapes@p +shaping@V +shard@N +shards@p +share@Nt +sharecropper@N +sharecroppers@p +shared@At +shareholder@N +shareholders@p +shareholding@? +shareholdings@p +shares@pt +shareware@? +sharewares@? +shari@N +sharia@N +shariah@? +sharing@At +shark@NV +sharked@AV +sharking@AV +sharks@pV +sharkskin@N +sharon@N +sharp@AvNt +sharped@Avt +sharpen@V +sharpened@V +sharpener@? +sharpeners@p +sharpening@V +sharpens@V +sharper@N +sharpers@p +sharpest@? +sharping@Avt +sharpish@? +sharply@v +sharpness@N +sharps@pvt +sharpshooter@N +sharpshooters@p +shasta@N +shat@? +shatter@VtN +shattered@VtA +shattering@VtA +shatterproof@A +shatters@Vtp +shave@VN +shaved@V +shaven@A +shaver@N +shavers@p +shaves@Vp +shavian@AN +shaving@N +shavings@p +shavuot@N +shaw@N +shawl@N +shawls@p +shawnee@N +shaykh@? +shaykhs@p +she@rN +sheaf@Nt +shear@N +sheared@AV +shearer@N +shearers@p +shearing@A +shears@p +sheath@Nt +sheathe@t +sheathed@t +sheathes@t +sheathing@N +sheathings@p +sheaths@pt +sheave@tN +sheaves@N +sheba@N +shebang@N +shebangs@p +shebeen@N +shebeens@p +shed@N +shedding@V +sheds@p +sheen@N +sheep@N +sheepdog@N +sheepdogs@p +sheepfold@N +sheepfolds@p +sheepish@A +sheepishly@v +sheepishness@N +sheepskin@N +sheepskins@p +sheer@AvNVi +sheered@AvVi +sheerer@? +sheerest@? +sheering@AvVi +sheers@N +sheet@Nt +sheeting@N +sheetrock@? +sheets@N +sheffield@N +sheik@N +sheikdom@N +sheikdoms@p +sheikh@? +sheikhdom@? +sheikhdoms@p +sheikhs@p +sheiks@p +sheila@N +sheilas@p +shekel@N +shekels@p +shelf@N +shell@N +shellac@? +shellacked@? +shellacking@N +shellacs@p +shelled@A +sheller@? +shelley@N +shellfire@N +shellfish@N +shellfishes@? +shelling@A +shells@p +shelter@Nti +sheltered@Ati +sheltering@Ati +shelters@pti +shelve@ti +shelved@it +shelves@N +shelving@N +shenandoah@N +shenanigan@N +shenanigans@p +shenyang@N +sheol@N +shepard@N +shepherd@N +shepherded@A +shepherdess@? +shepherdesses@? +shepherding@A +shepherds@p +sheraton@NA +sherbert@? +sherberts@p +sherbet@N +sherbets@p +sherd@N +sherds@p +sheridan@N +sheriff@N +sheriffs@p +sherlock@N +sherman@N +sherpa@N +sherries@p +sherry@N +sherwood@N +shes@rp +shetland@p +shetlands@p +shevat@N +shh@! +shiatsu@? +shibboleth@N +shibboleths@p +shied@V +shield@Nt +shielded@At +shielding@At +shields@N +shies@pV +shift@VtiN +shifted@VtiA +shiftier@A +shiftiest@A +shiftily@v +shiftiness@N +shifting@VtiA +shiftless@A +shiftlessness@? +shifts@Vtip +shifty@A +shijiazhuang@? +shikoku@N +shill@AN +shillalah@? +shillalahs@p +shilled@A +shillelagh@N +shillelaghs@p +shilling@N +shillings@p +shillong@N +shills@p +shiloh@N +shim@NV +shimmed@? +shimmer@iN +shimmered@iA +shimmering@iA +shimmers@ip +shimmery@A +shimmied@p +shimmies@p +shimming@? +shimmy@NVi +shimmying@p +shims@pV +shin@N +shinbone@N +shinbones@p +shindig@N +shindigs@p +shine@VitN +shined@A +shiner@N +shiners@p +shines@Vitp +shingle@Nt +shingled@Vt +shingles@N +shingling@Vt +shinier@A +shiniest@A +shininess@N +shining@A +shinned@V +shinnied@pi +shinnies@p +shinning@V +shinny@Ni +shinnying@pi +shins@p +shinto@NA +shintoism@? +shintoisms@p +shintos@p +shiny@A +ship@NV +shipboard@N +shipboards@p +shipbuilder@N +shipbuilders@p +shipbuilding@? +shipload@N +shiploads@p +shipmate@N +shipmates@p +shipment@N +shipments@p +shipowner@N +shipowners@p +shipped@V +shipper@N +shippers@p +shipping@N +ships@pV +shipshape@Av +shipwreck@Nt +shipwrecked@At +shipwrecking@At +shipwrecks@pt +shipwright@N +shipwrights@p +shipyard@N +shipyards@p +shiraz@N +shire@Nt +shires@pt +shirk@N +shirked@A +shirker@N +shirkers@p +shirking@A +shirks@p +shirr@VtN +shirred@VtA +shirring@VtA +shirrings@p +shirrs@Vtp +shirt@N +shirted@A +shirting@N +shirts@p +shirtsleeve@N +shirtsleeves@p +shirttail@? +shirttails@p +shirtwaist@N +shirtwaists@p +shirty@A +shit@VN! +shitfaced@? +shithead@N +shitheads@p +shitload@? +shits@Vp! +shitted@? +shittier@A +shittiest@A +shitting@NV +shitty@A +shiva@N +shiver@iNV +shivered@iAV +shivering@iAV +shivers@N +shivery@A +shlemiel@N +shlemiels@p +shlep@? +shlepp@? +shlepped@? +shlepping@? +shlepps@p +shleps@p +shlock@? +shlocky@? +shoal@NViA +shoaled@AVi +shoaling@AVi +shoals@pVi +shock@VNtA +shocked@VAt +shocker@N +shockers@p +shocking@A +shockingly@v +shockproof@A +shocks@Vpt +shod@V +shodden@V +shoddier@? +shoddiest@? +shoddily@v +shoddiness@N +shoddy@AN +shoe@NVt +shoed@V +shoehorn@N +shoehorned@A +shoehorning@A +shoehorns@p +shoeing@V +shoelace@N +shoelaces@p +shoemaker@N +shoemakers@p +shoes@p +shoeshine@N +shoeshines@p +shoestring@N +shoestrings@p +shoetree@N +shoetrees@p +shogun@N +shoguns@p +shone@V +shoo@!V +shooed@V +shooing@V +shook@NV +shoon@N +shoos@!V +shoot@VtN!i +shooter@N +shooters@p +shooting@V +shootings@V +shootout@? +shootouts@p +shoots@Vtp!i +shop@NV +shopaholic@? +shopaholics@p +shopfitter@? +shopfitters@p +shopfitting@? +shopfront@? +shopfronts@p +shopkeeper@N +shopkeepers@p +shoplift@? +shoplifted@? +shoplifter@N +shoplifters@p +shoplifting@N +shoplifts@p +shopped@NV +shopper@N +shoppers@p +shopping@N +shops@pV +shoptalk@N +shopworn@A +shore@N +shored@t +shoreline@N +shorelines@p +shores@p +shoring@Nt +shorn@V +short@AvNV +shortage@N +shortages@p +shortbread@N +shortcake@N +shortcakes@p +shortchange@? +shortchanged@? +shortchanges@? +shortchanging@? +shortcoming@N +shortcomings@p +shortcrust@? +shortcut@NA +shortcuts@p +shorted@AvV +shorten@Vt +shortened@Vt +shortening@N +shortenings@p +shortens@Vt +shorter@N +shortest@? +shortfall@N +shortfalls@p +shorthand@N +shorthanded@A +shorthorn@N +shorthorns@p +shortie@N +shorties@p +shorting@AvV +shortish@A +shortlist@? +shortlisted@? +shortlisting@? +shortlists@p +shortly@v +shortness@N +shorts@p +shortsighted@? +shortsightedly@v +shortsightedness@? +shortstop@N +shortstops@p +shortwave@NAit +shortwaves@pit +shorty@NA +shoshone@N +shot@NVA +shotgun@NAV +shotgunned@V +shotgunning@V +shotguns@pV +shots@p +should@V +shoulder@Nt +shouldered@At +shouldering@At +shoulders@pt +shout@NVit +shouted@AVit +shouting@AVit +shouts@pVit +shove@VtN +shoved@V +shovel@NV +shoveled@V +shovelful@N +shovelfuls@p +shoveling@V +shovelled@V +shovelling@V +shovels@pV +shoves@Vtp +shoving@V +show@VtiN +showbiz@? +showboat@N +showboated@A +showboating@A +showboats@p +showcase@Nt +showcased@At +showcases@pt +showcasing@At +showdown@N +showdowns@p +showed@V +shower@Nti +showered@Ati +showering@Ati +showerproof@A +showers@N +showery@A +showgirl@N +showgirls@p +showground@? +showgrounds@p +showier@A +showiest@A +showily@v +showiness@N +showing@N +showings@p +showjumping@N +showman@N +showmanship@N +showmen@? +shown@V +showoff@? +showoffs@p +showpiece@N +showpieces@p +showplace@N +showplaces@p +showroom@N +showrooms@p +shows@Vtip +showstopper@? +showstoppers@p +showstopping@? +showtime@? +showy@A +shrank@V +shrapnel@N +shred@NV +shredded@V +shredder@N +shredders@p +shredding@V +shreds@pV +shreveport@N +shrew@N +shrewd@A +shrewder@? +shrewdest@? +shrewdly@v +shrewdness@N +shrewish@A +shrews@p +shriek@NV +shrieked@AV +shrieking@AV +shrieks@pV +shrift@N +shrike@N +shrikes@p +shrill@AV +shrilled@AV +shriller@? +shrillest@? +shrilling@AV +shrillness@N +shrills@pV +shrilly@v +shrimp@Ni +shrimped@Ai +shrimper@N +shrimpers@p +shrimping@Ai +shrimps@pi +shrine@NV +shriner@N +shrines@pV +shrink@VN +shrinkable@A +shrinkage@N +shrinking@VA +shrinks@Vp +shrive@V +shrived@V +shrivel@V +shriveled@V +shriveling@V +shrivelled@? +shrivelling@? +shrivels@V +shriven@? +shrives@V +shriving@V +shropshire@N +shroud@Nt +shrouded@At +shrouding@At +shrouds@pt +shrove@V +shrub@N +shrubberies@p +shrubbery@N +shrubbier@A +shrubbiest@A +shrubby@A +shrubs@p +shrug@VN +shrugged@V +shrugging@V +shrugs@Vp +shrunk@V +shrunken@VA +shtick@? +shticks@p +shtik@? +shtiks@p +shuck@Nt +shucked@At +shucking@At +shucks@N! +shuckses@? +shudder@iN +shuddered@iA +shuddering@A +shudders@ip +shuffle@VtiN +shuffleboard@N +shuffleboards@p +shuffled@VtiA +shuffler@? +shufflers@p +shuffles@Vtip +shuffling@VtiA +shun@V +shunned@t +shunning@t +shuns@V +shunt@VtN +shunted@VtA +shunting@VtA +shunts@Vtp +shush@!V +shushed@!V +shushes@? +shushing@!V +shut@VtAN +shutdown@NV +shutdowns@pV +shuteye@N +shutout@NV +shutouts@pV +shuts@Vtp +shutter@Nt +shutterbug@? +shutterbugs@p +shuttered@At +shuttering@N +shutters@pt +shutting@? +shuttle@NV +shuttlecock@NV +shuttlecocked@AV +shuttlecocking@AV +shuttlecocks@pV +shuttled@V +shuttles@pV +shuttling@V +shy@AVNi +shyer@AN +shyest@A +shying@V +shylock@N +shyly@v +shyness@N +shyster@N +shysters@p +si@N +siam@N +siamese@NA +sian@N +sibelius@N +siberia@NA +siberian@AN +sibilant@AN +sibilants@p +sibling@N +siblings@p +sibyl@N +sibyls@N +sic@vVA +sicced@? +siccing@? +sicilian@AN +sicilians@p +sicily@N +sick@ANV +sickbay@N +sickbays@p +sickbed@? +sickbeds@p +sicked@t +sicken@Vi +sickened@Vi +sickening@A +sickeningly@v +sickens@Vi +sicker@Av +sickest@? +sickie@N +sickies@p +sicking@t +sickle@N +sickles@p +sicklier@A +sickliest@A +sickly@Av +sickness@N +sicknesses@? +sicko@? +sickos@p +sickout@? +sickouts@p +sickroom@N +sickrooms@p +sicks@pV +sics@vVp +siddhartha@N +side@NAit +sidearm@? +sidearms@p +sidebar@N +sidebars@p +sideboard@N +sideboards@p +sideburns@p +sidecar@N +sidecars@p +sided@V +sidekick@N +sidekicks@p +sidelight@N +sidelights@p +sideline@Nt +sidelined@At +sidelines@p +sidelining@At +sidelong@Av +sidereal@A +sides@pit +sidesaddle@Nv +sidesaddles@pv +sideshow@N +sideshows@p +sidesplitting@A +sidestep@VtN +sidestepped@? +sidestepping@? +sidesteps@Vtp +sidestroke@N +sidestroked@A +sidestrokes@p +sidestroking@A +sideswipe@NV +sideswiped@V +sideswipes@pV +sideswiping@V +sidetrack@VN +sidetracked@VA +sidetracking@VA +sidetracks@Vp +sidewalk@N +sidewalks@p +sidewall@N +sidewalls@p +sideways@vA +sidewise@? +siding@N +sidings@p +sidle@iN +sidled@V +sidles@ip +sidling@V +sidney@N +sids@p +siege@Nt +sieges@pt +siegfried@N +siemens@N +sienna@N +sierra@N +sierras@p +siesta@N +siestas@p +sieve@NVt +sieved@V +sieves@pVt +sieving@V +sift@ti +sifted@ti +sifter@N +sifters@p +sifting@ti +sifts@ti +sigh@itN +sighed@itA +sighing@itA +sighs@itp +sight@Nt +sighted@A +sighting@At +sightings@p +sightless@A +sightread@? +sights@pt +sightseeing@V +sightseer@? +sightseers@p +sigismund@N +sigma@N +sigmund@N +sign@NVit +signal@NAV +signaled@AV +signaling@AV +signalise@t +signalised@t +signalises@t +signalising@t +signalize@t +signalized@t +signalizes@t +signalizing@t +signalled@? +signalling@V +signally@v +signalman@N +signalmen@p +signals@pV +signatories@? +signatory@NA +signature@N +signatures@p +signboard@N +signboards@p +signed@AVit +signer@? +signers@p +signet@Nt +signets@pt +significance@N +significant@A +significantly@? +signification@N +significations@p +signified@V +signifies@? +signify@Vti +signifying@V +signing@AVit +signings@p +signpost@Nt +signposted@At +signposting@At +signposts@pt +signs@pVit +sigurd@N +sikh@NA +sikhism@N +sikhs@p +sikkim@N +sikkimese@? +sikorsky@N +silage@N +silence@Nt +silenced@V +silencer@N +silencers@p +silences@pt +silencing@V +silent@AN +silenter@? +silentest@? +silently@v +silents@p +silhouette@Nt +silhouetted@V +silhouettes@pt +silhouetting@V +silica@N +silicate@N +silicates@p +siliceous@A +silicious@A +silicon@N +silicone@N +silicons@p +silicosis@N +silk@Ni +silken@A +silkier@A +silkiest@A +silkiness@N +silks@pi +silkworm@N +silkworms@p +silky@A +sill@N +sillier@? +sillies@? +silliest@? +silliness@N +sills@p +silly@AN +silo@N +silos@p +silt@NV +silted@AV +silting@AV +silts@pV +silurian@AN +silvan@A +silver@N +silvered@A +silverfish@N +silverfishes@? +silvering@A +silvers@N +silversmith@N +silversmiths@p +silverware@N +silvery@A +simian@AN +simians@p +similar@A +similarities@p +similarity@N +similarly@v +simile@N +similes@p +simmental@? +simmer@ViN +simmered@ViA +simmering@ViA +simmers@Vip +simon@N +simpatico@A +simper@itN +simpered@itA +simpering@itA +simperingly@? +simpers@itp +simple@AN +simpleness@? +simpler@? +simplest@? +simpleton@N +simpletons@p +simplex@AN +simplicity@N +simplification@? +simplifications@p +simplified@? +simplifies@? +simplify@V +simplifying@V +simplistic@A +simplistically@v +simply@v +simulacra@? +simulacrum@N +simulacrums@p +simulate@VtA +simulated@A +simulates@Vtp +simulating@V +simulation@N +simulations@p +simulator@N +simulators@p +simulcast@tN +simulcasted@tA +simulcasting@tA +simulcasts@tp +simultaneity@N +simultaneous@A +simultaneously@v +sin@N +sinai@N +sinatra@N +since@PCv +sincere@A +sincerely@v +sincerer@? +sincerest@? +sincerity@N +sinclair@N +sindhi@N +sine@N +sinecure@N +sinecures@p +sines@p +sinew@N +sinews@p +sinewy@A +sinful@A +sinfully@v +sinfulness@N +sing@ViNt +singalong@? +singalongs@p +singapore@N +singe@VtN +singed@V +singeing@V +singer@N +singers@p +singes@Vtp +singing@ViAt +single@ANt +singled@AV +singleness@N +singles@p +singlet@N +singleton@N +singletons@p +singlets@p +singling@AV +singly@v +sings@Vipt +singsong@NA +singsonged@A +singsonging@A +singsongs@p +singular@AN +singularities@? +singularity@N +singularly@v +singulars@p +sinhalese@NA +sinister@A +sink@N +sinkable@? +sinker@N +sinkers@p +sinkhole@N +sinkholes@p +sinking@N +sinks@p +sinned@V +sinner@N +sinners@p +sinning@V +sinology@N +sins@Nt +sinuous@A +sinuously@v +sinus@N +sinuses@p +sinusitis@N +sinusoidal@A +sioux@N +sip@VN +siphon@NV +siphoned@AV +siphoning@AV +siphons@pV +sipped@V +sipping@V +sips@Vp +sir@N +sire@Nt +sired@A +siren@N +sirens@p +sires@pt +siring@A +sirius@N +sirloin@N +sirloins@p +sirocco@N +siroccos@p +sirrah@N +sirs@p +sirup@N +sirups@p +sis@N +sisal@N +sises@? +sissier@? +sissies@p +sissiest@? +sissy@N +sister@N +sisterhood@N +sisterhoods@p +sisterly@A +sisters@p +sistine@A +sisyphean@A +sisyphus@N +sit@Vt +sitar@N +sitars@p +sitcom@N +sitcoms@p +site@Nt +sited@V +sites@pt +siting@V +sits@Vt +sitter@N +sitters@p +sitting@N +sittings@p +situate@tA +situated@V +situates@tp +situating@V +situation@N +situations@p +siva@N +sivan@N +six@N +sixes@? +sixfold@Av +sixpence@N +sixpences@p +sixteen@NA +sixteens@p +sixteenth@AN +sixteenths@p +sixth@ANv +sixths@pv +sixties@p +sixtieth@AN +sixtieths@p +sixty@ND +sizable@A +size@NVt +sizeable@A +sized@A +sizer@N +sizes@pVt +sizing@NV +sizzle@iN +sizzled@V +sizzler@N +sizzlers@p +sizzles@ip +sizzling@V +ska@? +skate@Ni +skateboard@Ni +skateboarded@Ai +skateboarder@? +skateboarders@p +skateboarding@Ai +skateboards@pi +skated@V +skater@N +skaters@p +skates@pi +skating@V +skedaddle@iN +skedaddled@iA +skedaddles@ip +skedaddling@iA +skeet@N +skeeter@? +skeeters@p +skein@N +skeins@p +skeletal@? +skeleton@N +skeletons@p +skeptic@NA +skeptical@A +skeptically@? +skepticism@N +skeptics@p +sketch@NVt +sketchbook@N +sketchbooks@p +sketched@AVt +sketches@? +sketchier@? +sketchiest@? +sketchily@v +sketching@AVt +sketchpad@? +sketchpads@p +sketchy@A +skew@ANVit +skewbald@AN +skewbalds@p +skewed@AVit +skewer@Nt +skewered@At +skewering@At +skewers@pt +skewing@N +skews@pVit +ski@NVA +skibob@N +skibobs@p +skid@VitN +skidded@? +skidding@? +skidpan@N +skidpans@p +skids@Vitp +skied@V +skier@N +skiers@p +skies@? +skiff@N +skiffle@N +skiffs@p +skiing@N +skilful@A +skilfully@v +skill@N +skilled@A +skillet@N +skillets@p +skillful@A +skillfully@v +skills@p +skim@VtN +skimmed@V +skimming@NV +skimp@V +skimped@V +skimpier@? +skimpiest@? +skimpiness@N +skimping@V +skimps@V +skimpy@A +skims@Vtp +skin@NVA +skincare@? +skinflint@N +skinflints@p +skinful@N +skinhead@N +skinheads@p +skinless@A +skinned@A +skinner@N +skinnier@A +skinniest@A +skinniness@N +skinning@V +skinny@A +skins@pV +skint@A +skintight@A +skip@N +skipped@V +skipper@N +skippered@A +skippering@A +skippers@p +skipping@V +skips@p +skirmish@Ni +skirmished@Ai +skirmisher@N +skirmishers@p +skirmishes@? +skirmishing@Ai +skirt@Nt +skirted@At +skirting@N +skirts@pt +skis@pV +skit@N +skits@p +skitter@i +skittered@i +skittering@i +skitters@i +skittish@A +skittishly@? +skittishness@N +skittle@N +skittles@p +skive@tV +skived@t +skiver@N +skivers@p +skives@tV +skiving@t +skivvied@? +skivvies@p +skivvy@NV +skivvying@AV +skopje@N +skua@N +skuas@p +skulduggery@N +skulk@iN +skulked@iA +skulker@N +skulkers@p +skulking@iA +skulks@ip +skull@N +skullcap@N +skullcaps@p +skullduggery@N +skulls@p +skunk@Nt +skunked@At +skunking@At +skunks@pt +sky@N +skycap@N +skycaps@p +skydive@V +skydived@V +skydiver@N +skydivers@p +skydives@V +skydiving@N +skydove@? +skye@N +skyed@A +skying@A +skyjack@t +skyjacked@t +skyjacker@N +skyjackers@p +skyjacking@t +skyjacks@t +skylab@N +skylark@Ni +skylarked@Ai +skylarking@Ai +skylarks@pi +skylight@N +skylights@p +skyline@N +skylines@p +skyrocket@Ni +skyrocketed@Ai +skyrocketing@Ai +skyrockets@pi +skyscraper@N +skyscrapers@p +skyward@Av +skywards@pv +skywriter@N +skywriters@p +skywriting@N +slab@NVt +slabbed@? +slabbing@? +slabs@pVt +slack@AvNV +slacked@AvV +slacken@V +slackened@V +slackening@V +slackens@V +slacker@N +slackers@p +slackest@? +slacking@AvV +slackly@v +slackness@N +slacks@p +slag@NV +slagged@V +slagging@V +slagheap@? +slagheaps@p +slags@pV +slain@V +slake@t +slaked@V +slakes@t +slaking@V +slalom@Ni +slalomed@Ai +slaloming@Ai +slaloms@pi +slam@VtiN +slammed@? +slammer@? +slammers@p +slamming@? +slams@Vtip +slander@NV +slandered@AV +slanderer@? +slanderers@p +slandering@AV +slanderous@p +slanders@pV +slang@NV +slangier@A +slangiest@A +slangy@A +slant@ViNA +slanted@ViA +slanting@ViA +slants@Vip +slantwise@vA +slap@NVv +slapdash@vAN +slaphappier@? +slaphappiest@? +slaphappy@A +slapped@V +slapper@N +slappers@p +slapping@V +slaps@pVv +slapstick@N +slash@tN +slashed@tA +slashes@? +slashing@A +slat@NV +slate@NtA +slated@V +slates@pt +slather@Nt +slathered@At +slathering@At +slathers@pt +slating@N +slats@pV +slatted@V +slattern@N +slatternly@A +slatterns@p +slaughter@N +slaughtered@A +slaughterer@N +slaughterers@p +slaughterhouse@N +slaughterhouses@p +slaughtering@A +slaughters@p +slav@N +slave@Ni +slaved@V +slaver@Ni +slavered@Ai +slavering@Ai +slavers@pi +slavery@N +slaves@pi +slavic@NA +slaving@V +slavish@A +slavishly@v +slavonic@NA +slavs@p +slaw@N +slay@V +slayed@V +slayer@? +slayers@p +slaying@V +slayings@V +slays@V +sleaze@? +sleazebag@? +sleazebags@p +sleazeball@? +sleazeballs@p +sleazes@? +sleazier@A +sleaziest@A +sleazily@v +sleaziness@N +sleazy@A +sled@Nit +sledded@V +sledding@V +sledge@NV +sledged@V +sledgehammer@Nt +sledgehammered@At +sledgehammering@At +sledgehammers@pt +sledges@pV +sledging@V +sleds@pit +sleek@At +sleeked@At +sleeker@N +sleekest@? +sleeking@At +sleekly@? +sleekness@? +sleeks@pt +sleep@N +sleeper@N +sleepers@N +sleepier@A +sleepiest@A +sleepily@v +sleepiness@N +sleeping@NVA +sleepless@A +sleeplessly@v +sleeplessness@N +sleepover@? +sleepovers@p +sleeps@iN +sleepwalk@iA +sleepwalked@iA +sleepwalker@N +sleepwalkers@p +sleepwalking@iA +sleepwalks@ip +sleepwear@N +sleepy@A +sleepyhead@N +sleepyheads@p +sleet@Ni +sleeted@Ai +sleetier@A +sleetiest@A +sleeting@Ai +sleets@pi +sleety@A +sleeve@Nt +sleeveless@A +sleeves@pt +sleigh@Ni +sleighed@Ai +sleighing@Ai +sleighs@pi +slender@A +slenderer@? +slenderest@? +slenderise@? +slenderised@? +slenderises@? +slenderising@? +slenderize@V +slenderized@V +slenderizes@V +slenderizing@V +slenderness@N +slept@V +sleuth@Nt +sleuthing@At +sleuths@pt +slew@VN +slewed@VA +slewing@VA +slews@Vp +slice@NVt +sliced@V +slicer@N +slicers@p +slices@pVt +slicing@V +slick@ANt +slicked@At +slicker@N +slickers@p +slickest@? +slicking@At +slickly@v +slickness@N +slicks@pt +slid@V +slide@ViN +slider@N +sliders@p +slides@Vip +sliding@A +slier@ANv +sliest@A +slight@AtN +slighted@At +slighter@N +slightest@? +slighting@A +slightly@v +slightness@? +slights@pt +slily@v +slim@AV +slime@Nt +slimier@A +slimiest@A +sliminess@? +slimline@A +slimmed@V +slimmer@AN +slimmers@p +slimmest@VA +slimming@A +slimness@? +slims@pV +slimy@A +sling@NV +slingback@N +slingbacks@p +slinging@AV +slings@pV +slingshot@N +slingshots@p +slink@VitN +slinked@VitA +slinkier@A +slinkiest@A +slinking@VitA +slinks@Vitp +slinky@A +slip@VitN +slipcase@N +slipcases@p +slipcover@N +slipcovers@p +slipknot@N +slipknots@p +slippage@N +slippages@p +slipped@? +slipper@Nt +slipperier@A +slipperiest@A +slipperiness@? +slippers@pt +slippery@A +slipping@? +slippy@A +slips@Vitp +slipshod@A +slipstream@NV +slipstreams@pV +slipway@N +slipways@p +slit@VN +slither@ViN +slithered@ViA +slithering@ViA +slithers@Vip +slithery@A +slits@Vp +slitter@? +slitting@V +sliver@NVt +slivered@AVt +slivering@AVt +slivers@pVt +sloan@N +slob@N +slobbed@? +slobber@VitN +slobbered@VitA +slobbering@VitA +slobbers@Vitp +slobbery@A +slobbing@? +slobs@p +sloe@N +sloes@p +slog@ViN +slogan@N +sloganeering@Ai +slogans@p +slogged@V +slogging@V +slogs@Vip +sloop@N +sloops@p +slop@VtiN +slope@VitN +sloped@V +slopes@Vitp +sloping@V +slopped@? +sloppier@A +sloppiest@A +sloppily@v +sloppiness@N +slopping@? +sloppy@A +slops@Vtip +slosh@Nt +sloshed@A +sloshes@? +sloshing@At +slot@NV +sloth@N +slothful@A +slothfulness@N +sloths@p +slots@pV +slotted@V +slotting@V +slouch@itN +slouched@itA +slouches@? +slouchier@A +slouchiest@A +slouching@itA +slouchy@A +slough@N +sloughed@A +sloughing@A +sloughs@p +slovak@AN +slovakia@N +slovakian@AN +slovaks@p +sloven@N +slovenia@N +slovenian@AN +slovenians@p +slovenlier@A +slovenliest@A +slovenliness@N +slovenly@Av +slovens@p +slow@AvV +slowcoach@N +slowcoaches@? +slowdown@N +slowdowns@p +slowed@AvV +slower@? +slowest@? +slowing@AvV +slowly@v +slowness@N +slowpoke@N +slowpokes@p +slows@pvV +slr@? +sludge@N +sludgy@AN +slue@NV +slued@AV +slues@pV +slug@NVit +sluggard@NA +sluggards@p +slugged@V +slugger@N +sluggers@p +slugging@V +sluggish@A +sluggishly@v +sluggishness@N +slugs@pVit +sluice@Nti +sluiced@V +sluices@pti +sluicing@V +sluing@AV +slum@NVi +slumber@itN +slumbered@itA +slumbering@itA +slumberous@A +slumbers@itp +slumbrous@p +slumlord@N +slumlords@p +slummed@V +slummer@N +slumming@V +slummy@AN +slump@iN +slumped@iA +slumping@iA +slumps@ip +slums@pVi +slung@A +slunk@V +slur@VN +slurp@VN +slurped@VA +slurping@VA +slurps@Vp +slurred@V +slurring@V +slurry@N +slurs@Vp +slush@Ni +slushier@A +slushiest@A +slushy@AN +slut@N +sluts@p +sluttish@A +slutty@A +sly@A +slyer@? +slyest@? +slyly@v +slyness@N +sm@N +smack@Nitv +smacked@Aitv +smacker@N +smackers@p +smacking@A +smacks@pitv +small@AvN +smaller@? +smallest@? +smallholder@? +smallholders@p +smallholding@N +smallholdings@p +smallish@A +smallness@? +smallpox@N +smalls@pv +smarmier@? +smarmiest@? +smarmy@A +smart@AVNv +smarted@AVv +smarten@Vt +smartened@Vt +smartening@Vt +smartens@Vt +smarter@? +smartest@? +smarting@AVv +smartly@v +smartness@? +smarts@pVv +smash@VtiNv +smashed@A +smasher@N +smashers@p +smashes@? +smashing@A +smattering@N +smatterings@p +smear@ViN +smeared@ViA +smearing@ViA +smears@Vip +smell@VitN +smelled@V +smellier@A +smelliest@A +smelling@VitA +smells@Vitp +smelly@A +smelt@tNV +smelted@tAV +smelter@N +smelters@p +smelting@tAV +smelts@tpV +smetana@N +smidge@? +smidgen@N +smidgens@p +smidgeon@? +smidgeons@p +smidges@? +smidgin@? +smidgins@p +smile@Nit +smiled@V +smiles@pit +smiley@N +smileys@p +smiling@V +smilingly@? +smirch@tN +smirched@tA +smirches@? +smirching@tA +smirk@Nit +smirked@Ait +smirking@Ait +smirks@pit +smit@N +smite@Vi +smites@Vi +smith@N +smithereens@p +smithies@? +smiths@p +smithson@N +smithy@N +smiting@A +smitten@V +smock@NV +smocked@AV +smocking@N +smocks@pV +smog@N +smoggier@? +smoggiest@? +smoggy@? +smogs@p +smoke@N +smoked@V +smokehouse@N +smokehouses@p +smokeless@A +smoker@N +smokers@p +smokes@p +smokescreen@? +smokescreens@p +smokestack@N +smokestacks@p +smokey@? +smokier@A +smokiest@A +smokiness@? +smoking@NV +smoky@A +smolder@VN +smoldered@VA +smoldering@VA +smolders@Vp +smolensk@N +smollett@N +smooch@iN +smooched@iA +smooches@? +smooching@iA +smoochy@? +smooth@AvVN +smoothed@AvV +smoother@N +smoothes@? +smoothest@? +smoothie@N +smoothies@p +smoothing@AvV +smoothly@v +smoothness@N +smooths@pvV +smoothy@N +smote@V +smother@VtN +smothered@VtA +smothering@VtA +smothers@Vtp +smoulder@iN +smouldered@iA +smouldering@iA +smoulders@ip +smudge@VtN +smudged@V +smudges@Vtp +smudgier@? +smudgiest@? +smudging@V +smudgy@? +smug@A +smugger@A +smuggest@A +smuggle@Vt +smuggled@V +smuggler@N +smugglers@p +smuggles@Vt +smuggling@V +smugly@v +smugness@N +smurf@? +smurfs@p +smut@NV +smuts@N +smuttier@A +smuttiest@A +smuttiness@N +smutty@A +sn@N +snack@Ni +snacked@Ai +snacking@Ai +snacks@pi +snaffle@Nt +snaffled@V +snaffles@pt +snaffling@V +snafu@NV +snafus@pV +snag@NV +snagged@V +snagging@V +snags@pV +snail@N +snailed@A +snailing@N +snails@p +snake@Nit +snakebite@N +snakebites@p +snaked@V +snakes@pit +snakeskin@N +snakier@A +snakiest@A +snaking@V +snaky@A +snap@VitNv! +snapdragon@N +snapdragons@p +snapped@V +snapper@N +snappers@p +snappier@A +snappiest@A +snappily@v +snappiness@N +snapping@V +snappish@? +snappishly@v +snappy@A +snaps@Vitpv! +snapshot@N +snapshots@p +snare@Nt +snared@V +snares@pt +snarf@t +snarfed@t +snarfing@t +snarfs@t +snaring@V +snark@? +snarks@p +snarl@iNVt +snarled@iAVt +snarling@iAVt +snarls@ipVt +snatch@tiN +snatched@tiA +snatcher@N +snatchers@p +snatches@? +snatching@tiA +snazzier@A +snazziest@A +snazzily@? +snazzy@A +sneak@itN +sneaked@itA +sneaker@N +sneakers@p +sneakier@A +sneakiest@A +sneakily@v +sneaking@A +sneaks@itp +sneaky@A +sneer@Ni +sneered@Ai +sneering@Ai +sneeringly@v +sneers@pi +sneeze@iN +sneezed@V +sneezes@ip +sneezing@V +snick@Nt +snicked@At +snicker@NV +snickered@AV +snickering@AV +snickers@pV +snicking@At +snicks@pt +snide@AN +snidely@? +snider@A +snidest@A +sniff@VN +sniffed@VA +sniffer@N +sniffers@p +sniffier@A +sniffiest@A +sniffing@VA +sniffle@iN +sniffled@iA +sniffles@N +sniffling@iA +sniffs@Vp +sniffy@A +snifter@N +snifters@p +snigger@Ni +sniggered@Ai +sniggering@Ai +sniggers@pi +snip@VN! +snipe@NVi +sniped@VA! +sniper@N +snipers@p +snipes@pVi +sniping@VA! +snipped@? +snippet@N +snippets@p +snippier@A +snippiest@A +snipping@? +snippy@A +snips@p +snit@N +snitch@tiN +snitched@tiA +snitches@? +snitching@tiA +snits@p +snivel@VNi +sniveled@VAi +sniveling@VAi +snivelled@? +snivelling@? +snivels@Vpi +snob@N +snobbery@N +snobbier@? +snobbiest@? +snobbish@A +snobbishly@? +snobbishness@? +snobby@? +snobs@p +snog@VN +snogged@? +snogging@? +snogs@Vp +snooker@Nt +snookered@At +snookering@At +snookers@pt +snoop@iN +snooped@iA +snooper@N +snoopers@p +snoopier@A +snoopiest@A +snooping@iA +snoops@ip +snoopy@A +snoot@N +snootier@A +snootiest@A +snootily@v +snootiness@N +snoots@p +snooty@A +snooze@iN +snoozed@V +snoozes@ip +snoozing@V +snore@iN +snored@V +snorer@? +snorers@p +snores@ip +snoring@V +snorkel@Ni +snorkeled@Ai +snorkeler@? +snorkelers@p +snorkeling@Ai +snorkelled@? +snorkelling@? +snorkels@pi +snort@itN +snorted@itA +snorting@itA +snorts@itp +snot@N +snots@p +snottier@? +snottiest@? +snotty@AN +snout@N +snouts@p +snow@N +snowball@Nit +snowballed@Ait +snowballing@Ait +snowballs@pit +snowbelt@? +snowboard@? +snowboarded@? +snowboarder@? +snowboarders@p +snowboarding@? +snowboards@p +snowbound@A +snowdrift@N +snowdrifts@p +snowdrop@N +snowdrops@p +snowed@A +snowfall@N +snowfalls@p +snowfield@N +snowfields@p +snowflake@N +snowflakes@p +snowier@A +snowiest@A +snowing@A +snowline@? +snowman@N +snowmen@p +snowmobile@N +snowmobiled@A +snowmobiles@p +snowmobiling@A +snowplough@N +snowploughs@p +snowplow@N +snowplowed@A +snowplowing@A +snowplows@p +snows@p +snowshed@N +snowshoe@NV +snowshoed@V +snowshoeing@V +snowshoes@pV +snowstorm@N +snowstorms@p +snowsuit@? +snowsuits@p +snowy@A +snub@VNA +snubbed@V +snubbing@V +snubs@Vp +snuck@V +snuff@tNi +snuffbox@N +snuffboxes@? +snuffed@tAi +snuffer@N +snuffers@p +snuffing@tAi +snuffle@iN +snuffled@iA +snuffles@ip +snuffling@iA +snuffs@tpi +snug@ANV +snugged@V +snugger@A +snuggest@VA +snugging@A +snuggle@VN +snuggled@V +snuggles@Vp +snuggling@V +snugly@v +snugness@N +snugs@pV +so@N +soak@VtN +soaked@VtA +soaking@VtA +soakings@p +soaks@Vtp +soap@Nti +soapbox@N +soapboxes@? +soaped@Ati +soapier@A +soapiest@A +soapiness@? +soaping@Ati +soaps@pti +soapstone@N +soapsuds@p +soapy@A +soar@iN +soared@iA +soaring@A +soars@ip +soave@N +sob@VtN +sobbed@V +sobbing@V +sober@AV +sobered@AV +soberer@N +soberest@? +sobering@AV +soberly@v +soberness@N +sobers@N +sobriety@N +sobriquet@N +sobriquets@p +sobs@Vtp +soccer@N +sociability@N +sociable@AN +sociables@p +sociably@v +social@AN +socialisation@N +socialise@ti +socialised@ti +socialises@ti +socialising@ti +socialism@N +socialist@NA +socialistic@A +socialists@p +socialite@N +socialites@p +socialization@N +socialize@it +socialized@V +socializes@it +socializing@V +socially@? +socials@p +societal@A +societies@p +society@N +socioeconomic@A +socioeconomically@v +sociological@N +sociologically@v +sociologist@N +sociologists@p +sociology@N +sociopath@N +sociopaths@p +sociopolitical@A +sock@NtV +socked@AtV +socket@Nt +sockets@pt +socking@AtV +socks@p +socrates@N +socratic@AN +sod@NV! +soda@N +sodas@p +sodded@? +sodden@AV +sodding@? +soddy@N +sodium@N +sodom@N +sodomise@? +sodomised@? +sodomises@? +sodomising@? +sodomite@N +sodomites@p +sodomize@? +sodomized@? +sodomizes@? +sodomizing@? +sodomy@N +sods@pV! +sofa@N +sofas@p +sofia@N +soft@AvN! +softback@? +softball@N +softballs@p +softcover@? +soften@V +softened@V +softener@N +softeners@p +softening@V +softens@V +softer@? +softest@? +softhearted@A +softie@N +softies@p +softly@v +softness@N +software@N +softwood@N +softwoods@p +softy@N +soggier@? +soggiest@? +soggily@? +sogginess@? +soggy@A +soh@N +soho@! +soil@NVt +soiled@AVt +soiling@AVt +soils@pVt +sojourn@Ni +sojourned@Ai +sojourning@Ai +sojourns@pi +sol@N +solace@Nt +solaced@V +solaces@pt +solacing@V +solar@A +solaria@? +solarium@N +solariums@p +sold@VA +solder@NV +soldered@AV +soldering@AV +solders@pV +soldier@Ni +soldiered@Ai +soldiering@Ai +soldierly@A +soldiers@pi +soldiery@N +sole@ANt +solecism@N +solecisms@p +soled@V +solely@v +solemn@A +solemner@? +solemnest@? +solemnisation@? +solemnise@N +solemnised@A +solemnises@p +solemnising@A +solemnities@? +solemnity@N +solemnization@N +solemnize@t +solemnized@V +solemnizes@t +solemnizing@V +solemnly@v +solemnness@N +solenoid@N +solenoids@p +soles@pt +soli@Av +solicit@V +solicitation@? +solicitations@p +solicited@V +soliciting@V +solicitor@N +solicitors@p +solicitous@A +solicitously@? +solicitousness@? +solicits@V +solicitude@N +solid@AN +solidarity@N +solider@? +solidest@? +solidification@N +solidified@V +solidifies@? +solidify@V +solidifying@V +solidity@? +solidly@v +solidness@N +solids@p +soliloquies@? +soliloquise@it +soliloquised@it +soliloquises@it +soliloquising@it +soliloquize@V +soliloquized@V +soliloquizes@V +soliloquizing@V +soliloquy@N +soling@NV +solipsism@NA +solipsistic@? +solitaire@N +solitaires@p +solitaries@p +solitariness@? +solitary@AN +solitude@N +solo@NAvi +soloed@Avi +soloing@Avi +soloist@N +soloists@p +solomon@N +solon@N +solos@pvi +sols@p +solstice@N +solstices@p +solubility@N +soluble@A +solubles@p +solution@N +solutions@p +solvable@A +solve@t +solved@t +solvency@N +solvent@AN +solvents@p +solver@N +solvers@p +solves@t +solving@t +solzhenitsyn@N +somali@NA +somalia@NA +somalian@AN +somalians@p +somalis@p +somber@A +somberly@v +somberness@N +sombre@A +sombrely@v +sombreness@N +sombrero@N +sombreros@p +some@Dv +somebodies@? +somebody@rN +someday@v +somehow@v +someone@r +someones@r +someplace@v +somersault@Ni +somersaulted@Ai +somersaulting@Ai +somersaults@pi +something@rv +somethings@rv +sometime@vA +sometimes@v +someway@v +someways@v +somewhat@v +somewhats@v +somewhere@v +somme@N +somnambulism@NA +somnambulist@N +somnambulists@p +somnolence@N +somnolent@A +son@N +sonar@N +sonars@p +sonata@N +sonatas@p +sondheim@N +song@N +songbird@N +songbirds@p +songbook@? +songbooks@p +songs@p +songster@N +songsters@p +songstress@N +songstresses@? +songwriter@N +songwriters@p +songwriting@? +sonic@A +sonnet@Nit +sonnets@pit +sonnies@p +sonny@N +sonofabitch@? +sonogram@? +sonograms@p +sonority@? +sonorous@A +sonorously@v +sons@p +sonsofbitches@? +soon@v +sooner@N +soonest@? +soot@Nt +sooth@NA +soothe@ti +soothed@V +soothes@ti +soothing@V +soothingly@v +soothsayer@N +soothsayers@p +sootier@? +sootiest@? +sooty@A +sop@NV +sophia@N +sophism@N +sophist@N +sophisticate@VtN +sophisticated@A +sophisticates@Vtp +sophisticating@V +sophistication@N +sophistries@p +sophistry@N +sophists@p +sophoclean@A +sophocles@N +sophomore@N +sophomores@p +sophomoric@A +soporific@AN +soporifically@? +soporifics@p +sopped@V +soppier@A +soppiest@A +sopping@A +soppy@A +soprano@N +sopranos@p +sops@pV +sorbet@N +sorbets@p +sorcerer@N +sorcerers@p +sorceress@? +sorceresses@? +sorcery@N +sordid@A +sordidly@? +sordidness@N +sore@ANv +sorehead@N +soreheads@p +sorely@v +soreness@? +sorer@A +sores@pv +sorest@A +sorghum@N +sororities@? +sorority@N +sorrel@N +sorrels@p +sorrier@A +sorriest@A +sorrow@Ni +sorrowed@Ai +sorrowful@? +sorrowfully@v +sorrowing@Ai +sorrows@N +sorry@A! +sort@Nti +sorta@? +sorted@Ati +sorter@N +sorters@p +sortie@NV +sortied@AV +sortieing@AV +sorties@pV +sorting@Ati +sorts@pti +sos@N +soses@? +sot@N +sots@p +sottish@A +sou@N +soubriquet@N +soubriquets@p +sough@iN +soughed@iA +soughing@iA +soughs@ip +sought@V +souk@N +souks@p +soul@N +soulful@A +soulfully@v +soulfulness@N +soulless@A +soullessly@? +soullessness@? +souls@p +sound@N +soundbite@? +soundbites@? +sounded@A +sounder@N +soundest@? +sounding@AN +soundings@p +soundless@A +soundlessly@v +soundly@v +soundness@N +soundproof@At +soundproofed@At +soundproofing@N +soundproofs@pt +sounds@p +soundtrack@N +soundtracks@p +soup@N +souped@A +soupier@A +soupiest@A +souping@A +soups@p +soupy@A +sour@ANV +source@N +sourced@A +sources@p +sourcing@A +sourdough@AN +sourdoughs@p +soured@AV +sourer@? +sourest@? +souring@AV +sourly@v +sourness@N +sourpuss@N +sourpusses@? +sours@pV +sousa@N +sousaphone@N +sousaphones@p +souse@VtN +soused@V +souses@Vtp +sousing@V +south@NA +southampton@N +southbound@A +southeast@N +southeasterly@AvN +southeastern@A +southeasts@p +southeastward@ANv +southeastwards@v +southerlies@? +southerly@AvN +southern@A +southerner@N +southerners@p +southernmost@A +southerns@p +southey@N +southpaw@NA +southpaws@p +souths@p +southward@AvN +southwards@v +southwest@N +southwester@N +southwesterly@AvN +southwestern@A +southwesters@p +southwests@p +southwestward@AvN +southwestwards@v +souvenir@Nt +souvenirs@pt +sovereign@NA +sovereigns@p +sovereignty@N +soviet@A +soviets@N +sow@VtN +sowed@V +sower@N +sowers@p +soweto@N +sowing@V +sown@V +sows@Vtp +sox@N +soy@N +soya@? +soybean@N +soybeans@p +soyuz@N +sozzled@A +spa@N +space@Nt +spacecraft@N +spacecrafts@p +spaced@At +spaceflight@? +spaceflights@p +spaceman@N +spacemen@p +spaces@pt +spaceship@N +spaceships@p +spacesuit@N +spacesuits@p +spacewalk@Ni +spacewalked@Ai +spacewalking@Ai +spacewalks@pi +spacewoman@? +spacewomen@? +spacey@? +spacial@A +spacier@? +spaciest@? +spacing@N +spacious@A +spaciously@v +spaciousness@N +spackle@Nti +spacy@? +spade@Nt +spaded@At +spadeful@N +spadefuls@p +spades@pt +spadework@N +spading@At +spaghetti@N +spain@N +spake@V +spam@N +spamblock@? +spamblocks@p +spammed@? +spammer@? +spammers@p +spamming@? +spams@p +span@NVt +spandex@N +spangle@NVt +spangled@V +spangles@pVt +spangling@V +spangly@A +spaniard@N +spaniards@p +spaniel@N +spaniels@p +spanish@NA +spank@tNi +spanked@tAi +spanking@NA +spankings@p +spanks@tpi +spanned@V +spanner@N +spanners@p +spanning@V +spans@p +spar@N +spare@tiAN +spared@V +sparely@v +spareness@N +sparer@NV +spareribs@p +spares@tip +sparest@V +sparing@A +sparingly@v +spark@N +sparked@A +sparkier@? +sparkiest@? +sparking@A +sparkle@ViN +sparkled@i +sparkler@N +sparklers@p +sparkles@Vip +sparkling@i +sparkly@? +sparks@N +sparky@N +sparred@V +sparring@V +sparrow@N +sparrowhawk@N +sparrowhawks@p +sparrows@p +spars@p +sparse@A +sparsely@v +sparseness@? +sparser@A +sparsest@A +sparsity@? +sparta@N +spartacus@N +spartan@AN +spartans@p +spas@p +spasm@N +spasmodic@A +spasmodically@v +spasms@p +spastic@AN +spastics@p +spat@NV +spate@N +spates@p +spatial@A +spatially@v +spats@pV +spatted@V +spatter@VtiN +spattered@VtiA +spattering@VtiA +spatters@Vtip +spatting@V +spatula@N +spatulas@p +spawn@NV +spawned@AV +spawning@AV +spawns@pV +spay@t +spayed@t +spaying@t +spays@t +speak@Vit +speakeasies@? +speakeasy@N +speaker@N +speakerphone@? +speakerphones@? +speakers@p +speaking@A +speaks@Vit +spear@N +speared@A +spearhead@Nt +spearheaded@At +spearheading@At +spearheads@pt +spearing@N +spearmint@N +spears@N +spec@NA +specced@? +speccing@? +special@AN +specialisation@N +specialisations@p +specialise@it +specialised@it +specialises@it +specialising@it +specialism@N +specialisms@p +specialist@N +specialists@p +specialities@? +speciality@N +specialization@N +specializations@p +specialize@it +specialized@it +specializes@it +specializing@it +specially@v +specials@p +specialties@p +specialty@N +specie@N +species@N +specifiable@A +specific@AN +specifically@? +specification@N +specifications@p +specificity@? +specifics@p +specified@V +specifier@N +specifiers@p +specifies@? +specify@V +specifying@V +specimen@N +specimens@p +specious@A +speciously@v +speciousness@N +speck@Nt +specked@At +specking@At +speckle@Nt +speckled@At +speckles@pt +speckling@At +specks@pt +specs@p +spectacle@N +spectacles@p +spectacular@AN +spectacularly@v +spectaculars@p +spectate@? +spectated@? +spectates@? +spectating@? +spectator@N +spectators@p +specter@N +specters@p +spectra@N +spectral@A +spectre@N +spectres@p +spectroscope@N +spectroscopes@p +spectroscopic@A +spectroscopy@N +spectrum@N +spectrums@p +speculate@Vi +speculated@i +speculates@Vi +speculating@i +speculation@N +speculations@p +speculative@A +speculatively@v +speculator@N +speculators@p +sped@N +speech@N +speeches@? +speechified@? +speechifies@? +speechify@V +speechifying@V +speechless@A +speechlessly@v +speechlessness@N +speechwriter@? +speechwriters@p +speed@NV +speedboat@N +speedboats@p +speeded@V +speeder@N +speeders@p +speedier@A +speediest@A +speedily@v +speediness@N +speeding@V +speedometer@N +speedometers@p +speeds@pV +speedster@N +speedsters@p +speedup@? +speedups@p +speedway@N +speedways@p +speedy@A +speleological@? +speleologist@? +speleologists@p +speleology@N +spell@VtN +spellbind@V +spellbinder@N +spellbinders@p +spellbinding@t +spellbinds@V +spellbound@A +spellchecker@? +spellcheckers@p +spelled@VtA +speller@N +spellers@p +spelling@N +spellings@p +spells@Vtp +spelt@VN +spelunker@N +spelunkers@p +spelunking@? +spence@N +spencer@N +spencerian@AN +spend@Vti +spender@N +spenders@p +spending@V +spends@p +spendthrift@NA +spendthrifts@p +spenglerian@? +spenserian@AN +spent@VA +sperm@N +spermatozoa@? +spermatozoon@NA +spermicidal@? +spermicide@N +spermicides@p +sperms@p +spew@VN +spewed@VA +spewing@VA +spews@Vp +sphagnum@N +sphere@Nt +spheres@pt +spherical@A +spheroid@N +spheroidal@A +spheroids@p +sphincter@N +sphincters@p +sphinges@? +sphinx@N +sphinxes@? +spic@N +spice@Nt +spiced@V +spices@pt +spicier@A +spiciest@A +spiciness@N +spicing@V +spick@N +spicks@p +spics@p +spicy@A +spider@N +spiderier@? +spideriest@? +spiders@p +spiderweb@t +spiderwebs@t +spidery@A +spied@V +spiel@Nit +spieled@Ait +spieling@Ait +spiels@pit +spies@p +spiff@? +spiffed@? +spiffier@A +spiffiest@A +spiffing@A +spiffs@p +spiffy@A +spigot@N +spigots@p +spike@Nt +spiked@At +spikes@pt +spikier@A +spikiest@A +spikiness@N +spiking@At +spiky@A +spill@VN +spillage@N +spillages@p +spilled@VA +spilling@VA +spillover@N +spillovers@p +spills@Vp +spillway@N +spillways@p +spilt@V +spin@VtiN +spinach@N +spinal@AN +spinals@p +spindle@Nti +spindled@V +spindles@pti +spindlier@A +spindliest@A +spindling@AN +spindly@A +spine@N +spineless@A +spinelessly@v +spinelessness@N +spines@p +spinet@N +spinets@p +spinier@A +spiniest@A +spinnaker@N +spinnakers@p +spinner@N +spinners@p +spinney@N +spinneys@p +spinning@N +spinoff@? +spinoffs@p +spinoza@N +spins@Vtip +spinster@N +spinsterhood@N +spinsters@p +spiny@A +spiraea@N +spiraeas@p +spiral@AV +spiraled@AV +spiraling@AV +spiralled@? +spiralling@V +spirally@v +spirals@pV +spire@Nit +spirea@N +spireas@p +spires@N +spirit@N +spirited@A +spiritedly@v +spiriting@A +spiritless@A +spirits@p +spiritual@AN +spiritualism@N +spiritualist@N +spiritualistic@A +spiritualists@p +spirituality@N +spiritually@? +spirituals@p +spirituous@A +spit@VitN +spitball@N +spitballs@p +spite@Nt +spited@V +spiteful@A +spitefuller@? +spitefullest@? +spitefully@v +spitefulness@N +spites@pt +spitfire@N +spitfires@p +spiting@V +spits@Vitp +spitsbergen@N +spitted@? +spitting@V +spittle@N +spittoon@N +spittoons@p +spiv@N +spivs@p +splash@VtN +splashdown@NVi +splashdowns@pVi +splashed@VtA +splashes@? +splashier@A +splashiest@A +splashing@VtA +splashy@A +splat@N +splats@p +splatted@? +splatter@VN +splattered@VA +splattering@VA +splatters@Vp +splatting@? +splay@AVtN +splayed@AVt +splaying@AVt +splays@pVt +spleen@N +spleens@p +splendid@A +splendider@? +splendidest@? +splendidly@v +splendor@N +splendors@p +splendour@N +splendours@p +splenetic@AN +splice@tN +spliced@V +splicer@N +splicers@p +splices@tp +splicing@V +spliff@? +spliffs@p +spline@Nt +splines@pt +splint@NV +splinted@AV +splinter@NV +splintered@AV +splintering@AV +splinters@pV +splinting@AV +splints@pV +split@N +splits@N +splitting@AN +splittings@p +splodge@Nt +splodges@pt +splosh@tiN +sploshed@tiA +sploshes@? +sploshing@tiA +splotch@NV +splotched@AV +splotches@? +splotchier@? +splotchiest@? +splotching@AV +splotchy@? +splurge@NV +splurged@AV +splurges@pV +splurging@AV +splutter@VtN +spluttered@VtA +spluttering@VtA +splutters@Vtp +spock@N +spoil@VtiN +spoilage@N +spoiled@VtiA +spoiler@N +spoilers@p +spoiling@V +spoils@p +spoilsport@N +spoilsports@p +spoilt@V +spokane@N +spoke@VNt +spoken@VA +spokes@Vpt +spokesman@N +spokesmen@p +spokespeople@? +spokesperson@? +spokespersons@p +spokeswoman@N +spokeswomen@p +spoliation@N +sponge@Nti +sponged@Ati +sponger@N +spongers@p +sponges@pti +spongier@A +spongiest@A +sponginess@? +sponging@Ati +spongy@A +sponsor@Nt +sponsored@At +sponsoring@At +sponsors@pt +sponsorship@? +spontaneity@N +spontaneous@A +spontaneously@v +spoof@NV +spoofed@AV +spoofing@AV +spoofs@pV +spook@Nt +spooked@At +spookier@A +spookiest@A +spooking@At +spooks@pt +spooky@A +spool@NV +spooled@AV +spooling@AV +spools@pV +spoon@Nti +spoonbill@N +spoonbills@p +spooned@Ati +spoonerism@N +spoonerisms@p +spoonful@N +spoonfuls@p +spooning@Ati +spoons@pti +spoonsful@? +spoor@N +spoored@A +spooring@A +spoors@p +sporadic@A +sporadically@v +spore@Ni +spored@V +spores@pi +sporing@V +sporran@N +sporrans@p +sport@Nti +sported@Ati +sportier@A +sportiest@A +sporting@A +sportingly@? +sportive@A +sports@N +sportscast@N +sportscaster@? +sportscasters@p +sportscasting@A +sportscasts@p +sportsman@N +sportsmanlike@A +sportsmanship@N +sportsmen@p +sportspeople@? +sportsperson@? +sportswear@N +sportswoman@N +sportswomen@? +sporty@A +spot@NV +spotless@A +spotlessly@v +spotlessness@N +spotlight@NVt +spotlighted@AVt +spotlighting@AVt +spotlights@pVt +spotlit@? +spots@pV +spotted@A +spotter@N +spotters@p +spottier@? +spottiest@? +spottiness@N +spotting@NV +spotty@A +spousal@NA +spouse@NVt +spouses@pVt +spout@VN +spouted@A +spouting@VA +spouts@Vp +sprain@tN +sprained@tA +spraining@tA +sprains@tp +sprang@V +sprat@N +sprats@p +sprawl@iN +sprawled@iA +sprawling@iA +sprawls@ip +spray@NVt +sprayed@AVt +sprayer@N +sprayers@p +spraying@AVt +sprays@pVt +spread@VtNA +spreadeagled@? +spreader@N +spreaders@p +spreading@VtA +spreads@Vtp +spreadsheet@? +spreadsheets@p +spree@N +spreed@A +spreeing@A +sprees@p +sprier@A +spriest@A +sprig@NVt +sprigged@V +sprightlier@A +sprightliest@A +sprightliness@N +sprightly@Av +sprigs@pVt +spring@N +springboard@N +springboards@p +springbok@N +springboks@p +springfield@N +springier@A +springiest@A +springiness@N +springing@N +springs@N +springtime@N +springy@A +sprinkle@VtiN +sprinkled@V +sprinkler@N +sprinklers@p +sprinkles@Vtip +sprinkling@N +sprinklings@p +sprint@Ni +sprinted@Ai +sprinter@? +sprinters@p +sprinting@Ai +sprints@pi +sprite@N +sprites@p +spritz@tN +spritzed@tA +spritzer@? +spritzers@p +spritzes@? +spritzing@tA +sprocket@N +sprockets@p +sprog@? +sprogs@p +sprout@ViN +sprouted@ViA +sprouting@ViA +sprouts@Vip +spruce@NA +spruced@V +sprucer@A +spruces@p +sprucest@VA +sprucing@A +sprung@N +spry@A +spryer@A +spryest@A +spryly@v +spryness@? +spud@NV +spuds@pV +spume@Ni +spumed@V +spumes@pi +spuming@V +spumone@N +spumoni@? +spun@VA +spunk@N +spunkier@A +spunkiest@A +spunks@p +spunky@AN +spur@NV +spurious@A +spuriously@v +spuriousness@N +spurn@VN +spurned@VA +spurning@VA +spurns@Vp +spurred@AV +spurring@V +spurs@pV +spurt@VN +spurted@VA +spurting@VA +spurts@Vp +sputnik@N +sputter@VN +sputtered@VA +sputtering@VA +sputters@Vp +sputum@N +spy@NV +spyglass@N +spyglasses@? +spying@V +spymaster@? +spymasters@p +sq@N +sql@? +squab@NA +squabble@itN +squabbled@itA +squabbles@itp +squabbling@itA +squabs@p +squad@N +squadron@N +squadrons@p +squads@p +squalid@A +squalider@? +squalidest@? +squall@Ni +squalled@Ai +squalling@Ai +squalls@pi +squally@A +squalor@N +squander@tN +squandered@tA +squandering@tA +squanders@tp +squanto@? +square@NAVv +squared@AVv +squarely@v +squareness@N +squarer@N +squares@pVv +squarest@? +squaring@AVv +squarish@A +squash@VtiN +squashed@VtiA +squashes@? +squashier@A +squashiest@A +squashing@VtiA +squashy@A +squat@VAN +squats@Vp +squatted@? +squatter@N +squatters@p +squattest@? +squatting@V +squaw@N +squawk@NVi +squawked@AVi +squawking@AVi +squawks@pVi +squaws@p +squeak@NVit +squeaked@AVit +squeakier@A +squeakiest@A +squeaking@AVit +squeaks@pVit +squeaky@At +squeal@NVi +squealed@AVi +squealer@N +squealers@p +squealing@AVi +squeals@pVi +squeamish@A +squeamishly@v +squeamishness@N +squeegee@NV +squeegeed@V +squeegeeing@V +squeegees@pV +squeeze@VitN +squeezebox@? +squeezeboxes@? +squeezed@VitA +squeezer@N +squeezers@p +squeezes@Vitp +squeezing@VitA +squelch@itN +squelched@itA +squelches@? +squelching@itA +squelchy@? +squib@NV +squibs@pV +squid@NV +squidgy@? +squids@pV +squiffy@A +squiggle@Nit +squiggled@V +squiggles@pit +squigglier@? +squiggliest@? +squiggling@V +squiggly@A +squint@ViNA +squinted@ViA +squinter@N +squintest@? +squinting@ViA +squints@Vip +squire@N +squired@A +squires@N +squiring@A +squirm@iN +squirmed@iA +squirmier@A +squirmiest@A +squirming@iA +squirms@ip +squirmy@A +squirrel@N +squirreled@p +squirreling@p +squirrelled@? +squirrelling@? +squirrels@p +squirt@VN +squirted@VA +squirting@VA +squirts@Vp +squish@tiN +squished@tiA +squishes@? +squishier@A +squishiest@A +squishing@tiA +squishy@A +sr@N +srinagar@N +sro@N +ss@N +ssa@? +ssh@? +sst@N +st@N +stab@VtN +stabbed@? +stabbing@? +stabbings@p +stabilisation@N +stabilise@ti +stabilised@ti +stabiliser@N +stabilisers@p +stabilises@ti +stabilising@ti +stability@N +stabilization@N +stabilize@Vt +stabilized@V +stabilizer@N +stabilizers@p +stabilizes@Vt +stabilizing@V +stable@NVA +stabled@V +stableman@N +stablemate@? +stablemates@? +stablemen@p +stabler@? +stables@pV +stablest@? +stabling@N +stably@v +stabs@Vtp +staccati@? +staccato@Av +staccatos@pv +stack@Nt +stacked@A +stacking@At +stacks@pt +stadia@N +stadium@N +stadiums@p +staff@NV +staffed@AV +staffer@N +staffers@p +staffing@AV +stafford@N +staffs@pV +stag@N +stage@Nti +stagecoach@N +stagecoaches@? +stagecraft@N +staged@AV +stagehand@N +stagehands@p +stages@pti +stagestruck@? +stagey@A +stagflation@N +stagger@VtiN +staggered@VtiA +staggering@VtiA +staggeringly@v +staggers@N +staging@N +stagings@p +stagnant@A +stagnate@i +stagnated@i +stagnates@i +stagnating@i +stagnation@N +stags@p +stagy@A +staid@A +staider@? +staidest@? +staidly@v +stain@ViN +stained@ViA +staining@ViA +stainless@AN +stains@Vip +stair@N +staircase@N +staircases@p +stairmaster@? +stairs@p +stairway@N +stairways@p +stairwell@N +stairwells@p +stake@Nt +staked@V +stakeholder@? +stakeholders@p +stakeout@NVt +stakeouts@pVt +stakes@pt +staking@V +stalactite@N +stalactites@p +stalagmite@N +stalagmites@p +stale@AViN +staled@i +stalemate@Nt +stalemated@V +stalemates@pt +stalemating@V +staleness@N +staler@? +stales@pVi +stalest@? +stalin@N +staling@i +stalingrad@N +stalinist@AN +stalk@N +stalked@A +stalker@N +stalkers@p +stalking@A +stalkings@p +stalks@p +stall@NVti +stalled@AVti +stallholder@? +stallholders@p +stalling@AVti +stallion@N +stallions@p +stalls@pVti +stalwart@AN +stalwartly@v +stalwarts@p +stamen@N +stamens@p +stamford@N +stamina@N +stammer@VN +stammered@VA +stammerer@N +stammerers@p +stammering@VA +stammeringly@v +stammers@Vp +stamp@VitN +stamped@VitA +stampede@NV +stampeded@V +stampedes@pV +stampeding@V +stamping@VitA +stamps@Vitp +stance@N +stances@p +stanch@VN +stanched@VA +stancher@N +stanches@? +stanchest@? +stanching@VA +stanchion@Nt +stanchions@pt +stand@VtN +standard@NA +standardisation@? +standardise@ti +standardised@ti +standardises@ti +standardising@ti +standardization@N +standardize@Vt +standardized@V +standardizes@Vt +standardizing@V +standards@p +standby@? +standbys@p +standing@N +standings@p +standish@N +standoff@NV +standoffish@A +standoffs@pV +standout@NA +standouts@p +standpipe@N +standpipes@p +standpoint@N +standpoints@p +stands@p +standstill@N +standstills@p +standup@? +stanislavsky@N +stank@VNt +stanley@N +stanton@N +stanza@N +stanzas@p +staph@N +staphylococci@? +staphylococcus@N +staple@NtA +stapled@V +stapler@N +staplers@p +staples@pt +stapling@V +star@N +starboard@NAV +starch@Nt +starched@At +starches@? +starchier@? +starchiest@? +starchily@v +starching@At +starchy@A +stardom@N +stardust@N +stare@iN +stared@V +stares@ip +starfish@N +starfishes@? +starfruit@? +stargaze@iA +stargazed@iA +stargazer@? +stargazers@p +stargazes@ip +stargazing@iA +staring@V +stark@Av +starker@? +starkers@p +starkest@? +starkly@v +starkness@N +starless@A +starlet@N +starlets@p +starlight@NA +starling@N +starlings@p +starlit@? +starred@A +starrier@A +starriest@A +starring@V +starry@A +stars@p +starstruck@? +start@VitN +started@VitA +starter@N +starters@p +starting@VitA +startle@V +startled@V +startles@V +startling@V +startlingly@v +starts@Vitp +starvation@N +starve@Vit +starved@V +starves@Vit +starving@V +starvings@V +stash@tN +stashed@tA +stashes@? +stashing@tA +stasis@N +stat@N +state@Nt +stated@A +statehood@N +statehouse@N +statehouses@p +stateless@A +statelessness@N +statelier@A +stateliest@A +stateliness@N +stately@Av +statement@N +statemented@A +statementing@A +statements@p +stater@N +stateroom@N +staterooms@p +states@N +stateside@Av +statesman@N +statesmanlike@A +statesmanship@N +statesmen@? +stateswoman@? +stateswomen@? +statewide@Av +static@AN +statically@v +statics@N +stating@V +station@Nt +stationary@A +stationed@At +stationer@N +stationers@p +stationery@N +stationing@At +stationmaster@N +stationmasters@p +stations@pt +statistic@N +statistical@A +statistically@v +statistician@N +statisticians@p +statistics@N +stats@p +statuary@NA +statue@N +statues@p +statuesque@A +statuette@N +statuettes@p +stature@N +statures@p +status@N +statuses@? +statute@N +statutes@p +statutorily@v +statutory@A +staunch@AVN +staunched@AV +stauncher@? +staunches@? +staunchest@? +staunching@AV +staunchly@? +staunchness@? +stave@NV +staved@V +staves@N +staving@V +stay@itN +stayed@V +stayer@N +stayers@p +staying@V +stays@p +std@N +stdio@? +stead@N +steadfast@A +steadfastly@v +steadfastness@N +steadicam@? +steadied@? +steadier@AN +steadies@? +steadiest@A +steadily@v +steadiness@N +steads@p +steady@AVvN! +steadying@AVv! +steak@N +steakhouse@N +steakhouses@p +steaks@p +steal@VtiN +stealing@NV +steals@Vtip +stealth@N +stealthier@A +stealthiest@A +stealthily@v +stealthy@A +steam@NVit +steamboat@N +steamboats@p +steamed@AVit +steamer@N +steamers@p +steamier@A +steamiest@A +steaming@AVit +steamroll@? +steamrolled@? +steamroller@Nt +steamrollered@At +steamrollering@At +steamrollers@pt +steamrolling@? +steamrolls@p +steams@pVit +steamship@N +steamships@p +steamy@A +steed@N +steeds@p +steel@N +steele@N +steeled@A +steelier@? +steeliest@? +steeling@A +steelmaker@N +steelmakers@p +steels@p +steelworker@N +steelworkers@p +steelworks@N +steely@? +steep@AVtN +steeped@AVt +steepen@V +steepened@V +steepening@V +steepens@V +steeper@N +steepest@? +steeping@AVt +steeple@N +steeplechase@Ni +steeplechases@pi +steeplejack@N +steeplejacks@p +steeples@p +steeply@? +steepness@? +steeps@pVt +steer@VtiN +steerage@N +steered@VtiA +steering@VtiA +steers@Vtip +stein@N +steinbeck@N +steiner@N +steins@p +stella@N +stellar@A +stem@NVt +stemmed@A +stemming@Vt +stems@pVt +stench@N +stenches@? +stencil@NVt +stenciled@V +stenciling@V +stencilled@V +stencilling@V +stencils@pVt +stendhal@N +steno@N +stenographer@N +stenographers@p +stenographic@A +stenography@N +stenos@p +stentorian@A +step@NV +stepbrother@N +stepbrothers@p +stepchild@N +stepchildren@? +stepdaughter@N +stepdaughters@p +stepfather@N +stepfathers@p +stephen@N +stephens@N +stephenson@N +stepladder@N +stepladders@p +stepmother@N +stepmothers@p +stepparent@N +stepparents@p +steppe@N +stepped@V +steppes@N +stepping@V +steppingstone@? +steppingstones@? +steps@pV +stepsister@N +stepsisters@p +stepson@N +stepsons@p +stereo@AN +stereophonic@A +stereos@p +stereoscope@N +stereoscopes@p +stereoscopic@A +stereotype@Nt +stereotyped@A +stereotypes@pt +stereotypical@? +stereotyping@V +sterile@A +sterilisation@? +sterilisations@p +sterilise@t +sterilised@t +steriliser@N +sterilisers@p +sterilises@t +sterilising@t +sterility@N +sterilization@N +sterilizations@p +sterilize@t +sterilized@t +sterilizer@? +sterilizers@p +sterilizes@t +sterilizing@t +sterling@N +stern@AN +sterna@? +sterner@N +sternest@? +sternly@? +sternness@? +sterno@? +sterns@p +sternum@N +sternums@p +steroid@N +steroids@p +stethoscope@N +stethoscopes@p +stetson@N +stetsons@p +stevedore@NV +stevedores@pV +stevens@N +stevenson@N +stew@N +steward@N +stewarded@A +stewardess@N +stewardesses@? +stewarding@A +stewards@p +stewardship@N +stewed@A +stewing@A +stews@p +stick@NVti +sticker@N +stickers@p +stickier@A +stickies@? +stickiest@A +stickiness@N +sticking@V +stickleback@N +sticklebacks@p +stickler@N +sticklers@p +stickpin@N +stickpins@p +sticks@pVti +stickup@N +stickups@p +sticky@AtN +sties@? +stiff@ANv +stiffed@Av +stiffen@Vi +stiffened@Vi +stiffener@? +stiffeners@p +stiffening@Vi +stiffens@Vi +stiffer@? +stiffest@? +stiffing@Av +stiffly@v +stiffness@N +stiffs@pv +stifle@tN +stifled@V +stifles@tp +stifling@A +stiflingly@? +stiflings@p +stigma@N +stigmas@p +stigmata@? +stigmatisation@? +stigmatise@? +stigmatised@? +stigmatises@? +stigmatising@? +stigmatization@N +stigmatize@t +stigmatized@t +stigmatizes@t +stigmatizing@t +stile@N +stiles@N +stiletto@NV +stilettoes@p +stilettos@p +still@AvNVt +stillbirth@N +stillbirths@p +stillborn@AN +stilled@AvVt +stiller@N +stillest@? +stilling@AvVt +stillness@N +stills@pvVt +stilt@Nt +stilted@A +stiltedly@? +stilton@N +stilts@pt +stimulant@NA +stimulants@p +stimulate@tNi +stimulated@V +stimulates@tpi +stimulating@V +stimulation@N +stimulative@AN +stimuli@N +stimulus@N +sting@VtN +stinger@N +stingers@p +stingier@? +stingiest@? +stingily@v +stinginess@N +stinging@VtA +stingray@N +stingrays@p +stings@Vtp +stingy@AN +stink@V +stinker@N +stinkers@p +stinking@AvN +stinks@V +stint@VN +stinted@VA +stinting@VA +stints@Vp +stipend@N +stipendiaries@p +stipendiary@AN +stipends@p +stipple@tN +stippled@V +stipples@tp +stippling@V +stipulate@tiA +stipulated@V +stipulates@tip +stipulating@V +stipulation@N +stipulations@p +stir@VitN +stirling@N +stirred@V +stirrer@? +stirrers@p +stirring@A +stirringly@v +stirrings@p +stirrup@N +stirrups@p +stirs@Vitp +stitch@NtiV +stitched@AtiV +stitches@? +stitching@N +stoat@N +stoats@p +stochastic@A +stock@N +stockade@Nt +stockaded@At +stockades@pt +stockading@At +stockbroker@N +stockbrokers@p +stockbroking@? +stocked@A +stockholder@N +stockholders@p +stockholm@N +stockier@A +stockiest@A +stockily@v +stockiness@N +stocking@N +stockings@p +stockist@N +stockists@p +stockpile@VN +stockpiled@V +stockpiles@Vp +stockpiling@V +stockroom@N +stockrooms@p +stocks@p +stocktaking@N +stockton@N +stocky@A +stockyard@N +stockyards@p +stodge@NV +stodgier@A +stodgiest@A +stodginess@? +stodgy@A +stogie@? +stogies@p +stogy@N +stoic@NA +stoical@A +stoically@? +stoicism@N +stoics@p +stoke@Vt +stoked@Vt +stoker@N +stokers@p +stokes@N +stoking@Vt +stol@N +stole@VN +stolen@V +stoles@Vp +stolid@A +stolider@? +stolidest@? +stolidity@A +stolidly@? +stomach@Nt +stomachache@N +stomachaches@p +stomached@At +stomaching@At +stomachs@pt +stomp@iN +stomped@iA +stomping@iA +stomps@ip +stone@N +stoned@A +stonehenge@N +stonemason@N +stonemasons@p +stones@p +stonewall@i +stonewalled@i +stonewalling@N +stonewalls@i +stoneware@NA +stonewashed@? +stonework@N +stoney@A +stonier@A +stoniest@A +stonily@v +stoning@A +stonkered@A +stonking@tA +stony@A +stood@V +stooge@Ni +stooges@pi +stool@Ni +stools@pi +stoop@VN +stooped@VA +stooping@VA +stoops@N +stop@VtiN +stopcock@N +stopcocks@p +stopgap@N +stopgaps@p +stoplight@N +stoplights@p +stopover@NV +stopovers@pV +stoppable@A +stoppage@N +stoppages@p +stopped@A +stopper@Nt +stoppered@At +stoppering@At +stoppers@pt +stopping@NA +stops@N +stopwatch@N +stopwatches@? +storage@N +store@tiN +stored@V +storefront@N +storefronts@p +storehouse@N +storehouses@p +storekeeper@N +storekeepers@p +storeroom@N +storerooms@p +stores@p +storey@N +storeys@p +storied@A +stories@p +storing@V +stork@N +storks@p +storm@N +stormed@A +stormier@A +stormiest@A +stormily@? +storminess@? +storming@A +storms@p +stormy@A +story@N +storyboard@N +storyboards@p +storybook@NA +storybooks@p +storyteller@NA +storytellers@p +storytelling@N +stoup@N +stoups@p +stout@AN +stouter@? +stoutest@? +stouthearted@A +stoutly@v +stoutness@N +stouts@p +stove@NtV +stovepipe@N +stovepipes@p +stoves@ptV +stow@N +stowage@N +stowaway@NV +stowaways@pV +stowe@N +stowed@A +stowing@A +stows@p +straddle@tiN +straddled@V +straddles@tip +straddling@V +stradivarius@N +strafe@tN +strafed@V +strafes@tp +strafing@V +straggle@i +straggled@i +straggler@? +stragglers@p +straggles@i +stragglier@? +straggliest@? +straggling@i +straggly@? +straight@AvN +straightaway@vN +straightaways@vp +straightedge@N +straightedges@p +straighten@V +straightened@V +straightening@V +straightens@V +straighter@? +straightest@? +straightforward@Av +straightforwardly@v +straightforwardness@N +straightjacket@N +straightjacketed@A +straightjacketing@A +straightjackets@p +straightness@N +straights@pv +strain@N +strained@A +strainer@N +strainers@p +straining@A +strains@p +strait@N +straiten@t +straitened@t +straitening@t +straitens@t +straitjacket@N +straitjacketed@A +straitjacketing@A +straitjackets@p +straitlaced@? +straits@p +strand@N +stranded@A +stranding@A +strands@p +strange@Av +strangely@v +strangeness@N +stranger@N +strangers@p +strangest@A +strangle@t +strangled@V +stranglehold@N +strangleholds@p +strangler@? +stranglers@p +strangles@N +strangling@V +strangulate@t +strangulated@t +strangulates@t +strangulating@t +strangulation@N +strap@NVt +strapless@A +straplesses@? +strapped@A +strapping@A +straps@pVt +strasbourg@N +strata@N +stratagem@N +stratagems@p +strategic@A +strategical@? +strategically@? +strategies@p +strategist@N +strategists@p +strategy@N +stratification@N +stratified@V +stratifies@? +stratify@Vt +stratifying@V +stratosphere@N +stratospheres@p +stratospheric@A +stratum@N +stratums@p +strauss@N +stravinsky@N +straw@NAt +strawberries@? +strawberry@N +strawed@At +strawing@At +straws@pt +stray@iNA +strayed@iA +straying@iA +strays@p +streak@Nti +streaked@Ati +streaker@N +streakers@p +streakier@A +streakiest@A +streaking@Ati +streaks@pti +streaky@A +stream@NVit +streamed@AVit +streamer@N +streamers@p +streaming@N +streamline@Nt +streamlined@A +streamlines@pt +streamlining@V +streams@pVit +street@N +streetcar@N +streetcars@p +streetlamp@? +streetlamps@p +streetlight@N +streetlights@p +streets@p +streetwalker@NA +streetwalkers@p +streetwise@? +strength@N +strengthen@V +strengthened@V +strengthening@V +strengthens@V +strengths@p +strenuous@A +strenuously@v +strenuousness@N +strep@N +streptococcal@A +streptococci@? +streptococcus@N +streptomycin@N +stress@Nt +stressed@At +stresses@? +stressful@A +stressing@At +stretch@N +stretched@A +stretcher@N +stretchered@A +stretchering@A +stretchers@p +stretches@? +stretchier@A +stretchiest@A +stretching@A +stretchmarks@p +stretchy@A +strew@V +strewed@V +strewing@t +strewn@t +strews@V +strewth@! +striated@V +striation@N +striations@p +stricken@A +strict@A +stricter@? +strictest@? +strictly@v +strictness@? +stricture@N +strictures@p +stridden@? +stride@NV +stridency@? +strident@A +stridently@? +strides@pV +striding@AV +strife@N +strike@VtiN +strikebound@A +strikebreaker@NA +strikebreakers@p +strikebreaking@N +strikeout@? +strikeouts@p +striker@N +strikers@p +strikes@Vtip +striking@A +strikingly@? +strikings@p +strindberg@N +string@NV +stringed@A +stringency@? +stringent@A +stringently@v +stringer@N +stringers@p +stringier@? +stringiest@? +stringing@N +strings@pV +stringy@A +strip@VitN +stripe@Nt +striped@A +stripes@pt +stripey@? +striping@V +stripling@N +striplings@p +stripped@V +stripper@N +strippers@p +stripping@V +strips@Vitp +stript@V +striptease@N +stripteased@A +stripteases@p +stripteasing@A +stripy@A +strive@Vi +strived@Vi +striven@? +strives@Vi +striving@Vi +strobe@N +strobes@p +strode@V +stroke@Nt +stroked@V +strokes@pt +stroking@NV +stroll@ViN +strolled@ViA +stroller@N +strollers@p +strolling@ViA +strolls@Vip +stromboli@N +strong@Av +strongbox@N +strongboxes@? +stronger@? +strongest@? +stronghold@N +strongholds@p +strongly@? +strongman@N +strongmen@? +strongroom@N +strongrooms@p +strontium@N +strop@NV +strophe@N +strophes@p +stropped@V +stroppier@? +stroppiest@? +stroppily@? +stroppiness@? +stropping@V +stroppy@A +strops@N +strove@V +struck@VA +structural@A +structuralism@NA +structuralist@NA +structuralists@p +structurally@v +structure@NV +structured@V +structures@pV +structuring@V +strudel@N +strudels@p +struggle@iN +struggled@V +struggles@ip +struggling@V +strum@V +strummed@V +strumming@V +strumpet@N +strumpets@p +strums@V +strung@VA +strut@VtN +struts@Vtp +strutted@V +strutting@AV +strychnine@N +stuart@N +stuarts@p +stub@NVt +stubbed@NV +stubbier@? +stubbiest@? +stubbing@V +stubble@N +stubblier@? +stubbliest@? +stubbly@A +stubborn@A +stubborner@? +stubbornest@? +stubbornly@v +stubbornness@N +stubby@AN +stubs@pVt +stucco@NV +stuccoed@p +stuccoes@p +stuccoing@p +stuccos@p +stuck@VA +stud@NVt +studbook@N +studbooks@p +studded@? +studding@N +student@N +students@p +studentship@N +studentships@p +studied@A +studies@p +studio@N +studios@p +studious@A +studiously@v +studiousness@N +studlier@? +studliest@? +studly@? +studs@pVt +study@VtiN +studying@VtiA +stuff@ViN +stuffed@A +stuffier@? +stuffiest@? +stuffily@v +stuffiness@N +stuffing@N +stuffs@Vip +stuffy@A +stultification@? +stultified@t +stultifies@? +stultify@V +stultifying@t +stumble@iN +stumbled@V +stumbler@? +stumblers@p +stumbles@ip +stumbling@V +stump@Nti +stumped@Ati +stumpier@A +stumpiest@A +stumping@Ati +stumps@pti +stumpy@A +stun@VN +stung@VA +stunk@V +stunned@V +stunner@N +stunners@p +stunning@A +stunningly@? +stuns@Vp +stunt@tNi +stunted@tAi +stunting@tAi +stuntman@? +stuntmen@? +stunts@tpi +stupefaction@N +stupefied@t +stupefies@? +stupefy@V +stupefying@t +stupendous@A +stupendously@v +stupid@A +stupider@? +stupidest@? +stupidities@? +stupidity@N +stupidly@v +stupids@p +stupor@N +stupors@p +sturdier@A +sturdiest@A +sturdily@v +sturdiness@N +sturdy@AN +sturgeon@N +sturgeons@p +stutter@VAN +stuttered@VA +stutterer@? +stutterers@p +stuttering@VA +stutters@Vp +stuttgart@N +stuyvesant@N +sty@NV +stye@? +styes@? +stygian@A +style@NVi +styled@V +styles@N +styli@? +styling@V +stylise@t +stylised@t +stylises@t +stylish@A +stylishly@? +stylishness@? +stylising@t +stylist@N +stylistic@A +stylistically@v +stylistics@p +stylists@p +stylize@t +stylized@t +stylizes@t +stylizing@t +stylus@N +styluses@? +stymie@VN +stymied@p +stymieing@VA +stymies@p +stymying@p +styptic@AN +styptics@p +styrofoam@? +styrofoams@p +styx@N +suave@A +suavely@? +suaver@? +suavest@? +suavity@N +sub@NV +subaltern@NA +subalterns@p +subaqua@A +subarctic@A +subatomic@A +subbasement@N +subbasements@p +subbed@V +subbing@V +subclass@Nt +subcommittee@? +subcommittees@? +subcompact@? +subcompacts@p +subconscious@AN +subconsciously@v +subcontinent@N +subcontinents@p +subcontract@NVit +subcontracted@AVit +subcontracting@AVit +subcontractor@N +subcontractors@p +subcontracts@pVit +subculture@NVt +subcultures@pVt +subcutaneous@A +subcutaneously@v +subdivide@Vt +subdivided@V +subdivides@Vt +subdividing@V +subdivision@N +subdivisions@p +subdue@V +subdued@A +subdues@V +subduing@t +subeditor@N +subeditors@p +subgroup@N +subgroups@p +subhead@N +subheading@N +subheadings@p +subheads@p +subhuman@A +subhumans@p +subj@N +subject@NAvVt +subjected@AvVt +subjecting@AvVt +subjection@N +subjective@AN +subjectively@v +subjectivity@N +subjects@pvVt +subjoin@t +subjoined@t +subjoining@t +subjoins@t +subjugate@t +subjugated@t +subjugates@t +subjugating@t +subjugation@N +subjunctive@AN +subjunctives@p +sublease@NVt +subleased@AVt +subleases@pVt +subleasing@AVt +sublet@VN +sublets@Vp +subletting@V +sublieutenant@N +sublieutenants@p +sublimate@VtNA +sublimated@VtA +sublimates@Vtp +sublimating@VtA +sublimation@N +sublime@AN +sublimed@V +sublimely@v +sublimer@N +sublimes@p +sublimest@? +subliminal@A +subliminally@v +subliming@V +sublimity@N +submarine@N +submariner@N +submariners@p +submarines@p +submerge@Vt +submerged@A +submergence@N +submerges@Vt +submerging@Vt +submerse@t +submersed@t +submerses@t +submersible@AN +submersibles@p +submersing@t +submersion@N +submission@N +submissions@p +submissive@A +submissively@v +submissiveness@N +submit@Vti +submits@Vti +submitted@V +submitter@? +submitting@V +subnormal@AN +suborbital@A +subordinate@ANVt +subordinated@V +subordinates@pVt +subordinating@AVt +subordination@N +suborn@t +subornation@N +suborned@t +suborning@t +suborns@t +subplot@N +subplots@p +subpoena@NV +subpoenaed@AV +subpoenaing@AV +subpoenas@pV +subprogram@? +subprograms@p +subroutine@N +subroutines@p +subs@pV +subscribe@Vi +subscribed@V +subscriber@N +subscribers@p +subscribes@Vi +subscribing@V +subscript@AN +subscription@N +subscriptions@p +subscripts@p +subsection@N +subsections@p +subsequent@A +subsequently@v +subservience@N +subservient@A +subserviently@v +subset@N +subsets@p +subside@i +subsided@i +subsidence@N +subsides@i +subsidiaries@p +subsidiarity@? +subsidiary@AN +subsidies@p +subsiding@i +subsidisation@? +subsidise@? +subsidised@? +subsidiser@? +subsidisers@p +subsidises@? +subsidising@? +subsidization@N +subsidize@t +subsidized@t +subsidizer@N +subsidizers@p +subsidizes@t +subsidizing@t +subsidy@N +subsist@Vt +subsisted@Vt +subsistence@N +subsisting@Vt +subsists@Vt +subsoil@Nt +subsonic@A +subspace@N +subspecies@N +substance@N +substances@p +substandard@A +substantial@AN +substantially@v +substantiate@t +substantiated@t +substantiates@t +substantiating@t +substantiation@N +substantiations@p +substantive@NA +substantives@p +substation@N +substations@p +substitute@VN +substituted@V +substitutes@Vp +substituting@V +substitution@N +substitutions@p +substrata@? +substrate@N +substratum@N +substratums@p +substructure@N +substructures@p +subsume@t +subsumed@t +subsumes@t +subsuming@t +subsystem@? +subsystems@p +subteen@N +subteens@p +subtenant@N +subtenants@p +subtend@t +subtended@t +subtending@t +subtends@t +subterfuge@N +subterfuges@p +subterranean@A +subtext@N +subtexts@p +subtitle@Nt +subtitled@At +subtitles@pt +subtitling@At +subtle@A +subtler@? +subtlest@? +subtleties@p +subtlety@N +subtly@v +subtotal@NV +subtotaled@V +subtotaling@AV +subtotalled@? +subtotalling@V +subtotals@pV +subtract@V +subtracted@V +subtracting@V +subtraction@N +subtractions@p +subtracts@V +subtrahend@N +subtrahends@p +subtropical@A +suburb@N +suburban@AN +suburbanite@N +suburbanites@p +suburbans@p +suburbia@N +suburbs@p +subvention@N +subventions@p +subversion@N +subversive@AN +subversively@v +subversiveness@N +subversives@p +subvert@t +subverted@t +subverting@t +subverts@t +subway@N +subways@p +subzero@A +succeed@i +succeeded@i +succeeding@i +succeeds@i +success@N +successes@? +successful@A +successfully@v +succession@N +successions@p +successive@A +successively@v +successor@N +successors@p +succinct@A +succincter@? +succinctest@? +succinctly@v +succinctness@N +succor@N +succored@A +succoring@A +succors@p +succotash@N +succour@Nt +succoured@At +succouring@At +succours@pt +succubi@? +succubus@N +succulence@N +succulent@AN +succulents@p +succumb@i +succumbed@i +succumbing@i +succumbs@i +such@Dv +suchlike@AN +suck@VtiN +sucked@VtiA +sucker@Nti +suckered@Ati +suckering@Ati +suckers@pti +sucking@A +suckle@Vt +suckled@Vt +suckles@Vt +suckling@N +sucklings@p +sucks@! +sucre@N +sucrose@N +suction@N +suctioned@A +suctioning@A +suctions@p +sudan@N +sudanese@NA +sudden@ANv +suddenly@v +suddenness@N +sudra@N +suds@p +sudsier@? +sudsiest@? +sudsy@? +sue@N +sued@V +suede@N +sues@p +suet@N +suetonius@N +suez@N +suffer@Vti +sufferance@N +suffered@Vti +sufferer@N +sufferers@p +suffering@N +sufferings@p +suffers@Vti +suffice@V +sufficed@V +suffices@V +sufficiency@N +sufficient@AN +sufficiently@? +sufficing@V +suffix@NVt +suffixed@AVt +suffixes@? +suffixing@AVt +suffocate@V +suffocated@V +suffocates@V +suffocating@V +suffocation@? +suffolk@N +suffragan@AN +suffragans@p +suffrage@N +suffragette@N +suffragettes@p +suffragist@N +suffragists@p +suffuse@t +suffused@t +suffuses@t +suffusing@t +suffusion@N +sufi@N +sufism@N +sugar@N +sugarcane@? +sugarcoat@? +sugarcoated@? +sugarcoating@? +sugarcoats@p +sugared@A +sugarier@? +sugariest@? +sugaring@A +sugarless@A +sugars@p +sugary@A +suggest@t +suggested@t +suggester@N +suggestible@A +suggesting@t +suggestion@N +suggestions@p +suggestive@A +suggestively@v +suggests@t +suicidal@A +suicide@N +suicides@p +suing@V +suit@NVt +suitability@? +suitable@A +suitably@v +suitcase@N +suitcases@p +suite@N +suited@A +suites@p +suiting@N +suitor@N +suitors@p +suits@pVt +sukarno@N +sukiyaki@N +sukkot@? +sukkoth@N +sukkoths@p +sulawesi@N +sulfate@Nti +sulfates@pti +sulfide@? +sulfides@? +sulfur@N +sulfured@A +sulfuric@A +sulfuring@A +sulfurous@A +sulfurs@p +sulk@iN +sulked@iA +sulkier@A +sulkies@A +sulkiest@A +sulkily@? +sulkiness@? +sulking@iA +sulks@ip +sulky@AN +sulla@N +sullen@AN +sullener@? +sullenest@? +sullenly@v +sullenness@N +sullied@V +sullies@V +sullivan@N +sully@N +sullying@V +sulphate@Nt +sulphates@pt +sulphide@N +sulphides@p +sulphur@N +sulphured@A +sulphuric@A +sulphuring@A +sulphurous@A +sulphurs@p +sultan@N +sultana@N +sultanas@p +sultanate@N +sultanates@p +sultans@p +sultrier@A +sultriest@A +sultriness@N +sultry@A +sum@N +sumac@N +sumach@N +sumatra@N +sumerian@NA +summaries@p +summarily@v +summarise@t +summarised@t +summarises@t +summarising@t +summarize@t +summarized@t +summarizes@t +summarizing@t +summary@NA +summat@? +summation@N +summations@p +summed@V +summer@N +summered@A +summerhouse@N +summerhouses@p +summerier@? +summeriest@? +summering@A +summers@N +summertime@N +summery@? +summing@V +summit@N +summitry@N +summits@p +summon@t +summoned@t +summoner@N +summoners@p +summoning@t +summons@N +summonsed@A +summonses@p +summonsing@A +sumo@N +sump@N +sumps@p +sumptuous@A +sumptuously@v +sumptuousness@N +sums@p +sumter@N +sun@NV +sunbathe@i +sunbathed@i +sunbather@N +sunbathers@p +sunbathes@i +sunbathing@N +sunbeam@N +sunbeams@p +sunbed@? +sunbeds@p +sunbelt@? +sunblock@? +sunblocks@p +sunbonnet@N +sunbonnets@p +sunburn@N +sunburned@V +sunburning@V +sunburns@p +sunburnt@V +sundae@N +sundaes@p +sundanese@? +sunday@N +sundays@v +sundeck@? +sundecks@p +sunder@VN +sundered@VA +sundering@VA +sunders@Vp +sundial@N +sundials@p +sundown@N +sundowns@p +sundress@N +sundresses@? +sundries@p +sundry@DrN +sunfish@N +sunfishes@? +sunflower@N +sunflowers@p +sung@N +sunglasses@p +sunhat@N +sunhats@p +sunk@VAN +sunken@VA +sunlamp@? +sunlamps@p +sunless@A +sunlight@N +sunlit@A +sunned@A +sunni@N +sunnier@A +sunniest@A +sunning@A +sunny@A +sunnyvale@N +sunrise@N +sunrises@p +sunroof@? +sunroofs@p +suns@pV +sunscreen@? +sunscreens@p +sunset@N +sunsets@p +sunshade@N +sunshades@p +sunshine@N +sunspot@N +sunspots@p +sunspotses@? +sunstroke@N +suntan@N +suntanned@? +suntanning@? +suntans@N +suntrap@N +suntraps@p +sunup@N +sup@N +super@AN! +superabundance@N +superabundances@p +superabundant@? +superannuate@t +superannuated@A +superannuates@t +superannuating@V +superannuation@N +superb@A +superber@? +superbest@? +superbly@v +supercharge@t +supercharged@t +supercharger@N +superchargers@p +supercharges@t +supercharging@t +supercilious@A +superciliously@v +superciliousness@N +supercomputer@? +supercomputers@p +superconductivity@N +superconductor@N +superconductors@p +superego@N +superegos@p +superficial@A +superficiality@? +superficially@v +superfluity@N +superfluous@A +superfluously@? +superfluousness@? +superglue@? +supergrass@? +supergrasses@? +superhero@N +superheroes@p +superhighway@N +superhighways@p +superhuman@A +superimpose@t +superimposed@A +superimposes@t +superimposing@t +superintend@V +superintended@V +superintendence@? +superintendency@N +superintendent@NA +superintendents@p +superintending@V +superintends@V +superior@AN +superiority@N +superiors@p +superlative@AN +superlatively@v +superlatives@p +superman@N +supermarket@N +supermarkets@p +supermen@p +supermodel@? +supermodels@p +supernatural@AN +supernaturally@v +supernaturals@p +supernova@N +supernovae@p +supernovas@p +supernumeraries@p +supernumerary@AN +superpower@N +superpowers@p +supers@p! +superscript@AN +superscripts@p +supersede@t +superseded@t +supersedes@t +superseding@t +supersonic@A +superstar@N +superstars@p +superstate@N +superstates@p +superstition@N +superstitions@p +superstitious@A +superstitiously@? +superstore@? +superstores@? +superstructure@N +superstructures@p +supertanker@N +supertankers@p +superuser@? +superusers@p +supervene@i +supervened@i +supervenes@i +supervening@i +supervise@t +supervised@t +supervises@t +supervising@t +supervision@N +supervisions@p +supervisor@N +supervisors@p +supervisory@A +superwoman@N +superwomen@p +supine@AN +supinely@? +supped@V +supper@Nti +suppers@pti +suppertime@N +supping@V +supplant@t +supplanted@t +supplanting@t +supplants@t +supple@AV +supplement@NVt +supplemental@A +supplementary@AN +supplementation@? +supplemented@AVt +supplementing@AVt +supplements@pVt +suppleness@N +suppler@A +supplest@A +suppliant@AN +suppliants@p +supplicant@NA +supplicants@p +supplicate@Vt +supplicated@V +supplicates@Vt +supplicating@V +supplication@N +supplications@p +supplied@V +supplier@N +suppliers@p +supplies@V +supply@VtNv +supplying@V +support@tN +supportable@A +supported@tA +supporter@N +supporters@p +supporting@A +supportive@? +supports@tp +suppose@t +supposed@A +supposedly@v +supposes@t +supposing@V +supposition@N +suppositions@p +suppositories@p +suppository@N +suppress@t +suppressant@? +suppressants@p +suppressed@t +suppresses@? +suppressing@t +suppression@N +suppressor@? +suppressors@p +suppurate@i +suppurated@i +suppurates@i +suppurating@i +suppuration@N +supranational@A +supremacist@NA +supremacists@p +supremacy@N +supreme@A +supremely@v +supremo@N +supremos@p +sups@p +surabaya@N +surat@N +surcease@NV +surceased@AV +surceases@pV +surceasing@AV +surcharge@NVt +surcharged@V +surcharges@pVt +surcharging@V +sure@Av +surefire@? +surefooted@? +surely@v +sureness@N +surer@A +surest@A +sureties@p +surety@N +surf@Ni +surface@NVti +surfaced@V +surfaces@pVti +surfacing@V +surfboard@N +surfboarded@A +surfboarding@N +surfboards@p +surfed@Ai +surfeit@Nti +surfeited@Ati +surfeiting@Ati +surfeits@pti +surfer@N +surfers@p +surfing@N +surfs@pi +surge@Nit +surged@V +surgeon@N +surgeons@p +surgeries@? +surgery@N +surges@pit +surgical@A +surgically@v +surging@V +surinam@N +suriname@? +surlier@? +surliest@? +surliness@N +surly@A +surmise@VN +surmised@V +surmises@Vp +surmising@V +surmount@t +surmountable@A +surmounted@t +surmounting@t +surmounts@t +surname@Nt +surnames@pt +surpass@t +surpassed@t +surpasses@? +surpassing@AvN +surplice@N +surplices@p +surplus@NA +surplused@A +surpluses@? +surplusing@A +surplussed@? +surplussing@? +surprise@tN +surprised@V +surprises@tp +surprising@A +surprisingly@v +surprisings@p +surreal@AN +surrealism@N +surrealist@NA +surrealistic@A +surrealists@p +surrender@tN +surrendered@tA +surrendering@tA +surrenders@tp +surreptitious@A +surreptitiously@? +surreptitiousness@? +surrey@N +surreys@p +surrogacy@? +surrogate@NVt +surrogates@pVt +surround@tN +surrounded@tA +surrounding@NA +surroundings@p +surrounds@tp +surtax@Nt +surtaxed@At +surtaxes@? +surtaxing@At +surtitle@? +surtitles@? +surveillance@N +survey@VtN +surveyed@VtA +surveying@N +surveyor@N +surveyors@p +surveys@Vtp +survivable@A +survival@N +survivals@p +survive@t +survived@V +survives@t +surviving@V +survivor@N +survivors@p +susanna@N +susceptibilities@? +susceptibility@N +susceptible@A +suse@? +sushi@N +suspect@VtiNA +suspected@VtiA +suspecting@VtiA +suspects@Vtip +suspend@ti +suspended@ti +suspender@N +suspenders@p +suspending@ti +suspends@ti +suspense@N +suspenseful@? +suspension@N +suspensions@p +suspicion@N +suspicions@p +suspicious@A +suspiciously@v +susquehanna@N +suss@t +sussed@t +susses@? +sussex@N +sussing@t +sustain@t +sustainability@? +sustainable@A +sustained@t +sustaining@t +sustains@t +sustenance@N +suttee@N +suture@Nt +sutured@V +sutures@pt +suturing@V +suv@? +suva@N +suzerainty@N +svelte@A +svelter@A +sveltest@A +svengali@? +sw@N +swab@N +swabbed@V +swabbing@V +swabs@p +swaddle@tN +swaddled@V +swaddles@tp +swaddling@V +swag@NV +swagged@V +swagger@itNA +swaggered@itA +swaggerer@? +swaggering@A +swaggers@itp +swagging@V +swags@pV +swahili@N +swahilis@p +swain@N +swains@p +swallow@ViN +swallowed@ViA +swallowing@ViA +swallows@Vip +swallowtail@N +swallowtails@p +swam@V +swami@N +swamis@p +swamp@NVt +swamped@AVt +swampier@A +swampiest@A +swamping@AVt +swamps@pVt +swampy@A +swan@N +swanee@N +swank@iNA +swanked@iA +swanker@? +swankest@? +swankier@A +swankiest@A +swanking@iA +swanks@ip +swanky@A +swanned@A +swanning@A +swans@p +swansea@N +swansong@? +swansongs@p +swap@VN +swapped@V +swapping@V +swaps@Vp +sward@NV +swards@pV +swarm@NitV +swarmed@AitV +swarming@AitV +swarms@pitV +swarthier@? +swarthiest@? +swarthy@A +swash@itN +swashbuckler@N +swashbucklers@p +swashbuckling@A +swashed@itA +swashes@? +swashing@itA +swastika@N +swastikas@p +swat@N +swatch@N +swatches@? +swath@N +swathe@tN +swathed@A +swathes@tp +swathing@A +swaths@p +swats@p +swatted@Vi +swatter@N +swattered@A +swattering@A +swatters@p +swatting@Vi +sway@VtN +swaybacked@? +swayed@VtA +swaying@VtA +sways@Vtp +swazi@N +swaziland@N +swear@VitN +swearer@N +swearers@p +swearing@V +swears@Vitp +swearword@N +swearwords@p +sweat@NV +sweatband@N +sweatbands@p +sweated@A +sweater@N +sweaters@p +sweatier@A +sweatiest@A +sweating@V +sweatpants@p +sweats@pV +sweatshirt@? +sweatshirts@p +sweatshop@N +sweatshops@p +sweatsuit@? +sweatsuits@p +sweaty@A +swede@N +sweden@N +swedes@p +swedish@AN +sweep@VNti +sweeper@N +sweepers@p +sweeping@A +sweepings@p +sweeps@N +sweepstake@N +sweepstakes@N +sweet@AvN +sweetbread@N +sweetbreads@p +sweetbriar@? +sweetbriars@p +sweetbrier@N +sweetbriers@p +sweetcorn@? +sweeten@V +sweetened@V +sweetener@N +sweeteners@p +sweetening@N +sweetens@V +sweeter@? +sweetest@? +sweetheart@N +sweethearts@p +sweetie@N +sweeties@p +sweetish@? +sweetly@v +sweetmeat@N +sweetmeats@p +sweetness@N +sweets@pv +swell@VitNA +swelled@V +sweller@? +swellest@? +swellhead@tN +swellheaded@A +swellheads@tp +swelling@N +swellings@p +swells@Vitp +swelter@itN +sweltered@itA +sweltering@A +swelters@itp +swept@V +swerve@VN +swerved@VA +swerves@Vp +swerving@VA +swift@AvN +swifter@N +swiftest@? +swiftly@v +swiftness@N +swifts@pv +swig@NV +swigged@Vi +swigging@Vi +swigs@pV +swill@VtN +swilled@VtA +swilling@VtA +swills@Vtp +swim@VtNi +swimmer@? +swimmers@p +swimming@NVA +swimmingly@v +swims@Vtpi +swimsuit@N +swimsuits@p +swimwear@? +swindle@VtN +swindled@A +swindler@N +swindlers@p +swindles@Vtp +swindling@VtA +swine@N +swines@p +swing@VNit +swingeing@A +swinger@N +swingers@p +swinging@V +swings@Vpit +swinish@A +swipe@VtN +swiped@V +swipes@p +swiping@V +swirl@ViN +swirled@ViA +swirlier@A +swirliest@A +swirling@ViA +swirls@Vip +swirly@A +swish@VitNA +swished@VitA +swisher@N +swishes@? +swishest@? +swishing@VitA +swiss@AN +swisses@? +switch@NVt +switchable@? +switchback@N +switchbacks@p +switchblade@N +switchblades@p +switchboard@N +switchboards@p +switched@AVt +switcher@N +switches@? +switching@AVt +switzerland@N +swivel@NV +swiveled@V +swiveling@V +swivelled@V +swivelling@V +swivels@pV +swiz@? +swizz@? +swizzle@Nt +swizzled@At +swizzles@pt +swizzling@At +swollen@VA +swoon@iN +swooned@iA +swooning@iA +swoons@ip +swoop@itN +swooped@itA +swooping@itA +swoops@itp +swoosh@VN +swooshed@VA +swooshes@? +swooshing@VA +swop@NV +swopped@ti +swopping@ti +swops@pV +sword@N +swordfish@N +swordfishes@? +swordplay@N +swords@N +swordsman@N +swordsmanship@N +swordsmen@p +swore@V +sworn@VA +swot@VN +swots@Vp +swotted@Vt +swotting@Vt +swum@V +swung@V +sybarite@N +sybarites@p +sybaritic@A +sycamore@N +sycamores@p +sycophancy@? +sycophant@N +sycophantic@A +sycophants@p +sydney@N +syllabi@N +syllabic@AN +syllabication@N +syllabification@N +syllabified@t +syllabifies@? +syllabify@V +syllabifying@t +syllable@NVt +syllables@pVt +syllabub@N +syllabubs@p +syllabus@N +syllabuses@p +syllogism@N +syllogisms@p +syllogistic@AN +sylph@N +sylphlike@A +sylphs@p +sylvan@AN +symbioses@p +symbiosis@N +symbiotic@A +symbiotically@v +symbol@NV +symbolic@A +symbolical@? +symbolically@v +symbolisation@N +symbolise@ti +symbolised@ti +symbolises@ti +symbolising@ti +symbolism@N +symbolization@? +symbolize@ti +symbolized@V +symbolizes@ti +symbolizing@V +symbols@pV +symmetric@A +symmetrical@A +symmetrically@v +symmetricly@? +symmetries@p +symmetry@N +sympathetic@A +sympathetically@? +sympathies@p +sympathise@i +sympathised@i +sympathiser@? +sympathisers@p +sympathises@i +sympathising@i +sympathize@i +sympathized@i +sympathizer@N +sympathizers@p +sympathizes@i +sympathizing@i +sympathy@N +symphonic@A +symphonies@p +symphony@N +symposia@? +symposium@N +symposiums@p +symptom@N +symptomatic@A +symptoms@p +synagog@? +synagogs@p +synagogue@N +synagogues@p +synapse@N +synapses@p +synaptic@A +sync@VN +synced@VA +synch@? +synched@? +synches@? +synching@? +synchronicity@? +synchronisation@N +synchronisations@p +synchronise@it +synchronised@it +synchronises@it +synchronising@it +synchronization@N +synchronizations@p +synchronize@Vt +synchronized@V +synchronizes@Vt +synchronizing@V +synchronous@A +synchronously@v +synchs@p +syncing@VA +syncopate@t +syncopated@A +syncopates@t +syncopating@t +syncopation@N +syncs@Vp +syndicalism@N +syndicalist@AN +syndicalists@p +syndicate@NVt +syndicated@V +syndicates@pVt +syndicating@V +syndication@? +syndrome@N +syndromes@p +synergies@p +synergism@N +synergistic@A +synergy@N +synge@N +synod@N +synods@p +synonym@N +synonymous@A +synonyms@p +synopses@p +synopsis@N +syntactic@A +syntactical@? +syntactically@v +syntax@N +syntheses@p +synthesis@N +synthesise@? +synthesised@A +synthesiser@? +synthesisers@p +synthesises@? +synthesising@A +synthesize@t +synthesized@t +synthesizer@N +synthesizers@p +synthesizes@t +synthesizing@t +synthetic@AN +synthetically@? +synthetics@p +synthetize@? +synthetized@? +synthetizing@? +syphilis@N +syphilitic@? +syphilitics@p +syphon@N +syphoned@A +syphoning@A +syphons@p +syracuse@N +syria@N +syriac@N +syrian@AN +syrians@p +syringe@Nt +syringed@At +syringes@p +syringing@At +syrup@Nt +syrups@pt +syrupy@A +sysadmin@? +sysadmins@p +sysop@? +sysops@p +system@N +systematic@A +systematically@? +systematisation@N +systematise@t +systematised@t +systematises@t +systematising@t +systematization@N +systematize@t +systematized@t +systematizes@t +systematizing@t +systemic@A +systemically@? +systemics@p +systems@p +systolic@? +szechuan@? +ta@! +tab@N +tabasco@N +tabbed@V +tabbies@p +tabbing@V +tabby@AN +tabernacle@N +tabernacles@p +table@Nt +tableau@N +tableaus@p +tableaux@? +tablecloth@N +tablecloths@p +tabled@V +tableland@N +tablelands@p +tables@pt +tablespoon@N +tablespoonful@N +tablespoonfuls@p +tablespoons@p +tablespoonsful@? +tablet@N +tablets@p +tableware@N +tabling@NV +tabloid@N +tabloids@p +taboo@ANV +tabooed@AV +tabooing@AV +taboos@pV +tabriz@N +tabs@p +tabu@ANt +tabued@At +tabuing@At +tabular@A +tabulate@VtA +tabulated@V +tabulates@Vtp +tabulating@V +tabulation@N +tabulations@p +tabulator@N +tabulators@p +tabus@pt +tachograph@N +tachographs@p +tachometer@N +tachometers@p +tacit@A +tacitly@v +tacitness@N +taciturn@A +taciturnity@N +tacitus@N +tack@NVti +tacked@AVti +tackier@A +tackiest@A +tackiness@N +tacking@AVti +tackle@Nt +tackled@V +tackler@N +tacklers@p +tackles@pt +tackling@N +tacks@pVti +tacky@A +taco@N +tacoma@N +tacos@p +tact@N +tactful@A +tactfully@? +tactic@N +tactical@A +tactically@v +tactician@N +tacticians@p +tactics@p +tactile@A +tactless@A +tactlessly@v +tactlessness@N +tad@N +tadpole@N +tadpoles@p +tads@p +tadzhik@N +tadzhikistan@N +taed@! +taegu@N +taejon@N +taffeta@N +taffies@? +taffy@N +taft@N +tag@NVt +tagalog@NA +tagged@V +tagging@V +tagliatelle@N +tagore@N +tags@pVt +tahiti@N +tahitian@AN +tahitians@p +tahoe@N +taichung@N +tail@NVtiA +tailback@N +tailbacks@p +tailboard@N +tailboards@p +tailbone@? +tailbones@? +tailcoat@? +tailcoats@p +tailed@AVti +tailgate@NV +tailgated@V +tailgates@pV +tailgating@V +tailing@N +tailless@A +taillight@N +taillights@p +tailor@N +tailored@AN +tailoring@A +tailors@p +tailpiece@N +tailpieces@p +tailpipe@N +tailpipes@p +tails@p!v +tailspin@N +tailspins@p +tailwind@N +tailwinds@p +taint@VN +tainted@VA +tainting@VA +taints@Vp +taipei@N +taiping@N +taiwan@N +taiwanese@p +taiyuan@N +tajikistan@? +take@Vi +takeaway@AN +takeaways@p +taken@V +takeoff@N +takeoffs@p +takeout@? +takeouts@p +takeover@N +takeovers@p +taker@N +takers@p +takes@Vi +taking@AN +takings@p +talbot@N +talc@NVA +tale@N +talent@N +talented@N +talents@p +tales@N +taliesin@N +talisman@N +talismans@p +talk@iNt +talkative@A +talkativeness@N +talked@iAt +talker@N +talkers@p +talkie@N +talkies@p +talking@iAt +talks@ipt +tall@A +tallahassee@N +tallboy@N +tallboys@p +taller@? +tallest@? +tallied@p +tallies@p +tallinn@N +tallness@N +tallow@Nt +tally@N +tallyho@N!ti +tallyhoed@p +tallyhoing@A!ti +tallyhos@p!ti +tallying@p +talmud@N +talmudic@? +talmuds@p +talon@N +talons@p +tam@N +tamable@N +tamale@N +tamales@p +tamarind@N +tamarinds@p +tambourine@N +tambourines@p +tame@At +tameable@A +tamed@A +tamely@? +tameness@? +tamer@A +tamerlane@N +tamers@p +tames@pt +tamest@A +tamil@NA +taming@A +tammany@N +tammuz@N +tamoxifen@? +tamp@ti +tampa@N +tamped@ti +tamper@iN +tampered@iA +tampering@iA +tampers@ip +tamping@ti +tampon@Nt +tampons@pt +tamps@ti +tams@p +tamworth@N +tan@N +tanager@N +tanagers@p +tancred@N +tandem@NAv +tandems@pv +tandoori@N +taney@N +tang@N +tanganyika@N +tangelo@N +tangelos@p +tangent@NA +tangential@A +tangents@p +tangerine@N +tangerines@p +tangibility@N +tangible@AN +tangibles@p +tangibly@v +tangier@A +tangiers@p +tangiest@A +tangle@NVit +tangled@A +tangles@pVit +tangling@AVit +tango@NV +tangoed@AV +tangoing@AV +tangos@pV +tangs@p +tangshan@N +tangy@A +tank@Nti +tankard@N +tankards@p +tanked@A +tanker@N +tankers@p +tankful@N +tankfuls@p +tanking@Ati +tanks@pti +tanned@A +tanner@N +tanneries@? +tanners@p +tannery@N +tannest@? +tannin@N +tanning@N +tans@p +tansy@N +tantalise@t +tantalised@t +tantalises@t +tantalising@t +tantalisingly@v +tantalize@t +tantalized@t +tantalizes@t +tantalizing@A +tantalizingly@v +tantalus@N +tantamount@? +tantrum@N +tantrums@p +tanzania@N +tanzanian@? +tanzanians@p +tao@N +taoism@NA +taoisms@p +taoist@NA +taoists@p +tap@VtiN +tapas@N +tape@NV +taped@VtiA +taper@VN +tapered@VA +tapering@VA +tapers@Vp +tapes@N +tapestries@p +tapestry@N +tapeworm@N +tapeworms@p +taping@VtiA +tapioca@N +tapir@N +tapirs@p +tapped@V +tappet@N +tappets@p +tapping@NV +taproom@N +taprooms@p +taproot@N +taproots@p +taps@N +tar@NVt +tara@N +taramasalata@N +tarantula@N +tarantulae@p +tarantulas@p +tarawa@N +tarball@? +tarballs@p +tardier@A +tardiest@A +tardily@? +tardiness@? +tardy@A +tare@N +tared@V +tares@p +target@Nt +targeted@At +targeting@At +targets@pt +tariff@NV +tariffs@pV +tarim@N +taring@V +tarkington@N +tarmac@N +tarmacadam@? +tarmacked@? +tarmacking@? +tarmacs@p +tarn@N +tarnish@VN +tarnished@VA +tarnishes@? +tarnishing@VA +tarns@p +taro@N +taros@p +tarot@NA +tarots@p +tarp@N +tarpaulin@N +tarpaulins@p +tarpon@N +tarpons@p +tarps@p +tarragon@N +tarragons@p +tarred@NV +tarried@V +tarrier@N +tarries@V +tarriest@? +tarring@NV +tarry@V +tarrying@V +tars@pVt +tart@NVA +tartan@N +tartans@p +tartar@N +tartars@p +tartary@N +tarted@AV +tarter@? +tartest@? +tartiest@? +tarting@AV +tartly@v +tartness@N +tarts@pV +tartuffe@N +tarty@? +tarzan@N +tashkent@N +task@Nt +tasked@At +tasking@At +taskmaster@N +taskmasters@p +tasks@pt +tasman@N +tasmania@N +tasmanian@? +tass@N +tassel@NV +tasseled@V +tasseling@V +tasselled@V +tasselling@V +tassels@pV +taste@NVt +tasted@V +tasteful@A +tastefully@v +tasteless@A +tastelessly@v +tastelessness@N +taster@N +tasters@p +tastes@pVt +tastier@? +tastiest@? +tastiness@N +tasting@V +tastings@V +tasty@A +tat@N +tatar@NA +tatars@p +tate@N +tater@N +taters@p +tats@p +tatted@? +tatter@VN +tattered@N +tattering@VA +tatters@Vp +tattie@? +tattier@? +tatties@p +tattiest@? +tatting@N +tattle@itN +tattled@V +tattler@N +tattlers@p +tattles@itp +tattletale@NA +tattletales@p +tattling@V +tattoo@NV +tattooed@p +tattooing@p +tattooist@N +tattooists@p +tattoos@p +tatty@A +tatum@N +taught@V +taunt@tNA +taunted@tA +taunting@tA +taunts@tp +taupe@N +taurus@NA +tauruses@? +taut@A +tauten@V +tautened@V +tautening@V +tautens@V +tauter@? +tautest@? +tautly@? +tautness@? +tautological@A +tautologically@v +tautologies@? +tautology@N +tavern@N +taverns@p +tawdrier@A +tawdriest@A +tawdriness@N +tawdry@A +tawney@AN +tawnier@A +tawniest@A +tawny@N +tax@Nt +taxable@AN +taxation@N +taxed@At +taxes@? +taxi@NV +taxicab@N +taxicabs@p +taxidermist@N +taxidermists@p +taxidermy@N +taxied@AV +taxies@? +taxiing@AV +taxing@At +taxis@N +taxiway@N +taxiways@p +taxman@? +taxmen@? +taxonomic@A +taxonomies@? +taxonomy@N +taxpayer@N +taxpayers@p +taxying@? +taylor@N +tb@N +tba@? +tbilisi@N +tbs@N +tbsp@? +tc@N +tchaikovsky@N +td@N +tea@N +teabag@? +teabags@p +teacake@N +teacakes@p +teach@N +teachable@? +teacher@N +teachers@p +teaches@? +teaching@N +teachings@p +teacup@N +teacups@p +teak@N +teakettle@N +teakettles@p +teaks@p +teal@N +teals@p +team@NVti +teamed@AVti +teaming@AVti +teammate@N +teammates@p +teams@pVti +teamster@N +teamsters@p +teamwork@N +teapot@N +teapots@p +tear@NVti +tearaway@? +tearaways@p +teardrop@N +teardrops@p +teared@AVti +tearful@A +tearfully@v +teargas@p +teargases@? +teargassed@? +teargasses@? +teargassing@? +tearier@A +teariest@A +tearing@A +tearjerker@? +tearjerkers@p +tearoom@N +tearooms@p +tears@p +teary@A +teas@p +tease@VtN +teased@VtA +teasel@NV +teasels@pV +teaser@N +teasers@p +teases@Vtp +teasing@VtA +teasingly@v +teaspoon@N +teaspoonful@N +teaspoonfuls@p +teaspoons@p +teaspoonsful@? +teat@N +teatime@N +teatimes@p +teats@p +teazel@NV +teazels@pV +teazle@NV +teazles@pV +tech@N +techie@? +techies@? +technical@A +technicalities@? +technicality@N +technically@v +technician@N +technicians@p +technicolor@N +technique@N +techniques@p +techno@? +technocracies@p +technocracy@N +technocrat@A +technocratic@? +technocrats@p +technological@? +technologically@v +technologies@? +technologist@N +technologists@p +technology@N +technophobe@? +technophobes@? +techs@p +tectonic@A +tectonics@N +tecumseh@N +ted@N +teddies@p +teddy@N +tedious@A +tediously@? +tediousness@N +tedium@N +teds@p +tee@NV +teed@V +teeing@V +teem@it +teemed@it +teeming@A +teems@it +teen@AN +teenage@AN +teenaged@A +teenager@N +teenagers@p +teenier@A +teeniest@A +teens@p +teensier@? +teensiest@? +teensy@A +teeny@A +teenybopper@N +teenyboppers@p +teepee@N +teepees@p +tees@N +teeter@N +teetered@A +teetering@A +teeters@p +teeth@N +teethe@i +teethed@i +teethes@i +teething@Ni +teetotal@A +teetotaler@N +teetotalers@p +teetotalism@N +teetotaller@? +teetotallers@p +teflon@N +teflons@p +tegucigalpa@N +teheran@N +tehran@? +tel@N +telecast@VN +telecasted@VA +telecaster@? +telecasters@p +telecasting@VA +telecasts@Vp +telecommunication@N +telecommunications@N +telecommute@? +telecommuted@? +telecommuter@? +telecommuters@p +telecommutes@? +telecommuting@? +teleconference@? +teleconferenced@? +teleconferences@? +teleconferencing@? +telegenic@A +telegram@N +telegrams@p +telegraph@NVt +telegraphed@AVt +telegrapher@? +telegraphers@p +telegraphese@N +telegraphic@A +telegraphing@AVt +telegraphs@pVt +telegraphy@N +telekinesis@N +telemachus@N +telemann@N +telemarketing@? +telemeter@Nt +telemeters@pt +telemetries@? +telemetry@N +teleological@? +teleology@N +telepathic@A +telepathically@v +telepathy@N +telephone@NV +telephoned@V +telephones@pV +telephonic@A +telephoning@V +telephonist@N +telephonists@p +telephony@N +telephoto@A +telephotos@p +teleprinter@N +teleprinters@p +teleprompter@? +telesales@? +telescope@NV +telescoped@V +telescopes@pV +telescopic@A +telescoping@V +teletext@? +telethon@N +telethons@p +teletype@NV +teletypes@pV +teletypewriter@N +teletypewriters@p +televangelism@? +televangelist@? +televangelists@p +televise@Vt +televised@Vt +televises@Vt +televising@Vt +television@N +televisions@p +teleworker@? +teleworkers@p +teleworking@? +telex@N +telexed@A +telexes@? +telexing@A +tell@N +teller@N +tellers@p +tellies@p +telling@A +tellingly@v +tells@p +telltale@N +telltales@p +telly@N +telnet@? +telnets@p +telnetted@? +telnetting@? +telugu@NA +temblor@N +temblors@p +temerity@N +temp@N +tempe@N +temped@A +temper@Nt +tempera@N +temperament@N +temperamental@A +temperamentally@? +temperaments@p +temperance@N +temperas@p +temperate@A +temperature@N +temperatures@p +tempered@A +tempering@At +tempers@pt +tempest@N +tempests@p +tempestuous@A +tempestuously@v +tempestuousness@N +tempi@p +temping@A +templar@N +template@N +templates@p +temple@N +temples@p +tempo@N +temporal@A +temporally@v +temporaries@p +temporarily@v +temporariness@N +temporary@AN +temporise@i +temporised@i +temporises@i +temporising@i +temporize@i +temporized@i +temporizes@i +temporizing@i +tempos@p +temps@p +tempt@t +temptation@N +temptations@p +tempted@t +tempter@N +tempters@p +tempting@A +temptingly@v +temptress@N +temptresses@? +tempts@t +tempura@N +ten@N +tenability@N +tenable@A +tenacious@A +tenaciously@? +tenacity@? +tenancies@p +tenancy@N +tenant@Nti +tenanted@Ati +tenanting@Ati +tenants@pti +tench@N +tend@Vit +tended@Vit +tendencies@? +tendency@N +tendentious@A +tendentiously@v +tendentiousness@N +tender@AtN +tendered@At +tenderer@N +tenderest@? +tenderfeet@p +tenderfoot@N +tenderfoots@p +tenderhearted@A +tendering@At +tenderise@t +tenderised@t +tenderiser@N +tenderisers@p +tenderises@t +tenderising@t +tenderize@t +tenderized@t +tenderizer@N +tenderizers@p +tenderizes@t +tenderizing@t +tenderloin@N +tenderloins@p +tenderly@v +tenderness@N +tenders@pt +tending@Vit +tendinitis@p +tendon@N +tendonitis@p +tendons@p +tendril@N +tendrils@p +tends@Vit +tenement@N +tenements@p +tenet@N +tenets@p +tenfold@Av +tenner@N +tenners@p +tennessee@N +tennis@N +tennyson@N +tenon@Nt +tenoned@At +tenoning@At +tenons@pt +tenor@N +tenors@p +tenpin@N +tenpins@N +tens@p +tense@AVN +tensed@A +tensely@v +tenseness@N +tenser@A +tenses@pV +tensest@A +tensile@A +tensing@A +tension@N +tensions@p +tensor@N +tensors@p +tent@NitV +tentacle@N +tentacles@p +tentative@A +tentatively@? +tentativeness@? +tented@A +tenth@ANv +tenths@pv +tenting@AitV +tents@pitV +tenuous@A +tenuously@v +tenuousness@N +tenure@N +tenured@A +tenures@p +tenuring@A +tepee@N +tepees@p +tepid@A +tequila@N +tequilas@p +terabit@? +terabits@p +terabyte@? +terabytes@? +tercentenaries@? +tercentenary@AN +terence@N +tereshkova@N +term@Nt +termagant@N +termagants@p +termed@At +terminable@A +terminal@AN +terminally@v +terminals@p +terminate@V +terminated@V +terminates@V +terminating@V +termination@N +terminations@p +terminator@N +terminators@p +terming@At +termini@p +terminological@? +terminologies@? +terminology@N +terminus@N +terminuses@? +termite@N +termites@p +termly@v +terms@p +tern@N +terns@p +terpsichore@N +terrace@Nt +terraced@V +terraces@pt +terracing@N +terracotta@? +terrain@N +terrains@p +terrapin@N +terrapins@p +terraria@? +terrarium@N +terrariums@p +terrestrial@AN +terrestrials@p +terrible@A +terribly@v +terrier@N +terriers@p +terrific@A +terrifically@v +terrified@t +terrifies@? +terrify@V +terrifying@t +terrifyingly@v +terrine@N +terrines@p +territorial@A +territoriality@N +territorials@p +territories@? +territory@N +terror@N +terrorise@t +terrorised@t +terrorises@t +terrorising@t +terrorism@N +terrorist@N +terrorists@p +terrorize@t +terrorized@t +terrorizes@t +terrorizing@t +terrors@p +terry@N +terse@A +tersely@v +terseness@N +terser@? +tersest@? +tertiary@AN +tesla@N +tess@N +tessellate@ti +tessellated@A +tessellates@ti +tessellating@V +tessellation@N +tessellations@p +test@N +testable@A +testament@N +testamentary@A +testaments@p +testate@AN +testates@p +tested@A +tester@N +testers@p +testes@N +testicle@N +testicles@p +testicular@? +testier@? +testiest@? +testified@V +testifies@? +testify@Vt +testifying@V +testily@? +testimonial@NA +testimonials@p +testimonies@p +testimony@N +testiness@? +testing@A +testis@N +testosterone@N +tests@p +testy@A +tet@? +tetanus@N +tetchier@? +tetchiest@? +tetchily@v +tetchiness@N +tetchy@A +tether@Nt +tethered@At +tethering@At +tethers@pt +tetons@p +tetrahedra@? +tetrahedron@N +tetrahedrons@p +teutonic@AN +tevet@N +tex@N +texan@? +texans@p +texas@N +texes@? +text@N +textbook@N +textbooks@p +textile@NA +textiles@p +texts@p +textual@A +textually@? +textural@? +texture@Nt +textured@V +textures@pt +texturing@V +th@N +thackeray@N +thaddeus@N +thai@AN +thailand@N +thais@N +thalami@p +thalamus@N +thales@N +thalia@N +thalidomide@N +thallium@N +thames@N +than@CP +thank@t +thanked@t +thankful@A +thankfully@v +thankfulness@N +thanking@t +thankless@A +thanklessly@v +thanks@p! +thanksgiving@N +thanksgivings@p +thant@N +that@DCvr +thatch@N +thatched@A +thatcher@N +thatchers@p +thatches@? +thatching@N +thaw@ViN +thawed@ViA +thawing@ViA +thaws@Vip +the@Dv +theater@N +theatergoer@? +theatergoers@p +theaters@p +theatre@N +theatregoer@? +theatregoers@p +theatres@p +theatrical@A +theatricality@N +theatrically@v +theatricals@p +thebes@N +thee@r +thees@r +theft@N +thefts@p +their@D +theirs@r +theism@NA +theist@NA +theistic@A +theists@p +them@rD +thematic@AN +thematically@v +theme@N +themed@rD +themes@p +themistocles@N +themselves@r +then@vNA +thence@v +thenceforth@v +thenceforward@v +theocracies@p +theocracy@N +theocratic@A +theocritus@N +theodolite@N +theodolites@p +theodora@N +theologian@N +theologians@p +theological@A +theologically@v +theologies@? +theology@N +theorem@N +theorems@p +theoretic@? +theoretical@A +theoretically@? +theoretician@N +theoreticians@p +theories@p +theorise@i +theorised@i +theorises@i +theorising@i +theorist@N +theorists@p +theorize@i +theorized@i +theorizes@i +theorizing@i +theory@N +theosophy@N +therapeutic@A +therapeutically@v +therapeutics@N +therapies@p +therapist@N +therapists@p +therapy@N +theravada@N +there@vrN! +thereabout@v +thereabouts@v +thereafter@v +thereby@v +therefore@C +therefrom@v +therein@v +thereof@v +thereon@v +theresa@N +thereto@v +thereupon@v +therewith@v +therm@N +thermal@AN +thermally@v +thermals@p +thermionic@A +thermodynamic@A +thermodynamics@N +thermometer@N +thermometers@p +thermonuclear@A +thermoplastic@AN +thermoplastics@p +thermopylae@N +thermos@N +thermoses@? +thermostat@N +thermostatic@A +thermostatically@v +thermostats@p +therms@p +thesauri@? +thesaurus@N +thesauruses@? +these@D +theses@p +theseus@N +thesis@N +thespian@AN +thespians@p +thessalonian@AN +theta@N +they@r +thiamin@? +thiamine@N +thick@AvN +thicken@Vi +thickened@Vi +thickener@N +thickeners@p +thickening@N +thickenings@p +thickens@Vi +thicker@? +thickest@? +thicket@N +thickets@p +thickly@v +thickness@N +thicknesses@? +thicko@? +thickos@p +thickset@AN +thief@N +thieve@V +thieved@V +thievery@N +thieves@p +thieving@V +thievish@A +thigh@N +thighbone@N +thighbones@p +thighs@p +thimble@N +thimbleful@N +thimblefuls@p +thimbles@p +thimbu@N +thin@Av +thine@D +thing@N +thingamabob@N +thingamabobs@p +thingamajig@? +thingamajigs@p +thingies@? +things@p +thingumabob@N +thingumabobs@p +thingummies@? +thingummy@? +thingy@? +think@VitN +thinkable@A +thinker@N +thinkers@p +thinking@NA +thinks@Vitp +thinly@v +thinned@? +thinner@N +thinners@p +thinness@N +thinnest@? +thinning@? +thins@pv +third@ANv +thirdly@v +thirds@pv +thirst@Ni +thirsted@Ai +thirstier@A +thirstiest@A +thirstily@? +thirsting@Ai +thirsts@pi +thirsty@A +thirteen@ND +thirteens@pD +thirteenth@AN +thirteenths@p +thirties@p +thirtieth@AN +thirtieths@p +thirty@ND +this@Dv +thistle@N +thistledown@N +thistles@p +thither@v +tho@Cv +thomas@N +thomism@NA +thomistic@A +thompson@N +thomson@N +thong@N +thongs@p +thor@N +thoraces@? +thoracic@A +thorax@N +thoraxes@? +thorazine@? +thoreau@N +thorium@N +thorn@N +thornier@A +thorniest@A +thorns@p +thorny@A +thorough@A +thoroughbred@AN +thoroughbreds@p +thorougher@? +thoroughest@? +thoroughfare@N +thoroughfares@p +thoroughgoing@A +thoroughly@v +thoroughness@N +thorpe@N +those@D +thoth@N +thou@rN +though@Cv +thought@VN +thoughtful@A +thoughtfully@? +thoughtfulness@? +thoughtless@A +thoughtlessly@v +thoughtlessness@N +thoughts@Vp +thous@rp +thousand@ND +thousands@pD +thousandth@AN +thousandths@p +thrace@N +thracian@NA +thraldom@? +thrall@Nt +thralldom@iN +thralled@At +thralling@At +thralls@pt +thrash@tiN +thrashed@tiA +thrasher@N +thrashers@p +thrashes@? +thrashing@N +thrashings@p +thread@Nt +threadbare@A +threaded@At +threading@At +threads@pt +threat@NV +threaten@t +threatened@t +threatening@t +threateningly@v +threatens@t +threats@pV +three@N +threefold@Av +threepence@N +threepences@p +threes@p +threescore@D +threescores@D +threesome@N +threesomes@p +threnodies@p +threnody@N +thresh@VtiN +threshed@VtiA +thresher@N +threshers@p +threshes@? +threshing@VtiA +threshold@N +thresholds@p +threw@V +thrice@v +thrift@N +thriftier@A +thriftiest@A +thriftily@v +thriftiness@? +thrifts@p +thrifty@A +thrill@NV +thrilled@AV +thriller@N +thrillers@p +thrilling@A +thrillingly@v +thrills@pV +thrive@i +thrived@i +thriven@? +thrives@i +thriving@i +throat@N +throatier@A +throatiest@A +throatily@v +throatiness@N +throats@p +throaty@A +throb@VN +throbbed@V +throbbing@V +throbs@Vp +throe@N +throes@p +thromboses@V +thrombosis@N +throne@NV +thrones@pV +throng@NVt +thronged@AVt +thronging@AVt +throngs@pVt +throttle@Nt +throttled@V +throttles@pt +throttling@V +through@PA +throughout@Pv +throughput@N +throughway@N +throughways@p +throve@V +throw@VN +throwaway@N +throwaways@p +throwback@N +throwbacks@p +thrower@N +throwers@p +throwing@VA +thrown@V +throws@Vp +thru@PvA +thrum@ViN +thrummed@V +thrumming@V +thrums@Vip +thrush@N +thrushes@? +thrust@VN +thrusting@V +thrusts@Vp +thruway@N +thruways@p +thucydides@N +thud@Nti +thudded@V +thudding@V +thuds@pti +thug@N +thuggery@N +thuggish@A +thugs@p +thule@N +thumb@Nt +thumbed@At +thumbing@At +thumbnail@N +thumbnails@p +thumbprint@N +thumbprints@p +thumbs@pt +thumbscrew@N +thumbscrews@p +thumbtack@N +thumbtacks@p +thump@Nti +thumped@Ati +thumping@A +thumps@pti +thunder@NVi +thunderbolt@N +thunderbolts@p +thunderclap@N +thunderclaps@p +thundercloud@N +thunderclouds@p +thundered@AVi +thunderhead@N +thunderheads@p +thundering@A +thunderous@A +thunderously@v +thunders@pVi +thundershower@N +thundershowers@p +thunderstorm@N +thunderstorms@p +thunderstruck@A +thundery@A +thunk@? +thunks@p +thur@N +thurber@N +thurs@N +thursday@N +thursdays@v +thus@v +thwack@VN! +thwacked@VA! +thwacking@VA! +thwacks@Vp! +thwart@VNAPv +thwarted@VAPv +thwarting@VAPv +thwarts@VpPv +thy@D +thyme@N +thymi@? +thymus@N +thymuses@p +thyroid@AN +thyroids@p +thyself@r +ti@N +tianjin@? +tiara@N +tiaras@p +tiber@N +tiberius@N +tibet@N +tibetan@AN +tibetans@p +tibia@N +tibiae@p +tibias@p +tic@N +tick@NV +ticked@AV +ticker@N +tickers@p +ticket@Nt +ticketed@At +ticketing@At +tickets@pt +ticking@N +tickle@VtiN +tickled@V +tickles@Vtip +tickling@V +ticklish@A +ticks@pV +ticonderoga@N +tics@p +tidal@A +tidbit@N +tidbits@p +tiddler@N +tiddlers@p +tiddly@A +tiddlywink@? +tiddlywinks@N +tide@i +tided@Vi +tidemark@N +tidemarks@p +tides@i +tidewater@N +tidewaters@p +tidied@VA +tidier@? +tidies@? +tidiest@? +tidily@v +tidiness@N +tiding@Vi +tidings@p +tidy@AV +tidying@N +tie@VtN +tiebreak@? +tiebreaker@N +tiebreakers@p +tiebreaks@p +tied@A +tieing@VtA +tientsin@N +tiepin@N +tiepins@p +tier@NV +tiered@AV +tiers@pV +ties@pt +tiff@N +tiffany@N +tiffed@A +tiffing@A +tiffs@p +tiger@N +tigers@p +tight@Av +tighten@V +tightened@V +tightening@V +tightens@V +tighter@? +tightest@? +tightfisted@A +tightly@? +tightness@N +tightrope@N +tightropes@p +tights@p +tightwad@N +tightwads@p +tigress@N +tigresses@? +tigris@N +tijuana@N +tike@N +tikes@p +til@N +tilde@N +tildes@p +tile@Nt +tiled@AV +tiler@N +tilers@p +tiles@pt +tiling@N +till@CPVtN +tillable@A +tillage@N +tilled@CPVtA +tiller@Ni +tillers@pi +tillich@N +tilling@CPVtA +tills@CPVtp +tilsit@N +tilt@VtN +tilted@VtA +tilting@VtA +tilts@Vtp +timber@Nt! +timbered@A +timbering@N +timberland@N +timberline@? +timberlines@? +timbers@pt! +timbre@N +timbres@p +timbuktu@N +time@N +timed@V +timekeeper@N +timekeepers@p +timekeeping@N +timeless@A +timelessly@? +timelessness@? +timelier@? +timeliest@? +timeliness@N +timely@Av +timepiece@N +timepieces@p +timer@N +timers@p +times@p +timescale@? +timescales@? +timeserver@N +timeservers@p +timeserving@AN +timeshare@? +timeshares@? +timetable@N +timetabled@A +timetables@p +timetabling@A +timeworn@A +timezone@? +timid@A +timider@? +timidest@? +timidity@N +timidly@v +timing@N +timings@p +timor@N +timorous@A +timorously@v +timorousness@N +timothy@N +timour@N +timpani@p +timpanist@? +timpanists@p +tin@NAt +tincture@Nt +tinctured@V +tinctures@pt +tincturing@V +tinder@N +tinderbox@N +tinderboxes@? +tine@N +tines@p +tinfoil@N +ting@NV +tinge@tN +tinged@AV +tingeing@tA +tinges@tp +tinging@AV +tingle@VN +tingled@V +tingles@Vp +tinglier@A +tingliest@A +tingling@V +tinglings@V +tingly@A +tings@pV +tinier@A +tiniest@A +tinker@Ni +tinkered@Ai +tinkering@Ai +tinkers@pi +tinkertoy@? +tinkle@VNti +tinkled@VAti +tinkles@Vpti +tinkling@N +tinned@A +tinnier@A +tinniest@A +tinning@NV +tinnitus@N +tinny@AN +tinplate@? +tinpot@A +tins@pt +tinsel@NAt +tinseled@At +tinseling@At +tinselled@? +tinselling@? +tinsels@pt +tinsmith@N +tinsmiths@p +tint@Nti +tinted@Ati +tinting@Ati +tintinnabulation@N +tintinnabulations@p +tintoretto@N +tints@pti +tiny@A +tip@VtN +tipi@N +tipis@p +tipped@V +tipper@N +tipperary@N +tippers@p +tippex@? +tippexed@? +tippexes@? +tippexing@? +tipping@V +tipple@VN +tippled@V +tippler@N +tipplers@p +tipples@Vp +tippling@V +tips@N +tipsier@A +tipsiest@? +tipsily@v +tipsiness@N +tipster@N +tipsters@p +tipsy@A +tiptoe@VNvA +tiptoed@V +tiptoeing@V +tiptoes@Vpv +tiptop@AvN +tiptops@pv +tirade@N +tirades@p +tirana@N +tire@tiNV +tired@AV +tireder@? +tiredest@? +tiredly@? +tiredness@? +tireless@A +tirelessly@v +tirelessness@N +tires@tipV +tiresias@N +tiresome@A +tiresomely@? +tiresomeness@? +tiring@V +tiro@N +tiros@N +tishri@N +tissue@Nt +tissues@pt +tit@N +titan@N +titania@N +titanic@A +titanium@N +titans@p +titbit@N +titbits@p +titch@? +titches@? +titchy@? +tithe@Nti +tithed@V +tithes@pti +tithing@N +titian@N +titicaca@N +titillate@t +titillated@t +titillates@t +titillating@t +titillation@N +titivate@V +titivated@Vt +titivates@V +titivating@Vt +title@Nt +titled@A +titles@pt +titling@At +titmice@? +titmouse@N +tits@p +titter@itN +tittered@itA +tittering@itA +titters@itp +titties@? +tittivate@V +tittivated@ti +tittivates@V +tittivating@ti +tittle@N +tittles@p +titty@N +titular@AN +titus@N +tizz@? +tizzies@p +tizzy@N +tko@N +tl@N +tlc@? +tlingit@N +tm@N +tn@? +tnt@N +to@Pv +toad@N +toadded@? +toadding@? +toadied@? +toadies@? +toads@p +toadstool@N +toadstools@p +toady@Nti +toadying@Ati +toast@NtV +toasted@AtV +toaster@N +toasters@p +toastier@? +toasties@? +toastiest@? +toasting@AtV +toastmaster@N +toastmasters@p +toasts@ptV +toasty@? +tobacco@N +tobaccoes@p +tobacconist@N +tobacconists@p +tobaccos@p +tobago@N +toboggan@Ni +tobogganed@Ai +tobogganing@Ai +toboggans@pi +toby@N +tocantins@N +toccata@N +toccatas@p +tocqueville@? +tocsin@N +tocsins@p +today@Nv +todd@N +toddies@p +toddle@iN +toddled@iA +toddler@N +toddlers@p +toddles@ip +toddling@iA +toddy@N +toe@Nti +toecap@N +toecaps@p +toed@A +toefl@? +toehold@N +toeholds@p +toeing@Ati +toenail@Nt +toenails@pt +toerag@? +toerags@p +toes@pti +toff@N +toffee@N +toffees@p +toffies@? +toffs@p +toffy@? +tofu@? +tog@Nt +toga@N +togae@p +togas@p +together@v +togetherness@N +togged@V +togging@V +toggle@Nt +toggled@At +toggles@pt +toggling@At +togo@N +togs@pt +toil@Nit +toiled@Ait +toiler@? +toilers@p +toilet@N +toileted@A +toileting@A +toiletries@p +toiletry@N +toilets@p +toilette@N +toiling@Ait +toils@pit +toilsome@A +tojo@N +tokay@N +toke@? +toked@? +token@Nt +tokenism@N +tokens@pt +tokes@? +toking@? +tokugawa@N +tokyo@N +told@VA +toledo@N +toledos@p +tolerable@A +tolerably@v +tolerance@N +tolerances@p +tolerant@A +tolerantly@? +tolerate@t +tolerated@t +tolerates@t +tolerating@t +toleration@N +tolkien@? +toll@N +tollbooth@N +tollbooths@p +tolled@A +tollgate@N +tollgates@p +tolling@A +tolls@p +tolstoy@N +toltec@NA +tom@N +tomahawk@N +tomahawked@A +tomahawking@A +tomahawks@p +tomato@N +tomatoes@p +tomb@Nt +tombed@At +tombing@At +tombola@N +tombolas@p +tomboy@N +tomboys@p +tombs@pt +tombstone@N +tombstones@p +tomcat@Ni +tomcats@pi +tome@N +tomes@p +tomfooleries@p +tomfoolery@N +tommy@N +tomorrow@Nv +tomorrows@pv +toms@N +tomsk@N +ton@Nv +tonal@A +tonalities@p +tonality@N +tone@Nit +toned@V +toneless@A +tonelessly@v +toner@NV +toners@pV +tones@pit +tong@tN +tonga@N +tongan@NA +tongans@p +tongs@p +tongue@N +tongued@A +tongues@N +tonguing@N +tonic@NA +tonics@p +tonier@A +toniest@A +tonight@Nv +toning@V +tonnage@N +tonnages@p +tonne@N +tonnes@p +tons@pv +tonsil@N +tonsillectomies@p +tonsillectomy@N +tonsillitis@N +tonsils@p +tonsorial@A +tonsure@Nt +tonsured@At +tonsures@pt +tonsuring@At +tony@A +too@v +took@V +tool@NVt +toolbar@? +toolbox@N +toolboxes@? +tooled@AVt +tooling@N +toolkit@? +tools@pVt +toot@VN +tooted@VA +tooth@NVti +toothache@N +toothaches@p +toothbrush@N +toothbrushes@? +toothed@A +toothier@A +toothiest@A +toothless@A +toothpaste@N +toothpastes@p +toothpick@N +toothpicks@p +toothsome@A +toothy@A +tooting@VA +tootle@VNi +tootled@VAi +tootles@Vpi +tootling@VAi +toots@N +tootsie@? +tootsies@p +top@N +topaz@N +topazes@p +topcoat@N +topcoats@p +topee@N +topees@p +topeka@N +topi@N +topiary@AN +topic@N +topical@A +topicality@N +topically@v +topics@p +topis@p +topknot@N +topknots@p +topless@A +topmast@N +topmasts@p +topmost@A +topographer@N +topographers@p +topographic@A +topographical@A +topographically@v +topographies@? +topography@N +topological@A +topologically@v +topology@N +topped@V +topper@N +toppers@p +topping@N +toppings@p +topple@Vi +toppled@V +topples@Vi +toppling@V +tops@N +topsail@N +topsails@p +topside@N +topsides@p +topsoil@Nt +topspin@N +toque@N +toques@p +tor@N +torah@N +torahs@p +torch@N +torched@A +torches@? +torching@A +torchlight@? +tore@N +toreador@N +toreadors@p +tories@p +torment@VtN +tormented@VtA +tormenter@? +tormenters@p +tormenting@VtA +tormentor@N +tormentors@p +torments@Vtp +torn@VA +tornado@N +tornadoes@p +tornados@p +toronto@N +torpedo@Nt +torpedoed@At +torpedoes@p +torpedoing@p +torpedos@pt +torpid@A +torpidity@? +torpidly@? +torpor@N +torque@N +torqued@A +torquemada@N +torques@N +torquing@A +torrance@N +torrens@N +torrent@NA +torrential@A +torrents@p +torricelli@N +torrid@A +torrider@? +torridest@? +tors@p +torsi@N +torsion@N +torso@N +torsos@p +tort@N +torte@N +tortes@p +tortilla@N +tortillas@p +tortoise@N +tortoises@p +tortoiseshell@N +tortoiseshells@p +tortola@N +torts@p +tortuga@N +tortuous@A +tortuously@v +tortuousness@N +torture@tN +tortured@V +torturer@? +torturers@p +tortures@tp +torturing@V +torturous@p +torus@N +tory@NA +toscanini@N +tosh@N +toss@tiN +tossed@tiA +tosser@? +tossers@p +tosses@? +tossing@tiA +tossup@N +tossups@p +tost@V +tot@NV +total@NAi +totaled@Ai +totaling@Ai +totalitarian@A +totalitarianism@N +totalitarians@p +totalities@p +totality@N +totalled@? +totalling@V +totally@v +totals@pi +tote@tN +toted@AV +totem@N +totemic@A +totems@p +totes@tp +toting@N +tots@pV +totted@V +totter@iN +tottered@iA +tottering@A +totters@ip +totting@V +toucan@N +toucans@p +touch@!Nti +touchdown@N +touchdowns@p +touched@A +touches@? +touchier@A +touchiest@A +touchily@v +touchiness@N +touching@AP +touchingly@v +touchings@pP +touchline@N +touchlines@p +touchpaper@? +touchpapers@p +touchstone@N +touchstones@p +touchy@A +tough@ANv +toughed@Av +toughen@V +toughened@V +toughening@V +toughens@V +tougher@? +toughest@? +toughie@N +toughies@p +toughing@Av +toughly@v +toughness@N +toughs@pv +toulouse@N +toupee@N +toupees@p +tour@N +toured@A +touring@A +tourism@N +tourist@NA +touristic@A +tourists@p +touristy@A +tourmaline@N +tournament@N +tournaments@p +tourney@Ni +tourneys@pi +tourniquet@N +tourniquets@p +tours@N +tousle@tN +tousled@V +tousles@tp +tousling@V +tout@vViN +touted@vViA +touting@vViA +touts@vVip +tow@tN +toward@AP +towards@P +towed@tA +towel@Nt +toweled@V +towelette@? +towelettes@? +toweling@V +towelings@V +towelled@V +towelling@N +towellings@p +towels@pt +tower@N +towered@A +towering@A +towers@N +towhead@N +towheaded@A +towheads@p +towing@tA +town@N +townee@N +townees@p +townhouse@? +townhouses@? +townie@N +townies@p +towns@p +townsfolk@p +township@N +townships@p +townsman@N +townsmen@p +townspeople@N +towpath@N +towpaths@p +towrope@N +towropes@p +tows@tp +toxaemia@N +toxemia@N +toxic@A +toxicities@p +toxicity@N +toxicological@A +toxicologist@N +toxicologists@p +toxicology@N +toxin@N +toxins@p +toy@N +toyboy@? +toyboys@p +toyed@A +toying@A +toys@p +trace@N +traceable@A +traced@V +tracer@N +traceries@p +tracers@p +tracery@N +traces@p +trachea@N +tracheae@p +tracheas@p +tracheotomies@p +tracheotomy@N +tracing@N +tracings@p +track@NVi +trackball@? +trackballs@p +tracked@AVi +tracker@N +trackers@p +tracking@AVi +tracks@p +tracksuit@N +tracksuits@p +tract@N +tractability@? +tractable@A +traction@N +tractor@N +tractors@p +tracts@p +trad@NA +trade@Nti +traded@A +trademark@Nt +trademarked@At +trademarking@At +trademarks@pt +trader@N +traders@p +trades@pti +tradesman@N +tradesmen@p +tradespeople@p +trading@A +tradition@N +traditional@A +traditionalism@NA +traditionalist@NA +traditionalists@p +traditionally@? +traditions@p +traduce@t +traduced@t +traduces@t +traducing@t +trafalgar@N +traffic@N +trafficked@? +trafficker@? +traffickers@p +trafficking@? +traffics@p +tragedian@N +tragedians@p +tragedies@? +tragedy@N +tragic@A +tragically@v +tragicomedies@? +tragicomedy@N +tragicomic@A +trail@VitN +trailblazer@N +trailblazers@p +trailed@VitA +trailer@N +trailers@p +trailing@VitA +trails@Vitp +train@tiN +trained@tiA +trainee@N +trainees@p +trainer@N +trainers@p +training@N +trains@tip +trainspotter@? +trainspotters@p +trainspotting@? +traipse@iN +traipsed@V +traipses@ip +traipsing@V +trait@N +traitor@N +traitorous@A +traitorously@v +traitors@p +traits@p +trajan@N +trajectories@p +trajectory@N +tram@N +tramcar@Nt +tramcars@pt +tramlines@p +trammed@V +trammel@N +trammeled@A +trammeling@A +trammelled@? +trammelling@? +trammels@p +tramming@V +tramp@iN +tramped@iA +tramping@iA +trample@VN +trampled@VA +tramples@Vp +trampling@VA +trampoline@Ni +trampolined@Ai +trampolines@pi +trampolining@Ai +tramps@ip +trams@p +tramway@N +tramways@p +trance@Nt +trances@pt +tranche@N +tranches@p +tranquil@A +tranquiler@? +tranquilest@? +tranquility@? +tranquilize@ti +tranquilized@ti +tranquilizer@N +tranquilizers@p +tranquilizes@ti +tranquilizing@ti +tranquiller@? +tranquillest@? +tranquillise@? +tranquillised@? +tranquilliser@? +tranquillisers@p +tranquillises@? +tranquillising@? +tranquillity@N +tranquillize@V +tranquillized@ti +tranquillizer@N +tranquillizers@p +tranquillizes@V +tranquillizing@ti +tranquilly@v +trans@N +transact@V +transacted@V +transacting@V +transaction@N +transactions@p +transacts@V +transatlantic@A +transcaucasia@N +transceiver@N +transceivers@p +transcend@Vt +transcended@Vt +transcendence@N +transcendent@AN +transcendental@A +transcendentalism@NA +transcendentalist@NA +transcendentalists@p +transcendentally@v +transcending@Vt +transcends@Vt +transcontinental@A +transcribe@t +transcribed@t +transcribes@t +transcribing@t +transcript@N +transcription@N +transcriptions@p +transcripts@p +transducer@N +transducers@p +transept@N +transepts@p +transfer@VN +transferable@A +transferal@N +transferals@p +transference@N +transferred@V +transferring@V +transfers@Vp +transfiguration@N +transfigure@V +transfigured@V +transfigures@V +transfiguring@V +transfinite@A +transfix@V +transfixed@V +transfixes@? +transfixing@V +transfixt@? +transform@VtN +transformation@N +transformations@p +transformed@VtA +transformer@N +transformers@p +transforming@VtA +transforms@Vtp +transfuse@t +transfused@t +transfuses@t +transfusing@t +transfusion@N +transfusions@p +transgenic@? +transgress@V +transgressed@V +transgresses@? +transgressing@V +transgression@N +transgressions@p +transgressor@? +transgressors@p +transience@N +transiency@? +transient@AN +transients@p +transistor@N +transistorise@? +transistorised@? +transistorises@? +transistorising@? +transistorize@V +transistorized@t +transistorizes@V +transistorizing@t +transistors@p +transit@NV +transited@AV +transiting@AV +transition@N +transitional@A +transitioned@A +transitioning@A +transitions@p +transitive@A +transitively@v +transitives@p +transitivity@N +transitory@A +transits@pV +transitted@? +transitting@? +translate@Vit +translated@Vit +translates@Vit +translating@Vit +translation@N +translations@p +translator@N +translators@p +transliterate@t +transliterated@t +transliterates@t +transliterating@t +transliteration@? +transliterations@p +translucence@N +translucent@A +transmigrate@i +transmigrated@V +transmigrates@i +transmigrating@V +transmigration@? +transmissible@A +transmission@N +transmissions@p +transmit@Vt +transmits@Vt +transmittable@A +transmittal@N +transmitted@? +transmitter@N +transmitters@p +transmitting@? +transmogrified@t +transmogrifies@? +transmogrify@V +transmogrifying@t +transmutation@NA +transmutations@p +transmute@t +transmuted@ti +transmutes@t +transmuting@ti +transnational@A +transnationals@p +transoceanic@A +transom@N +transoms@p +transparencies@p +transparency@N +transparent@A +transparently@v +transpiration@N +transpire@it +transpired@it +transpires@it +transpiring@it +transplant@VtiN +transplantation@? +transplanted@VtiA +transplanting@VtiA +transplants@Vtip +transponder@N +transponders@p +transport@VtN +transportable@? +transportation@N +transported@A +transporter@? +transporters@p +transporting@VtA +transports@Vtp +transpose@tN +transposed@V +transposes@tp +transposing@V +transposition@N +transpositions@p +transsexual@N +transsexuals@p +transship@V +transshipment@N +transshipped@V +transshipping@V +transships@V +transubstantiation@N +transvaal@N +transverse@AN +transversely@? +transverses@p +transvestism@N +transvestite@N +transvestites@p +transylvania@N +trap@N +trapdoor@? +trapdoors@p +trapeze@N +trapezes@p +trapezia@? +trapezium@N +trapeziums@p +trapezoid@N +trapezoidal@? +trapezoids@p +trappable@? +trapped@V +trapper@N +trappers@p +trapping@V +trappings@p +trappist@N +traps@p +trapshooting@N +trash@NVt +trashcan@? +trashcans@p +trashed@AVt +trashes@? +trashier@? +trashiest@? +trashing@AVt +trashy@A +trauma@N +traumas@p +traumata@p +traumatic@A +traumatically@? +traumatise@? +traumatised@? +traumatises@? +traumatising@? +traumatize@t +traumatized@t +traumatizes@t +traumatizing@t +travail@Ni +travailed@Ai +travailing@Ai +travails@pi +travel@VtN +traveled@V +traveler@N +travelers@p +traveling@V +travelings@V +travelled@A +traveller@N +travellers@p +travelling@V +travellings@V +travelog@? +travelogs@p +travelogue@? +travelogues@? +travels@Vtp +traverse@VvtiNA +traversed@V +traverses@Vvtip +traversing@V +travestied@p +travesties@p +travesty@Nt +travestying@p +trawl@NVt +trawled@AVt +trawler@N +trawlers@p +trawling@AVt +trawls@pVt +tray@N +trays@p +treacheries@p +treacherous@A +treacherously@v +treachery@N +treacle@N +treacly@A +tread@VitN +treading@VitA +treadle@NV +treadled@V +treadles@pV +treadling@V +treadmill@N +treadmills@p +treads@Vitp +treas@p +treason@N +treasonable@A +treasonous@A +treasure@Nt +treasured@V +treasurer@N +treasurers@p +treasures@pt +treasuries@p +treasuring@V +treasury@N +treat@N +treatable@? +treated@A +treaties@p +treating@A +treatise@N +treatises@p +treatment@N +treatments@p +treats@p +treaty@N +treble@ANV +trebled@AV +trebles@pV +trebling@AV +treblinka@N +tree@N +treed@AV +treeing@V +treeless@? +treeline@? +trees@p +treetop@N +treetops@p +trefoil@N +trefoils@p +trek@itN +trekked@V +trekking@V +treks@itp +trellis@Nt +trellised@At +trellises@? +trellising@At +tremble@iN +trembled@V +trembles@N +trembling@V +tremendous@A +tremendously@v +tremolo@N +tremolos@p +tremor@Ni +tremors@pi +tremulous@A +tremulously@v +trench@NVti +trenchancy@N +trenchant@A +trenchantly@v +trenched@AVti +trencher@N +trenchers@p +trenches@p +trenching@AVti +trend@Ni +trended@Ai +trendier@? +trendies@? +trendiest@? +trendily@? +trendiness@? +trending@Ai +trends@pi +trendsetter@? +trendsetters@p +trendsetting@? +trendy@AN +trenton@N +trepidation@N +trespass@iN +trespassed@iA +trespasser@N +trespassers@p +trespasses@? +trespassing@iA +tress@Nt +tresses@? +trestle@N +trestles@p +trevelyan@N +trews@p +triad@N +triads@p +triage@N +trial@N +trialed@A +trialing@A +trialled@? +trialling@? +trials@p +triangle@N +triangles@p +triangular@A +triangulation@N +triassic@? +triathlete@? +triathletes@? +triathlon@? +triathlons@p +tribal@A +tribalism@NA +tribe@N +tribes@p +tribesman@N +tribesmen@? +tribeswoman@? +tribeswomen@? +tribulation@N +tribulations@p +tribunal@N +tribunals@p +tribune@N +tribunes@p +tributaries@p +tributary@NA +tribute@N +tributes@p +trice@Nt +triceps@N +tricepses@p +triceratops@N +triceratopses@? +trick@NV +tricked@AV +trickery@N +trickier@A +trickiest@A +trickiness@N +tricking@AV +trickle@ViN +trickled@ViA +trickles@Vip +trickling@ViA +tricks@pV +trickster@N +tricksters@p +tricky@A +tricolor@AN +tricolors@p +tricolour@? +tricolours@p +tricycle@Ni +tricycles@pi +trident@NA +tridents@p +tried@V +triennial@AN +triennials@p +trier@N +triers@p +tries@V +trieste@N +trifle@Ni +trifled@V +trifler@N +triflers@p +trifles@pi +trifling@A +trifocals@p +trig@AtN +trigger@Nt +triggered@At +triggering@At +triggers@pt +triglyceride@N +triglycerides@p +trigonometric@A +trigonometrical@A +trigonometry@N +trike@N +trikes@p +trilateral@A +trilaterals@p +trilbies@p +trilby@N +trill@N +trilled@A +trilling@A +trillion@NAD +trillions@pD +trillionth@NA +trillionths@p +trills@p +trilogies@p +trilogy@N +trim@vtNA +trimaran@N +trimarans@p +trimester@N +trimesters@p +trimly@v +trimmed@V +trimmer@N +trimmers@p +trimmest@V +trimming@N +trimmings@p +trimness@? +trims@vtp +trimurti@N +trinidad@N +trinities@? +trinity@N +trinket@N +trinkets@p +trio@N +trios@p +trip@N +tripartite@A +tripe@N +tripitaka@N +triple@ANV +tripled@V +triples@pV +triplet@N +triplets@p +triplicate@AVN +triplicated@AV +triplicates@pV +triplicating@AV +tripling@AV +triply@v +tripod@N +tripods@p +tripoli@N +tripos@N +tripped@V +tripper@N +trippers@p +tripping@AV +trips@p +triptych@N +triptychs@p +tripwire@N +tripwires@p +trisect@t +trisected@t +trisecting@t +trisects@t +tristan@N +trite@A +tritely@? +triteness@? +triter@A +tritest@A +triton@N +triumph@Ni +triumphal@A +triumphalism@? +triumphalist@? +triumphant@A +triumphantly@v +triumphed@Ai +triumphing@Ai +triumphs@pi +triumvirate@N +triumvirates@p +trivet@N +trivets@p +trivia@p +trivial@A +trivialise@t +trivialised@t +trivialises@t +trivialising@t +trivialities@p +triviality@N +trivialize@t +trivialized@t +trivializes@t +trivializing@t +trivially@v +trochee@N +trochees@p +trod@V +trodden@V +troglodyte@N +troglodytes@p +troika@N +troikas@p +trojan@NA +trojans@p +troll@ViN +trolled@ViA +trolley@N +trolleybus@p +trolleybuses@? +trolleybusses@? +trolleys@p +trollies@tip +trolling@ViA +trollop@N +trollope@N +trollops@p +trolls@Vip +trolly@N +trombone@N +trombones@p +trombonist@N +trombonists@p +tromp@N +tromped@A +tromping@A +tromps@p +tron@? +trondheim@N +tronned@? +tronning@? +trons@p +troop@Nit +trooped@Ait +trooper@N +troopers@p +trooping@Ait +troops@pit +troopship@N +troopships@p +trope@N +tropes@p +trophies@p +trophy@N +tropic@NA +tropical@A +tropics@p +tropism@N +tropisms@p +troposphere@N +tropospheres@p +trot@N +troth@N +trots@p +trotsky@N +trotted@V +trotter@N +trotters@p +trotting@V +troubadour@N +troubadours@p +trouble@Nti +troubled@V +troublemaker@N +troublemakers@p +troubles@pti +troubleshoot@i +troubleshooted@V +troubleshooter@NA +troubleshooters@p +troubleshooting@V +troubleshoots@i +troubleshot@? +troublesome@A +troubling@V +trough@N +troughs@p +trounce@t +trounced@t +trounces@t +trouncing@t +troupe@Ni +trouped@V +trouper@N +troupers@p +troupes@pi +trouping@V +trouser@N +trousers@p +trousseau@N +trousseaus@p +trousseaux@p +trout@N +trouts@p +trowel@Nt +troweled@V +troweling@V +trowelled@V +trowelling@V +trowels@pt +troy@A +troyes@N +troys@p +truancy@N +truant@NAi +truanted@Ai +truanting@Ai +truants@pi +truce@N +truces@p +truck@NVi +trucked@AVi +trucker@N +truckers@p +trucking@N +truckle@iNt +truckled@i +truckles@ipt +truckling@i +truckload@N +truckloads@p +trucks@pVi +truculence@N +truculent@A +truculently@v +trudeau@N +trudge@itN +trudged@V +trudges@itp +trudging@V +true@At +trued@At +trueing@At +truelove@N +trueloves@p +truer@A +trues@pt +truest@? +truffle@N +truffles@p +trug@N +trugs@p +truing@A +truism@N +truisms@p +trujillo@N +truly@v +truman@N +trump@NVti +trumped@AVti +trumpery@NA +trumpet@NV +trumpeted@AV +trumpeter@N +trumpeters@p +trumpeting@AV +trumpets@p +trumping@AVti +trumps@p +truncate@VtA +truncated@A +truncates@Vtp +truncating@VtA +truncation@N +truncheon@Nt +truncheons@pt +trundle@VtN +trundled@VtA +trundles@Vtp +trundling@VtA +trunk@N +trunking@A +trunks@p +truss@tN +trussed@A +trusses@? +trussing@N +trust@N +trusted@A +trustee@N +trustees@p +trusteeship@N +trusteeships@p +trustful@A +trustfully@? +trustfulness@N +trustier@? +trusties@? +trustiest@? +trusting@A +trusts@p +trustworthier@? +trustworthiest@? +trustworthiness@N +trustworthy@A +trusty@N +truth@N +truthful@A +truthfully@? +truthfulness@? +truths@p +try@tiN +trying@A +tryout@N +tryouts@p +tryst@Ni +trysted@Ai +trysting@Ai +trysts@pi +ts@pv +tsar@N +tsarina@N +tsarinas@p +tsarism@NA +tsarist@AN +tsarists@p +tsars@p +tsimshian@N +tsingtao@? +tsp@? +tsunami@N +tsunamis@p +tswana@N +ttys@p +tuareg@N +tub@Nti +tuba@N +tubas@p +tubbier@A +tubbiest@A +tubby@A +tube@Nt +tubed@V +tubeless@? +tuber@N +tubercle@N +tubercles@p +tubercular@AN +tuberculosis@N +tuberculous@A +tuberous@A +tubers@p +tubes@pt +tubing@N +tubman@N +tubs@pti +tubular@A +tuck@N +tucked@A +tucker@N +tuckered@A +tuckering@A +tuckers@p +tucking@A +tucks@p +tucson@N +tudor@NA +tues@? +tuesday@N +tuesdays@v +tuft@Nt +tufted@A +tufting@N +tufts@N +tug@VtiN +tugboat@N +tugboats@p +tugged@V +tugging@V +tugs@Vtip +tuition@N +tulip@N +tulips@p +tulle@N +tulsa@N +tum@AN +tumble@VitN +tumbled@V +tumbledown@? +tumbler@N +tumblers@p +tumbles@Vitp +tumbleweed@N +tumbleweeds@p +tumbling@V +tumbrel@N +tumbrels@p +tumbril@? +tumbrils@p +tumescence@? +tumescent@A +tumid@A +tummies@p +tummy@N +tumor@N +tumors@p +tumour@N +tumours@p +tums@p +tumult@N +tumults@p +tumultuous@A +tumultuously@v +tun@VN +tuna@N +tunas@p +tundra@N +tundras@p +tune@NVt +tuned@VA +tuneful@A +tunefully@v +tunefulness@N +tuneless@A +tunelessly@v +tuner@N +tuners@p +tunes@pVt +tungsten@N +tungus@N +tunic@N +tunics@p +tuning@N +tunis@N +tunisia@N +tunisian@AN +tunisians@p +tunnel@Nt +tunneled@V +tunneling@V +tunnelings@V +tunnelled@V +tunnelling@V +tunnellings@V +tunnels@pt +tunnies@? +tunny@N +tuns@Vp +tupi@N +tuppence@N +tuppenny@A +tupperware@? +tupungato@N +tuque@N +tuques@p +turban@N +turbaned@A +turbans@p +turbid@A +turbidity@N +turbine@N +turbines@p +turbo@N +turbocharge@? +turbocharged@? +turbocharger@N +turbochargers@p +turbocharges@? +turbocharging@? +turbojet@N +turbojets@p +turboprop@N +turboprops@p +turbos@p +turbot@N +turbots@p +turbulence@N +turbulent@A +turbulently@v +turd@N +turds@p +tureen@N +tureens@p +turf@Nt +turfed@At +turfing@At +turfs@pt +turgenev@N +turgid@A +turgidity@N +turgidly@v +turin@N +turk@N +turkestan@N +turkey@N +turkeys@p +turkish@AN +turkmenistan@N +turks@p +turmeric@N +turmerics@p +turmoil@NV +turmoils@pV +turn@VtiN +turnabout@N +turnabouts@p +turnaround@N +turnarounds@p +turncoat@N +turncoats@p +turned@VtiA +turner@N +turners@p +turning@N +turnings@p +turnip@N +turnips@p +turnkey@N +turnkeys@p +turnoff@N +turnoffs@p +turnout@N +turnouts@p +turnover@NA +turnovers@p +turnpike@N +turnpikes@p +turns@Vtip +turnstile@N +turnstiles@p +turntable@N +turntables@p +turpentine@Nt +turpin@N +turpitude@N +turps@N +turquoise@N +turquoises@p +turret@N +turreted@A +turrets@p +turtle@N +turtledove@N +turtledoves@p +turtleneck@N +turtlenecks@p +turtles@p +turves@N +tuscan@AN +tuscany@N +tuscarora@N +tush@!N +tushes@? +tusk@NV +tusked@AV +tusks@pV +tussle@iN +tussled@V +tussles@ip +tussling@V +tussock@N +tussocks@p +tut@!NV +tutankhamen@N +tutelage@N +tutor@NVti +tutored@AVti +tutorial@NA +tutorials@p +tutoring@AVti +tutors@pVti +tuts@!pV +tutsi@? +tutted@A +tutting@A +tutu@N +tutus@p +tuvalu@p +tux@? +tuxedo@N +tuxedoes@? +tuxedos@p +tuxes@? +tv@N +tva@N +tvs@p +twaddle@NV +twaddled@AV +twaddles@pV +twaddling@AV +twain@DN +twang@NVi +twanged@AVi +twanging@AVi +twangs@pVi +twat@N +twats@p +tweak@tN +tweaked@tA +tweaking@tA +tweaks@tp +twee@A +tweed@N +tweedier@A +tweediest@A +tweeds@p +tweedy@A +tweet@!i +tweeted@!i +tweeter@N +tweeters@p +tweeting@!i +tweets@!i +tweezers@p +twelfth@AN +twelfths@p +twelve@N +twelves@p +twenties@? +twentieth@AN +twentieths@p +twenty@ND +twerp@N +twerps@p +twice@v +twiddle@ViN +twiddled@V +twiddles@Vip +twiddling@V +twiddly@? +twig@NVt +twigged@V +twiggier@A +twiggiest@A +twigging@V +twiggy@A +twigs@pVt +twilight@N +twilit@? +twill@ANt +twilled@At +twin@ANti +twine@Nt +twined@Ati +twines@pt +twinge@NVt +twinged@AVt +twingeing@AVt +twinges@pVt +twinging@AVt +twining@N +twink@itN +twinkies@? +twinkle@VN +twinkled@VA +twinkles@Vp +twinkling@N +twinklings@p +twinks@itp +twinned@Ati +twinning@ti +twins@N +twinset@? +twinsets@p +twirl@VtiN +twirled@VtiA +twirler@N +twirlers@p +twirling@VtiA +twirls@Vtip +twirly@? +twist@VtiN +twisted@VtiA +twister@N +twisters@p +twisting@VtiA +twists@Vtip +twisty@? +twit@VN +twitch@VitN +twitched@VitA +twitches@? +twitchier@? +twitchiest@? +twitching@VitA +twitchy@? +twits@Vp +twitted@A +twitter@itN +twittered@itA +twittering@itA +twitters@itp +twitting@A +twixt@? +two@ND +twofer@N +twofers@p +twofold@Av +twopence@N +twopences@p +twopenny@A +twos@pD +twosome@N +twosomes@p +tx@? +tycho@N +tycoon@N +tycoons@p +tying@V +tyke@N +tykes@p +tylenol@? +tyler@N +tympana@? +tympanum@N +tympanums@p +tyndale@N +tyndall@N +type@NVt +typecast@V +typecasting@V +typecasts@V +typed@V +typeface@N +typefaces@p +types@pVt +typescript@N +typescripts@p +typeset@V +typesets@V +typesetter@N +typesetters@p +typesetting@NA +typewrite@V +typewriter@N +typewriters@p +typewrites@V +typewriting@N +typewritten@ti +typewrote@ti +typhoid@NA +typhoon@N +typhoons@p +typhus@N +typical@A +typically@v +typified@t +typifies@? +typify@V +typifying@t +typing@V +typist@N +typists@p +typo@N +typographer@N +typographers@p +typographic@A +typographical@? +typographically@v +typography@N +typologies@? +typology@N +typos@p +tyrannical@A +tyrannically@v +tyrannies@p +tyrannise@it +tyrannised@it +tyrannises@it +tyrannising@it +tyrannize@V +tyrannized@V +tyrannizes@V +tyrannizing@V +tyrannosaur@N +tyrannosaurs@p +tyrannosaurus@p +tyrannosauruses@? +tyrannous@A +tyranny@N +tyrant@N +tyrants@p +tyre@N +tyres@p +tyro@N +tyroes@? +tyrone@N +tyros@p +tzar@N +tzarina@N +tzarinas@p +tzarism@N +tzarist@AN +tzarists@p +tzars@p +uaw@N +ubangi@N +ubiquitous@A +ubiquitously@? +ubiquity@? +ucayali@N +udall@N +udder@N +udders@p +ufa@N +ufo@N +ufos@p +uganda@N +ugandan@AN +ugandans@p +ugh@! +uglier@? +ugliest@? +ugliness@N +ugly@A +uh@? +uhf@N +uighur@? +uk@N +ukelele@? +ukeleles@? +ukraine@N +ukrainian@AN +ukrainians@p +ukulele@N +ukuleles@p +ulcer@N +ulcerate@V +ulcerated@V +ulcerates@V +ulcerating@V +ulceration@N +ulcerous@A +ulcers@p +ulna@N +ulnae@p +ulnas@p +ulster@N +ulterior@A +ultimata@? +ultimate@AN +ultimately@v +ultimatum@N +ultimatums@p +ultra@AN +ultraconservative@AN +ultraconservatives@p +ultramarine@NA +ultras@p +ultrasonic@A +ultrasonically@v +ultrasound@N +ultrasounds@p +ultrasuede@? +ultraviolet@NA +ululate@i +ululated@i +ululates@i +ululating@i +ululation@N +ululations@p +ulyanovsk@N +ulysses@N +um@! +umbel@N +umbels@p +umber@NA +umbilical@AN +umbilici@? +umbilicus@N +umbilicuses@? +umbrage@N +umbrella@N +umbrellas@p +umiak@N +umiaks@p +umlaut@N +umlauts@p +ump@Nti +umped@Ati +umping@Ati +umpire@NV +umpired@AV +umpires@pV +umpiring@AV +umps@pti +umpteen@DA +umpteenth@A +un@N +unabashed@A +unabated@A +unable@A +unabridged@AN +unabridgeds@p +unaccented@? +unacceptability@N +unacceptable@A +unacceptably@v +unaccepted@A +unaccompanied@A +unaccountable@A +unaccountably@v +unaccustomed@A +unacknowledged@A +unacquainted@A +unadorned@A +unadulterated@A +unadvised@A +unaffected@A +unaffectedly@? +unafraid@A +unaided@A +unalloyed@A +unalterable@A +unalterably@v +unaltered@? +unambiguous@A +unambiguously@v +unambitious@A +unanimity@N +unanimous@A +unanimously@v +unannounced@A +unanswerable@A +unanswered@? +unanticipated@A +unapologetic@A +unappealing@A +unappetising@A +unappetizing@A +unappreciated@A +unappreciative@A +unapproachable@A +unarguable@A +unarguably@v +unarmed@A +unashamed@A +unashamedly@? +unasked@A +unassailable@A +unassigned@A +unassisted@A +unassuming@A +unattached@A +unattainable@A +unattended@A +unattractive@A +unattractively@v +unattributed@? +unauthenticated@A +unauthorised@A +unauthorized@A +unavailable@A +unavailing@A +unavoidable@A +unavoidably@v +unaware@Av +unawareness@N +unawares@v +unbalance@tN +unbalanced@A +unbalances@tp +unbalancing@V +unbar@V +unbarred@t +unbarring@t +unbars@V +unbearable@A +unbearably@v +unbeatable@A +unbeaten@A +unbecoming@A +unbeknown@v +unbeknownst@? +unbelief@N +unbelievable@A +unbelievably@? +unbeliever@N +unbelievers@p +unbelieving@A +unbend@Vt +unbending@A +unbends@Vt +unbent@VA +unbiased@A +unbiassed@? +unbidden@A +unbind@V +unbinding@t +unbinds@V +unbleached@A +unblemished@A +unblinking@A +unblinkingly@v +unblock@t +unblocked@A +unblocking@t +unblocks@t +unblushing@A +unbolt@t +unbolted@A +unbolting@t +unbolts@t +unborn@A +unbosom@t +unbosomed@t +unbosoming@t +unbosoms@t +unbound@VA +unbounded@A +unbowed@A +unbranded@A +unbreakable@A +unbridgeable@A +unbridled@A +unbroken@A +unbuckle@t +unbuckled@t +unbuckles@t +unbuckling@t +unburden@t +unburdened@t +unburdening@t +unburdens@t +unbutton@V +unbuttoned@V +unbuttoning@V +unbuttons@V +uncalled@A +uncannier@? +uncanniest@? +uncannily@v +uncanny@A +uncaring@A +uncased@? +uncatalogued@A +unceasing@A +unceasingly@v +uncensored@A +unceremonious@A +unceremoniously@v +uncertain@A +uncertainly@? +uncertainties@p +uncertainty@N +unchallenged@A +unchangeable@A +unchanged@A +unchanging@A +uncharacteristic@A +uncharacteristically@v +uncharitable@A +uncharitably@v +uncharted@A +unchecked@A +unchristian@A +uncivil@A +uncivilised@? +uncivilized@A +unclaimed@A +unclasp@t +unclasped@t +unclasping@t +unclasps@t +unclassified@A +uncle@N +unclean@A +uncleaner@? +uncleanest@? +uncleanlier@? +uncleanliest@? +uncleanly@vA +uncleanness@N +unclear@A +unclearer@? +unclearest@? +uncles@p +unclothe@V +unclothed@t +unclothes@V +unclothing@t +uncluttered@A +uncoil@V +uncoiled@V +uncoiling@V +uncoils@V +uncollected@A +uncomfortable@A +uncomfortably@v +uncommitted@A +uncommon@Av +uncommoner@? +uncommonest@? +uncommonly@v +uncommunicative@A +uncomplaining@A +uncomplainingly@v +uncompleted@A +uncomplicated@A +uncomplimentary@A +uncomprehending@A +uncomprehendingly@v +uncompressed@A +uncompromising@A +uncompromisingly@v +unconcern@N +unconcerned@A +unconcernedly@v +unconditional@A +unconditionally@? +unconfirmed@t +uncongenial@A +unconnected@A +unconquerable@A +unconscionable@A +unconscionably@v +unconscious@AN +unconsciously@v +unconsciousness@N +unconsidered@A +unconstitutional@A +unconstitutionally@? +uncontaminated@A +uncontested@A +uncontrollable@A +uncontrollably@v +uncontrolled@A +uncontroversial@A +unconventional@A +unconventionally@v +unconvinced@A +unconvincing@A +unconvincingly@v +uncooked@A +uncool@? +uncooperative@A +uncoordinated@A +uncork@t +uncorked@t +uncorking@t +uncorks@t +uncorrelated@A +uncorroborated@A +uncountable@A +uncounted@A +uncouple@Vt +uncoupled@Vt +uncouples@Vt +uncoupling@Vt +uncouth@A +uncover@t +uncovered@A +uncovering@t +uncovers@t +uncritical@A +uncritically@v +uncrushable@A +unction@N +unctions@p +unctuous@A +unctuously@v +unctuousness@N +uncultivated@A +uncultured@A +uncurl@V +uncurled@V +uncurling@V +uncurls@V +uncut@A +undamaged@A +undated@A +undaunted@A +undeceive@t +undeceived@t +undeceives@t +undeceiving@t +undecidable@? +undecided@A +undecideds@p +undecipherable@A +undeclared@A +undefeated@A +undefended@A +undefinable@A +undefined@A +undelivered@A +undemanding@A +undemocratic@A +undemonstrative@A +undeniable@A +undeniably@v +undependable@A +under@Pv +underachieve@i +underachieved@i +underachievement@N +underachiever@N +underachievers@p +underachieves@i +underachieving@i +underact@V +underacted@V +underacting@V +underacts@V +underage@A +underarm@Av +underarms@pv +underbellies@? +underbelly@N +underbid@V +underbidding@t +underbids@V +underbrush@N +undercarriage@N +undercarriages@p +undercharge@VtN +undercharged@V +undercharges@Vtp +undercharging@V +underclass@? +underclasses@? +underclassman@? +underclassmen@? +underclothes@p +underclothing@N +undercoat@Nt +undercoated@At +undercoating@N +undercoats@pt +undercover@A +undercurrent@N +undercurrents@p +undercut@VN +undercuts@Vp +undercutting@V +underdeveloped@A +underdog@N +underdogs@p +underdone@A +underemployed@A +underestimate@VtN +underestimated@VtA +underestimates@Vtp +underestimating@VtA +underestimation@? +underestimations@p +underexpose@t +underexposed@t +underexposes@t +underexposing@t +underfed@? +underfeed@VN +underfeeding@t +underfeeds@Vp +underfloor@A +underflow@N +underfoot@v +underfunded@? +undergarment@N +undergarments@p +undergo@V +undergoes@? +undergoing@t +undergone@t +undergrad@N +undergrads@p +undergraduate@N +undergraduates@p +underground@AvN +undergrounds@pv +undergrowth@N +underhand@Av +underhanded@A +underhandedly@v +underlain@? +underlay@VN +underlays@Vp +underlie@V +underlies@V +underline@VtN +underlined@V +underlines@Vtp +underling@N +underlings@p +underlining@V +underlying@A +undermanned@t +undermentioned@A +undermine@t +undermined@t +undermines@t +undermining@t +undermost@Av +underneath@PvAN +underneaths@Pvp +undernourished@t +undernourishment@N +underpaid@t +underpants@p +underpass@N +underpasses@? +underpay@V +underpaying@V +underpays@V +underpin@V +underpinned@t +underpinning@N +underpinnings@p +underpins@V +underplay@Vi +underplayed@Vi +underplaying@Vi +underplays@Vi +underprivileged@A +underrate@t +underrated@t +underrates@t +underrating@t +underscore@VtN +underscored@V +underscores@Vtp +underscoring@V +undersea@Av +undersecretaries@p +undersecretary@N +undersell@Vt +underselling@t +undersells@Vt +undershirt@N +undershirts@p +undershoot@V +undershooting@V +undershoots@V +undershorts@p +undershot@A +underside@N +undersides@p +undersign@? +undersigned@NA +undersigning@? +undersigns@p +undersize@A +undersized@A +underskirt@N +underskirts@p +undersold@t +understaffed@A +understand@Vt +understandable@A +understandably@v +understanding@NA +understandingly@v +understandings@p +understands@Vt +understate@V +understated@t +understatement@N +understatements@p +understates@V +understating@t +understood@VA +understudied@V +understudies@V +understudy@tN +understudying@V +undertake@Vti +undertaken@? +undertaker@N +undertakers@p +undertakes@Vti +undertaking@N +undertakings@p +undertone@N +undertones@p +undertook@V +undertow@N +undertows@p +underused@? +underutilised@? +underutilized@? +undervalue@V +undervalued@t +undervalues@V +undervaluing@t +underwater@Av +underway@? +underwear@N +underweight@A +underwent@V +underwhelm@? +underwhelmed@? +underwhelming@? +underwhelms@p +underworld@N +underworlds@p +underwrite@V +underwriter@N +underwriters@p +underwrites@V +underwriting@V +underwritten@V +underwrote@V +undeserved@A +undeservedly@v +undeserving@A +undesirability@? +undesirable@A +undesirables@p +undetectable@A +undetected@A +undetermined@A +undeterred@A +undeveloped@? +undid@V +undies@p +undignified@A +undiluted@A +undiminished@A +undischarged@A +undisciplined@A +undisclosed@A +undiscovered@A +undiscriminating@A +undisguised@A +undismayed@A +undisputed@A +undistinguished@A +undisturbed@A +undivided@A +undo@V +undocumented@A +undoes@? +undoing@N +undoings@p +undone@A +undoubted@A +undoubtedly@v +undress@VtNA +undressed@A +undresses@? +undressing@V +undue@A +undulant@A +undulate@VA +undulated@VA +undulates@Vp +undulating@VA +undulation@N +undulations@p +unduly@v +undying@A +unearned@A +unearth@t +unearthed@t +unearthing@t +unearthly@A +unearths@t +unease@N +uneasier@? +uneasiest@? +uneasily@v +uneasiness@N +uneasy@A +uneatable@A +uneaten@A +uneconomic@A +uneconomical@A +unedifying@A +unedited@A +uneducated@A +unembarrassed@A +unemotional@A +unemotionally@v +unemployable@A +unemployed@A +unemployment@N +unending@A +unendurable@A +unenforceable@A +unenlightened@A +unenthusiastic@A +unenviable@A +unequal@A +unequaled@A +unequalled@A +unequally@v +unequivocal@A +unequivocally@v +unerring@A +unerringly@v +unesco@N +unethical@A +unethically@v +uneven@A +unevener@? +unevenest@? +unevenly@v +unevenness@N +uneventful@A +uneventfully@v +unexampled@A +unexceptionable@A +unexceptional@A +unexciting@A +unexpected@A +unexpectedly@v +unexpectedness@N +unexplained@A +unexplored@A +unexpurgated@A +unfailing@A +unfailingly@v +unfair@A +unfairer@? +unfairest@? +unfairly@? +unfairness@? +unfaithful@A +unfaithfully@v +unfaithfulness@N +unfaltering@A +unfamiliar@A +unfamiliarity@N +unfashionable@A +unfashionably@v +unfasten@V +unfastened@V +unfastening@V +unfastens@V +unfathomable@A +unfathomably@? +unfavorable@A +unfavorably@v +unfavourable@A +unfavourably@v +unfazed@? +unfeasible@A +unfeeling@A +unfeelingly@v +unfeigned@? +unfetter@t +unfettered@t +unfettering@t +unfetters@t +unfilled@A +unfinished@A +unfit@At +unfits@pt +unfitted@A +unfitting@A +unflagging@A +unflappable@A +unflattering@A +unflinching@A +unflinchingly@v +unfocused@A +unfocussed@A +unfold@V +unfolded@V +unfolding@V +unfolds@V +unforeseeable@A +unforeseen@A +unforgettable@A +unforgettably@? +unforgivable@A +unforgivably@v +unforgiving@A +unformed@A +unfortunate@AN +unfortunately@v +unfortunates@p +unfounded@A +unfrequented@A +unfriendlier@A +unfriendliest@A +unfriendliness@N +unfriendly@Av +unfrock@t +unfrocked@t +unfrocking@t +unfrocks@t +unfulfilled@A +unfunny@A +unfurl@V +unfurled@V +unfurling@V +unfurls@V +unfurnished@A +ungainlier@? +ungainliest@? +ungainliness@N +ungainly@Av +ungava@N +ungentlemanly@A +ungodlier@A +ungodliest@A +ungodly@A +ungovernable@A +ungracious@p +ungraciously@v +ungrammatical@A +ungrateful@A +ungratefully@v +ungratefulness@N +ungrudging@A +unguarded@A +unguent@N +unguents@p +ungulate@N +ungulates@p +unhand@t +unhanded@t +unhanding@t +unhands@t +unhappier@A +unhappiest@? +unhappily@? +unhappiness@N +unhappy@A +unharmed@A +unhealthful@? +unhealthier@A +unhealthiest@A +unhealthily@v +unhealthy@A +unheard@A +unheeded@A +unhelpful@A +unhelpfully@v +unheralded@A +unhesitating@A +unhesitatingly@v +unhindered@A +unhinge@t +unhinged@t +unhinges@t +unhinging@t +unhitch@t +unhitched@t +unhitches@? +unhitching@t +unholier@? +unholiest@? +unholy@A +unhook@ti +unhooked@ti +unhooking@ti +unhooks@ti +unhorse@t +unhorsed@t +unhorses@t +unhorsing@t +unhurried@A +unhurriedly@v +unhurt@A +unhygienic@A +uni@N +unicameral@A +unicef@N +unicorn@N +unicorns@p +unicycle@N +unicycles@p +unidentifiable@A +unidentified@A +unidirectional@A +unification@N +unified@t +unifies@? +uniform@NAt +uniformed@A +uniforming@At +uniformity@N +uniformly@v +uniforms@pt +unify@V +unifying@t +unilateral@A +unilateralism@N +unilaterally@v +unimaginable@A +unimaginably@v +unimaginative@A +unimpaired@A +unimpeachable@A +unimpeded@A +unimplementable@? +unimplemented@? +unimportant@A +unimpressed@A +unimpressive@A +uninformative@A +uninformed@A +uninhabitable@A +uninhabited@A +uninhibited@A +uninitialised@? +uninitialized@? +uninitiated@A +uninjured@A +uninspired@A +uninspiring@A +uninstall@? +uninstallable@? +uninstalled@A +uninstaller@? +uninstallers@p +uninstalling@? +uninstalls@p +uninsured@A +unintelligent@A +unintelligible@? +unintelligibly@v +unintended@A +unintentional@A +unintentionally@v +uninterested@A +uninteresting@A +uninterpreted@A +uninterrupted@A +uninterruptedly@v +uninvited@A +uninviting@A +union@N +unionisation@N +unionise@ti +unionised@ti +unionises@ti +unionising@ti +unionism@N +unionist@NA +unionists@p +unionization@? +unionize@Vt +unionized@Vt +unionizes@Vt +unionizing@Vt +unions@p +unique@AN +uniquely@? +uniqueness@? +uniquer@? +uniquest@? +unis@p +unisex@A +unison@N +unit@N +unitarian@NA +unitarianism@N +unitarianisms@p +unitarians@p +unitary@A +unite@VtN +united@A +unites@Vtp +unities@p +uniting@V +units@p +unity@N +universal@AN +universality@N +universally@v +universals@p +universe@N +universes@p +universities@p +university@N +unix@? +unixes@? +unixism@? +unixisms@p +unjust@A +unjustifiable@A +unjustifiably@v +unjustified@A +unjustly@v +unkempt@A +unkind@A +unkinder@? +unkindest@? +unkindlier@? +unkindliest@? +unkindly@? +unkindness@? +unknowable@A +unknowing@A +unknowingly@v +unknowings@p +unknown@AN +unknowns@p +unlabeled@A +unlabelled@A +unlace@t +unlaced@t +unlaces@t +unlacing@t +unlatch@V +unlatched@V +unlatches@? +unlatching@V +unlawful@A +unlawfully@v +unleaded@A +unlearn@V +unlearned@A +unlearning@A +unlearns@V +unlearnt@A +unleash@t +unleashed@t +unleashes@? +unleashing@t +unleavened@A +unless@CP +unlettered@A +unlicensed@A +unlike@AP +unlikelier@? +unlikeliest@? +unlikelihood@N +unlikely@A +unlimited@A +unlisted@A +unlit@A +unload@Vt +unloaded@Vt +unloading@Vt +unloads@Vt +unlock@ti +unlocked@ti +unlocking@ti +unlocks@ti +unloose@t +unloosed@t +unlooses@t +unloosing@t +unloved@A +unlovely@A +unluckier@A +unluckiest@A +unluckily@v +unlucky@A +unmade@VA +unmake@V +unmakes@V +unmaking@t +unman@V +unmanageable@A +unmanlier@? +unmanliest@? +unmanly@Av +unmanned@A +unmannerly@Av +unmanning@? +unmans@V +unmarked@A +unmarried@A +unmask@Vt +unmasked@A +unmasking@A +unmasks@Vt +unmatched@A +unmemorable@A +unmentionable@A +unmentionables@p +unmerciful@A +unmercifully@v +unmet@A +unmindful@A +unmissable@A +unmistakable@A +unmistakably@v +unmitigated@A +unmodified@A +unmolested@A +unmoral@A +unmoved@A +unmusical@A +unnamed@A +unnatural@A +unnaturally@v +unnecessarily@v +unnecessary@A +unneeded@A +unnerve@t +unnerved@t +unnerves@t +unnerving@t +unnervingly@? +unnoticeable@A +unnoticed@A +unnumbered@A +unobjectionable@A +unobservant@A +unobserved@A +unobstructed@A +unobtainable@A +unobtrusive@A +unobtrusively@v +unoccupied@A +unoffensive@A +unofficial@A +unofficially@v +unopened@A +unopposed@A +unorganised@? +unorganized@A +unoriginal@A +unorthodox@A +unpack@Vt +unpacked@Vt +unpacking@Vt +unpacks@Vt +unpaid@A +unpainted@A +unpalatable@A +unparalleled@A +unpardonable@A +unpatriotic@A +unpaved@A +unperturbed@A +unpick@t +unpicked@A +unpicking@t +unpicks@t +unpin@V +unpinned@t +unpinning@t +unpins@V +unplaced@A +unplanned@t +unplayable@A +unpleasant@A +unpleasantly@? +unpleasantness@N +unplug@V +unplugged@t +unplugging@t +unplugs@V +unplumbed@A +unpolluted@A +unpopular@A +unpopularity@N +unprecedented@A +unprecedentedly@? +unpredictability@N +unpredictable@A +unpredictably@v +unprejudiced@A +unpremeditated@A +unprepared@A +unprepossessing@A +unpretentious@A +unpreventable@A +unprincipled@A +unprintable@A +unprivileged@A +unproductive@A +unprofessional@A +unprofessionally@v +unprofitable@A +unpromising@A +unprompted@A +unpronounceable@A +unprotected@A +unproved@A +unproven@A +unprovoked@A +unpublished@A +unpunished@A +unqualified@A +unquenchable@A +unquestionable@A +unquestionably@v +unquestioned@A +unquestioning@A +unquestioningly@? +unquiet@AN +unquote@!V +unquoted@A +unquotes@!V +unquoting@i +unravel@Vti +unraveled@V +unraveling@V +unravelled@V +unravelling@V +unravels@Vti +unreachable@A +unread@A +unreadable@A +unreadier@? +unreadiest@? +unready@A +unreal@A +unrealised@V +unrealistic@A +unrealistically@v +unreality@N +unrealized@V +unreasonable@A +unreasonableness@N +unreasonably@v +unreasoning@A +unrecognisable@A +unrecognised@? +unrecognizable@A +unrecognized@A +unreconstructed@A +unrecorded@A +unrefined@A +unregenerate@AN +unregistered@A +unregulated@A +unrehearsed@A +unrelated@A +unreleased@A +unrelenting@A +unrelentingly@v +unreliability@N +unreliable@A +unrelieved@A +unrelievedly@? +unremarkable@A +unremarked@A +unremitting@A +unremittingly@v +unrepeatable@A +unrepentant@A +unrepresentative@A +unrequited@A +unreserved@A +unreservedly@v +unresolved@A +unresponsive@A +unrest@N +unrestrained@A +unrestricted@A +unrewarded@A +unrewarding@A +unripe@A +unriper@? +unripest@? +unrivaled@A +unrivalled@A +unroll@V +unrolled@V +unrolling@V +unrolls@V +unromantic@A +unruffled@A +unrulier@? +unruliest@? +unruliness@N +unruly@A +unsaddle@Vt +unsaddled@V +unsaddles@Vt +unsaddling@V +unsafe@A +unsafer@? +unsafest@? +unsaid@A +unsalable@A +unsaleable@A +unsalted@A +unsanctioned@A +unsanitary@A +unsatisfactory@A +unsatisfied@A +unsatisfying@? +unsaturated@A +unsavory@A +unsavoury@A +unsay@V +unsaying@t +unsays@V +unscathed@A +unscheduled@A +unschooled@A +unscientific@A +unscramble@t +unscrambled@t +unscrambles@t +unscrambling@t +unscrew@ti +unscrewed@ti +unscrewing@ti +unscrews@ti +unscripted@A +unscrupulous@A +unscrupulously@v +unscrupulousness@? +unseal@t +unsealed@A +unsealing@t +unseals@t +unseasonable@A +unseasonably@v +unseasoned@A +unseat@t +unseated@t +unseating@t +unseats@t +unsecured@A +unseeded@A +unseeing@A +unseeingly@v +unseemlier@? +unseemliest@? +unseemliness@? +unseemly@Av +unseen@AN +unselfish@A +unselfishly@v +unselfishness@N +unsent@A +unsentimental@A +unset@A +unsettle@Vt +unsettled@A +unsettles@Vt +unsettling@Vt +unshakable@A +unshakeable@A +unshaken@A +unshaven@? +unsheathe@t +unsheathed@t +unsheathes@t +unsheathing@t +unsightlier@? +unsightliest@? +unsightliness@N +unsightly@A +unsigned@A +unskilled@A +unskillful@A +unsmiling@A +unsnap@V +unsnapped@t +unsnapping@t +unsnaps@V +unsnarl@t +unsnarled@t +unsnarling@t +unsnarls@t +unsociable@A +unsocial@A +unsold@t +unsolicited@A +unsolved@A +unsophisticated@A +unsound@A +unsounder@? +unsoundest@? +unsparing@A +unspeakable@A +unspeakably@v +unspecific@A +unspecified@A +unspectacular@A +unspoiled@A +unspoilt@A +unspoken@A +unsporting@A +unsportsmanlike@A +unstable@A +unstabler@? +unstablest@? +unstated@A +unsteadier@? +unsteadiest@? +unsteadily@? +unsteadiness@? +unsteady@VA +unstinting@A +unstintingly@v +unstop@V +unstoppable@A +unstopped@A +unstopping@t +unstops@V +unstressed@A +unstructured@A +unstrung@A +unstuck@A +unstudied@A +unsubscribe@? +unsubscribed@A +unsubscribes@? +unsubscribing@A +unsubstantial@A +unsubstantiated@A +unsubtle@A +unsuccessful@A +unsuccessfully@v +unsuitable@A +unsuitably@? +unsuited@A +unsullied@A +unsung@A +unsupervised@A +unsupportable@A +unsupported@A +unsure@A +unsurpassed@A +unsurprising@A +unsurprisingly@v +unsuspected@A +unsuspecting@A +unsustainable@A +unsweetened@A +unswerving@A +unsympathetic@A +untainted@A +untamed@A +untangle@t +untangled@t +untangles@t +untangling@t +untapped@A +untaught@A +untenable@A +untested@A +unthinkable@A +unthinking@A +unthinkingly@v +untidier@A +untidiest@A +untidily@v +untidiness@N +untidy@At +untie@Vt +untied@V +unties@Vt +until@CP +untimelier@? +untimeliest@? +untimeliness@N +untimely@Av +untiring@A +untiringly@v +untitled@A +unto@P +untold@A +untouchable@AN +untouchables@p +untouched@A +untoward@A +untrained@A +untrammeled@A +untrammelled@A +untreated@A +untried@A +untroubled@A +untrue@A +untruer@? +untruest@? +untrustworthy@A +untruth@N +untruthful@A +untruthfully@v +untruths@p +untutored@A +untwist@? +untwisted@? +untwisting@? +untwists@p +untying@V +untypical@A +untypically@v +unusable@A +unused@A +unusual@A +unusually@v +unutterable@A +unutterably@v +unvarnished@A +unvarying@A +unveil@t +unveiled@t +unveiling@N +unveils@t +unverified@A +unversed@A +unvoiced@A +unwaged@? +unwanted@A +unwarier@? +unwariest@? +unwariness@? +unwarranted@A +unwary@A +unwashed@AN +unwavering@A +unwed@A +unwelcome@A +unwelcoming@A +unwell@N +unwholesome@A +unwieldier@? +unwieldiest@? +unwieldiness@N +unwieldy@A +unwilling@A +unwillingly@v +unwillingness@? +unwind@Vt +unwinding@Vt +unwinds@Vt +unwise@A +unwisely@v +unwiser@? +unwisest@? +unwitting@A +unwittingly@v +unwonted@A +unworkable@A +unworldly@A +unworthier@? +unworthiest@? +unworthiness@? +unworthy@A +unwound@V +unwrap@V +unwrapped@V +unwrapping@V +unwraps@V +unwritten@A +unyielding@A +unzip@V +unzipped@? +unzipping@? +unzips@V +up@N +upanishads@p +upbeat@NA +upbeats@p +upbraid@t +upbraided@t +upbraiding@A +upbraids@t +upbringing@N +upbringings@p +upc@? +upchuck@? +upchucked@? +upchucking@? +upchucks@p +upcoming@? +upcountry@ANv +update@VtN +updated@V +updater@N +updates@Vtp +updating@V +updike@N +updraft@N +updrafts@p +updraught@? +updraughts@p +upend@Vt +upended@Vt +upending@Vt +upends@Vt +upfront@? +upgrade@VtNAv +upgraded@V +upgrades@Vtpv +upgrading@V +upheaval@N +upheavals@p +upheld@V +uphill@AvN +uphills@pv +uphold@V +upholder@N +upholders@p +upholding@t +upholds@V +upholster@t +upholstered@t +upholsterer@N +upholsterers@p +upholstering@t +upholsters@t +upholstery@N +upi@N +upkeep@N +upland@N +uplands@p +uplift@VtN +uplifted@VtA +uplifting@VtA +upliftings@p +uplifts@Vtp +upload@? +uploaded@? +uploading@? +uploads@p +upmarket@? +upon@P +upped@? +upper@AN +uppercase@? +upperclassman@N +upperclassmen@p +upperclasswoman@? +upperclasswomen@? +uppercut@VN +uppercuts@Vp +uppercutting@V +uppermost@Av +uppers@p +upping@? +uppity@A +upraise@t +upraised@t +upraises@t +upraising@t +upright@AvNt +uprightness@? +uprights@pvt +uprising@N +uprisings@p +upriver@AvN +uproar@N +uproarious@A +uproariously@v +uproars@p +uproot@t +uprooted@t +uprooting@t +uproots@t +ups@p +upscale@? +upset@VNA +upsets@Vp +upsetting@N +upshot@N +upshots@p +upside@N +upsides@v +upstage@vAtN +upstaged@vAV +upstages@vpt +upstaging@vAV +upstairs@vN +upstanding@A +upstart@NVi +upstarted@AVi +upstarting@AVi +upstarts@pVi +upstate@AvN +upstream@vA +upsurge@ViN +upsurged@V +upsurges@Vip +upsurging@V +upswing@NVi +upswings@pVi +uptake@N +uptakes@p +uptempo@? +uptight@A +uptown@AvN +uptrend@N +upturn@VtN +upturned@A +upturning@VtA +upturns@Vtp +upward@Av +upwardly@v +upwards@v +upwind@vA +ur@N +ural@N +urals@p +urania@N +uranium@N +uranus@N +urban@A +urbane@A +urbanely@v +urbaner@? +urbanest@? +urbanisation@N +urbanise@t +urbanised@t +urbanises@t +urbanising@t +urbanity@N +urbanization@N +urbanize@t +urbanized@t +urbanizes@t +urbanizing@t +urchin@N +urchins@p +urdu@N +urea@N +urethra@N +urethrae@? +urethras@p +urey@N +urge@tN +urged@V +urgency@N +urgent@A +urgently@? +urges@tp +urging@V +uriah@N +uric@A +uriel@N +urinal@N +urinals@p +urinalyses@p +urinalysis@N +urinary@N +urinate@i +urinated@i +urinates@i +urinating@i +urination@N +urine@N +url@? +urls@p +urn@N +urns@p +urological@? +urologist@? +urologists@p +urology@N +urquhart@N +ursula@N +ursuline@N +uruguay@N +uruguayan@AN +uruguayans@p +urumqi@? +us@N +usa@N +usable@A +usaf@? +usage@N +usages@p +usb@? +usda@N +use@VtN +useable@? +used@A +useful@AN +usefully@v +usefulness@N +useless@A +uselessly@v +uselessness@N +usenet@? +usenets@p +user@N +users@p +uses@N +usher@N +ushered@A +usherette@N +usherettes@p +ushering@A +ushers@p +using@V +usmc@N +usn@N +uso@? +uss@N +ussr@? +ustinov@N +usual@AN +usually@v +usurer@N +usurers@p +usurious@A +usurp@V +usurpation@N +usurped@V +usurper@N +usurpers@p +usurping@V +usurps@V +usury@N +ut@N +utah@N +ute@N +utensil@N +utensils@p +uteri@? +uterine@A +uterus@N +uteruses@? +utilisable@? +utilisation@? +utilise@? +utilised@? +utilises@? +utilising@? +utilitarian@AN +utilitarianism@N +utilitarians@p +utilities@p +utility@N +utilizable@A +utilization@N +utilize@t +utilized@t +utilizes@t +utilizing@t +utmost@AN +utopia@N +utopian@AN +utopians@p +utopias@p +utrecht@N +utrillo@N +utter@N +utterance@N +utterances@p +uttered@A +uttering@A +utterly@? +uttermost@AN +utters@p +uv@N +uvula@N +uvulae@p +uvular@AN +uvulars@p +uvulas@p +uzbek@N +uzbekistan@? +uzi@? +va@N +vac@N +vacancies@? +vacancy@N +vacant@A +vacantly@v +vacate@V +vacated@V +vacates@V +vacating@V +vacation@Ni +vacationed@Ai +vacationer@? +vacationers@p +vacationing@Ai +vacations@pi +vaccinate@V +vaccinated@V +vaccinates@V +vaccinating@V +vaccination@N +vaccinations@p +vaccine@N +vaccines@p +vacillate@i +vacillated@i +vacillates@i +vacillating@A +vacillation@N +vacillations@p +vacs@p +vacua@N +vacuity@N +vacuous@A +vacuously@v +vacuousness@N +vacuum@NV +vacuumed@AV +vacuuming@AV +vacuums@p +vaduz@N +vagabond@N +vagabonded@A +vagabonding@A +vagabonds@p +vagaries@p +vagary@N +vagina@N +vaginae@? +vaginal@A +vaginas@p +vagrancy@N +vagrant@NA +vagrants@p +vague@A +vaguely@v +vagueness@N +vaguer@A +vaguest@A +vain@AN +vainer@? +vainest@? +vainglorious@A +vainglory@N +vainly@v +valance@N +valances@p +vale@!N +valedictorian@N +valedictorians@p +valedictories@p +valedictory@NA +valence@N +valences@p +valencia@N +valencies@? +valency@N +valentine@N +valentines@p +valentino@N +vales@!p +valet@N +valeted@V +valeting@V +valets@p +valhalla@N +valiant@A +valiantly@v +valid@A +validate@t +validated@t +validates@t +validating@t +validation@N +validations@p +validity@N +validly@v +validness@N +valise@N +valises@p +valium@? +valiums@p +valkyrie@N +valkyries@p +valletta@N +valley@N +valleys@p +valois@N +valor@N +valorous@A +valour@N +valparaiso@N +valuable@AN +valuables@p +valuation@N +valuations@p +value@Nt +valued@A +valueless@A +valuer@N +valuers@p +values@pt +valuing@At +valve@N +valved@V +valves@p +valving@V +vamoose@i +vamoosed@V +vamooses@i +vamoosing@V +vamp@NVt +vamped@AVt +vamping@AVt +vampire@N +vampires@p +vamps@pVt +van@N +vanadium@N +vance@N +vancouver@N +vandal@N +vandalise@? +vandalised@? +vandalises@? +vandalising@? +vandalism@N +vandalize@t +vandalized@t +vandalizes@t +vandalizing@t +vandals@p +vanderbilt@N +vandyke@N +vane@N +vanes@p +vanguard@N +vanguards@p +vanilla@N +vanillas@p +vanish@iN +vanished@iA +vanishes@? +vanishing@iA +vanishings@p +vanities@? +vanity@N +vanned@V +vanning@V +vanquish@t +vanquished@t +vanquishes@? +vanquishing@t +vans@p +vantage@N +vantages@p +vanuatu@? +vapid@A +vapidity@N +vapidness@N +vapor@N +vaporisation@? +vaporise@? +vaporised@? +vaporiser@? +vaporisers@p +vaporises@? +vaporising@? +vaporization@N +vaporize@Vi +vaporized@V +vaporizer@N +vaporizers@p +vaporizes@Vi +vaporizing@V +vaporous@A +vapors@N +vaporware@? +vaporwares@? +vapour@NVi +vapours@pVi +var@N +varanasi@N +varese@N +vargas@N +variability@N +variable@AN +variables@p +variably@v +variance@N +variances@p +variant@AN +variants@p +variate@N +variation@N +variations@p +varicolored@A +varicoloured@? +varicose@A +varied@A +variegate@t +variegated@A +variegates@t +variegating@t +variegation@N +varies@? +varieties@p +variety@N +various@DA +variously@? +varlet@N +varlets@p +varmint@N +varmints@p +varnish@Nt +varnished@At +varnishes@? +varnishing@At +vars@p +varsities@? +varsity@N +vary@N +varying@V +vascular@A +vase@N +vasectomies@? +vasectomy@N +vaseline@N +vaselines@p +vases@p +vassal@NA +vassalage@N +vassals@p +vast@AN +vaster@? +vastest@? +vastly@v +vastness@N +vasts@p +vat@N +vatican@N +vats@p +vatted@? +vatting@? +vauban@N +vaudeville@N +vaughan@N +vault@NtiV +vaulted@A +vaulter@N +vaulters@p +vaulting@NA +vaults@ptiV +vaunt@tiN +vaunted@A +vaunting@A +vaunts@tip +vax@? +vaxes@? +vcr@? +vd@N +vdt@? +veal@N +vector@N +vectored@A +vectoring@A +vectors@p +veda@N +vedanta@N +vedas@p +veep@tN +veeps@tp +veer@ViNt +veered@ViAt +veering@ViAt +veers@Vipt +veg@N +vega@N +vegan@N +vegans@p +vegas@p +vegeburger@? +vegeburgers@p +veges@? +vegetable@N +vegetables@p +vegetarian@NA +vegetarianism@N +vegetarians@p +vegetate@i +vegetated@i +vegetates@i +vegetating@i +vegetation@N +vegetative@A +vegged@? +vegges@? +veggie@? +veggieburger@? +veggieburgers@p +veggies@? +vegging@? +vegs@p +vehemence@N +vehement@A +vehemently@v +vehicle@N +vehicles@p +vehicular@A +veil@Nt +veiled@A +veiling@N +veils@pt +vein@Nt +veined@At +veining@N +veins@pt +vela@N +velar@A +velars@p +velcro@N +velcros@p +veld@N +velds@p +veldt@? +veldts@p +vellum@NA +velocities@? +velocity@N +velodrome@N +velodromes@p +velour@N +velours@N +velvet@N +velveteen@N +velvetier@? +velvetiest@? +velvety@A +venal@A +venality@N +venally@v +vend@N +vended@A +vender@N +venders@p +vendetta@N +vendettas@p +vending@A +vendor@N +vendors@p +vends@p +veneer@Nt +veneered@At +veneering@N +veneers@pt +venerable@A +venerate@t +venerated@t +venerates@t +venerating@t +veneration@N +venereal@A +venetian@AN +venetians@p +venezuela@N +venezuelan@AN +venezuelans@p +vengeance@N +vengeful@A +vengefully@v +venial@A +venice@N +venison@N +venom@N +venomous@v +venomously@? +venous@A +vent@N +vented@A +ventilate@t +ventilated@t +ventilates@t +ventilating@t +ventilation@N +ventilator@N +ventilators@p +venting@A +ventral@A +ventricle@N +ventricles@p +ventricular@A +ventriloquism@N +ventriloquist@N +ventriloquists@p +vents@p +venture@tiN +ventured@V +ventures@tip +venturesome@A +venturing@V +venturous@A +venue@N +venues@p +venus@N +venuses@p +venusian@AN +veracious@A +veracity@N +veracruz@N +veranda@N +verandah@? +verandahs@p +verandas@p +verb@N +verbal@AN +verbalise@ti +verbalised@ti +verbalises@ti +verbalising@ti +verbalize@Vi +verbalized@V +verbalizes@Vi +verbalizing@V +verbally@v +verbals@p +verbatim@vA +verbena@N +verbenas@p +verbiage@N +verbiages@p +verbose@A +verbosely@? +verbosity@N +verbs@p +verdant@A +verde@N +verdi@N +verdict@N +verdicts@p +verdigris@N +verdigrised@A +verdigrises@? +verdigrising@A +verdun@N +verdure@N +verge@N +verged@Vi +verger@N +vergers@p +verges@p +vergil@N +verging@Vi +verier@A +veriest@AN +verifiable@A +verification@? +verified@t +verifies@? +verify@V +verifying@t +verily@v +verisimilitude@N +veritable@A +veritably@v +verities@p +verity@N +vermeer@N +vermicelli@N +vermilion@N +vermillion@N +vermin@N +verminous@A +vermont@N +vermonter@N +vermouth@N +vernacular@AN +vernaculars@p +vernal@A +verne@N +verona@N +veronese@N +veronica@N +verruca@N +verrucae@p +verrucas@p +versailles@N +versatile@A +versatility@N +verse@NV +versed@A +verses@pV +versification@N +versified@V +versifies@? +versify@V +versifying@V +versing@A +version@N +versions@p +verso@N +versos@p +versus@P +vertebra@N +vertebrae@? +vertebral@A +vertebras@p +vertebrate@NA +vertebrates@p +vertex@N +vertexes@p +vertical@AN +vertically@v +verticals@p +vertices@N +vertiginous@A +vertigo@N +verve@N +very@vA +vesicle@N +vesicles@p +vespasian@N +vesper@N +vespers@N +vespucci@N +vessel@N +vessels@p +vest@Nti +vesta@N +vested@A +vestibule@N +vestibules@p +vestige@N +vestiges@p +vestigial@A +vestigially@v +vesting@N +vestment@N +vestments@p +vestries@p +vestry@N +vests@pti +vesuvius@N +vet@N +vetch@N +vetches@? +veteran@N +veterans@p +veterinarian@N +veterinarians@p +veterinaries@p +veterinary@A +veto@N +vetoed@p +vetoes@p +vetoing@p +vets@p +vetted@? +vetting@? +vex@t +vexation@N +vexations@p +vexatious@A +vexatiously@v +vexed@A +vexes@? +vexing@t +vhf@N +vhs@p +vi@N +via@P +viability@N +viable@A +viably@? +viaduct@N +viaducts@p +viagra@? +vial@N +vials@p +viand@N +viands@p +vibe@? +vibes@p +vibrancy@N +vibrant@AN +vibrantly@v +vibraphone@N +vibraphones@p +vibrate@Vi +vibrated@V +vibrates@Vi +vibrating@V +vibration@N +vibrations@p +vibrato@N +vibrator@N +vibrators@p +vibratos@p +viburnum@N +viburnums@p +vic@N +vicar@N +vicarage@N +vicarages@p +vicarious@A +vicariously@v +vicars@p +vice@N +viced@A +viceroy@N +viceroys@p +vices@p +vichy@N +vichyssoise@N +vicing@A +vicinity@N +vicious@A +viciously@? +viciousness@? +vicissitude@N +vicissitudes@p +vicksburg@N +vicky@N +victim@N +victimisation@N +victimise@t +victimised@t +victimises@t +victimising@t +victimization@N +victimize@t +victimized@t +victimizes@t +victimizing@t +victims@p +victor@N +victoria@N +victorian@AN +victorians@p +victories@p +victorious@A +victoriously@v +victors@p +victory@N +victrola@? +victual@Vi +victualed@Vi +victualing@Vi +victualled@? +victualling@? +victuals@p +video@N +videocassette@? +videocassettes@? +videoconferencing@? +videodisc@? +videodiscs@p +videoed@A +videoing@A +videophone@N +videophones@p +videos@p +videotape@? +videotaped@? +videotapes@? +videotaping@? +videotex@? +videotexes@? +vie@VNt +vied@V +vienna@N +viennese@? +vientiane@N +vies@Vpt +vietcong@N +vietminh@N +vietnam@N +vietnamese@p +view@Nt +viewed@At +viewer@N +viewers@p +viewfinder@N +viewfinders@p +viewing@N +viewings@p +viewpoint@N +viewpoints@p +views@pt +vigil@N +vigilance@N +vigilant@A +vigilante@N +vigilantes@p +vigilantism@N +vigilantly@v +vigils@p +vignette@Nt +vignetted@V +vignettes@pt +vignetting@N +vigor@N +vigorous@A +vigorously@v +vigour@N +viking@N +vikings@p +vila@p +vile@A +vilely@v +vileness@N +viler@? +vilest@? +vilification@N +vilified@t +vilifies@? +vilify@V +vilifying@t +villa@N +village@N +villager@NA +villagers@p +villages@p +villain@N +villainies@p +villainous@A +villains@p +villainy@N +villas@p +villein@N +villeins@p +villon@N +vilnius@N +vim@N +vinaigrette@NA +vindicate@t +vindicated@t +vindicates@t +vindicating@t +vindication@N +vindications@p +vindicator@N +vindicators@p +vindictive@A +vindictively@v +vindictiveness@N +vine@N +vinegar@Nt +vinegary@? +vines@p +vineyard@N +vineyards@p +vino@N +vintage@NAt +vintages@pt +vintner@N +vintners@p +vinyl@N +vinyls@p +viol@N +viola@N +violable@A +violas@p +violate@tA +violated@t +violates@tp +violating@t +violation@? +violations@p +violator@? +violators@p +violence@N +violent@A +violently@? +violet@N +violets@p +violin@N +violincello@? +violincellos@p +violinist@N +violinists@p +violins@p +violist@N +violists@p +violoncello@N +violoncellos@p +viols@p +vip@N +viper@N +vipers@p +vips@p +virago@N +viragoes@p +viragos@p +viral@A +vireo@N +vireos@p +virgil@N +virgin@N +virginal@AN +virginals@p +virginia@N +virginian@AN +virginians@p +virginity@N +virgins@p +virgo@N +virgos@p +virgule@N +virgules@p +virile@A +virility@N +virology@N +virtual@A +virtually@v +virtue@N +virtues@p +virtuosi@? +virtuosity@NA +virtuoso@N +virtuosos@p +virtuous@A +virtuously@v +virtuousness@N +virulence@N +virulent@A +virulently@v +virus@N +viruses@p +visa@Nt +visaed@p +visage@N +visages@p +visaing@p +visakhapatnam@N +visas@p +visayans@p +viscera@p +visceral@A +viscid@A +viscose@NA +viscosity@N +viscount@N +viscountcies@? +viscountcy@N +viscountess@N +viscountesses@? +viscounts@p +viscous@A +viscus@N +vise@NV +vised@V +vises@pV +vishnu@NA +visibility@N +visible@AN +visibly@? +visigoth@N +vising@V +vision@Nt +visionaries@p +visionary@ANi +visioned@At +visioning@At +visions@pt +visit@VtN +visitation@N +visitations@p +visited@VtA +visiting@VtA +visitor@N +visitors@p +visits@Vtp +visor@Nt +visors@pt +vista@N +vistas@p +vistula@N +visual@AN +visualisation@N +visualisations@p +visualise@? +visualised@? +visualises@? +visualising@? +visualization@N +visualizations@p +visualize@V +visualized@V +visualizes@V +visualizing@V +visually@v +visuals@p +vital@AN +vitalise@t +vitalised@t +vitalises@t +vitalising@t +vitality@N +vitalize@t +vitalized@t +vitalizes@t +vitalizing@t +vitally@v +vitals@p +vitamin@N +vitamins@p +vitiate@t +vitiated@A +vitiates@t +vitiating@t +vitiation@N +viticulture@N +vitreous@A +vitriol@Nt +vitriolic@A +vitriolically@? +vituperate@t +vituperated@t +vituperates@t +vituperating@t +vituperation@N +vituperative@? +viva@! +vivace@Av +vivacious@A +vivaciously@v +vivaciousness@N +vivacity@N +vivaldi@? +vivas@! +vivian@N +vivid@A +vivider@? +vividest@? +vividly@v +vividness@N +vivified@? +vivifies@? +vivify@V +vivifying@V +viviparous@p +vivisection@N +vivisectionist@N +vivisectionists@p +vixen@NA +vixenish@A +vixens@p +viz@N +vizier@N +viziers@p +vizor@NV +vizors@pV +vj@? +vladimir@N +vladivostok@N +vlaminck@N +vlf@N +vocab@N +vocabularies@p +vocabulary@N +vocal@AN +vocalic@A +vocalisation@? +vocalisations@p +vocalise@N +vocalised@A +vocalises@p +vocalising@A +vocalist@N +vocalists@p +vocalization@N +vocalizations@p +vocalize@Vti +vocalized@V +vocalizes@Vti +vocalizing@V +vocally@v +vocals@p +vocation@N +vocational@A +vocationally@v +vocations@p +vocative@AN +vocatives@p +vociferate@V +vociferated@V +vociferates@V +vociferating@V +vociferation@N +vociferous@A +vociferously@v +vodka@N +vodkas@p +vogue@NA +vogues@p +voguish@? +voice@Nt +voiced@A +voiceless@A +voices@pt +voicing@V +void@ANV +voided@A +voiding@AV +voids@pV +voile@N +vol@? +volatile@AN +volatility@N +volcanic@A +volcano@N +volcanoes@p +volcanos@p +vole@N +voles@p +volga@N +volgograd@N +volition@N +volley@NVti +volleyball@N +volleyballs@p +volleyed@p +volleying@p +volleys@p +volt@N +volta@N +voltage@N +voltages@p +voltaic@A +voltaire@N +voltmeter@N +voltmeters@p +volts@p +volubility@? +voluble@A +volubly@? +volume@N +volumes@p +voluminous@A +voluminously@v +voluntaries@? +voluntarily@v +voluntary@AN +volunteer@NVti +volunteered@AVti +volunteering@AVti +volunteers@pVti +voluptuaries@p +voluptuary@NA +voluptuous@A +voluptuously@? +voluptuousness@? +vomit@VN +vomited@VA +vomiting@VA +vomits@Vp +voodoo@N +voodooed@A +voodooing@p +voodooism@? +voodoos@p +voracious@A +voraciously@v +voraciousness@N +voracity@N +voronezh@N +vortex@N +vortexes@? +vortices@N +votaries@p +votary@NA +vote@NVt +voted@V +voter@N +voters@p +votes@pVt +voting@V +votive@A +vouch@itN +vouched@itA +voucher@N +vouchers@p +vouches@? +vouching@itA +vouchsafe@t +vouchsafed@t +vouchsafes@t +vouchsafing@t +vow@Nti +vowed@Ati +vowel@N +vowels@p +vowing@Ati +vows@pti +voyage@NV +voyaged@AV +voyager@N +voyagers@p +voyages@pV +voyaging@AV +voyeur@N +voyeurism@N +voyeuristic@? +voyeurs@p +vp@N +vs@p +vt@N +vtol@N +vulcan@N +vulcanisation@N +vulcanise@t +vulcanised@t +vulcanises@t +vulcanising@t +vulcanization@N +vulcanize@t +vulcanized@t +vulcanizes@t +vulcanizing@t +vulgar@A +vulgarer@? +vulgarest@? +vulgarisation@N +vulgarise@t +vulgarised@t +vulgarises@t +vulgarising@t +vulgarism@N +vulgarisms@p +vulgarities@p +vulgarity@N +vulgarization@? +vulgarize@t +vulgarized@t +vulgarizes@t +vulgarizing@t +vulgarly@v +vulgate@N +vulgates@p +vulnerabilities@? +vulnerability@? +vulnerable@A +vulnerably@? +vulture@N +vultures@p +vulva@N +vulvae@? +vulvas@p +vying@AV +wa@? +wabash@N +wabbit@? +wabbits@p +wac@? +wackier@A +wackiest@A +wackiness@N +wacko@? +wackos@p +wacky@A +waco@N +wad@N +wadded@V +wadding@N +waddle@iN +waddled@V +waddles@ip +waddling@V +wade@N +waded@V +wader@N +waders@p +wades@p +wadge@? +wadges@? +wadi@N +wading@V +wadis@p +wads@p +wafer@Nt +wafers@pt +waffle@Ni +waffled@i +waffles@pi +waffling@i +waft@VN +wafted@VA +wafting@VA +wafts@Vp +wag@VN +wage@Nt +waged@VA +wager@N +wagered@A +wagering@A +wagers@p +wages@pt +wagged@V +wagging@V +waggish@A +waggle@VN +waggled@V +waggles@Vp +waggling@V +waggon@NV +waggoner@N +waggoners@p +waggons@pV +waging@VA +wagner@N +wagnerian@? +wagon@N +wagoner@N +wagoners@p +wagons@p +wags@Vp +wagtail@N +wagtails@p +wahhabi@N +waif@N +waifs@p +waikiki@N +wail@itN +wailed@itA +wailing@itA +wails@itp +wainscot@VN +wainscoted@V +wainscoting@V +wainscotings@V +wainscots@Vp +wainscotted@V +wainscotting@V +wainscottings@V +waist@N +waistband@N +waistbands@p +waistcoat@N +waistcoats@p +waistline@N +waistlines@p +waists@p +wait@N +waited@A +waiter@N +waiters@p +waiting@A +waitress@N +waitresses@? +waits@p +waive@t +waived@ti +waiver@N +waivers@p +waives@t +waiving@ti +wake@N +waked@A +wakeful@A +wakefulness@N +waken@N +wakened@A +wakening@A +wakens@p +wakes@p +waking@A +waksman@N +waldensian@AN +waldheim@N +waldo@N +waldoes@? +waldos@N +wale@NVAt +waled@V +wales@N +walesa@? +waling@NV +walk@iNt +walkabout@N +walkabouts@p +walkaway@N +walkaways@p +walked@iAt +walker@N +walkers@p +walkies@? +walking@A +walkman@? +walkout@N +walkouts@p +walkover@N +walkovers@p +walks@ipt +walkway@N +walkways@p +wall@N +wallabies@p +wallaby@N +wallace@N +wallah@N +wallahs@p +wallboard@N +walled@A +wallenstein@N +waller@N +wallet@N +wallets@p +walleye@N +walleyed@A +walleyes@p +wallflower@N +wallflowers@p +wallies@p +walling@N +wallis@N +walloon@NA +wallop@tiNV +walloped@tiAV +walloping@NA +wallopings@p +wallops@tipV +wallow@iN +wallowed@iA +wallowing@iA +wallows@ip +wallpaper@NV +wallpapered@AV +wallpapering@AV +wallpapers@pV +walls@N +wally@AN +walnut@NA +walnuts@p +walpurgisnacht@? +walrus@N +walruses@p +walter@N +walters@N +waltz@NV +waltzed@AV +waltzes@? +waltzing@AV +wampum@N +wan@A +wand@N +wander@VN +wandered@VA +wanderer@N +wanderers@p +wandering@AN +wanderings@p +wanderlust@N +wanderlusts@p +wanders@Vp +wands@p +wane@iN +waned@A +wanes@ip +wangle@tN +wangled@V +wangles@tp +wangling@V +waning@A +wank@iN +wanked@iA +wanker@N +wankers@p +wanking@iA +wanks@ip +wanly@? +wanna@V +wannabe@? +wannabee@? +wannabees@? +wannabes@? +wanner@A +wannest@A +want@tNi +wanted@tAi +wanting@P +wanton@ANit +wantoned@Ait +wantoning@Ait +wantonly@? +wantonness@? +wantons@pit +wants@tpi +wapiti@N +wapitis@p +war@vVNA +warble@VtN +warbled@V +warbler@N +warblers@p +warbles@Vtp +warbling@V +ward@N +warded@A +warden@N +wardens@p +warder@N +warders@p +warding@A +wardress@N +wardresses@? +wardrobe@N +wardrobes@p +wardroom@N +wardrooms@p +wards@p +ware@N +warehouse@NVt +warehoused@V +warehouses@pVt +warehousing@V +wares@p +warez@? +warezes@? +warfare@N +warhead@N +warheads@p +warhol@N +warhorse@N +warhorses@p +warier@A +wariest@A +warily@v +wariness@N +warlike@A +warlock@N +warlocks@p +warlord@N +warlords@p +warm@AVitN +warmed@AVit +warmer@N +warmers@p +warmest@? +warmhearted@? +warming@AVit +warmly@v +warmonger@N +warmongering@N +warmongers@p +warms@N +warmth@N +warn@? +warned@Vt +warning@NA +warnings@p +warns@Vt +warp@N +warpaint@? +warpath@N +warpaths@p +warped@A +warping@A +warplane@N +warplanes@p +warps@p +warrant@Nt +warranted@At +warrantied@? +warranties@p +warranting@At +warrants@pt +warranty@N +warrantying@A +warred@NV +warren@N +warrens@p +warring@N +warrior@N +warriors@p +wars@vVp +warsaw@N +warship@N +warships@p +wart@N +warthog@? +warthogs@p +wartier@A +wartiest@A +wartime@N +warts@p +warty@A +warwick@N +wary@A +was@V +wash@N +washable@A +washables@p +washbasin@N +washbasins@p +washboard@N +washboards@p +washbowl@N +washbowls@p +washcloth@N +washcloths@p +washed@A +washer@N +washers@p +washerwoman@N +washerwomen@? +washes@? +washing@N +washington@N +washingtonian@AN +washingtonians@p +washout@N +washouts@p +washroom@N +washrooms@p +washstand@N +washstands@p +washtub@N +washtubs@p +wasp@N +waspish@A +waspishly@v +wasps@p +wassail@NVi +wassailed@AVi +wassailing@AVi +wassails@pVi +wassermann@N +wastage@N +waste@tNA +wastebasket@N +wastebaskets@p +wasted@V +wasteful@A +wastefully@? +wastefulness@? +wasteland@N +wastelands@p +wastepaper@N +waster@? +wasters@p +wastes@tp +wasting@AV +wastrel@N +wastrels@p +watch@VitN +watchable@? +watchband@N +watchbands@p +watchdog@N +watchdogs@p +watched@VitA +watcher@N +watchers@p +watches@? +watchful@A +watchfully@v +watchfulness@N +watching@VitA +watchmaker@N +watchmakers@p +watchman@N +watchmen@? +watchstrap@N +watchstraps@p +watchtower@N +watchtowers@p +watchword@N +watchwords@p +water@Nti +waterbed@? +waterbeds@p +waterborne@A +waterbury@N +watercolor@N +watercolors@p +watercolour@A +watercolours@p +watercourse@N +watercourses@p +watercraft@N +watercress@N +watered@Ati +waterfall@N +waterfalls@p +waterford@N +waterfowl@N +waterfowls@p +waterfront@N +waterfronts@p +watergate@N +waterhole@? +waterholes@? +waterier@? +wateriest@? +watering@N +waterline@? +waterlines@? +waterlogged@A +waterloo@N +waterloos@p +watermark@Nt +watermarked@At +watermarking@At +watermarks@pt +watermelon@N +watermelons@p +watermill@? +watermills@p +waterpower@? +waterproof@ANt +waterproofed@At +waterproofing@At +waterproofs@pt +waters@N +watershed@N +watersheds@p +waterside@N +watersides@p +waterspout@N +waterspouts@p +watertight@A +waterway@N +waterways@p +waterwheel@? +waterwheels@p +waterworks@N +watery@A +wats@p +watson@N +watt@N +wattage@N +watteau@N +wattle@NtA +wattled@V +wattles@pt +wattling@V +watts@N +watusi@N +waugh@A +wave@VitN +waveband@N +wavebands@p +waved@AV +waveform@N +wavelength@N +wavelengths@p +wavelet@N +wavelets@p +waver@iN +wavered@iA +wavering@iA +wavers@ip +waves@N +wavier@A +waviest@A +waviness@N +waving@V +wavy@A +wax@Nti +waxed@i +waxen@AV +waxes@? +waxier@A +waxiest@A +waxiness@N +waxing@i +waxwing@N +waxwings@p +waxwork@N +waxworks@p +waxy@A +way@N +wayfarer@NA +wayfarers@p +wayfaring@AN +wayfarings@p +waylaid@? +waylay@V +waylaying@V +waylays@V +wayne@N +ways@N +wayside@N +waysides@p +wayward@A +waywardly@? +waywardness@? +wazoo@? +wazoos@p +wc@N +we@r +weak@A +weaken@V +weakened@V +weakening@V +weakens@V +weaker@? +weakest@? +weakfish@N +weakfishes@? +weakling@N +weaklings@p +weakly@Av +weakness@N +weaknesses@? +weal@N +weals@p +wealth@N +wealthier@A +wealthiest@A +wealthiness@N +wealthy@A +wean@tN +weaned@tA +weaning@tA +weans@tp +weapon@N +weaponless@A +weaponry@N +weapons@p +wear@N +wearable@AN +wearer@N +wearers@p +wearied@A +wearier@A +wearies@? +weariest@A +wearily@v +weariness@N +wearing@A +wearisome@A +wears@p +weary@A +wearying@A +weasel@N +weaseled@A +weaseling@A +weaselled@? +weaselling@? +weasels@p +weather@NAVit +weatherboard@N +weatherboarding@N +weatherboards@p +weathercock@Ni +weathercocks@pi +weathered@A +weathering@N +weatherise@? +weatherised@? +weatherises@? +weatherising@? +weatherize@? +weatherized@? +weatherizes@? +weatherizing@? +weatherman@N +weathermen@p +weatherproof@At +weatherproofed@At +weatherproofing@At +weatherproofs@pt +weathers@N +weave@ti +weaved@ti +weaver@N +weavers@p +weaves@ti +weaving@ti +web@N +webb@N +webbed@A +webbing@N +weber@N +webmaster@? +webmasters@p +webmistress@? +webmistresses@? +webs@p +website@? +websites@? +webster@N +websters@p +wed@N +wedded@A +wedder@? +wedding@N +weddings@p +wedge@Nt +wedged@AV +wedges@pt +wedgie@N +wedgies@p +wedging@V +wedgwood@NA +wedlock@N +wednesday@N +wednesdays@p +weds@p +wee@ANi +weed@N +weeded@A +weeder@N +weeders@p +weedier@A +weediest@A +weeding@A +weedkiller@N +weedkillers@p +weeds@p +weedses@? +weedy@A +weeing@Ai +week@Nv +weekday@N +weekdays@v +weekend@NVi +weekended@AVi +weekender@N +weekenders@p +weekending@AVi +weekends@v +weeklies@? +weekly@AvN +weeknight@N +weeknights@p +weeks@N +weenie@N +weenies@p +weeny@N +weep@VtiN +weeper@N +weepers@p +weepie@? +weepier@A +weepies@? +weepiest@A +weeping@A +weepings@p +weeps@Vtip +weepy@A +weer@A +wees@pi +weest@A +weevil@N +weevils@p +weft@N +wefts@p +wehrmacht@N +weigh@tiN +weighbridge@N +weighbridges@p +weighed@tiA +weighing@tiA +weighs@tip +weight@N +weighted@A +weightier@A +weightiest@A +weightily@v +weightiness@N +weighting@N +weightings@p +weightless@? +weightlessly@v +weightlessness@NA +weightlifter@? +weightlifters@p +weightlifting@N +weights@p +weighty@A +weir@N +weird@AN +weirder@? +weirdest@? +weirdly@? +weirdness@N +weirdo@N +weirdos@p +weirs@p +weizmann@N +welch@AN +welched@A +welches@? +welching@A +welcome@ANt +welcomed@!NV +welcomes@pt +welcoming@!NV +weld@N +welded@A +welder@N +welders@p +welding@A +welds@p +welfare@N +welkin@N +well@vA!NV +welled@vA!V +welles@N +wellie@? +wellies@p +welling@vA!V +wellington@N +wellingtons@p +wellness@N +wells@N +wellspring@N +wellsprings@p +welly@? +welsh@AN +welshed@A +welshes@? +welshing@A +welshman@N +welshmen@p +welt@Nt +welted@At +welter@iN +weltered@iA +weltering@iA +welters@ip +welterweight@N +welterweights@p +welting@At +welts@pt +wen@N +wench@Ni +wenches@? +wend@N +wended@V +wending@V +wends@p +wens@p +went@V +wept@V +were@V +werewolf@N +werewolves@p +wesley@N +wesleyan@AN +wessex@N +west@NA +westbound@A +westerlies@p +westerly@AvN +western@A +westerner@N +westerners@p +westernisation@N +westernise@t +westernised@t +westernises@t +westernising@t +westernization@? +westernize@t +westernized@t +westernizes@t +westernizing@t +westernmost@A +westerns@p +westinghouse@N +westminster@N +westphalia@N +wests@p +westward@AvN +westwards@pv +wet@ANti +wetback@N +wetbacks@p +wetland@? +wetlands@p +wetly@v +wetness@N +wets@pti +wetted@? +wetter@AN +wettest@? +wetting@A +wetware@? +wetwares@? +whack@tN! +whacked@tA! +whacker@N +whackers@p +whackier@A +whackiest@A +whacking@A +whackings@p +whacks@tp! +whacky@A +whale@N +whalebone@N +whaled@V +whaler@N +whalers@p +whales@N +whaleses@? +whaling@NV +wham@Ntiv +whammed@NV +whammies@? +whamming@NV +whammy@? +whams@ptiv +wharf@Nt +wharfs@pt +wharton@N +wharves@p +what@Dvr! +whatchamacallit@? +whatchamacallits@p +whatever@rD +whatnot@N +whats@Dvr! +whatshername@? +whatshisname@? +whatsit@? +whatsits@p +whatsoever@r +wheal@N +wheals@p +wheat@N +wheaten@A +wheatgerm@? +wheatmeal@? +wheedle@Vt +wheedled@V +wheedles@Vt +wheedling@V +wheel@NVti +wheelbarrow@Nt +wheelbarrows@pt +wheelbase@N +wheelbases@p +wheelchair@N +wheelchairs@p +wheeled@A +wheeler@N +wheelhouse@N +wheelhouses@p +wheelie@N +wheelies@p +wheeling@N +wheels@p +wheelwright@N +wheelwrights@p +wheeze@VN +wheezed@V +wheezes@Vp +wheezier@A +wheeziest@A +wheezily@v +wheeziness@N +wheezing@V +wheezy@A +whelk@N +whelked@A +whelks@p +whelp@NV +whelped@AV +whelping@AV +whelps@pV +when@vCrN +whence@vr +whenever@C +whens@vCrp +where@vrCN +whereabouts@vN +whereas@C +whereat@v +whereby@rv +wherefore@Nv +wherefores@pv +wherein@vr +whereof@vr +whereon@vr +wheres@vrCp +wheresoever@Cvr +whereupon@Cv +wherever@Cv +wherewithal@Nr +whet@tN +whether@Cr +whets@tp +whetstone@N +whetstones@p +whetted@V +whetting@V +whew@! +whey@N +which@Dr +whichever@D +whiff@NVti +whiffed@AVti +whiffing@AVti +whiffs@pVti +whig@i +whigs@i +while@CNPt +whiled@V +whiles@vC +whiling@V +whilst@C +whim@N +whimper@iN +whimpered@iA +whimpering@iA +whimpers@ip +whims@p +whimsey@N +whimseys@p +whimsical@A +whimsicality@N +whimsically@v +whimsies@? +whimsy@? +whine@NV +whined@V +whiner@? +whiners@p +whines@pV +whinge@iN +whinged@iA +whingeing@iA +whinger@? +whingers@p +whinges@ip +whinging@iA +whinier@A +whiniest@A +whining@V +whinnied@V +whinnies@? +whinny@AitN +whinnying@V +whiny@A +whip@VtNi +whipcord@N +whiplash@N +whiplashes@? +whipped@? +whippersnapper@N +whippersnappers@p +whippet@N +whippets@p +whipping@N +whippings@p +whippoorwill@N +whippoorwills@p +whips@N +whir@iN +whirl@ViN +whirled@ViA +whirligig@N +whirligigs@p +whirling@ViA +whirlpool@N +whirlpools@p +whirls@Vip +whirlwind@N +whirlwinds@p +whirlybird@N +whirlybirds@p +whirr@itN +whirred@itA +whirring@itA +whirrs@itp +whirs@ip +whisk@tiN +whisked@tiA +whisker@N +whiskered@A +whiskers@p +whiskery@? +whiskey@N +whiskeys@p +whiskies@p +whisking@tiA +whisks@tip +whisky@N +whiskys@p +whisper@VitN +whispered@VitA +whispering@NA +whispers@Vitp +whist@N!AV +whistle@VtiN +whistled@V +whistler@N +whistlers@p +whistles@Vtip +whistling@N +whit@N +whitaker@N +white@ANV +whitebait@N +whiteboard@? +whiteboards@p +whitecap@N +whitecaps@p +whited@A +whitefish@N +whitefishes@? +whitehall@N +whitehead@N +whitehorse@N +whiten@V +whitened@V +whitener@N +whiteners@p +whiteness@N +whitening@N +whitens@V +whiteout@? +whiter@? +whites@p +whitest@? +whitewall@N +whitewalls@p +whitewash@Nt +whitewashed@At +whitewashes@? +whitewashing@At +whitey@N +whiteys@p +whither@vC +whiting@N +whitings@p +whitish@A +whitman@N +whitney@N +whits@p +whitsunday@N +whitsundays@p +whittier@? +whittle@N +whittled@A +whittler@N +whittlers@p +whittles@p +whittling@AN +whiz@ViN +whizz@? +whizzed@V +whizzes@? +whizzing@V +who@N +whoa@! +whodunit@N +whodunits@p +whodunnit@? +whodunnits@p +whoever@r +whole@AvN +wholefood@N +wholefoods@p +wholegrain@? +wholehearted@A +wholeheartedly@v +wholemeal@A +wholeness@? +wholes@pv +wholesale@NAvV +wholesaled@V +wholesaler@N +wholesalers@p +wholesales@pvV +wholesaling@V +wholesome@A +wholesomeness@N +wholewheat@? +wholly@v +whom@r +whomever@r +whomsoever@r +whoop@VtN +whooped@VtA +whoopee@!N +whoopees@!p +whooping@VtA +whoops@! +whoosh@Ni +whooshed@Ai +whooshes@? +whooshing@Ai +whop@VtiN +whopped@V +whopper@N +whoppers@p +whopping@A +whops@Vtip +whore@Ni +whorehouse@N +whorehouses@p +whores@pi +whoring@V +whorl@N +whorled@A +whorls@p +whose@D +whosoever@r +whup@? +whupped@? +whupping@? +whups@p +why@vCN! +whys@vCp! +wi@N +wicca@? +wichita@N +wick@N +wicked@A +wickeder@? +wickedest@? +wickedly@? +wickedness@N +wicker@NA +wickers@p +wickerwork@N +wicket@N +wickets@p +wicks@N +wide@AvN +widely@v +widen@V +widened@V +wideness@? +widening@V +widens@V +wider@A +widespread@A +widest@A +widgeon@N +widgeons@p +widget@N +widgets@p +widow@Nt +widowed@At +widower@N +widowers@p +widowhood@? +widowing@At +widows@pt +width@N +widths@p +wield@t +wielded@t +wielding@t +wields@t +wiener@N +wieners@p +wienie@N +wienies@p +wife@N +wifelier@A +wifeliest@A +wifely@At +wig@Nt +wigeon@N +wigeons@p +wigged@? +wigging@N +wiggle@VN +wiggled@V +wiggler@N +wigglers@p +wiggles@Vp +wiggleses@? +wigglier@A +wiggliest@A +wiggling@V +wiggly@A +wight@N +wights@p +wigs@pt +wigwag@VN +wigwagged@V +wigwagging@V +wigwags@Vp +wigwam@N +wigwams@p +wiki@? +wikis@p +wilberforce@N +wild@AvN +wildcat@? +wildcats@p +wildcatted@? +wildcatter@N +wildcatters@p +wildcatting@? +wilde@N +wildebeest@N +wildebeests@p +wilder@N +wilderness@N +wildernesses@? +wildest@? +wildfire@N +wildfires@p +wildflower@? +wildflowers@p +wildfowl@N +wildfowls@p +wildlife@N +wildly@v +wildness@N +wilds@pv +wile@Nt +wiled@A +wiles@N +wilful@A +wilfully@v +wilfulness@N +wilier@A +wiliest@A +wiliness@N +wiling@A +wilkes@N +wilkins@N +will@N +willard@N +willed@A +willemstad@N +willful@A +willfully@? +willfulness@? +william@N +williams@N +williamson@N +willie@N +willies@p +willing@A +willingly@v +willingness@N +willow@N +willowier@? +willowiest@? +willows@N +willowy@A +willpower@N +wills@N +willy@N +wilmington@N +wilson@N +wilsonian@A +wilt@N +wilted@A +wilting@A +wilton@N +wilts@p +wily@A +wimp@? +wimped@? +wimpier@? +wimpiest@? +wimping@? +wimpish@? +wimple@NVt +wimpled@AVt +wimples@pVt +wimpling@AVt +wimps@p +wimpy@N +win@N +wince@iN +winced@V +winces@ip +winch@Nti +winched@Ati +winches@? +winchester@N +winchesters@p +winching@Ati +wincing@V +wind@N +windbag@N +windbags@p +windblown@A +windbreak@N +windbreaker@N +windbreakers@p +windbreaks@p +windburn@N +windcheater@N +windcheaters@p +winded@A +windfall@N +windfalls@p +windhoek@N +windier@A +windiest@A +windiness@N +winding@N +windjammer@N +windjammers@p +windlass@Nt +windlasses@? +windless@? +windmill@NVi +windmilled@AVi +windmilling@AVi +windmills@pVi +window@Nt +windowed@At +windowing@At +windowpane@N +windowpanes@p +windows@pt +windowsill@N +windowsills@p +windpipe@N +windpipes@p +winds@p +windscreen@N +windscreens@p +windshield@N +windshields@p +windsock@N +windsocks@p +windsor@N +windsors@p +windstorm@N +windstorms@p +windsurf@? +windsurfed@? +windsurfer@? +windsurfers@p +windsurfing@? +windsurfs@p +windswept@A +windup@N +windups@p +windward@ANv +windy@A +wine@Ni +wined@A +wineglass@N +wineglasses@? +wineries@? +winery@N +wines@pi +winesap@N +wing@N +winged@A +winger@N +wingers@p +winging@A +wingless@A +wings@p +wingspan@N +wingspans@p +wingspread@N +wingspreads@p +wingtip@? +wingtips@p +wining@A +wink@itN +winked@itA +winking@itA +winkle@Nt +winkled@V +winkles@pt +winkling@V +winks@itp +winnebago@N +winner@N +winners@p +winnie@N +winning@AN +winnings@p +winnipeg@N +winnow@VtN +winnowed@VtA +winnowing@VtA +winnows@Vtp +wino@N +winos@p +wins@p +winsome@A +winsomely@v +winsomer@? +winsomest@? +winter@N +wintered@A +wintergreen@N +winterier@A +winteriest@A +wintering@A +winterise@? +winterised@? +winterises@? +winterising@? +winterize@t +winterized@t +winterizes@t +winterizing@t +winters@N +wintertime@N +wintery@A +wintrier@A +wintriest@A +wintry@A +wipe@tN +wiped@tA +wiper@N +wipers@p +wipes@tp +wiping@tA +wire@NV +wired@A +wireds@p +wireless@NV +wirelesses@? +wires@pV +wiretap@NtiA +wiretapped@? +wiretapping@? +wiretaps@pti +wirier@? +wiriest@? +wiriness@? +wiring@NA +wiry@A +wis@N +wisconsin@N +wisconsinite@N +wisconsinites@p +wisdom@N +wise@AVNt +wiseacre@N +wiseacres@p +wisecrack@NV +wisecracked@AV +wisecracking@AV +wisecracks@pV +wised@At +wiseguy@? +wiseguys@p +wisely@? +wiser@A +wises@pVt +wisest@A +wish@VtN +wishbone@N +wishbones@p +wished@VtA +wisher@? +wishers@p +wishes@? +wishful@A +wishfully@v +wishing@VtA +wising@At +wisp@Nit +wispier@A +wispiest@A +wisps@pit +wispy@A +wist@V +wistaria@? +wistarias@p +wisteria@N +wisterias@p +wistful@A +wistfully@v +wistfulness@N +wit@N +witch@Nt +witchcraft@N +witched@At +witchery@N +witches@? +witching@AN +with@P +withal@vP +withdraw@Vti +withdrawal@N +withdrawals@p +withdrawing@V +withdrawn@VA +withdraws@Vti +withdrew@V +wither@it +withered@it +withering@it +witheringly@v +withers@p +withheld@? +withhold@Vti +withholding@Vti +withholds@Vti +within@Pv +without@PvC +withstand@Vi +withstanding@V +withstands@Vi +withstood@V +witless@A +witlessly@v +witness@Nti +witnessed@Ati +witnesses@? +witnessing@Ati +wits@p +witter@N +wittered@A +wittering@A +witters@p +wittgenstein@N +witticism@N +witticisms@p +wittier@A +wittiest@A +wittily@v +wittiness@N +witting@A +wittingly@v +witty@A +witwatersrand@N +wive@Vt +wives@N +wiz@N +wizard@NA +wizardly@A +wizardry@N +wizards@p +wizened@A +wizes@? +wizzes@? +wk@N +wkly@N +woad@N +wobble@itN +wobbled@itA +wobbles@itp +wobblier@? +wobbliest@? +wobbling@A +wobbly@A +wodge@N +wodges@p +woe@N! +woebegone@A +woeful@A +woefuller@? +woefullest@? +woefully@v +woes@p! +wog@N +wogs@p +wok@N +woke@V +woken@V +woks@p +wold@N +wolds@N +wolf@N +wolfe@N +wolfed@A +wolff@N +wolfhound@N +wolfhounds@p +wolfing@A +wolfish@A +wolfram@N +wolfs@p +wollongong@N +wolsey@N +wolverine@N +wolverines@p +wolves@N +woman@Nt +womanhood@N +womanise@ti +womanised@ti +womaniser@? +womanisers@p +womanises@ti +womanish@A +womanising@ti +womanize@it +womanized@V +womanizer@N +womanizers@p +womanizes@it +womanizing@V +womankind@N +womanlier@? +womanliest@? +womanlike@? +womanliness@N +womanly@A +womb@N +wombat@N +wombats@p +womble@? +wombles@? +wombs@p +women@N +womenfolk@N +womenfolks@p +won@N +wonder@N +wondered@A +wonderful@A +wonderfully@v +wondering@A +wonderingly@v +wonderland@N +wonderlands@p +wonderment@N +wonders@p +wondrous@p +wondrously@v +wonk@? +wonkier@? +wonkiest@? +wonks@p +wonky@A +wont@NV +wonted@A +woo@N +wood@N +woodbine@N +woodblock@? +woodblocks@p +woodcarving@N +woodcarvings@p +woodchuck@N +woodchucks@p +woodcock@N +woodcocks@p +woodcraft@N +woodcut@N +woodcuts@p +woodcutter@N +woodcutters@p +woodcutting@N +wooded@A +wooden@At +woodener@? +woodenest@? +woodenly@v +woodenness@N +woodier@A +woodies@p +woodiest@A +woodiness@N +wooding@A +woodland@N +woodlands@p +woodlice@? +woodlouse@N +woodman@N +woodmen@p +woodpecker@N +woodpeckers@p +woodpile@N +woodpiles@p +woods@N +woodshed@N +woodsheds@p +woodsier@? +woodsiest@? +woodsman@N +woodsmen@? +woodsy@A +woodwind@AN +woodwinds@p +woodwork@N +woodworking@NA +woodworm@N +woodworms@p +woody@A +wooed@A +wooer@? +wooers@p +woof@N!i +woofed@A!i +woofer@N +woofers@p +woofing@A!i +woofs@p!i +wooing@A +wool@N +woolen@? +woolens@p +woolf@N +woolgathering@N +woolie@? +woolier@? +woolies@? +wooliest@? +wooliness@? +woollen@AN +woollens@p +woollier@? +woollies@? +woolliest@? +woolliness@N +woolly@AN +woolworth@N +wooly@? +woos@p +woozier@A +wooziest@A +wooziness@N +woozy@A +wop@N +wops@p +worcester@N +worcesters@p +worcestershire@N +word@N +worded@A +wordier@A +wordiest@A +wordiness@N +wording@N +wordings@p +wordless@A +wordlessly@v +wordplay@N +words@p +wordsmith@N +wordsmiths@p +wordsworth@N +wordy@A +wore@V +work@Nti +workable@A +workaday@A +workaholic@? +workaholics@p +workaround@? +workarounds@p +workbasket@? +workbaskets@p +workbench@N +workbenches@? +workbook@N +workbooks@p +workday@NA +workdays@p +worked@A +worker@N +workers@p +workfare@? +workforce@? +workhorse@N +workhorses@p +workhouse@N +workhouses@p +working@NA +workingman@N +workingmen@p +workings@p +workload@N +workloads@p +workman@N +workmanlike@A +workmanship@N +workmate@? +workmates@? +workmen@? +workout@N +workouts@p +workplace@? +workplaces@? +workroom@N +workrooms@p +works@p +worksheet@? +worksheets@p +workshop@N +workshops@p +workshy@A +workstation@? +workstations@p +worktop@? +worktops@p +workweek@N +workweeks@p +world@N +worldlier@? +worldliest@? +worldliness@N +worldly@Av +worlds@p +worldwide@A +worm@NVt +wormed@AVt +wormhole@N +wormholes@p +wormier@? +wormiest@? +worming@AVt +worms@N +wormwood@N +wormy@A +worn@VA +worried@A +worriedly@v +worrier@N +worriers@p +worries@? +worrisome@A +worry@itN +worrying@itA +worryingly@v +worryings@p +worrywart@N +worrywarts@p +worse@ANv +worsen@V +worsened@V +worsening@V +worsens@V +worship@N +worshiped@V +worshiper@? +worshipers@p +worshipful@A +worshiping@V +worshipped@V +worshipper@? +worshippers@p +worshipping@? +worships@p +worst@AvNt +worsted@N +worsting@Avt +worsts@pvt +worth@ANi +worthier@? +worthies@? +worthiest@? +worthily@v +worthiness@N +worthless@A +worthlessness@N +worthwhile@A +worthy@AN +wot@V +wotan@N +wotcha@? +would@V +woulds@V +wound@NV +wounded@A +wounder@? +wounding@AV +wounds@pV +wove@V +woven@V +wow@!Nt +wowed@!At +wowing@!At +wows@!pt +wrack@NV +wracked@AV +wracking@AV +wracks@pV +wraith@N +wraiths@p +wrangle@itN +wrangled@V +wrangler@N +wranglers@p +wrangles@itp +wrangling@V +wranglings@V +wrap@ViN +wraparound@AN +wraparounds@p +wrapped@VA +wrapper@N +wrappers@p +wrapping@N +wrappings@p +wraps@Vip +wrapt@? +wrath@N +wrathful@A +wrathfully@? +wreak@t +wreaked@t +wreaking@t +wreaks@t +wreath@N +wreathe@Vt +wreathed@A +wreathes@Vt +wreathing@A +wreaths@p +wreck@VtN +wreckage@N +wrecked@VtA +wrecker@N +wreckers@p +wrecking@VtA +wrecks@Vtp +wren@N +wrench@N +wrenched@A +wrenches@? +wrenching@A +wrens@N +wrest@tN +wrested@tA +wresting@tA +wrestle@VitN +wrestled@V +wrestler@N +wrestlers@p +wrestles@Vitp +wrestling@N +wrests@tp +wretch@N +wretched@A +wretcheder@? +wretchedest@? +wretchedly@v +wretchedness@N +wretches@? +wrier@A +wriest@A +wriggle@ViN +wriggled@ViA +wriggler@N +wrigglers@p +wriggles@Vip +wrigglier@A +wriggliest@A +wriggling@ViA +wriggly@A +wright@N +wring@VtiN +wringer@N +wringers@p +wringing@VtiA +wrings@Vtip +wrinkle@NV +wrinkled@AV +wrinkles@pV +wrinklier@A +wrinklies@? +wrinkliest@A +wrinkling@AV +wrinkly@A +wrist@N +wristband@N +wristbands@p +wrists@p +wristwatch@N +wristwatches@? +writ@NV +writable@? +write@Vti +writer@N +writers@p +writes@Vti +writhe@ViN +writhed@ViA +writhes@Vip +writhing@ViA +writing@N +writings@p +writs@pV +written@VAN +wroclaw@? +wrong@ANvt +wrongdoer@N +wrongdoers@p +wrongdoing@N +wrongdoings@p +wronged@Avt +wronger@N +wrongest@? +wrongful@A +wrongfully@v +wrongfulness@N +wrongheaded@? +wrongheadedly@v +wrongheadedness@N +wronging@Avt +wrongly@v +wrongness@N +wrongs@pvt +wrote@V +wroth@A +wrought@VA +wrung@V +wry@? +wryer@? +wryest@? +wryly@v +wryness@N +wt@? +wuhan@N +wunderkind@N +wunderkinds@p +wuss@p +wusses@? +wv@? +wwi@? +wwii@? +www@? +wy@N +wyatt@N +wyeth@N +wyo@N +wyoming@N +wyomingite@N +wyomingites@p +wysiwyg@? +xanadu@? +xanthippe@N +xavier@N +xe@N +xenon@N +xenophobe@N +xenophobes@p +xenophobia@N +xenophobic@A +xenophon@N +xerographic@A +xerography@N +xerox@NV +xeroxed@AV +xeroxes@? +xeroxing@AV +xerxes@N +xes@p +xhosa@N +ximenes@N +xl@N +xmas@N +xmases@? +xml@? +xor@? +xref@? +xreffed@? +xreffing@? +xrefs@p +xs@p +xterm@? +xylem@N +xylophone@N +xylophones@p +xylophonist@? +xylophonists@p +yacht@Ni +yachted@Ai +yachting@N +yachts@pi +yachtsman@? +yachtsmen@? +yachtswoman@N +yachtswomen@p +yack@NV +yacked@AV +yacking@AV +yacks@pV +yahoo@N +yahoos@p +yahweh@N +yak@N +yakima@N +yakked@? +yakking@? +yaks@p +yakut@N +yakutsk@N +yale@N +yalta@N +yalu@N +yam@N +yammer@ViN +yammered@ViA +yammering@ViA +yammers@Vip +yamoussoukro@? +yams@p +yang@N +yangon@? +yangtze@N +yank@N +yanked@A +yankee@NA +yankees@p +yanking@A +yanks@p +yaounde@? +yap@N +yapped@V +yapping@V +yaps@p +yaqui@N +yard@N +yardage@N +yardages@p +yardarm@N +yardarms@p +yards@p +yardstick@N +yardsticks@p +yarmulke@N +yarmulkes@p +yarn@Ni +yarns@pi +yaroslavl@N +yashmak@N +yashmaks@p +yates@N +yaw@itN +yawed@itA +yawing@itA +yawl@Ni +yawls@pi +yawn@itN +yawned@itA +yawning@A +yawns@itp +yaws@p +yb@N +yd@N +ye@rD +yea@v +yeah@v +yeahs@v +year@N +yearbook@N +yearbooks@p +yearlies@? +yearling@NA +yearlings@p +yearly@AvN +yearn@i +yearned@i +yearning@N +yearnings@p +yearns@i +years@p +yeas@v +yeast@Ni +yeastier@? +yeastiest@? +yeasts@pi +yeasty@A +yeats@N +yekaterinburg@N +yell@VN +yelled@VA +yelling@VA +yellow@NAV +yellowed@AV +yellower@? +yellowest@? +yellowhammer@N +yellowhammers@p +yellowing@AV +yellowish@A +yellowknife@N +yellowness@N +yellows@p +yellowstone@N +yellowy@? +yells@Vp +yelp@VN +yelped@VA +yelping@VA +yelps@Vp +yeltsin@? +yemen@NA +yemeni@? +yemenis@p +yen@N +yenisei@N +yens@p +yeoman@N +yeomen@p +yep@v +yeps@v +yer@? +yerevan@N +yes@vN +yeses@? +yeshiva@N +yeshivah@? +yeshivahs@p +yeshivas@p +yeshivot@? +yeshivoth@p +yessed@? +yessing@? +yest@? +yesterday@Nv +yesterdays@pv +yesteryear@Nv +yet@Cv +yeti@N +yetis@p +yew@N +yews@p +yggdrasil@N +yid@N +yiddish@N +yids@p +yield@VtiN +yielded@VtiA +yielding@A +yieldings@p +yields@Vtip +yikes@pV +yin@N +yip@iN +yipped@V +yippee@! +yipping@V +yips@ip +ymca@N +ymha@N +ymir@N +ymmv@? +yo@? +yob@N +yobbo@? +yobbos@p +yobs@p +yock@? +yocks@p +yodel@tiN +yodeled@V +yodeler@N +yodelers@p +yodeling@V +yodelled@V +yodeller@N +yodellers@p +yodelling@V +yodels@tip +yoga@N +yoghourt@? +yoghourts@p +yoghurt@N +yoghurts@p +yogi@N +yogic@A +yogin@? +yogins@p +yogis@p +yogourt@? +yogourts@p +yogurt@N +yogurts@p +yoke@Nt +yoked@At +yokel@N +yokels@p +yokes@p +yoking@At +yokohama@N +yolk@N +yolks@p +yon@D +yonder@vD +yonkers@N +yonks@p +yore@Nv +york@N +yorkie@? +yorkshire@N +yorktown@N +yoruba@N +you@rN +young@AN +younger@N +youngest@? +youngish@? +youngster@N +youngsters@p +youngstown@N +your@D +yours@r +yourself@r +yourselves@p +yous@Nr +youth@N +youthful@A +youthfully@v +youthfulness@N +youths@p +yowl@VN +yowled@VA +yowling@VA +yowls@Vp +ypres@N +ypsilanti@N +yr@? +yrs@N +yttrium@N +yuan@N +yucatan@? +yucca@N +yuccas@p +yuck@? +yucked@? +yuckier@? +yuckiest@? +yucking@? +yucks@p +yucky@? +yugo@N +yugoslav@NA +yugoslavia@N +yugoslavian@AN +yugoslavians@p +yuk@!N +yukked@? +yukking@? +yukky@? +yukon@N +yuks@!p +yule@N +yules@p +yuletide@NA +yuletides@p +yum@? +yummier@? +yummiest@? +yummy@? +yup@N +yuppie@? +yuppies@? +yuppified@? +yuppifies@? +yuppify@? +yuppifying@? +yuppy@? +yups@p +ywca@N +ywha@N +zagreb@N +zaire@N +zairian@? +zambezi@N +zambia@N +zambian@? +zambians@p +zamboni@? +zamora@N +zanier@A +zanies@A +zaniest@A +zaniness@N +zany@AN +zanzibar@N +zap@ViN! +zapata@N +zaporozhye@N +zapotec@N +zapped@V +zapper@? +zappers@p +zapping@V +zappy@? +zaps@Vip! +zeal@N +zealot@N +zealotry@N +zealots@p +zealous@A +zealously@v +zealousness@N +zebedee@N +zebra@N +zebras@p +zebu@N +zebus@p +zechariah@N +zed@N +zeds@p +zeitgeist@N +zelig@N +zen@N +zenith@N +zeniths@p +zenned@? +zenning@? +zens@p +zephaniah@N +zephyr@N +zephyrs@p +zephyrus@N +zeppelin@N +zeppelins@p +zero@NA +zeroed@NV +zeroes@? +zeroing@N +zeros@p +zeroth@A +zest@Nt +zestful@A +zestfully@v +zests@pt +zeta@N +zeus@N +zhengzhou@? +zhukov@N +ziegfeld@N +zigamorph@? +zigamorphs@p +zigzag@NAvti +zigzagged@V +zigzagging@V +zigzags@pvti +zilch@? +zillion@ND +zillions@pD +zimbabwe@N +zimbabwean@? +zimbabweans@p +zinc@N +zinced@A +zincing@A +zincked@A +zincking@A +zincs@p +zine@? +zines@? +zinfandel@N +zing@Ni +zinged@Ai +zinger@? +zingers@p +zinging@Ai +zings@pi +zingy@A +zinnia@N +zinnias@p +zion@N +zionism@NA +zionisms@p +zionist@NA +zionists@p +zions@p +zip@Nit +ziploc@? +zipped@V +zipper@N +zippered@A +zippering@A +zippers@p +zippier@? +zippiest@? +zipping@V +zippy@A +zips@pit +zircon@N +zirconium@N +zircons@p +zit@? +zither@N +zithers@p +zits@p +zn@N +zodiac@N +zodiacal@A +zodiacs@p +zola@N +zollverein@N +zoloft@? +zomba@N +zombi@N +zombie@N +zombies@p +zombis@p +zonal@A +zonally@v +zone@Nt +zoned@At +zones@pt +zoning@A +zonked@A +zoo@N +zookeeper@? +zookeepers@p +zoological@A +zoologist@N +zoologists@p +zoology@N +zoom@ViN +zoomed@ViA +zooming@ViA +zooms@Vip +zoos@p +zorch@? +zorched@? +zorches@? +zorching@? +zorn@N +zoroaster@N +zoroastrian@AN +zoroastrianism@N +zoroastrianisms@p +zr@N +zsigmondy@N +zucchini@N +zucchinis@p +zulu@N +zulus@p +zuni@? +zwieback@N +zworykin@N +zydeco@? +zygote@N +zygotes@p diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash/CategorizeBlockHash.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash/CategorizeBlockHash.java index f83776fbdbc85..720d54f9f56c3 100644 --- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash/CategorizeBlockHash.java +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash/CategorizeBlockHash.java @@ -30,12 +30,12 @@ import org.elasticsearch.core.ReleasableIterator; import org.elasticsearch.core.Releasables; import org.elasticsearch.index.analysis.AnalysisRegistry; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationBytesRefHash; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationPartOfSpeechDictionary; +import org.elasticsearch.xpack.core.ml.aggs.categorization.SerializableTokenListCategory; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategorizer; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; -import org.elasticsearch.xpack.ml.aggs.categorization.CategorizationBytesRefHash; -import org.elasticsearch.xpack.ml.aggs.categorization.CategorizationPartOfSpeechDictionary; -import org.elasticsearch.xpack.ml.aggs.categorization.SerializableTokenListCategory; -import org.elasticsearch.xpack.ml.aggs.categorization.TokenListCategorizer; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import java.io.IOException; import java.util.HashMap; @@ -83,11 +83,11 @@ public class CategorizeBlockHash extends BlockHash { try { Objects.requireNonNull(analysisRegistry); analyzer = new CategorizationAnalyzer(analysisRegistry, ANALYZER_CONFIG); + this.evaluator = new CategorizeEvaluator(analyzer); } catch (Exception e) { categorizer.close(); throw new RuntimeException(e); } - this.evaluator = new CategorizeEvaluator(analyzer); } else { this.evaluator = null; } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java index 72f9f2d3e1c65..9f5827f8f1d3e 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/MlServices.java @@ -12,6 +12,5 @@ public record MlServices(ChangePointDetector changePointDetector) { @Inject - public MlServices { - } + public MlServices {} } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java index 4d872e9eb1675..4986f6ea3fea7 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java @@ -35,7 +35,6 @@ import org.elasticsearch.usage.UsageService; import org.elasticsearch.xpack.core.XPackPlugin; import org.elasticsearch.xpack.core.async.AsyncExecutionId; -import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.esql.VerificationException; import org.elasticsearch.xpack.esql.action.ColumnInfoImpl; import org.elasticsearch.xpack.esql.action.EsqlExecutionInfo; diff --git a/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextAggregationIT.java b/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextAggregationIT.java index d4b29e3c92538..8ad758a261a26 100644 --- a/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextAggregationIT.java +++ b/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextAggregationIT.java @@ -15,8 +15,8 @@ import org.elasticsearch.search.aggregations.AggregationBuilders; import org.elasticsearch.search.aggregations.metrics.Max; import org.elasticsearch.search.aggregations.metrics.Min; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.aggs.categorization.CategorizeTextAggregationBuilder; -import org.elasticsearch.xpack.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase; import org.junit.Before; diff --git a/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextDistributedIT.java b/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextDistributedIT.java index bed5b1cb1bbfa..a6ac648f50108 100644 --- a/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextDistributedIT.java +++ b/x-pack/plugin/ml/src/internalClusterTest/java/org/elasticsearch/xpack/ml/integration/CategorizeTextDistributedIT.java @@ -15,8 +15,8 @@ import org.elasticsearch.cluster.metadata.IndexMetadata; import org.elasticsearch.cluster.routing.ShardRouting; import org.elasticsearch.common.settings.Settings; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.aggs.categorization.CategorizeTextAggregationBuilder; -import org.elasticsearch.xpack.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase; import java.util.Arrays; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java index 43d5081b200ac..16ac0fabbd529 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/MachineLearning.java @@ -185,6 +185,7 @@ import org.elasticsearch.xpack.core.ml.action.UpgradeJobModelSnapshotAction; import org.elasticsearch.xpack.core.ml.action.ValidateDetectorAction; import org.elasticsearch.xpack.core.ml.action.ValidateJobConfigAction; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector; import org.elasticsearch.xpack.core.ml.annotations.AnnotationIndex; import org.elasticsearch.xpack.core.ml.datafeed.DatafeedState; @@ -297,7 +298,6 @@ import org.elasticsearch.xpack.ml.action.TransportValidateDetectorAction; import org.elasticsearch.xpack.ml.action.TransportValidateJobConfigAction; import org.elasticsearch.xpack.ml.aggs.categorization.CategorizeTextAggregationBuilder; -import org.elasticsearch.xpack.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointAggregationBuilder; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetectorImpl; import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointNamedContentProvider; @@ -779,7 +779,7 @@ public void loadExtensions(ExtensionLoader loader) { private final SetOnce mlAutoscalingDeciderService = new SetOnce<>(); private final SetOnce deploymentManager = new SetOnce<>(); private final SetOnce trainedModelAllocationClusterServiceSetOnce = new SetOnce<>(); - private final SetOnce changePointDetector = new SetOnce<>(new ChangePointDetectorImpl()); + private final SetOnce changePointDetector = new SetOnce<>(new ChangePointDetectorImpl()); private final SetOnce machineLearningExtension = new SetOnce<>(); public MachineLearning(Settings settings) { diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregationBuilder.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregationBuilder.java index ee47a2a626122..241a347f6ce65 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregationBuilder.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregationBuilder.java @@ -7,59 +7,22 @@ package org.elasticsearch.xpack.ml.aggs.categorization; -import org.elasticsearch.ElasticsearchStatusException; -import org.elasticsearch.TransportVersion; -import org.elasticsearch.TransportVersions; import org.elasticsearch.common.io.stream.StreamInput; -import org.elasticsearch.common.io.stream.StreamOutput; -import org.elasticsearch.rest.RestStatus; -import org.elasticsearch.search.aggregations.AbstractAggregationBuilder; import org.elasticsearch.search.aggregations.AggregationBuilder; import org.elasticsearch.search.aggregations.AggregatorFactories; import org.elasticsearch.search.aggregations.AggregatorFactory; import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder; -import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregator; import org.elasticsearch.search.aggregations.support.AggregationContext; import org.elasticsearch.xcontent.ObjectParser; -import org.elasticsearch.xcontent.ParseField; -import org.elasticsearch.xcontent.XContentBuilder; +import org.elasticsearch.xpack.core.ml.aggs.categorization.AbstractCategorizeTextAggregationBuilder; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; -import org.elasticsearch.xpack.core.ml.job.messages.Messages; -import org.elasticsearch.xpack.core.ml.utils.ExceptionsHelper; import java.io.IOException; -import java.util.List; import java.util.Map; -import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.MIN_DOC_COUNT_FIELD_NAME; import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.REQUIRED_SIZE_FIELD_NAME; -import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.SHARD_MIN_DOC_COUNT_FIELD_NAME; -import static org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.SHARD_SIZE_FIELD_NAME; -import static org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig.Builder.isValidRegex; -public class CategorizeTextAggregationBuilder extends AbstractAggregationBuilder { - - static final TermsAggregator.ConstantBucketCountThresholds DEFAULT_BUCKET_COUNT_THRESHOLDS = - new TermsAggregator.ConstantBucketCountThresholds(1, 0, 10, -1); - - public static final String NAME = "categorize_text"; - - // In 8.3 the algorithm used by this aggregation was completely changed. - // Prior to 8.3 the Drain algorithm was used. From 8.3 the same algorithm - // we use in our C++ categorization code was used. As a result of this - // the aggregation will not perform well in mixed version clusters where - // some nodes are pre-8.3 and others are newer, so we throw an error in - // this situation. The aggregation was experimental at the time this change - // was made, so this is acceptable. - public static final TransportVersion ALGORITHM_CHANGED_VERSION = TransportVersions.V_8_3_0; - - static final ParseField FIELD_NAME = new ParseField("field"); - static final ParseField SIMILARITY_THRESHOLD = new ParseField("similarity_threshold"); - // The next two are unused, but accepted and ignored to avoid breaking client code - static final ParseField MAX_UNIQUE_TOKENS = new ParseField("max_unique_tokens").withAllDeprecated(); - static final ParseField MAX_MATCHED_TOKENS = new ParseField("max_matched_tokens").withAllDeprecated(); - static final ParseField CATEGORIZATION_FILTERS = new ParseField("categorization_filters"); - static final ParseField CATEGORIZATION_ANALYZER = new ParseField("categorization_analyzer"); +public class CategorizeTextAggregationBuilder extends AbstractCategorizeTextAggregationBuilder { public static final ObjectParser PARSER = ObjectParser.fromBuilder( CategorizeTextAggregationBuilder.NAME, @@ -84,180 +47,16 @@ public class CategorizeTextAggregationBuilder extends AbstractAggregationBuilder PARSER.declareInt(CategorizeTextAggregationBuilder::size, REQUIRED_SIZE_FIELD_NAME); } - private TermsAggregator.BucketCountThresholds bucketCountThresholds = new TermsAggregator.BucketCountThresholds( - DEFAULT_BUCKET_COUNT_THRESHOLDS - ); - private CategorizationAnalyzerConfig categorizationAnalyzerConfig; - private String fieldName; - // Default of 70% matches the C++ code - private int similarityThreshold = 70; - private CategorizeTextAggregationBuilder(String name) { super(name); } public CategorizeTextAggregationBuilder(String name, String fieldName) { - super(name); - this.fieldName = ExceptionsHelper.requireNonNull(fieldName, FIELD_NAME); - } - - @Override - public boolean supportsSampling() { - return true; - } - - public String getFieldName() { - return fieldName; - } - - public CategorizeTextAggregationBuilder setFieldName(String fieldName) { - this.fieldName = ExceptionsHelper.requireNonNull(fieldName, FIELD_NAME); - return this; + super(name, fieldName); } public CategorizeTextAggregationBuilder(StreamInput in) throws IOException { super(in); - // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. - if (in.getTransportVersion().before(ALGORITHM_CHANGED_VERSION)) { - throw new ElasticsearchStatusException( - "[" - + NAME - + "] aggregation cannot be used in a cluster where some nodes have version [" - + ALGORITHM_CHANGED_VERSION.toReleaseVersion() - + "] or higher and others have a version before this", - RestStatus.BAD_REQUEST - ); - } - this.bucketCountThresholds = new TermsAggregator.BucketCountThresholds(in); - this.fieldName = in.readString(); - this.similarityThreshold = in.readVInt(); - this.categorizationAnalyzerConfig = in.readOptionalWriteable(CategorizationAnalyzerConfig::new); - } - - public double getSimilarityThreshold() { - return similarityThreshold; - } - - public CategorizeTextAggregationBuilder setSimilarityThreshold(int similarityThreshold) { - this.similarityThreshold = similarityThreshold; - if (similarityThreshold < 1 || similarityThreshold > 100) { - throw ExceptionsHelper.badRequestException( - "[{}] must be in the range [1, 100]. Found [{}] in [{}]", - SIMILARITY_THRESHOLD.getPreferredName(), - similarityThreshold, - name - ); - } - return this; - } - - public CategorizeTextAggregationBuilder setCategorizationAnalyzerConfig(CategorizationAnalyzerConfig categorizationAnalyzerConfig) { - if (this.categorizationAnalyzerConfig != null) { - throw ExceptionsHelper.badRequestException( - "[{}] cannot be used with [{}] - instead specify them as pattern_replace char_filters in the analyzer", - CATEGORIZATION_FILTERS.getPreferredName(), - CATEGORIZATION_ANALYZER.getPreferredName() - ); - } - this.categorizationAnalyzerConfig = categorizationAnalyzerConfig; - return this; - } - - public CategorizeTextAggregationBuilder setCategorizationFilters(List categorizationFilters) { - if (categorizationFilters == null || categorizationFilters.isEmpty()) { - return this; - } - if (categorizationAnalyzerConfig != null) { - throw ExceptionsHelper.badRequestException( - "[{}] cannot be used with [{}] - instead specify them as pattern_replace char_filters in the analyzer", - CATEGORIZATION_FILTERS.getPreferredName(), - CATEGORIZATION_ANALYZER.getPreferredName() - ); - } - if (categorizationFilters.stream().distinct().count() != categorizationFilters.size()) { - throw ExceptionsHelper.badRequestException(Messages.JOB_CONFIG_CATEGORIZATION_FILTERS_CONTAINS_DUPLICATES); - } - if (categorizationFilters.stream().anyMatch(String::isEmpty)) { - throw ExceptionsHelper.badRequestException(Messages.getMessage(Messages.JOB_CONFIG_CATEGORIZATION_FILTERS_CONTAINS_EMPTY)); - } - for (String filter : categorizationFilters) { - if (isValidRegex(filter) == false) { - throw ExceptionsHelper.badRequestException( - Messages.getMessage(Messages.JOB_CONFIG_CATEGORIZATION_FILTERS_CONTAINS_INVALID_REGEX, filter) - ); - } - } - this.categorizationAnalyzerConfig = CategorizationAnalyzerConfig.buildStandardCategorizationAnalyzer(categorizationFilters); - return this; - } - - /** - * @param size indicating how many buckets should be returned - */ - public CategorizeTextAggregationBuilder size(int size) { - if (size <= 0) { - throw ExceptionsHelper.badRequestException( - "[{}] must be greater than 0. Found [{}] in [{}]", - REQUIRED_SIZE_FIELD_NAME.getPreferredName(), - size, - name - ); - } - bucketCountThresholds.setRequiredSize(size); - return this; - } - - /** - * @param shardSize - indicating the number of buckets each shard - * will return to the coordinating node (the node that coordinates the - * search execution). The higher the shard size is, the more accurate the - * results are. - */ - public CategorizeTextAggregationBuilder shardSize(int shardSize) { - if (shardSize <= 0) { - throw ExceptionsHelper.badRequestException( - "[{}] must be greater than 0. Found [{}] in [{}]", - SHARD_SIZE_FIELD_NAME.getPreferredName(), - shardSize, - name - ); - } - bucketCountThresholds.setShardSize(shardSize); - return this; - } - - /** - * @param minDocCount the minimum document count a text category should have in order to appear in - * the response. - */ - public CategorizeTextAggregationBuilder minDocCount(long minDocCount) { - if (minDocCount < 0) { - throw ExceptionsHelper.badRequestException( - "[{}] must be greater than or equal to 0. Found [{}] in [{}]", - MIN_DOC_COUNT_FIELD_NAME.getPreferredName(), - minDocCount, - name - ); - } - bucketCountThresholds.setMinDocCount(minDocCount); - return this; - } - - /** - * @param shardMinDocCount the minimum document count a text category should have on the shard in order to - * appear in the response. - */ - public CategorizeTextAggregationBuilder shardMinDocCount(long shardMinDocCount) { - if (shardMinDocCount < 0) { - throw ExceptionsHelper.badRequestException( - "[{}] must be greater than or equal to 0. Found [{}] in [{}]", - SHARD_MIN_DOC_COUNT_FIELD_NAME.getPreferredName(), - shardMinDocCount, - name - ); - } - bucketCountThresholds.setShardMinDocCount(shardMinDocCount); - return this; } protected CategorizeTextAggregationBuilder( @@ -266,29 +65,6 @@ protected CategorizeTextAggregationBuilder( Map metadata ) { super(clone, factoriesBuilder, metadata); - this.bucketCountThresholds = new TermsAggregator.BucketCountThresholds(clone.bucketCountThresholds); - this.fieldName = clone.fieldName; - this.similarityThreshold = clone.similarityThreshold; - this.categorizationAnalyzerConfig = clone.categorizationAnalyzerConfig; - } - - @Override - protected void doWriteTo(StreamOutput out) throws IOException { - // Disallow this aggregation in mixed version clusters that cross the algorithm change boundary. - if (out.getTransportVersion().before(ALGORITHM_CHANGED_VERSION)) { - throw new ElasticsearchStatusException( - "[" - + NAME - + "] aggregation cannot be used in a cluster where some nodes have version [" - + ALGORITHM_CHANGED_VERSION.toReleaseVersion() - + "] or higher and others have a version before this", - RestStatus.BAD_REQUEST - ); - } - bucketCountThresholds.writeTo(out); - out.writeString(fieldName); - out.writeVInt(similarityThreshold); - out.writeOptionalWriteable(categorizationAnalyzerConfig); } @Override @@ -299,10 +75,10 @@ protected AggregatorFactory doBuild( ) throws IOException { return new CategorizeTextAggregatorFactory( name, - fieldName, - similarityThreshold, - bucketCountThresholds, - categorizationAnalyzerConfig, + getFieldName(), + getSimilarityThreshold(), + getBucketCountThresholds(), + getCategorizationAnalyzerConfig(), context, parent, subfactoriesBuilder, @@ -310,40 +86,8 @@ protected AggregatorFactory doBuild( ); } - @Override - protected XContentBuilder internalXContent(XContentBuilder builder, Params params) throws IOException { - builder.startObject(); - bucketCountThresholds.toXContent(builder, params); - builder.field(FIELD_NAME.getPreferredName(), fieldName); - builder.field(SIMILARITY_THRESHOLD.getPreferredName(), similarityThreshold); - if (categorizationAnalyzerConfig != null) { - categorizationAnalyzerConfig.toXContent(builder, params); - } - builder.endObject(); - return null; - } - @Override protected AggregationBuilder shallowCopy(AggregatorFactories.Builder factoriesBuilder, Map metadata) { return new CategorizeTextAggregationBuilder(this, factoriesBuilder, metadata); } - - @Override - public BucketCardinality bucketCardinality() { - return BucketCardinality.MANY; - } - - @Override - public String getType() { - return NAME; - } - - @Override - public TransportVersion getMinimalSupportedVersion() { - // This isn't strictly true, as the categorize_text aggregation has existed since 7.16. - // However, the implementation completely changed in 8.3, so it's best that if the - // coordinating node is on 8.3 or above then it should refuse to use this aggregation - // until the older nodes are upgraded. - return ALGORITHM_CHANGED_VERSION; - } } diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregator.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregator.java index e13b1e0033191..904bea1f162fc 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregator.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregator.java @@ -32,9 +32,14 @@ import org.elasticsearch.search.lookup.Source; import org.elasticsearch.search.lookup.SourceFilter; import org.elasticsearch.search.lookup.SourceProvider; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationBytesRefHash; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationPartOfSpeechDictionary; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation.Bucket; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategorizer; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategory; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; -import org.elasticsearch.xpack.ml.aggs.categorization.InternalCategorizationAggregation.Bucket; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import java.io.IOException; import java.util.Arrays; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/UnmappedCategorizationAggregation.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/UnmappedCategorizationAggregation.java index 6909065a458eb..e99fc8420acfb 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/UnmappedCategorizationAggregation.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/aggs/categorization/UnmappedCategorizationAggregation.java @@ -12,6 +12,7 @@ import org.elasticsearch.search.aggregations.AggregatorReducer; import org.elasticsearch.search.aggregations.InternalAggregation; import org.elasticsearch.search.aggregations.InternalAggregations; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation; import java.util.List; import java.util.Map; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/JobManager.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/JobManager.java index 164a6ea8ad560..3cbb1909a4b69 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/JobManager.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/JobManager.java @@ -38,6 +38,7 @@ import org.elasticsearch.xpack.core.ml.action.RevertModelSnapshotAction; import org.elasticsearch.xpack.core.ml.action.UpdateJobAction; import org.elasticsearch.xpack.core.ml.datafeed.DatafeedJobValidator; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig; import org.elasticsearch.xpack.core.ml.job.config.AnalysisLimits; import org.elasticsearch.xpack.core.ml.job.config.Blocked; @@ -52,7 +53,6 @@ import org.elasticsearch.xpack.core.ml.job.process.autodetect.state.ModelSnapshot; import org.elasticsearch.xpack.core.ml.utils.ExceptionsHelper; import org.elasticsearch.xpack.ml.MachineLearning; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.ml.job.persistence.JobConfigProvider; import org.elasticsearch.xpack.ml.job.persistence.JobDataDeleter; import org.elasticsearch.xpack.ml.job.persistence.JobResultsPersister; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/AutodetectCommunicator.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/AutodetectCommunicator.java index 207ca3b0ff902..f52c4fa57729b 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/AutodetectCommunicator.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/AutodetectCommunicator.java @@ -16,6 +16,7 @@ import org.elasticsearch.index.analysis.AnalysisRegistry; import org.elasticsearch.xcontent.NamedXContentRegistry; import org.elasticsearch.xcontent.XContentType; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; import org.elasticsearch.xpack.core.ml.job.config.DataDescription; @@ -27,7 +28,6 @@ import org.elasticsearch.xpack.core.ml.job.process.autodetect.state.ModelSnapshot; import org.elasticsearch.xpack.core.ml.job.process.autodetect.state.TimingStats; import org.elasticsearch.xpack.core.ml.utils.ExceptionsHelper; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.ml.job.persistence.StateStreamer; import org.elasticsearch.xpack.ml.job.process.CountingInputStream; import org.elasticsearch.xpack.ml.job.process.DataCountsReporter; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriter.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriter.java index 63d44e9b9608a..d02a75f301291 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriter.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriter.java @@ -8,9 +8,9 @@ import org.apache.logging.log4j.Logger; import org.elasticsearch.xcontent.XContentType; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig; import org.elasticsearch.xpack.core.ml.job.config.DataDescription; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.ml.job.process.DataCountsReporter; import org.elasticsearch.xpack.ml.job.process.autodetect.AutodetectProcess; import org.elasticsearch.xpack.ml.process.writer.LengthEncodedWriter; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/DataToProcessWriter.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/DataToProcessWriter.java index 8f0b015f44ed3..f55bb3b830358 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/DataToProcessWriter.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/DataToProcessWriter.java @@ -7,8 +7,8 @@ package org.elasticsearch.xpack.ml.job.process.autodetect.writer; import org.elasticsearch.xcontent.XContentType; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.process.autodetect.state.DataCounts; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import java.io.IOException; import java.io.InputStream; diff --git a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriter.java b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriter.java index 8f48950e135e4..3a460b1d54c9c 100644 --- a/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriter.java +++ b/x-pack/plugin/ml/src/main/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriter.java @@ -14,10 +14,10 @@ import org.elasticsearch.xcontent.XContentParser; import org.elasticsearch.xcontent.XContentParserConfiguration; import org.elasticsearch.xcontent.XContentType; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig; import org.elasticsearch.xpack.core.ml.job.config.DataDescription; import org.elasticsearch.xpack.core.ml.job.process.autodetect.state.DataCounts; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.ml.job.process.DataCountsReporter; import org.elasticsearch.xpack.ml.job.process.autodetect.AutodetectProcess; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationPartOfSpeechDictionaryTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationPartOfSpeechDictionaryTests.java index 948f2105eb6f2..e0409d86ef89f 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationPartOfSpeechDictionaryTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationPartOfSpeechDictionaryTests.java @@ -8,7 +8,8 @@ package org.elasticsearch.xpack.ml.aggs.categorization; import org.elasticsearch.test.ESTestCase; -import org.elasticsearch.xpack.ml.aggs.categorization.CategorizationPartOfSpeechDictionary.PartOfSpeech; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationPartOfSpeechDictionary; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationPartOfSpeechDictionary.PartOfSpeech; import java.io.IOException; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationTestCase.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationTestCase.java index 172257028e414..1fda501a45e76 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationTestCase.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizationTestCase.java @@ -11,7 +11,8 @@ import org.elasticsearch.common.util.BigArrays; import org.elasticsearch.common.util.BytesRefHash; import org.elasticsearch.test.ESTestCase; -import org.elasticsearch.xpack.ml.aggs.categorization.TokenListCategory.TokenAndWeight; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationBytesRefHash; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategory.TokenAndWeight; import org.junit.After; import org.junit.Before; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregatorTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregatorTests.java index 29f298894477a..7a2501fe912d9 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregatorTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/CategorizeTextAggregatorTests.java @@ -29,6 +29,7 @@ import org.elasticsearch.search.aggregations.metrics.MaxAggregationBuilder; import org.elasticsearch.search.aggregations.metrics.Min; import org.elasticsearch.search.aggregations.metrics.MinAggregationBuilder; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.MachineLearning; import org.elasticsearch.xpack.ml.MachineLearningTests; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregationTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregationTests.java index 67d0e6f35bafc..81cab968d8cd4 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregationTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregationTests.java @@ -13,6 +13,8 @@ import org.elasticsearch.plugins.SearchPlugin; import org.elasticsearch.search.aggregations.InternalAggregations; import org.elasticsearch.test.InternalMultiBucketAggregationTestCase; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationBytesRefHash; +import org.elasticsearch.xpack.core.ml.aggs.categorization.InternalCategorizationAggregation; import org.elasticsearch.xpack.ml.MachineLearningTests; import org.junit.After; import org.junit.Before; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/SerializableTokenListCategoryTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/SerializableTokenListCategoryTests.java index 3f3fcf697e174..1f2839d2e3ae4 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/SerializableTokenListCategoryTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/SerializableTokenListCategoryTests.java @@ -12,6 +12,7 @@ import org.elasticsearch.common.util.BigArrays; import org.elasticsearch.common.util.BytesRefHash; import org.elasticsearch.test.AbstractWireSerializingTestCase; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationBytesRefHash; import org.junit.After; import org.junit.Before; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategorizerTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategorizerTests.java index 9083771b69730..7f63b5968b186 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategorizerTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategorizerTests.java @@ -15,9 +15,11 @@ import org.elasticsearch.index.analysis.AnalysisRegistry; import org.elasticsearch.indices.analysis.AnalysisModule; import org.elasticsearch.plugins.scanners.StablePluginsRegistry; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationPartOfSpeechDictionary; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategorizer; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; import org.elasticsearch.xpack.ml.MachineLearning; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import org.junit.Before; import java.io.IOException; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategoryTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategoryTests.java index 8675788af7202..685a59aacf892 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategoryTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListCategoryTests.java @@ -10,7 +10,8 @@ import org.apache.lucene.util.BytesRef; import org.elasticsearch.common.util.BigArrays; import org.elasticsearch.common.util.BytesRefHash; -import org.elasticsearch.xpack.ml.aggs.categorization.TokenListCategory.TokenAndWeight; +import org.elasticsearch.xpack.core.ml.aggs.categorization.CategorizationBytesRefHash; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategory.TokenAndWeight; import java.util.ArrayList; import java.util.List; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListSimilarityTesterTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListSimilarityTesterTests.java index 43c053307e30d..0445b116c822f 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListSimilarityTesterTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/TokenListSimilarityTesterTests.java @@ -7,7 +7,8 @@ package org.elasticsearch.xpack.ml.aggs.categorization; -import org.elasticsearch.xpack.ml.aggs.categorization.TokenListCategory.TokenAndWeight; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListCategory.TokenAndWeight; +import org.elasticsearch.xpack.core.ml.aggs.categorization.TokenListSimilarityTester; import java.util.List; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/categorization/CategorizationAnalyzerTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/categorization/CategorizationAnalyzerTests.java index 88a40e0112115..aec7e5f52392b 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/categorization/CategorizationAnalyzerTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/categorization/CategorizationAnalyzerTests.java @@ -14,6 +14,7 @@ import org.elasticsearch.indices.analysis.AnalysisModule; import org.elasticsearch.plugins.scanners.StablePluginsRegistry; import org.elasticsearch.test.ESTestCase; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; import org.elasticsearch.xpack.ml.MachineLearning; import org.junit.Before; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriterTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriterTests.java index c3562cc143dd0..25377bc5d50f3 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriterTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/AbstractDataToProcessWriterTests.java @@ -12,11 +12,11 @@ import org.elasticsearch.index.analysis.AnalysisRegistry; import org.elasticsearch.test.ESTestCase; import org.elasticsearch.xcontent.NamedXContentRegistry; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; import org.elasticsearch.xpack.core.ml.job.config.DataDescription; import org.elasticsearch.xpack.core.ml.job.config.Detector; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzerTests; import org.elasticsearch.xpack.ml.job.process.DataCountsReporter; import org.elasticsearch.xpack.ml.job.process.autodetect.AutodetectProcess; diff --git a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriterTests.java b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriterTests.java index 8a6881ad57b88..edf76ecf80bc6 100644 --- a/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriterTests.java +++ b/x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/job/process/autodetect/writer/JsonDataToProcessWriterTests.java @@ -19,11 +19,11 @@ import org.elasticsearch.xcontent.XContentFactory; import org.elasticsearch.xcontent.XContentGenerator; import org.elasticsearch.xcontent.XContentType; +import org.elasticsearch.xpack.core.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.core.ml.job.config.AnalysisConfig; import org.elasticsearch.xpack.core.ml.job.config.CategorizationAnalyzerConfig; import org.elasticsearch.xpack.core.ml.job.config.DataDescription; import org.elasticsearch.xpack.core.ml.job.config.Detector; -import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzer; import org.elasticsearch.xpack.ml.job.categorization.CategorizationAnalyzerTests; import org.elasticsearch.xpack.ml.job.process.DataCountsReporter; import org.elasticsearch.xpack.ml.job.process.autodetect.AutodetectProcess; From 50384615f16297a01ec7ebce04ba5067feab3dbb Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 3 Apr 2025 10:58:32 +0200 Subject: [PATCH 6/7] Removing esql depencies over ml --- x-pack/plugin/esql/build.gradle | 4 ++-- x-pack/plugin/esql/compute/build.gradle | 1 - x-pack/plugin/esql/compute/src/main/java/module-info.java | 1 - .../elasticsearch/xpack/esql/plan/logical/ChangePoint.java | 3 +-- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/x-pack/plugin/esql/build.gradle b/x-pack/plugin/esql/build.gradle index becc39f6fd37c..6f386ca3c40d7 100644 --- a/x-pack/plugin/esql/build.gradle +++ b/x-pack/plugin/esql/build.gradle @@ -23,7 +23,7 @@ esplugin { name = 'x-pack-esql' description = 'The plugin that powers ESQL for Elasticsearch' classname = 'org.elasticsearch.xpack.esql.plugin.EsqlPlugin' - extendedPlugins = ['x-pack-esql-core', 'lang-painless', 'x-pack-ml'] + extendedPlugins = ['x-pack-esql-core', 'lang-painless'] } base { @@ -34,7 +34,6 @@ dependencies { compileOnly project(path: xpackModule('core')) compileOnly project(':modules:lang-painless:spi') compileOnly project(xpackModule('esql-core')) - compileOnly project(xpackModule('ml')) implementation project(xpackModule('kql')) implementation project('compute') implementation project('compute:ann') @@ -53,6 +52,7 @@ dependencies { testImplementation project(path: xpackModule('enrich')) testImplementation project(path: xpackModule('spatial')) testImplementation project(path: xpackModule('kql')) + testImplementation project(path: xpackModule('ml')) testImplementation project(path: ':modules:reindex') testImplementation project(path: ':modules:parent-join') diff --git a/x-pack/plugin/esql/compute/build.gradle b/x-pack/plugin/esql/compute/build.gradle index f2eca7aee058f..5ba2651e35caa 100644 --- a/x-pack/plugin/esql/compute/build.gradle +++ b/x-pack/plugin/esql/compute/build.gradle @@ -12,7 +12,6 @@ dependencies { compileOnly project(':server') compileOnly project('ann') compileOnly project(xpackModule('core')) - compileOnly project(xpackModule('ml')) annotationProcessor project('gen') implementation 'com.carrotsearch:hppc:0.8.1' diff --git a/x-pack/plugin/esql/compute/src/main/java/module-info.java b/x-pack/plugin/esql/compute/src/main/java/module-info.java index c4a042d692ea1..f10737cf3a1dc 100644 --- a/x-pack/plugin/esql/compute/src/main/java/module-info.java +++ b/x-pack/plugin/esql/compute/src/main/java/module-info.java @@ -16,7 +16,6 @@ // required due to dependency on org.elasticsearch.common.util.concurrent.AbstractAsyncTask requires org.apache.logging.log4j; requires org.elasticsearch.logging; - requires org.elasticsearch.ml; requires org.elasticsearch.tdigest; requires org.elasticsearch.geo; requires org.elasticsearch.xcore; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java index f7c8c597c1f2e..79d4e910c3875 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/ChangePoint.java @@ -19,7 +19,6 @@ import org.elasticsearch.xpack.esql.core.type.DataType; import org.elasticsearch.xpack.esql.expression.NamedExpressions; import org.elasticsearch.xpack.esql.expression.Order; -import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetectorImpl; import java.io.IOException; import java.util.List; @@ -31,7 +30,7 @@ * Plan that detects change points in a list of values. See also: *
    *
  • {@link org.elasticsearch.compute.operator.ChangePointOperator} - *
  • {@link ChangePointDetectorImpl} + *
  • {@link org.elasticsearch.xpack.core.ml.aggs.changepoint.ChangePointDetector} *
* * ChangePoint should always run on the coordinating node after the data is collected From 46b88d19f55769fcaeb0ad96b4204c9c2b9abe12 Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Thu, 3 Apr 2025 09:06:14 +0000 Subject: [PATCH 7/7] [CI] Auto commit changes from spotless --- .../compute/operator/ChangePointOperator.java | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java index 8c20bdda01733..f1a0f96bdb7db 100644 --- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java @@ -35,7 +35,9 @@ public class ChangePointOperator implements Operator { public static final int INPUT_VALUE_COUNT_LIMIT = 1000; - public record Factory(ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn) implements OperatorFactory { + public record Factory(ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn) + implements + OperatorFactory { @Override public Operator get(DriverContext driverContext) { return new ChangePointOperator(driverContext, changePointDetector, channel, sourceText, sourceLine, sourceColumn); @@ -60,7 +62,14 @@ public String describe() { // TODO: make org.elasticsearch.xpack.esql.core.tree.Source available here // (by modularizing esql-core) and use that instead of the individual fields. - public ChangePointOperator(DriverContext driverContext, ChangePointDetector changePointDetector, int channel, String sourceText, int sourceLine, int sourceColumn) { + public ChangePointOperator( + DriverContext driverContext, + ChangePointDetector changePointDetector, + int channel, + String sourceText, + int sourceLine, + int sourceColumn + ) { this.driverContext = driverContext; this.changePointDetector = changePointDetector; this.channel = channel;