blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
5
283
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
41
license_type
stringclasses
2 values
repo_name
stringlengths
7
96
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
58 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
12.7k
662M
star_events_count
int64
0
35.5k
fork_events_count
int64
0
20.6k
gha_license_id
stringclasses
11 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
43 values
src_encoding
stringclasses
9 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
7
5.88M
extension
stringclasses
30 values
content
stringlengths
7
5.88M
authors
sequencelengths
1
1
author
stringlengths
0
73
59435dde0e895c55e809bd8c9ec793c233fce8cc
a29a74eea56d5d0f1c8acdcbebbed75da16dbaa6
/RuthWeather/ruth_weather/migrations/0005_auto_20210225_1248.py
dc23d434c47fb8b7e7646911b5022b1c1f428fd4
[]
no_license
jbar173/RuthWeather
1785b79a4f470d1b90534bd49eb9c0af554bf270
252549349ce2422cc41348d1e4c5203d87d94849
refs/heads/main
2023-03-08T09:40:34.059476
2021-02-25T13:21:50
2021-02-25T13:21:50
342,251,353
0
1
null
null
null
null
UTF-8
Python
false
false
364
py
# Generated by Django 3.1.6 on 2021-02-25 12:48 from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('ruth_weather', '0004_report_oulook'), ] operations = [ migrations.RenameField( model_name='report', old_name='oulook', new_name='outlook', ), ]
165f04471ea9f1ece1a5bc6602c642f46f3302f4
6e47be4e22ab76a8ddd7e18c89f5dc4f18539744
/venv/openshift/lib/python3.6/site-packages/kubernetes/client/models/extensions_v1beta1_rolling_update_deployment.py
869c0a9b303a98a2c2d41c425f3f1182dc60b84d
[]
no_license
georgi-mobi/redhat_ocp4.5_training
21236bb19d04a469c95a8f135188d3d1ae473764
2ccaa90e40dbbf8a18f668a5a7b0d5bfaa1db225
refs/heads/main
2023-03-30T10:47:08.687074
2021-04-01T05:25:49
2021-04-01T05:25:49
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,760
py
# coding: utf-8 """ Kubernetes No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) OpenAPI spec version: v1.12.11 Generated by: https://github.com/swagger-api/swagger-codegen.git """ from pprint import pformat from six import iteritems import re class ExtensionsV1beta1RollingUpdateDeployment(object): """ NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ """ Attributes: swagger_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ swagger_types = { 'max_surge': 'object', 'max_unavailable': 'object' } attribute_map = { 'max_surge': 'maxSurge', 'max_unavailable': 'maxUnavailable' } def __init__(self, max_surge=None, max_unavailable=None): """ ExtensionsV1beta1RollingUpdateDeployment - a model defined in Swagger """ self._max_surge = None self._max_unavailable = None self.discriminator = None if max_surge is not None: self.max_surge = max_surge if max_unavailable is not None: self.max_unavailable = max_unavailable @property def max_surge(self): """ Gets the max_surge of this ExtensionsV1beta1RollingUpdateDeployment. The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods. :return: The max_surge of this ExtensionsV1beta1RollingUpdateDeployment. :rtype: object """ return self._max_surge @max_surge.setter def max_surge(self, max_surge): """ Sets the max_surge of this ExtensionsV1beta1RollingUpdateDeployment. The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods. :param max_surge: The max_surge of this ExtensionsV1beta1RollingUpdateDeployment. :type: object """ self._max_surge = max_surge @property def max_unavailable(self): """ Gets the max_unavailable of this ExtensionsV1beta1RollingUpdateDeployment. The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. :return: The max_unavailable of this ExtensionsV1beta1RollingUpdateDeployment. :rtype: object """ return self._max_unavailable @max_unavailable.setter def max_unavailable(self, max_unavailable): """ Sets the max_unavailable of this ExtensionsV1beta1RollingUpdateDeployment. The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. :param max_unavailable: The max_unavailable of this ExtensionsV1beta1RollingUpdateDeployment. :type: object """ self._max_unavailable = max_unavailable def to_dict(self): """ Returns the model properties as a dict """ result = {} for attr, _ in iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result def to_str(self): """ Returns the string representation of the model """ return pformat(self.to_dict()) def __repr__(self): """ For `print` and `pprint` """ return self.to_str() def __eq__(self, other): """ Returns true if both objects are equal """ if not isinstance(other, ExtensionsV1beta1RollingUpdateDeployment): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """ Returns true if both objects are not equal """ return not self == other
abe1b2d3584bd21802c7813efbd7058fbd18f7de
d7a977f1075fd5026d718f849dd0eaff1d498745
/3_hw/bayesianLR.py
2c5f176cc54ac667e41529c89c5f83e82c3643ad
[]
no_license
wlshih/ML_Spring_2020
4a7762d07882305ca4905cfa822b5e599b021596
694df99b4bd180d9e5d07dda9a262f9fa717a545
refs/heads/master
2021-04-17T23:14:47.838400
2020-05-31T12:31:52
2020-05-31T12:31:52
249,484,432
0
0
null
null
null
null
UTF-8
Python
false
false
5,740
py
#! /usr/local/bin/python3 import numpy as np import math import matplotlib.pyplot as plt import pprint from seqEstimator import univariate_data_generator # Part 1.b: Polynomial regression model data generator def PR_model_generator(weight, var): x = np.random.uniform(-1.0, 1.0, 1) y = 0.0 for i in range(len(weight)): y += weight[i] * (x**i) error = univariate_data_generator(0, var) return x, y + error def read_input(): print("precision(b): ", end = '') b = float(input()) print("polynomial bases(n): ", end = '') n = int(input()) print("variation(a): ", end = '') a = float(input()) print("weight matirx(W): ", end = '') W = list(map(float, input().split())) return b, n, a, W # linear regression matrix form def build_matrix(x, n): A = [] for i in range(n): A.append(x ** i) return np.array(A).reshape(1, -1) def print_iteration(cnt, x, y, mean_post, var_post, mean_predict, var_predict): print("Count = {}".format(cnt)) print("Add data point ({}, {}):".format(x, y)) print("") print("Posterior mean:") print(mean_post) print("") print("Posterior covariance:") print(var_post) print("") print("Predictive distribution ~ N({}, {})".format(mean_predict, var_predict)) print("---------------------------------------------") return # Part 3: Bayesian linear regression if __name__ == "__main__": precision, poly_bases, var, weight = read_input() # linear regression # first iteration cnt = 1 x, y = PR_model_generator(weight, var) # data record data_x = [x] data_y = [y] A = build_matrix(x, poly_bases) var_post_inv = var * np.matmul(A.T, A) + precision * np.eye(poly_bases) var_post = np.linalg.inv(var_post_inv) mean_post = var * np.matmul(var_post, A.T) * y var_predict = 1 / var + np.matmul(np.matmul(A, var_post), A.T) mean_predict = np.matmul(A, mean_post) print_iteration(cnt, x, y, mean_post, var_post, mean_predict, var_predict) while(True): cnt += 1 x, y = PR_model_generator(weight, var) data_x.append(x) data_y.append(y) A = build_matrix(x, poly_bases) var_prior_inv = var_post_inv.copy() var_prior = var_post.copy() mean_prior = mean_post.copy() var_post_inv = var * np.matmul(A.T, A) + var_prior_inv var_post = np.linalg.inv(var_post_inv) mean_post = np.matmul(var_post, (var * A.T * y + np.matmul(var_prior_inv, mean_prior))) var_predict = 1 / var + np.matmul(np.matmul(A, var_post), A.T) mean_predict = np.matmul(A, mean_post) print_iteration(cnt, x, y, mean_post, var_post, mean_predict, var_predict) if ( abs(np.sum(mean_prior - mean_post)) < 1e-6 ) and ( abs(np.sum(var_prior - var_post)) < 1e-6 ): break # data recording if cnt == 10: mean_10 = mean_post.copy() var_10 = var_post.copy() data_x_10 = data_x.copy() data_y_10 = data_y.copy() if cnt == 50: mean_50 = mean_post.copy() var_50 = var_post.copy() data_x_50 = data_x.copy() data_y_50 = data_y.copy() # display plot # ground truth plt.subplot(221) plt.xlim(-2.0, 2.0) plt.ylim(-15.0, 25) plt.title("Ground Truth") ground_func = np.poly1d(np.flip(weight)) ground_x = np.linspace(-2.0, 2.0, 30) ground_y = ground_func(ground_x) plt.plot(ground_x, ground_y, color = 'black') ground_y += var plt.plot(ground_x, ground_y, color = 'red') ground_y -= 2 * var plt.plot(ground_x, ground_y, color = 'red') # predice result plt.subplot(222) plt.xlim(-2.0, 2.0) plt.ylim(-15.0, 25) plt.title("Predict result") predict_x = np.linspace(-2.0, 2.0, 30) predict_func = np.poly1d(np.flip(mean_post.flatten())) predict_y = predict_func(predict_x) predict_y_plus = predict_func(predict_x) predict_y_minus = predict_func(predict_x) for i in range(len(predict_x)): predict_A = build_matrix(predict_x[i], poly_bases) predict_var_predict = 1 / var + np.matmul(np.matmul(predict_A, var_post), predict_A.T) predict_y_plus[i] += predict_var_predict[0] predict_y_minus[i] -= predict_var_predict[0] plt.plot(predict_x, predict_y, color = 'black') plt.plot(predict_x, predict_y_plus, color = 'red') plt.plot(predict_x, predict_y_minus, color = 'red') plt.scatter(data_x, data_y) # after 10 incomes plt.subplot(223) plt.xlim(-2.0, 2.0) plt.ylim(-15.0, 25) plt.title("After 10 incomes") predict_x = np.linspace(-2.0, 2.0, 30) predict_func = np.poly1d(np.flip(mean_10.flatten())) predict_y = predict_func(predict_x) predict_y_plus = predict_func(predict_x) predict_y_minus = predict_func(predict_x) for i in range(len(predict_x)): predict_A = build_matrix(predict_x[i], poly_bases) predict_var_predict = 1 / var + np.matmul(np.matmul(predict_A, var_10), predict_A.T) predict_y_plus[i] += predict_var_predict[0] predict_y_minus[i] -= predict_var_predict[0] plt.plot(predict_x, predict_y, color = 'black') plt.plot(predict_x, predict_y_plus, color = 'red') plt.plot(predict_x, predict_y_minus, color = 'red') plt.scatter(data_x_10, data_y_10) # after 50 incomes plt.subplot(224) plt.xlim(-2.0, 2.0) plt.ylim(-15.0, 25) plt.title("After 50 incomes") predict_x = np.linspace(-2.0, 2.0, 30) predict_func = np.poly1d(np.flip(mean_50.flatten())) predict_y = predict_func(predict_x) predict_y_plus = predict_func(predict_x) predict_y_minus = predict_func(predict_x) for i in range(len(predict_x)): predict_A = build_matrix(predict_x[i], poly_bases) predict_var_predict = 1 / var + np.matmul(np.matmul(predict_A, var_50), predict_A.T) predict_y_plus[i] += predict_var_predict[0] predict_y_minus[i] -= predict_var_predict[0] plt.plot(predict_x, predict_y, color = 'black') plt.plot(predict_x, predict_y_plus, color = 'red') plt.plot(predict_x, predict_y_minus, color = 'red') plt.scatter(data_x_50, data_y_50) plt.tight_layout() plt.show()
438078d4631e7500fdac66ad75cdb09b68f16216
f329c70e62ba5b1bd01c73d60aa2499b28220cbf
/app.py
5f12d451d8ee14c57f334464034d9bcb32005d2c
[]
no_license
Sharvil24600/Fake-News-Prediction
92721b13cc182a4a10a27cf387296a261a45b2ee
06445ee80442b890a2037df3e4d21dfe078408a4
refs/heads/main
2023-05-23T11:11:14.616204
2021-06-15T05:15:23
2021-06-15T05:15:23
null
0
0
null
null
null
null
UTF-8
Python
false
false
635
py
from flask import Flask from flask import render_template, url_for, request app = Flask(__name__) import pickle as pk model='FakeNewsModel.pkl' transform = 'transform.pkl' clf = pk.load(open(model, 'rb')) cv = pk.load(open(transform, 'rb')) @app.route('/') def home(): return render_template('index.html') @app.route('/predict', methods=['POST']) def predict(): if request.method=='POST': txt = request.form['txt'] data = [txt] vector = cv.transform(data).toarray() predicting = clf.predict(vector) return render_template('result.html', prediction=predicting) if __name__ == '__main__': app.run(debug=True)
b93a6e3efdead5dfe0572feb0b1015d84d0a807f
465ea89a1f30efb02a32a8d301eea9fab9a6e5c1
/Projects/ex49dir/ex49/ex49.py
69016bcdc2dff06424045793ebefbf8fca9d0b2b
[]
no_license
deleeke/LPTHW
4fef2bc010427f14189903b8e683ec0f504d32b9
ae5a668178f92e798bfe1a45919106f0e517c32f
refs/heads/master
2021-01-10T11:55:50.452592
2016-01-30T17:36:54
2016-01-30T17:36:54
46,449,017
0
0
null
null
null
null
UTF-8
Python
false
false
1,755
py
class ParserError(Exception): pass class Sentence(object): def __init__(self, subject, verb, object): # take ('type', 'word') tuple and convert it self.subject = subject[1] self.verb = verb[1] self.object = object[1] def peek(word_list): if word_list: word = word_list[0] return word[0] else: return None def match(word_list, expecting): if word_list: word = word_list.pop(0) if word[0] == expecting: return word else: return None else: return None def skip(word_list, word_type): while peek(word_list) == word_type: match(word_list, word_type) def parse_verb(word_list): skip(word_list, 'stop') if peek(word_list) == 'verb': return match(word_list, 'verb') else: raise ParserError("Expected a verb next.") def parse_object(word_list): skip(word_list, 'stop') next = peek(word_list) if next == 'noun': return match(word_list, 'noun') if next == 'direction': return match(word_list, 'direction') else: raise ParserError('Expected a noun or a direction next.') def parse_subject(word_list, subj): verb = parse_verb(word_list) obj = parse_object(word_list) return Sentence(subj, verb, obj) def parse_sentence(word_list): skip(word_list, 'stop') start = peek(word_list) if start == 'noun': subj = match(word_list, 'noun') return parse_subject(word_list, subj) elif start == 'verb': # assume the subject is the player return parse_subject(word_list, ('noun', 'player')) else: raise ParserError('Must start with subject, object, or verb not %s' % start)
0abc1e9aa6da9f232122379cee23e51c7980364a
962f60293dceee064754dded5f556d8d33b8836e
/test_scrapy/spiders/scrapy_baidu.py
c37dd261f3ab3c672df93c4f641e99ebc1858dbb
[]
no_license
waterlp/scrapy
6b0689c02cd941136ee0e96f4ffae03bb5b8b58c
36c249a167b7e3a31027fdedc75e2aa1dd70b0f1
refs/heads/master
2020-07-02T04:29:31.866644
2019-08-09T09:47:16
2019-08-09T09:47:16
201,415,855
0
0
null
null
null
null
UTF-8
Python
false
false
268
py
import scrapy class BaiduSpider(scrapy.Spider): name = 'baidu' # allowed_domains = ['baidu.com'] start_urls = ['http://lab.scrapyd.cn/'] def parse(self, response): print('1111111111111') print(response) print('1111111111111')
c10e27f6697d876c32c12022a6a8c2f02a23eb35
96718fe7a7c6a311791bec3d02b7fc1437e1f084
/drlutils/rpcio/cdataio.py
a2ee342a6791b3b0523f258a8ea70b8ef586fbbe
[]
no_license
createamind/DRLUtils
b33215595663b2583aacb0a7fd9f29ed8aa506b1
560dc96518891f4129193b837509c293b6d84c2a
refs/heads/master
2021-01-23T14:15:12.268159
2017-09-07T02:21:59
2017-09-07T02:21:59
102,680,929
0
0
null
null
null
null
UTF-8
Python
false
false
25,318
py
# This file was automatically generated by SWIG (http://www.swig.org). # Version 3.0.10 # # Do not make changes to this file unless you know what you are doing--modify # the SWIG interface file instead. from sys import version_info as _swig_python_version_info if _swig_python_version_info >= (2, 7, 0): def swig_import_helper(): import importlib pkg = __name__.rpartition('.')[0] mname = '.'.join((pkg, '_cdataio')).lstrip('.') try: return importlib.import_module(mname) except ImportError: return importlib.import_module('_cdataio') _cdataio = swig_import_helper() del swig_import_helper elif _swig_python_version_info >= (2, 6, 0): def swig_import_helper(): from os.path import dirname import imp fp = None try: fp, pathname, description = imp.find_module('_cdataio', [dirname(__file__)]) except ImportError: import _cdataio return _cdataio if fp is not None: try: _mod = imp.load_module('_cdataio', fp, pathname, description) finally: fp.close() return _mod _cdataio = swig_import_helper() del swig_import_helper else: import _cdataio del _swig_python_version_info try: _swig_property = property except NameError: pass # Python < 2.2 doesn't have 'property'. try: import builtins as __builtin__ except ImportError: import __builtin__ def _swig_setattr_nondynamic(self, class_type, name, value, static=1): if (name == "thisown"): return self.this.own(value) if (name == "this"): if type(value).__name__ == 'SwigPyObject': self.__dict__[name] = value return method = class_type.__swig_setmethods__.get(name, None) if method: return method(self, value) if (not static): if _newclass: object.__setattr__(self, name, value) else: self.__dict__[name] = value else: raise AttributeError("You cannot add attributes to %s" % self) def _swig_setattr(self, class_type, name, value): return _swig_setattr_nondynamic(self, class_type, name, value, 0) def _swig_getattr(self, class_type, name): if (name == "thisown"): return self.this.own() method = class_type.__swig_getmethods__.get(name, None) if method: return method(self) raise AttributeError("'%s' object has no attribute '%s'" % (class_type.__name__, name)) def _swig_repr(self): try: strthis = "proxy of " + self.this.__repr__() except __builtin__.Exception: strthis = "" return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) try: _object = object _newclass = 1 except __builtin__.Exception: class _object: pass _newclass = 0 class SwigPyIterator(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator, name) def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract") __repr__ = _swig_repr __swig_destroy__ = _cdataio.delete_SwigPyIterator __del__ = lambda self: None def value(self): return _cdataio.SwigPyIterator_value(self) def incr(self, n=1): return _cdataio.SwigPyIterator_incr(self, n) def decr(self, n=1): return _cdataio.SwigPyIterator_decr(self, n) def distance(self, x): return _cdataio.SwigPyIterator_distance(self, x) def equal(self, x): return _cdataio.SwigPyIterator_equal(self, x) def copy(self): return _cdataio.SwigPyIterator_copy(self) def next(self): return _cdataio.SwigPyIterator_next(self) def __next__(self): return _cdataio.SwigPyIterator___next__(self) def previous(self): return _cdataio.SwigPyIterator_previous(self) def advance(self, n): return _cdataio.SwigPyIterator_advance(self, n) def __eq__(self, x): return _cdataio.SwigPyIterator___eq__(self, x) def __ne__(self, x): return _cdataio.SwigPyIterator___ne__(self, x) def __iadd__(self, n): return _cdataio.SwigPyIterator___iadd__(self, n) def __isub__(self, n): return _cdataio.SwigPyIterator___isub__(self, n) def __add__(self, n): return _cdataio.SwigPyIterator___add__(self, n) def __sub__(self, *args): return _cdataio.SwigPyIterator___sub__(self, *args) def __iter__(self): return self SwigPyIterator_swigregister = _cdataio.SwigPyIterator_swigregister SwigPyIterator_swigregister(SwigPyIterator) class _string_list(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, _string_list, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, _string_list, name) __repr__ = _swig_repr def iterator(self): return _cdataio._string_list_iterator(self) def __iter__(self): return self.iterator() def __nonzero__(self): return _cdataio._string_list___nonzero__(self) def __bool__(self): return _cdataio._string_list___bool__(self) def __len__(self): return _cdataio._string_list___len__(self) def __getslice__(self, i, j): return _cdataio._string_list___getslice__(self, i, j) def __setslice__(self, *args): return _cdataio._string_list___setslice__(self, *args) def __delslice__(self, i, j): return _cdataio._string_list___delslice__(self, i, j) def __delitem__(self, *args): return _cdataio._string_list___delitem__(self, *args) def __getitem__(self, *args): return _cdataio._string_list___getitem__(self, *args) def __setitem__(self, *args): return _cdataio._string_list___setitem__(self, *args) def pop(self): return _cdataio._string_list_pop(self) def append(self, x): return _cdataio._string_list_append(self, x) def empty(self): return _cdataio._string_list_empty(self) def size(self): return _cdataio._string_list_size(self) def swap(self, v): return _cdataio._string_list_swap(self, v) def begin(self): return _cdataio._string_list_begin(self) def end(self): return _cdataio._string_list_end(self) def rbegin(self): return _cdataio._string_list_rbegin(self) def rend(self): return _cdataio._string_list_rend(self) def clear(self): return _cdataio._string_list_clear(self) def get_allocator(self): return _cdataio._string_list_get_allocator(self) def pop_back(self): return _cdataio._string_list_pop_back(self) def erase(self, *args): return _cdataio._string_list_erase(self, *args) def __init__(self, *args): this = _cdataio.new__string_list(*args) try: self.this.append(this) except __builtin__.Exception: self.this = this def push_back(self, x): return _cdataio._string_list_push_back(self, x) def front(self): return _cdataio._string_list_front(self) def back(self): return _cdataio._string_list_back(self) def assign(self, n, x): return _cdataio._string_list_assign(self, n, x) def resize(self, *args): return _cdataio._string_list_resize(self, *args) def insert(self, *args): return _cdataio._string_list_insert(self, *args) def reserve(self, n): return _cdataio._string_list_reserve(self, n) def capacity(self): return _cdataio._string_list_capacity(self) __swig_destroy__ = _cdataio.delete__string_list __del__ = lambda self: None _string_list_swigregister = _cdataio._string_list_swigregister _string_list_swigregister(_string_list) class _vector_of_vector_string(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, _vector_of_vector_string, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, _vector_of_vector_string, name) __repr__ = _swig_repr def iterator(self): return _cdataio._vector_of_vector_string_iterator(self) def __iter__(self): return self.iterator() def __nonzero__(self): return _cdataio._vector_of_vector_string___nonzero__(self) def __bool__(self): return _cdataio._vector_of_vector_string___bool__(self) def __len__(self): return _cdataio._vector_of_vector_string___len__(self) def __getslice__(self, i, j): return _cdataio._vector_of_vector_string___getslice__(self, i, j) def __setslice__(self, *args): return _cdataio._vector_of_vector_string___setslice__(self, *args) def __delslice__(self, i, j): return _cdataio._vector_of_vector_string___delslice__(self, i, j) def __delitem__(self, *args): return _cdataio._vector_of_vector_string___delitem__(self, *args) def __getitem__(self, *args): return _cdataio._vector_of_vector_string___getitem__(self, *args) def __setitem__(self, *args): return _cdataio._vector_of_vector_string___setitem__(self, *args) def pop(self): return _cdataio._vector_of_vector_string_pop(self) def append(self, x): return _cdataio._vector_of_vector_string_append(self, x) def empty(self): return _cdataio._vector_of_vector_string_empty(self) def size(self): return _cdataio._vector_of_vector_string_size(self) def swap(self, v): return _cdataio._vector_of_vector_string_swap(self, v) def begin(self): return _cdataio._vector_of_vector_string_begin(self) def end(self): return _cdataio._vector_of_vector_string_end(self) def rbegin(self): return _cdataio._vector_of_vector_string_rbegin(self) def rend(self): return _cdataio._vector_of_vector_string_rend(self) def clear(self): return _cdataio._vector_of_vector_string_clear(self) def get_allocator(self): return _cdataio._vector_of_vector_string_get_allocator(self) def pop_back(self): return _cdataio._vector_of_vector_string_pop_back(self) def erase(self, *args): return _cdataio._vector_of_vector_string_erase(self, *args) def __init__(self, *args): this = _cdataio.new__vector_of_vector_string(*args) try: self.this.append(this) except __builtin__.Exception: self.this = this def push_back(self, x): return _cdataio._vector_of_vector_string_push_back(self, x) def front(self): return _cdataio._vector_of_vector_string_front(self) def back(self): return _cdataio._vector_of_vector_string_back(self) def assign(self, n, x): return _cdataio._vector_of_vector_string_assign(self, n, x) def resize(self, *args): return _cdataio._vector_of_vector_string_resize(self, *args) def insert(self, *args): return _cdataio._vector_of_vector_string_insert(self, *args) def reserve(self, n): return _cdataio._vector_of_vector_string_reserve(self, n) def capacity(self): return _cdataio._vector_of_vector_string_capacity(self) __swig_destroy__ = _cdataio.delete__vector_of_vector_string __del__ = lambda self: None _vector_of_vector_string_swigregister = _cdataio._vector_of_vector_string_swigregister _vector_of_vector_string_swigregister(_vector_of_vector_string) class _map_of_string_string(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, _map_of_string_string, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, _map_of_string_string, name) __repr__ = _swig_repr def iterator(self): return _cdataio._map_of_string_string_iterator(self) def __iter__(self): return self.iterator() def __nonzero__(self): return _cdataio._map_of_string_string___nonzero__(self) def __bool__(self): return _cdataio._map_of_string_string___bool__(self) def __len__(self): return _cdataio._map_of_string_string___len__(self) def __iter__(self): return self.key_iterator() def iterkeys(self): return self.key_iterator() def itervalues(self): return self.value_iterator() def iteritems(self): return self.iterator() def __getitem__(self, key): return _cdataio._map_of_string_string___getitem__(self, key) def __delitem__(self, key): return _cdataio._map_of_string_string___delitem__(self, key) def has_key(self, key): return _cdataio._map_of_string_string_has_key(self, key) def keys(self): return _cdataio._map_of_string_string_keys(self) def values(self): return _cdataio._map_of_string_string_values(self) def items(self): return _cdataio._map_of_string_string_items(self) def __contains__(self, key): return _cdataio._map_of_string_string___contains__(self, key) def key_iterator(self): return _cdataio._map_of_string_string_key_iterator(self) def value_iterator(self): return _cdataio._map_of_string_string_value_iterator(self) def __setitem__(self, *args): return _cdataio._map_of_string_string___setitem__(self, *args) def asdict(self): return _cdataio._map_of_string_string_asdict(self) def __init__(self, *args): this = _cdataio.new__map_of_string_string(*args) try: self.this.append(this) except __builtin__.Exception: self.this = this def empty(self): return _cdataio._map_of_string_string_empty(self) def size(self): return _cdataio._map_of_string_string_size(self) def swap(self, v): return _cdataio._map_of_string_string_swap(self, v) def begin(self): return _cdataio._map_of_string_string_begin(self) def end(self): return _cdataio._map_of_string_string_end(self) def rbegin(self): return _cdataio._map_of_string_string_rbegin(self) def rend(self): return _cdataio._map_of_string_string_rend(self) def clear(self): return _cdataio._map_of_string_string_clear(self) def get_allocator(self): return _cdataio._map_of_string_string_get_allocator(self) def count(self, x): return _cdataio._map_of_string_string_count(self, x) def erase(self, *args): return _cdataio._map_of_string_string_erase(self, *args) def find(self, x): return _cdataio._map_of_string_string_find(self, x) def lower_bound(self, x): return _cdataio._map_of_string_string_lower_bound(self, x) def upper_bound(self, x): return _cdataio._map_of_string_string_upper_bound(self, x) __swig_destroy__ = _cdataio.delete__map_of_string_string __del__ = lambda self: None _map_of_string_string_swigregister = _cdataio._map_of_string_string_swigregister _map_of_string_string_swigregister(_map_of_string_string) class _vector_map_of_string_string(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, _vector_map_of_string_string, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, _vector_map_of_string_string, name) __repr__ = _swig_repr def iterator(self): return _cdataio._vector_map_of_string_string_iterator(self) def __iter__(self): return self.iterator() def __nonzero__(self): return _cdataio._vector_map_of_string_string___nonzero__(self) def __bool__(self): return _cdataio._vector_map_of_string_string___bool__(self) def __len__(self): return _cdataio._vector_map_of_string_string___len__(self) def __getslice__(self, i, j): return _cdataio._vector_map_of_string_string___getslice__(self, i, j) def __setslice__(self, *args): return _cdataio._vector_map_of_string_string___setslice__(self, *args) def __delslice__(self, i, j): return _cdataio._vector_map_of_string_string___delslice__(self, i, j) def __delitem__(self, *args): return _cdataio._vector_map_of_string_string___delitem__(self, *args) def __getitem__(self, *args): return _cdataio._vector_map_of_string_string___getitem__(self, *args) def __setitem__(self, *args): return _cdataio._vector_map_of_string_string___setitem__(self, *args) def pop(self): return _cdataio._vector_map_of_string_string_pop(self) def append(self, x): return _cdataio._vector_map_of_string_string_append(self, x) def empty(self): return _cdataio._vector_map_of_string_string_empty(self) def size(self): return _cdataio._vector_map_of_string_string_size(self) def swap(self, v): return _cdataio._vector_map_of_string_string_swap(self, v) def begin(self): return _cdataio._vector_map_of_string_string_begin(self) def end(self): return _cdataio._vector_map_of_string_string_end(self) def rbegin(self): return _cdataio._vector_map_of_string_string_rbegin(self) def rend(self): return _cdataio._vector_map_of_string_string_rend(self) def clear(self): return _cdataio._vector_map_of_string_string_clear(self) def get_allocator(self): return _cdataio._vector_map_of_string_string_get_allocator(self) def pop_back(self): return _cdataio._vector_map_of_string_string_pop_back(self) def erase(self, *args): return _cdataio._vector_map_of_string_string_erase(self, *args) def __init__(self, *args): this = _cdataio.new__vector_map_of_string_string(*args) try: self.this.append(this) except __builtin__.Exception: self.this = this def push_back(self, x): return _cdataio._vector_map_of_string_string_push_back(self, x) def front(self): return _cdataio._vector_map_of_string_string_front(self) def back(self): return _cdataio._vector_map_of_string_string_back(self) def assign(self, n, x): return _cdataio._vector_map_of_string_string_assign(self, n, x) def resize(self, *args): return _cdataio._vector_map_of_string_string_resize(self, *args) def insert(self, *args): return _cdataio._vector_map_of_string_string_insert(self, *args) def reserve(self, n): return _cdataio._vector_map_of_string_string_reserve(self, n) def capacity(self): return _cdataio._vector_map_of_string_string_capacity(self) __swig_destroy__ = _cdataio.delete__vector_map_of_string_string __del__ = lambda self: None _vector_map_of_string_string_swigregister = _cdataio._vector_map_of_string_string_swigregister _vector_map_of_string_string_swigregister(_vector_map_of_string_string) class InitParams(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, InitParams, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, InitParams, name) __repr__ = _swig_repr __swig_setmethods__["host"] = _cdataio.InitParams_host_set __swig_getmethods__["host"] = _cdataio.InitParams_host_get if _newclass: host = _swig_property(_cdataio.InitParams_host_get, _cdataio.InitParams_host_set) __swig_setmethods__["port"] = _cdataio.InitParams_port_set __swig_getmethods__["port"] = _cdataio.InitParams_port_get if _newclass: port = _swig_property(_cdataio.InitParams_port_get, _cdataio.InitParams_port_set) def __init__(self): this = _cdataio.new_InitParams() try: self.this.append(this) except __builtin__.Exception: self.this = this __swig_destroy__ = _cdataio.delete_InitParams __del__ = lambda self: None InitParams_swigregister = _cdataio.InitParams_swigregister InitParams_swigregister(InitParams) class EventParams(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, EventParams, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, EventParams, name) __repr__ = _swig_repr __swig_setmethods__["name"] = _cdataio.EventParams_name_set __swig_getmethods__["name"] = _cdataio.EventParams_name_get if _newclass: name = _swig_property(_cdataio.EventParams_name_get, _cdataio.EventParams_name_set) __swig_setmethods__["paramString"] = _cdataio.EventParams_paramString_set __swig_getmethods__["paramString"] = _cdataio.EventParams_paramString_get if _newclass: paramString = _swig_property(_cdataio.EventParams_paramString_get, _cdataio.EventParams_paramString_set) __swig_setmethods__["paramInt"] = _cdataio.EventParams_paramInt_set __swig_getmethods__["paramInt"] = _cdataio.EventParams_paramInt_get if _newclass: paramInt = _swig_property(_cdataio.EventParams_paramInt_get, _cdataio.EventParams_paramInt_set) def __init__(self): this = _cdataio.new_EventParams() try: self.this.append(this) except __builtin__.Exception: self.this = this __swig_destroy__ = _cdataio.delete_EventParams __del__ = lambda self: None EventParams_swigregister = _cdataio.EventParams_swigregister EventParams_swigregister(EventParams) class PoolInitParams(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, PoolInitParams, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, PoolInitParams, name) __repr__ = _swig_repr __swig_setmethods__["name"] = _cdataio.PoolInitParams_name_set __swig_getmethods__["name"] = _cdataio.PoolInitParams_name_get if _newclass: name = _swig_property(_cdataio.PoolInitParams_name_get, _cdataio.PoolInitParams_name_set) __swig_setmethods__["size"] = _cdataio.PoolInitParams_size_set __swig_getmethods__["size"] = _cdataio.PoolInitParams_size_get if _newclass: size = _swig_property(_cdataio.PoolInitParams_size_get, _cdataio.PoolInitParams_size_set) __swig_setmethods__["subBatchSize"] = _cdataio.PoolInitParams_subBatchSize_set __swig_getmethods__["subBatchSize"] = _cdataio.PoolInitParams_subBatchSize_get if _newclass: subBatchSize = _swig_property(_cdataio.PoolInitParams_subBatchSize_get, _cdataio.PoolInitParams_subBatchSize_set) __swig_setmethods__["trainBatchSize"] = _cdataio.PoolInitParams_trainBatchSize_set __swig_getmethods__["trainBatchSize"] = _cdataio.PoolInitParams_trainBatchSize_get if _newclass: trainBatchSize = _swig_property(_cdataio.PoolInitParams_trainBatchSize_get, _cdataio.PoolInitParams_trainBatchSize_set) __swig_setmethods__["predictMinBatchSize"] = _cdataio.PoolInitParams_predictMinBatchSize_set __swig_getmethods__["predictMinBatchSize"] = _cdataio.PoolInitParams_predictMinBatchSize_get if _newclass: predictMinBatchSize = _swig_property(_cdataio.PoolInitParams_predictMinBatchSize_get, _cdataio.PoolInitParams_predictMinBatchSize_set) __swig_setmethods__["predictMaxBatchSize"] = _cdataio.PoolInitParams_predictMaxBatchSize_set __swig_getmethods__["predictMaxBatchSize"] = _cdataio.PoolInitParams_predictMaxBatchSize_get if _newclass: predictMaxBatchSize = _swig_property(_cdataio.PoolInitParams_predictMaxBatchSize_get, _cdataio.PoolInitParams_predictMaxBatchSize_set) def __init__(self): this = _cdataio.new_PoolInitParams() try: self.this.append(this) except __builtin__.Exception: self.this = this __swig_destroy__ = _cdataio.delete_PoolInitParams __del__ = lambda self: None PoolInitParams_swigregister = _cdataio.PoolInitParams_swigregister PoolInitParams_swigregister(PoolInitParams) class CDataIO(_object): __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, CDataIO, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, CDataIO, name) __repr__ = _swig_repr def __init__(self): this = _cdataio.new_CDataIO() try: self.this.append(this) except __builtin__.Exception: self.this = this def initialize(self, params): return _cdataio.CDataIO_initialize(self, params) def onEvent(self, params): return _cdataio.CDataIO_onEvent(self, params) def start(self): return _cdataio.CDataIO_start(self) def close(self): return _cdataio.CDataIO_close(self) def createPool(self, params): return _cdataio.CDataIO_createPool(self, params) __swig_destroy__ = _cdataio.delete_CDataIO __del__ = lambda self: None CDataIO_swigregister = _cdataio.CDataIO_swigregister CDataIO_swigregister(CDataIO) # This file is compatible with both classic and new-style classes.
6f105cd72eb03c044f2d34983ea9719e1a7f8e8d
9e988c0dfbea15cd23a3de860cb0c88c3dcdbd97
/sdBs/AllRun/sdssj_123708.56+362123.5/sdB_sdssj_123708.56+362123.5_lc.py
5d2ad8d6177473ff80780ac41c0904694f22eb1d
[]
no_license
tboudreaux/SummerSTScICode
73b2e5839b10c0bf733808f4316d34be91c5a3bd
4dd1ffbb09e0a599257d21872f9d62b5420028b0
refs/heads/master
2021-01-20T18:07:44.723496
2016-08-08T16:49:53
2016-08-08T16:49:53
65,221,159
0
0
null
null
null
null
UTF-8
Python
false
false
371
py
from gPhoton.gAperture import gAperture def main(): gAperture(band="NUV", skypos=[189.285667,36.356528], stepsz=30., csvfile="/data2/fleming/GPHOTON_OUTPU/LIGHTCURVES/sdBs/sdB_sdssj_123708.56+362123.5/sdB_sdssj_123708.56+362123.5_lc.csv", maxgap=1000., overwrite=True, radius=0.00555556, annulus=[0.005972227,0.0103888972], verbose=3) if __name__ == "__main__": main()
acc0e5042ec2712ac0e80560f8464a86eb6650e7
3da88b72e8114c16a2d8120b296ec77a873bcc26
/Driver.py
2bbd6ca30b0368874386a6071e3cc8fe33b577b5
[]
no_license
pomps8/Calculator
833ca1eef5b1cdb15efd5cf4b486507898a94684
33a06a878c51fdc379f3778edf77b3c153b0a9a0
refs/heads/master
2020-04-10T07:07:23.361361
2020-03-14T01:49:12
2020-03-14T01:49:12
157,824,876
0
0
null
null
null
null
UTF-8
Python
false
false
1,073
py
import MathOperators # FileName: Driver.py # Author: Anthony Pompili # Date: March 13, 2020 # Description: This file holds the main logic for the Calculator application. This file will launch # the calculator GUI, and allow the user to perform the specified operations allowed in the interface. # Starting point of calculator application: user_input = input("What operation would you like to perform?") # Simple check to see what operation they selected if user_input == "Add": number1 = input("Number1: ") number2 = input("Number2: ") print(MathOperators.addition(number1, number2)) elif user_input == "Sub": number1 = input("Number1: ") number2 = input("Number2: ") print(MathOperators.subtraction(number1, number2)) elif user_input == "Divide": number1 = input("Number1: ") number2 = input("Number2: ") print(MathOperators.divide(number1, number2)) elif user_input == "Multiply": number1 = input("Number1: ") number2 = input("Number2: ") print(MathOperators.multiply(number1, number2)) else: print("Invalid input.")
0676d7cf9a0bc2abf7a2e848fa4c701de6d1cc68
4e7619b1b236ea979da82ac2f3888de69d5714b8
/multiagent/multiAgents.py
f6155f39b3745099e75d8a64d0d5b23373b0a014
[]
no_license
lmontalvo27/CSE571-artificial-intelligence
2e72548eb1b878048ffe9af57dc457c9078978e1
7a78d3a37fdd4cac1411388acfa767e8909cc67f
refs/heads/master
2023-03-22T04:59:23.659169
2020-05-08T08:30:02
2020-05-08T08:30:02
null
0
0
null
null
null
null
UTF-8
Python
false
false
14,134
py
# multiAgents.py # -------------- # Licensing Information: You are free to use or extend these projects for # educational purposes provided that (1) you do not distribute or publish # solutions, (2) you retain this notice, and (3) you provide clear # attribution to UC Berkeley, including a link to http://ai.berkeley.edu. # # Attribution Information: The Pacman AI projects were developed at UC Berkeley. # The core projects and autograders were primarily created by John DeNero # ([email protected]) and Dan Klein ([email protected]). # Student side autograding was added by Brad Miller, Nick Hay, and # Pieter Abbeel ([email protected]). from util import manhattanDistance from game import Directions import random, util from game import Agent class ReflexAgent(Agent): """ A reflex agent chooses an action at each choice point by examining its alternatives via a state evaluation function. The code below is provided as a guide. You are welcome to change it in any way you see fit, so long as you don't touch our method headers. """ def getAction(self, gameState): """ You do not need to change this method, but you're welcome to. getAction chooses among the best options according to the evaluation function. Just like in the previous project, getAction takes a GameState and returns some Directions.X for some X in the set {North, South, West, East, Stop} """ # Collect legal moves and successor states legalMoves = gameState.getLegalActions() # Choose one of the best actions scores = [self.evaluationFunction(gameState, action) for action in legalMoves] bestScore = max(scores) bestIndices = [index for index in range(len(scores)) if scores[index] == bestScore] chosenIndex = random.choice(bestIndices) # Pick randomly among the best "Add more of your code here if you want to" return legalMoves[chosenIndex] def evaluationFunction(self, currentGameState, action): """ Design a better evaluation function here. The evaluation function takes in the current and proposed successor GameStates (pacman.py) and returns a number, where higher numbers are better. The code below extracts some useful information from the state, like the remaining food (newFood) and Pacman position after moving (newPos). newScaredTimes holds the number of moves that each ghost will remain scared because of Pacman having eaten a power pellet. Print out these variables to see what you're getting, then combine them to create a masterful evaluation function. """ # Useful information you can extract from a GameState (pacman.py) successorGameState = currentGameState.generatePacmanSuccessor(action) newPos = successorGameState.getPacmanPosition() newFood = successorGameState.getFood() newGhostStates = successorGameState.getGhostStates() newScaredTimes = [ghostState.scaredTimer for ghostState in newGhostStates] "*** YOUR CODE HERE ***" minimumDistance = -1 for foodCoordinate in newFood.asList(): if (manhattanDistance(newPos, foodCoordinate) < minimumDistance) or (minimumDistance == -1): minimumDistance = float(manhattanDistance(newPos, foodCoordinate)) # getting closest food coordinates penalty = 0 for ghostCoordinate in successorGameState.getGhostPositions(): if manhattanDistance(newPos, ghostCoordinate) <= 1: penalty = penalty + 1 # penalizing pacman if it goes near ghost # print 'MD: ', minimumDistance, 1/minimumDistance return successorGameState.getScore() + (1 / minimumDistance) - penalty def scoreEvaluationFunction(currentGameState): """ This default evaluation function just returns the score of the state. The score is the same one displayed in the Pacman GUI. This evaluation function is meant for use with adversarial search agents (not reflex agents). """ return currentGameState.getScore() class MultiAgentSearchAgent(Agent): """ This class provides some common elements to all of your multi-agent searchers. Any methods defined here will be available to the MinimaxPacmanAgent, AlphaBetaPacmanAgent & ExpectimaxPacmanAgent. You *do not* need to make any changes here, but you can if you want to add functionality to all your adversarial search agents. Please do not remove anything, however. Note: this is an abstract class: one that should not be instantiated. It's only partially specified, and designed to be extended. Agent (game.py) is another abstract class. """ def __init__(self, evalFn = 'scoreEvaluationFunction', depth = '2'): self.index = 0 # Pacman is always agent index 0 self.evaluationFunction = util.lookup(evalFn, globals()) self.depth = int(depth) class MinimaxAgent(MultiAgentSearchAgent): """ Your minimax agent (question 2) """ def getAction(self, gameState): """ Returns the minimax action from the current gameState using self.depth and self.evaluationFunction. Here are some method calls that might be useful when implementing minimax. gameState.getLegalActions(agentIndex): Returns a list of legal actions for an agent agentIndex=0 means Pacman, ghosts are >= 1 gameState.generateSuccessor(agentIndex, action): Returns the successor game state after an agent takes an action gameState.getNumAgents(): Returns the total number of agents in the game """ "*** YOUR CODE HERE ***" # util.raiseNotDefined() def minimax (agent, depth, gameState): if (gameState.isWin() is True) or (gameState.isLose() is True) or (depth == self.depth): return self.evaluationFunction(gameState) elif agent == 0: utility=[] for state in gameState.getLegalActions(agent): utility.append(minimax(agent+1, depth, gameState.generateSuccessor(agent, state))) utility.sort() # print utility[-1] return utility[-1] # returning the highest value for pacman- max layer else: utility = [] if gameState.getNumAgents() == agent+1: # check if all ghost layers are over depth = depth + 1 for state in gameState.getLegalActions(agent): utility.append(minimax(0, depth, gameState.generateSuccessor(agent, state))) utility.sort() # print utility[0] return utility[0] # returning the lowest value for ghost- min layer else: for state in gameState.getLegalActions(agent): utility.append(minimax(agent+1, depth, gameState.generateSuccessor(agent, state))) utility.sort() # print utility[0] return utility[0] # returning the lowest value for ghost- min layer maxUtility = -99999 for state in gameState.getLegalActions(0): utility = minimax(1, 0, gameState.generateSuccessor(0, state)) if maxUtility < utility: maxUtility = utility action = state return action class AlphaBetaAgent(MultiAgentSearchAgent): """ Your minimax agent with alpha-beta pruning (question 3) """ def getAction(self, gameState): """ Returns the minimax action using self.depth and self.evaluationFunction """ "*** YOUR CODE HERE ***" # util.raiseNotDefined() def maxValue (agent, depth, gameState, alpha, beta): # max-value function as per the requirements doc utility = -99999 # using -99999 as negative infinity for state in gameState.getLegalActions(agent): utility = max(utility, alphabeta(agent + 1, depth, gameState.generateSuccessor(agent, state), alpha, beta)) if beta < utility: return utility alpha = max(utility, alpha) # print alpha return utility def minValue (agent, depth, gameState, alpha, beta): # min-value function as per the requirements doc utility = 99999 # using 99999 as infinity if gameState.getNumAgents() == agent + 1: # check if all ghost layers are over depth = depth + 1 for state in gameState.getLegalActions(agent): utility = min(utility, alphabeta(0, depth, gameState.generateSuccessor(agent, state), alpha, beta)) if alpha > utility: return utility beta = min(utility, beta) # print beta return utility else: for state in gameState.getLegalActions(agent): utility = min(utility, alphabeta(agent + 1, depth, gameState.generateSuccessor(agent, state), alpha, beta)) if alpha > utility: return utility beta = min(utility, beta) # print beta return utility def alphabeta (agent, depth, gameState, alpha, beta): if (gameState.isWin() is True) or (gameState.isLose() is True) or (depth == self.depth): return self.evaluationFunction(gameState) elif agent == 0: # maximizing for pacman return maxValue(agent, depth, gameState, alpha, beta) else: # minimizing for ghosts return minValue(agent, depth, gameState, alpha, beta) maxUtility = -99999 alpha = -99999 # initializing alpha as negative infinity beta = 99999 # initializing beta as infinity for state in gameState.getLegalActions(0): utility = alphabeta(1, 0, gameState.generateSuccessor(0, state), alpha, beta) if maxUtility < utility: maxUtility = utility action = state if maxUtility > beta: # print maxUtility return maxUtility alpha = max(maxUtility, alpha) # print alpha return action class ExpectimaxAgent(MultiAgentSearchAgent): """ Your expectimax agent (question 4) """ def getAction(self, gameState): """ Returns the expectimax action using self.depth and self.evaluationFunction All ghosts should be modeled as choosing uniformly at random from their legal moves. """ "*** YOUR CODE HERE ***" # util.raiseNotDefined() def expectimax (agent, depth, gameState): if (gameState.isWin() is True) or (gameState.isLose() is True) or (depth == self.depth): return self.evaluationFunction(gameState) elif agent == 0: utility=[] for state in gameState.getLegalActions(agent): utility.append(expectimax(agent+1, depth, gameState.generateSuccessor(agent, state))) utility.sort() # print utility[-1] return utility[-1] # returning the highest value for pacman- max layer else: utility = [] if gameState.getNumAgents() == agent+1: # check if all ghost layers are over depth = depth + 1 for state in gameState.getLegalActions(agent): utility.append(expectimax(0, depth, gameState.generateSuccessor(agent, state))) # print float(sum(utility)) / len(gameState.getLegalActions(agent)) return float(sum(utility)) / len(gameState.getLegalActions(agent)) else: for state in gameState.getLegalActions(agent): utility.append(expectimax(agent+1, depth, gameState.generateSuccessor(agent, state))) # print float(sum(utility)) / len(gameState.getLegalActions(agent)) return float(sum(utility)) / len(gameState.getLegalActions(agent)) maxUtility = -99999 for state in gameState.getLegalActions(0): utility = expectimax(1, 0, gameState.generateSuccessor(0, state)) if maxUtility < utility: maxUtility = utility action = state return action def betterEvaluationFunction(currentGameState): """ Your extreme ghost-hunting, pellet-nabbing, food-gobbling, unstoppable evaluation function (question 5). DESCRIPTION: <write something here so we know what you did> """ "*** YOUR CODE HERE ***" # util.raiseNotDefined() minimumDistance = -1 for foodCoordinate in currentGameState.getFood().asList(): if (manhattanDistance(currentGameState.getPacmanPosition(), foodCoordinate) < minimumDistance) or (minimumDistance == -1): minimumDistance = float(manhattanDistance(currentGameState.getPacmanPosition(), foodCoordinate)) # getting nearest food coordinates penalty=0 for ghostCoordinate in currentGameState.getGhostPositions(): if manhattanDistance(currentGameState.getPacmanPosition(), ghostCoordinate) <= 1: penalty = penalty + 1 # penalizing pacman if it gets near ghost powerPelletsRemaining = len(currentGameState.getCapsules()) # calculating number of power-pellets remaining # print 'MD: ', minimumDistance, 1/minimumDistance return currentGameState.getScore() + (1 / minimumDistance) - penalty - powerPelletsRemaining # Abbreviation better = betterEvaluationFunction
0f7009cea944b20b2da325ca707f4d43de276e2a
dd41219b26ecc24d9f7146b5c2e7252836bdd34a
/insect/ScrapyProject/almax/almax/spiders/tencent.py
840b5c1df59319bc84da29ce42902687661352c2
[]
no_license
theme716/small-routine
a9929a4537cb37d7b049413d365d7aa39b974ba9
48f62e1cfb5fc3cf5df9d274bb9313b3bfad2481
refs/heads/master
2020-03-24T16:43:35.784465
2018-07-30T09:54:27
2018-07-30T09:54:27
142,834,127
0
0
null
null
null
null
UTF-8
Python
false
false
1,380
py
# -*- coding: utf-8 -*- import scrapy from scrapy.linkextractors import LinkExtractor from scrapy.spiders import CrawlSpider, Rule from scrapy_redis.spiders import RedisCrawlSpider import re class TencentSpider(RedisCrawlSpider): name = 'tencent' allowed_domains = ['tencent.com'] # start_urls = ['http://www.baidu.com/'] redis_key = 'tencent_url' custom_settings = { 'ITEM_PIPELINES':{ 'scrapy_redis.pipelines.RedisPipeline': 999, # redis管道文件,自动把数据加载到redis }, 'CONCURRENT_REQUESTS': 50, 'CONCURRENT_ITEMS': 32, } rules = ( Rule(LinkExtractor(allow=(r'social.php', r'position.php'), tags=('a',), attrs=('href',)), follow=True), Rule(LinkExtractor(allow=(r'position_detail\.php\?id='), tags=('a',), attrs=('href',)), callback='parse_item', follow=False) ) def parse_item(self, response): title = response.xpath('//td[@id="sharetitle"]/text()').extract()[0] info = response.xpath('//tr[@class="c bottomline"]/td/text()').extract() location = info[0] ptype = info[1] number = info[2] number = re.search(r'\d+', number).group() item = { 'title': title, 'location': location, 'ptype': ptype, 'number': number } yield item
265c272cff2ea4eb148e441cb4ebdbc57480afe5
461e86491b5a3bdf4c6597c4615e869fc5c6ad9e
/mmdet-v2/tools/x2coco.py
1b9dc92707e89c3fb58b238ef6cfb9ff945441ec
[ "Apache-2.0" ]
permissive
li-phone/OpenDetection
0356d805f1332a1c0f4b29ade3712ea1343ead68
ac2e694f3c9c2cbb864d79d5322b442080451413
refs/heads/master
2023-03-17T11:08:51.945742
2021-03-18T09:32:10
2021-03-18T09:32:10
344,006,704
0
0
null
null
null
null
UTF-8
Python
false
false
12,226
py
import glob import os import json import uuid import pandas as pd import numpy as np import argparse import xml.etree.ElementTree as ET from PIL import Image from tqdm import tqdm try: from pandas import json_normalize except: from pandas.io.json import json_normalize class MultipleKVAction(argparse.Action): """ argparse action to split an argument into KEY=VALUE form on the first = and append to a dictionary. List options should be passed as comma separated values, i.e KEY=V1,V2,V3 """ def _parse_int_float_bool(self, val): try: return int(val) except ValueError: pass try: return float(val) except ValueError: pass if val.lower() in ['true', 'false']: return True if val.lower() == 'true' else False return val def __call__(self, parser, namespace, values, option_string=None): options = {} for kv in values: key, val = kv.split('=', maxsplit=1) val = [self._parse_int_float_bool(v) for v in val.split(',')] if len(val) == 1: val = val[0] options[key] = val setattr(namespace, self.dest, options) def _get_box(points): min_x = min_y = np.inf max_x = max_y = 0 for x, y in points: min_x = min(min_x, x) min_y = min(min_y, y) max_x = max(max_x, x) max_y = max(max_y, y) return [min_x, min_y, max_x - min_x, max_y - min_y] def read_xml(xml_path, img_dir): if isinstance(xml_path, str): xml_path = glob.glob(os.path.join(xml_path, '*.xml')) anns = [] for path in tqdm(xml_path): img_id = os.path.basename(path) img_id = img_id.split(".xml")[0] img_path = glob.glob(os.path.join(img_dir, img_id + ".*")) assert len(img_path) == 1 img_path = img_path[0] if not os.path.exists(img_path): print(img_path, "not exists") tree = ET.parse(path) root = tree.getroot() size = root.find('size') if size is not None: img_w = int(size.find('width').text) img_h = int(size.find('height').text) for obj in root.iter('object'): difficult = obj.find('difficult') if difficult is not None: iscrowd = int(difficult.text) else: iscrowd = 0 label_name = obj.find('name').text xmlbox = obj.find('bndbox') xmin, xmax, ymin, ymax = (float(xmlbox.find('xmin').text), float(xmlbox.find('xmax').text), float(xmlbox.find('ymin').text), float(xmlbox.find('ymax').text)) bbox = [xmin, ymin, xmax, ymax] ann = dict( file_name=os.path.basename(img_path), label=label_name, bbox=bbox, iscrowd=iscrowd, ) anns.append(ann) return json_normalize(anns) def read_json(anns): if isinstance(anns, str): if anns[-5:] == '.json': with open(anns) as fp: anns = json.load(fp) elif anns[-4:] == '.csv': anns = pd.read_csv(anns) if isinstance(anns, list): anns = json_normalize(anns) assert isinstance(anns, pd.DataFrame) if 'bbox' not in list(anns.columns): bbox = [] for i in range(anns.shape[0]): r = anns.iloc[i] b = [r['xmin'], r['ymin'], r['xmax'], r['ymax']] b = [float(_) for _ in b] bbox.append(b) anns['bbox'] = bbox if 'name' in list(anns.columns): anns = anns.rename(columns={'name': 'file_name'}) if 'defect_name' in list(anns.columns): anns = anns.rename(columns={'defect_name': 'label'}) elif 'category' in list(anns.columns): anns = anns.rename(columns={'category': 'label'}) return anns def read_PANDA(path): def __get_box__(obj, w, h): x1 = obj['tl']['x'] * w y1 = obj['tl']['y'] * h x2 = obj['br']['x'] * w y2 = obj['br']['y'] * h return [x1, y1, x2, y2] files = glob.glob(os.path.join(path, "*.json")) results, ignore_labels = [], set() for file in tqdm(files): collect_keys = { # person "fake person": "visible body", "ignore": "visible body", "people": "visible body", "crowd": "visible body", "person": "person", # car "fake": "car", "small car": "car", "midsize car": "car", "large car": "car", "bicycle": "car", "motorcycle": "car", "tricycle": "car", "electric car": "car", "baby carriage": "car", "vehicles": "car", "unsure": "car" } with open(file, 'r') as fp: annotations = json.load(fp) for fname, img_obj in annotations.items(): img_w, img_h = img_obj["image size"]["width"], img_obj["image size"]["height"] for obj in img_obj["objects list"]: if obj['category'] in collect_keys.keys(): rects = {} assert ('rect' in obj.keys() and 'rects' not in obj.keys()) or ( 'rect' not in obj.keys() and 'rects' in obj.keys()) if 'rect' in obj.keys(): rects = {collect_keys[obj['category']]: obj['rect']} elif 'rects' in obj.keys(): rects = obj['rects'] group_uuid = str(uuid.uuid4()).replace('-', '') for k, v in rects.items(): label, bbox = k, __get_box__(v, img_w, img_h) result = dict(ori_img_id=img_obj['image id'], file_name=fname) result['label'] = label result['bbox'] = bbox result['bbox_uuid'] = str(uuid.uuid4()).replace('-', '') result['group_uuid'] = group_uuid result['ori_info'] = obj results.append(result) else: raise Exception("No such ", obj['category']) results = json_normalize(results) print('-' * 32, 'bbox len=', len(results), '-' * 32) print(results.groupby(by='label').count()) return results def convert2coco(anns, save_name, img_dir, label2cat=None, bgcat=None, supercategory=None, **kwargs): assert isinstance(anns, pd.DataFrame) assert 'bbox' in list(anns.columns) and 'label' in list(anns.columns) and 'file_name' in list(anns.columns) if 'id' not in list(anns.columns): anns['id'] = list(range(anns.shape[0])) if label2cat is None: label2cat = list(np.array(anns['label'].unique())) if bgcat in label2cat: label2cat.remove(bgcat) label2cat = np.sort(label2cat) label2cat = list(label2cat) label2cat = {i + 1: v for i, v in enumerate(label2cat)} # not including background label # if bgcat is not None: # label2cat[0] = bgcat if supercategory is None: supercategory = [None] * (len(label2cat) + 1) # ------------------categories-----------------# coco = dict(info=None, license=None, categories=[], images=[], annotations=[]) label2cat = {v: k for k, v in label2cat.items()} coco['categories'] = [dict(name=str(k), id=v, supercategory=supercategory[v]) for k, v in label2cat.items()] # ------------------images-----------------# images = list(anns['file_name'].unique()) for i, v in tqdm(enumerate(images)): if os.path.exists(os.path.join(img_dir, v)): img_ = Image.open(os.path.join(img_dir, v)) height_, width_, _ = img_.height, img_.width, 3 else: row = anns.iloc[i] height_, width_, _ = int(row['image_height']), int(row['image_width']), 3 assert height_ is not None and width_ is not None keep_df = anns[anns['file_name'] == v] cats = list(keep_df['label'].unique()) has_object = 0 if len(cats) == 0 or (len(cats) == 1 and cats[0] == bgcat) else 1 coco['images'].append(dict(file_name=v, id=v, width=width_, height=height_, has_object=has_object)) image2id = {v['file_name']: v['id'] for i, v in enumerate(coco['images'])} # ------------------bboxes-----------------# annotations = anns.to_dict('records') for v in annotations: if v['label'] is None or v['label'] == bgcat or v['bbox'] is None: continue bbox = v['bbox'] area = (bbox[2] - bbox[0]) * (bbox[3] - bbox[1]) points = [[bbox[0], bbox[1]], [bbox[2], bbox[1]], [bbox[2], bbox[3]], [bbox[0], bbox[3]]] ann = dict( id=v['id'], image_id=image2id[v['file_name']], category_id=label2cat[v['label']], bbox=_get_box(points), iscrowd=0, ignore=0, area=area ) for k1, v1 in v.items(): if k1 not in ann: ann[k1] = v1 coco['annotations'].append(ann) save_name = save_name.replace('\\', '/') save_dir = os.path.dirname(save_name) if not os.path.exists(save_dir): os.makedirs(save_dir) with open(save_name, 'w', encoding='utf-8') as fp: json.dump(coco, fp) def imgdir2coco(coco_sample, save_name, img_dir): if isinstance(coco_sample, str): from pycocotools.coco import COCO coco_sample = COCO(coco_sample) coco_sample = coco_sample.dataset coco_test = dict( info=coco_sample['info'], license=coco_sample['license'], categories=coco_sample['categories'], images=[], annotations=[]) images = glob.glob(os.path.join(img_dir, '*')) for i, v in tqdm(enumerate(images)): file_name = v if os.path.exists(file_name): img_ = Image.open(file_name) height_, width_, _ = img_.height, img_.width, 3 else: height_, width_, _ = None, None, None dir_idx = len(os.path.dirname(img_dir)) + 1 file_name = file_name[dir_idx:] coco_test['images'].append(dict(file_name=file_name, id=i, width=width_, height=height_)) with open(save_name, 'w') as fp: json.dump(coco_test, fp) def help(): print(''' Transform other dataset format into coco format, including PANDA数据集, Pascal VOC xml注解, 天池检测json注解等\n ''') def parse_args(): help() parser = argparse.ArgumentParser(description='Transform other dataset format into coco format') parser.add_argument('--x', default=r"data/track/panda_round1_train_annos_202104/", help='x file/folder or original annotation file in test_img mode') parser.add_argument('--save_name', default=r"data/track/annotations/ori_instance_all_category.json", help='save coco filename') parser.add_argument('--img_dir', default=r"data/track/panda_round1_train_202104_part1", help='img_dir') parser.add_argument( '--options', nargs='+', action=MultipleKVAction, help='bgcat(background label), info=None, license=None' ) parser.add_argument( '--fmt', choices=['json', 'xml', 'test_dir', 'csv', 'PANDA'], default='PANDA', help='format type') args = parser.parse_args() return args def main(): args = parse_args() kwargs = {} if args.options is None else args.options if args.fmt == 'xml': anns = read_xml(args.x, args.img_dir) convert2coco(anns, args.save_name, args.img_dir, **kwargs) elif args.fmt == 'csv' or args.fmt == 'json': anns = read_json(args.x) convert2coco(anns, args.save_name, args.img_dir, **kwargs) elif args.fmt == 'PANDA': anns = read_PANDA(args.x) convert2coco(anns, args.save_name, args.img_dir, **kwargs) elif args.fmt == 'test_dir': imgdir2coco(args.x, args.save_name, args.img_dir) if __name__ == '__main__': main()
46bb2fe5f508db52e1505bbc7c0b071685cc9260
4cf07ca1f1532df2c8d096c2ecb12b46fbc2045c
/camera/camera_test.py
14eec59a7bcc6cccf28a0102eb2a7d479a290467
[]
no_license
ladybirds1996/binocular
2aee91f6c4886352160b99a643ea45b66f9a4b92
f9ea73abefe1d28e3b140f22cabee5ea7ca2b534
refs/heads/master
2022-11-10T22:52:40.515850
2020-07-06T11:58:44
2020-07-06T11:58:44
null
0
0
null
null
null
null
UTF-8
Python
false
false
866
py
import cv2 as cv import time import os AUTO = True # 自动拍照,或手动按s键拍照 INTERVAL = 5 # 自动拍照间隔 left_camera = cv.VideoCapture(0) right_camera = cv.VideoCapture(2) counter = 1 utc = time.time() left_folder = os.getcwd()+"/" # 拍照文件目录 right_folder = os.getcwd()+"/"# 拍照文件目录 def shot_left(pos, frame): global counter path = left_folder+pos + "_" + str(counter) + ".jpg" cv.imwrite(path, frame) print("snapshot saved into: " + path) def shot_right(pos,frame): global counter path = right_folder + pos + "_" + str(counter) + ".jpg" cv.imwrite(path, frame) print("snapshot saved into: " + path) ret, left_frame = left_camera.read() ret, right_frame = right_camera.read() shot_left("left", left_frame) shot_right("right", right_frame) left_camera.release() right_camera.release()
7ae1bf518091dd24930c86da8433978bb104da76
a83a08b3ffabfd7401db3d13045463b28a21c838
/Stacks Queues Tuples and Sets - E1Q2.py
05e196fdd6ff71329a883cc4ab01f8e5a7e8eed5
[]
no_license
BogomilaKatsarska/Python-Advanced-SoftUni
269eeeab28bba373bb22d1c30a8fef6a9105180e
49a5b93a57542fb09bc245dacd267e6d5733fd21
refs/heads/main
2023-08-19T13:08:23.201138
2021-10-24T16:23:54
2021-10-24T16:23:54
408,366,555
0
0
null
null
null
null
UTF-8
Python
false
false
558
py
from collections import deque arithmetic_expressions = { '+': lambda a, b: a+b, '-': lambda a, b: a-b, '*': lambda a, b: a*b, '/': lambda a, b: a//b, } characters = input().split() numbers = deque() for ch in characters: if ch in arithmetic_expressions: result = numbers.popleft() while numbers: number = numbers.popleft() result = arithmetic_expressions[ch] (result,number) numbers.append(result) else: numbers.append((int(ch))) print(numbers.popleft())
9b8a6eb476dda0f338c93d4d3fd71b98a3fa6131
0d0d858c8082255f7cb0027ff8201b2c8077ba80
/app.py
502e423cbae5d94a7bbf99c9d0850e7a7236bb55
[]
no_license
a2975667/QV-app
deaa61b7a27dd1b05dd5dfeb3827b35757ac693f
5b4f06a67ed6a603c5b67017d52a731ddff54163
refs/heads/master
2022-05-17T23:52:51.106880
2020-11-25T16:28:17
2020-11-25T16:28:17
218,550,686
0
0
null
2019-10-30T14:47:38
2019-10-30T14:47:33
null
UTF-8
Python
false
false
109
py
from server import app # import logging # log = logging.getLogger('werkzeug') # log.setLevel(logging.ERROR)
f9e931a08d616071d1583bae2d148106a3ce2da0
aa058f0f037476e0024205576164c505a5a7f90c
/.history/app_20190910145803.py
c8beade51124c7d8178a8762d007bc00e2ab8eba
[]
no_license
MorsChen/python-blog
12a2f17c133446cdae3132d41ddf111eab88f430
beb459febc011cb2b3ab6902c527e6681da16778
refs/heads/master
2022-10-10T04:20:04.303818
2019-09-11T10:44:37
2019-09-11T10:44:37
207,223,846
0
0
null
2022-09-16T18:09:43
2019-09-09T04:27:27
Python
UTF-8
Python
false
false
11,946
py
from flask import Flask, request, render_template, redirect, url_for, flash from flask_sqlalchemy import SQLAlchemy from flask_migrate import Migrate from flask_login import LoginManager, login_required, login_user, logout_user, UserMixin, current_user from werkzeug.security import check_password_hash, generate_password_hash from datetime import datetime, date from flask_wtf import FlaskForm from wtforms import StringField, PasswordField, SubmitField, ValidationError, TextField, TextAreaField, validators, BooleanField from wtforms.validators import DataRequired, Email, EqualTo, Length, InputRequired app = Flask(__name__) login = LoginManager(app) # app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///largeblogdb.db' POSTGRES = { 'user': "mors", 'pw': "1234", 'db': "blog", 'host': "localhost", 'port': 5432, } app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://%(user)s:%(pw)s@%(host)s:\ %(port)s/%(db)s' % POSTGRES app.secret_key = "Stupid Things" app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 0 db = SQLAlchemy(app) migrate = Migrate(app, db) class Users(UserMixin, db.Model): id = db.Column(db.Integer, primary_key=True) username = db.Column(db.String, nullable=False, unique=True) email = db.Column(db.String, nullable=False, unique=True) password = db.Column(db.String, nullable=False) is_admin = db.Column(db.Boolean, default = False) posts = db.relationship('Posts', backref='users', cascade="all, delete-orphan", lazy='dynamic') comments = db.relationship('Comments', backref='users', cascade="all, delete-orphan", lazy='dynamic') flags = db.relationship('Flag', backref='users', cascade="all, delete-orphan", lazy='dynamic') def set_pass(self, passw): self.password = generate_password_hash(passw) def check_pass(self, passw): return check_password_hash(self.password, passw) def set_admin(self): self.is_admin = True class Posts(db.Model): id = db.Column(db.Integer, primary_key=True) title = db.Column(db.String, nullable=False) body = db.Column(db.String, nullable=False) author = db.Column(db.Integer, db.ForeignKey('users.id'), nullable=False) created = db.Column(db.DateTime, nullable=False) updated = db.Column(db.DateTime) comments = db.relationship('Comments', backref='posts', cascade="all, delete-orphan", lazy='dynamic') views = db.Column(db.Integer, default = 0) flags = db.relationship('Flag', backref='posts',cascade="all, delete-orphan", lazy='dynamic') class Comments(db.Model): id = db.Column(db.Integer, primary_key=True) body = db.Column(db.String, nullable=False) author = db.Column(db.Integer, db.ForeignKey('users.id'), nullable=False) created = db.Column(db.DateTime, nullable=False) updated = db.Column(db.DateTime) post = db.Column(db.Integer, db.ForeignKey('posts.id'), nullable=False) class Flag (db.Model): id = db.Column(db.Integer, primary_key = True) author_id = db.Column(db.Integer, db.ForeignKey('users.id')) posts_id = db.Column(db.Integer, db.ForeignKey('posts.id')) db.create_all() @login.user_loader def load_user(id): return Users.query.get(int(id)) class Register(FlaskForm): username = StringField("User Name", validators=[DataRequired('Please input your username'), Length(min=3, max=20, message='username must have at least 3 chars and max 20 chars')]) email = StringField("Email Address", validators=[ DataRequired(), Email("Please input an appropriate email address")]) password = PasswordField("Password", validators=[ DataRequired(), EqualTo('confirm')]) confirm = StringField("Confirm", validators=[DataRequired()]) submit = SubmitField("Register") def validate_username(self, field): if Users.query.filter_by(username=field.data).first(): raise ValidationError("Your name has been register !!!") def validate_email(self, field): if Users.query.filter_by(email=field.data).first(): raise ValidationError("Your email has been register !!!") class Login(FlaskForm): email = StringField("Email Address", validators=[ DataRequired(), Email("Please input an appropriate email address")]) password = PasswordField("Password", validators=[DataRequired()]) submit = SubmitField("Login") class NewPost(FlaskForm): title = StringField("Blog Title", validators=[DataRequired('Please input blog title'), Length(min=3, max=255, message='title must have at least 3 chars and max 255 chars')]) body = StringField("Blog Body", validators=[DataRequired('Please input blog body'), Length(min=3, max=1000, message='username must have at least 3 chars and max 1000 chars')]) submit = SubmitField('Post') class NewComment(FlaskForm): body = StringField("Comment content", validators=[DataRequired('Please input blog body'), Length(min=3, max=1000, message='username must have at least 3 chars and max 1000 chars')]) submit = SubmitField('Comment') @app.route('/register', methods=['POST', 'GET']) def register(): form = Register() if request.method == 'POST': if form.validate_on_submit(): new_user = Users(username=form.username.data, email=form.email.data,) new_user.set_pass(form.password.data) db.session.add(new_user) db.session.commit() return redirect(url_for('main')) else: for field_name, errors in form.errors.items(): flash(errors) return redirect(url_for('register')) return render_template('register.html', form=form) @app.route('/login', methods=['POST', 'GET']) def login(): form = Login() if request.method == 'POST': check = Users.query.filter_by(email=form.email.data).first() if check: if check.check_pass(form.password.data): login_user(check) return redirect(url_for('main')) else: flash(['email address or password was wrong !!! ']) return redirect(url_for('login')) return render_template('login.html', form=form) @app.route('/profile', methods=['POST', 'GET']) @login_required def profile(): posts = Posts.query.filter_by(author=current_user.id).all() return render_template('profile.html', posts=posts) @app.route('/logout') @login_required def logout(): logout_user() return redirect(url_for('main')) @app.route('/newpost', methods=['POST', 'GET']) @login_required def newpost(): form = NewPost() if request.method == 'POST': newpost = Posts(title=form.title.data, body=form.body.data, created=datetime.now()) current_user.posts.append(newpost) db.session.add(newpost) db.session.commit() return redirect(url_for('main')) return render_template("createpost.html", form=form) @app.route('/editpost/<id>', methods=['POST', 'GET']) @login_required def editpost(id): form = NewPost() post = Posts.query.filter_by(id=id, author=current_user.id).first() if not post: flash([['you are not allow to edit the post']]) return redirect(url_for('main')) else: if request.method == 'POST': post.title = form.title.data post.body = form.body.data post.uploaded = datetime.now() db.session.commit() return redirect(url_for('single_post', id = id)) return render_template('editpost.html', form = form, post = post) @app.route('/singlepost/<id>', methods = ['POST', 'GET']) @login_required def single_post(id): post = Posts.query.filter_by(id = id).first() comments = post.comments.all() if post: form = NewComment() post.views += 1 db.session.commit() return render_template('single_post.html', post = post, comments = comments) @app.route('/posts/<id>/comments', methods=['POST', 'GET']) @login_required def new_comment(id): form = NewComment() post = Posts.query.filter_by(id=id).first() if request.method == 'POST': if form.validate_on_submit(): c = Comments(body=form.body.data, created=datetime.now(), # author = current_.user.id, # post = id, ) current_user.comments.append(c) # author post.comments.append(c) # post db.session.add(c) db.session.commit() return redirect(url_for('single_post', id = id)) else: for field_name, errors in form.errors.items(): flash(errors) return redirect(url_for('new_comment', id = id)) return render_template('new_comment.html', form=form, post=post) @app.route('/post/<pid>/editcomment/<cid>', methods = ['POST','GET']) @login_required def editcomment(pid,cid): form = NewComment() post = Posts.query.filter_by(id=pid).first() comment = Comments.query.filter_by(id=cid, author=current_user.id).first() if not comment: flash([['you are not allow to edit the comment']]) return redirect(url_for('single_post', id = pid)) else: if request.method == 'POST': print(comment) comment.body = form.body.data comment.uploaded = datetime.now() db.session.commit() print(comment.body) return redirect(url_for('single_post',id = pid)) return render_template('editcomment.html', form = form, comment = comment, post = post) @app.route("/posts/<id>/flag", methods=['POST', 'GET']) def report(id): post = Posts.query.filter_by(id=id).first() ref = request.args.get('ref') if post: existing_flags = Flag.query.filter_by(posts_id=id, author_id=current_user.id).first() if not existing_flags: flag = Flag(posts_id=id) current_user.flags.append(flag) db.session.add(flag) db.session.commit() return redirect(ref) print('check flags') return redirect(ref) return redirect(url_for('post')) @app.route('/admin', methods = ['POST','GET']) @login_required def admin_ctrl(): if current_user.is_admin: posts = Posts.query.all() flag = Flag.query.all() return render_template('admin.html', posts = posts, flag = flag) else: return redirect(url_for('main')) @app.route("/delete/<id>", methods=["GET"]) @login_required def delete(id): post = Posts.query.filter_by(id=id).first() if current_user.is_admin or Posts.query.filter_by(id=id, author=current_user.id).first(): db.session.delete(post) db.session.commit() flash("Post successfully deleted!", 'success') else: flash("You are not authorized to delete this post", "danger") return redirect(url_for("main")) @app.route("/delete-comment/<id>", methods=['POST', 'GET']) @login_required def del_comment(id): comment = Comments.query.filter_by(id=id).first() if current_user.is_admin or Comments.query.filter_by(id=id, author = current_user.id).first() : db.session.delete(comment) db.session.commit() flash("Comment deleted!") else: flash("You are not authorized to delete this comment", "danger") return redirect(url_for("single_post", id=comment.post)) @app.route('/') def main(): posts = Posts.query.all() comments = Comments.query.all() return render_template('home.html', posts=posts, comments=comments) if __name__ == "__main__": app.run(debug=True)
051191f47a1eb6259acc4e9023c04dfa174478ba
c609730a43596a2d3303f072fc97d9cf681fac7b
/cagey/carbuisness/carbuisness/spiders/yangche51_store.py
498baa839fb7aa718c992272cb8754694176551a
[]
no_license
sinnettluo/ChenProject
5403311c0c7b78c484145e16d692abff00d2a110
0e33ecf1683afb22f1deb4bd54294c41aed8a46b
refs/heads/master
2023-03-22T23:48:08.430178
2020-09-02T15:05:02
2020-09-02T15:05:02
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,409
py
# -*- coding: utf-8 -*- """ C2017-09 """ import scrapy from carbuisness.items import Yangche51StoreItem import time from scrapy.conf import settings from scrapy.mail import MailSender import logging import json import random import re import hashlib from hashlib import md5 website='yangche51_store' class CarSpider(scrapy.Spider): name=website start_urls=['http://p.yangche51.com/p-110100'] def __init__(self,**kwargs): #print "do init" super(CarSpider,self).__init__(**kwargs) self.mailer=MailSender.from_settings(settings) self.counts=0 self.carnum=80000 settings.set('CrawlCar_Num',self.carnum,priority='cmdline') settings.set('MONGODB_DB','carbusiness',priority='cmdline') settings.set('MONGODB_COLLECTION',website,priority='cmdline') def parse(self, response): areas = response.xpath('//div[@class="province"]/p/a') for area in areas: city = area.xpath('text()').extract_first() metadata = {"city" : city} url = area.xpath('@href').extract_first() yield scrapy.Request(url, meta={"metadata":metadata}, callback=self.parse_middle1, dont_filter=True) def parse_middle1(self, response): metadata = response.meta['metadata'] if response.xpath('//div[@id="points"]/text()'): points_base = response.xpath('//div[@id="points"]/text()').extract_first() points = points_base.split("|") for point_info in points: point = point_info.split(",") location = point[2] addmeta = {"location" : location} metadata = dict(metadata, **addmeta) url_info = point[3] url = "http://p.yangche51.com/info-" + url_info +".html" yield scrapy.Request(url, meta={"metadata":metadata}, callback=self.parse_info, dont_filter=True) def parse_info(self, response): metadata = response.meta['metadata'] item = Yangche51StoreItem() item['url'] = response.url item['website'] = website item['grabtime'] = time.strftime('%Y-%m-%d %X', time.localtime()) item['status'] = response.url item['city'] = metadata['city'] if response.xpath('//div[@class="shopName"]/p/text()'): item['shopname'] = response.xpath('//div[@class="shopName"]/p/text()').extract_first() else: item['shopname'] = "-" if response.xpath('//div[@class="shopName"]/h1/text()'): location = response.xpath('//div[@class="shopName"]/h1/text()').extract_first().strip() item['location'] = location item['shopno'] = re.findall("NO.(\d+)", location)[0] else: item['location'] = "-" item['shopno'] = "-" if response.xpath(u'//dt[contains(text(),"服务时间:")]/../dd/text()'): item['shop_hours'] = response.xpath(u'//dt[contains(text(),"服务时间:")]/../dd/text()').extract_first() else: item['shop_hours'] = "-" if response.xpath('//div[@class="shopInfo"]/input[@id="HiddenStrPhone"]/@value'): item['phone'] = response.xpath('//div[@class="shopInfo"]/input[@id="HiddenStrPhone"]/@value').extract_first() else: item['phone'] = "-" if response.xpath(u'//dt[contains(text(),"车型服务:")]/../dd//span[@class="percent"]/text()'): item['carservice'] = response.xpath(u'//dt[contains(text(),"车型服务:")]/../dd//span[@class="percent"]/text()').extract_first() else: item['carservice'] = "-" if response.xpath(u'//dt[contains(text(),"技术等级:")]/../dd//div[@class="techdiv"]/strong/text()'): item['skilllevel'] = response.xpath(u'//dt[contains(text(),"技术等级:")]/../dd//div[@class="techdiv"]/strong/text()').extract_first() else: item['skilllevel'] = "-" if response.xpath(u'//dt[contains(text(),"用户评价:")]/../dd/div[@class="nStar"]/span/a/text()'): num = response.xpath(u'//dt[contains(text(),"用户评价:")]/../dd/div[@class="nStar"]/span/a/text()').extract_first() item['commentnum'] = re.findall("\d+", num)[0] else: item['commentnum'] = "-" if response.xpath(u'//dt[contains(text(),"好 评 率 :")]/../dd/div[@class="shopLine"]/span/text()'): item['goodper'] = response.xpath(u'//dt[contains(text(),"好 评 率 :")]/../dd/div[@class="shopLine"]/span/text()').extract_first() else: item['goodper'] = "-" if response.xpath('//div[@class="shopScore"]/div/span[@class="zanGoal"][1]/a/text()'): userscore = response.xpath('//div[@class="shopScore"]/div/span[@class="zanGoal"][1]/a/text()').extract_first().strip() item['userscore'] = re.findall(u"(.*?)分", userscore)[0] else: item['userscore'] = "-" if response.xpath(u'//dl[@id="staScore"]/dt[contains(text(),"服务态度:")]/../dd[1]/div[@class="nStar"]/span/text()'): servicescore = response.xpath(u'//dl[@id="staScore"]/dt[contains(text(),"服务态度:")]/../dd[1]/div[@class="nStar"]/span/text()').extract_first() item['servicescore'] = re.findall(u"(.*?)分", servicescore)[0] else: item['servicescore'] = "-" if response.xpath(u'//dl[@id="staScore"]/dt[contains(text(),"店内环境:")]/../dd[2]/div[@class="nStar"]/span/text()'): envirscore = response.xpath(u'//dl[@id="staScore"]/dt[contains(text(),"店内环境:")]/../dd[2]/div[@class="nStar"]/span/text()').extract_first() item['envirscore'] = re.findall(u"(.*?)分", envirscore)[0] else: item['envirscore'] = "-" if response.xpath(u'//dl[@id="staScore"]/dt[contains(text(),"技术水平:")]/../dd[3]/div[@class="nStar"]/span/text()'): skillscore = response.xpath(u'//dl[@id="staScore"]/dt[contains(text(),"技术水平:")]/../dd[3]/div[@class="nStar"]/span/text()').extract_first() item['skillscore'] = re.findall(u"(.*?)分", skillscore)[0] else: item['skillscore'] = "-" yield item
8600a0b119b99c72e2471961e9933d25ea5443ad
44cae9fd5fba12f65dd753d0913eeb552419ac0e
/variaveis_tipos_ dados/ex52_seccao4.py
cacf04800ddbd68e07154f63185d15efa9d37241
[]
no_license
aluisq/Python
60edffa477f90bde67a76cc9306a8a5f39b82a4d
2c065a01ef0fb2099f89f440f5d5ae2658cad7da
refs/heads/master
2021-06-22T15:19:48.290092
2021-06-14T23:32:40
2021-06-14T23:32:40
214,283,256
0
0
null
null
null
null
UTF-8
Python
false
false
813
py
premio = float(input("Digite o valor do premio: ")) inv_prim = float(input("Digite o valor investido pelo primeiro ganhador: ")) inv_seg = float(input(("Digite o valor investido pelo segundo ganhador: "))) inv_ter = float(input("Digite o valor investido pelo terceiro ganhador: ")) inv_total = inv_prim + inv_seg + inv_ter print(f"Foi investido a quantia de R${inv_total}") payback = premio - inv_total payback_prim = round((inv_prim*payback)/inv_total,2) payback_seg = round((inv_seg*payback)/inv_total,2) payback_ter = round((inv_ter*payback)/inv_total,2) print(f""" O prêmio no valor de R${premio} reais foi dividido da seguinte maneira: [1] - O primeiro ganhador receberá: {payback_prim} [2] - O segundo ganhador receberá: {payback_seg} [3] - O terceiro ganhador receberá: {payback_ter} """)
b88cb5dd6c01509f7dfc14c802104c8148fd53e5
6dec0d44726699a5176b9d9a111f88f88228791f
/hugs/calc/met.py
1d7ce6183141fbff29207824fa2636084c242014
[ "BSD-3-Clause" ]
permissive
aeltanawy/setting_open_source_scipy2018
acf90ee4dc4288e02fde08beca33293625fd3f97
891e6a3f33c735e316ef8d6a0454667c5fb87eae
refs/heads/master
2020-03-22T18:16:50.331381
2018-07-10T15:47:20
2018-07-10T15:47:20
140,449,140
0
0
BSD-3-Clause
2018-07-10T16:21:38
2018-07-10T15:01:48
Python
UTF-8
Python
false
false
1,973
py
"""Contains a collection of basic calculations. These include: * wind components """ from __future__ import division import warnings import numpy as np def get_wind_speed(u, v): r"""Compute the wind speed from u and v-components. Parameters ---------- u : array_like Wind component in the X (East-West) direction v : array_like Wind component in the Y (North-South) direction Returns ------- wind speed: array_like The speed of the wind See Also -------- get_wind_components """ speed = np.sqrt(u * u + v * v) return speed def get_wind_dir(u, v): r"""Compute the wind direction from u and v-components. Parameters ---------- u : array_like Wind component in the X (East-West) direction v : array_like Wind component in the Y (North-South) direction Returns ------- wind direction: `pint.Quantity` The direction of the wind, specified as the direction from which it is blowing, with 0 being North. See Also -------- get_wind_components """ wdir = 90. - np.degrees(np.arctan2(-v, -u)) wdir[wdir < 0] += 360. return wdir def get_wind_components(speed, wdir): r"""Calculate the U, V wind vector components from the speed and direction. Parameters ---------- speed : array_like The wind speed (magnitude) wdir : array_like The wind direction, specified as the direction from which the wind is blowing, with 0 being North. Returns ------- u, v : tuple of array_like The wind components in the X (East-West) and Y (North-South) directions, respectively. See Also -------- get_wind_speed get_wind_dir """ if wdir > 360: warnings.warn('Wind direction greater than 360 degrees.') wdir = np.radians(wdir) u = -speed * np.sin(wdir) v = -speed * np.cos(wdir) return u, v
6c4f9df9a0f46e1c7f8c0a3938d9fbc41261c24b
27ce8bce9cbb218577f8cc4304b55a5e161b3f44
/movie.py
67d92c6d8a3519d5895d157f2942a1b5279e3d82
[]
no_license
powder-river/what-to-watch
5994dc5e3e4bca9dae01540915c04bd23e2ce46d
04055947be1c6f37c8506f6fb70b5d10d0b63e2a
refs/heads/master
2020-05-31T00:25:29.660778
2015-09-11T18:12:31
2015-09-11T18:12:31
42,245,343
0
0
null
null
null
null
UTF-8
Python
false
false
2,027
py
import csv import re class Movie: def __init__(self,title): self.title = title def movie_titles(self): array = [] film_titles = [] with open('movie_data/u.item.csv', encoding='latin_1') as f: reader = csv.reader(f,delimiter='|') # reader = csv.DictReader(f, fieldnames=['title', 'movie_title', '', '', 'something_else'], delimiter='|') for row in reader: array.append([row[0],row[1]]) for n in array: n[1] = re.sub(r'\(\d+\)', "", n[1]) film_titles.append(n) return film_titles def get_movie_id(self, title_list): for n in title_list: if self.title in n[1].lower(): return n[0] def get_movie_name(self,title_list): for n in title_list: if self.title in n[1].lower(): return n[1] # def movie_id(self): # with open('u.item', encoding='latin_1') as f: # reader = csv.DictReader(f, fieldnames=['movie_id', 'movie_title', '', '', 'something_else'], delimiter='|') # for row in reader: # print(row) def user_rating_list(self): array = [] with open("movie_data/u.data.csv") as w: movie_data = w.readlines() for i in movie_data: i = re.sub(r'[\\tn]', " ", i) i = i.split() array.append(i) return array def average_review(self,user_ratings): array = [] sum_array = [] for i in user_ratings: if i[1] == self.movie_id: array.append(i) for i in array: i = int(i[2]) sum_array.append(i) average = sum(sum_array)/len(array) return round(average,1) def movie_ratings(self, user_ratings, movie_id): for i in user_ratings: if i[1] == movie_id : print("User ID: {}, Rating: {}".format(i[0], i[2])) def the_nose(num): return num + 1
f2470d5f9803aad9c359fa5b8cde303b2227a772
db8719f397131c539a64dda0e8d6bc1998e8a34c
/model/denseASPP.py
86704944773b1bab34ab5b5a717d1f848e5417e9
[]
no_license
WambuguNM/DenseASPP-Tensorflow
adc5d958424399e6bf9acf580c0f152246646021
b11d8998ff55cb8690dbb9545c4bce1d53875d5a
refs/heads/master
2022-01-19T12:19:12.319567
2019-06-01T03:14:33
2019-06-01T03:14:33
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,394
py
#coding=utf-8 from __future__ import print_function from __future__ import division import tensorflow as tf import numpy as np import math import densenet denseASPP_layers_num = 5 denseASPP_rates = [3, 6, 12, 18, 24] CLASSES = densenet.CLASSES def denseASPP_layer(input, rate, n, train, keep_prob): ''' :param input: input feature map :param rate: dilatation rate :param n0: input channels :param n: output channels :return: ''' with tf.name_scope("denseASPP_layer"): input_shape = input.get_shape().as_list() n = tf.cast(n, tf.int32) weight_3 = densenet.weight_variable([3, 3, input_shape[-1], n]) #### input = densenet.bn_layer(input, train) input = tf.nn.relu(input) #### input = tf.nn.atrous_conv2d(input, weight_3, rate=rate, padding='SAME') input = tf.nn.dropout(input, keep_prob=keep_prob) return input def denseASPP_block(input, train, keep_prob): input_shape = input.get_shape().as_list() c0 = input_shape[-1] n = tf.cast(c0 / 8, tf.int32) # output feature maps of denseASPP layer n0 = tf.cast(c0 / 4, tf.int32) # input feature maps of denseASPP layer input_0 = input for layer in range(1, denseASPP_layers_num + 1): with tf.name_scope('denseASPP_layer_%d'%layer): input_shape = input.get_shape().as_list() #### input = densenet.bn_layer(input, train) input = tf.nn.relu(input) #### weight_1 = densenet.weight_variable([1, 1, input_shape[-1], n0]) input_compress = tf.nn.conv2d(input, weight_1, [1, 1, 1, 1], padding='SAME') output = denseASPP_layer(input_compress, denseASPP_rates[layer-1], n, train, keep_prob) input_0 = tf.concat([input_0, output], axis=-1) input = input_0 return input def denseASPP(input, keep_prob, train=True): with tf.name_scope("densenet_121"): input = densenet.densenet_121(input, keep_prob, train) with tf.name_scope("denseASPP"): #input = densenet.bn_layer(input, train) input = denseASPP_block(input, train, keep_prob) with tf.name_scope("segmentation"): input_shape = input.get_shape().as_list() #### #input = densenet.bn_layer(input, train) #input = tf.nn.relu(input) #### input = tf.nn.dropout(input, keep_prob=keep_prob) weight_1 = densenet.weight_variable([1, 1, input_shape[-1], CLASSES]) input = tf.nn.conv2d(input, weight_1, [1, 1, 1, 1], padding='SAME') with tf.name_scope("upsamling"): input_shape = input.get_shape().as_list() input = tf.image.resize_bilinear(input, [8*input_shape[1], 8*input_shape[2]]) ''' with tf.name_scope("upsampling"): input_shape = input.get_shape().as_list() #### input = densenet.bn_layer(input, train) #input = tf.nn.relu(input) #### weight_2_1 = densenet.weight_variable([2, 2, CLASSES, CLASSES]) input = tf.nn.conv2d_transpose(input, weight_2_1, [input_shape[0], input_shape[1] * 2, input_shape[2] * 2, input_shape[3]], [1, 2, 2, 1], padding='SAME') input_shape = input.get_shape().as_list() #### input = densenet.bn_layer(input, train) # input = tf.nn.relu(input) #### weight_2_2 = densenet.weight_variable([2, 2, CLASSES, CLASSES]) input = tf.nn.conv2d_transpose(input, weight_2_2, [input_shape[0], input_shape[1] * 2, input_shape[2] * 2, input_shape[3]], [1, 2, 2, 1], padding='SAME') input_shape = input.get_shape().as_list() #### # input = densenet.bn_layer(input, train) # input = tf.nn.relu(input) #### weight_2_3 = densenet.weight_variable([2, 2, CLASSES, CLASSES]) input = tf.nn.conv2d_transpose(input, weight_2_3, [input_shape[0], input_shape[1] * 2, input_shape[2] * 2, input_shape[3]], [1, 2, 2, 1], padding='SAME') ''' output = input return output if __name__ == '__main__': input = tf.constant(0.1, shape=[4, 128, 128, 3], dtype=tf.float32) denseASPP_output = denseASPP(input, 1.0, train=True) print(denseASPP_output)
6aecd4554691ac933284a45a3afa0ef34f41c6d8
6d79fa94ad9972af2d5af3a4dd7e72c20af9b8e9
/python_version/v2p.py
0c823e5957a3d3edbe40a19b121607684736cb6c
[]
no_license
Zieng/GIFer
5732eb8a5d375b59f212972e46c10c2bf26d74bc
b994e355c0d8189da13e9b3bb05c1a92bdda158c
refs/heads/master
2021-01-17T18:23:17.492782
2016-06-11T12:39:09
2016-06-11T12:39:09
59,804,799
0
0
null
null
null
null
UTF-8
Python
false
false
2,373
py
import cv2 import time import datetime class V2P(object): def __init__(self, filename, cut=False, st='00:00:00', et="00:00:00", rate=4): super(V2P, self).__init__() self.filename = filename self.cut = cut self.start = self.format_time_to_seconds(st) self.end = self.format_time_to_seconds(et) self.rate = rate self.frames = [] self.width = -1 self.height = -1 # print(cv2.__version__) def fetch(self): vidcap = cv2.VideoCapture(self.filename) # vidcap.set(0, self.start ) (major_ver, minor_ver, subminor_ver) = (cv2.__version__).split('.') if int(major_ver) < 3: fps = vidcap.get(cv2.cv.CV_CAP_PROP_FPS) self.width = vidcap.get(cv2.cv.CV_CAP_PROP_FRAME_WIDTH) self.height = vidcap.get(cv2.cv.CV_CAP_PROP_FRAME_HEIGHT) else: fps = vidcap.get(cv2.CAP_PROP_FPS) self.width = vidcap.get(cv2.CAP_PROP_FRAME_WIDTH) self.height = vidcap.get(cv2.CAP_PROP_FRAME_HEIGHT) success, image = vidcap.read() count = 0 imgCount = 0 start_frame = self.start * fps end_frame = self.end * fps success = True while success: success, image = vidcap.read() if self.cut: if count >= start_frame and count <= end_frame: if count % self.rate == 0: self.frames.append(image.astype(int)) imgCount += 1 else: if count % self.rate == 0: self.frames.append(image.astype(int)) imgCount += 1 count += 1 def write_frame(self, imgType='bmp'): count = 0 for x in self.frames: cv2.imwrite("./temp/frame%d.%s"%(count, imgType), x) count += 1 print("Frames saved at temp directories as "+imgType+" format.") def format_time_to_seconds(self, timeStr): """change H:M:S format time to seconds""" x = time.strptime(timeStr, '%H:%M:%S') return datetime.timedelta(hours=x.tm_hour, minutes=x.tm_min, seconds=x.tm_sec).total_seconds() if __name__ == '__main__': x = V2P("input.mp4", "00:01:30", "00:01:40") x.fetch() print(x.width) print(x.height) x.write_frame('jpg')
843d5566bde1a67a0ececa2115ddf6d6843e6bef
71969e3559d93efbd560265db5264b1d93ddaaa2
/manage.py
6cea5f9c99c6a6e50b382841e5ae990f20c6547e
[ "MIT" ]
permissive
morole/LSpider
e3cc28c4afd060325d12a622c587cb45841a6e6d
1dcdd820a8c0520cc8b3c851a5ba7bd06fcbf2f8
refs/heads/master
2023-06-20T21:58:43.979326
2021-08-02T02:36:45
2021-08-02T02:36:45
null
0
0
null
null
null
null
UTF-8
Python
false
false
805
py
#!/usr/bin/env python import os import sys if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "LSpider.settings") try: from django.core.management import execute_from_command_line except ImportError: # The above import may fail for some other reason. Ensure that the # issue is really that Django is missing to avoid masking other # exceptions on Python 2. try: import django except ImportError: raise ImportError( "Couldn't import Django. Are you sure it's installed and " "available on your PYTHONPATH environment variable? Did you " "forget to activate a virtual environment?" ) raise execute_from_command_line(sys.argv)
3113f4215e64cad3cba3cd9ab7636b8cddcedd02
1fab1995dd42862835ce36d7ba4df4c2a53b489a
/directory/migrations/0008_auto__chg_field_lbedirectoryacl_object.py
5f29c034cda4de49e24813ba64daa982110dd472
[]
no_license
OpenCSI/lbe
ad1d91e190d181d8ab127832fc451a1821df3353
11090425dd084684b1de0d8db48581a91cd6935d
refs/heads/master
2021-04-12T05:15:50.559779
2013-08-29T08:33:51
2013-08-29T08:33:51
5,721,114
2
0
null
null
null
null
UTF-8
Python
false
false
8,453
py
# -*- coding: utf-8 -*- import datetime from south.db import db from south.v2 import SchemaMigration from django.db import models class Migration(SchemaMigration): def forwards(self, orm): # Changing field 'LBEDirectoryACL.object' db.alter_column(u'directory_lbedirectoryacl', 'object_id', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['directory.LBEObjectTemplate'], null=True)) def backwards(self, orm): # Changing field 'LBEDirectoryACL.object' db.alter_column(u'directory_lbedirectoryacl', 'object_id', self.gf('django.db.models.fields.related.ForeignKey')(default=None, to=orm['directory.LBEObjectTemplate'])) models = { u'directory.lbeattribute': { 'Meta': {'object_name': 'LBEAttribute'}, 'displayName': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '64'}), 'errorMessage': ('django.db.models.fields.CharField', [], {'max_length': '64', 'blank': 'True'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '64'}), 'regex': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '64', 'blank': 'True'}) }, u'directory.lbeattributeinstance': { 'Meta': {'object_name': 'LBEAttributeInstance'}, 'attributeType': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}), 'defaultValue': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '64', 'null': 'True', 'blank': 'True'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'lbeAttribute': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['directory.LBEAttribute']"}), 'lbeObjectTemplate': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['directory.LBEObjectTemplate']"}), 'mandatory': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), 'multivalue': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), 'position': ('django.db.models.fields.IntegerField', [], {'default': '1'}), 'reference': ('django.db.models.fields.related.ForeignKey', [], {'default': 'None', 'to': u"orm['directory.LBEReference']", 'null': 'True', 'blank': 'True'}), 'secure': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), 'unique': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), 'widget': ('django.db.models.fields.CharField', [], {'default': "'forms.CharField'", 'max_length': '64'}), 'widgetArgs': ('django.db.models.fields.CharField', [], {'default': "'None'", 'max_length': '255'}) }, u'directory.lbedirectoryacl': { 'Meta': {'object_name': 'LBEDirectoryACL'}, 'attribut': ('django.db.models.fields.related.ForeignKey', [], {'default': 'None', 'to': u"orm['directory.LBEAttributeInstance']", 'null': 'True'}), 'condition': ('django.db.models.fields.CharField', [], {'max_length': '100'}), 'group': ('django.db.models.fields.related.ForeignKey', [], {'default': 'None', 'to': u"orm['directory.LBEGroup']", 'null': 'True', 'blank': 'True'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'object': ('django.db.models.fields.related.ForeignKey', [], {'default': 'None', 'to': u"orm['directory.LBEObjectTemplate']", 'null': 'True', 'blank': 'True'}), 'type': ('django.db.models.fields.CharField', [], {'default': "'select'", 'max_length': '10'}) }, u'directory.lbegroup': { 'Meta': {'object_name': 'LBEGroup'}, 'approval': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}), 'displayName': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '25'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'imported_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime(1970, 1, 1, 0, 0)'}), 'instanceNameAttribute': ('django.db.models.fields.related.ForeignKey', [], {'default': '1', 'to': u"orm['directory.LBEAttribute']"}), 'name': ('django.db.models.fields.CharField', [], {'default': "'groups'", 'max_length': '10'}), 'objectTemplate': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['directory.LBEObjectTemplate']"}), 'script': ('django.db.models.fields.related.ForeignKey', [], {'default': '1', 'to': u"orm['directory.LBEScript']"}), 'synced_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime(1970, 1, 1, 0, 0)'}), 'version': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}) }, u'directory.lbeobjecttemplate': { 'Meta': {'object_name': 'LBEObjectTemplate'}, 'approval': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}), 'displayName': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '32'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'imported_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime(1970, 1, 1, 0, 0)'}), 'instanceDisplayNameAttribute': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'instance_displayname_attribute'", 'to': u"orm['directory.LBEAttribute']"}), 'instanceNameAttribute': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'instance_name_attribute'", 'to': u"orm['directory.LBEAttribute']"}), 'instanceNameBeforeAttribute': ('django.db.models.fields.related.ForeignKey', [], {'default': 'None', 'related_name': "'instance_name_before_attribute'", 'null': 'True', 'blank': 'True', 'to': u"orm['directory.LBEAttribute']"}), 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '32'}), 'needReconciliationRDN': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), 'reconciliation_object_different_policy': ('django.db.models.fields.IntegerField', [], {'default': '0'}), 'reconciliation_object_missing_policy': ('django.db.models.fields.IntegerField', [], {'default': '0'}), 'script': ('django.db.models.fields.related.ForeignKey', [], {'default': '1', 'to': u"orm['directory.LBEScript']"}), 'synced_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime(1970, 1, 1, 0, 0)'}), 'version': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}) }, u'directory.lbereference': { 'Meta': {'object_name': 'LBEReference'}, u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'name': ('django.db.models.fields.CharField', [], {'max_length': '24'}), 'objectAttribute': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['directory.LBEAttribute']"}), 'objectTemplate': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['directory.LBEObjectTemplate']"}) }, u'directory.lbescript': { 'Meta': {'object_name': 'LBEScript'}, 'file': ('django.db.models.fields.CharField', [], {'max_length': '64'}), 'fileUpload': ('django.db.models.fields.files.FileField', [], {'max_length': '100'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'name': ('django.db.models.fields.CharField', [], {'max_length': '64'}) }, u'directory.log': { 'Meta': {'object_name': 'log'}, 'date': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'level': ('django.db.models.fields.CharField', [], {'max_length': '24'}), 'message': ('django.db.models.fields.TextField', [], {}), 'type': ('django.db.models.fields.CharField', [], {'max_length': '32'}) } } complete_apps = ['directory']
[ "cedj@cedj-laptop.(none)" ]
cedj@cedj-laptop.(none)
13430845d2ca525cb61a4dc18921f0c62413a541
8120de23544539547dc1dbfccc90fc2fa3ead4cf
/application.py
8efcbedcd890a5d999936db485c2137e0ff36889
[]
no_license
mxchhh/ApartmentFinder
fba1c51a0b7cc8bd5df8e673af24ca96d816f53f
26f72f561070918c476e049a7732ee42213df186
refs/heads/master
2022-03-01T09:03:59.291180
2017-07-01T05:34:59
2017-07-01T05:34:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
831
py
# Apartment_finder from ziroomFinder import getMetaDataFromZiroom from dataHandler import handle pages = set() apartment = dict() def getApartment(site_url): if len(apartment) >= 10: return # get Data room_metadata, internalLinks = getMetaDataFromZiroom(site_url) if not room_metadata and not internalLinks: return # handle Data print(room_metadata) filteredData = handle(room_metadata) print(filteredData) if filteredData: apartment[filteredData['room_name']] = filteredData # handle internalLinks for link in internalLinks: if link not in pages: pages.add(link) getApartment(link) getApartment('http://www.ziroom.com/z/vr/60224893.html') print('Apartment:') print(apartment) print('Pages:') print(pages)
13055531a6abceadd0cd1adfd7d71c02c8db10e2
94db0ec8ec5123aa7dad5980cad0b5acb9e59e97
/mysite/polls/models.py
9e9e2e5421eabe26e224e3b2316d644a4c9257e1
[]
no_license
declau/django-project
d64325c3fecda73a3d78019cab0d0c758ebba39b
6c11d59d57a1112520a73cd2507b3a01a292841b
refs/heads/master
2023-02-17T20:51:20.308351
2021-01-07T21:28:29
2021-01-07T21:28:29
327,728,604
0
0
null
null
null
null
UTF-8
Python
false
false
732
py
# -*- coding: utf-8 -*- from __future__ import unicode_literals import datetime from django.db import models from django.utils import timezone # Create your models here. class Question(models.Model): question_text = models.CharField(max_length=200) pub_date = models.DateTimeField('date published') def __str__(self): return self.question_text def was_published_recently(self): return self.pub_date >= timezone.now() - datetime.timedelta(days=1) class Choice(models.Model): question = models.ForeignKey(Question, on_delete=models.CASCADE) choice_text = models.CharField(max_length=200) votes = models.IntegerField(default=0) def __str__(self): return self.choice_text
2f62bfdeb52fe5869907175451209360faaa6b02
7411fc55b41eee02348cd7ce85f0a99f67bad1b7
/assyrianproject/settings.py
9db724d1ac0a83b1bfaec1d2e4bae63e1a1b8170
[]
no_license
bmackley/assyrianproject
6970ccd1a074b3bea6dd2371910b47eed2205fe5
5dd5a3b50fceb8c3eb7c345f5afadbfb7e3d177d
refs/heads/master
2021-03-24T10:15:57.156999
2015-10-27T19:58:24
2015-10-27T19:58:24
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,117
py
""" Django settings for assyrianproject project. For more information on this file, see https://docs.djangoproject.com/en/1.7/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.7/ref/settings/ """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os BASE_DIR = os.path.dirname(os.path.dirname(__file__)) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'n(!cj_2$jy6s3q!_m31j)==v7$24c_*6x1w06#z3e^f^a_rm!v' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True TEMPLATE_DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ) MIDDLEWARE_CLASSES = ( 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ) ROOT_URLCONF = 'assyrianproject.urls' WSGI_APPLICATION = 'assyrianproject.wsgi.application' # Database # https://docs.djangoproject.com/en/1.7/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Internationalization # https://docs.djangoproject.com/en/1.7/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.7/howto/static-files/ STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, "static/")
d0513fd6719c9056ff309f680012fb1037dad3a9
a1d30d970d885841aa3f4dfba64393007f683c2e
/maintest2.py
cb6ed0b6ec6dfbb889d29f1e618ae62569721bce
[]
no_license
gpforad0/test12
ca35c02266c86a3e386b2d01e5d7d5ba2787d1a2
55dddf9cd5b31aa172b9e83cde2b7be1a0fc5d71
refs/heads/master
2022-04-21T20:22:45.798574
2020-04-14T16:10:43
2020-04-14T16:10:43
255,658,296
0
0
null
null
null
null
UTF-8
Python
false
false
2,043
py
import subprocess username = None email = None repopath = None def set(): if (username and email and repopath)!=None: #a= input('go ahead ') cmd1 = ['git', 'config', '--global', 'user.name', f"{username}"] p1 = subprocess.run(cmd1, capture_output=True, shell=True, text=True) print(p1.stdout) #a = input('username done: ') cmd2 = ['git', 'config', '--global', 'user.email', f"{email}"] p2 = subprocess.run(cmd2, capture_output=True, shell=True, text=True) print(p2.stdout) #a = input('email done: ') cmd3 = ['git', 'init'] p3 = subprocess.run(cmd3, capture_output=True, shell=True, text=True) print(p3.stdout) #a = input('git init done: ') cmd4 = ['git', 'add', '.'] cmd41 = ['git', 'reset', 'maintest.py'] p4 = subprocess.run(cmd4, capture_output=True, shell=True, text=True) p41 = subprocess.run(cmd41, capture_output=True, shell=True, text=True) print(p4.stdout) print(p41.stdout) #a = input('git add . done: ') cmd5 = ['git', 'commit', '-m', "my first commit"] p5 = subprocess.run(cmd5, capture_output=True, shell=True, text=True) print(p5.stdout) #a = input('my first commint done: ') # cmd6 = ['get', 'status'] # p6 = subprocess.run(cmd6, capture_output=True, shell=True, text=True) # print(p6.stdout, p6.returncode) # # a = input('get status done: ') cmd7 = repopath.split() p7 = subprocess.run(cmd7, capture_output=True, shell=True, text=True) print(p7.stdout) #a = input('push link1 done: ') cmd8 = ['git', 'push', '-u', 'origin', 'master'] p8 = subprocess.run(cmd8, capture_output=True, shell=True, text=True) print(p8.stdout) a = input('push link2 done: ') else: print('Before you start you need to set your username,email and repopath') if __name__ == '__main__': set()
0e66980720fb1babebc395504c705fb5e85fa0c7
42975fb137a193664141cfd6eb95eb7d2e470bfc
/django_discount/migrations/0003_auto_20201202_0203.py
e95651c86c405048dc468f4882afc40370197890
[ "Apache-2.0" ]
permissive
Execut3/django-discount
cfbf8b8acb82fe05468c8d225df653341caae26c
36dd54d7e77f804500bfda38fc2f1c398bdc5e38
refs/heads/master
2023-01-24T16:10:45.090724
2020-12-02T02:57:01
2020-12-02T02:57:01
296,426,849
0
0
null
null
null
null
UTF-8
Python
false
false
1,610
py
# Generated by Django 2.2.5 on 2020-12-02 02:03 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('django_discount', '0002_auto_20201201_1425'), ] operations = [ migrations.AddField( model_name='discount', name='user', field=models.ForeignKey(blank=True, help_text="When empty discount will be used for everyone and should not be any duplicates. But if User set it can have discount's with different users and duplicate codes. And that specific discount will only be available for that user.", null=True, on_delete=django.db.models.deletion.CASCADE, related_name='discounts', to=settings.AUTH_USER_MODEL, verbose_name='Specific user to use this discount'), ), migrations.AlterField( model_name='discount', name='code', field=models.CharField(db_index=True, max_length=20, verbose_name='Code'), ), migrations.AlterField( model_name='discount', name='is_deleted', field=models.BooleanField(db_index=True, default=False, verbose_name='حذف شد'), ), migrations.AlterField( model_name='useddiscount', name='user', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='used_discounts', to=settings.AUTH_USER_MODEL, verbose_name='User who used discount code'), ), ]
4c0d2584c7012446ee243ae4866ec1d90ff14080
f1caea3c20f9f2142f0d64f5eec2785d0632b0f2
/lb3/p8.py
c5dbaa4777f56d3f9cfead86805112a85035a064
[]
no_license
MeetGandhi/Computing
6b47d10a1f81986d9532b5871aff39286fc326e4
66d87da5052b527950586a14444db782c363bb1e
refs/heads/master
2020-04-02T06:51:03.740737
2018-10-22T16:20:37
2018-10-22T16:20:37
154,171,309
0
0
null
null
null
null
UTF-8
Python
false
false
959
py
Python 2.7.3 (default, Jun 22 2015, 19:33:41) [GCC 4.6.3] on linux2 Type "copyright", "credits" or "license()" for more information. ==== No Subprocess ==== >>> tup=1,5,3,6 >>> tup[3] 6 >>> len(tup) 4 >>> fruit="banana" >>> print fruit[1] a >>> print[10] [10] >>> print fruit[10] Traceback (most recent call last): File "<pyshell#6>", line 1, in <module> print fruit[10] IndexError: string index out of range >>> print fruit[1.5] Traceback (most recent call last): File "<pyshell#7>", line 1, in <module> print fruit[1.5] TypeError: string indices must be integers, not float >>> print fruit[-2] #[length-2] n >>> print fruit[-100] Traceback (most recent call last): File "<pyshell#9>", line 1, in <module> print fruit[-100] IndexError: string index out of range >>> print fruit[len(fruit)] Traceback (most recent call last): File "<pyshell#10>", line 1, in <module> print fruit[len(fruit)] IndexError: string index out of range >>>
0a5e2afdb2c942e1e056d5bb0ed958e059eeff21
56de20f6054038f8ea574962cf87ffb4db7d31ee
/api/permissions.py
c6189c3ed9324d395a03960060380f476fe489d1
[]
no_license
docker581/api_final_yatube
e5797cac4f3c1be7b79f8f6f9d4d14778a419fe4
2f7d29cc1630c8950be0cd654704cd2dc3844570
refs/heads/master
2023-05-30T16:19:15.323579
2021-06-23T23:51:11
2021-06-23T23:51:11
323,850,968
0
0
null
null
null
null
UTF-8
Python
false
false
246
py
from rest_framework.permissions import BasePermission, SAFE_METHODS class IsOwnerOrReadOnly(BasePermission): def has_object_permission(self, request, view, obj): return (request.method in SAFE_METHODS or obj.author == request.user)
addaf7b5f4c9162502909af086845fc825a3b5df
b13c661160b4e371b746140e00a34bb9ab8f1db9
/lib/chardet/universaldetector.py
c822aa75c21b4b66089d7098bc60b7fc7e15ee8a
[]
no_license
SainXIII/spider_EX
6c3b8123123be53dde60988c71813b48da6502eb
f08b28d08147647ceb97eba2680ed441430f1941
refs/heads/master
2021-01-16T20:34:29.911720
2013-03-08T12:53:06
2013-03-08T12:53:06
9,028,713
1
1
null
null
null
null
UTF-8
Python
false
false
6,673
py
######################## BEGIN LICENSE BLOCK ######################## # The Original Code is Mozilla Universal charset detector code. # # The Initial Developer of the Original Code is # Netscape Communications Corporation. # Portions created by the Initial Developer are Copyright (C) 2001 # the Initial Developer. All Rights Reserved. # # Contributor(s): # Mark Pilgrim - port to Python # Shy Shalom - original C code # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA # 02110-1301 USA ######################### END LICENSE BLOCK ######################### import constants, sys from latin1prober import Latin1Prober # windows-1252 from mbcsgroupprober import MBCSGroupProber # multi-byte character sets from sbcsgroupprober import SBCSGroupProber # single-byte character sets from escprober import EscCharSetProber # ISO-2122, etc. import re import logging logger = logging.getLogger(__name__) MINIMUM_THRESHOLD = 0.20 ePureAscii = 0 eEscAscii = 1 eHighbyte = 2 class UniversalDetector: def __init__(self): self._highBitDetector = re.compile(r'[\x80-\xFF]') self._escDetector = re.compile(r'(\033|~{)') self._mEscCharSetProber = None self._mCharSetProbers = [] self.reset() def reset(self): self.result = {'encoding': None, 'confidence': 0.0} self.done = constants.False self._mStart = constants.True self._mGotData = constants.False self._mInputState = ePureAscii self._mLastChar = '' if self._mEscCharSetProber: self._mEscCharSetProber.reset() for prober in self._mCharSetProbers: prober.reset() def feed(self, aBuf): if self.done: return charmap = ( # EF BB BF UTF-8 with BOM ('\xEF\xBB\xBF', {'encoding': "UTF-8", 'confidence': 1.0}), # FF FE 00 00 UTF-32, little-endian BOM ('\xFF\xFE\x00\x00', {'encoding': "UTF-32LE", 'confidence': 1.0}), # 00 00 FE FF UTF-32, big-endian BOM ('\x00\x00\xFE\xFF', {'encoding': "UTF-32BE", 'confidence': 1.0}), # FE FF 00 00 UCS-4, unusual octet order BOM (3412) (u'\xFE\xFF\x00\x00', {'encoding': "X-ISO-10646-UCS-4-3412", 'confidence': 1.0}), # 00 00 FF FE UCS-4, unusual octet order BOM (2143) (u'\x00\x00\xFF\xFE', {'encoding': "X-ISO-10646-UCS-4-2143", 'confidence': 1.0}), # FF FE UTF-16, little endian BOM ('\xFF\xFE', {'encoding': "UTF-16LE", 'confidence': 1.0}), # FE FF UTF-16, big endian BOM ('\xFE\xFF', {'encoding': "UTF-16BE", 'confidence': 1.0}), ) aLen = len(aBuf) if not aLen: return if not self._mGotData: # If the data starts with BOM, we know it is UTF for chunk, result in charmap: if aBuf[:len(chunk)] == chunk: self.result = result break self._mGotData = constants.True if self.result['encoding'] and (self.result['confidence'] > 0.0): self.done = constants.True return if self._mInputState == ePureAscii: if self._highBitDetector.search(aBuf): self._mInputState = eHighbyte elif (self._mInputState == ePureAscii) and self._escDetector.search(self._mLastChar + aBuf): self._mInputState = eEscAscii self._mLastChar = aBuf[-1] if self._mInputState == eEscAscii: if not self._mEscCharSetProber: self._mEscCharSetProber = EscCharSetProber() if self._mEscCharSetProber.feed(aBuf) == constants.eFoundIt: self.result = {'encoding': self._mEscCharSetProber.get_charset_name(), 'confidence': self._mEscCharSetProber.get_confidence()} self.done = constants.True elif self._mInputState == eHighbyte: if not self._mCharSetProbers: self._mCharSetProbers = [MBCSGroupProber(), SBCSGroupProber(), Latin1Prober()] for prober in self._mCharSetProbers: try: if prober.feed(aBuf) == constants.eFoundIt: self.result = {'encoding': prober.get_charset_name(), 'confidence': prober.get_confidence()} self.done = constants.True break except (UnicodeDecodeError, UnicodeEncodeError), e: logger.exception(e) def close(self): if self.done: return if not self._mGotData: if constants._debug: sys.stderr.write('no data received!\n') return self.done = constants.True if self._mInputState == ePureAscii: self.result = {'encoding': 'ascii', 'confidence': 1.0} return self.result if self._mInputState == eHighbyte: proberConfidence = None maxProberConfidence = 0.0 maxProber = None for prober in self._mCharSetProbers: if not prober: continue proberConfidence = prober.get_confidence() if proberConfidence > maxProberConfidence: maxProberConfidence = proberConfidence maxProber = prober if maxProber and (maxProberConfidence > MINIMUM_THRESHOLD): self.result = {'encoding': maxProber.get_charset_name(), 'confidence': maxProber.get_confidence()} return self.result if constants._debug: sys.stderr.write('no probers hit minimum threshhold\n') for prober in self._mCharSetProbers[0].mProbers: if not prober: continue sys.stderr.write('%s confidence = %s\n' % \ (prober.get_charset_name(), \ prober.get_confidence()))
56d4418f49587b67483e6f6aea9910e364b96abc
5d174dec1d4bfa66c19922d46cd8149763124f50
/Nedelja 4/nedelja 4.py
bd34aa00e0c13623706691ba044793ede34c5038
[]
no_license
StevanCakic/ADIS-UDG
cc70c6ff7e5626f92dbb15a47461df84b5516ac2
ab24eb945227cd537629aad63610b5efe0002a74
refs/heads/master
2020-12-27T04:34:46.977337
2020-04-21T11:12:54
2020-04-21T11:12:54
237,767,260
1
0
null
null
null
null
UTF-8
Python
false
false
2,698
py
# Dictionaries my_dict = {"ime":"Marko", "prezime":"Markovic", "godine":30} print(my_dict["ime"]) print(my_dict.get("adresa", "Default vrijednost")) print(my_dict) for key in my_dict: print(key) # Testirati metode ''' Napisati funkciju koja omogucava korisniku da unese n studenata (n parametar funkcije). Svaki student se predstavlja kao dictionary oblika: {ime, prezime, godina_studija, prosjek}. Funkcija treba da vrati listu studenata. ''' def unos_studenata(broj_studenata): lista_studenata = [] for i in range(0, broj_studenata): ime = input(f"Unesite ime {i+1}. studenta:") prezime = input(f"Unesite prezime {i+1}. studenta:") godina_studija = int(input(f"Unesite godinu studija {i+1}. studenta:")) prosjek = float(input(f"Unesite prosjek {i+1}. studenta:")) lista_studenata.append({"ime":ime, "prezime": prezime, "godina_studija":godina_studija, "prosjek":prosjek}) return lista_studenata #broj_studenata = int(input("Unesite broj studenata:")) #lista_studenata = unos_studenata(broj_studenata).copy() #print(lista_studenata) ''' Napisati funkciju koja izdvaja one studente ciji je prosjek veci od zadatog. Studenti i prosjek se zadaju kao parametari funkcije. Funkcija treba da vrati studente koji zadovoljavaju zadati uslov. Funkcije testirati ''' def studenti_koji_zadovoljavaju_prosjek(studenti, prosjek): studenti_sa_zadovoljavajucim_prosjekom = [] for student in studenti: if student["prosjek"] > prosjek: studenti_sa_zadovoljavajucim_prosjekom.append(student) return studenti_sa_zadovoljavajucim_prosjekom # print(studenti_koji_zadovoljavaju_prosjek(lista_studenata, 9)) # Napomena: dictionary = {"ime": "A", "prezime": "B"} if not "adresa" in dictionary: dictionary["adresa"] = "Default" # Skupovi skup1 = {1,2,3} skup1.add(4) skup2 = {2,4,5} print(skup1.intersection(skup2)) # List comprehension squares = [i**2 for i in range(1, 101)] print(squares) movies = ['The Godfather', 'The Wizard of Oz', 'Citizen Kane', 'The Shawshank Redemption', 'Pulp Fiction'] movies_start_with_the = [movie.upper() for movie in movies if movie.startswith("The")] print(movies_start_with_the) movies = [('The Godfather', 1972, "crime"), ('The Wizard of Oz', 1939, "drama"), ('Citizen Kane', 1941, "drama"), ('The Shawshank Redemption', 1994, "drama"), ('Pulp Fiction', 1994, "triller")] # Izdvojiti sve drama filmove (samo title) koji su snimljeni # izmedju 1990 i 2000 godine a = [title for (title, year, genre) in movies if 1990 <= year <= 2000 and genre=="drama"] # Files
f636bb6debfc8295e52665b86f20a2562cafb926
0738183e6ef9aad86c9542db2c01279ef966ef1f
/todo.py
eb71aa9f5ffce6ed0acce74cd568ba03e0a00721
[]
no_license
MichaelAquilina/todolist
0e01d2d0711e3d8784fde0db03066409c4876a05
bbda21920c5284a2805c58daf7ffc5cc8de04c85
refs/heads/master
2016-09-03T07:08:20.214285
2014-12-26T19:24:57
2014-12-26T19:24:57
null
0
0
null
null
null
null
UTF-8
Python
false
false
5,433
py
#! /usr/bin/python3m """ Simple Todolist manager for the command line that allows you to view, add or mark tasks as complete Author: Michael Aquilina 2014 """ import re import os from collections import defaultdict # TODO: Cleanup code # Convert to class # Add color terminal support # Better Error Handling # Allow deleting and inserting at 'all' selection def show_todo_list(task_list, sections): def show_section(section): for index, task in enumerate(task_list.get(section, [])): print('[%d] %s' % (index, task)) # Always display default first and don't show a heading if 'default' in sections: show_section('default') # Follow the order specified in the command line for section in sections: if section != 'default': print('> %s' % section) show_section(section) def write_todo(task_list, file_path): """ Writes a todolist formatted dictionary to file for reading at a later stage. task_list dictionaries passed should contain lists of todo items organised by their section name. """ with open(file_path, 'w') as f: # Always write the default list on the top for task in task_list['default']: f.write('* %s\n' % task) # Grab the list of all other sections others = task_list.keys() for section in others: if section != 'default' and len(task_list[section]) > 0: f.write('\n') f.write('>%s\n' % section) for task in task_list[section]: f.write('* %s\n' % task) def read_todo(file_path): """ Returns a dictionary of lists organised by their section. A 'default' section is always available in the dictionary but does not guarantee the list to have any contents """ task_list = defaultdict(list) if not os.path.exists(file_path): return task_list # Read all data at one go for speed with open(file_path, 'r') as f: buffer = f.readlines() current_section = 'default' for line in buffer: if line.startswith('>'): # Clean up section names current_section = line[1:] current_section = current_section.strip() current_section = current_section.lower() task_list[current_section] = [] else: # Attempt to match m = re.match(r'\* (?P<data>.*)', line) if m: task_data = m.group('data') task_list[current_section].append(task_data) return task_list def main(args): # Begin Processing Here tasks = read_todo(todo_path) # If all specified then show all sections except completed if 'all' in args.sections: sections = set(tasks.keys()) - {'completed'} else: sections = args.sections if args.edit: import subprocess editor = os.environ.get('EDITOR', 'vim') subprocess.call([editor, todo_path]) return if args.list: print(' '.join(tasks.keys())) return # Command Line Options if args.mark_complete: if len(sections) > 1: print('ERROR: Cannot mark task when specifying multiple sections') else: task_section = tasks[sections[0]] for index in args.mark_complete: if index < len(task_section): target = task_section[index] print('NOTE: Marked "%s" as complete' % target) tasks['completed'].append(task_section[index]) task_section[index] = None else: print('ERROR: Invalid Index specified for "%s"' % sections[0]) tasks[sections[0]] = [task for task in task_section if task is not None] write_todo(tasks, todo_path) elif args.add_task: if len(sections) > 1: print('ERROR: Cannot add task when specifying multiple sections') else: task_section = tasks[sections[0]] task_section.append(' '.join(args.add_task)) write_todo(tasks, todo_path) elif args.delete: if 'all' in args.sections: print('ERROR: Cannot delete all!') else: print('Deleted sections: %s' % sections) for i in range(len(sections)): del tasks[sections[i]] write_todo(tasks, todo_path) sections = ['default'] print('Available: %s' % sorted(list(tasks.keys()))) show_todo_list(tasks, sections) if __name__ == '__main__': import argparse todo_path = os.path.expanduser('~/todo.md') parser = argparse.ArgumentParser(description='Simple Todo list manager written in Python') parser.add_argument('sections', default=['default'], nargs='*') parser.add_argument('-m', '--mark-complete', type=int, nargs='+', help='Marks a specified task as complete') parser.add_argument('-a', '--add-task', type=str, nargs='+', help='Adds a task to a todo list') parser.add_argument('-d', '--delete', action='store_true', help='Deletes the section specified') parser.add_argument('-l', '--list', action='store_true', help='List available sections') parser.add_argument('-e', '--edit', action='store_true', help='Edit the todo list with your default editor') main(parser.parse_args())
576e1a47c8ad60d389eab51896d31b10a3e2f261
48b9ad74000eadfefde0e47ba1335ad0523c2570
/allure生成报告.py
f79ff2a2c6d6a22d3714dbb92a37a25c82b6ca66
[]
no_license
bian-py/auto_wushiyin
e8c51d5a2dc6883ec5411db59d67ba49b0a7e171
6d86087057d745a9ce23401fdb47b338ed44dc11
refs/heads/main
2023-03-19T01:16:42.571088
2021-02-24T02:46:48
2021-02-24T02:46:48
341,464,419
0
0
null
null
null
null
UTF-8
Python
false
false
71
py
import os os.system("allure generate ./temp -o ./report --clean ")
e5b742ab11bb3c20f4515313eeee5c3dc1ec5856
a620793a2bf02a0bfe9e5c397bbf93264b52b397
/e24.py
50f108ebbb28650dc102e3cb05ecd341efaf03b9
[]
no_license
nstudenski/project_euler
6a80c3ea2df4a41d2f3b66224f967621ed6f7fd3
fac4ba0882151fc2d2dba8043ed50c3f42ff9ef2
refs/heads/master
2020-09-16T20:58:49.465267
2018-10-19T18:59:31
2018-10-19T18:59:31
94,487,831
0
0
null
2017-06-16T00:00:41
2017-06-15T23:56:20
null
UTF-8
Python
false
false
2,278
py
## runs in ~44 seconds #import time #start = time.time() #ls = ["0","1","2","3","4","5","6","7","8","9"] #result = [] #for a in ls: # for b in ls: # if b != a: # for c in ls: # if (c != b) & (c != a): # for d in ls: # if (d != c) & (d != b) & (d != a): # for e in ls: # if (e != d) & (e != c) & (e != b) & (e != a): # for f in ls: # if (f != e) & (f != d) & (f != c) & (f != b) & (f != a): # for g in ls: # if (g != f) & (g != e) & (g != d) & (g != c) & (g != b) & (g != a): # for h in ls: # if (h != g) & (h != f) & (h != e) & (h != d) & (h != c) & (h != b) & (h != a): # for i in ls: # if (i != h) & (i != g) & (i != f) & (i != e) & (i != d) & (i != c) & (i != b) & (i != a): # for j in ls: # if (j != i) & (j != h) & (j != g) & (j != f) & (j != e) & (j != d) & (j != c) & (j != b) & (j != a): # result.append(a+b+c+d+e+f+g+h+i+j) #print(time.time()-start) # # finds answer of 2783915460 # import time begin = time.time() import math goal = 999999 def func(start,i,string,rem): new = start + i * math.factorial(len(rem)-1) if new < goal: string = func(start,i+1,string,rem) if new > goal: string = string + rem[i-1] start = start + (i-1) * math.factorial(len(rem)-1) rem.remove(rem[i-1]) string = func(start,0,string,rem) if new == goal: for i in range(len(rem)): string = string + rem[-(i+1)] return string start = 0 i = 0 n = 9 string = "" rem = ["0","1","2","3","4","5","6","7","8","9"] print(func(start,i,string,rem)) print(time.time()-begin)
62a623c3b026eb915ebbe59d7275423aa5c2bcba
8278cd4a4ba9d2f83118a2c0479390c2739e1437
/net.py
14e81ea727e5490c5c199b88a6b7af651e69bded
[]
no_license
tanikawa04/chord-suggester
c5d2c8161b198f97b0f29da956615550cb278737
b849f7018da506e773817e2907b4d892c4605a5f
refs/heads/master
2021-05-06T03:52:31.160327
2017-12-20T15:24:24
2017-12-20T15:24:24
114,889,425
1
0
null
null
null
null
UTF-8
Python
false
false
710
py
# coding: utf-8 import chainer import chainer.functions as F import chainer.links as L class ChordNet(chainer.Chain): def __init__(self, n_vocab, n_units): super(ChordNet, self).__init__() with self.init_scope(): self.embed = L.EmbedID(n_vocab, n_units, ignore_label=-1) self.l1 = L.LSTM(n_units, n_units) self.l2 = L.LSTM(n_units, n_units) self.l3 = L.Linear(n_units, n_vocab) def __call__(self, x): h = self.embed(x) h = self.l1(F.dropout(h)) h = self.l2(F.dropout(h)) h = self.l3(F.dropout(h)) return h def reset_state(self): self.l1.reset_state() self.l2.reset_state()
421b66f6ef3e7e7d83145d3019251639dc42dda0
fe8d12b82007523819e6183dcbd685509a1e6fd7
/core/production.py
c6c23f4450ac1d015127078f840de4404b2ef34c
[]
no_license
flavien-hugs/kozondjango
a9a4187da43a1ac78df6f0fca819edfa834e1a17
56942bf0a839576848689bb853fead9d04aef892
refs/heads/master
2023-07-06T15:58:09.300856
2023-06-25T18:23:23
2023-06-25T18:23:23
270,191,214
2
1
null
2023-06-25T18:23:24
2020-06-07T04:25:32
HTML
UTF-8
Python
false
false
405
py
# -*- coding: utf-8 -*- # core/production.py import dj_database_url from core.settings import * DEBUG = TEMPLATE_DEBUG = False # Parse database configuration from $DATABASE_URL DATABASES['default'] = dj_database_url.config() # Add configuration for static files storage using whitenoise ALLOWED_HOSTS = ['*'] SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') USE_X_FORWARDED_HOST = True
95ace5649c9e4e1037fc032d8c89f24fee6575ce
76c9fbecb4db3694a3d00e4e8aeb9a0985500fe0
/Day6/day6_p2.py
35a2a0beeb2ffbaf5a49b03214c474d05679b48f
[]
no_license
parkour86/advent-of-code-2020
e60215570af2d759815ada91a0fdde8cb0e6cbd1
6ad5206ac35fb8ab7c11808f346aee47b8ad3717
refs/heads/main
2023-01-30T21:48:15.455026
2020-12-14T04:30:08
2020-12-14T04:30:08
318,960,426
0
0
null
null
null
null
UTF-8
Python
false
false
716
py
with open('input.txt', 'r+') as file: input = file.read().split('\n') cnt = 0 newInput = [] for line in input: if line != '': newInput.append(line) else: flag = True if len(newInput) > 1: intercept = newInput[0] for i in range(len(newInput)): for j in range(1+i,len(newInput)): intercept = set(intercept).intersection(newInput[j]) if intercept and flag: flag = True else: flag = False if flag: cnt += len(intercept) else: cnt += len(newInput[0]) newInput.clear() print(cnt)
88adb50b6bbf3a1e70bc9d98be7d49fbaea570ee
d9d24332276b507feb005b934d228c24c5251db0
/1xxx/1001.py
98a17a43ba6342384dd613c2ca6f7ce3374ff2de
[]
no_license
akageun/baekjoon_py
b1b1920d30e76c91ef013a6264dab4bc29cf27b5
322c78c5936884f32c385e5cf8001542b798c8d5
refs/heads/master
2020-03-23T22:23:36.665665
2018-07-28T07:17:57
2018-07-28T07:17:57
142,173,209
0
0
null
null
null
null
UTF-8
Python
false
false
390
py
###################### # # - 문제 : 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. # - URL : https://www.acmicpc.net/problem/1001 # ###################### def subtraction(first_num, sec_num): return first_num - sec_num if __name__ == "__main__": arr = input().strip().split(" ") print(subtraction(int(arr[0]), int(arr[1])))
263c1e776721aa7f0e3969bc631af9841f29adf1
91da16548ec2a7826c33d52cee2087ec42476277
/createcps.py
e45a2476bbe8f92824a5d816fa18634f63b14484
[]
no_license
andersonfrailey/cpstaxunits
ec319413fff6745ee334d2e9e171b29a1525c2c2
ca28e2f6fc9108644bcb089bc245ee729e1e0f68
refs/heads/master
2021-07-02T16:45:46.510937
2020-07-31T22:51:11
2020-07-31T22:51:11
101,076,555
1
1
null
2018-10-10T17:13:22
2017-08-22T15:12:45
Python
UTF-8
Python
false
false
8,639
py
""" Script to run all files that create the CPS file """ import pandas as pd from cpsrets import Returns from adj_filst import adjfilst from assemble import assemble from topcoding import topcoding from imputetobit import imputation from targets import targets from blankslate import blankslate from merge_benefits import BenefitMerge import cpsmar_2013 import cpsmar_2014 import cpsmar_2015 import os from dask import compute, delayed def createcps(): """ Logic for creating the CPS tax unit file """ # first check for the presense of the CPS files with benefits merged cps13_merged = os.path.isfile('data/cps_2013_aug.csv') cps14_merged = os.path.isfile('data/cps_2014_aug.csv') cps15_merged = os.path.isfile('data/cps_2015_aug.csv') # if the CSV CPS files are present, use those for the rest of the script if cps13_merged and cps14_merged and cps15_merged: print('Reading Data') lazy_cps13 = delayed(pd.read_csv)('data/cps_2013_aug.csv') lazy_cps14 = delayed(pd.read_csv)('data/cps_2014_aug.csv') lazy_cps15 = delayed(pd.read_csv)('data/cps_2015_aug.csv') lazy_read = [lazy_cps13, lazy_cps14, lazy_cps15] cps13, cps14, cps15 = compute(*lazy_read) else: cps13_raw = os.path.isfile('data/cpsmar2013.csv') cps14_raw = os.path.isfile('data/cpsmar2014.csv') cps15_raw = os.path.isfile('data/cpamar2015.csv') # if raw files are available, simply read them in if cps13_raw and cps14_raw and cps15_raw: lazy_cps13 = pd.read_csv('data/cpsmar2013.csv') lazy_cps14 = pd.read_csv('data/cpsmar2014.csv') lazy_cps15 = pd.read_csv('data/cpsmar2015.csv') lazy_read = [lazy_cps13, lazy_cps14, lazy_cps15] raw_13, raw_14, raw_15 = compute(*lazy_read) # otherwise create the raw cps files from the .DAT files else: cps13_dat = os.path.isfile('data/asec2013_pubuse.dat') dat_2014_path = 'data/asec2014_pubuse_tax_fix_5x8_2017.dat' cps14_dat = os.path.isfile(dat_2014_path) cps15_dat = os.path.isfile('data/asec2015_pubuse.dat') if cps13_dat and cps14_dat and cps15_dat: print('Converting CPS Files from .DAT to .CSV') # stage creation scripts to run in parallel path_2013 = 'data/asec2013_pubuse.dat' raw_13 = cpsmar_2013.create_cps(path_2013) path_2014 = 'data/asec2014_pubuse_tax_fix_5x8_2017.dat' raw_14 = cpsmar_2014.create_cps(path_2014) path_2015 = 'data/asec2015_pubuse.dat' raw_15 = cpsmar_2015.create_cps(path_2015) else: msg = ('CPS file(s) not found.' + 'You must have either CSV files for the 2013, 2014,' + ' and 2015 CPS files augmented with C-TAM imputed' + ' benefits or the raw DAT formatted versions of the' + ' CPS, availablefrom NBER') raise IOError(msg) # merge C-TAM imputed benefits print('Merging Benefits') cps13, cps14, cps15 = BenefitMerge(raw_13, raw_14, raw_15) print('Creating Tax Units for 2013 CPS') rets2013 = Returns(cps13, 2013) taxunits13 = rets2013.computation() print('Creating Tax Units for 2014 CPS') rets2014 = Returns(cps14, 2014) taxunits14 = rets2014.computation() print('Creating Tax Units for 2015 CPS') rets2015 = Returns(cps15, 2015) taxunits15 = rets2015.computation() del cps13, cps14, cps15 print('Adjusting Files') lazy_taxunits13_adj = delayed(adjfilst)(taxunits13) lazy_taxunits14_adj = delayed(adjfilst)(taxunits14) lazy_taxunits15_adj = delayed(adjfilst)(taxunits15) lazy_adjustments = [lazy_taxunits13_adj, lazy_taxunits14_adj, lazy_taxunits15_adj] taxunits13_adj, taxunits14_adj, taxunits15_adj = compute(*lazy_adjustments) taxunits13_adj.to_csv('taxunits13.csv', index=None) taxunits14_adj.to_csv('taxunits14.csv', index=None) taxunits15_adj.to_csv('taxunits15.csv', index=None) del taxunits13, taxunits14, taxunits15 print('Assembling File') full_taxunits = assemble(taxunits13_adj, taxunits14_adj, taxunits15_adj) full_taxunits.to_csv('fullunits.csv', index=None) del taxunits13_adj, taxunits14_adj, taxunits15_adj print('Adjusting for Top Coding') cps_tc = topcoding(full_taxunits) cps_tc.to_csv('topcoding.csv', index=None) del full_taxunits print('Imputing Deductions') # read in beta coefficients used in imputations logit_betas = pd.read_csv('data/logit_betas.csv', index_col=0) ols_betas = pd.read_csv('data/ols_betas.csv', index_col=0) tobit_betas = pd.read_csv('data/tobit_betas.csv', index_col=0) # impute cps_v2 = imputation(cps_tc, logit_betas, ols_betas, tobit_betas) cps_v2.to_csv('postimputation.csv', index=None) del cps_tc print('Adjusting for State Targets') state_targets = pd.read_csv('data/agg_state_data.csv', index_col='STATE') cps_v3 = targets(cps_v2, state_targets) cps_v3.to_csv('posttargeting.csv', index=None) del cps_v2 print('Blank Slate Imputations') blankslate(cps_v3) print('Renaming Variables') rename = {'MCAID_PROB1': 'MEDICAID_PROB1', 'MCAID_PROB10': 'MEDICAID_PROB10', 'MCAID_PROB11': 'MEDICAID_PROB11', 'MCAID_PROB12': 'MEDICAID_PROB12', 'MCAID_PROB13': 'MEDICAID_PROB13', 'MCAID_PROB14': 'MEDICAID_PROB14', 'MCAID_PROB15': 'MEDICAID_PROB15', 'MCAID_PROB2': 'MEDICAID_PROB2', 'MCAID_PROB3': 'MEDICAID_PROB3', 'MCAID_PROB4': 'MEDICAID_PROB4', 'MCAID_PROB5': 'MEDICAID_PROB5', 'MCAID_PROB6': 'MEDICAID_PROB6', 'MCAID_PROB7': 'MEDICAID_PROB7', 'MCAID_PROB8': 'MEDICAID_PROB8', 'MCAID_PROB9': 'MEDICAID_PROB9', 'MCAID_VAL1': 'MEDICAID_VAL1', 'MCAID_VAL10': 'MEDICAID_VAL10', 'MCAID_VAL11': 'MEDICAID_VAL11', 'MCAID_VAL12': 'MEDICAID_VAL12', 'MCAID_VAL13': 'MEDICAID_VAL13', 'MCAID_VAL14': 'MEDICAID_VAL14', 'MCAID_VAL15': 'MEDICAID_VAL15', 'MCAID_VAL2': 'MEDICAID_VAL2', 'MCAID_VAL3': 'MEDICAID_VAL3', 'MCAID_VAL4': 'MEDICAID_VAL4', 'MCAID_VAL5': 'MEDICAID_VAL5', 'MCAID_VAL6': 'MEDICAID_VAL6', 'MCAID_VAL7': 'MEDICAID_VAL7', 'MCAID_VAL8': 'MEDICAID_VAL8', 'MCAID_VAL9': 'MEDICAID_VAL9', 'MCARE_PROB1': 'MEDICARE_PROB1', 'MCARE_PROB10': 'MEDICARE_PROB10', 'MCARE_PROB11': 'MEDICARE_PROB11', 'MCARE_PROB12': 'MEDICARE_PROB12', 'MCARE_PROB13': 'MEDICARE_PROB13', 'MCARE_PROB14': 'MEDICARE_PROB14', 'MCARE_PROB15': 'MEDICARE_PROB15', 'MCARE_PROB2': 'MEDICARE_PROB2', 'MCARE_PROB3': 'MEDICARE_PROB3', 'MCARE_PROB4': 'MEDICARE_PROB4', 'MCARE_PROB5': 'MEDICARE_PROB5', 'MCARE_PROB6': 'MEDICARE_PROB6', 'MCARE_PROB7': 'MEDICARE_PROB7', 'MCARE_PROB8': 'MEDICARE_PROB8', 'MCARE_PROB9': 'MEDICARE_PROB9', 'MCARE_VAL1': 'MEDICARE_VAL1', 'MCARE_VAL10': 'MEDICARE_VAL10', 'MCARE_VAL11': 'MEDICARE_VAL11', 'MCARE_VAL12': 'MEDICARE_VAL12', 'MCARE_VAL13': 'MEDICARE_VAL13', 'MCARE_VAL14': 'MEDICARE_VAL14', 'MCARE_VAL15': 'MEDICARE_VAL15', 'MCARE_VAL2': 'MEDICARE_VAL2', 'MCARE_VAL3': 'MEDICARE_VAL3', 'MCARE_VAL4': 'MEDICARE_VAL4', 'MCARE_VAL5': 'MEDICARE_VAL5', 'MCARE_VAL6': 'MEDICARE_VAL6', 'MCARE_VAL7': 'MEDICARE_VAL7', 'MCARE_VAL8': 'MEDICARE_VAL8', 'MCARE_VAL9': 'MEDICARE_VAL9', 'SSI': 'ssi_ben', 'VB': 'vb_ben', 'MEDICARE': 'medicare_ben', 'MEDICAID': 'medicaid_ben', 'SS': 'ss_ben', 'SNAP': 'snap_ben', 'WT': 's006'} cps_final = cps_v3.rename(columns=rename) del cps_v3 # export and compress data print('Exporting and Compressing Data') cps_final.to_csv('cps_raw_new.csv.gz', index=False, compression='gzip') if __name__ == '__main__': createcps()
3335428952a4716954b8585f6e26d5212fef7019
1e584b456f2dade32330aa7adcab669202346de0
/Ventas/migrations/0001_initial.py
0bd6f0d72085edb40348ad9ea7e32392b753e98d
[]
no_license
elisammg/Python-Ventas-Src
f3ec38f65cc321bd70e5d14bf3636fa29b75d382
0cf0c25a2e892f593b9864ad567c0e9bd01b265c
refs/heads/master
2022-12-16T02:02:39.433588
2020-09-01T04:47:44
2020-09-01T04:47:44
291,898,571
0
0
null
null
null
null
UTF-8
Python
false
false
2,760
py
# Generated by Django 2.2 on 2020-05-27 01:14 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ('Fabricas', '0001_initial'), ('Cientes', '0001_initial'), ('Repuestos', '0001_initial'), ] operations = [ migrations.CreateModel( name='Tipo_Venta', fields=[ ('Tipo_Venta', models.AutoField(primary_key=True, serialize=False)), ('Nombre', models.CharField(max_length=200)), ], ), migrations.CreateModel( name='Usuario', fields=[ ('ID_USUARIO', models.AutoField(primary_key=True, serialize=False)), ('Nombre', models.CharField(max_length=100)), ('Usuario', models.CharField(max_length=100)), ('Password', models.CharField(max_length=100)), ('Rol', models.CharField(choices=[('Administrador', 'Administrador'), ('Vendedor', 'Vendedor')], max_length=100)), ], ), migrations.CreateModel( name='Ventas', fields=[ ('Codigo_Venta', models.AutoField(primary_key=True, serialize=False)), ('Fabricante', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Fabricas.FABRICA')), ('Tipo_Venta', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Ventas.Tipo_Venta')), ], ), migrations.CreateModel( name='FACTURA', fields=[ ('Numero_Factura', models.AutoField(primary_key=True, serialize=False)), ('Total', models.DecimalField(decimal_places=2, default=0.0, max_digits=6)), ('Estado', models.CharField(max_length=200)), ('Cliente', models.ForeignKey(default=0, on_delete=django.db.models.deletion.CASCADE, to='Cientes.Clientes')), ], ), migrations.CreateModel( name='Detalle_Venta', fields=[ ('Codigo', models.AutoField(primary_key=True, serialize=False)), ('Cantidad', models.IntegerField(default=0)), ('Sub_Total', models.DecimalField(decimal_places=2, default=0.0, max_digits=6)), ('Factura', models.ForeignKey(default=0, on_delete=django.db.models.deletion.CASCADE, to='Ventas.FACTURA')), ('Repuesto', models.ForeignKey(default=0, on_delete=django.db.models.deletion.CASCADE, to='Repuestos.REPUESTOS')), ('Venta', models.ForeignKey(default=0, on_delete=django.db.models.deletion.CASCADE, to='Ventas.Ventas')), ], ), ]
684940015c3c66e7ec8f8ea1bc1d7ca3bf133ab6
43f6dd9fbb3c760a07a7c1961811c6ef6660a1fe
/python/Python/Activity1.py
23aad7b895cacf12ce21e3fa7d079766f63bf671
[]
no_license
surendramailishere/FST-M1
b43a3adab7008662fb436a7b32e3c440c2e78b15
e9c1172b7eb29e7504867ffbbe274efad29a67fd
refs/heads/main
2023-05-31T01:18:46.282971
2021-07-10T04:58:32
2021-07-10T04:58:32
368,394,478
0
0
null
2021-05-18T03:54:31
2021-05-18T03:54:31
null
UTF-8
Python
false
false
175
py
name = input( "What is your name: " ) age = int( input( "How old are you: " ) ) year = str( ( 2020 - age ) + 100 ) print( name + " will be 100 years old in the year " + year )
af0bc4e2ffafa311474d941bfa02b2679773dbee
56a3d36ea1cb52183c32dc4d15aadcc78e29889e
/test_rest/urls.py
61af6c2894fbe52eaf31e3bc70ff02c9409f8169
[]
no_license
AlisaLC/yektanet_rest
18b20a0a7e38e6f73573593b7767f8bdc6d75973
b8ef4bf20c3535a1720a8cf982a3c61f66e4c49b
refs/heads/master
2023-08-26T07:55:29.991086
2021-09-28T14:55:04
2021-09-28T14:55:04
411,321,148
0
0
null
null
null
null
UTF-8
Python
false
false
1,755
py
"""test_rest URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.2/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.urls import include, path from rest_framework import routers from applicant.views import ApplicantRegisterView, ApplicantRetrieveUpdateView from employer.views import EmployerRegisterView, EmployerRetrieveUpdateView from job.views import JobAdRegisterView, JobAdRetrieveUpdateView, JobApplicationRegisterView, ApplicantJobAdListView router = routers.DefaultRouter() # Wire up our API using automatic URL routing. # Additionally, we include login URLs for the browsable API. urlpatterns = [ path('', include(router.urls)), path('applicant/new', ApplicantRegisterView.as_view()), path('applicant/<int:pk>/', ApplicantRetrieveUpdateView.as_view()), path('employer/new', EmployerRegisterView.as_view()), path('employer/<int:pk>/', EmployerRetrieveUpdateView.as_view()), path('job/new', JobAdRegisterView.as_view()), path('job/<int:pk>/', JobAdRetrieveUpdateView.as_view()), path('job/<int:pk>/apply', JobApplicationRegisterView.as_view()), path('job/all', ApplicantJobAdListView.as_view()), path('api-auth/', include('rest_framework.urls', namespace='rest_framework')) ]
bc2b058df735eb41e195f9039cfb1940feaa9469
355446ae3ee0ebff46690498e4454cdfb9b927be
/ChirpAnalyzer/multiAnlayzeSymbolRate.py
4809692c86b19bab6f3359215ff576cfb45ec8bb
[]
no_license
zxs1652/ChirpAnalyzer
33b413687361c50e92a9b56f8905a169178f2ff2
73289d8adb37fb57da23e51cd48a7bbe42091262
refs/heads/master
2022-11-04T23:06:30.908195
2020-06-12T10:48:51
2020-06-12T10:48:51
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,854
py
from scipy.signal import chirp, sweep_poly, spectrogram, welch from scipy.special import factorial import scipy.signal as signal import numpy as np import random import rftool.radar as radar import rftool.utility as util import rftool.estimation as estimate import rftool.communications as comm from utility import * import matplotlib.pyplot as plt import matplotlib as mpl import pickle #import os Debug = False Fs = np.intc(802e3) # Receiver sample rate. #! Must be the same as the signals T = np.float(6e-3) # Pulse duration. #! Must be the same as the signals nIterations = 500 packetSize = 32 # Load alpha window function a-priori path = '../jobs/' filename = 'SCD_GMM' destination = path + filename + '.pkl' with open(destination,'rb') as f: alphaWindow = pickle.load(f) # Plot results import matplotlib.pyplot as plt plt.style.use('masterThesis') import matplotlib imagePath = '../figures/symRateEst/' if Debug==False: mpl.use("pgf") mpl.rcParams.update({ "pgf.texsystem": "lualatex", 'font.family': 'serif', 'text.usetex': True, 'pgf.rcfonts': False, }) # Compare the method of def symbolrateAutocorr(sig, Fs, **kwargs): Rxx = np.abs(signal.correlate(sig, sig, mode='full', method='fft')) f0 = estimate.f0MleTime(Rxx=Rxx, f=Fs, peaks=5) return f0 # Wrapper for estimation function def symbolRateEstimator(sig, Fs, aPrioriFCenter=False, **kwargs): # Ensure that the true center frequency is only used in the intended case if aPrioriFCenter==False: kwargs.pop('fCenterPriori') # removes fCenterPriori from kwargs library SCD, f, alpha = estimate.FAM(sig, Fs = Fs, plot=False, method='conj', scale='linear', **kwargs) fCenter, R_symb = estimate.cyclicEstimator( SCD, f, alpha, **kwargs) return R_symb # Configure estimators estimators = [] estimators.append(estimator('Autocorrelation MLE', symbolrateAutocorr, Fs=Fs)) estimators.append(estimator('Cyclic MLE Method', symbolRateEstimator, Fs=Fs)) estimators.append(estimator('Cyclic MLE Method, Full BW', symbolRateEstimator, Fs=Fs, bandLimited=False)) estimators.append(estimator('Cyclic MLE A-Priori $f_c$', symbolRateEstimator, aPrioriFCenter=True, Fs=Fs)) estimators.append(estimator('Cyclic MLE A-Priori $f_c$, $\Omega$', symbolRateEstimator, aPrioriFCenter=True, Fs=Fs, alphaWindow=alphaWindow, fWindow='triangle', fWindowWidthHertz=50e3)) # Create analysis object m_analysis = analysis('Symbol_Rate_Estimation', estimators=estimators, lossFcn='MAE') # Generate Eb/N0 range for statistics gathering. EbN0Start = 40 EbN0End = 10 m_analysis.axis.displayName = '$E_b/N_0$ [dB]' m_analysis.axis.displayVector = np.linspace(EbN0End, EbN0Start, EbN0Start-EbN0End+1) m_analysis.axis.name = 'S/N [dB]' m_analysis.axis.vector = comm.EbN0toSNRdB(m_analysis.axis.displayVector, 2, Fs, 1/T) m_analysis.analyze(iterations=nIterations, parameter='symbolRate', packetSize=packetSize, debug=Debug) # Write to binary file path = '../jobs/' jobname = 'SRateJob' destination = path + jobname + str(m_analysis.iterations) + '.pkl' # Save job to binary file with open(destination,'wb') as f: pickle.dump(m_analysis, f) iterations = nIterations #! Must be same as job file """ # Read from binary file path = '../jobs/' jobname = 'SRateJob' destination = path + jobname + str(iterations) + '.pkl' with open(destination,'rb') as f: m_analysis = pickle.load(f)""" fig, ax = m_analysis.plotResults(pgf=not Debug, scale='semilogy', plotYlabel='MAE [Hz]') ax.legend(loc='upper right') #fig.set_figheight(2.5) plt.tight_layout() if Debug == False: fileName = m_analysis.name +'_'+ str(iterations) + '_iterations' # str(m_analysis.iterations) plt.savefig(imagePath + fileName + '.png', bbox_inches='tight') plt.savefig(imagePath + fileName + '.pgf', bbox_inches='tight') plt.show()
10edb8f316551d6e473ca183fa6522c0ce770e04
f08a30264ca141f9809db3090e4852731b630a84
/ml-notebook-to-prod/examples/housingExample/housepriceapi/housepriceapi/api/__init__.py
0abadf0f5a11a4de8836b475840a3b14a960304d
[ "MIT" ]
permissive
gbourdin/charlas
a1ee42f3e2f8aef9d8754a6a5b84537055f877db
bae889b140be945ff55a511518c771ff47f62e95
refs/heads/master
2020-06-04T06:26:56.905694
2018-11-28T00:52:25
2018-11-28T00:52:25
20,316,818
6
0
null
null
null
null
UTF-8
Python
false
false
87
py
from .predict import blueprint as predict_blueprint __all__ = ['predict_blueprint', ]
7404d07e1d9558b3f178f1c18b297e993c68d9ac
3af0629755124faaa4d229b3f443d9469282d6e5
/Exercises/Exe7.py
d938e113f4134879d39193d221c8f3451c61db27
[]
no_license
Cmaanjunatha/ProjectHUB
389eaf7a1521731e0dbbb64685a5dfdae1b521d7
ae50111ce2cea02b0050eb6706255f11b32ac70b
refs/heads/master
2022-12-10T12:19:20.967923
2019-12-31T02:18:54
2019-12-31T02:18:54
225,866,977
0
0
null
2022-12-08T01:11:34
2019-12-04T12:53:36
Python
UTF-8
Python
false
false
100
py
def fun(r): for i in range(r): #print(i, end="") print(' '* r-complex-1) fun(9)
f04f64ae1e0b8f6e6b82d80ebfa78d311e209e3f
014d6ee96640b7d7fdeb2f11f4b0b34cf52a48ee
/leadmanager/leads/migrations/0001_initial.py
cb262f320fdb6c369a3809628705f24bd046b280
[]
no_license
karatugo/lead-manager
b31f282f707fac44dff5fb16b87b9b57a42f2a9d
88c3026efeacb26643372cc196efd5fc43e785e2
refs/heads/master
2023-01-19T19:39:47.193833
2020-06-29T12:22:22
2020-06-29T12:22:22
244,813,308
0
0
null
2023-01-07T19:34:37
2020-03-04T05:13:03
JavaScript
UTF-8
Python
false
false
705
py
# Generated by Django 2.2 on 2020-03-04 07:51 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Lead', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=100)), ('email', models.EmailField(max_length=254, unique=True)), ('message', models.CharField(blank=True, max_length=500)), ('created_at', models.DateTimeField(auto_now_add=True)), ], ), ]
1b03222fee8df5feca6f6e38df3cf46e883c4e67
27bc04992b9122356c587ef18036524106bc6bd2
/spaces33.py
354a514f0fc780e179423eb99e81ff9c09181ef5
[]
no_license
naveenakallagunta/python
bafde4811af7cde76fca7dd2cb79037aea2fc5be
65a4bcae4c2bcd0ca2a7b850159cb79f73de13ba
refs/heads/master
2020-03-27T06:08:17.362728
2018-12-13T06:36:51
2018-12-13T06:36:51
146,081,643
0
1
null
null
null
null
UTF-8
Python
false
false
33
py
z=raw_input() print z.count(' ')
b75960015422e66c2334cbbfb1eb2fc24101bf41
71054ffad08ec0cd3dc991d13db788c9577121da
/main.py
4cc8f1035a01ccd225a19583f1ccf5488ae885db
[]
no_license
Carlesgg97/py-fetch-twitch-vod-chat
b290d7a0715ddfc678858d66a91c5f132ef2c5ff
9d558ba2371c45bc48f659d948a8b945e76a321e
refs/heads/master
2023-02-21T06:15:12.215541
2021-01-20T18:34:29
2021-01-20T18:38:39
331,396,788
0
0
null
null
null
null
UTF-8
Python
false
false
1,311
py
import requests import json import sys import argparse ACCEPT_HEADER = "application/vnd.twitchtv.v5+json" BASE_URL_TEMPLATE = "https://api.twitch.tv/v5/videos/%s/comments" def parse_args(): parser = argparse.ArgumentParser(description='Download a twitch vod\'s chat messages') parser.add_argument('vod_id', type=int, help='Vod id, obtained from the last digits of the vod url') parser.add_argument('client_id', type=str, help='Client id, visit https://dev.twitch.tv/docs/api to find out more') return parser.parse_args() def fetch_vod_comments(vod_id, client_id): url = BASE_URL_TEMPLATE % vod_id qstring = "?content_offset_seconds=0" comments_list = [] next_cursor = None while True: response = requests.get(url + qstring, headers={'Accept': ACCEPT_HEADER, 'Client-ID': client_id}) print('Obtained response code %s for cursor %s' % (response.status_code, next_cursor), file=sys.stderr) json_data = response.json() comments_list = comments_list + json_data['comments'] next_cursor = json_data.get('_next') if not next_cursor: break qstring = "?cursor=%s" % next_cursor return comments_list if __name__ == '__main__': args = parse_args() comments_list = fetch_vod_comments(args.vod_id, args.client_id) print(json.dumps(comments_list, indent=2))
e0ec96fe394d55ea0a473edbcab1f39f84f26a85
a8e25a558ffcbd0113b87e1971076d9d40dad9c4
/contact.py
1433f42f19eaf0ef9c1463732fbc155640a1717e
[]
no_license
WambiruL/contact-list
ce5087b37d0390b03c4a912c7db19f8ba8cf0722
239018141ee04d484cf8f6529dc25d70a7db4a03
refs/heads/master
2023-05-10T22:27:30.793908
2021-05-31T07:46:03
2021-05-31T07:46:03
372,424,752
0
0
null
null
null
null
UTF-8
Python
false
false
2,062
py
import pyperclip class Contact: contact_list= [] #empty def __init__(self,first_name,last_name,phone_number,email): self.first_name = first_name self.last_name = last_name self.phone_number = phone_number self.email = email #self is a special keyword in python, # self is a variable that represents the instance of the object itself. Like "this" in Js. # _init_ creates new instances of a class def save_contact(self): #append objects to contact list """ save_contact method saves contact objects into contact_list """ Contact.contact_list.append(self) def delete_contact(self): """delete_contact method deletes a saved contact from the contact_list """ Contact.contact_list.remove(self) @classmethod #decorator. Allows make simple modifications to functions,methods or classes. Eg Shows that the method belongs to the entire class def find_by_number(cls,number): #cls refers to entire class. ''' Method that takes in a number and returns a contact that matches that number. Args: number: Phone number to search for Returns : Contact of person that matches the number. ''' for contact in cls.contact_list: if contact.phone_number == number: return contact @classmethod def contact_exist(cls,number): """Method that checks if a contact exists from the contact list Args: number: Phone number to search if it exists returns: True or false depending if the contact exists """ for contact in cls.contact_list: print(contact.phone_number, "This is my comtact") if contact.phone_number==number: return True return False @classmethod def display_contact(cls): """ method that returns the contact list """ return cls.contact_list @classmethod def copy_email(cls,number): contact_found = Contact.find_by_number(number) pyperclip.copy(contact_found.email)
480a47f925cf0431ba0762f3cb95c93bd5a706c6
bf4e3a2daf7c00cbfec3c8e4f94ba94ad4b72f13
/fundamentals_of_programming/Laboratory5-7/domain/DomainException.py
d55ac3673868e88e6009438dc9484ce9d472b20c
[]
no_license
LeancaBogdan/University
93a5481d6dcf877142e88b1c216e5ac56e496391
f4fd433395152fb378f41171f0c2f4534325778e
refs/heads/master
2020-07-01T08:16:43.791800
2020-02-10T17:36:14
2020-02-10T17:36:14
112,607,377
0
0
null
null
null
null
UTF-8
Python
false
false
1,614
py
""" Created on 24 nov. 2016 @author: bogdanleanca """ class DisciplineException(Exception): """ Class for exceptions regarding disciplines """ def __init__(self, message): """ Constructor """ self._message = message def get_message(self): """ Getter for the message :return: The message """ return self._message def __str__(self): """ Override for the str function :return: String containing the exception message """ return self._message class StudentException(Exception): """ Class for exceptions regarding students """ def __init__(self, message): """ Constructor """ self._message = message def get_message(self): """ Getter for the message :return: The message """ return self._message def __str__(self): """ Override for the str function :return: String containing the exception message """ return self._message class GradeException(Exception): """ Class for exceptions regarding grades """ def __init__(self, message): """ Constructor """ self._message = message def get_message(self): """ Getter for the message :return: The message """ return self._message def __str__(self): """ Override for the str function :return: String containing the exception message """ return self._message
ed043dab200abb9b900bc4245757332efb6e5732
66e2921d550edc185f15c7b4f616f05a5f2095aa
/basicapp/forms.py
0bf8fb3fe5ad2fef5e679e976747200d167b49ce
[]
no_license
tgchen/basicforms
030b6fefee8366aae89e8b1022a69d560df0e5fd
f704ae7227b1a9c3b4e02b5f8eb4cdd84fc18217
refs/heads/master
2020-06-06T15:23:32.800668
2019-06-19T18:54:46
2019-06-19T18:54:46
192,776,500
0
0
null
null
null
null
UTF-8
Python
false
false
540
py
from django import forms from django.core import validators class FormName(forms.Form): name = forms.CharField() email = forms.EmailField() verify_email = forms.EmailField(label='Enter your Email again:') text = forms.CharField(widget=forms.Textarea) def clean(self): all_clean_data = super().clean() email = all_clean_data['email'] verify_email = all_clean_data['verify_email'] if email != verify_email: raise forms.ValidationError("Make sure Email Match")
d3a1ab0719a1a0bce38f4a80055f2147f05eede0
d6a6134be4d8befa72c5e0983c4119030a838a64
/torba/torba/orchstr8/cli.py
b88ee065e8df11401f5e3d5cb5567a4ad97588aa
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gpjacobs/lbry-sdk
a97c7e5b7cc714df5fcd02581f9a97f9b3efdfa7
3562234f9d80552196113d51736321a41dcc91d9
refs/heads/master
2020-08-12T05:16:04.892260
2019-12-13T17:05:36
2019-12-13T17:18:37
214,695,274
0
0
MIT
2019-10-12T18:25:37
2019-10-12T18:25:37
null
UTF-8
Python
false
false
3,123
py
import logging import argparse import asyncio import aiohttp from torba.orchstr8.node import Conductor, get_ledger_from_environment, get_blockchain_node_from_ledger from torba.orchstr8.service import ConductorService def get_argument_parser(): parser = argparse.ArgumentParser( prog="torba" ) subparsers = parser.add_subparsers(dest='command', help='sub-command help') subparsers.add_parser("gui", help="Start Qt GUI.") subparsers.add_parser("download", help="Download blockchain node binary.") start = subparsers.add_parser("start", help="Start orchstr8 service.") start.add_argument("--blockchain", help="Hostname to start blockchain node.") start.add_argument("--spv", help="Hostname to start SPV server.") start.add_argument("--wallet", help="Hostname to start wallet daemon.") generate = subparsers.add_parser("generate", help="Call generate method on running orchstr8 instance.") generate.add_argument("blocks", type=int, help="Number of blocks to generate") subparsers.add_parser("transfer", help="Call transfer method on running orchstr8 instance.") return parser async def run_remote_command(command, **kwargs): async with aiohttp.ClientSession() as session: async with session.post('http://localhost:7954/'+command, data=kwargs) as resp: print(resp.status) print(await resp.text()) def main(): parser = get_argument_parser() args = parser.parse_args() command = getattr(args, 'command', 'help') if command == 'gui': from torba.workbench import main as start_app # pylint: disable=import-outside-toplevel return start_app() loop = asyncio.get_event_loop() asyncio.set_event_loop(loop) ledger = get_ledger_from_environment() if command == 'download': logging.getLogger('blockchain').setLevel(logging.INFO) get_blockchain_node_from_ledger(ledger).ensure() elif command == 'generate': loop.run_until_complete(run_remote_command( 'generate', blocks=args.blocks )) elif command == 'start': conductor = Conductor() if getattr(args, 'blockchain', False): conductor.blockchain_node.hostname = args.blockchain loop.run_until_complete(conductor.start_blockchain()) if getattr(args, 'spv', False): conductor.spv_node.hostname = args.spv loop.run_until_complete(conductor.start_spv()) if getattr(args, 'wallet', False): conductor.wallet_node.hostname = args.wallet loop.run_until_complete(conductor.start_wallet()) service = ConductorService(conductor, loop) loop.run_until_complete(service.start()) try: print('========== Orchstr8 API Service Started ========') loop.run_forever() except KeyboardInterrupt: pass finally: loop.run_until_complete(service.stop()) loop.run_until_complete(conductor.stop()) loop.close() else: parser.print_help() if __name__ == "__main__": main()
b8c613489b03334b098ccfed4cbaf881736f911d
02f9eb2d16a6c8f58f0f242d1fbf66cf38f3c95f
/tests/test_sim_ranked_item.py
ad36b519715d4fbd1e6a50e3c58ed12117d0f142
[ "MIT" ]
permissive
League-Advisor/league-advisor
39de50f3e31381672f9d7ad35bff3c99fb39c9f2
b77895833075ff13b075875eff421ec9fef9770e
refs/heads/main
2023-09-05T02:44:12.866773
2021-11-11T09:32:35
2021-11-11T09:32:35
423,940,194
0
0
MIT
2021-11-12T11:10:08
2021-11-02T17:35:42
Python
UTF-8
Python
false
false
509
py
from league_advisor.league_advisor import LeagueAdvisor from tests.flo import diff def test_ranked_item_error(): league_advisor = LeagueAdvisor() diffs = diff(league_advisor.run_program, path="tests/simulations/ranked_error_color.sim.txt") assert not diffs, diffs def test_ranked_item_passed(): league_advisor = LeagueAdvisor() diffs = diff(league_advisor.run_program, path="tests/simulations/ranked_item_color_r.sim.txt") assert not diffs, diffs
474d8440cc981c68de092f5b796c145a85e9c0d7
446668176ba9765575738faa8a634a0671616572
/caidaTensionRestML-master/API_CAIDA_TENSION/apps.py
da2e3120eb5da6d884e6dccd6619fd86556731b2
[]
no_license
ManuelSBZ/CaidaTensionServiceML
80f51103f1b8078354dbe190d5acfed27b07dff3
dfa1cc3a62e5e5bd22b7e72db9ddd5cf8ab39ee4
refs/heads/master
2023-08-12T18:55:10.250720
2020-09-29T04:29:26
2020-09-29T04:29:26
272,574,105
0
0
null
null
null
null
UTF-8
Python
false
false
107
py
from django.apps import AppConfig class ApiCaidaTensionConfig(AppConfig): name = 'API_CAIDA_TENSION'
1b28dc7a43913b16cc1387fd0723ce67de83ecdc
8ae5d4eb8bb714e50e7a68a9543c7bc6dd34c54f
/blog/migrations/0003_auto_20210510_1852.py
a5946c41be719b976b54eafefd0574e553423a94
[]
no_license
Axrorbek05/personal_site
e476af120dc08fae8f6abbb4221cb231b98f1312
d01fe787c00dbad168c4b4d6b6a3044ee13fc38a
refs/heads/main
2023-05-10T05:07:34.736321
2021-06-11T14:25:28
2021-06-11T14:25:28
374,702,644
0
0
null
null
null
null
UTF-8
Python
false
false
752
py
# Generated by Django 3.2.2 on 2021-05-10 13:52 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('blog', '0002_auto_20210510_1849'), ] operations = [ migrations.CreateModel( name='AboutMySkills', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=100)), ('description', models.TextField(max_length=1000)), ], ), migrations.AlterModelOptions( name='aboutme', options={'verbose_name': 'About Me', 'verbose_name_plural': 'About Me'}, ), ]
66fc38aa55d5e4e028d3034b05ed4e42e95db0f8
12f47745f5216f400c47a999186cfb5ebb41e82d
/env2.7.11/bin/qiniupy
b21892ad7d0e1aaa6b928455be3bb75cbee97a1b
[]
no_license
yangsongx/doc
c9327d1489b493e773e54356a583cfa1543f007d
9de7d59618d490731e1a214f940e49c698bc1527
refs/heads/master
2021-01-21T12:58:57.716377
2016-04-27T09:30:14
2016-04-27T09:30:14
46,835,093
1
0
null
null
null
null
UTF-8
Python
false
false
315
#!/d/projects/env2.7.11/bin/python2.7 # EASY-INSTALL-ENTRY-SCRIPT: 'qiniu==7.0.6','console_scripts','qiniupy' __requires__ = 'qiniu==7.0.6' import sys from pkg_resources import load_entry_point if __name__ == '__main__': sys.exit( load_entry_point('qiniu==7.0.6', 'console_scripts', 'qiniupy')() )
389a365a6e25c241f42dc45617a410f8c83ee19b
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p03761/s550308276.py
ea846a6dca52e1e800df28ff7483ccc82a524804
[]
no_license
Aasthaengg/IBMdataset
7abb6cbcc4fb03ef5ca68ac64ba460c4a64f8901
f33f1c5c3b16d0ea8d1f5a7d479ad288bb3f48d8
refs/heads/main
2023-04-22T10:22:44.763102
2021-05-13T17:27:22
2021-05-13T17:27:22
367,112,348
0
0
null
null
null
null
UTF-8
Python
false
false
189
py
n=int(input()) a=[100]*26 for i in range(n): s=input() for j in range(26): a[j]=min(a[j],s.count(chr(ord('a')+j))) for i in range(26): print(chr(ord('a')+i)*a[i],end='')
e060d09287e50e67ac9867e009cc63bbc879f331
16b81ffcb40b429bde1e9bc10e5eeddd9d2ec51f
/cs212/test_lesson6.py
659253841de433d4da6d7c8e7655414b071e2e33
[]
no_license
suminb/coding-exercise
564424b7b98ea768c57a5b7f106fd7844e8e2843
b8b9377e7a76b498a9e6fb325743b16cbc943932
refs/heads/master
2023-06-16T03:01:59.009635
2020-05-09T11:09:25
2020-05-09T11:09:25
171,614,062
8
0
null
null
null
null
UTF-8
Python
false
false
1,311
py
import pytest from lesson6 import * @pytest.mark.parametrize('h1, h2, expected', [ (1, 0, True), (0, 1, False), (4, 3, True), (2, 2, False), ]) def test_imright(h1, h2, expected): actual = imright(h1, h2) assert expected == actual @pytest.mark.parametrize('h1, h2, expected', [ (1, 0, True), (0, 1, True), (1, 1, False), (2, 4, False), ]) def test_nextto(h1, h2, expected): actual = nextto(h1, h2) assert expected == actual def test_all_ints(): it = all_ints() ints = [next(it) for _ in range(8)] assert [0, +1, -1, +2, -2, +3, -3, +4] @pytest.mark.skip @pytest.mark.parametrize('formula, expected', [ ('X + Y == Z', '2 + 1 == 3'), # Sometimes the order gets mixed up... ('ODD + ODD == EVEN', '655 + 655 == 1310'), ]) def test_solve(formula, expected): actual = solve(formula) assert expected == actual @pytest.mark.parametrize('word, expected', [ ('', ''), ('+', '+'), ('YOU', '1*U+10*O+100*Y'), ('lower', 'lower'), ]) def test_compile_word(word, expected): actual = compile_word(word) assert expected == actual # NOTE: A simple profiling can be done by invoking the following command: # # python -m cProfile cs212/test_lesson6.py # if __name__ == '__main__': pytest.main(['-v', __file__])
7fa19b9053be05a63b004f22e6649de333114e9d
0d1d489b32b656b1f418e102b25549c90692335e
/interface/rebuild_test_bak.py
8b8be8321b6f3cceca88a076feac253534cc8dee
[]
no_license
vitaminwxl/doc_test_ker
de7a7f9f8106a5f2d72936815d781160709f6436
584ae62044ef44ebbe3ed44b6ec6de4e4e246068
refs/heads/master
2020-12-03T04:16:16.343417
2017-07-04T03:13:50
2017-07-04T03:13:50
95,842,095
0
0
null
null
null
null
UTF-8
Python
false
false
20,892
py
#!/usr/bin/env python # encoding: utf-8 import os, sys sys.path.append('/gomeo2o/htdocs/judy') os.environ['DJANGO_SETTINGS_MODULE'] = 'judy.settings' import paramiko # import subprocess # import os,sys import fileinput import time import pexpect from docker import Client import docker import threading import socket socket.setdefaulttimeout(9.0) import json import urllib, urllib2 import re, ConfigParser from console.models import Container, Application from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import render from django.shortcuts import render_to_response #from api.models import dockerdata reload(sys) sys.setdefaultencoding("utf-8") from django.conf import settings zeusadmin_pwd = settings.ZEUSADMIN_PWD config = ConfigParser.ConfigParser() BASE_DIR = '/gomeo2o/htdocs/judy' config.read(os.path.join(BASE_DIR, 'judy.conf')) zeus_url = config.get('zeus', 'zeus_url') zeus_user = config.get('zeus', 'zeus_user') zeus_password = config.get('zeus', 'zeus_password') # port1=22 # port2=21987 #def disk_status(host_name, memory_total,cpu_total,cmd,images,disk_size,disk_type_name,host_ip): def container_create(host_name, memory_total,cpu_total,images,disk_size,disk_type_name,host_ip,container_ip,container_gw): disk_type = "cloud_" + disk_type_name json_data = ''' { "Hostname":"%s", "HostConfig": {"Memory":%s,"MemorySwap":%s,"Binds": ["/docker_data/%s/%s:/gomeo2o"],"NetworkMode": "none","CpusetCpus": "%s","Privileged": true}, "AttachStdin":false, "AttachStdout":true, "AttachStderr":true, "PortSpecs":null, "Tty":true, "OpenStdin":false, "StdinOnce":false, "Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"], "Cmd":["/usr/bin/supervisord"], "Dns":null, "Config": {"Entrypoint": ["/usr/bin/supervisord"]}, "Image":"%s" } ''' % (host_name, memory_total, memory_total,disk_type,host_name,cpu_total,images) headers = {'Content-type': 'application/json', 'Accept': 'charset=utf-8'} req = urllib2.Request("http://%s:5555/containers/create" % (host_ip), json_data, headers) response = urllib2.urlopen(req) a = response.read() dev_disk = "/dev/%s/%s" %(disk_type,host_name) data_disk = "/docker_data/%s/%s" %(disk_type,host_name) return (json.dumps({'code':200,'host_name':host_name,'containers_ID':json.loads(a).get('Id'),'dev_disk':dev_disk,'data_disk':data_disk},indent=4)) #print disk_status('python-docker190', int('4000000000'),'0-3','centos6.7','100GB','sdd','10.69.111.11','10.69.112.13/24','10.69.112.254') def stop(host_ip,ids): # print type(ids) try: headers = {'Content-type': 'application/json', 'Accept': 'charset=utf-8'} req_stop = urllib2.Request("http://%s:5555/containers/%s/stop" %(host_ip,ids),'{}',headers) response_stop = urllib2.urlopen(req_stop) out_stop = response_stop.read() return (json.dumps({'code':200,'stop_status':'Stop Success'},sort_keys=True,indent=4)) except: return (json.dumps({'code':500,'stop_status':'Stop failure'},sort_keys=True,indent=4)) #print stop('10.125.111.12','d8059bb05c7937168f55d9d04743d31d7d8315d164daa434e23d15c1a86da723') def start(host_ip,ids,container_ip,container_gw,mount_dev,mount_path): test_str = 'sudo pipework em2 -i eth2 %s %s@%s && sudo mount %s %s' % (ids,container_ip,container_gw,mount_dev,mount_path) print test_str ssh_c = pexpect.spawn('ssh -p21987 zeusadmin@%s "%s"' % (host_ip, 'sudo pipework em2 -i eth2 %s %s@%s && sudo mount %s %s' % (ids,container_ip,container_gw,mount_dev,mount_path))) try: headers = {'Content-type': 'application/json', 'Accept': 'charset=utf-8'} req_start = urllib2.Request("http://%s:5555/containers/%s/start" %(host_ip,ids), '{}', headers) response_start = urllib2.urlopen(req_start) out_start = response_start.read() i = ssh_c.expect(['password:', 'continue connecting (yes/no)?']) if i == 0: print "i=0" ssh_c.sendline(zeusadmin_pwd) elif i == 1: ssh_c.sendline('yes\n') ssh_c.expect('password: ') ssh_c.sendline(zeusadmin_pwd) ssh_c.sendline() ssh_c.sendline() return (json.dumps({'code':200,'status':'start ok'},sort_keys=True,indent=4)) except urllib2.URLError,e: return (json.dumps({'code':201,'status':'Restart has been successful, no need to restart'},sort_keys=True,indent=4)) except pexpect.EOF: ssh_c.close() return (json.dumps({'code':300,'status':'SSH connection error!'},sort_keys=True,indent=4)) except pexpect.TIMEOUT: return (json.dumps({'code':301,'status':'SSH connection TimeOut!'},sort_keys=True,indent=4)) #print start('10.125.110.12','d8059bb05c7937168f55d9d04743d31d7d8315d164daa434e23d15c1a86da723','10.125.110.182/24','10.125.110.254','/dev/cloud_nvme0n1/python-docker182','/docker_data/cloud_nvme0n1/python-docker182') def remove(host_ip,ids,mount_dev,mount_path): def ssh_umonlt(): ssh_c = pexpect.spawn('ssh -p21987 zeusadmin@%s "%s"' % (host_ip, 'sudo umount -lf %s' %(mount_path))) i = ssh_c.expect(['password:', 'continue connecting (yes/no)?']) if i == 0: ssh_c.sendline(zeusadmin_pwd) elif i == 1: ssh_c.sendline('yes\n') ssh_c.expect('password: ') ssh_c.sendline(zeusadmin_pwd) ssh_c.sendline() def ssh_lvremove(): # list_all = [] # try: ssh_c = pexpect.spawn('ssh -p21987 zeusadmin@%s "%s"' % (host_ip, 'sudo echo "yes"|sudo lvremove %s' %(mount_dev))) i = ssh_c.expect(['password:', 'continue connecting (yes/no)?']) if i == 0: ssh_c.sendline(zeusadmin_pwd) elif i == 1: ssh_c.sendline('yes\n') ssh_c.expect('password: ') ssh_c.sendline(zeusadmin_pwd) ssh_c.sendline() try: URL="http://%s:5555/containers/json?all=1" %(host_ip) response = urllib2.urlopen(URL).read() response_dict = eval(response) for i in response_dict: status = {'ID':[i.get("Id"),i.get('Status')]} if status["ID"][0] == "%s" %(ids): if re.search('Exit',status["ID"][1]): ssh_umonlt() request = urllib2.Request("http://%s:5555/containers/%s?v=1" %(host_ip,ids)) request.get_method = lambda: 'DELETE' response = urllib2.urlopen(request) ssh_lvremove() return (json.dumps({'code':200,'status':'Successfully deleted containers_id:%s' %(ids)},sort_keys=True,indent=4)) else: try: headers = {'Content-type': 'application/json', 'Accept': 'charset=utf-8'} req_stop = urllib2.Request("http://%s:5555/containers/%s/kill" %(host_ip,ids),'{}',headers) try: response_stop = urllib2.urlopen(req_stop) ssh_umonlt() request = urllib2.Request("http://%s:5555/containers/%s?v=1" %(host_ip,ids)) request.get_method = lambda: 'DELETE' response = urllib2.urlopen(request) ssh_lvremove() return (json.dumps({'code':200,'status':'Successfully deleted containers_id:%s' %(ids)},sort_keys=True,indent=4)) except urllib2.URLError,e: return (json.dumps({'code':500,'status':'URL TimeOut or containers_id:%s 404 Not Found' %(ids)},sort_keys=True,indent=4)) except Exception,e: request = urllib2.Request("http://%s:5555/containers/%s?v=1" %(host_ip,ids)) request.get_method = lambda: 'DELETE' try: ssh_lvremove() response = urllib2.urlopen(request) return (json.dumps({'code':200,'status':'Successfully deleted containers_id:%s' %(ids)},sort_keys=True,indent=4)) except urllib2.URLError,e: return (json.dumps({'code':500,'status':'URL TimeOut or containers_id:%s 404 Not Found' %(ids)},sort_keys=True,indent=4)) except urllib2.URLError,e: return (json.dumps({'code':500,'status':'URL TimeOut or containers_id:%s 404 Not Found' %(ids)},sort_keys=True,indent=4)) #print remove('10.125.111.12','3bc96c49090fce704766adf7975509176f34cbe4f84d145726bc47f70ee58f29','/dev/cloud_nvme0n1/python-docker180','/docker_data/cloud_nvme0n1/python-docker180') def status_info(host_ip): lists = [] try: URL="http://%s:5555/containers/json?all=1" %(host_ip) response = urllib2.urlopen(URL).read() response_dict = eval(response) for i in response_dict: try: if re.search('Up',i.get("Status")): status = 'Up' # print status elif re.search('Exit',i.get("Status")): status = 'Exit' # print status elif re.search('Create',i.get("Status")): status = 'Create' lists.append({"ID":i.get('Id'),'Status':status}) except UnboundLocalError,e: pass return (json.dumps({'message':lists,'code':'200'},sort_keys=True,indent=4)) except urllib2.URLError,e: # return (json.dumps({'message':lists,'code':'200'},sort_keys=True,indent=4)) pass # return (json.dumps({'code':201,'message':'Container host state failure'},sort_keys=True,indent=4)) #print status_info('10.125.111.12') def docker_all(host_ip): try: URL="http://%s:5555/info" %(host_ip) response = urllib2.urlopen(URL,timeout=120).read() response_dict = json.loads(response).get('DriverStatus') for i in response_dict: # print i[0],i[1] if re.search('Data Space Total',i[0]): total = {"total_status":i[1].replace('.','').replace('TB','')} elif re.search('Data Space Used',i[0]): if re.search('GB',i[1]): # print i[1].replace('GB','') # print len(i[1].replace('.','').replace('GB','')) a = i[1].replace('GB','') floats_integer = round(float(a),0) # print len('%s' %int(round(float(floats_integer),0))) if len('%s' %int(round(float(floats_integer),0))) == 1: users = {"users_status":int(round(float(floats_integer),0)) * 1000} elif len('%s' %int(round(float(floats_integer),0))) == 2: users = {"users_status":int(round(float(floats_integer),0)) * 1000} elif len('%s' %int(round(float(floats_integer),0))) == 3: users = {"users_status":int(round(float(floats_integer),0)) * 1000} elif len('%s' %int(round(float(floats_integer),0))) == 4: users = {"users_status":int(round(float(floats_integer),0)) * 1000} else: return (json.dumps({'code':'500','message':'docker data Storage is Full '},sort_keys=True,indent=4)) elif re.search('MB',i[1]): b = i[1].replace('MB','') # print b floats_integers = round(float(b),0) # print floats_integers if len('%s' %int(round(float(floats_integers),0))) == 1: users = {"users_status":int(round(float(floats_integers),0))} elif len('%s' %int(round(float(floats_integers),0))) == 2: users = {"users_status":int(round(float(floats_integers),0))} elif len('%s' %int(round(float(floats_integers),0))) == 3: users = {"users_status":int(round(float(floats_integers),0))} else: pass # print users.get('users_status') # print int(float(total.get('total_status'))) * 1000 if int(users.get('users_status')) >= int(float(total.get('total_status'))) * 1000000 * 0.85: return (json.dumps({'code':'500','message':'docker data Storage is Full '},sort_keys=True,indent=4)) else: return (json.dumps({'code':'200','message':'docker Data_Pool Storage is Available'},sort_keys=True,indent=4)) except urllib2.URLError,e: return (json.dumps({'code':'404','message':'Url Http_Request Error'},sort_keys=True,indent=4)) #print docker_all('10.69.111.11') def docker_monitor(host_ip,container_id,network_card): try: lists=[] network_alls=[] memory_alls=[] cpu_alls=[] io_alls=[] times = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())) datetimes = int(time.mktime(time.strptime(times,'%Y-%m-%d %H:%M:%S'))) # datetimes = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())) # timeStamp = int(time.mktime(datatimes)) cli = Client(base_url='tcp://%s:5555' %(host_ip),version='1.20') stats_obj = cli.stats('%s' %(container_id)) for i in stats_obj: lists.append(i) break for i in lists: i_json = json.loads(i) for k,v in i_json.items(): # print k if re.search('network',k): network = {'network_stats':[v]} network_alls.append(network) if re.search('memory_stats',k): memory = {'memory_stats':[v]} # print memory for memory_i in memory.get('memory_stats'): memory_stats = {'mem_usage':str(round(memory_i.get('usage')) / 1000000),'mem_limit':str(memory_i.get('limit') / 1000000000 * 1000)} # memory_alls.append(memory) if re.search('cpu_stats',k): cpu = {'cpu_stats':[v]} for cpu_i in cpu.get('cpu_stats'): # print cpu # for k,v in cpu_i.items(): # print v # if re.search('throttling_data',cpu_i.get('cpu_usage').get('throttling_data')): # print cpu_i # print cpu_i.get('cpu_usage').get('total_usage') # print cpu_i.get('cpu_usage').get('percpu_usage') if int(cpu_i.get('cpu_usage').get('total_usage')) != 0 and cpu_i.get('cpu_usage').get('total_usage') != None: #stats = cpu_i.get('cpu_usage').get('total_usage') / cpu_i.get('cpu_usage').get('percpu_usage')[0] cpu_stats = str(float(cpu_i.get('cpu_usage').get('total_usage') / cpu_i.get('cpu_usage').get('percpu_usage')[0]) / 100) + '%' # print stats # print cpu_i.get('cpu_usage').get('total_usage') # print cpu_i.get('cpu_usage').get('percpu_usage')[0] # print stats else: pass # cpu_alls.append(cpu) if re.search('blkio_stats',k): io = {'io_stats':[v]} io_alls.append(io) linux='python /home/zeusadmin/monitor/monitor_flow.py %s' %network_card cli = docker.Client(base_url='tcp://%s:5555' %(host_ip),version='1.20',timeout=10) ex = cli.exec_create(container=container_id, cmd=linux,user='root') ls = cli.exec_start(exec_id=ex["Id"], tty=True).strip('\r\n') if len(ls) == 0: flow = u"监控无数据" else: flow = eval(ls) # print ls # print memory_stats # print cpu_stats # print io_alls # print flow all_stats = {'code':200,'monitor_time':datetimes,'message':[{'memory_stats':memory_stats},{'flow_stats':flow},{'cpu_stats':{'cpu_usage':cpu_stats}}]} return (json.dumps(all_stats,sort_keys=True,indent=4)) # print stats # status = {'code':200,'message': [network_alls,memory_alls,cpu_alls,io_alls]} # return (json.dumps(status,sort_keys=True,indent=4)) except docker.errors.NotFound,e: return e except Exception,e: return e # print network_alls # print memory_alls # print cpu_alls # print io_alls # print cpu #print docker_monitor('10.69.111.11','33389c20e698','eth2') def flow(host_ip,container_id,network_card): try: linux='python /home/zeusadmin/monitor/monitor_flow.py %s' %network_card cli = docker.Client(base_url='tcp://%s:5555' %(host_ip),version='1.20',timeout=10) ex = cli.exec_create(container=container_id, cmd=linux,user='root') ls = cli.exec_start(exec_id=ex["Id"], tty=True).strip('\n') if len(ls) == 0: return u"监控无数据" else: return ls except Exception,e: return e #print flow('10.69.111.11','919e734b2845','eth2') def start_test(host_ip,ids,container_ip,container_gw,mount_dev,mount_path): jcdata = ''' { "HostConfig": {"Memory":%s,"MemorySwap":%s,"Binds":["/test:/opt"]} } ''' % (int('4800000000'),int('4800000000')) try: headers = {'Content-type': 'application/json', 'Accept': 'charset=utf-8'} req_start = urllib2.Request("http://%s:5555/containers/%s/start" %(host_ip,ids), jcdata, headers) response_start = urllib2.urlopen(req_start) out_start = response_start.read() ssh_c = pexpect.spawn('ssh -p21987 zeusadmin@%s "%s"' % (host_ip, 'sudo pipework em2 -i eth2 %s %s@%s && sudo mount %s %s' %(ids,container_ip,container_gw,mount_dev,mount_path))) i = ssh_c.expect(['password:', 'continue connecting (yes/no)?']) if i == 0: ssh_c.sendline(zeusadmin_pwd) elif i == 1: ssh_c.sendline('yes\n') ssh_c.expect('password: ') ssh_c.sendline(zeusadmin_pwd) ssh_c.sendline() ssh_c.sendline() return (json.dumps({'code':200,'status':'start ok'},sort_keys=True,indent=4)) except urllib2.URLError,e: return (json.dumps({'code':201,'status':'Restart has been successful, no need to restart'},sort_keys=True,indent=4)) except pexpect.EOF: ssh_c.close() return (json.dumps({'code':300,'status':'SSH connection error!'},sort_keys=True,indent=4)) except pexpect.TIMEOUT: return (json.dumps({'code':301,'status':'SSH connection TimeOut!'},sort_keys=True,indent=4)) #print start_test('10.69.111.12','d38de718a806d6123f5cfe37a7a8f6491215f5935f60263fbac3652b7e3a8f1f','10.69.112.199/24','10.69.112.254','/dev/cloud_sdd/python-docker190','/docker_data/cloud_sdd/python-docker190') if __name__ == '__main__': print "aaa" container_all = Container.objects.all() for container in container_all: host_name = container.hostname memory_total = container.memory + "000000000" print memory_total cpu_total = container.cpu images = 'centos6.7' disk_size = int(container.disk) disk_type_name ='sdd' host_ip = container.host_ip container_ip = container.container_ip container_ip_with_mask = container.container_ip + "/24" container_gw = '10.69.112.254' mount_dev = container.mount_dev mount_path = container.mount_path add_users = container.application.users_add add_users = add_users.split(' ') while '' in add_users: print add_users # add_users.remove('') # 创建容器 # create_status = container_create(host_name, memory_total, cpu_total, images, disk_size, disk_type_name, host_ip, container_ip, container_gw) # create_status = json.loads(create_status) # cid = create_status["containers_ID"] # ids = [cid] # print cid # print create_status # 启动容器 # print host_ip, cid, container_ip, container_gw, mount_dev, mount_path # start_status = start(host_ip, cid, container_ip_with_mask, container_gw, mount_dev, mount_path) # print start_status # 更新Container表 # container.container_id = cid # container.save() # 推送用户 # url = zeus_url + 'zapi/add_cmdb/' # values = {"username": zeus_user, "password": zeus_password, "ip": container_ip, # "hostname": host_name, "add_users": add_users} # values = json.dumps(values) # req = urllib2.Request(url, values) # response = urllib2.urlopen(req, timeout=300) # the_page = response.read() # print the_page
5b48673a67efc9aaacd2b58ddf39fba70fd8cc5a
9f663a205e683c442b14919e369d9302a00ae20d
/probnmn/evaluators/joint_training_evaluator.py
f6d65734e891076b1f3836989963c0cbcbb59ec1
[ "MIT" ]
permissive
minalspatil/probnmn-clevr
65b4062c289a4d6bc87047f51d17410cbc015de2
9c1b2286cf30e9fb045370153c9242a39760e02e
refs/heads/master
2022-04-12T18:08:14.782588
2020-03-10T18:54:38
2020-03-10T18:54:38
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,925
py
import logging from typing import Any, Dict, List, Type from allennlp.data import Vocabulary from torch import nn from torch.utils.data import DataLoader from probnmn.config import Config from probnmn.data.datasets import JointTrainingDataset from ._evaluator import _Evaluator logger: logging.Logger = logging.getLogger(__name__) class JointTrainingEvaluator(_Evaluator): r""" Performs evaluation for ``joint_training`` phase, using batches of evaluation examples from :class:`~probnmn.data.datasets.JointTrainingDataset`. Parameters ---------- config: Config A :class:`~probnmn.Config` object with all the relevant configuration parameters. models: Dict[str, Type[nn.Module]] All the models which interact with each other for evaluation. This should come from :class:`~probnmn.trainers.joint_training_trainer.JointTrainingTrainer`. gpu_ids: List[int], optional (default=[0]) List of GPU IDs to use or evaluation, ``[-1]`` - use CPU. cpu_workers: int, optional (default = 0) Number of CPU workers to use for fetching batch examples in dataloader. Examples -------- To evaluate a pre-trained checkpoint: >>> config = Config("config.yaml") # PHASE must be "joint_training" >>> trainer = JointTrainingTrainer(config, serialization_dir="/tmp") >>> trainer.load_checkpoint("/path/to/joint_training_checkpoint.pth") >>> evaluator = JointTrainingEvaluator(config, trainer.models) >>> eval_metrics = evaluator.evaluate(num_batches=50) """ def __init__( self, config: Config, models: Dict[str, Type[nn.Module]], gpu_ids: List[int] = [0], cpu_workers: int = 0, ): self._C = config if self._C.PHASE != "joint_training": raise ValueError( f"Trying to initialize a JointTrainingEvaluator, expected config PHASE to be " f"joint_training, found {self._C.PHASE}" ) # Initialize vocabulary, dataloader and model. self._vocabulary = Vocabulary.from_files(self._C.DATA.VOCABULARY) # There is no notion of "supervision" during evaluation. dataset = JointTrainingDataset(self._C.DATA.VAL_TOKENS, self._C.DATA.VAL_FEATURES) dataloader = DataLoader( dataset, batch_size=self._C.OPTIM.BATCH_SIZE, num_workers=cpu_workers ) super().__init__(config=config, dataloader=dataloader, models=models, gpu_ids=gpu_ids) # These will be a part of `self._models`, keep these handles for convenience. self._program_generator = self._models["program_generator"] self._nmn = self._models["nmn"] def _do_iteration(self, batch: Dict[str, Any]) -> Dict[str, Any]: r""" Perform one iteration, given a batch. Take a forward pass to accumulate metrics in :class:`~probnmn.models.program_generator.ProgramGenerator` and :class:`~probnmn.models.nmn.NeuralModulenetwork`. Parameters ---------- batch: Dict[str, Any] A batch of evaluation examples sampled from dataloader. Returns ------- Dict[str, Any] A dictionary containing model predictions and/or batch validation losses of :class:`~probnmn.models.program_generator.ProgramGenerator` and :class:`~probnmn.models.nmn.NeuralModuleNetwork`. Nested dict structure:: { "program_generator": {"predictions", "loss"} "nmn": {"predictions", "loss"} } """ pg_output_dict = self._program_generator( batch["question"], batch["program"], decoding_strategy="greedy" ) nmn_output_dict = self._nmn(batch["image"], pg_output_dict["predictions"], batch["answer"]) return {"program_generator": pg_output_dict, "nmn": nmn_output_dict}
7336bec83d355a2555ec2164ee32ecb9b9c142b6
a985e335ba516a8981e84d95a11355045bf65bd4
/class_project/homepage/cached_templates/templates/about.html.py
77eaa763644a94a66d83fe33935581722be6522a
[]
no_license
jacerm/IS413CHFProject
a392f331e84e2e50a702e6d9cbd8bc1dc097ddec
256679b43ae4fae56bfff201a3b4c7ffbf343f35
refs/heads/master
2021-01-10T10:31:46.452702
2016-03-07T15:11:38
2016-03-07T15:11:38
50,360,088
0
0
null
null
null
null
UTF-8
Python
false
false
4,794
py
# -*- coding:utf-8 -*- from mako import runtime, filters, cache UNDEFINED = runtime.UNDEFINED STOP_RENDERING = runtime.STOP_RENDERING __M_dict_builtin = dict __M_locals_builtin = locals _magic_number = 10 _modified_time = 1454635928.574405 _enable_loop = True _template_filename = 'C:/source/class/IS413/class_project/class_project/homepage/templates/about.html' _template_uri = 'about.html' _source_encoding = 'utf-8' import os, os.path, re, json _exports = ['main', 'right_aside', 'content_head', 'left_aside'] def _mako_get_namespace(context, name): try: return context.namespaces[(__name__, name)] except KeyError: _mako_generate_namespaces(context) return context.namespaces[(__name__, name)] def _mako_generate_namespaces(context): pass def _mako_inherit(template, context): _mako_generate_namespaces(context) return runtime._inherit_from(context, 'app_base.htm', _template_uri) def render_body(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: __M_locals = __M_dict_builtin(pageargs=pageargs) def main(): return render_main(context._locals(__M_locals)) def right_aside(): return render_right_aside(context._locals(__M_locals)) def content_head(): return render_content_head(context._locals(__M_locals)) def left_aside(): return render_left_aside(context._locals(__M_locals)) __M_writer = context.writer() __M_writer('s\r\n\r\n') if 'parent' not in context._data or not hasattr(context._data['parent'], 'content_head'): context['self'].content_head(**pageargs) __M_writer('\r\n\r\n') if 'parent' not in context._data or not hasattr(context._data['parent'], 'left_aside'): context['self'].left_aside(**pageargs) __M_writer('\r\n\r\n') if 'parent' not in context._data or not hasattr(context._data['parent'], 'main'): context['self'].main(**pageargs) __M_writer('\r\n\r\n') if 'parent' not in context._data or not hasattr(context._data['parent'], 'right_aside'): context['self'].right_aside(**pageargs) return '' finally: context.caller_stack._pop_frame() def render_main(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: def main(): return render_main(context) __M_writer = context.writer() __M_writer('\r\n <div class="col-sm-12 center_divider">\r\n <h3>Information</h3>\r\n <p>The Colonial Heritage Foundation (the Foundation) is a 501(c)(3) corporation dedicated to the preservation of the values, culture, skills and history of America\'s founding. To accomplish this mission, the Foundation engages in a broad array of activities. Among these are the development and presentation of educational exhibits, the coordination of reading and discussion groups to encourage the study of America\'s historical writings, the presentation of lectures and seminars regarding America\'s founding era, the coordination of historical reenactments and skill demonstrations, and the coordination of internships and apprenticeships that teach the occupational skills of early America.</p>\r\n </div>\r\n') return '' finally: context.caller_stack._pop_frame() def render_right_aside(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: def right_aside(): return render_right_aside(context) __M_writer = context.writer() __M_writer('\r\n') return '' finally: context.caller_stack._pop_frame() def render_content_head(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: def content_head(): return render_content_head(context) __M_writer = context.writer() __M_writer('\r\n <div class="container text-center">\r\n <h3>About Page</h3>\r\n </div>\r\n') return '' finally: context.caller_stack._pop_frame() def render_left_aside(context,**pageargs): __M_caller = context.caller_stack._push_frame() try: def left_aside(): return render_left_aside(context) __M_writer = context.writer() __M_writer('\r\n') return '' finally: context.caller_stack._pop_frame() """ __M_BEGIN_METADATA {"filename": "C:/source/class/IS413/class_project/class_project/homepage/templates/about.html", "line_map": {"96": 3, "66": 12, "102": 9, "72": 12, "41": 1, "108": 9, "78": 19, "114": 108, "51": 10, "84": 19, "46": 7, "56": 17, "90": 3, "28": 0}, "uri": "about.html", "source_encoding": "utf-8"} __M_END_METADATA """
6272c37f6da59e679cce3642f876a666f520c8bc
f9d564f1aa83eca45872dab7fbaa26dd48210d08
/huaweicloud-sdk-bms/huaweicloudsdkbms/v1/model/server_os_scheduler_hints.py
579c6914db427d4ce4b466ad9a6db9d1261a1232
[ "Apache-2.0" ]
permissive
huaweicloud/huaweicloud-sdk-python-v3
cde6d849ce5b1de05ac5ebfd6153f27803837d84
f69344c1dadb79067746ddf9bfde4bddc18d5ecf
refs/heads/master
2023-09-01T19:29:43.013318
2023-08-31T08:28:59
2023-08-31T08:28:59
262,207,814
103
44
NOASSERTION
2023-06-22T14:50:48
2020-05-08T02:28:43
Python
UTF-8
Python
false
false
3,131
py
# coding: utf-8 import six from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization class ServerOsSchedulerHints: """ Attributes: openapi_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ sensitive_list = [] openapi_types = { 'group': 'list[str]' } attribute_map = { 'group': 'group' } def __init__(self, group=None): """ServerOsSchedulerHints The model defined in huaweicloud sdk :param group: 反亲和性组信息。 UUID格式。 :type group: list[str] """ self._group = None self.discriminator = None if group is not None: self.group = group @property def group(self): """Gets the group of this ServerOsSchedulerHints. 反亲和性组信息。 UUID格式。 :return: The group of this ServerOsSchedulerHints. :rtype: list[str] """ return self._group @group.setter def group(self, group): """Sets the group of this ServerOsSchedulerHints. 反亲和性组信息。 UUID格式。 :param group: The group of this ServerOsSchedulerHints. :type group: list[str] """ self._group = group def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.openapi_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: if attr in self.sensitive_list: result[attr] = "****" else: result[attr] = value return result def to_str(self): """Returns the string representation of the model""" import simplejson as json if six.PY2: import sys reload(sys) sys.setdefaultencoding("utf-8") return json.dumps(sanitize_for_serialization(self), ensure_ascii=False) def __repr__(self): """For `print`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, ServerOsSchedulerHints): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
89250e1069fc42e0ed85caf67905a63377761723
cc00a20367dce4a874e16fb61988322f92db4792
/backend/goto_26148/settings.py
9bde41410140d234d92c2bbf6a5de3696580bb4b
[]
no_license
crowdbotics-apps/goto-26148
f98fd14e423250c9bb4018d63bb23b32724adfeb
c3d22bd7afd651cecc56aa1f6baafc4daed50bff
refs/heads/master
2023-04-24T08:15:03.494844
2021-05-05T09:47:11
2021-05-05T09:47:11
364,528,494
0
0
null
null
null
null
UTF-8
Python
false
false
7,185
py
""" Django settings for goto_26148 project. Generated by 'django-admin startproject' using Django 2.2.2. For more information on this file, see https://docs.djangoproject.com/en/2.2/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/2.2/ref/settings/ """ import os import environ import logging env = environ.Env() # SECURITY WARNING: don't run with debug turned on in production! DEBUG = env.bool("DEBUG", default=False) # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = env.str("SECRET_KEY") ALLOWED_HOSTS = env.list("HOST", default=["*"]) SITE_ID = 1 SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https") SECURE_SSL_REDIRECT = env.bool("SECURE_REDIRECT", default=False) # Application definition INSTALLED_APPS = [ "django.contrib.admin", "django.contrib.auth", "django.contrib.contenttypes", "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", "django.contrib.sites", "delivery_order", "driver", "menu", "delivery_user_profile", ] LOCAL_APPS = [ "home", "modules", "users.apps.UsersConfig", ] THIRD_PARTY_APPS = [ "rest_framework", "rest_framework.authtoken", "rest_auth", "rest_auth.registration", "bootstrap4", "allauth", "allauth.account", "allauth.socialaccount", "allauth.socialaccount.providers.google", "django_extensions", "drf_yasg", "storages", # start fcm_django push notifications "fcm_django", # end fcm_django push notifications ] INSTALLED_APPS += LOCAL_APPS + THIRD_PARTY_APPS MIDDLEWARE = [ "django.middleware.security.SecurityMiddleware", "django.contrib.sessions.middleware.SessionMiddleware", "django.middleware.common.CommonMiddleware", "django.middleware.csrf.CsrfViewMiddleware", "django.contrib.auth.middleware.AuthenticationMiddleware", "django.contrib.messages.middleware.MessageMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware", ] ROOT_URLCONF = "goto_26148.urls" TEMPLATES = [ { "BACKEND": "django.template.backends.django.DjangoTemplates", "DIRS": [os.path.join(BASE_DIR, "web_build")], "APP_DIRS": True, "OPTIONS": { "context_processors": [ "django.template.context_processors.debug", "django.template.context_processors.request", "django.contrib.auth.context_processors.auth", "django.contrib.messages.context_processors.messages", ], }, }, ] WSGI_APPLICATION = "goto_26148.wsgi.application" # Database # https://docs.djangoproject.com/en/2.2/ref/settings/#databases DATABASES = { "default": { "ENGINE": "django.db.backends.sqlite3", "NAME": os.path.join(BASE_DIR, "db.sqlite3"), } } if env.str("DATABASE_URL", default=None): DATABASES = {"default": env.db()} # Password validation # https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { "NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator", }, { "NAME": "django.contrib.auth.password_validation.MinimumLengthValidator", }, { "NAME": "django.contrib.auth.password_validation.CommonPasswordValidator", }, { "NAME": "django.contrib.auth.password_validation.NumericPasswordValidator", }, ] # Internationalization # https://docs.djangoproject.com/en/2.2/topics/i18n/ LANGUAGE_CODE = "en-us" TIME_ZONE = "UTC" USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/2.2/howto/static-files/ STATIC_URL = "/static/" MIDDLEWARE += ["whitenoise.middleware.WhiteNoiseMiddleware"] AUTHENTICATION_BACKENDS = ( "django.contrib.auth.backends.ModelBackend", "allauth.account.auth_backends.AuthenticationBackend", ) STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles") STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static"), os.path.join(BASE_DIR, "web_build/static"), ] STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage" # allauth / users ACCOUNT_EMAIL_REQUIRED = True ACCOUNT_AUTHENTICATION_METHOD = "email" ACCOUNT_USERNAME_REQUIRED = False ACCOUNT_EMAIL_VERIFICATION = "optional" ACCOUNT_CONFIRM_EMAIL_ON_GET = True ACCOUNT_LOGIN_ON_EMAIL_CONFIRMATION = True ACCOUNT_UNIQUE_EMAIL = True LOGIN_REDIRECT_URL = "users:redirect" ACCOUNT_ADAPTER = "users.adapters.AccountAdapter" SOCIALACCOUNT_ADAPTER = "users.adapters.SocialAccountAdapter" ACCOUNT_ALLOW_REGISTRATION = env.bool("ACCOUNT_ALLOW_REGISTRATION", True) SOCIALACCOUNT_ALLOW_REGISTRATION = env.bool("SOCIALACCOUNT_ALLOW_REGISTRATION", True) REST_AUTH_SERIALIZERS = { # Replace password reset serializer to fix 500 error "PASSWORD_RESET_SERIALIZER": "home.api.v1.serializers.PasswordSerializer", } REST_AUTH_REGISTER_SERIALIZERS = { # Use custom serializer that has no username and matches web signup "REGISTER_SERIALIZER": "home.api.v1.serializers.SignupSerializer", } # Custom user model AUTH_USER_MODEL = "users.User" EMAIL_HOST = env.str("EMAIL_HOST", "smtp.sendgrid.net") EMAIL_HOST_USER = env.str("SENDGRID_USERNAME", "") EMAIL_HOST_PASSWORD = env.str("SENDGRID_PASSWORD", "") EMAIL_PORT = 587 EMAIL_USE_TLS = True # AWS S3 config AWS_ACCESS_KEY_ID = env.str("AWS_ACCESS_KEY_ID", "") AWS_SECRET_ACCESS_KEY = env.str("AWS_SECRET_ACCESS_KEY", "") AWS_STORAGE_BUCKET_NAME = env.str("AWS_STORAGE_BUCKET_NAME", "") AWS_STORAGE_REGION = env.str("AWS_STORAGE_REGION", "") USE_S3 = ( AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY and AWS_STORAGE_BUCKET_NAME and AWS_STORAGE_REGION ) if USE_S3: AWS_S3_CUSTOM_DOMAIN = env.str("AWS_S3_CUSTOM_DOMAIN", "") AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"} AWS_DEFAULT_ACL = env.str("AWS_DEFAULT_ACL", "public-read") AWS_MEDIA_LOCATION = env.str("AWS_MEDIA_LOCATION", "media") AWS_AUTO_CREATE_BUCKET = env.bool("AWS_AUTO_CREATE_BUCKET", True) DEFAULT_FILE_STORAGE = env.str( "DEFAULT_FILE_STORAGE", "home.storage_backends.MediaStorage" ) MEDIA_URL = "/mediafiles/" MEDIA_ROOT = os.path.join(BASE_DIR, "mediafiles") # start fcm_django push notifications FCM_DJANGO_SETTINGS = {"FCM_SERVER_KEY": env.str("FCM_SERVER_KEY", "")} # end fcm_django push notifications # Swagger settings for api docs SWAGGER_SETTINGS = { "DEFAULT_INFO": f"{ROOT_URLCONF}.api_info", } if DEBUG or not (EMAIL_HOST_USER and EMAIL_HOST_PASSWORD): # output email to console instead of sending if not DEBUG: logging.warning( "You should setup `SENDGRID_USERNAME` and `SENDGRID_PASSWORD` env vars to send emails." ) EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
8fb0bf98600c1381d10f34262757f2e44f563665
a1a7d221c3ba95ff13a12ea06cc1b3cf6ad71536
/Ising Model/Python Module/ising model - animation.py
7d7bfeb65f86a0f59a073f0ad8ae9e3e56af3438
[]
no_license
nshettell/Lattice-Fundamentals
0b4fc017a04d15f608dd87b173ecd2afbcc654ad
4fcc0149549d371cf4bfef6e100c03e34f842c3a
refs/heads/master
2016-08-04T10:32:43.793014
2013-01-30T15:19:40
2013-01-30T15:19:40
7,488,967
2
0
null
null
null
null
UTF-8
Python
false
false
11,918
py
class Sphere_C: def __init__(self,spin,pos,trans_factor): self.colour='Red' if spin==1 else 'Blue' self.trans=trans_factor self.i=pos[0] self.j=pos[1] self.k=pos[2] def msg(self): return """sphere {<%d,%d,%d>, 0.25 texture{pigment{color %s} finish{phong 1}} transmit %f} """ %(self.i,self.j,self.k,self.colour,self.trans) ################################################################################ class Arrow: def __init__(self,spin,pos,trans_factor): self.rotate='<45,-45,0>' if spin==1 else '<-45,135,0>' self.trans=trans_factor self.i=pos[0] self.j=pos[1] self.k=pos[2] def msg(self): return """union { cylinder{ <0,0,0.25>,<0,0,-0.25>,0.17 texture{pigment{color Green} finish{phong 1}}} cone{ <0,0,-0.25>, 0.28 <0,0,-0.5>, 0 texture{pigment{color Green} finish{phong 1}}} rotate %s transmit %f translate <%d,%d,%d>} """ %(self.rotate,self.trans,self.i,self.j,self.k) ################################################################################ class Arrow_C: def __init__(self,spin,pos,trans_factor): self.rotate='<45,-45,0>' if spin==1 else '<-45,135,0>' self.colour='Red' if spin==1 else 'Blue' self.trans=trans_factor self.i=pos[0] self.j=pos[1] self.k=pos[2] def msg(self): return """union { cylinder{ <0,0,0.25>,<0,0,-0.25>,0.17 texture{pigment{color %s} finish{phong 1}}} cone{ <0,0,-0.25>, 0.28 <0,0,-0.5>, 0 texture{pigment{color %s} finish{phong 1}}} rotate %s transmit %f translate <%d,%d,%d>} """ %(self.colour,self.colour,self.rotate,self.trans,self.i,self.j,self.k) ################################################################################ ################################################################################ def resolutions(): R=[[128,128],[160,120],[320,200],[320,240],[512,384],[640,480],[800,600],[1024,768],[1280,1024],[1600,1200]] print "The possible resolutions are:" for r in R: print "%dx%d" %(r[0],r[1]) ################################################################################ def _ini_creator(res,image,frames,filename): if image=="jpeg": code="J" elif image=="png": code="N" else: code="B" return """ ;POV-Ray animation ini file ;Visual Representation of an Ising model Square Lattice ;Version 1.2 ;Author: Nathan Shettell Antialias=Off Antialias_Threshold=0.1 Antialias_Depth=2 Display=Off +W%d +H%d Input_File_Name='%s' Output_File_Type=%s Initial_Frame=1 Final_Frame=%d Initial_Clock=0 Final_Clock=1 Cyclic_Animation=on Pause_when_Done=off """ %(res[0],res[1],filename,code,frames) ################################################################################ def _pov_creator(axis,offset,Lx,Ly,Lz): if axis=='x': if offset=='none': loc="<%f,%f,%f>" %(-max(Ly,Lz),0.5*Ly,0.5*Lz) elif offset=='small': loc="<%f,%f,%f>" %(-max(Ly,Lz),0.8*Ly,0.8*Lz) else: loc="<%f,%f,%f>" %(-1.5*max(Ly,Lz),1.2*Ly,1.2*Lz) elif axis=='y': if offset=='none': loc="<%f,%f,%f>" %(0.5*Lx,-max(Lx,Lz),0.5*Lz) elif offset=='small': loc="<%f,%f,%f>" %(0.8*Lx,-max(Lx,Lz),0.8*Lz) else: loc="<%f,%f,%f>" %(1.2*Lx,-1.5*max(Lx,Lz),1.2*Lz) elif axis=='z': if offset=='none': loc="<%f,%f,%f>" %(0.5*Lx,0.5*Ly,-max(Lx,Ly)) elif offset=='small': loc="<%f,%f,%f>" %(0.8*Lx,0.8*Ly,-max(Lx,Ly)) else: loc="<%f,%f,%f>" %(1.2*Lx,1.2*Ly,-1.6*max(Lx,Ly)) look="<%f,%f,%f>" %(0.5*Lx,0.5*Ly,0.5*Lz) return """ //Visual Representation of an Ising model Square Lattice //Version 1.2 //Author: Nathan Shettell #include "shapes.inc" #include "textures.inc" #include "colors.inc" global_settings { assumed_gamma 1} camera { location %s look_at %s} background {rgb <1,1,1>} """ %(loc,look) ################################################################################ def start(file_info,file_out,res=[640,480]): """ Version 1.2 This function must intake 2 parameter: file_info: The name of the file the information is found on. All of the following lines should contain information about the spin objects at certain positions in the Lattice. After the script has encountered enough spin objects to fill the lattice it will assume the rest of the objects belong on following frames. file_out: The desired file name used to render the image. Should be of the form .ini. All associated files will be created with the same name but with varying extensions. The optional parameter determines the resolution of the images created. The default is 640x480. To view the other options please call the function: resolutions(). It must be entered in the form: [W,H]. Where W and H are integers (image witdth and height) when the different resolutions are printed they are in the form WxH. If a valid resolution is not entered, the default will be used. """ #Gather information about the lattice size while True: try: Lx=raw_input("Please enter the size of the lattice in the x-direction (a positive integer): ") Lx=int(Lx) if Lx<=0: print "That was not a valid entry, please try again" else: break except ValueError: print "That was not a valid entry, please try again" while True: try: Ly=raw_input("Please enter the size of the lattice in the y-direction (a positive integer): ") Ly=int(Ly) if Ly<=0: print "That was not a valid entry, please try again" else: break except ValueError: print "That was not a valid entry, please try again" while True: try: Lz=raw_input("Please enter the size of the lattice in the z-direction (a positive integer): ") Lz=int(Lz) if Lz<=0: print "That was not a valid entry, please try again" else: break except ValueError: print "That was not a valid entry, please try again" #The files which will be accessed during the script f_i=open(file_info,'r') ini=open(file_out,'w') pov=open(file_out[:-4]+'.pov','w') Lattice={(i,j,k):[] for i in range(Lx) for j in range(Ly) for k in range(Lz)} #Note: #Lattice is a dictionary where (i,j) will represent the location of the object on the lattice #And the value will represent a list of all spins at that location. counter=0 #A counter to determine how many frames are needed info=filter(lambda i: i!='\n', f_i.readlines()) info=[i.split() for i in info] j,k=0,0 for spins in info: if j==Ly: j=0 k+=1 if k==Lz: k=0 counter+=1 i=0 for spin in spins: Lattice[(i,j,k)]+=[int(spin)] i+=1 j+=1 counter+=1 #Doesn't update the last frame #After the for-loop has finished running all of the data has been analyzed #Hence the information file can be closed: f_i.close() #Gather more information: print """ This program will now gather information on how you would like to view the lattice. Note: user input is case sensative. The first option allows the viewer to choose whether they want the camera to look at the center with an offset angle from 0 degrees. The available options are: none, small, large. The second option allows the user to choose what axis the camera should be located. The options are: x, y, z. For example, if it was a 2D lattice, the best option would be the z axis.\ The third option allows the user to choose the file type of the images created. The options are: jpeg, png, bmp. The fourth option allows the user to choose the method which the data is represented. The options are: colours, arrows, arrows+colours. The fifth option allows the user to choose whether or not some objects appear transparent or not, if yes then the objects at the front will appear transparent. The options are: yes, no. """ while True: offset=raw_input("Please enter the offset value: ") if offset!='none' and offset!='small' and offset!='large': print "You did not input an available option, please enter: none, small or large." else: break while True: cam=raw_input("Please enter the camera-axis value: ") if cam!='x' and cam!='y' and cam!='z': print "You did not input an available option, please enter: x, y or z." else: break while True: image=raw_input("Please enter the desired image type: ") if image!='jpeg' and image!='png' and image!='bmp': print "You did not input an available option, please enter: jpeg, png or bmp." else: break while True: rep=raw_input("Please enter the desired representation type: ") if rep!='colours' and rep!='arrows' and rep!='arrows+colours': print "You did not input an available option, please enter: colours, arrows or arrows+colours." else: break while True: trans=raw_input("Please enter if transparency is wanted: ") if trans!='yes' and trans!='no': print "You did not input an available option, please enter: yes or no." else: break resolutions=[[128,128],[160,120],[320,200],[320,240],[512,384],[640,480],[800,600],[1024,768],[1280,1024],[1600,1200]] if res not in resolutions: res=[640,480] ini.write(_ini_creator(res,image,counter,file_out[:-4]+'.pov')) ini.close() pov.write(_pov_creator(cam,offset,Lx,Ly,Lz)) #Add the sphapes to the image frame=1 while frame<=counter: pov.write("#if (frame_number = %d)\n" %(frame)) for pos in Lattice: if trans=="yes" and cam=='x' and Lx>1: t_factor=0.5-pos[0]*0.5/Lx elif trans=="yes" and cam=='y' and Ly>1: t_factor=0.5-pos[1]*0.5/Ly elif trans=="yes" and cam=='z' and Lz>1: t_factor=0.5-pos[2]*0.5/Lz else: t_factor=0 if rep=='colours': temp=Sphere_C(Lattice[pos][frame-1],(pos[0],pos[1],pos[2]),t_factor) pov.write(temp.msg()) elif rep=='arrows': temp=Arrow(Lattice[pos][frame-1],(pos[0],pos[1],pos[2]),t_factor) pov.write(temp.msg()) else: temp=Arrow_C(Lattice[pos][frame-1],(pos[0],pos[1],pos[2]),t_factor) pov.write(temp.msg()) pov.write("#end\n") frame+=1 #Adds the cylinders ('bonds') to the image Bx=[(i,j,k) for i in range(Lx-1) for j in range(Ly) for k in range(Lz)] By=[(i,j,k) for i in range(Lx) for j in range(Ly-1) for k in range(Lz)] Bz=[(i,j,k) for i in range(Lx) for j in range(Ly) for k in range(Lz-1)] for bond in Bx: i=bond[0] j=bond[1] k=bond[2] s="cylinder{<%d,%d,%d>,<%d,%d,%d>,0.07 texture{pigment{color NewTan} finish{phong 1}}}\n" %(i,j,k,i+1,j,k) pov.write(s) for bond in By: i=bond[0] j=bond[1] k=bond[2] s="cylinder{<%d,%d,%d>,<%d,%d,%d>,0.07 texture{pigment{color NewTan} finish{phong 1}}}\n" %(i,j,k,i,j+1,k) pov.write(s) for bond in Bz: i=bond[0] j=bond[1] k=bond[2] s="cylinder{<%d,%d,%d>,<%d,%d,%d>,0.07 texture{pigment{color NewTan} finish{phong 1}}}\n" %(i,j,k,i,j,k+1) pov.write(s) pov.close()
81347f9541848685530816c9c8e219f8e7efe407
7361ee0129351b8bb594b7a7bb47c143de84dd36
/1911.py
ffc13a51c5dc193fb77a0e1bfdc2509570e3c33c
[]
no_license
antonioroddev/Uri
5d22c3ba3e01977674874cc4d1ad38ecb8be1ee9
12e7c447e79db71ff13587de0079d0a5bcdac218
refs/heads/master
2022-05-22T12:03:33.717084
2022-04-14T01:52:26
2022-04-14T01:52:26
216,880,192
0
0
null
null
null
null
UTF-8
Python
false
false
514
py
while True: n = int(input()) if n == 0: break dicionario = {} for i in range(n): lista = input().split() dicionario.update({lista[0]:lista[1]}) contador = 0 alunos = int(input()) for i in range(alunos): lista = input().split() erros = 0 for i in range (len(dicionario[lista[0]])): if dicionario[lista[0]][i] != lista[1][i]: erros += 1 if erros >= 2: contador += 1 print(contador)
e0aec676dc3d38a1ac50e212dfa17fc84d953d96
23240c2ab58e40becdbc327b683504314579c0ef
/tools/syll_count.py
59d6448ca6dfe636863c8fc66bf3f5ca53b3e396
[]
no_license
dean-shaff/poems
7f8145884f1cc8cfa08369c3594f8902f80d8e51
893e24929cd9c1cb9f9e2dfd9eb760902b9f8076
refs/heads/master
2016-09-06T11:47:37.947778
2015-03-10T20:34:19
2015-03-10T20:34:19
23,531,052
1
0
null
null
null
null
UTF-8
Python
false
false
2,925,222
py
syll_dic = { "a cappella":4, "a fortiori":5, "a gogo":3, "a posteriori":6, "a priori":4, "a tempo":3, "a-plenty":2, "aalborg":2, "aalto":2, "aardvark":2, "aardwolf":2, "aarau":2, "aargau":2, "aarhus":2, "aaron":2, "aaronitic":4, "aachen":2, "aalesund":3, "aalii":3, "aaron":2, "aaron's beard":3, "aaron's rod":3, "aaron's-beard":2, "aaronic":3, "aaronite":3, "aaronical":4, "ab initio":5, "ab ovo":3, "abb":1, "abbevillian":4, "abbevilean":4, "abbr":1, "abbrev":1, "abd-al-kadir":2, "abd-al-rahman":2, "abd-el-kadir":2, "abl":1, "abp":1, "abr":1, "absinth":1, "aba":2, "abactinal":4, "abamp":2, "abampere":3, "abaptiston":4, "abattis":3, "abattoir":3, "abaxial":4, "abaca":3, "abaci":3, "abacist":3, "abacisci":4, "abaciscus":4, "abaco":3, "abacus":3, "abacuses":4, "abadan":3, "abalone":4, "abaris":3, "abatis":3, "abb":2, "abba":2, "abba":2, "abbai":2, "abbasid":3, "abbassid":3, "abbasside":3, "abbacy":3, "abbatial":3, "abbe":2, "abbess":2, "abbey":2, "abbey":2, "abbey theatre":5, "abbeystead":3, "abbeystede":3, "abbeville":3, "abbie":2, "abbot":2, "abbot":2, "abbotsford":3, "abbott":2, "abbotcy":3, "abbotship":3, "abboud":2, "abbreviate":4, "abbreviated":5, "abbreviating":5, "abbreviation":5, "abbreviator":5, "abby":2, "abb":3, "abbs":3, "abcoulomb":3, "abderhalden":4, "abderus":3, "abdias":3, "abdicant":3, "abdicate":3, "abdicated":4, "abdicating":4, "abdicable":4, "abdication":4, "abdicative":4, "abdicator":4, "abdominal":4, "abdominally":5, "abdominous":4, "abdon":2, "abdomen":3, "abduce":2, "abduced":2, "abduct":2, "abducing":3, "abduction":3, "abductor":3, "abdul-aziz":3, "abdul-hamid ii":4, "abducens":3, "abducens nerve":4, "abducent":3, "abducentes":4, "abercrombie":4, "aberdare":3, "aberdeen":3, "aberdeen angus":5, "aberdeenshire":4, "aberdonian":5, "abernethy":4, "aberrance":3, "aberrant":3, "aberrancy":4, "aberration":4, "aberrational":5, "aberystwyth":4, "abesse":3, "abessive":3, "abelard":3, "abeokuta":5, "abfarad":3, "abgatha":3, "abhenry":3, "abhominable":5, "abhor":2, "abhorred":2, "abhorrence":3, "abhorrent":3, "abhorrently":4, "abhorrer":3, "abhorring":3, "abingdon":3, "abingger":3, "abington":3, "abirritant":4, "abirritate":4, "abirritated":5, "abirritating":5, "abirritation":5, "abirritative":5, "abia":3, "abidjan":3, "abient":3, "abietic acid":6, "abietate":4, "abigail":3, "abigail":3, "abilene":3, "abilyne":3, "abiotrophy":5, "abiotrophic":5, "abisag":3, "abishag":3, "abject":2, "abjectedness":4, "abjectly":3, "abjectness":3, "abjection":3, "abjective":3, "abjunction":3, "abjure":2, "abjured":2, "abjuratory":5, "abjurer":3, "abjuring":3, "abjuration":4, "abkhaz":2, "abkhasia":4, "abkhasian":4, "abkhazia":4, "abkhazian":4, "ablactate":3, "ablactated":4, "ablactating":4, "ablactation":4, "ablate":2, "ablated":3, "ablating":3, "ablaut":2, "ablation":3, "ablative":3, "ablative absolute":6, "ablatival":4, "ablator":3, "ablegate":3, "abluent":3, "ablution":3, "ablutionary":5, "abmho":2, "abmodality":5, "abnaki":3, "abner":2, "abney level":4, "abnegate":3, "abnegated":4, "abnegating":4, "abnegation":4, "abnegator":4, "abnormal":3, "abnormal psychology":7, "abnormalcy":4, "abnormalise":4, "abnormalised":4, "abnormalising":5, "abnormalize":4, "abnormalized":4, "abnormalizing":5, "abnormality":5, "abnormally":4, "abnormalness":4, "abnormity":4, "abo":2, "abo":2, "abohm":2, "abos":2, "abolition":4, "abolitionary":6, "abolitionise":5, "abolitionised":5, "abolitionism":5, "abolitionist":5, "abolitionising":6, "abolitionize":5, "abolitionized":5, "abolitionizing":6, "abomasum":4, "abomasus":4, "aborad":3, "aboral":3, "aboriginal":5, "aboriginal":5, "aboriginality":7, "aboriginally":6, "aborigine":5, "aborigine":5, "abracadabra":5, "abreact":3, "abreaction":4, "abrogate":3, "abrogated":4, "abrogating":4, "abrogable":4, "abrogation":4, "abrogative":4, "abrogator":4, "abrupt":2, "abruptly":3, "abruptness":3, "abruption":3, "absalom":3, "abscess":2, "abscessed":2, "abscind":2, "abscise":2, "abscised":2, "abscising":3, "abscissa":3, "abscissae":3, "abscissas":3, "abscission":3, "abscission layer":5, "abscond":2, "absconder":3, "abseil":2, "absence":2, "absent":2, "absent without leave":5, "absent-minded":3, "absent-mindedness":4, "absenter":3, "absently":3, "absentmindedly":5, "absentness":3, "absentation":4, "absente reo":5, "absentee":3, "absentee landlord":5, "absenteeism":4, "absentia":4, "absecon":3, "absinth":2, "absinthe":2, "absinthism":3, "absinthial":4, "absinthian":4, "absit omen":4, "absolve":2, "absolved":2, "absolvable":4, "absolver":3, "absolving":3, "absolutory":5, "absolvent":3, "absorb":2, "absorbed":2, "absorbance":3, "absorbability":6, "absorbable":4, "absorbedly":4, "absorbedness":4, "absorbent":3, "absorbent cotton":5, "absorbency":4, "absorber":3, "absorbing":3, "absorbingly":4, "absorptance":3, "absorption":3, "absorption factor":5, "absorption spectrum":5, "absorptive":3, "absorptiveness":4, "absorptivity":5, "absorptiometer":6, "absorptiometric":6, "absorbefacient":5, "absolute":3, "absolute":3, "absolute alcohol":6, "absolute ceiling":5, "absolute humidity":7, "absolute magnitude":6, "absolute majority":7, "absolute monarchy":6, "absolute music":5, "absolute pitch":4, "absolute temperature":7, "absolute unit":5, "absolute value":5, "absolute viscosity":7, "absolute zero":5, "absolutely":4, "absoluteness":4, "absolutism":4, "absolutist":4, "absolution":4, "absolutistic":5, "absolutistically":7, "absonant":3, "absquatulate":4, "abstain":2, "abstainer":3, "abstention":3, "abstentious":3, "absterge":2, "absterged":2, "absterging":3, "abstergent":3, "abstersion":3, "abstersive":3, "abstersiveness":4, "abstemious":4, "abstemiously":5, "abstemiousness":5, "abstinence":3, "abstinent":3, "abstinently":4, "abstinency":4, "abstract":2, "abstract expressionism":6, "abstract noun":3, "abstract of title":5, "abstracted":3, "abstractedly":4, "abstractedness":4, "abstracter":3, "abstractly":3, "abstractness":3, "abstraction":3, "abstractional":4, "abstractionism":4, "abstractionist":4, "abstractive":3, "abstractively":4, "abstractiveness":4, "abstriction":3, "abstruse":2, "abstrusely":3, "abstruseness":3, "abstrusity":4, "absurd":2, "absurdity":4, "absurdly":3, "absurdness":3, "absyrtus":3, "abu dhabi":4, "abu simbel":4, "abvolt":2, "abwatt":2, "abyssinia":5, "abyssinian":5, "abyssinian cat":6, "abyla":3, "ablard":4, "ac-globulin":3, "ace":1, "acey-deucy":3, "ache":1, "achaemenidae":5, "achaemenian":5, "achalasia":4, "acheron":3, "achelous":4, "acheson":3, "achill":2, "achill island":4, "achillean":4, "aching":2, "achingly":3, "achkan":2, "achlamydeous":5, "achmed":2, "acholuric":4, "acholuria":5, "achroite":3, "achromat":3, "achromate":3, "achromatic":4, "achromatic color":6, "achromatic lens":5, "achromatically":6, "achromaticity":6, "achromycin":4, "achsah":2, "ack-ack":1, "ackee":2, "ackerley":3, "ackey":2, "ackley":2, "ackton":2, "acorable":3, "acpt":1, "act":1, "act of contrition":5, "actg":1, "actability":5, "actable":3, "acting":2, "acanthaceous":4, "acanthocladous":5, "acanthopterygian":7, "acanthotic":4, "acanthodian":5, "acanthosis":4, "acaulescence":4, "acaulescent":4, "academe":3, "academic":4, "academic dress":5, "academia":5, "academical":5, "academicals":5, "academically":6, "academicism":5, "academia":5, "academus":4, "acajou":3, "acaleph":3, "acalephe":3, "acamas":3, "acari":3, "acarid":3, "acarine":3, "acariasis":5, "acaroid":3, "acaroid gum":4, "acarologist":5, "acarology":5, "acarophobia":6, "acarus":3, "accad":2, "accadian":4, "accede":2, "acceded":3, "accedence":3, "acceder":3, "acceding":3, "accelerant":4, "accelerando":5, "accelerate":4, "accelerated":5, "acceleratedly":6, "accelerating":5, "accelerable":5, "acceleration":5, "accelerative":5, "accelerator":5, "acceleratory":6, "accelerometer":6, "accent":2, "accentless":3, "accentor":3, "accentual":4, "accentuality":6, "accentually":5, "accentuate":4, "accentuated":5, "accentuating":5, "accentuable":5, "accentuation":5, "accentuator":5, "accept":2, "acceptance":3, "acceptant":3, "acceptancy":4, "acceptability":6, "acceptable":4, "acceptableness":5, "acceptably":4, "accepted":3, "acceptedly":4, "acceptee":3, "accepter":3, "acceptation":4, "acceptor":3, "access":2, "access road":3, "access time":3, "accessarily":5, "accessariness":5, "accessary":4, "accession":3, "accession number":5, "accessional":4, "accessibility":6, "accessible":4, "accessibly":4, "accessorize":4, "accessorized":4, "accessorizing":5, "accessorial":5, "accessorii":5, "accessorily":5, "accessoriness":5, "accessorius":5, "accessory":4, "accessory fruit":5, "accessory nerve":5, "acciaccaturas":4, "acciaccatura":5, "acciaccature":5, "accipiter":4, "accipitral":4, "accipitrine":4, "accidence":3, "accident":3, "accident insurance":6, "accident-prone":3, "accidental":4, "accidentalism":5, "accidentalist":5, "accidentality":6, "accidentally":5, "accidentalness":5, "accidie":3, "accius":3, "acclaim":2, "acclaimer":3, "acclamatory":5, "acclamation":4, "acclivitous":4, "acclivity":4, "acclimate":3, "acclimatable":5, "acclimated":4, "acclimating":4, "acclimation":4, "acclimatise":4, "acclimatised":4, "acclimatisable":6, "acclimatiser":5, "acclimatising":5, "acclimatize":4, "acclimatized":4, "acclimatizable":6, "acclimatizing":5, "acclimatisation":6, "acclimatization":6, "acclivous":3, "accompt":2, "accommodate":4, "accommodated":5, "accommodating":5, "accommodatingly":6, "accommodable":5, "accommodation":5, "accommodation address":7, "accommodation bill":6, "accommodation ladder":7, "accommodational":6, "accommodative":5, "accommodativeness":6, "accommodator":5, "accompanied":4, "accompanist":4, "accompanier":5, "accompaniment":5, "accompany":4, "accompanying":5, "accompanyist":5, "accomplice":3, "accomplish":3, "accomplished":3, "accomplishable":5, "accomplisher":4, "accomplishment":4, "accord":2, "accordance":3, "accordant":3, "accordantly":4, "accordable":4, "accorder":3, "according":3, "accordingly":4, "accordatura":5, "accordaturas":5, "accordature":5, "accordion":4, "accordion pleats":5, "accordionist":5, "accost":2, "accostable":4, "accosted":3, "accoucheuse":2, "accouchement":3, "account":2, "account day":3, "account for":3, "account payable":5, "account receivable":6, "accountant":3, "accountantship":4, "accountancy":4, "accountability":6, "accountable":4, "accountableness":5, "accountably":4, "accounting":3, "accoucheur":3, "accoucheuse":3, "accouplement":4, "accouter":3, "accouterment":3, "accouterment":4, "accoutre":3, "accoutrement":3, "accoutrement":4, "accolade":3, "accoladed":4, "accolated":4, "accra":2, "accra":2, "accredit":3, "accreditment":4, "accreditation":5, "accrescent":3, "accrete":2, "accreted":3, "accreting":3, "accretion":3, "accretionary":5, "accretive":3, "accrington":3, "accroach":2, "accroachment":3, "accrue":2, "accrued":2, "accruement":3, "accrual":3, "accruing":3, "acculturate":4, "acculturated":5, "acculturating":5, "acculturation":5, "acculturational":6, "acculturationist":6, "acculturative":5, "acculturize":4, "acculturized":4, "acculturizing":5, "accumbent":3, "accumbency":4, "accurst":2, "accursed":3, "accursedly":4, "accursedness":4, "accuse":2, "accused":2, "accusal":3, "accusant":3, "accusable":4, "accusably":4, "accuser":3, "accusing":3, "accusingly":4, "accustom":3, "accustomed":3, "accustomedly":4, "accustomedness":4, "accumulate":4, "accumulated":5, "accumulating":5, "accumulable":5, "accumulation":5, "accumulation point":6, "accumulative":5, "accumulatively":6, "accumulativeness":6, "accumulator":5, "accurate":3, "accurately":4, "accurateness":4, "accuracy":4, "accusation":4, "accusative":4, "accusatively":5, "accusatival":5, "accusatorial":6, "accusatorially":7, "accusatory":5, "accutron":3, "acerate":3, "acerbate":3, "acerbated":4, "acerbating":4, "acerdol":3, "acerose":3, "acerous":3, "acetaldehyde":5, "acetamid":4, "acetamide":4, "acetanilid":5, "acetanilide":5, "acetanisidine":6, "acetazolamide":6, "acesodynous":5, "acetabular":5, "acetabuliform":6, "acetabulum":5, "acetal":3, "acetaldol":4, "acetate":3, "acetate rayon":5, "acetated":4, "acetation":4, "acetimeter":5, "acetimetry":5, "acetin":3, "acetimetric":5, "acetometer":5, "acetometry":5, "acetone":3, "acetone body":5, "acetonic":4, "acetose":3, "acetous":3, "acetometrical":6, "acetometrically":7, "acetonitrile":5, "acetophenetidin":7, "acetophenetidine":7, "acetophenone":5, "acetostearin":6, "acetyl":3, "acetylcholine":5, "acetylic":4, "acetylsalicylic acid":9, "acid":2, "acid drop":3, "acid rock":3, "acid soil":3, "acid test":3, "acid value":4, "acid-fast":2, "acid-fastness":3, "acid-forming":3, "acid-head":2, "acidize":3, "acidized":3, "acidizing":4, "acidly":3, "acidness":3, "acidy":3, "acing":2, "acidalium":5, "acidanthera":5, "acidemia":5, "acidimeter":5, "acidimetry":5, "acidimetric":5, "acidimetrically":7, "acidolysis":5, "acidometer":5, "acidophilus":5, "acidophilus milk":6, "acidotic":4, "acidogenic":5, "acidophil":4, "acidophile":4, "acidophilic":5, "acidosis":4, "aciduric":4, "acierate":4, "acierated":5, "acierating":5, "acieration":5, "aciform":3, "acinaciform":5, "acinarious":5, "acinaceous":4, "acinose":3, "acinous":3, "acinus":3, "acknowledge":3, "acknowledged":3, "acknowledgedly":4, "acknowledgeable":5, "acknowledgement":4, "acknowledger":4, "acknowledging":4, "acknowledgment":4, "aclaurin":3, "acle":2, "acmaesthesia":4, "acme":2, "acmesthesia":4, "acmic":2, "acmite":2, "acmon":2, "acne":2, "acnemia":4, "acnode":2, "acnodal":3, "acol":2, "acoustician":4, "acoasm":3, "acocotl":3, "acolyte":3, "aconite":3, "aconitic":4, "aconitum":4, "acquaint":2, "acquaintance":3, "acquaintanceship":4, "acquainted":3, "acquaintedness":4, "acquest":2, "acquire":2, "acquired":2, "acquired characteristic":7, "acquired taste":3, "acquirement":3, "acquirability":6, "acquirable":4, "acquirer":3, "acquiring":3, "acquisitive":4, "acquisitively":5, "acquisitiveness":5, "acquit":2, "acquittal":3, "acquittance":3, "acquitted":3, "acquitter":3, "acquitting":3, "acquiesce":3, "acquiescingly":5, "acquiescence":4, "acquiescent":4, "acquiescently":5, "acquisition":4, "acrid":2, "acridly":3, "acridine":3, "acriflavine":4, "acriflavine hydrochloride":8, "acrilan":3, "acrimonious":5, "acrimoniously":6, "acrimoniousness":6, "acrimony":4, "acron":2, "acrobat":3, "acrobatic":4, "acrobatics":4, "acrobatism":4, "acrobatical":5, "acrobatically":6, "acrocarpous":4, "acrocephalous":5, "acrocephaly":5, "acrocephalic":5, "acrocephalia":5, "acrocorinth":4, "acrocyanosis":6, "acrodont":3, "acrodontism":4, "acrodrome":3, "acrodynia":5, "acrogen":3, "acrogenic":4, "acrolith":3, "acrolithic":4, "acrologic":4, "acrologically":6, "acromegaly":5, "acromegalic":5, "acromicria":5, "acronal":3, "acronym":3, "acronymic":4, "acrophonic":4, "acrophonically":6, "acrophobia":5, "acropolitan":5, "acrospire":3, "acrospore":3, "acrosporous":4, "acrostolia":5, "acrostolium":5, "acroter":3, "acroteral":4, "acroteria":5, "acroterial":5, "acroterion":5, "acroterium":5, "acrotism":3, "acrylaldehyde":5, "acrylyl":3, "acrylate":3, "acrylonitrile":5, "acrylyl":3, "acta":2, "actaeon":3, "actin":2, "actinic":3, "actinism":3, "actinia":4, "actiniae":4, "actinian":4, "actinically":5, "actiniform":4, "actinium":4, "actinium series":6, "actinochemistry":6, "actinodrome":4, "actinogram":4, "actinograph":4, "actinographic":5, "actinolite":4, "actinolitic":5, "actinomycetous":6, "actinopod":4, "action":2, "action painting":4, "action potential":5, "action replay":4, "action stations":4, "actionable":4, "actionably":4, "actionless":3, "actis":2, "active":2, "active duty":4, "active list":3, "active service":4, "actively":3, "activeness":3, "activism":3, "activist":3, "activize":3, "activized":3, "activizing":4, "activity":4, "actinal":3, "actinally":4, "actinide":3, "actinide series":5, "actinodromous":5, "actinography":5, "actinoid":3, "actinology":5, "actinometer":5, "actinometry":5, "actinon":3, "actinopterygian":7, "actinobacillotic":7, "actinobacillosis":7, "actinobacilli":6, "actinobacillus":6, "actinochemistry":6, "actinochemical":6, "actinodermatitis":7, "actinomere":4, "actinometric":5, "actinomorphic":5, "actinomorphous":5, "actinomorphy":5, "actinomyces":5, "actinomycete":5, "actinomycin":5, "actinomycotic":6, "actinomycosis":6, "actinotherapy":6, "actinouranium":7, "actinozoan":5, "actium":3, "activate":3, "activated":4, "activated alumina":8, "activated carbon":6, "activated sludge":5, "activating":4, "activation":4, "activator":4, "acton":2, "acton":2, "actor":2, "actor":2, "actor-proof":2, "actoridae":4, "actomyosin":5, "actress":2, "actual":3, "actualise":4, "actualised":4, "actualism":4, "actualist":4, "actualising":5, "actualistic":5, "actualize":4, "actualized":4, "actualizing":5, "actuality":5, "actualization":6, "actually":4, "actualness":4, "actuary":3, "actuaries":4, "actuarial":5, "actuarially":6, "actuary":4, "actuate":3, "actuated":4, "actuating":4, "actuation":4, "actuator":4, "acuate":3, "acumen":3, "acupuncture":4, "acupunctured":4, "acupuncturing":5, "acusection":4, "acusector":4, "acyl":2, "acylate":3, "acylated":4, "acylating":4, "acylation":4, "ad hominem":4, "ad infinitum":5, "ad interim":4, "ad litem":3, "ad nauseam":4, "ad valorem":4, "ad-lib":1, "add":1, "addable":3, "added sixth":3, "addedly":3, "adder":2, "adding machine":4, "addible":3, "adj":1, "adjt":1, "adv":1, "advt":1, "adz":1, "adze":1, "adage":2, "adalbert":3, "adam":2, "adam's apple":4, "adam's-needle":3, "adam-and-eve":2, "adams":2, "adams-stokes syndrome":4, "adamsite":3, "adamic":3, "adamite":3, "adamitic":4, "adaptation":4, "adaptational":5, "adaptationally":6, "adaxial":4, "adama":3, "adamant":3, "adamantine":4, "adamas":3, "adamawa":4, "addams":2, "addax":2, "addend":2, "addendum":3, "adder":2, "adder's-meat":2, "adder's-mouth":2, "adder's-tongue":2, "addict":2, "addicted":3, "addictedness":4, "addiction":3, "addictive":3, "addie":2, "addington":3, "addis ababa":5, "additament":4, "additamentary":6, "addison":3, "addison's disease":5, "addisonian":5, "addition":3, "additional":4, "additionally":5, "additive":3, "additively":4, "additory":4, "addle":2, "addlebrained":3, "addlepated":4, "addorsed":2, "address":2, "addressee":3, "addresser":3, "addressing":3, "addrest":2, "addressor":3, "addressograph":4, "adduce":2, "adduced":2, "adduceable":4, "adduct":2, "adducer":3, "adducing":3, "adducible":4, "adduction":3, "adductive":3, "adductor":3, "adducent":3, "addy":2, "adee":2, "adelbert":3, "adelheid":3, "adenological":6, "adept":2, "adessive":3, "adelaide":3, "adeline":3, "adelina":4, "adenalgia":4, "adenectomy":5, "adenine":3, "adenitis":4, "adenoid":3, "adenoids":3, "adenoidectomy":6, "adenoidal":4, "adenology":5, "adenomatous":5, "adenocarcinomatous":8, "adenocarcinoma":7, "adenocarcinomas":7, "adenocarcinomata":8, "adenohypophysis":7, "adenoma":4, "adenomas":4, "adenomata":5, "adenophyllous":5, "adenosarcoma":6, "adenosarcomas":6, "adenosarcomata":7, "adenovirus":5, "adenoviruses":6, "adenylpyrophosphate":7, "adephagia":4, "adequate":3, "adequately":4, "adequateness":4, "adequacy":4, "adfreeze":2, "adfreezing":3, "adfroze":2, "adfrozen":3, "adhere":2, "adhered":2, "adherence":3, "adherend":3, "adherent":3, "adherently":4, "adherer":3, "adhering":3, "adhesion":3, "adhesional":4, "adhesive":3, "adhesively":4, "adhesiveness":4, "adhibit":3, "adhibition":4, "adit":2, "adiadochokinesia":8, "adiadochokinesis":8, "adiadokokinesia":8, "adiadokokinesis":8, "adiaphorism":5, "adiaphoretic":6, "adiaphoresis":6, "adiaphorist":5, "adiaphoristic":6, "adiaphorous":5, "adiabat":4, "adiabatic":5, "adiabatically":7, "adiathermancy":6, "adient":3, "adios":3, "adipate":3, "adipocerite":5, "adipocerous":5, "adipose":3, "adipose fin":4, "adiposeness":4, "adiposity":5, "adipocere":4, "adiponitrile":5, "adipopectic":5, "adipopexic":5, "adipopexis":5, "adipopexia":6, "adirondack":4, "adirondack mountains":6, "adirondacks":4, "adjacence":3, "adjacent":3, "adjacently":4, "adjacency":4, "adjective":3, "adjectively":3, "adjectival":4, "adjectivally":5, "adjoin":2, "adjoint":2, "adjoining":3, "adjourn":2, "adjournment":3, "adjudge":2, "adjudged":2, "adjudging":3, "adjunct":2, "adjunctly":3, "adjunction":3, "adjunctive":3, "adjunctively":4, "adjure":2, "adjured":2, "adjuratory":5, "adjurer":3, "adjuring":3, "adjust":2, "adjustable":4, "adjustable-pitch":4, "adjustably":4, "adjuster":3, "adjustment":3, "adjustmental":4, "adjustor":3, "adjudicate":4, "adjudicated":5, "adjudicating":5, "adjudication":5, "adjudicative":5, "adjudicator":5, "adjugate":3, "adjuration":4, "adjuror":3, "adjutant":3, "adjutant bird":4, "adjutant general":6, "adjutancy":4, "adjuvant":3, "adlai":2, "adler":2, "adley":2, "adlerian":4, "admah":2, "adman":2, "admass":2, "admeasure":3, "admeasured":3, "admeasurement":4, "admeasurer":4, "admeasuring":4, "admete":3, "admetus":3, "admin":2, "administer":4, "administrant":4, "administrate":4, "administrated":5, "administrating":5, "administrable":5, "administration":5, "administrational":6, "administrative":5, "administratively":6, "administrator":5, "administratorship":6, "administratrix":5, "administratrices":6, "adminicle":4, "admire":2, "admired":2, "admirer":3, "admiring":3, "admiringly":4, "admission":3, "admissive":3, "admissibility":6, "admissible":4, "admissibleness":5, "admissibly":4, "admit":2, "admittance":3, "admittable":4, "admitted":3, "admittedly":4, "admitter":3, "admitting":3, "admittible":4, "admix":2, "admixture":3, "adminicular":5, "admiral":3, "admiral":3, "admiralship":4, "admiralty":4, "admiralty board":5, "admiralty house":5, "admiralty islands":6, "admiralty mile":5, "admiralty range":5, "admirability":6, "admirable":4, "admirableness":5, "admirably":4, "admiration":4, "admirative":4, "admiratively":5, "admonish":3, "admonisher":4, "admonishingly":5, "admonishment":4, "admonitor":4, "admonitorial":6, "admonitorily":6, "admonitory":5, "admonition":4, "adnah":2, "adnan":2, "adnate":2, "adnation":3, "adnominal":4, "adnoun":2, "adolf":2, "adolph":2, "adolphe":2, "adolescence":4, "adolescent":4, "adolescently":5, "adonai":3, "adonais":4, "adonias":4, "adonijah":4, "adoration":4, "adrastea":4, "adrenergic":4, "adres":2, "adrenal":3, "adrenal gland":4, "adrenal insufficiency":8, "adrenalectomize":6, "adrenalectomized":6, "adrenalectomizing":7, "adrenalectomy":6, "adscititious":4, "adscititiously":5, "adscript":2, "adscription":3, "adsorb":2, "adsorbate":3, "adsorbability":6, "adsorbable":4, "adsorbent":3, "adsorption":3, "adsorptive":3, "adsorptively":4, "adsorbent":3, "adsum":2, "adsuki bean":4, "adumbral":3, "adumbrate":3, "adumbrated":4, "adumbrating":4, "adumbration":4, "adumbrative":4, "adumbratively":5, "adularia":5, "adulate":3, "adulated":4, "adulating":4, "adularescence":5, "adularescent":5, "adulation":4, "adulator":4, "adulatory":5, "adurol":3, "advaita":3, "advance":2, "advance guard":3, "advance poll":3, "advanced":2, "advanced gas-cooled reactor":6, "advancement":3, "advancer":3, "advances":3, "advancing":3, "advancingly":4, "advantage":3, "advantaged":3, "advantageous":4, "advantageously":5, "advantageousness":5, "advection":3, "advective":3, "advent":2, "advent":2, "advent sunday":4, "adventism":3, "adventist":3, "adventive":3, "adventively":4, "adventitial":4, "adventitious":4, "adventitiously":5, "adventitiousness":5, "adventitia":5, "adventure":3, "adventure playground":5, "adventured":3, "adventureful":4, "adventuresome":4, "adventuresomely":5, "adventuresomeness":5, "adventurer":4, "adventuress":4, "adventuring":4, "adventurism":4, "adventurous":4, "adventurously":5, "adventurousness":5, "adverb":2, "adverbless":3, "adverse":2, "adverse possession":5, "adversely":3, "adverseness":3, "advert":2, "advertence":3, "advertent":3, "advertently":4, "advertency":4, "adverbial":4, "adverbially":5, "adversa":3, "adversaries":4, "adversary":4, "adversaria":5, "adversative":4, "adversatively":5, "adversity":4, "advertise":3, "advertised":3, "advertisement":4, "advertisable":5, "advertiser":4, "advertising":4, "advertize":3, "advertized":3, "advertizement":4, "advertizable":5, "advertizer":4, "advertizing":4, "advena":3, "advenae":3, "advice":2, "advise":2, "advised":2, "advisement":3, "advisability":6, "advisable":4, "advisableness":5, "advisably":4, "advisedly":4, "advisedness":4, "advisee":3, "adviser":3, "advisership":4, "advisor":3, "advisorily":5, "advisory":4, "advocatory":5, "advowson":3, "advocaat":3, "advocate":3, "advocate depute":5, "advocated":4, "advocating":4, "advocacy":4, "advocation":4, "advocatus diaboli":8, "adynamic":4, "adynamia":5, "adytum":3, "adzuki bean":4, "aechmagoras":4, "aegle":2, "aelbert":2, "aelfric":2, "aeron":1, "aerate":2, "aerated":3, "aerating":3, "aeration":3, "aerator":3, "aerenchyma":4, "aerie":2, "aeries":2, "aeriferous":4, "aeria":3, "aerial":3, "aerial ladder":5, "aerial perspective":6, "aerial pingpong":5, "aerialist":4, "aeriality":5, "aerially":4, "aerialness":4, "aerified":3, "aerification":5, "aeriform":3, "aerify":3, "aerifying":4, "aero":2, "aero engine":4, "aerobe":2, "aerogenous":4, "aerographer":4, "aerography":4, "aerol":2, "aerologist":4, "aerology":4, "aerometer":4, "aerometry":4, "aerophagist":4, "aerotropism":4, "aerobacteriologist":8, "aerobacteriology":8, "aerobacteriological":9, "aerobacteriologically":10, "aeroballistic":5, "aeroballistics":5, "aerobatic":4, "aerobatics":4, "aerobee":3, "aerobic":3, "aerobia":4, "aerobically":5, "aerobiologist":6, "aerobiology":6, "aerobiotic":5, "aerobiotically":7, "aerobiologic":6, "aerobiologically":8, "aerobiosis":5, "aerobium":4, "aerocar":3, "aerodontalgia":5, "aerodontia":4, "aerodonetic":5, "aerodonetics":5, "aerodrome":3, "aerodyne":3, "aerodynamic":5, "aerodynamics":5, "aerodynamical":6, "aerodynamically":7, "aerodynamicist":6, "aeroembolism":5, "aeroelastic":5, "aeroelastics":5, "aeroelasticity":7, "aerofoil":3, "aerogel":3, "aerogenic":4, "aerogenically":6, "aerogram":3, "aerogramme":3, "aerograph":3, "aerographic":4, "aerolite":3, "aerolith":3, "aerolitic":4, "aerolitics":4, "aerologic":4, "aeromancer":4, "aeromancy":4, "aeromantic":4, "aeromarine":4, "aeromedical":5, "aeromedicine":5, "aerometric":4, "aeromechanic":5, "aeromechanics":5, "aeromechanical":6, "aerometeorograph":7, "aeronaut":3, "aeronautic":4, "aeronautics":4, "aeronautical":5, "aeronautical engineering":9, "aeronautically":6, "aeroneurosis":5, "aeropause":3, "aerophagia":4, "aerophagia":5, "aerophilatelic":6, "aerophilatelist":6, "aerophilately":6, "aerophone":3, "aerophore":3, "aerophobic":4, "aerophobia":5, "aerophoto":4, "aerophotography":6, "aerophyte":3, "aeroplane":3, "aeroplane cloth":4, "aeroplane spin":4, "aeroplankton":4, "aeropulse":3, "aeroscepsis":4, "aeroscepsy":4, "aeroscope":3, "aeroscopic":4, "aeroscopically":6, "aerosinusitis":6, "aerosol":3, "aerospace":3, "aerosphere":3, "aerostat":3, "aerostatic":4, "aerostatics":4, "aerostatical":5, "aerostation":4, "aerotherapeutics":6, "aerotherapy":5, "aerothermodynamic":7, "aerothermodynamics":7, "aerotow":3, "aerotropic":4, "aery":2, "aeschines":3, "aeschylean":4, "aeschylus":3, "aesculapian":5, "aesculapius":5, "aesculin":3, "aesthete":2, "aesthetic":3, "aesthetics":3, "aesthetical":4, "aesthetically":5, "aestheticism":4, "aesthesia":3, "aesthesis":3, "aesthesia":4, "aesthetician":4, "aestival":3, "aestivate":3, "aestivated":4, "aestivating":4, "aestivation":4, "aestivator":4, "aet":1, "aetat":1, "aethelbert":3, "aetna":2, "aeacides":4, "aeaea":3, "aeacus":3, "aecidia":4, "aecidium":4, "aecia":3, "aecial":3, "aeciospore":4, "aecium":3, "aedeagal":4, "aedeagus":4, "aedicula":4, "aedile":2, "aedileship":3, "aedilberct":3, "aedilitian":4, "aedicule":3, "aedoeagus":4, "aeetes":3, "aegaeon":3, "aegates":3, "aegesta":3, "aegean":3, "aegean islands":5, "aegean sea":4, "aegeria":4, "aegeus":3, "aegimius":4, "aegir":2, "aegirine":3, "aegirite":3, "aegis":2, "aegisthus":3, "aegia":3, "aegiale":4, "aegialeus":4, "aegialia":5, "aegicores":4, "aegina":3, "aeginaea":4, "aeginetan":4, "aegiochus":4, "aegipan":3, "aegium":3, "aegospotami":5, "aegrotat":3, "aegyptus":3, "aeneas":3, "aeneas silvius":6, "aeneid":3, "aenius":3, "aeolic":3, "aeolipile":4, "aeolipyle":4, "aeon":2, "aeolis":3, "aeolia":4, "aeolian":4, "aeolian harp":5, "aeolian islands":6, "aeolides":4, "aeolotropy":5, "aeolotropic":5, "aeolus":3, "aeonian":4, "aepyornis":4, "aepyornis":4, "aepytus":3, "aeraria":4, "aerarian":4, "aerarium":4, "aeronomy":4, "aeruginous":4, "aerugo":3, "aesacus":3, "aesepus":3, "aesir":2, "aesop":2, "aesopian":4, "aestatis":3, "aesyetes":4, "aethalides":4, "aether":2, "aethereal":4, "aetheria":4, "aethon":2, "aethra":2, "aethylla":3, "aetiologist":5, "aetiology":5, "aetiological":6, "aetiologically":7, "aetolia":4, "aetolian":4, "aetolus":3, "aetes":4, "aff":1, "aft":1, "aftmost":2, "affair":2, "affaire":2, "affaire d'honneur":4, "affairs":2, "affability":5, "affable":3, "affableness":4, "affably":3, "affect":2, "affected":3, "affectedly":4, "affectedness":4, "affecter":3, "affecting":3, "affectingly":4, "affectation":4, "affection":3, "affectional":4, "affectionally":5, "affectionate":4, "affectionately":5, "affectionateness":5, "affective":3, "affectivity":5, "affenpinscher":4, "afferent":3, "affettuoso":4, "affettuoso":5, "affiche":2, "affiches":2, "affiliate":4, "affiliated":5, "affiliating":5, "affiliable":5, "affiliation":5, "affiliation order":7, "affiliation proceedings":8, "affine":2, "affined":2, "affinely":3, "affinitive":4, "affinity":4, "affirm":2, "affirmance":3, "affirmant":3, "affirmable":4, "affirmably":4, "affirmative":4, "affirmative-action":5, "affirmatively":5, "affirmatory":5, "affirmer":3, "affirmingly":4, "affirmation":4, "affix":2, "affixal":3, "affixation":4, "affixer":3, "affixture":3, "affiance":3, "affianced":3, "affiancing":4, "affiant":3, "affidavit":4, "affinal":3, "afflated":3, "afflatus":3, "afflict":2, "afflictedness":4, "afflicter":3, "affliction":3, "afflictionless":4, "afflictive":3, "afflictively":4, "afflux":2, "affluence":3, "affluent":3, "affluently":4, "afford":2, "affordable":4, "afforest":3, "afforestation":5, "afforestment":4, "affranchise":3, "affranchised":3, "affranchisement":4, "affranchising":4, "affray":2, "affrayer":3, "affreight":2, "affreighter":3, "affreightment":3, "affricative":4, "affright":2, "affricate":3, "affrication":4, "affront":2, "affrontedly":4, "affrontedness":4, "affronter":3, "affrontingly":4, "affrontive":3, "affrontiveness":4, "affront":4, "affusion":3, "afghan":2, "afghan":2, "afghan hound":3, "afghanets":3, "afghani":3, "afghani":3, "afghanistan":4, "aflatoxin":4, "aframerican":5, "afrasia":3, "afrasian":3, "afreet":2, "afric":2, "afrit":2, "africa":3, "african":3, "african lily":5, "african mahogany":7, "african violet":6, "africander":4, "africanderism":5, "africanise":4, "africanism":4, "africanist":4, "africanize":4, "africanized":4, "africanizing":5, "africanization":6, "africanthropus":5, "afrikaans":3, "afrikander":4, "afrikanderism":5, "afrikaner":4, "afrikanerdom":5, "afrikanerise":5, "afrikanerize":5, "afro":2, "afro-american":5, "afro-asian":3, "afro-asiatic":5, "afro-chain":2, "afro-comb":2, "afro-cuban":3, "afrormosia":5, "afroasiatic":6, "after":2, "after-dinner":3, "afters":2, "afterbirth":3, "afterbodies":4, "afterbody":4, "afterbrain":3, "afterburner":4, "afterburning":4, "aftercare":3, "aftercast":3, "afterclap":3, "aftercooler":4, "afterdamp":3, "afterdeck":3, "aftereffect":4, "afterglow":3, "aftergrowth":3, "afterguard":3, "afterheat":3, "afterimage":4, "afterlife":3, "aftermath":3, "aftermost":3, "afternoon":3, "afternoons":3, "afterpain":3, "afterpains":3, "afterpeak":3, "afterpiece":3, "aftersensation":5, "aftershaft":3, "aftershafted":4, "aftershave lotion":5, "aftershock":3, "aftertaste":3, "afterthought":3, "aftertime":3, "aftertreatment":4, "afterward":3, "afterwards":3, "afterword":3, "afterworld":3, "afteryears":3, "agcy":1, "age":1, "age hardening":4, "age of consent":4, "age of reason":4, "age-old":1, "ageing":2, "ageless":2, "agelessness":3, "agelong":2, "agr":1, "agric":1, "agrigento":2, "agt":1, "agalmatolite":5, "agalwood":3, "agassiz":3, "agate":2, "agate line":3, "agatelike":3, "agateware":3, "agatize":3, "agatized":3, "agatizing":4, "agabus":3, "agacles":3, "agalite":3, "agama":3, "agamemnon":4, "agamede":4, "agamedes":4, "agamid":3, "agamous":3, "agamogenesis":6, "agamogenetic":6, "agamogenetically":8, "agamy":3, "aganippe":4, "aganus":3, "agapanthus":4, "agapanthuses":5, "agaric":3, "agarita":4, "agata":3, "agatha":3, "agatharchides":5, "agatho":3, "agathon":3, "agathyrsus":4, "agatoid":3, "agba":2, "ageratum":4, "agelaus":4, "aggadic":3, "aggadic":3, "aggada":3, "aggadah":3, "agger":2, "aggeus":3, "aggie":2, "aggie":2, "aggiornamento":5, "agglomerate":4, "agglomerated":5, "agglomerating":5, "agglomeration":5, "agglomerative":5, "agglomerator":5, "agglutinability":7, "agglutinable":5, "agglutinogen":5, "agglutinogenic":6, "agglutinant":4, "agglutinate":4, "agglutinated":5, "agglutinating":5, "agglutination":5, "agglutinative":5, "agglutinin":4, "aggrade":2, "aggraded":3, "aggrading":3, "aggrandise":3, "aggrandised":3, "aggrandiser":4, "aggrandising":4, "aggrandize":3, "aggrandized":3, "aggrandizement":4, "aggrandizer":4, "aggrandizing":4, "aggradation":4, "aggradational":5, "aggravate":3, "aggravated":3, "aggravating":4, "aggravatingly":5, "aggravation":4, "aggravative":4, "aggravator":4, "aggress":2, "aggression":3, "aggressive":3, "aggressively":4, "aggressiveness":4, "aggressor":3, "aggregate":3, "aggregately":4, "aggregateness":4, "aggregated":4, "aggregating":4, "aggregable":4, "aggregation":4, "aggregative":4, "aggregatory":5, "aggrieve":2, "aggrieved":2, "aggrievedly":4, "aggrievedness":4, "aggrieving":3, "aggro":2, "agile":2, "agilely":3, "agileness":3, "aging":2, "agincourt":3, "agiotage":3, "agitprop":3, "agitpropist":4, "agilawood":4, "agio":3, "agiotage":4, "agitate":3, "agitated":4, "agitatedly":5, "agitating":4, "agitable":4, "agitation":4, "agitational":5, "agitative":4, "agitator":4, "agitatorial":6, "aglet":2, "agma":2, "agminate":3, "agminated":4, "agnail":2, "agnate":2, "agnatic":3, "agnatically":5, "agnatha":3, "agnathous":3, "agnation":3, "agneaux":2, "agnel":2, "agnes":2, "agnew":2, "agni":2, "agnize":2, "agnized":2, "agnizing":3, "agnoiology":5, "agnomina":4, "agnominal":4, "agnostic":3, "agnostically":5, "agnosticism":4, "agnomen":3, "agnosia":3, "agnus dei":4, "agon":2, "agon":2, "agonal":3, "agonise":3, "agonised":3, "agonist":3, "agonising":4, "agonistic":4, "agonistical":5, "agonistically":6, "agonize":3, "agonized":3, "agonizedly":5, "agonizing":4, "agonizingly":5, "agony":3, "agony column":5, "agora":3, "agorae":3, "agoraea":4, "agoraeus":4, "agoraphobia":6, "agrapha":3, "agrippina":4, "agribusiness":4, "agriculture":4, "agricultural":5, "agriculturalist":6, "agriculturally":6, "agriculturist":5, "agrimony":4, "agriologist":5, "agriology":5, "agriological":6, "agrostographer":5, "agrostography":5, "agrostologist":5, "agrostology":5, "agrobiologist":6, "agrobiology":6, "agrobiologic":6, "agrobiologically":8, "agrologic":4, "agromania":5, "agronomic":4, "agronomics":4, "agrypnotic":4, "ahchoo":2, "ahhiyawa":4, "ahmadabad":4, "ahmadnagar":4, "ahmadi":3, "ahmadiya":4, "ahmadou":3, "ahmedabad":4, "ahmednagar":4, "ahriman":3, "ahvaz":2, "ahvenanmaa":4, "ahwaz":2, "aid":1, "aide":1, "aide-mmoire":3, "aide-mmoire":2, "aides-mmoire":3, "aider":2, "aidful":2, "aidless":2, "ail":1, "ailing":2, "ailment":2, "aim":1, "aimer":2, "aimful":2, "aimfully":3, "aimless":2, "aimlessly":3, "aimlessness":3, "ain":1, "ain't":1, "aintab":2, "air":1, "air alert":3, "air bladder":3, "air chief marshal":4, "air commodore":4, "air conditioning":5, "air corridor":4, "air cover":3, "air curtain":3, "air cushion":3, "air cylinder":4, "air embolism":4, "air hostess":3, "air jacket":3, "air letter":3, "air marshal":3, "air officer":4, "air pocket":3, "air power":3, "air rifle":3, "air station":3, "air terminal":4, "air traffic":3, "air turbine":3, "air vesicle":4, "air vice-marshal":3, "air-breather":2, "air-condition":3, "air-hardening":3, "air-intake":2, "air-minded":2, "air-mindedness":3, "air-raid warden":3, "air-sea rescue":3, "air-to-surface":2, "air-traffic control":4, "air-twisted":2, "airedale":2, "airs":1, "airt":1, "airth":1, "airbill":2, "airboat":2, "airborne":2, "airbrasive":3, "airbrick":2, "airbrush":2, "airburst":2, "airbus":2, "aircraft":2, "aircraft carrier":5, "aircraft cloth":3, "aircraftsman":3, "aircraftswoman":4, "aircraftswomen":4, "aircraftman":3, "aircrew":2, "aircrewman":3, "airdrie":2, "airdried":2, "airdrome":2, "airdrop":2, "airdropped":2, "airdropping":3, "airdrying":3, "airfield":2, "airflow":2, "airfoil":2, "airframe":2, "airglow":2, "airgraph":2, "airhead":2, "airing":2, "airier":3, "airiest":3, "airily":3, "airiness":3, "airless":2, "airlift":2, "airlight":2, "airlike":2, "airline":2, "airlines":2, "airliner":3, "airlock":2, "airmail":2, "airman":2, "airmanship":3, "airplane":2, "airplot":2, "airport":2, "airproof":2, "airscrew":2, "airship":2, "airsick":2, "airsickness":3, "airsickslaked":3, "airsickslaking":4, "airspace":2, "airspeed":2, "airstream":2, "airstrip":2, "airtight":2, "airtightly":3, "airtightness":3, "airwash":2, "airwaves":2, "airway":2, "airwaybill":3, "airwoman":3, "airwomen":3, "airworthiness":4, "airworthy":3, "airy":2, "airy":2, "airy-fairy":3, "aisle":1, "ait":1, "aitch":1, "aitchbone":2, "aitken":2, "aix-en-provence":2, "aix-la-chapelle":2, "aiblins":2, "aidan":2, "aidin":2, "aidos":2, "aiglet":2, "aigret":2, "aigrette":2, "aiguille":2, "aiguillette":3, "aiguilletted":4, "aiken":2, "aikido":3, "aikido":3, "aikona":3, "aikuchi":3, "ailanthic":3, "ailanthus":3, "ailanthuses":4, "aileen":2, "aileron":3, "ailette":2, "ailurophile":4, "ailurophilic":5, "ailurophilia":6, "ailurophobe":4, "ailurophobic":5, "ailurophobia":6, "aimak":2, "aimee":2, "ainu":2, "ajmer":2, "ajmer-merwara":4, "ake":1, "akeley":2, "aketon":2, "akhetaton":4, "akhmatova":4, "akhnaton":3, "akaba":3, "akbar":2, "akee":2, "akebi":3, "akhenaten":4, "akhenaton":4, "akhisar":3, "aking":2, "akihito":4, "akinete":3, "akkad":2, "akkadian":4, "akkerman":3, "akkra":2, "akmolinsk":3, "akron":2, "akroter":3, "akroteria":5, "akroterion":5, "aksum":2, "aktyubinsk":3, "akvavit":3, "akyab":2, "al dente":3, "al faiy":3, "al fatah":3, "al hasa":3, "al hofuf":3, "al hufuf":3, "al mansurah":4, "al mansrah":4, "al madinah":4, "al sirat":3, "al-fustat":2, "al-gazel":2, "al-iskandaryah":6, "al-sahih":2, "al-uzza":2, "alabastron":2, "alb":1, "alcmaeon":3, "alcman":2, "alcmaon":3, "alcmene":3, "aldoxime":3, "ale":1, "alecost":2, "alehouse":2, "alehouses":3, "alewife":2, "aleyard":2, "alfa":1, "alfheim":2, "alg":1, "alias":1, "alk":1, "alkmaar":2, "alkoxide":3, "all":1, "all'ottava":3, "all-american":4, "all-around":2, "all-embracing":3, "all-expense":2, "all-expenses-paid":3, "all-firedly":2, "all-flying tail":3, "all-important":3, "all-in":1, "all-inclusive":3, "all-over":2, "all-powerful":3, "all-purpose":2, "all-rounder":2, "all-weather":2, "allhallows":3, "allhallowmas":4, "allhallowtide":4, "allheal":2, "allmouth":2, "allness":2, "allover":3, "allround":2, "allseed":2, "allspice":2, "allston":2, "allvar":2, "allyou":2, "alms":1, "almsgiver":3, "almsgiving":3, "almshouse":2, "almshouses":3, "almsman":2, "almswoman":3, "almswomen":3, "almeries":3, "almery":3, "alp":1, "alpes maritimes":4, "alpes-de-haute-provence":2, "alpes-maritimes":3, "alphanumeric":2, "alphorn":2, "alt":1, "altazimuth":4, "altdorf":2, "altdorfer":3, "altgeld":2, "althorn":2, "alum":1, "alalcomeneus":5, "alan":2, "alan-a-dale":2, "alanbrooke":3, "alastair":3, "alaster":3, "alastrim":3, "alabama":4, "alabamine":4, "alabamian":5, "alabandite":4, "alabaster":4, "alabastoi":4, "alabastos":4, "alabastra":4, "alabastrine":4, "alabastron":4, "alabastrum":4, "alamanni":4, "alamannic":4, "alamein":3, "alameda":4, "alameda":4, "alamiqui":4, "alamo":3, "alamo":3, "alamode":3, "alamogordo":5, "alamosa":4, "alanine":3, "alaric":3, "alba":2, "alba":2, "alba longa":4, "alban":2, "albarium":4, "albay":2, "albacete":4, "albacore":3, "albamycin":4, "albanese":4, "albania":4, "albanian":4, "albany":3, "albarelli":4, "albarello":4, "albarellos":4, "albata":3, "albategnius":5, "albatross":3, "albee":2, "alben":2, "albert":2, "albert":2, "albert edward":4, "albert i":3, "albertite":3, "albertville":3, "albergo":3, "alberich":3, "alberta":3, "alberti":3, "albertine":3, "albertist":3, "albertina":4, "alberto":3, "albertus magnus":5, "albertype":3, "albescence":3, "albescent":3, "albedo":3, "albedometer":5, "albeit":3, "albemarle":3, "albemarle sound":4, "alberoni":4, "albi":2, "albin":2, "albinic":3, "albite":2, "albitic":3, "albia":3, "albigenses":4, "albigensian":5, "albigensianism":6, "albina":3, "albinism":3, "albinistic":4, "albino":3, "albinoni":4, "albinus":3, "albion":3, "alboin":2, "albrecht":2, "albronze":2, "album":2, "alburnous":3, "alburnum":3, "albumen":3, "albumenise":4, "albumenised":4, "albumeniser":5, "albumenising":5, "albumenize":4, "albumenized":4, "albumenizing":5, "albumeniizer":6, "albumenization":6, "albumin":3, "albuminate":4, "albuminise":4, "albuminised":4, "albuminising":5, "albuminize":4, "albuminized":4, "albuminizing":5, "albuminoid":4, "albuminoidal":5, "albuminose":4, "albuminous":4, "albuminuric":5, "albuminuria":6, "albumose":3, "albuna":3, "albunea":4, "albuquerque":4, "albury":3, "albniz":4, "albniz":3, "alcade":2, "alcaeus":3, "alcaide":2, "alcaide":3, "alcalde":3, "alcan highway":4, "alcandre":3, "alcapton":3, "alcaptonuria":6, "alcathous":4, "alcayde":3, "alcaydes":3, "alcahest":3, "alcaic":3, "alcaids":3, "alcaligenes":5, "alcal":4, "alcatraz":3, "alcazar":3, "alcazar":3, "alceste":2, "alcestis":3, "alchemic":3, "alchemically":5, "alchemise":3, "alchemised":3, "alchemist":3, "alchemising":4, "alchemize":3, "alchemized":3, "alchemizing":4, "alchemy":3, "alcheringa":4, "alchuine":2, "alcid":2, "alcidice":4, "alcimede":4, "alcimedon":4, "alcinous":4, "alcinos":5, "alcis":2, "alcitho":5, "alcibiades":5, "alcibiadean":6, "alcides":3, "alcidine":3, "alcimedes":4, "alclad":2, "alcock":2, "alcon":2, "alcor":2, "alcott":2, "alcove":2, "alcoa":3, "alcohol":3, "alcoholate":4, "alcoholic":4, "alcoholics anonymous":8, "alcoholicity":6, "alcoholise":4, "alcoholised":4, "alcoholism":4, "alcoholising":5, "alcoholize":4, "alcoholized":4, "alcoholizing":5, "alcoholically":6, "alcoholization":6, "alcoholometer":6, "alcoholometry":6, "alcoholometric":6, "alcoholytic":5, "alcoholysis":5, "alcoran":3, "alcoranic":4, "alcoranist":4, "alcuin":2, "alcyonarian":6, "alcyone":4, "alcyoneus":4, "alda":2, "aldabra":3, "aldan":2, "aldebaran":4, "alden":2, "alder":2, "alder":2, "alder buckthorn":4, "alder fly":3, "alderfly":3, "alderman":3, "aldermancy":4, "aldermanic":4, "aldermanry":4, "aldermanship":4, "aldermaston":4, "alderney":3, "aldershot":3, "aldehyde":3, "aldehydic":4, "aldine":2, "aldington":3, "aldis":2, "aldis lamp":3, "aldo":2, "aldol":2, "aldose":2, "aldosterone":4, "aldous":2, "aldohexose":4, "aldosterone":4, "aldrich":2, "aldridge-brownhills":3, "aldrin":2, "aldus":2, "aldus manutius":6, "alec":2, "alec":2, "aleck":2, "aleck":2, "alessandra":4, "alessandro":4, "aleut":2, "aleuron":3, "aleurone":3, "aleuronic":4, "alex":2, "alexander":4, "alexander":4, "alexander archipelago":9, "alexander i":5, "alexander i island":7, "alexander ii":5, "alexander iii":5, "alexander nevski":6, "alexander the great":6, "alexander vi":5, "alexanders":4, "alexanderson":5, "alexandra":4, "alexandretta":5, "alexandrine":4, "alexandrite":4, "alexandria":5, "alexandrian":5, "alexandrinus":5, "alexinic":4, "alegar":3, "alekhine":3, "alemanni":4, "alemannic":4, "alethea":4, "alethia":4, "alevin":3, "alfalfa":3, "alfadir":3, "alfarabius":5, "alfeo":3, "alfie":2, "alfieri":3, "alfilaria":5, "alfileria":5, "alfonso":3, "alfonso xiii":4, "alfonson":3, "alforja":3, "alfraganus":4, "alfred":2, "alfred the great":4, "alfresco":3, "alfreda":3, "alfredo":3, "alfric":2, "alfur":2, "alga":2, "algae":2, "algal":2, "algar":2, "algarroba":4, "algalene":3, "algaroba":4, "alger":2, "algernon":3, "algetic":3, "algebra":3, "algebraic":4, "algebraic number":6, "algebraist":4, "algebraical":5, "algebraically":6, "algeciras":4, "algerine":3, "algerine":3, "algeria":4, "algerian":4, "algerienne":4, "algerita":4, "algesic":3, "algesimeter":5, "algesia":4, "algesiometer":6, "algesireceptor":6, "alghero":3, "algid":2, "algidity":4, "algidness":3, "algiers":2, "algin":2, "alginic acid":5, "algicide":3, "alginate":3, "algoid":2, "algol":2, "algologist":4, "algology":4, "algometer":4, "algometry":4, "algonkin":3, "algonkian":4, "algonquin":3, "algonquin park":4, "algonquian":4, "algophagous":4, "algor":2, "algolagnic":4, "algolagnist":4, "algolagnia":5, "algological":5, "algoma":3, "algoman":3, "algometric":4, "algometrically":6, "algona":3, "algonac":3, "algophobia":5, "algorism":3, "algorismic":4, "algorithm":3, "algorithmic":4, "algraphic":3, "algraphy":3, "algren":2, "algum":2, "algy":2, "alhambra":3, "alhambresque":3, "alhazen":3, "alice":2, "alice springs":3, "alice-in-wonderland":4, "aliceville":3, "alick":2, "alien":2, "alienage":3, "alienate":3, "alienated":4, "alienating":4, "alienability":6, "alienable":4, "alienation":4, "alienator":4, "alienee":3, "aliener":3, "alienism":3, "alienist":3, "alienor":3, "alipteria":5, "alipterion":5, "alister":3, "alibi":3, "alibility":5, "alible":3, "alicante":4, "alicyclic":4, "alidad":3, "alidade":3, "aliform":3, "aliment":3, "alimental":4, "alimentally":5, "alimentary":5, "alimentary canal":7, "alimentation":5, "alimentative":5, "alimentatively":6, "alimentativeness":6, "alimonied":4, "alimony":4, "alioth":3, "aliped":3, "aliphatic":4, "aliquant":3, "aliquippa":4, "aliquot":3, "alison":3, "alkalic":3, "alkane":2, "alkanethiol":4, "alkannin":3, "alkapton":3, "alkaptonuria":6, "alkargen":3, "alkahest":3, "alkahestic":4, "alkahestical":5, "alkalescence":4, "alkalescent":4, "alkalescency":5, "alkalemia":5, "alkali":3, "alkali flat":4, "alkali metal":5, "alkali soil":4, "alkalimeter":5, "alkalimetry":5, "alkaline":3, "alkaline earth":4, "alkalinise":4, "alkalinised":4, "alkalinising":5, "alkalinize":4, "alkalinized":4, "alkalinizing":5, "alkalinity":5, "alkalinization":6, "alkalise":3, "alkalised":3, "alkaliser":4, "alkalising":4, "alkalize":3, "alkalized":3, "alkalizable":5, "alkalizer":4, "alkalizing":4, "alkalified":4, "alkalifiable":6, "alkalify":4, "alkalifying":5, "alkalimetric":5, "alkalimetrically":7, "alkalisation":5, "alkalization":5, "alkaloid":3, "alkaloidal":4, "alkalosis":4, "alkanet":3, "alkene":2, "alkermes":3, "alkekengi":4, "alkie":2, "alkine":2, "alkoran":3, "alky":2, "alkyd resin":4, "alkyl":2, "alkylation":4, "alkylic":3, "alkyne":2, "all'antica":4, "alla":2, "alla breve":4, "alla prima":4, "allah":2, "allahabad":4, "allan":2, "allan-a-dale":2, "allanite":3, "allantoid":3, "allantoidal":4, "allantoic":4, "allantois":4, "allargando":4, "allay":2, "allayed":2, "allayer":3, "allaying":3, "allachesthesia":5, "allanitic":4, "allative":3, "allege":2, "alleged":2, "allegeable":4, "allegedly":4, "alleger":3, "alleging":3, "allele":2, "allelic":3, "allelism":3, "allen":2, "allenby":3, "allendale":3, "allende":3, "allentown":3, "alleppey":3, "allergen":3, "allergenic":4, "allergenicity":6, "allergic":3, "allergist":3, "allergy":3, "alley":2, "alley cat":3, "alleyfiredest":4, "alleyway":3, "allecret":3, "allegan":3, "allegation":4, "alleghanian":5, "alleghenies":4, "alleghenian":5, "allegheny":4, "allegheny mountains":6, "allegiance":3, "allegiant":3, "allegoric":4, "allegorical":5, "allegorically":6, "allegoricalness":6, "allegorization":6, "allegorise":4, "allegorised":4, "allegorist":4, "allegoriser":5, "allegorising":5, "allegoristic":5, "allegorize":4, "allegorized":4, "allegorizer":5, "allegorizing":5, "allegory":4, "allegra":3, "allegretto":4, "allegro":3, "allegro":3, "allelomorph":4, "allelomorphic":5, "allelomorphism":5, "alleluia":4, "alleluiatic":5, "allemande":3, "allemontite":4, "allethrin":3, "alleviant":4, "alleviate":4, "alleviated":5, "alleviating":5, "alleviation":5, "alleviative":5, "alleviator":5, "alleviatory":6, "allied":2, "allied":2, "allier":2, "allies":2, "allies":2, "alliterate":4, "alliterated":5, "alliterating":5, "alliteration":5, "alliterative":5, "alliteratively":6, "alliterativeness":6, "alliterator":5, "alliance":3, "alliance":3, "alliable":4, "alliaceous":4, "alligate":3, "alligated":4, "alligating":4, "alligator":4, "alligator pear":5, "alligator pepper":6, "alligatorfish":5, "alligatorfishes":6, "allision":3, "allison":3, "allium":3, "allochthon":3, "allochthonous":4, "allod":2, "allogamous":4, "allogamy":4, "alloiometry":5, "allomerism":4, "allomerize":4, "allomerized":4, "allomerizing":5, "allomerization":6, "allomerous":4, "allometry":4, "allonge":2, "allonges":3, "allong":4, "allonymous":4, "allonymously":5, "allopathist":4, "allopathy":4, "allot":2, "allotment":3, "allotriomorphic":6, "allotropism":4, "allotropy":4, "allottable":4, "allotted":3, "allottee":3, "allotter":3, "allotting":3, "allow":2, "allowed":2, "allowance":3, "allowanced":3, "allowancing":4, "allowable":4, "allowableness":5, "allowably":4, "allowedly":4, "alloy":2, "alloyed junction":4, "alloa":3, "allobaric":4, "allocate":3, "allocated":4, "allocating":4, "allocable":4, "allocation":4, "allochromatic":5, "allocution":4, "allodia":4, "allodial":4, "allodiality":6, "allodially":5, "allodium":4, "allogenic":4, "allogenically":6, "allograph":3, "allometric":4, "allomorph":3, "allomorphic":4, "allomorphism":4, "allonym":3, "allopath":3, "allopathic":4, "allopathically":6, "allopatric":4, "allopatrically":6, "allopelagic":5, "allophane":3, "allophone":3, "allophonic":4, "allophonically":6, "allophylian":5, "alloplasm":3, "alloplasmatic":5, "alloplasmic":4, "allopolyploid":5, "allopolyploidy":6, "allopurinol":5, "allosaur":3, "allotrope":3, "allotropic":4, "allotropical":5, "allotropically":6, "allotropicity":6, "allotype":3, "allotypic":4, "alloway":3, "allude":2, "alluded":3, "alluding":3, "allure":2, "allured":2, "allurement":3, "allurer":3, "alluring":3, "alluringly":4, "alluringness":4, "allusion":3, "allusive":3, "allusively":4, "allusiveness":4, "alluvia":4, "alluvial":4, "alluvial fan":5, "alluviium":4, "alluvion":4, "alluvium":4, "alluviums":4, "ally":2, "allyl":2, "allyl alcohol":5, "allyl resin":4, "allyl sulphide":4, "allylic":3, "allylthiourea":7, "allyn":2, "allyne":2, "alma":2, "alma":2, "alma mater":4, "alma-ata":3, "alma-tadema":4, "almah":2, "almandine":3, "almandite":3, "almacantar":4, "almad":3, "almada":3, "almadn":4, "almagest":3, "almanac":3, "almanon":3, "alme":2, "almeh":2, "almeric":3, "almelo":3, "almemar":3, "almeria":4, "almerian":4, "almera":5, "almera":4, "almightily":4, "almightiness":4, "almighty":3, "almighty":3, "almique":3, "almira":3, "almirah":3, "almon":2, "almond":2, "almond-eyed":2, "almond-shaped":2, "almondlike":3, "almondy":3, "almoner":3, "almonry":3, "almost":2, "almous":2, "almohad":3, "almohade":3, "almoravid":4, "almoravide":4, "almuce":2, "almug":2, "almucantar":4, "alnico":3, "aloe":2, "aloes":2, "aloeswood":3, "alorton":3, "aloetic":4, "aloin":3, "aloidae":4, "alope":3, "alopecic":4, "alopecia":5, "aloysius":4, "alpaca":3, "alpenglow":3, "alpenhorn":3, "alpenstock":3, "alpestrine":3, "alpetragius":5, "alpena":3, "alpha":2, "alpha":2, "alpha and omega":6, "alpha centauri":5, "alpha iron":4, "alpha particle":5, "alpha privative":5, "alpha ray":3, "alpha rhythm":3, "alpha-hypophamine":5, "alpha-naphthol":3, "alpha-naphthylthiourea":8, "alphaea":3, "alphabet":3, "alphabetic":4, "alphabetise":4, "alphabetised":4, "alphabetiser":5, "alphabetising":5, "alphabetize":4, "alphabetized":4, "alphabetizer":5, "alphabetizing":5, "alphabetical":5, "alphabetically":6, "alphabetization":6, "alphameric":4, "alphamerical":5, "alphamerically":6, "alphanumeric":5, "alphanumerical":6, "alphanumerically":7, "alphesiboea":5, "alpheus":3, "alphitomancy":5, "alphons":2, "alphonse":2, "alphonso":3, "alphonsus":3, "alphosis":3, "alpine":2, "alpine":2, "alpinely":3, "alpinism":3, "alpinist":3, "alpinist":3, "already":3, "alright":2, "alsace":2, "alsace-lorrainer":3, "alsace-lorraine":3, "alsatia":3, "alsatian":3, "alsike":2, "alsip":2, "alsinaceous":4, "also":2, "also-ran":2, "alson":2, "alston":2, "alta":2, "altai":2, "altai mountains":4, "altair":2, "altar":2, "altar boy":3, "altarage":3, "altarpiece":3, "altay":2, "altadena":4, "altaian":3, "altaic":3, "altair":3, "altamira":4, "altavista":4, "alter":2, "alter ego":4, "altered chord":3, "altern":2, "alterant":3, "alterability":6, "alterable":4, "alterableness":5, "alterably":4, "alteration":4, "alterative":4, "altercate":3, "altercated":4, "altercating":4, "altercation":4, "alternant":3, "alternate":3, "alternate angles":5, "alternately":4, "alternateness":4, "alternated":4, "alternating":4, "alternating current":6, "alternating-gradient focusing":9, "alternatingly":5, "alternation":4, "alternation of generations":9, "alternative":4, "alternatively":5, "alternativeness":5, "alternativity":6, "alternator":4, "altes":2, "althaea":3, "althaea":3, "althaemenes":4, "althea":3, "althea":3, "althing":2, "altho":2, "although":2, "alti-rilievi":4, "altimeter":4, "altimetry":4, "altissimo":4, "altigraph":3, "altimetrical":5, "altimettrically":6, "altiplano":4, "altitude":3, "altitudinal":5, "alto":2, "alto clef":3, "alto horn":3, "alto-relievo":4, "alto-rilievo":4, "alton":2, "altoona":3, "altocumulus":5, "altogether":4, "altona":3, "altostratus":4, "altrincham":3, "altricial":3, "altruism":3, "altruist":3, "altruistic":4, "altruistically":6, "altus":2, "alturas":3, "alum":2, "alumroot":3, "alure":2, "aludel":3, "alula":3, "alular":3, "aluminic":4, "aluminium":5, "alunite":3, "alutaceous":4, "alva":2, "alvah":2, "alvan":2, "alvar":2, "alvarado":4, "alvaro":3, "alveated":4, "alveola":4, "alveolar":4, "alveolarly":5, "alveolate":4, "alveolated":5, "alveolation":5, "alveolus":4, "alvera":3, "alvin":2, "alvine":2, "alvis":2, "alvina":3, "alvino":3, "alvira":3, "alway":2, "always":2, "alwin":2, "alwite":2, "alwyn":2, "alyce":2, "alys":2, "alyattes":4, "alyson":3, "ambsace":2, "amesace":2, "amesbury":3, "amn't":1, "amp":1, "amt":1, "amu":1, "amalthaea":4, "amalthea":4, "amaurotic":4, "amaurosis":4, "amabelle":3, "amabella":4, "amadavat":4, "amadeo":4, "amadis":3, "amadou":3, "amalek":3, "amalekite":4, "amanita":4, "amaranth":3, "amaranthaceous":5, "amaranthine":4, "amarelle":3, "amarillo":4, "amaryllis":4, "amaryllis":4, "amaryllidaceous":6, "amasias":4, "amateur":3, "amateurish":4, "amateurishly":5, "amateurishness":5, "amateurism":4, "amathi":3, "amative":3, "amatively":4, "amativeness":4, "amatol":3, "amatory":3, "amatorial":5, "amatorially":6, "amatory":4, "amatungula":5, "amaziah":4, "amazon":3, "amazon":3, "amazon ant":4, "amazonite":4, "amazonomachia":7, "amazonis":4, "amazonian":5, "amba":2, "ambage":2, "ambassador":4, "ambassador-at-large":4, "ambassadors-at-large":4, "ambassadorship":5, "ambassadorial":6, "ambassadorially":7, "ambassadress":4, "ambatch":2, "ambages":3, "ambagious":3, "ambagiously":4, "ambagiousness":4, "ambala":3, "ambarella":4, "ambari":3, "ambary":3, "ambedkar":3, "amber":2, "amberfish":3, "amberfishes":4, "ambergris":3, "amberina":4, "amberjack":3, "amberley":3, "amberlike":3, "amberoid":3, "amberous":3, "ambery":3, "ambiguous":4, "ambiguously":5, "ambiguousness":5, "ambil-anak":3, "ambit":2, "ambivalence":4, "ambivalent":4, "ambivalency":5, "ambiance":3, "ambiances":4, "ambidexter":4, "ambidexterity":6, "ambidextral":4, "ambidextrous":4, "ambidextrously":5, "ambidextrousness":5, "ambience":3, "ambiences":4, "ambient":3, "ambiguity":5, "ambilateral":5, "ambilaterality":7, "ambilaterally":6, "ambisexual":5, "ambisinister":5, "ambisinistrous":5, "ambisyllabic":5, "ambitendency":5, "ambition":3, "ambitionless":4, "ambitionlessly":5, "ambitious":3, "ambitiously":4, "ambitiousness":4, "ambivert":3, "ambiversion":4, "amble":2, "ambler":2, "ambler":2, "amblingly":3, "amblygonite":4, "amblyopic":4, "amblyopia":5, "amblyoscope":4, "amblypod":3, "ambo":2, "amboise":2, "amboina":3, "amboina":3, "ambon":2, "ambon":2, "amboyna":3, "amboceptor":4, "ambones":3, "ambrettolide":4, "ambroid":2, "ambroise":2, "ambrose":2, "ambrogio":3, "ambrosia":3, "ambrosial":3, "ambrosially":4, "ambrosian":3, "ambrosio":3, "ambrosia":4, "ambrosia beetle":6, "ambrosiaceous":5, "ambrotype":3, "ambry":2, "ambush":2, "ambusher":3, "ambushlike":3, "ambushment":3, "ambuscade":3, "ambuscaded":4, "ambuscader":4, "ambuscading":4, "ambuscado":4, "ambulacra":4, "ambulacral":4, "ambulacrum":4, "ambulance":3, "ambulance chaser":5, "ambulant":3, "ambulante":3, "ambulate":3, "ambulated":4, "ambulating":4, "ambulation":4, "ambulator":4, "ambulatory":5, "amchitka":3, "ament":2, "amenhotpe iv":5, "amenhotep iv":5, "amentaceous":4, "amentiferous":5, "amerind":3, "amerindian":4, "amerindic":4, "amerindian":5, "amerism":3, "ameristic":4, "americium":5, "ameloblast":4, "ameloblastic":5, "amethyst":3, "amethystlike":4, "amethystine":4, "ametropic":4, "ametropia":5, "amfortas":3, "amharic":3, "amhara":3, "amherst":2, "amic":2, "amice":2, "amide":2, "amianthine":4, "amianthoid":4, "amianthoidal":5, "amianthus":4, "amicability":6, "amicable":4, "amicableness":5, "amicably":4, "amidase":3, "amidate":3, "amidated":4, "amidating":4, "amidation":4, "amidin":3, "amidine":3, "amidol":3, "amidol":3, "amiens":3, "amigen":3, "aminase":3, "aminate":3, "aminated":4, "aminating":4, "amination":4, "aminopherase":5, "amitate":3, "amitotic":4, "amitotically":6, "amitosis":4, "amity":3, "amity":3, "amityville":4, "amman":2, "ammanati":4, "ammeter":3, "ammine":2, "ammiaceous":4, "ammianus":4, "ammisaddai":4, "ammishaddai":4, "ammo":2, "ammon":2, "ammonic":3, "ammonite":3, "ammonitish":4, "ammonical":4, "ammonified":4, "ammonification":6, "ammonify":4, "ammonifying":5, "ammonitoid":4, "ammophilous":4, "ammocete":3, "ammocoete":3, "ammonal":3, "ammonate":3, "ammonia":3, "ammonite":3, "ammonites":3, "ammonitic":4, "ammonia":4, "ammonia solution":7, "ammoniac":4, "ammoniate":4, "ammoniated":5, "ammoniating":5, "ammoniacal":5, "ammoniacum":5, "ammoniation":5, "ammonium":4, "ammonium carbamate":7, "ammonium carbonate":7, "ammonium chloride":6, "ammonium hydroxide":7, "ammonium nitrate":6, "ammonium sulphate":6, "ammono":3, "ammonoid":3, "ammonolysis":5, "ammonolitic":5, "ammonolyze":4, "ammonolyzed":4, "ammonolyzing":5, "ammunition":4, "amnestic":3, "amnestied":3, "amnesty":3, "amnestying":4, "amnesia":3, "amnesic":3, "amnesia":4, "amnesiac":4, "amnia":3, "amnion":3, "amnions":3, "amnionic":4, "amniote":3, "amniotic":4, "amniocentesis":6, "amoebaean":4, "amoebean":4, "amoebiasis":5, "amortise":3, "amortised":3, "amortising":4, "amortize":3, "amortized":3, "amortizement":4, "amortizable":5, "amortizing":4, "amortisation":5, "amortization":5, "amobarbital":5, "amoret":3, "amorette":3, "amoretti":4, "amoretti":4, "amoretto":4, "amorist":3, "amoristic":4, "amorosity":5, "amorous":3, "amorously":4, "amorousness":4, "amoroso":4, "amosite":3, "amp":2, "ampere":2, "ampere-hour":2, "ampere-turn":2, "amperage":3, "amperometric":5, "ampersand":3, "ampelite":3, "ampelitic":4, "ampelopsis":4, "ampelos":3, "ampherotokous":5, "amphetamine":4, "ampherotoky":5, "amphibia":4, "amphibian":4, "amphibious":4, "amphibiously":5, "amphibiousness":5, "amphibolite":4, "amphibolitic":5, "amphibological":6, "amphibologically":7, "amphibolous":4, "amphiboly":4, "amphictyon":4, "amphictyon":4, "amphictyonic":5, "amphictyony":5, "amphidamas":4, "amphigenous":4, "amphigenously":5, "amphilochus":4, "amphimacer":4, "amphimachus":4, "amphimarus":4, "amphinome":4, "amphinomus":4, "amphiprostyle":4, "amphiprostylar":5, "amphisbaena":4, "amphisbaenic":4, "amphisbaenid":4, "amphisbaenian":5, "amphisbaenoid":4, "amphisbaenous":4, "amphiscians":4, "amphiscii":4, "amphissa":3, "amphissus":3, "amphithemis":4, "amphitokal":4, "amphitokous":4, "amphitoky":4, "amphitricha":4, "amphitrichate":4, "amphitrichous":4, "amphitropous":4, "amphitruo":4, "amphitryon":4, "amphiarthrodial":6, "amphiarthrosis":5, "amphiaster":4, "amphiaraus":5, "amphibiotic":5, "amphiblastula":5, "amphibole":3, "amphibolic":4, "amphibology":5, "amphibrach":3, "amphibrachic":4, "amphicarpic":4, "amphicarpous":4, "amphichroic":4, "amphichromatic":5, "amphicoelous":4, "amphicrania":5, "amphidiploid":4, "amphidromia":5, "amphigoric":4, "amphigouri":4, "amphigory":4, "amphikaryon":5, "amphikaryotic":6, "amphimixes":4, "amphimixis":4, "amphion":3, "amphionic":4, "amphioxi":4, "amphioxus":4, "amphipneustic":4, "amphipod":3, "amphiprotic":4, "amphisarca":4, "amphistylar":4, "amphitene":3, "amphithalamus":5, "amphitheatric":5, "amphitheatrically":7, "amphitheater":5, "amphitheatre":5, "amphithecial":4, "amphithecia":5, "amphithecium":5, "amphithura":4, "amphithuron":4, "amphithyra":4, "amphithyron":4, "amphithyrons":4, "amphitrite":4, "amphius":3, "amphiuma":4, "amphogenous":4, "amphogeny":4, "amphoric":3, "amphogenic":4, "ampholyte":3, "ampholytic":4, "amphora":3, "amphorae":3, "amphoral":3, "amphoricity":5, "amphoriskos":4, "amphoteric":4, "amphoterus":4, "ample":2, "amplectant":3, "amplexicaul":4, "amplexifoliate":6, "ampleness":3, "amplificatory":6, "ampliate":3, "ampliation":4, "amplidyne":3, "amplified":3, "amplifiable":5, "amplification":5, "amplifier":4, "amplify":3, "amplifying":4, "amplitude":3, "amplitude modulation":7, "amply":2, "ampoule":2, "ampul":2, "ampule":2, "ampulla":3, "ampullae":3, "ampullar":3, "ampullaceous":4, "ampullula":4, "amputate":3, "amputated":4, "amputating":4, "amputation":4, "amputative":4, "amputator":4, "amputee":3, "ampyx":2, "ampycides":4, "ampycus":3, "ampre":3, "ampre":3, "amram":2, "amratian":3, "amravati":4, "amreeta":3, "amri":2, "amritsar":3, "amrita":3, "amsterdam":3, "amtorg":2, "amtrac":2, "amtrack":2, "amulet":3, "amygdalic":4, "amyl":2, "amyl acetate":5, "amyl alcohol":5, "amyl nitrite":4, "amylase":3, "amylene":3, "amylose":3, "amyntor":3, "amycus":3, "amyelic":4, "amyelia":5, "amylaceous":4, "amyloid":3, "amyloidal":4, "amyloidosis":5, "amylolysis":5, "amylopsin":4, "amylolytic":5, "amylopectin":5, "amyloplast":4, "amylum":3, "amymone":4, "amytal":3, "amythaon":4, "an other":3, "an't":1, "an-end":1, "anal":1, "anat":1, "and":1, "and/or":1, "andiron":3, "andvari":3, "ane":1, "anes":1, "angst":1, "angkor":2, "anglistics":3, "angstrom":2, "angstrm":3, "angwantibo":4, "anim":1, "ankh":1, "ann":1, "ann arbor":3, "anne boleyn":3, "anne of austria":5, "anne of bohemia":6, "annecy":2, "annemarie":3, "annfwn":2, "annville":2, "anon":1, "ansgarius":4, "ant":1, "ant-pipit":2, "antntonioni":5, "antacid":3, "antalkali":4, "antalkaline":4, "antarctic":3, "antarctic":3, "antarctic archipelago":8, "antarctic circle":5, "antarctic ocean":5, "antarctic peninsula":7, "antarctica":4, "antarthritic":4, "antasthmatic":4, "antaapices":5, "antabuse":3, "antapex":3, "antapexes":4, "antatrophic":4, "antbird":2, "anteater":3, "anthelix":3, "anthelia":4, "anthelion":4, "anting":2, "antler":2, "antler moth":3, "antlered":2, "antlerless":3, "antlike":2, "antlia":3, "antlia":3, "antliate":3, "antliliae":4, "antlion":3, "antshrike":2, "antsirane":4, "antthrush":2, "antwerp":2, "antwerpen":3, "anxious":2, "anxiously":3, "anxiousness":3, "anxiety":4, "ana":2, "anaerobe":3, "anaerobic":4, "anaerobia":5, "anaerobically":6, "anaerobiotic":6, "anaerobiotically":8, "anaerobiosis":6, "anaerobium":5, "anaesthetic":4, "anaesthetics":4, "anaesthesia":4, "anaesthesia":5, "anaesthesiologist":7, "anaesthesiology":7, "anaesthetist":4, "anaesthetize":4, "anaesthetized":4, "anaesthetizing":5, "anagnorisis":5, "anagnorisis":5, "analgesic":4, "analgesia":5, "analgia":4, "analphabetic":5, "anamnestic":4, "anamnestically":6, "anamnesis":4, "anamniote":4, "anandrous":3, "ananthous":3, "anaphrodisiac":6, "anapophysial":6, "anaptotic":4, "anaptyctic":4, "anaptyxes":4, "anaptyxis":4, "anarch":2, "anarchic":3, "anarchism":3, "anarchist":3, "anarchistic":4, "anarchical":4, "anarchically":5, "anarchy":3, "anarthric":3, "anarthria":4, "anarthrous":3, "anarthrously":4, "anarthrousness":4, "anaspid":3, "anastigmat":4, "anastigmatic":5, "anatta":3, "anax":2, "anaxagoras":5, "anaxagorean":6, "anaxarete":5, "anaxibia":4, "anaximenes":5, "anabaena":4, "anabantid":4, "anabaptism":4, "anabaptist":4, "anabaptistically":7, "anabas":3, "anabatic":4, "anabiotic":5, "anabiosis":5, "anableps":3, "anabolic":4, "anabolic steroid":6, "anabranch":3, "anacanthous":4, "anacardiaceous":6, "anachronic":4, "anachronical":5, "anachronically":6, "anacidity":5, "anaclastic":4, "anacletus":4, "anaclitic":4, "anaclinal":4, "anaclisis":4, "anacoenosis":5, "anaconda":4, "anaconda":4, "anacortes":4, "anacostia":5, "anacoustic":4, "anacoluthic":5, "anacoluthia":6, "anacoluthically":7, "anacoluthon":5, "anacrogynous":5, "anacrustic":4, "anacrustically":6, "anacruses":4, "anacrusis":4, "anacusia":4, "anacusic":4, "anadarko":4, "anadem":3, "anadenia":5, "anadiplosis":5, "anadyomene":6, "anagenesis":5, "anagenetic":5, "anaglyph":3, "anaglyphic":4, "anaglyphical":5, "anaglyphoscope":5, "anaglypta":4, "anaglyptic":4, "anagogic":4, "anagogical":5, "anagogically":6, "anagoge":4, "anagogy":4, "anagram":3, "anagrammatic":5, "anagrammatically":7, "anagrammatise":5, "anagrammatised":5, "anagrammatism":5, "anagrammatist":5, "anagrammatising":6, "anagrammatize":5, "anagrammatized":5, "anagrammatizing":6, "anaheim":3, "anakim":3, "analects":3, "analecta":4, "analectic":4, "analemma":4, "analemmas":4, "analemmatic":5, "analemmata":5, "analeptic":4, "analog":3, "analog computer":6, "analog-digital converter":8, "analogue":3, "analogic":4, "analogical":5, "analogically":6, "analogicalness":6, "analyse":3, "analysed":3, "analyst":3, "analysable":5, "analyser":4, "analysing":4, "analytic":4, "analytic psychology":8, "analytics":4, "analytical":5, "analytical geometry":9, "analytically":6, "analyze":3, "analyzed":3, "analyzability":7, "analyzable":5, "analyzer":4, "analyzing":4, "analysation":5, "analytique":4, "analyzation":5, "anamorphic":4, "anamorphism":4, "anamorphoscope":5, "anamorphosis":5, "anamosa":4, "ananias":4, "anapaest":3, "anapaestic":4, "anapaestically":6, "anapest":3, "anapestic":4, "anapestically":6, "anaphase":3, "anaphylactic":5, "anaphylactically":7, "anaphylaxis":5, "anaplasmosis":5, "anaplastic":4, "anaplasty":4, "anaplasia":5, "anaplerosis":5, "anapophysis":5, "anasarca":4, "anasarcous":4, "anastasia":4, "anastasia":5, "anatase":3, "anatexes":4, "anatexis":4, "anatine":3, "anatol":3, "anatole":3, "anatolic":4, "anatomic":4, "anatomical":5, "anatomical snuffbox":7, "anatomically":6, "anatomicopathological":10, "anatolia":5, "anatolian":5, "anba":2, "anbury":3, "ancaeus":3, "ancestor":3, "ancestral":3, "ancestrally":4, "ancestress":3, "ancestry":3, "anchesmius":4, "anchino":5, "anchiale":4, "anchises":3, "anchor":2, "anchor man":3, "anchor ring":3, "anchorage":3, "anchorage":3, "anchorable":4, "anchorless":3, "anchorlike":3, "anchorman":3, "anchory":3, "anchoress":3, "anchoret":3, "anchoretic":4, "anchoretism":4, "anchorite":3, "anchoritic":4, "anchoritism":4, "anchoveta":4, "anchovy":3, "anchovy pear":4, "anchusa":3, "anchusin":3, "anchylose":3, "anchylosed":3, "anchylosing":4, "anchylotic":4, "anchylosis":4, "ancien rgime":4, "ancient":2, "ancient greek":3, "ancient history":5, "ancient of days":4, "anciently":3, "ancientness":3, "ancientry":3, "ancilia":4, "ancilla":3, "ancillary":4, "ancipital":4, "ancipitous":4, "ancile":3, "ancius":3, "ancon":2, "ancone":2, "anconoid":3, "ancohuma":4, "ancona":3, "ancona":3, "anconal":3, "ancones":3, "ancr":3, "ancylostomiasis":7, "ancn":3, "andante":3, "andantino":4, "andaluca":6, "andalusia":4, "andalusite":4, "andalusia":5, "andaman":3, "andaman islands":5, "andaman sea":4, "andamanese":4, "andamento":4, "anderssen":3, "anderlecht":3, "andersen":3, "andersen nexo":5, "anderson":3, "andersonville":4, "andes":2, "andesite":3, "andean":3, "andelee":3, "andesine":3, "andesite":3, "andesitic":4, "andhra pradesh":4, "andie":2, "andikithira":5, "andizhan":3, "ando":2, "andoche":2, "andorra":3, "andorra la vella":6, "andoroba":4, "andr":2, "andradite":3, "andre":2, "andrei":2, "andrew":2, "andrew's-cross":2, "andrewes":2, "andrews":2, "andrea":3, "andrea del sarto":6, "andreas":3, "andreanof islands":6, "andreotti":4, "andreyev":3, "androcracy":4, "androcrates":4, "androecial":3, "androecia":4, "androecium":4, "androgenous":4, "androgeus":4, "androgynous":4, "androgyny":4, "android":2, "andromache":4, "andromeda":4, "andromeda":4, "andron":2, "andron":2, "androphonos":4, "andros":2, "androscoggin":4, "androsterone":4, "androcentric":4, "androcles":3, "androclea":4, "androclinia":5, "androclinium":5, "androclus":3, "androclus":3, "androconia":5, "androconium":5, "androcratic":4, "androdioecious":5, "androdioecism":5, "androgamone":4, "androgen":3, "androgenic":4, "androgyne":3, "andromaque":3, "andromache":4, "andromonoecious":5, "andromonoecism":5, "andropetalous":5, "androphore":3, "androsphinx":3, "androsphinxes":4, "androsphinges":4, "androspore":3, "andrus":2, "andrssy":4, "andr":3, "andrs":3, "andrsy":3, "andvar":2, "andvari":3, "andy":2, "anecdote":3, "anecdotage":4, "anecdotic":4, "anecdotist":4, "anecdotical":5, "anecdotically":6, "anecdotal":4, "anecdotalism":5, "anecdotalist":5, "anecdotally":5, "anencephalic":5, "anencephalia":5, "anepigraphic":5, "anergy":3, "aneroid":3, "aneroid barometer":7, "aneroidograph":5, "anesthetic":4, "anesthetically":6, "anesthesia":4, "anesthesimeter":6, "anesthesia":5, "anesthesiologist":7, "anesthesiology":7, "anesthesiometer":7, "anesthetist":4, "anesthetize":4, "anesthetized":4, "anesthetizing":5, "anestrus":3, "aneuploid":3, "aneurin":3, "aneurine":3, "aneurism":3, "aneurismal":4, "aneurismally":5, "aneurysm":3, "aneurysmal":4, "aneurysmally":5, "anechoic":4, "anelace":3, "anelastic":4, "anelasticity":6, "anelectric":4, "anemochorous":5, "anemography":5, "anemology":5, "anemometer":5, "anemometry":5, "anemophilous":5, "anemophily":5, "anemotropism":5, "anemometric":5, "anemometrically":7, "anemosis":4, "anemotaxis":5, "anemotropic":5, "anepigraphous":5, "anethole":3, "anfractuosity":6, "anfractuous":4, "anga":2, "angang":2, "angarsk":2, "angakok":3, "angara":3, "angary":3, "angel":2, "angel":2, "angel cake":3, "angel falls":3, "angel food cake":4, "angel shark":3, "angel's tears":3, "angel's-trumpet":3, "angelica":2, "angell":2, "angels-on-horseback":3, "angelfish":3, "angelfishes":4, "angelhood":3, "angelic":3, "angelic":3, "angelic doctor":5, "angelica":4, "angelica":4, "angelica":4, "angelical":4, "angelically":5, "angelicalness":5, "angelican":4, "angelology":5, "anger":2, "angers":2, "angerboda":4, "angerly":3, "angekok":3, "angela":3, "angeleno":4, "angeline":3, "angelique":3, "angelico":4, "angelina":4, "angelo":3, "angelus":3, "angelus":3, "angelyn":3, "angerona":4, "angeronia":5, "angevin":3, "angevine":3, "angie":2, "angina":3, "angina pectoris":6, "anginal":3, "anginous":3, "angiology":5, "angiomatous":5, "angiotonase":5, "angioblast":4, "angioblastic":5, "angiocarp":4, "angiocardiography":8, "angiocardiographic":8, "angiocarpic":5, "angiocarpous":5, "angioma":4, "angiomas":4, "angiomata":5, "angiosperm":4, "angiospermous":5, "angiotonin":5, "angiotribe":4, "anglaise":2, "angle":2, "angle":2, "angle bracket":4, "angle iron":4, "angle of attack":5, "angle of bank":4, "angle of deviation":7, "angle of dip":4, "angle of incidence":6, "angle of reflection":6, "angle of refraction":6, "angle of repose":5, "angle plate":3, "angle-off":2, "angled":2, "angler":2, "angles":2, "angledozer":4, "anglepod":3, "anglesey":3, "anglesite":3, "anglesmith":3, "angleton":3, "anglewing":3, "angleworm":3, "anglic":2, "angling":2, "anglist":2, "anglia":3, "anglian":3, "anglican":3, "anglican church":4, "anglican communion":6, "anglicanism":4, "anglicanly":4, "anglice":3, "anglicise":3, "anglicise":3, "anglicised":3, "anglicism":3, "anglicist":3, "anglicising":4, "anglicize":3, "anglicize":3, "anglicized":3, "anglicizing":4, "anglicisation":5, "anglicisation":5, "anglicization":5, "anglicization":5, "anglified":3, "anglification":5, "anglify":3, "anglify":3, "anglifying":4, "anglo":2, "anglo-australian":4, "anglo-american":5, "anglo-americanism":6, "anglo-catholic":4, "anglo-french":2, "anglo-gallic":3, "anglo-indian":4, "anglo-irish":2, "anglo-irish":3, "anglo-norman":3, "anglo-saxon":3, "anglocatholicism":6, "anglomania":5, "anglomaniac":5, "anglomaniacal":6, "anglophil":3, "anglophile":3, "anglophilia":5, "anglophiliac":5, "anglophobe":3, "anglophone":3, "anglophobia":5, "anglophobiac":5, "angor":2, "angostura":4, "angostura bark":5, "angostura bitters":6, "angoumois":3, "angola":3, "angolese":3, "angora":3, "angora":3, "angora cat":4, "angora goat":4, "angora rabbit":5, "angostura":4, "angra do heroismo":7, "angrier":3, "angriest":3, "angrily":3, "angriness":3, "angry":2, "angry young man":4, "angrbodha":4, "anguier":2, "anguilla":3, "anguilliform":4, "anguine":2, "anguis":2, "anguish":2, "anguished":2, "angurboda":4, "angus":2, "angus og":3, "angular":3, "angular acceleration":8, "angular momentum":6, "angular velocity":7, "angularity":5, "angularly":4, "angularness":4, "angulate":3, "angulately":4, "angulateness":4, "angulated":4, "angulation":4, "angulose":3, "angulosity":5, "angulous":3, "anglique":4, "anhaematopoiesis":7, "anhalt":2, "anharmonic":4, "anhematopoiesis":7, "anhemitonic":5, "anhedonic":4, "anhedonia":5, "anhedral":3, "anhematosis":5, "anhinga":3, "anhidrotic":4, "anhidrosis":4, "anhwei":2, "anhydremic":4, "anhydremia":5, "anhydride":3, "anhydrite":3, "anhydrous":3, "anhydrosis":4, "anil":2, "anile":2, "anis":2, "anise":2, "anisaldehyde":5, "aniseikonic":5, "aniseikonia":6, "aniakchak":4, "anicetus":4, "aniconic":4, "aniconism":4, "anilide":3, "anilidic":4, "anilin":3, "aniline":3, "aniline dye":4, "anim":3, "anima":3, "animadvert":4, "animadverter":5, "animadversion":5, "animadversional":6, "animal":3, "animal husbandry":6, "animal kingdom":5, "animal magnetism":6, "animal starch":4, "animalcule":4, "animalcular":5, "animalculum":5, "animalic":4, "animalise":4, "animalised":4, "animalism":4, "animalist":4, "animalising":5, "animalistic":5, "animalize":4, "animalized":4, "animalizing":5, "animality":5, "animalization":6, "animally":4, "animate":3, "animately":4, "animateness":4, "animated":4, "animated cartoon":6, "animatedly":5, "animater":4, "animating":4, "animatingly":5, "animation":4, "animatism":4, "animatistic":5, "animator":4, "animism":3, "animist":3, "animistic":4, "animosity":5, "animus":3, "anim":4, "anion":3, "anionic":4, "aniseed":3, "anisette":3, "anisogamous":5, "anisogamy":5, "anisole":3, "anisomerous":5, "anisopteran":5, "anisotropy":5, "anisocarpic":5, "anisocoria":6, "anisodactyl":5, "anisodactylous":6, "anisodont":4, "anisogamic":5, "anisogamete":5, "anisogametic":6, "anisoiconia":7, "anisokonia":6, "anisometric":5, "anisometropic":6, "anisometropia":7, "anisophyllous":5, "anisophylly":5, "anisotropic":5, "anius":3, "anjanette":3, "anjou":2, "ankara":3, "ankerite":3, "ankeny":3, "anking":2, "ankle":2, "ankle sock":3, "ankle-deep":2, "anklet":2, "anklebone":3, "anklung":2, "ankus":2, "ankuses":3, "ankylose":3, "ankylosed":3, "ankylosing":4, "ankylostomiasis":7, "ankylotic":4, "ankyloglossia":6, "ankylosaur":4, "ankylosis":4, "anlace":2, "anlage":3, "anna":2, "anna":2, "annal":2, "annals":2, "annalist":3, "annalistic":4, "annalistically":6, "annam":2, "annamite":3, "annapolis":4, "annapolis royal":6, "annates":2, "annats":2, "annatto":3, "annaba":3, "annabel":3, "annabergite":4, "annamese":3, "annapurna":4, "annatol":3, "anneal":2, "annealer":3, "annectant":3, "annectent":3, "annelida":4, "annelidan":4, "annensky":3, "annette":2, "annex":2, "annexe":2, "annexable":4, "annexation":4, "annexational":5, "annexationism":5, "annexationist":5, "annexment":3, "annecy":3, "annelid":3, "annie":2, "anniston":3, "annihilate":4, "annihilated":5, "annihilating":5, "annihilability":7, "annihilable":5, "annihilation":5, "annihilationism":6, "annihilationist":6, "annihilationistic":7, "annihilationistical":8, "annihilative":5, "annihilator":5, "anniversary":5, "anniversary day":6, "anno domini":5, "anno regni":4, "anno urbis conditae":7, "annotinous":4, "announce":2, "announced":2, "announceable":4, "announcement":3, "announcer":3, "announcing":3, "annoy":2, "annoyance":3, "annoyer":3, "annoying":3, "annoyingly":4, "annoyingness":4, "annotate":3, "annotated":4, "annotating":4, "annotation":4, "annotative":4, "annotator":4, "annotatory":5, "annul":2, "annulled":2, "annullable":4, "annulling":3, "annulment":3, "annunciata":4, "annunciate":4, "annunciated":5, "annunciating":5, "annunciable":5, "annunciation":5, "annunciative":5, "annunciator":5, "annunciatory":6, "annunziata":4, "annunzio":3, "annus mirabilis":6, "annual":3, "annual parallax":6, "annual ring":4, "annually":4, "annuitant":4, "annuity":4, "annular":3, "annular eclipse":5, "annular ligament":6, "annularity":5, "annularly":4, "annulate":3, "annulated":4, "annulation":4, "annulet":3, "annulose":3, "annulus":3, "annwn":2, "anode":2, "anodic":3, "anodically":5, "anoestrus":3, "anorthic":3, "anorthite":3, "anorthitic":4, "anorthoclase":4, "anorthosite":4, "anosmatic":4, "anosmia":4, "another":3, "another-guess":3, "anourous":3, "anoxaemic":4, "anoxaemia":5, "anoxemic":4, "anoxemia":5, "anoxic":3, "anoxia":4, "anodise":3, "anodize":3, "anodized":3, "anodizing":4, "anodontia":4, "anodyne":3, "anoetic":4, "anoesia":4, "anoesis":4, "anolyte":3, "anomie":3, "anomite":3, "anomy":3, "anonychia":5, "anonym":3, "anonymity":5, "anoopsia":5, "anopisthograph":5, "anopisthographic":6, "anopisthographically":8, "anopia":4, "anorectal":4, "anorectic":4, "anorectous":4, "anoretic":4, "anorexia":5, "anorexia nervosa":8, "anorexiant":5, "anosognosia":5, "anopsia":6, "ansa":2, "ansar":2, "ansarian":4, "ansate":2, "anschauung":3, "anschluss":2, "ansel":2, "anselm":2, "anserine":3, "ansermet":3, "anserous":3, "anshan":2, "anson":2, "ansonia":4, "anstoss":2, "anstsse":4, "answer":2, "answer back":3, "answer for":3, "answerability":6, "answerable":4, "answerableness":5, "answerably":4, "answerer":3, "answerless":3, "answerlessly":4, "anta":2, "antaea":3, "antaean":3, "antaeus":3, "antagonise":4, "antagonised":4, "antagonism":4, "antagonist":4, "antagonising":5, "antagonistic":5, "antagonistically":7, "antagonize":4, "antagonized":4, "antagonizable":6, "antagonizing":5, "antagonisation":6, "antagonization":6, "antagoras":4, "antal":2, "antalya":3, "antanarivo":5, "antaranga":4, "antares":3, "antabuse":3, "antakiya":4, "antakya":3, "antananarivo":6, "antarala":4, "ante":2, "ante meridiem":6, "ante-bellum":3, "ante-christum":3, "ante-mortem":3, "ante-nicaean":4, "ante-nicene":3, "ante-partum":3, "anteed":2, "antenna":3, "antennae":3, "antennal":3, "antennas":3, "antennate":3, "antennary":4, "antennifer":4, "antenniform":4, "antennule":3, "antennular":4, "antep":2, "anteroparietal":7, "anterus":3, "antebellum":4, "antecede":3, "anteceded":4, "antecedence":4, "antecedent":4, "antecedents":4, "antecedently":5, "antecedency":5, "anteceding":4, "antecessor":4, "antecedental":5, "antechamber":4, "antechapel":4, "antechoir":3, "antecourt":3, "antedate":3, "antediluvian":6, "antefix":3, "antefixa":4, "antefixal":4, "antefixes":4, "anteflexion":4, "antehall":3, "anteing":3, "antelope":3, "antelopine":4, "antelopian":5, "antemeridian":6, "antemundane":4, "antenave":3, "antenatal":4, "antenor":3, "antenumber":4, "antenuptial":4, "anteorbital":5, "antepartum":4, "antepast":3, "antependia":5, "antependium":5, "antepenult":4, "antepenultimate":6, "anteporch":3, "anteport":3, "anteportico":5, "anteprandial":5, "anteprohibition":6, "anterior":4, "anteriority":6, "anteriorly":5, "anteroom":3, "anteros":3, "antetype":3, "antevert":3, "anteversion":4, "antevorta":4, "anthas":2, "antheil":2, "anthelminthic":4, "anthelmintic":4, "anthem":2, "anther":2, "antheral":3, "antheridia":5, "antheridial":5, "antheridium":5, "antherless":3, "antherozoid":5, "anthesteria":5, "anthea":3, "anthema":3, "anthemata":4, "anthemia":4, "anthemion":4, "anthesis":3, "antheus":3, "anthologise":4, "anthologised":4, "anthologist":4, "anthologising":5, "anthologize":4, "anthologized":4, "anthologizing":5, "anthology":4, "anthophilous":4, "anthobian":4, "anthocarpous":4, "anthocyan":4, "anthocyanin":5, "anthodia":4, "anthodium":4, "anthological":5, "anthologically":6, "anthony":3, "anthony of padua":7, "anthophore":3, "anthophyllite":4, "anthophyllitic":5, "anthotaxy":4, "anthozoa":4, "anthozoan":4, "anthozoic":4, "anthracnose":3, "anthrax":2, "anthracene":3, "anthraces":3, "anthracite":3, "anthracitic":4, "anthracoid":3, "anthracotic":4, "anthracosilicosis":7, "anthracosis":4, "anthraquinone":4, "anthrasilicosis":6, "anthropogeny":5, "anthropography":5, "anthropoid":3, "anthropoid ape":4, "anthropoidal":4, "anthropolater":5, "anthropolatric":5, "anthropolatry":5, "anthropologist":5, "anthropology":5, "anthropometer":5, "anthropometrist":5, "anthropometry":5, "anthroponomist":5, "anthroponomy":5, "anthropophagi":5, "anthropophagite":5, "anthropophagously":6, "anthropophagus":5, "anthropophagy":5, "anthropopathism":5, "anthropopathy":5, "anthroposcopy":5, "anthroposophy":5, "anthropocentric":5, "anthropocentrism":5, "anthropogenesis":6, "anthropogeny":5, "anthropogenetic":6, "anthropogeographer":7, "anthropogeography":7, "anthropogeographic":7, "anthropographic":5, "anthropological":6, "anthropologically":7, "anthropometric":5, "anthropometrically":7, "anthropomorphic":5, "anthropomorphise":5, "anthropomorphised":5, "anthropomorphism":5, "anthropomorphist":5, "anthropomorphising":6, "anthropomorphize":5, "anthropomorphized":5, "anthropomorphizing":6, "anthropomorphically":7, "anthropomorphization":7, "anthropomorphous":5, "anthropomorphously":6, "anthropomorphosis":6, "anthroponomics":5, "anthroponomical":6, "anthropopathic":5, "anthropophagic":5, "anthroposophical":6, "anthurium":4, "anti":2, "anti-aircraft":3, "anti-arab":3, "anti-aristotelian":6, "anti-aristotelianism":7, "anti-australian":4, "anti-austria":4, "anti-austrian":4, "anti-american":5, "anti-americanism":6, "anti-biblical":4, "anti-bible":3, "anti-bolshevik":4, "anti-bolshevism":4, "anti-bolshevist":4, "anti-bolshevistic":5, "anti-british":3, "anti-calvinism":4, "anti-calvinist":4, "anti-calvinistic":5, "anti-calvinistical":6, "anti-catholic":4, "anti-catholicism":5, "anti-corn law league":4, "anti-darwin":3, "anti-darwinism":4, "anti-darwinist":4, "anti-darwinian":5, "anti-depressant":4, "anti-english":3, "anti-europe":3, "anti-european":5, "anti-europeanism":6, "anti-france":2, "anti-french":2, "anti-freud":2, "anti-freudian":4, "anti-freudianism":5, "anti-g suit":3, "anti-german":3, "anti-germanic":4, "anti-germanism":4, "anti-germanization":6, "anti-greece":2, "anti-greek":2, "anti-hero":3, "anti-heroic":4, "anti-icer":3, "anti-immigration":5, "anti-imperialism":6, "anti-imperialist":6, "anti-imperialistic":7, "anti-indemnity":5, "anti-induction":4, "anti-inductive":4, "anti-intellectual":6, "anti-intellectualism":7, "anti-intellectualist":7, "anti-intellectuality":8, "anti-idealism":5, "anti-idealist":5, "anti-idealistic":6, "anti-idealistically":8, "anti-irish":3, "anti-isolation":5, "anti-isolationism":6, "anti-isolationist":6, "anti-italian":4, "anti-italianism":5, "anti-japanese":4, "anti-jesuit":4, "anti-jesuitic":5, "anti-jesuitism":5, "anti-jesuitical":6, "anti-jesuitry":5, "anti-jewish":3, "anti-judaic":4, "anti-judaism":4, "anti-judaist":4, "anti-judaistic":5, "anti-latin":3, "anti-latinism":4, "anti-leaguer":3, "anti-lebanon":4, "anti-malthusian":5, "anti-malthusianism":6, "anti-mason":3, "anti-masonry":4, "anti-mexican":4, "anti-mony-yellow":4, "anti-negro":3, "anti-negroism":4, "anti-nordic":3, "anti-novel":3, "anti-novelist":4, "anti-open-shop":3, "anti-oriental":5, "anti-orientalism":6, "anti-orientalist":6, "anti-plato":3, "anti-platonic":4, "anti-platonically":6, "anti-platonism":4, "anti-platonist":4, "anti-polish":3, "anti-populist":4, "anti-protestant":4, "anti-protestantism":5, "anti-puritan":4, "anti-puritanism":5, "anti-roman":3, "anti-romanist":4, "anti-russia":3, "anti-russian":3, "anti-scandinavia":6, "anti-scripture":3, "anti-scripturist":4, "anti-semite":3, "anti-semitism":4, "anti-serb":2, "anti-semitic":4, "anti-semitically":6, "anti-slav":2, "anti-slavic":3, "anti-socrates":4, "anti-socratic":4, "anti-soviet":4, "anti-spain":2, "anti-spanish":3, "anti-sweden":3, "anti-swedish":3, "anti-teuton":3, "anti-teutonic":4, "anti-trinitarian":6, "anti-trinitarianism":7, "anti-turkish":3, "anti-zionism":4, "anti-zionist":4, "antibes":2, "antic":2, "antichthon":3, "antichthones":4, "anticked":2, "anticking":3, "antics":2, "anticipant":4, "anticipate":4, "anticipatable":6, "anticipated":5, "anticipating":5, "anticipation":5, "anticipative":5, "anticipatively":6, "anticipator":5, "anticipatorily":7, "anticipatory":6, "anticly":3, "antietam":3, "antigone":4, "antigonus i":5, "antigorite":4, "antilles":3, "antillean":4, "antilochus":4, "antilogism":4, "antilogistic":5, "antilogistically":7, "antilogy":4, "antimachus":4, "antimerism":4, "antinomy":4, "antinous":4, "antiphates":4, "antiphonal":4, "antiphonally":5, "antiphonaries":5, "antiphonary":5, "antiphony":4, "antiphrasis":4, "antipater":4, "antipathist":4, "antipathy":4, "antipodal":4, "antipodes":4, "antipodes":4, "antipodean":5, "antique":2, "antiqued":2, "antiquely":3, "antiqueness":3, "antiquities":4, "antiquity":4, "antirrhinum":4, "antisthenes":4, "antistrophe":4, "antithesis":4, "antitragus":4, "antia":3, "antiagglutinant":6, "antiagglutination":7, "antiagglutinative":7, "antiaggression":5, "antiaggressive":5, "antiaircraft":4, "antialcoholic":6, "antialcoholism":6, "antialcoholist":6, "antiannexation":6, "antiannexationist":7, "antiaphrodisiac":7, "antiar":3, "antiaristocracy":7, "antiauxin":4, "antiarin":4, "antiaristocratic":7, "antiaristocratical":8, "antiatheism":5, "antiatheist":5, "antiatheistic":6, "antiatheistical":7, "antibacchic":4, "antibacchii":5, "antibacchius":5, "antibacterial":6, "antiballistic":5, "antibaryon":5, "antibilious":4, "antibiotic":5, "antibiotically":7, "antibiosis":5, "antiblastic":4, "antibodies":4, "antibody":4, "anticapitalism":6, "anticapitalist":6, "anticapitalistic":7, "anticapitalistically":9, "anticarious":5, "anticaste":3, "anticathode":4, "anticatalase":5, "anticatalyst":5, "anticatalytic":6, "anticatalytically":8, "anticatarrhal":5, "anticathexis":5, "anticensorship":5, "anticensorial":6, "anticensorious":6, "anticentralism":5, "anticentralist":5, "anticentralization":7, "anticeremonial":7, "anticeremonialism":8, "anticeremonialist":8, "anticeremonious":7, "antichlor":3, "antichloristic":5, "anticholinergic":6, "anticholinesterase":7, "antichrist":3, "antichristian":4, "antichristianly":5, "antichurch":3, "anticivic":4, "anticivil":4, "anticivilian":5, "anticlassical":5, "anticlassicalism":6, "anticlassicalist":6, "anticlassicism":5, "anticlassicist":5, "anticlastic":4, "anticlergy":4, "anticlerical":5, "anticlericalism":6, "anticlericalist":6, "anticline":3, "anticlimactic":5, "anticlimactically":7, "anticlimax":4, "anticlinal":4, "anticlinoria":6, "anticlinorium":6, "anticlockwise":4, "anticlogging":4, "anticommercial":5, "anticommercialism":6, "anticommercialist":6, "anticommercialistic":7, "anticommerciality":8, "anticommunism":5, "anticommunist":5, "anticommunistic":6, "anticommunistical":7, "anticommutative":6, "anticonfederationism":8, "anticonfederationist":8, "anticonfederative":7, "anticonformist":5, "anticonformity":6, "anticonscription":5, "anticonservatism":6, "anticonservative":6, "anticonstitution":6, "anticonstitutional":7, "anticonstitutionalism":8, "anticonstitutionalist":8, "anticontagious":5, "anticonvention":5, "anticonventional":6, "anticonventionalism":7, "anticonventionalist":7, "anticonvulsant":5, "anticorrosion":5, "anticorrosive":5, "anticorrosively":6, "anticorrosiveness":6, "anticosmetics":5, "anticosti":4, "anticoagulant":6, "anticoagulating":7, "anticoagulation":7, "anticoagulative":7, "anticoagulator":7, "anticoincidence":6, "anticorona":5, "anticreation":5, "anticreational":6, "anticreationism":6, "anticreationist":6, "anticreative":5, "anticreativity":7, "anticritical":5, "anticryptic":4, "anticryptically":6, "anticum":3, "anticynic":4, "anticynical":5, "anticynicism":5, "anticyclic":4, "anticyclical":5, "anticyclolysis":6, "anticyclone":4, "anticyclonic":5, "anticyclogenesis":7, "antidancing":4, "antidemocrat":5, "antidemocratic":6, "antidemocratical":7, "antidemocracy":6, "antidepressant":5, "antiderivative":6, "antidiphtheritic":6, "antidisestablishmentarianism":11, "antidiuretic":6, "antidivorce":4, "antidogmatic":5, "antidogmatical":6, "antidogmatism":5, "antidogmatist":5, "antidote":3, "antidotal":4, "antidotally":5, "antidotical":5, "antidotically":6, "antidomestic":5, "antidomestically":7, "antidoron":4, "antidraft":3, "antidromic":4, "antidromically":6, "antidrug":3, "antidynastic":5, "antidynastical":6, "antidynasty":5, "antiecclesiastic":7, "antiecclesiastical":8, "antiecclesiasticism":8, "antieducation":6, "antieducational":7, "antieducationalist":8, "antieducationist":7, "antiempiric":5, "antiempirical":6, "antiempiricism":6, "antiempiricist":6, "antienergistic":6, "antienthusiasm":6, "antienthusiast":6, "antienthusiastic":7, "antienthusiastically":9, "antienzyme":4, "antienzymatic":6, "antievolution":6, "antievolutional":7, "antievolutionary":8, "antievolutionist":7, "antievolutionistic":8, "antiexpansion":5, "antiexpansionism":6, "antiexpansionist":6, "antiexpressionism":6, "antiexpressionist":6, "antiexpressionistic":7, "antiexpressive":5, "antiegoism":5, "antiegoist":5, "antiegoistic":6, "antiegoistical":7, "antiegotism":5, "antiegotist":5, "antiegotistic":6, "antiegotistical":7, "antierosion":5, "antierosive":5, "antifascism":4, "antifascist":4, "antifederalism":6, "antifederalist":6, "antifeminism":5, "antifeminist":5, "antifeministic":6, "antiferromagnet":6, "antiferromagnetic":7, "antiferromagnetism":7, "antifeudal":4, "antifeudalism":5, "antifeudalist":5, "antifeudalistic":6, "antifeudalization":7, "antifebrile":4, "antifebrin":4, "antifoaming":4, "antifoggant":4, "antifouling":4, "antifreeze":3, "antifriction":4, "antifrictional":5, "antifundamentalism":7, "antifundamentalist":7, "antifungal":4, "antigambling":4, "antigen":3, "antigenic":4, "antigenicity":6, "antignostic":4, "antignostical":5, "antigo":3, "antigovernment":5, "antigovernmental":6, "antigraft":3, "antigrammatical":6, "antigravitation":6, "antigravitational":7, "antigravity":5, "antigua":3, "antihalation":5, "antihelices":5, "antihelix":4, "antihero":4, "antihistamine":5, "antihistaminic":6, "antihierarchal":6, "antihierarchic":6, "antihierarchism":6, "antihierarchical":7, "antihierarchy":6, "antihunting":4, "antihuman":4, "antihumanism":5, "antihumanist":5, "antihumanistic":6, "antihypnotic":5, "antihypnotically":7, "antihysteric":5, "antihygienic":6, "antihygienically":8, "antiketogenesis":7, "antiketogenic":6, "antiknock":3, "antikythera":5, "antilabor":4, "antileague":3, "antilepton":4, "antileveling":5, "antilevelling":5, "antilegomena":6, "antiliberal":5, "antiliberalism":6, "antiliberalist":6, "antiliberalistic":7, "antiliquor":4, "antiliturgist":5, "antiliturgy":5, "antiliturgic":5, "antiliturgical":6, "antilog":3, "antilogarithm":5, "antilogarithmic":6, "antilottery":5, "antimachination":6, "antimagnetic":5, "antimask":3, "antimasker":4, "antimasque":3, "antimasquer":4, "antimatter":4, "antimacassar":5, "antimachine":4, "antimachinery":6, "antimalarial":6, "antimaterialism":7, "antimaterialist":7, "antimaterialistic":8, "antimaterialistically":10, "antimechanism":5, "antimechanist":5, "antimechanistic":6, "antimechanistically":8, "antimechanization":7, "antimedical":5, "antimedication":6, "antimedicative":6, "antimedicine":5, "antimensia":5, "antimension":5, "antimensium":5, "antimere":3, "antimerger":4, "antimerging":4, "antimeric":4, "antimethod":4, "antimediaeval":6, "antimediaevalism":7, "antimediaevalist":7, "antimedieval":6, "antimedievalism":7, "antimedievalist":7, "antimethodic":5, "antimethodical":6, "antimilitary":6, "antimilitarism":6, "antimilitarist":6, "antimilitaristic":7, "antimilitaristically":9, "antiministerial":7, "antiministerialist":8, "antimissile":4, "antimicrobial":6, "antimodern":4, "antimodernism":5, "antimodernist":5, "antimodernistic":6, "antimodernization":7, "antimonarch":4, "antimonarchism":5, "antimonarchist":5, "antimonarchistic":6, "antimonarchy":5, "antimonsoon":4, "antimoral":4, "antimoralism":5, "antimoralist":5, "antimoralistic":6, "antimonarchal":5, "antimonarchic":5, "antimonarchial":6, "antimonarchical":6, "antimonate":4, "antimonic":4, "antimonide":4, "antimonial":5, "antimoniate":5, "antimonious":5, "antimonopolism":6, "antimonopolist":6, "antimonopolistic":7, "antimonopolization":8, "antimonopoly":6, "antimonous":4, "antimony":4, "antimony potassium tartrate":10, "antimonyl":4, "antimorality":6, "antimusical":5, "antimystic":4, "antimystical":5, "antimysticism":5, "antinarcotic":5, "antinatural":5, "antinaturalism":6, "antinaturalist":6, "antinaturalistic":7, "antinational":5, "antinationalism":6, "antinationalist":6, "antinationalistic":7, "antinationalistically":9, "antinationalization":8, "antineuralgic":5, "antineuritic":5, "antineutral":4, "antineutralism":5, "antineutrality":6, "antineutrino":5, "antineutron":4, "antinihilism":5, "antinihilist":5, "antinihilistic":6, "antinode":3, "antinodal":4, "antinoise":3, "antinomic":4, "antinormal":4, "antinormality":6, "antinovel":4, "antinomian":5, "antinomianism":6, "antinucleon":5, "antioch":3, "antioptimism":5, "antioptimist":5, "antioptimistic":6, "antioptimistical":7, "antiorthodox":5, "antiorthodoxy":6, "antioxidant":5, "antioxidizer":6, "antioxidizing":6, "antioxygenating":7, "antioxygenation":7, "antioxygenator":7, "antiochian":5, "antiochus":4, "antiochus iii":5, "antiochus iv":5, "antiodontalgic":6, "antiope":4, "antiozonant":5, "antipacifism":5, "antipacifist":5, "antipacifistic":6, "antiparallel":5, "antiparabema":6, "antiparabemata":7, "antiparasitic":6, "antiparasitical":7, "antiparliament":5, "antiparliamentary":7, "antiparticle":5, "antipasti":4, "antipasto":4, "antipastos":4, "antipathogen":5, "antipathogene":5, "antipathogenic":6, "antipapal":4, "antipapalist":5, "antipapacy":5, "antipapism":4, "antipapist":4, "antipapistic":5, "antipapistical":6, "antipathetic":5, "antipathetical":6, "antipathetical":6, "antipathetically":7, "antipatheticalness":7, "antipatriarch":5, "antipatriarchal":6, "antipatriarchy":6, "antipatriot":5, "antipatriotic":6, "antipatriotism":6, "antipatriotically":8, "antiperistalsis":6, "antiperistaltic":6, "antipersonnel":5, "antiperspirant":5, "antipestilence":5, "antipestilent":5, "antipestilential":6, "antipetalous":5, "antipedal":4, "antiperiodic":6, "antiphas":3, "antiphilosophic":6, "antiphilosophical":7, "antiphilosophism":6, "antiphilosophy":6, "antiphlogistic":5, "antiphon":3, "antiphonic":4, "antiphonically":6, "antiphrastic":4, "antiphrastically":6, "antiphus":3, "antiphysical":5, "antiplastic":4, "antipode":3, "antipoenus":4, "antipole":3, "antipolitics":5, "antipollution":5, "antipope":3, "antipopery":5, "antipopularization":8, "antipopulism":5, "antipoverty":5, "antipoetic":5, "antipoetical":6, "antipolar":4, "antipolitical":6, "antipragmatic":5, "antipragmatical":6, "antipragmaticism":6, "antipragmatism":5, "antipragmatist":5, "antiprelatism":5, "antiprelatist":5, "antipriest":3, "antipriesthood":4, "antiproductive":5, "antiproductivity":7, "antiprohibition":6, "antiprohibitionist":7, "antiproton":4, "antipruritic":5, "antipsalmist":4, "antipsychiatry":6, "antipuritan":5, "antipyretic":5, "antipyresis":5, "antipyrine":4, "antipyrotic":5, "antiquaries":4, "antiquarian":5, "antiquarianism":6, "antiquary":4, "antiquate":3, "antiquated":4, "antiquating":4, "antiquatedness":5, "antiquation":4, "antiquer":3, "antiquing":3, "antiracing":4, "antiradical":4, "antiradicalism":6, "antirachitic":5, "antirachitically":7, "antiracial":4, "antiradiant":5, "antiradiating":6, "antiradiation":6, "antirational":5, "antirationalism":6, "antirationalist":6, "antirationalistic":7, "antirationality":7, "antired":3, "antirent":3, "antirenter":4, "antirentism":4, "antiresonance":5, "antirestoration":6, "antirevolution":6, "antirevolutionaries":8, "antirevolutionary":8, "antirevolutionist":7, "antireacting":5, "antireaction":5, "antireactionaries":7, "antireactionary":7, "antireactive":5, "antirealism":5, "antirealist":5, "antirealistic":6, "antirealistically":8, "antireality":6, "antireducer":5, "antireducing":5, "antireduction":5, "antireductive":5, "antireflexive":5, "antireform":4, "antireformer":5, "antireforming":5, "antireformist":5, "antireligion":5, "antireligionist":6, "antireligious":5, "antireligiosity":8, "antiremonstrant":5, "antiremonstrant":5, "antirepublican":6, "antirepublicanism":7, "antirevisionist":6, "antirheumatic":5, "antiritual":5, "antiritualism":6, "antiritualist":6, "antiritualistic":7, "antiroyal":4, "antiroyalism":5, "antiroyalist":5, "antiromance":4, "antiromantic":5, "antiromanticism":6, "antiromanticist":6, "antirust":3, "antisana":4, "antisceptic":4, "antisceptical":5, "antiscepticism":5, "antischool":3, "antischolastic":5, "antischolastically":7, "antischolasticism":6, "antiscience":4, "antiscientific":6, "antiscientifically":8, "antiscorbutic":5, "antiscriptural":5, "antisensitivity":7, "antisensitizer":6, "antisensitizing":6, "antisensuality":7, "antisensuous":5, "antisepalous":5, "antisepsis":4, "antiseptic":4, "antiseptically":6, "antisepticise":5, "antisepticize":5, "antisera":4, "antiserum":4, "antiserums":4, "antisiccative":5, "antiskeptic":4, "antiskeptical":5, "antiskepticism":5, "antiskid":3, "antiskidding":4, "antislavery":5, "antislip":3, "antismoking":4, "antisophism":4, "antisophist":4, "antisophistry":5, "antisoporific":6, "antisocial":4, "antisocialistic":6, "antisocially":5, "antisociality":7, "antisolar":4, "antisophistic":5, "antisophistication":7, "antispasmodic":5, "antispiritual":6, "antispiritualism":7, "antispiritualist":7, "antispiritualistic":8, "antisplitting":4, "antispreader":4, "antispreading":4, "antistalling":4, "antistate":3, "antistater":4, "antistatic":4, "antistatism":4, "antistatist":4, "antistimulant":5, "antistimulation":6, "antistrike":3, "antistriker":4, "antistrophic":4, "antistrophically":6, "antisubmarine":5, "antisuffrage":4, "antisuffragist":5, "antisudorific":6, "antisupernatural":7, "antisupernaturalism":8, "antisupernaturalist":8, "antisupernaturalistic":9, "antisymmetric":5, "antisymmetrical":6, "antisymmetry":5, "antisyndicalism":6, "antisyndicalist":6, "antisyndication":6, "antisynod":4, "antisyphilitic":6, "antitank":3, "antitarnish":4, "antitarnishing":5, "antitartaric":5, "antitax":3, "antitaxation":5, "antitemperance":5, "antithetic":4, "antithetical":5, "antithetically":6, "antitheologizing":7, "antitheology":6, "antitheological":7, "antitheologian":6, "antitonic":4, "antitoxic":4, "antitoxin":4, "antitoxine":4, "antitrade":3, "antitrades":3, "antitradition":5, "antitraditional":6, "antitraditionalist":7, "antitrust":3, "antitussive":4, "antituberculous":6, "antitype":3, "antitypic":4, "antitypically":6, "antiunion":4, "antiunionist":5, "antiutilitarian":8, "antiutilitarianism":9, "antivaccinist":5, "antivaccination":6, "antivaccinationist":7, "antivenin":4, "antiviral":4, "antivirus":4, "antiwar":3, "antiworld":3, "antoine":2, "antoinette":3, "anton":2, "antone":2, "antonymous":4, "antodontalgic":5, "antofagasta":5, "antonet":3, "antoninianus":6, "antonio":3, "antonia":4, "antoninus":4, "antoninus pius":6, "antonio":4, "antonius":4, "antonomastic":5, "antonomastically":7, "antonomasia":5, "antonomasia":6, "antony":3, "antonym":3, "antonn":4, "antral":2, "antre":2, "antrim":2, "antrorse":2, "antrorsely":3, "antrum":2, "antung":2, "anuran":3, "anuretic":4, "anuresis":4, "anuric":3, "anuria":4, "anurous":3, "anvers":2, "anvil":2, "any":2, "any more":3, "anyang":2, "anybodies":4, "anybody":4, "anyhow":3, "anymore":3, "anyone":3, "anyplace":3, "anything":3, "anytime":3, "anyway":3, "anyways":3, "anywhere":3, "anywheres":3, "anywise":3, "anzac":2, "anzac day":3, "anzengruber":4, "anzhero-sudzhensk":4, "anzio":3, "aob":1, "ape":1, "ape-man":1, "apelike":2, "apeman":2, "aphaeretic":4, "aphanite":3, "aphanitic":4, "aphanitism":4, "aphareus":3, "apheretic":4, "aphesis":3, "aphides":3, "aphorise":3, "aphorised":3, "aphorism":3, "aphorist":3, "aphorising":4, "aphorismatic":5, "aphorismic":4, "aphoristic":4, "aphoristically":6, "aphorize":3, "aphorized":3, "aphorizer":4, "aphorizing":4, "aphrodisiac":5, "aphrodisia":4, "aphrodite":4, "aphrogeneia":5, "aphtha":2, "aplanospore":2, "app":1, "approx":1, "apse":1, "apt":1, "aptly":2, "aptness":2, "apastron":3, "apagoge":4, "apalachicola":6, "apanage":3, "apatetic":4, "apatheia":4, "apathetic":4, "apathetical":5, "apathetically":6, "apathia":4, "apathy":3, "apatite":3, "apaturia":5, "apennines":3, "aperies":3, "apertometer":5, "aperture":3, "apertured":3, "apertural":4, "apery":3, "apemosyne":5, "aphelion":4, "apheliotropic":6, "aping":2, "apish":2, "apishly":3, "apishness":3, "apianus":4, "apicad":3, "apical":3, "apically":4, "apices":3, "apiezon":4, "aplanatic":4, "aplanatically":6, "aplite":2, "aplitic":3, "apneustic":3, "apnea":3, "apneal":3, "apneic":3, "apnoea":3, "apnoeal":3, "apnoeic":3, "apollonian":5, "apollonius":5, "apostolic":4, "apostolic delegate":7, "apostolic fathers":6, "apostolic see":5, "apostolic succession":7, "apostolical":5, "apostolically":6, "apostolicism":5, "apostrophic":4, "apocarp":3, "apocarpous":4, "apocarpy":4, "apocatastatic":6, "apocatastasis":6, "apocenter":4, "apocentric":4, "apocentricity":6, "apochromat":4, "apochromatic":5, "apochromatic lens":6, "apochromatism":5, "apocopic":4, "apocrine":3, "apodal":3, "apodeictic":4, "apodeictically":6, "apodeme":3, "apodemata":5, "apodictic":4, "apodictically":6, "apodis":3, "apodous":3, "apoenzyme":4, "apoferritin":5, "apogamic":4, "apogamically":6, "apogee":3, "apogeal":4, "apogean":4, "apogeic":4, "apogeotropism":6, "apogeotropic":6, "apogeotropically":8, "apograph":3, "apographic":4, "apokatastatic":6, "apokatastasis":6, "apologue":3, "apologal":4, "apologia":5, "apolune":3, "apomict":3, "apomictic":4, "apomictical":5, "apomictically":6, "apomixis":4, "apommixes":4, "apomorphin":4, "apomorphine":4, "apomyius":5, "aponeurotic":5, "aponeurosis":5, "apopemptic":4, "apophonic":4, "apophthegm":3, "apophthegmatic":5, "apophyseal":5, "apophysial":5, "apoplectic":4, "apoplectical":5, "apoplectically":6, "apoplectiform":5, "apoplexy":4, "apopyle":3, "aposematic":5, "aposematically":7, "aposiopetic":6, "aposiopesis":6, "aposporic":4, "apospory":4, "apostatically":6, "apothegm":3, "apothegmatic":5, "apothegmatically":7, "apothem":3, "apothecial":4, "apothecia":5, "apothecium":5, "apotropaic":5, "apotropaism":5, "appal":2, "appall":2, "appalled":2, "appalling":3, "appallingly":4, "appalling":3, "apparel":3, "appareled":3, "apparelled":3, "appareling":4, "apparelling":4, "apparent":3, "apparent magnitude":6, "apparently":4, "apparentness":4, "apparitor":4, "appassionato":5, "appaum":4, "appalachia":5, "appalachian":5, "appalachian mountains":7, "appalachians":5, "appaloosa":4, "appanage":3, "apparattus":4, "apparattuses":5, "apparatus":4, "apparatus criticus":7, "apparachiki":5, "apparatchik":4, "apparentement":4, "apparition":4, "apparitional":5, "appeal":2, "appealability":6, "appealable":4, "appealer":3, "appealing":3, "appealingly":4, "appealingness":4, "appear":2, "appearance":3, "appease":2, "appeased":2, "appeasement":3, "appeasable":4, "appeasableness":5, "appeasably":4, "appeaser":3, "appeasing":3, "appeasingly":4, "appel":2, "appel":2, "appels":2, "appellant":3, "appellate":3, "appellation":4, "appellative":4, "appellatively":5, "appellativeness":5, "appellee":3, "appellor":3, "append":2, "appendage":3, "appendaged":3, "appendance":3, "appendant":3, "appendancy":4, "appendence":3, "appendent":3, "appendency":4, "appendant":3, "appendectomy":5, "appendicular":5, "appendiculate":5, "appendix":3, "appendixes":4, "appendical":4, "appendiceal":4, "appendicectomy":6, "appendices":4, "appendicitis":5, "appendicle":4, "appentice":3, "appenzell":3, "appenzell":3, "apperceive":3, "apperceived":3, "apperceiving":4, "apperception":4, "apperceptive":4, "apperceptively":5, "appersonation":5, "appersonification":7, "appertain":3, "appestat":3, "appetence":3, "appetency":4, "appetiser":4, "appetising":4, "appetite":3, "appetizer":4, "appetizing":4, "appetizingly":5, "appetitive":4, "appia":2, "appian way":4, "applaud":2, "applaudable":4, "applaudably":4, "applauder":3, "applaudingly":4, "applause":2, "applausive":3, "apple":2, "apple blight":3, "apple box":3, "apple butter":4, "apple green":3, "apple maggot":4, "apple of discord":5, "apple polisher":5, "apple sauce":3, "apple-pie bed":3, "apple-pie order":4, "apple-polish":3, "apple-polisher":4, "apples":2, "apples and pears":4, "applecart":3, "applejack":3, "applesauce":3, "appleseed":3, "applesnits":3, "appleton":3, "appleton layer":5, "applicative":4, "applied":2, "appliance":3, "appliable":4, "appliableness":5, "appliably":4, "applicant":3, "applicability":6, "applicable":4, "applicableness":5, "applicably":4, "application":4, "applicative":4, "applicatively":5, "applicator":4, "applicatorily":6, "applicatory":5, "applier":3, "applique":3, "appliqu":4, "appliqud":4, "appliquing":5, "apply":2, "applying":3, "appoggiatura":5, "appoggiaturas":5, "appoggiature":5, "appoint":2, "appointable":4, "appointed":3, "appointee":3, "appointer":3, "appointment":3, "appointee":3, "appointive":3, "appointor":3, "apportion":3, "apportionable":5, "apportioner":4, "apportionment":4, "appose":2, "apposed":2, "apposability":6, "apposable":4, "apposer":3, "apposing":3, "appositive":4, "appositively":5, "appomattox":4, "apposite":3, "appositely":4, "appositeness":4, "apposition":4, "appositional":5, "appositionally":6, "appraise":2, "appraised":2, "appraisement":3, "appraisal":3, "appraisable":4, "appraiser":3, "appraising":3, "appraisingly":4, "appraisive":3, "apprentice":3, "apprenticed":3, "apprenticehood":4, "apprenticement":4, "apprenticeship":4, "apprenticing":4, "appressed":2, "appreciative":4, "appreciatively":5, "appreciativeness":5, "appreciatory":5, "appreciate":4, "appreciated":5, "appreciating":5, "appreciatingly":6, "appreciable":5, "appreciably":5, "appreciation":5, "appreciational":6, "appreciative":5, "appreciator":5, "appreciatorily":7, "appreciatory":6, "apprehend":3, "apprehender":4, "apprehension":4, "apprehensive":4, "apprehensively":5, "apprehensiveness":5, "apprehensibility":7, "apprehensible":5, "apprehensibly":5, "apprise":2, "apprised":2, "apprising":3, "apprize":2, "apprized":2, "apprizer":3, "apprizing":3, "appro":2, "approach":2, "approachability":6, "approachable":4, "approachableness":5, "approacher":3, "approachless":3, "approve":2, "approved":2, "approved school":3, "approval":3, "approvability":6, "approvable":4, "approvably":4, "approvedly":4, "approvedness":4, "approver":3, "approving":3, "approvingly":4, "approximal":4, "approximate":4, "approximately":5, "approximated":5, "approximating":5, "approximation":5, "approbate":3, "approbated":4, "approbating":4, "approbation":4, "approbative":4, "approbativeness":5, "approbator":4, "approbatory":5, "appropriate":4, "appropriately":5, "appropriateness":5, "appropriated":5, "appropriating":5, "appropriable":5, "appropriation":5, "appropriative":5, "appropriativeness":6, "appropriator":5, "appulse":2, "appulsive":3, "appulsively":4, "appurtenance":4, "appurtenant":4, "apricot":3, "apropos":3, "apsaras":3, "apsarases":4, "apsidiole":4, "apsis":2, "apsidal":3, "apsidally":4, "apsides":3, "apsu":2, "apsyrtus":3, "apteral":3, "apterous":3, "apterygial":5, "apteryx":3, "apterygote":4, "apterygotous":5, "apteria":4, "apterial":4, "apterium":4, "aptitude":3, "aptitude test":4, "aptitudinal":5, "aptitudinally":6, "apuleius":4, "apuleius":4, "apurimac":4, "apyretic":4, "aqaba":3, "aqua":2, "aqua ammoniae":6, "aqua fortis":4, "aqua regia":5, "aqua vitae":4, "aquae":2, "aquaemanale":5, "aquaemanalia":6, "aquacade":3, "aquaculture":4, "aqualung":3, "aquamanale":5, "aquamanalia":6, "aquamanile":5, "aquamaniles":5, "aquamarine":4, "aquanaut":3, "aquaphobia":5, "aquaplane":3, "aquaplaned":3, "aquaplaner":4, "aquaplaning":4, "aquarelle":3, "aquarellist":4, "aquarist":3, "aquashow":3, "aquatint":3, "aquatinter":4, "aquatone":3, "aquavit":3, "aqueduct":3, "aquiclude":3, "aquiculture":4, "aquicultural":5, "aquiculturist":5, "aquifer":3, "aquila":3, "aquilegia":5, "aquileia":4, "aquiline":3, "aquilo":3, "aquitaine":3, "aquitania":5, "ar rimal":3, "arc":1, "arc furnace":3, "arc welding":3, "arc-boutant":2, "arch":1, "arched":1, "archebanc":2, "archaeocyte":4, "archangel":3, "archangel":3, "archangelic":4, "archbald":2, "archbanc":2, "archbishop":3, "archbishopric":4, "archconfraternity":6, "archdeacon":3, "archdeaconate":4, "archdeaconry":4, "archdeaconship":4, "archdiocesan":5, "archdiocese":4, "archduchess":3, "archduchies":3, "archduchy":3, "archduke":2, "archducal":3, "archenemy":4, "archer":2, "archer":2, "archerfish":3, "arches":2, "archeocyte":4, "archfiend":2, "arching":2, "archlute":2, "archly":2, "archness":2, "archpriest":2, "archpriesthood":3, "archpriestship":3, "archsee":2, "archway":2, "arcrgand diagram":5, "arcs":1, "arcs-boutants":2, "arcform":2, "arcograph":3, "arctic":2, "arctic":2, "arctic char":3, "arctic circle":4, "arctic fox":3, "arctic ocean":4, "arctic tern":3, "arctically":4, "arcticologist":5, "arcticology":5, "arctogaea":4, "arctogaeal":4, "arctogaean":4, "arctogaeic":4, "arctogea":4, "arctogean":4, "arctogeic":4, "arcturian":4, "arcturus":3, "ardsley":2, "ardmore":2, "are":1, "aren't":1, "arfvedsonite":4, "ariminum":2, "ark":1, "arkwright":2, "arkwright":2, "arles":1, "arlberg":2, "arm":1, "armed":1, "armed forces":3, "armes parlantes":3, "arms":1, "armband":2, "armchair":2, "armco":2, "armer":2, "armful":2, "armguard":2, "armhole":2, "arming":2, "armless":2, "armlet":2, "armlike":2, "armload":2, "armpad":2, "armpit":2, "armrest":2, "armstrong":2, "armstrong-jones":2, "arnhem":2, "arnhem land":3, "arr":1, "arrhythmic":2, "arries":2, "ars nova":3, "ars poetica":5, "arse":1, "arse licker":3, "arsphenamine":4, "arsy-versy":3, "art":1, "art deco":3, "art music":3, "art nouveau":3, "art paper":3, "art union":3, "arts":1, "artful":2, "artfully":3, "artfulness":3, "artist":2, "artistry":3, "artier":3, "artiest":3, "artiness":3, "artless":2, "artlessly":3, "artlessness":3, "artsy-craftsy":3, "artwork":2, "arty":2, "arty-crafty":3, "arab":2, "arab league":3, "arabist":3, "arad":2, "arak":2, "aral sea":3, "aran":2, "aran islands":4, "araucaria":5, "araucarian":5, "araucania":5, "araucanian":5, "araucaria":5, "arawn":2, "araban":3, "arabel":3, "arabesque":3, "arabesquely":4, "arabic":3, "arabic numeral":6, "arability":5, "arable":3, "araby":3, "arachidic":4, "arafat":3, "arafura sea":5, "aragats":3, "arago":3, "aragon":3, "aragonese":4, "aramaean":4, "aramaic":4, "aramean":4, "araneiform":5, "arapaima":4, "arapesh":3, "arapeshes":4, "ararat":3, "araroba":4, "arawak":3, "arawakan":4, "arbalest":3, "arbalester":4, "arbalist":3, "arbalister":4, "arbela":3, "arbil":2, "arbitrament":4, "arbitrement":4, "arbiter":3, "arbitrage":3, "arbitrager":4, "arbitral":3, "arbitraries":4, "arbitrarily":5, "arbitrariness":5, "arbitrary":4, "arbitrate":3, "arbitrated":4, "arbitrating":4, "arbitrable":4, "arbitrageur":4, "arbitration":4, "arbitrational":5, "arbitrationist":5, "arbitrative":4, "arbitrator":4, "arbitrer":3, "arbitress":3, "arblay":2, "arbor":2, "arbor vitae":4, "arbored":2, "arboraceous":4, "arboreal":4, "arborist":3, "arboriculture":5, "arboricultural":6, "arboriculturist":6, "arborisation":5, "arborization":5, "arborous":3, "arborvitae":4, "arbour":2, "arboured":2, "arbores":3, "arboresque":3, "arborescence":4, "arborescent":4, "arborescently":5, "arboreal":4, "arboreally":5, "arboreous":4, "arboretum":4, "arbroath":2, "arbuthnot":3, "arbutus":3, "arbutuses":4, "arca":2, "arcade":2, "arcaded":3, "arcadic":3, "arcading":3, "arcane":2, "arcangelo":4, "arcanist":3, "arcas":2, "arcadia":4, "arcadian":4, "arcadianism":5, "arcadianly":5, "arcady":3, "arcana":3, "arcanum":3, "arcaro":3, "arcata":3, "arcature":3, "arce":2, "arcella":3, "arcesilaus":5, "arcesius":4, "archaean":3, "archaeologist":5, "archaeology":5, "archaeopteryx":5, "archaeornis":4, "archaeocyathid":6, "archaeologic":5, "archaeological":6, "archaeologically":7, "archaeomagnetism":6, "archaeozoic":5, "archaic":3, "archaise":3, "archaised":3, "archaism":3, "archaist":3, "archaising":4, "archaistic":4, "archaize":3, "archaized":3, "archaizer":4, "archaizing":4, "archaically":5, "archaicism":4, "archelochus":4, "archemorus":4, "archenteric":4, "archenteron":4, "archeptolemus":5, "archer":2, "archerfish":3, "archerfishes":4, "archery":3, "archetto":3, "archean":3, "archegetes":4, "archegonia":5, "archegonial":5, "archegoniate":5, "archegonium":5, "archelaus":4, "archeologist":5, "archeology":5, "archeological":6, "archeologically":7, "archeomagnetism":6, "archeozoic":5, "archespore":3, "archesporia":5, "archesporial":5, "archesporium":5, "archetype":3, "archetypal":4, "archetypally":5, "archetypically":6, "archie":2, "archil":2, "archilochus":4, "archine":2, "archive":2, "archives":2, "archias":3, "archibald":3, "archiblast":3, "archiblastic":4, "archicarp":3, "archidiaconal":6, "archidiaconate":6, "archiepiscopal":6, "archiepiscopality":8, "archiepiscopally":7, "archiepiscopate":6, "archiepiscopacy":7, "archilochian":5, "archimage":3, "archimandrite":4, "archimedes":4, "archimedes' principle":7, "archimedes' screw":5, "archimedean":5, "archimedean screw":6, "archipelago":5, "archipenko":4, "archipelagic":5, "archiphoneme":4, "archiplasm":3, "archiplasmic":4, "architect":3, "architectonic":5, "architectonics":5, "architectonically":7, "architecture":4, "architectural":5, "architecturally":6, "architrave":3, "architraved":3, "architraval":4, "archival":3, "archivist":3, "archivolt":3, "archon":2, "archonship":3, "archoplasm":3, "archoplasmic":4, "archy":2, "archytas":3, "arcimboldi":4, "arcifinious":5, "arciform":3, "arciniegas":4, "arco":2, "arcosolia":5, "arcosolium":5, "arcus":2, "arcus senilis":5, "arcuate":3, "arcuately":4, "arcuated":4, "arcuation":4, "ard":2, "ardeb":2, "ardeen":2, "ardella":3, "arden":2, "ardene":2, "ardennes":2, "ardent":2, "ardent spirits":4, "ardently":3, "ardentness":3, "ardency":3, "ardeid":3, "ardin":2, "ardis":2, "ardish":2, "ardor":2, "ardour":2, "arduous":3, "arduously":4, "arduousness":4, "ardche":3, "arendt":2, "ares":2, "area":3, "area code":4, "areal":3, "areaway":4, "areca":3, "arenaceous":4, "arenicolous":5, "arenite":3, "arenose":3, "arenosity":5, "arenous":3, "areography":5, "areole":3, "areologist":5, "areology":5, "areopagite":5, "areopagitic":6, "areopagitica":7, "areopagus":5, "areocentric":5, "areolation":5, "areologic":5, "areologically":7, "arethusa":4, "arethusa":4, "aretino":4, "arethos":7, "argal":2, "argall":2, "argades":3, "argali":3, "argasid":3, "argeiphontes":4, "argent":2, "argental":3, "argentate":3, "argenteuil":3, "argenteous":4, "argentic":3, "argentiferous":5, "argentine":3, "argentine":3, "argentinean":5, "argentite":3, "argentina":4, "argentous":3, "argentum":3, "arges":2, "argelander":4, "arghool":2, "argil":2, "argillaceous":4, "argilliferous":5, "argillite":3, "argillitic":4, "argive":2, "argia":3, "arginine":3, "argiope":4, "argiphontes":4, "argle-bargle":3, "arglebargle":4, "arglebargled":4, "arglebargling":4, "argo":2, "argol":2, "argolic":3, "argon":2, "argonne":2, "argos":2, "argot":2, "argotic":3, "argoan":3, "argolis":3, "argonaut":3, "argonautic":4, "argonon":3, "argosy":3, "argovie":3, "argue":2, "argued":2, "argus":2, "argus pheasant":4, "argus-eyed":2, "arguable":4, "arguer":3, "argufied":3, "argufier":4, "argufy":3, "argufying":4, "arguing":3, "argument":3, "argumentation":5, "argumentatious":5, "argumentative":5, "argumentatively":6, "argumentativeness":6, "argumentum":4, "argy-bargied":3, "argy-bargy":3, "argy-bargying":4, "argyle":2, "argyle":2, "argyll":2, "argyllshire":3, "argyrodite":4, "argyra":3, "argyrol":3, "argyrotoxus":5, "argedas":4, "arhat":2, "arhatship":3, "arianrhod":3, "arid":2, "aridly":3, "aries":2, "aril":2, "arillate":3, "arillode":3, "arilloid":3, "aristaeus":4, "aristarch":3, "aristarchy":4, "aristarchus":4, "aristarchus of samothrace":8, "aristarchus of samos":7, "aristippus":4, "aristides":4, "aristocracy":5, "aristomachus":5, "aristophanes":5, "aristoteles":5, "aristotle":4, "aristotelian":5, "aristotelianism":6, "aristotelian":6, "aristotelian logic":8, "aristotle":4, "arithmancy":4, "arithmetical":5, "arithmetically":6, "ariadaeus":5, "ariadna":4, "ariadne":4, "arian":3, "ariane":3, "arianism":4, "arianistic":5, "arianistical":6, "ariel":3, "ariel":3, "arielle":3, "ariette":3, "arietta":4, "ariettas":4, "ariette":4, "arimaspians":5, "arimathaea":5, "arimathaean":5, "arimathea":5, "arimathean":5, "ariose":3, "ariovistus":5, "aristarchian":5, "aristillus":4, "arius":3, "arizona":4, "arizonan":4, "arizonian":5, "arjun":2, "arjuna":3, "arkansan":3, "arkansas":3, "arkadelphia":4, "arkhangelsk":3, "arkie":2, "arkose":2, "arkosic":3, "arleen":2, "arlen":2, "arlene":2, "arley":2, "arleyne":2, "arliene":2, "arlin":2, "arline":2, "arlington":3, "arlis":2, "arliss":2, "arlon":2, "arlyn":2, "arlyne":2, "armagh":2, "armagnac":3, "armand":2, "armaria":4, "armarian":4, "armarium":4, "armada":3, "armada":3, "armadillo":4, "armageddon":4, "armagnac":3, "armament":3, "armamentarium":6, "armary":3, "armature":3, "armavir":3, "armenti":3, "armentires":4, "armet":2, "armenia":4, "armenian":4, "armenian church":5, "armenoid":3, "armigeral":4, "armigerous":4, "armil":2, "armil":2, "armill":2, "armilda":3, "armilla":3, "armilla":3, "armillae":3, "armillary":4, "armillary sphere":5, "armin":2, "arminian":4, "arminianism":5, "arminius":4, "armipotence":4, "armipotent":4, "armiger":3, "armina":3, "armistice":3, "armistice day":4, "armitage":3, "armoire":2, "armor":2, "armor-clad":2, "armor-piercing":3, "armored":2, "armorbearer":4, "armorer":3, "armoric":3, "armories":3, "armorist":3, "armorica":4, "armorican":4, "armorplated":4, "armory":3, "armour":2, "armour plate":3, "armour-bearer":3, "armour-clad":2, "armour-piercing":3, "armoured":2, "armoured car":3, "armourbearer":4, "armourer":3, "armouries":3, "armoury":3, "armomancy":4, "armorial":4, "armure":2, "army":2, "army ant":3, "army list":3, "army worm":3, "armyworm":3, "arnaeus":3, "arnatto":3, "arne":2, "arnel":2, "arnim":2, "arnica":3, "arno":2, "arnold":2, "arnoldson":3, "arnulf":2, "aroid":2, "aromat":2, "aron":2, "aromatic":4, "aromaticness":5, "aromatically":6, "aromaticity":6, "arp":2, "arpeggiated":5, "arpeggiation":5, "arpeggio":4, "arpeggioed":4, "arpeggios":4, "arpent":2, "arquebus":3, "arquebuses":4, "arquebusier":4, "arrack":2, "arraign":2, "arraigner":3, "arraignment":3, "arran":2, "arrange":2, "arranged":2, "arrangeable":4, "arrangement":3, "arranger":3, "arranging":3, "arrant":2, "arrantly":3, "arras":2, "arras":2, "arrased":2, "array":2, "arrayal":3, "arrau":3, "arrear":2, "arrears":2, "arrearage":3, "arrest":2, "arrest of judgment":5, "arrestable":4, "arrester":3, "arresting":3, "arrestingly":4, "arrestment":3, "arrestive":3, "arrenotokous":5, "arrenotoky":5, "arrephoria":5, "arrephoroi":4, "arrephoros":4, "arretine ware":4, "arretium":4, "arrhenius":4, "arrhenotokous":5, "arrhenotoky":5, "arrhephoria":5, "arrhythmia":4, "arrhythmically":5, "arri":2, "arricciato":4, "arriccio":3, "arride":2, "arrided":3, "arriding":3, "arris":2, "arrisways":3, "arriswise":3, "arrive":2, "arrived":2, "arriver":3, "arriving":3, "arrire-pense":5, "arrire-penses":5, "arrire-voussure":4, "arrire-voussures":4, "arrigo":3, "arris":3, "arrival":3, "arrivederci":5, "arrivisme":3, "arriviste":3, "arriv":4, "arrire-ban":4, "arrondissement":4, "arrow":2, "arrows":2, "arrowhead":3, "arrowless":3, "arrowlike":3, "arrowroot":3, "arrowsmith":3, "arrowwood":3, "arrowworm":3, "arrowy":3, "arroyo":3, "arroba":3, "arrogance":3, "arrogant":3, "arrogantly":4, "arrogancy":4, "arrogate":3, "arrogated":4, "arrogating":4, "arrogatingly":5, "arrogation":4, "arrogator":4, "arru islands":4, "arrythmia":4, "arrythmically":5, "arsenical":4, "arsenous":3, "arsenolite":4, "arsenal":3, "arsenate":3, "arsenic":3, "arsenic acid":5, "arsenic trioxide":6, "arsenide":3, "arsenite":3, "arseniureted":5, "arseniuretted":5, "arsenious":4, "arseno":3, "arsenous":3, "arsenopyrite":5, "arseny":3, "arshile":2, "arshin":2, "arshine":2, "arsine":2, "arsinous":4, "arsino":5, "arsippe":3, "arsis":2, "arsino":3, "arson":2, "arsonist":3, "arsy-varsy":3, "arsyversy":4, "artal":2, "artaud":2, "artacia":4, "artaxerxes i":5, "artaxerxes ii":5, "artel":2, "arteries":3, "artery":3, "artefact":3, "artemas":3, "artemis":3, "artemisia":5, "artemision":5, "artemisia":5, "artemovsk":3, "artemus":3, "arterial":4, "arterialise":5, "arterialised":5, "arterialising":6, "arterialize":5, "arterialized":5, "arterializing":6, "arterialization":7, "arterially":5, "arteriole":4, "arteriology":6, "arteriotomy":6, "arteriosclerotic":7, "arteriosclerosis":7, "arteriovenous":6, "arteritis":4, "artesia":3, "artesian":3, "artesian well":4, "artesonado":5, "arteveld":3, "artha":2, "arthralgia":3, "arthralgic":3, "arthrectomy":4, "arthritic":3, "arthritis":3, "arthrodic":3, "arthrology":4, "arthropoda":4, "arthropodal":4, "arthrobacter":4, "arthrodire":3, "arthrodia":4, "arthrodiae":4, "arthrodial":4, "arthrodiran":4, "arthromere":3, "arthromeric":4, "arthropod":3, "arthrospore":3, "arthrosporic":4, "arthrosporous":4, "arthur":2, "arthurian":4, "artic":2, "articular":4, "articularly":5, "articulate":4, "articulately":5, "articulateness":5, "articulated":5, "articulated lorry":7, "articulating":5, "articulability":7, "articulable":5, "articulacy":5, "articulation":5, "articulative":5, "articulator":5, "articulatorily":7, "articulatory":6, "articulatory phonetics":9, "artie":2, "artificer":4, "artillerist":4, "artillery":4, "artillery plant":5, "artilleryman":5, "artiste":2, "artistic":3, "artistical":4, "artistically":5, "artichoke":3, "article":3, "article of faith":5, "articles of association":9, "articles of confederation":9, "articles of war":5, "artifact":3, "artifactitious":5, "artifice":3, "artificial":4, "artificial feel":5, "artificial horizon":7, "artificial insemination":9, "artificial kidney":6, "artificial language":6, "artificial respiration":8, "artificialise":5, "artificialize":5, "artificially":5, "artificialness":5, "artificiality":7, "artigas":3, "artiodactyl":5, "artiodactyla":6, "artiodactylous":6, "artisan":3, "artisanal":4, "artisanship":4, "artois":2, "artophoria":5, "artophorion":5, "artotype":3, "artur":2, "arturo":3, "arty":2, "artzybasheff":4, "artzybashev":4, "arum":2, "arumlike":3, "aruns":2, "arundel":3, "arvada":3, "arval":2, "arvales":3, "arvid":2, "arvin":2, "arvo":2, "arvol":2, "aryl":2, "arylate":3, "arylated":4, "arylating":4, "arylamine":4, "arylation":4, "aryan":3, "aryanise":4, "aryanised":4, "aryanising":5, "aryanize":4, "aryanized":4, "aryanizing":5, "aryballi":4, "aryballoi":4, "aryballoid":4, "aryballos":4, "aryballus":4, "aryepiglottic":6, "aryepiglottidean":8, "arytaenoid":4, "arytenoid":4, "arytenoidal":5, "arytenoepiglottic":8, "arzachel":3, "ascetic":1, "asdic":1, "ash":1, "ash wednesday":3, "asheboro":3, "asheville":2, "ashburn":2, "ashburton":3, "ashby":2, "ashcan":2, "ashchenaz":3, "ashcroft":2, "ashdod":2, "ashdown":2, "ashen":2, "asher":2, "asherite":3, "ashes":2, "ashes":2, "ashet":2, "ashford":2, "ashier":3, "ashiest":3, "ashkey":2, "ashkenaz":3, "ashkenazi":4, "ashkenazic":4, "ashkenazim":4, "ashkenazi":4, "ashkhabad":3, "ashland":2, "ashlar":2, "ashlaring":3, "ashler":2, "ashless":2, "ashley":2, "ashman":2, "ashplant":2, "ashram":2, "ashtabula":4, "ashton":2, "ashton-under-lyne":3, "ashtoreth":3, "ashtray":2, "ashur":2, "ashurbanipal":5, "ashy":2, "ask":1, "ask after":3, "asker":2, "asking price":3, "askja":2, "asp":1, "aspish":2, "ass":1, "ass about":3, "ass licker":3, "ass-headed":2, "assn":1, "assoc":1, "asst":1, "asshead":2, "assheadedness":4, "asslike":2, "asthma":2, "asthmatic":3, "asthmatical":4, "asthmatically":5, "asthmatoid":3, "astispumante":2, "astr":1, "astrol":1, "astron":1, "aswampish":2, "asael":3, "asafetida":5, "asafoetida":5, "asarabacca":5, "asarotum":4, "asarum":3, "asben":2, "asbestine":3, "asbestoid":3, "asbestoidal":4, "asbestos":3, "asbestosis":4, "asbestus":3, "asbjrnsen":4, "asbolane":3, "asbury":3, "ascalabus":4, "ascalaphus":4, "ascaridole":4, "ascanian":4, "ascanius":4, "ascarid":3, "ascariasis":5, "ascend":2, "ascendance":3, "ascendant":3, "ascendancy":4, "ascendable":4, "ascendence":3, "ascendent":3, "ascendency":4, "ascender":3, "ascending":3, "ascendingly":4, "ascendible":4, "ascent":2, "ascension":3, "ascension":3, "ascension day":4, "ascensional":4, "ascensiontide":4, "ascensive":3, "ascertain":3, "ascertainable":5, "ascertainableness":6, "ascertainably":5, "ascertainer":4, "ascertainment":4, "ascetic":3, "ascetical":4, "ascetically":5, "asceticism":4, "ascenez":3, "ascesis":3, "ascham":2, "asci":2, "ascidia":4, "ascidian":4, "ascidium":4, "ascitic":3, "ascites":3, "asclepi":3, "asclepiadaceous":6, "asclepiade":5, "asclepiadean":6, "asclepius":4, "ascogenous":4, "ascon":2, "ascot":2, "ascot":2, "ascocarp":3, "ascocarpous":4, "ascogonia":5, "ascogonial":5, "ascogonium":5, "ascoli piceno":6, "ascomycete":4, "ascomycetous":5, "asconoid":3, "ascospore":3, "ascosporic":4, "ascribe":2, "ascribed":2, "ascribing":3, "ascription":3, "ascus":2, "ascus":2, "asdic":2, "asenath":3, "aseneth":3, "asgard":2, "asgarth":2, "asgeir":2, "asgeirsson":3, "ashab":2, "asinine":3, "asininely":4, "asininity":5, "askarel":3, "askari":3, "askos":2, "asmara":3, "asmodeus":4, "asmonaean":4, "asmonean":4, "asni":2, "asnires":3, "asparagine":4, "asparagus":4, "aspartic acid":5, "asparaginous":5, "aspasia":3, "aspect":2, "aspect ratio":5, "aspectant":3, "aspectual":4, "aspen":2, "aspen":2, "asper":2, "asperse":2, "aspersed":2, "asperser":3, "aspersing":3, "asperges":3, "aspergill":3, "aspergilla":4, "aspergilli":4, "aspergillosis":5, "aspergillum":4, "aspergillus":4, "asperity":4, "aspersion":3, "aspersive":3, "aspersively":4, "aspersoria":5, "aspersorium":5, "asphalt":2, "asphaltlike":3, "asphalius":4, "asphaltene":3, "asphaltic":3, "asphaltite":3, "asphaltum":3, "asphodel":3, "asphyxia":3, "asphyxia":4, "asphyxial":4, "asphyxiant":4, "asphyxiate":4, "asphyxiated":5, "asphyxiating":5, "asphyxiation":5, "asphyxiator":5, "aspic":2, "aspinwall":3, "aspire":2, "aspired":2, "aspirant":3, "aspiratory":5, "aspirer":3, "aspiring":3, "aspiringly":4, "aspidistra":4, "aspirate":3, "aspirated":4, "aspirating":4, "aspirata":4, "aspiration":4, "aspirator":4, "aspirin":3, "asquith":2, "assad":2, "assai":2, "assail":2, "assailant":3, "assailable":4, "assailableness":5, "assailer":3, "assailment":3, "assam":2, "assam":2, "assaracus":4, "assassin":3, "assassin":3, "assassin bug":4, "assassinate":4, "assassinated":5, "assassinating":5, "assassination":5, "assassinative":5, "assassinator":5, "assault":2, "assault and battery":6, "assaultable":4, "assaulter":3, "assay":2, "assayable":4, "assayer":3, "assafetida":5, "assafoetida":5, "assagai":3, "assagaied":3, "assagaiing":4, "assai":3, "assamese":3, "assembl":3, "assemblage":3, "assemble":3, "assembled":3, "assembler":3, "assembly":3, "assembly":3, "assembly line":4, "assemblyman":4, "assembl":4, "assen":2, "assent":2, "assenter":3, "assentingly":4, "assentation":4, "assentive":3, "assentiveness":4, "assentient":4, "assentor":3, "asser":2, "assert":2, "asserted":3, "assertedly":4, "asserter":3, "assertible":4, "assertion":3, "assertional":4, "assertive":3, "assertively":4, "assertiveness":4, "assertor":3, "assertorily":5, "assertory":4, "asses":2, "assess":2, "assessable":4, "assessment":3, "assessor":3, "assessorship":4, "assessorial":5, "asset":2, "asset-stripping":3, "assets":2, "asseverate":4, "asseverated":5, "asseverating":5, "asseveration":5, "asseverative":5, "asseveratively":6, "assegai":3, "assegaied":3, "assegaing":4, "asshur":2, "assibilate":4, "assibilated":5, "assibilating":5, "assibilation":5, "assiduous":4, "assiduously":5, "assiduousness":5, "assign":2, "assignability":6, "assignable":4, "assignably":4, "assignee":3, "assigner":3, "assignment":3, "assignor":3, "assignat":3, "assignats":3, "assignation":4, "assimilate":4, "assimilated":5, "assimilating":5, "assimilability":7, "assimilable":5, "assimilation":5, "assimilationist":6, "assimilative":5, "assimilativeness":6, "assimilator":5, "assimilatory":6, "assiniboin":4, "assiniboine":4, "assist":2, "assistantship":4, "assister":3, "assistive":3, "assistance":3, "assistant":3, "assistant professor":6, "assistor":3, "assiut":2, "assize":2, "assizes":3, "assidaean":4, "assidean":4, "assiduity":5, "assisi":3, "assoil":2, "assort":2, "assortative":4, "assortatively":5, "assorted":3, "assorter":3, "assortive":3, "assortment":3, "assouan":2, "associate":4, "associate professor":7, "associated":5, "associated statehood":7, "associating":5, "associability":7, "associable":5, "associableness":6, "association":5, "association football":7, "associational":6, "associationism":6, "associationist":6, "associationistic":7, "associative":5, "associatively":6, "associativeness":6, "assonance":3, "assonant":3, "assonantal":4, "assuage":2, "assuaged":2, "assuagement":3, "assuager":3, "assuaging":3, "assuan":2, "assuasive":3, "assume":2, "assumed":2, "assumpsit":3, "assumption":3, "assumption":3, "assumptionist":4, "assumptive":3, "assumptively":4, "assumable":4, "assumably":4, "assumedly":4, "assumer":3, "assuming":3, "assumingly":4, "assur":2, "assure":2, "assured":2, "assurance":3, "assurbanipal":5, "assuredly":4, "assuredness":4, "assurer":3, "assurgent":3, "assurgency":4, "assuring":3, "assuror":3, "assuerus":4, "assyria":4, "assyrian":4, "assyriologist":6, "assyriology":6, "assyriological":7, "assyro-babylonian":7, "astarte":3, "astatine":3, "aster":2, "asteraceous":4, "asterisk":3, "asterism":3, "asterismal":4, "asterixis":4, "asteroid":3, "asteroidal":4, "asteroidea":5, "asteroidean":5, "asterope":4, "asteriscus":4, "asteriscuses":5, "asteriated":5, "asterion":4, "asterius":4, "asterodia":5, "asteropaeus":5, "asthenic":3, "asthenosphere":4, "asthenia":4, "asthenope":3, "asthenopic":4, "asthenopia":5, "astheny":3, "asti":2, "astigmatic":4, "astigmatically":6, "astigmatoscope":5, "astigmometer":5, "astigmometry":5, "aston":2, "astonied":3, "astonish":3, "astonishedly":4, "astonisher":4, "astonishing":4, "astonishingly":5, "astonishingness":5, "astonishment":4, "astor":2, "astound":2, "astounding":3, "astoundingly":4, "astolat":3, "astoria":4, "astra":2, "astraea":3, "astraean":3, "astraeus":3, "astragalar":4, "astragalomancy":6, "astral":2, "astrally":3, "astrangia":4, "astrabacus":4, "astrachan":3, "astragal":3, "astrakhan":3, "astrakhan":3, "astraphobia":5, "astrateia":4, "astrea":3, "astrict":2, "astriction":3, "astrictive":3, "astrictively":4, "astrictiveness":4, "astrid":2, "astringe":2, "astringed":2, "astringing":3, "astringent":3, "astringently":4, "astringency":4, "astringer":3, "astrionics":4, "astrography":4, "astroid":2, "astrologer":4, "astrologist":4, "astrology":4, "astrometry":4, "astronomer":4, "astronomy":4, "astrobiology":6, "astrobotany":5, "astrocompass":4, "astrocyte":3, "astrodome":3, "astrodynamics":5, "astrogate":3, "astrogated":4, "astrogating":4, "astrogation":4, "astrogator":4, "astrogeology":6, "astrograph":3, "astrographic":4, "astrolabe":3, "astrolabical":5, "astrological":5, "astrologically":6, "astrologian":5, "astromancer":4, "astromancy":4, "astromantic":4, "astrometric":4, "astronaut":3, "astronauts":3, "astronautarum":5, "astronautic":4, "astronautics":4, "astronautical":5, "astronautically":6, "astronavigation":6, "astronavigator":6, "astronomic":4, "astronomical":5, "astronomical telescope":8, "astronomical unit":7, "astronomical year":6, "astronomically":6, "astrophobia":5, "astrophotography":6, "astrophotographic":6, "astrophysics":4, "astrophysical":5, "astrophysicist":5, "astrosphere":3, "astute":2, "astutely":3, "astuteness":3, "astucious":3, "astuciously":4, "astucity":4, "asturian":4, "asturias":4, "astyanax":4, "astydamia":5, "aswan":2, "aswan high dam":4, "aswn":3, "asymptote":3, "asymptotic":4, "asymptotical":5, "asymptotically":6, "asyndetic":4, "asyndetically":6, "at-home":1, "atcheson":3, "atchison":3, "ate":1, "athar":2, "athabasca":4, "athabascan":4, "athabaska":4, "athabaskan":4, "athalie":3, "athalia":4, "athaliah":4, "athamas":3, "athanasia":4, "athanasian":4, "athanasian creed":5, "athanasius":4, "athanor":3, "athapascan":4, "athapaskan":4, "athel":2, "athelbert":3, "atheling":3, "athelred":3, "athelstan":3, "athens":2, "atherine":3, "atheroma":4, "atheromas":4, "atheromata":5, "atherosclerotic":6, "atherosclerosis":6, "atherton":3, "athenaeum":4, "athenaeum":4, "athenaeus":4, "atheneum":4, "atheneum":4, "athetoid":3, "athetotic":4, "athetosic":4, "athetosis":4, "athie":2, "athlete":2, "athlete's foot":3, "athletic":3, "athletic support":5, "athletics":3, "athletically":5, "athleticism":4, "athol":2, "athos":2, "athodyd":3, "athonite":3, "athrocyte":3, "athrocytosis":5, "atm":1, "att":1, "attn":1, "attrib":1, "atty":1, "attlee":2, "atar":2, "atabal":3, "atabalipa":5, "atabrine":3, "atabyrian":5, "atacamite":4, "ataghan":3, "atahualpa":4, "atalanta":4, "atalante":4, "ataman":3, "atamasco":4, "ataractic":4, "atarax":3, "ataraxic":4, "ataraxia":5, "ataraxy":4, "atat":3, "atavism":3, "atavist":3, "atavistic":4, "atavistically":6, "atbara":3, "atelier":3, "ateliers":3, "atebrin":3, "atelectatic":5, "atelectasis":5, "ating":2, "atila":3, "atkins":2, "atkinson":3, "atlanta":3, "atlantad":3, "atlantal":3, "atlantes":3, "atlantean":4, "atlantic":3, "atlantic charter":5, "atlantic city":5, "atlantic intracoastal waterway":10, "atlantic ocean":5, "atlantic provinces":6, "atlantic standard time":6, "atlantis":3, "atlas":2, "atlas":2, "atlas mountains":4, "atlases":3, "atli":2, "atma":2, "atman":2, "atmidometer":5, "atmolysis":4, "atmometer":4, "atmometry":4, "atmore":2, "atmosphere":3, "atmosphereless":4, "atmospheric":4, "atmospheric perspective":7, "atmospheric pressure":6, "atmospherics":4, "atmospherical":5, "atmospherically":6, "atmophile":3, "atoll":2, "atom":2, "atom bomb":3, "atom smasher":4, "atom-bomb":2, "atomise":3, "atomised":3, "atomism":3, "atomist":3, "atomiser":4, "atomising":4, "atomistic":4, "atomistical":5, "atomistically":6, "atomize":3, "atomized":3, "atomizer":4, "atomizing":4, "atomization":5, "atomicity":5, "atomy":3, "atonicity":5, "atony":3, "atrabiliar":4, "atrabilious":4, "atrabiliousness":5, "atrabiliar":5, "atrichosis":4, "atroceruleous":6, "atroceruleus":6, "atrocoeruleus":6, "atropatene":5, "atrophied":3, "atrophy":3, "atrophying":4, "atropin":3, "atropine":3, "atropinism":4, "atropism":3, "atropos":3, "attach":2, "attached":2, "attachable":4, "attacher":3, "attachment":3, "attack":2, "attackable":4, "attacker":3, "attacca":3, "attain":2, "attaint":2, "attainability":6, "attainable":4, "attainableness":5, "attainder":3, "attainer":3, "attainment":3, "attainture":3, "attalla":3, "attar":2, "attabal":3, "attaboy":3, "attach":3, "attach":4, "attachs":4, "attapulgite":4, "attempt":2, "attemptability":6, "attemptable":4, "attempter":3, "attemper":3, "attemperator":5, "attend":2, "attendance":3, "attendance allowance":6, "attendance centre":5, "attendant":3, "attendantly":4, "attender":3, "attending":3, "attendingly":4, "attent":2, "attently":3, "attenborough":4, "attention":3, "attention-getting":4, "attentional":4, "attentive":3, "attentively":4, "attentiveness":4, "attenuant":4, "attenuate":4, "attenuated":5, "attenuating":5, "attenuation":5, "attenuator":5, "attest":2, "attestant":3, "attestable":4, "attested":3, "attester":3, "attestation":4, "attestative":4, "attestator":4, "attestive":3, "attestor":3, "attic":2, "attic":2, "attic order":4, "attic salt":3, "attila":3, "attingence":3, "attingent":3, "attingency":4, "attire":2, "attired":2, "attirement":3, "attiring":3, "attis":2, "attica":3, "atticise":3, "atticise":3, "atticised":3, "atticism":3, "atticism":3, "atticist":3, "atticist":3, "atticising":4, "atticize":3, "atticize":3, "atticized":3, "atticizing":4, "attila":3, "attitude":3, "attitudinal":5, "attitudinarian":7, "attitudinarianism":8, "attitudinise":5, "attitudinised":5, "attitudinising":6, "attitudinize":5, "attitudinized":5, "attitudinizer":6, "attitudinizing":6, "attius":3, "attleboro":4, "attorn":2, "attornment":3, "attorney":3, "attorney general":6, "attorney general":6, "attorney-at-law":3, "attorney-in-fact":3, "attorneys-at-law":3, "attorneys-in-fact":3, "attorneyship":4, "attract":2, "attractant":3, "attractable":4, "attractableness":5, "attracter":3, "attractingly":4, "attraction":3, "attraction sphere":4, "attractionally":5, "attractive":3, "attractively":4, "attractiveness":4, "attractor":3, "attrahent":3, "attribute":3, "attributable":5, "attributed":4, "attributer":4, "attributing":4, "attributive":4, "attributively":5, "attributiveness":5, "attributor":4, "attrite":2, "attriteness":3, "attrited":3, "attriting":3, "attribution":4, "attrition":3, "attritional":4, "attritive":3, "attu":2, "attune":2, "attuned":2, "attuning":3, "atwater":3, "atweel":2, "au courant":3, "au gratin":3, "au naturel":4, "au revoir":3, "auckland":2, "auckland islands":4, "auction":2, "auction bridge":3, "auctionary":4, "auctioneer":3, "auctorial":4, "aud":1, "audhumbla":3, "audhumla":3, "audley":2, "auf wiedersehen":5, "aufklrung":4, "aufklrung":3, "aug":1, "aught":1, "aughtlins":2, "augsburg":2, "augment":2, "augmentable":4, "augmentative":4, "augmented":3, "augmenter":3, "augmentation":4, "augmentatively":5, "augmentor":3, "auk":1, "auklet":2, "auld":1, "aummbulatory":5, "aumbry":2, "aune":1, "aunt":1, "aunt sally":3, "auntie":2, "auntie man":3, "aunties":2, "auntlike":2, "aunty":2, "aurous":2, "auschwitz":2, "auscultate":3, "auscultated":4, "auscultating":4, "auscultation":4, "auscultative":4, "auscultator":4, "ausforming":3, "ausgleich":2, "ausgleiche":3, "auslese":3, "auslnder":4, "auspex":2, "auspice":2, "auspices":3, "auspicate":3, "auspicated":4, "auspicating":4, "auspices":3, "auspicial":3, "auspicious":3, "auspiciously":4, "auspiciousness":4, "aussie":2, "austemper":3, "austen":2, "austenite":3, "austenitic":4, "austenitic stainless steel":7, "austenitize":4, "austenitized":4, "austenitizing":5, "auster":2, "austere":2, "austerely":3, "austereness":3, "austerity":4, "austerlitz":3, "austin":2, "austral":2, "austral islands":4, "australasia":4, "australasian":4, "australasia":5, "australia":3, "australian":3, "australia":4, "australia day":5, "australian":4, "australian alps":5, "australian antarctic territory":11, "australian capital territory":11, "australian rules":5, "australian terrier":7, "australianise":5, "australianism":5, "australianize":5, "australiana":5, "australorp":3, "australe":3, "australite":3, "australioid":4, "australoid":3, "australopithecine":6, "australopithecine":6, "australopithecus":6, "austrasia":3, "austringer":3, "austria":3, "austria-hungary":5, "austrian":3, "austro-asiatic":5, "austro-hungarian":5, "austroasiatic":6, "austronesia":4, "austronesian":4, "auth":1, "authoress":3, "auto":1, "autecologic":5, "autecologically":7, "autecology":5, "aux":1, "auxanometer":5, "auxetic":3, "auxesis":3, "auxiliaries":4, "auxiliary":4, "auxiliary note":5, "auxiliary power unit":8, "auxiliary verb":5, "auxin":2, "auxilytic":4, "auximone":3, "auxo":2, "auxocardia":5, "auxochrome":3, "auxochromic":4, "aubade":2, "aubades":2, "aubanel":3, "auber":2, "auberge":2, "aubergine":3, "aubergiste":3, "auberon":3, "aubervilliers":4, "aubin":2, "aubrey":2, "aubretia":3, "aubrietia":3, "auburn":2, "auburn":2, "aubusson":3, "aubyn":2, "audacity":4, "audacious":3, "audaciously":4, "audaciousness":4, "auden":2, "audi":2, "audie":2, "audile":2, "audit":2, "audibility":5, "audible":3, "audibleness":4, "audibly":3, "audience":3, "audience-proof":3, "audient":3, "audio":3, "audio frequency":6, "audio-visual":5, "audiology":5, "audiometer":5, "audiometry":5, "audion":3, "audiogenic":5, "audiogram":4, "audiometric":5, "audiometrically":7, "audiophile":4, "audiotypist":5, "audiovisual":6, "audiphone":3, "audition":3, "auditive":3, "auditor":3, "auditorship":4, "auditoria":5, "auditorially":6, "auditorily":5, "auditorium":5, "auditoriums":5, "auditory":4, "auditress":3, "audrey":2, "audubon":3, "auer":2, "auerbach":3, "auge":2, "augend":2, "auger":2, "auger effect":4, "augean":3, "augean stables":5, "augeas":3, "augier":2, "augite":2, "augitic":3, "augur":2, "august":2, "august":2, "auguste":2, "augustly":3, "augustness":3, "augusta":3, "augustan":3, "augustales":4, "augustine":3, "augustinism":4, "augustinian":5, "augustinianism":6, "augustus":3, "augural":3, "augury":3, "aulard":2, "aulic":2, "aulic council":4, "aulis":2, "aulos":2, "aulophyte":3, "aumildar":3, "aura":2, "aura":2, "aurae":2, "aural":2, "aural":2, "aurally":3, "aurangzeb":3, "aurar":2, "auras":2, "auramine":3, "aurelia":3, "aureate":3, "aureately":4, "aureateness":4, "aurei":3, "aurelia":4, "aurelian":4, "aurelian":4, "aurelius":4, "aureole":3, "aureola":4, "aureolin":4, "aureoline":4, "aureomycin":5, "aureus":3, "auric":2, "auric":2, "auricula":4, "auricular":4, "auricularia":6, "auriculariae":6, "auricularly":5, "auriculate":4, "auriculately":5, "auriculated":5, "auriculoventricular":8, "auriferous":4, "aurific":3, "aurignacian":4, "auriol":2, "aurist":2, "auricle":3, "auricled":3, "aurified":3, "aurification":5, "auriform":3, "aurify":3, "aurifying":4, "auriga":3, "auriga":3, "aurignac":3, "aurignacian":4, "auriscope":3, "auriscopic":4, "auriscopically":6, "aurochs":2, "aurora":3, "aurora":3, "aurora australis":6, "aurora borealis":7, "auroral":3, "aurorally":4, "aurorean":4, "aurum":2, "aurum":2, "aurungzeb":3, "ausable":3, "ausonius":4, "autarch":2, "autarchic":3, "autarchist":3, "autarchical":4, "autarchically":5, "autarchy":3, "autarkic":3, "autarkist":3, "autarkical":4, "autarkically":5, "autarky":3, "autacoid":3, "autacoidal":4, "auteuil":2, "auteur":2, "autecious":3, "auteciously":4, "auteciousness":4, "autecism":3, "authentic":3, "authenticity":5, "authentical":4, "authentically":5, "authenticate":4, "authenticated":5, "authentication":5, "authenticator":5, "authigenic":4, "author":2, "authors":2, "authoress":3, "authorise":3, "authorised":3, "authoriser":4, "authorising":4, "authorize":3, "authorized":3, "authorized version":5, "authorizable":5, "authorizer":4, "authorisation":5, "authoritarian":6, "authoritarianism":7, "authoritative":5, "authoritatively":6, "authoritativeness":6, "authority":4, "authorization":5, "authorless":3, "authorship":3, "authorial":4, "autism":2, "autist":2, "autistic":3, "auto":2, "auto-alarm":3, "auto-da-f":2, "auto-da-f":3, "auto-infection":4, "auto-inoculability":8, "auto-inoculable":6, "auto-inoculation":6, "auto-rickshaw":3, "autochthon":3, "autochthons":3, "autochthonic":4, "autochthonal":4, "autochthones":4, "autochthonism":4, "autochthonous":4, "autochthonously":5, "autochthonousness":5, "autochthony":4, "autocracy":4, "autoecious":3, "autoeciously":4, "autoeciousness":4, "autoecism":3, "autogamous":4, "autogamy":4, "autogenous":4, "autogenously":5, "autogeny":4, "autography":4, "autoicous":3, "autolycus":4, "autolysis":4, "automata":4, "automatise":4, "automatism":4, "automatist":4, "automatize":4, "automaton":4, "automatous":4, "automedon":4, "autonomist":4, "autonomous":4, "autonomously":5, "autonomy":4, "autono":5, "autopsic":3, "autopsist":3, "autopsical":4, "autopsy":3, "autos-da-f":3, "autotomise":4, "autotomised":4, "autotomising":5, "autotomize":4, "autotomized":4, "autotomizing":5, "autotomy":4, "autotrophy":4, "autoxidation":5, "autoxidation-reduction":7, "autoantibody":6, "autobahn":3, "autobahns":3, "autobahnen":4, "autobiographer":6, "autobiography":6, "autobiographic":6, "autobiographical":7, "autobiographically":8, "autobus":3, "autobuses":4, "autobusses":4, "autocade":3, "autocatalytic":6, "autocatalytically":8, "autocatalysis":6, "autocatharsis":5, "autocephalous":5, "autocephaly":5, "autochanger":4, "autochrome":3, "autochromy":4, "autoclave":3, "autoclaved":3, "autoclaving":4, "autocoid":3, "autocollimation":6, "autocollimator":6, "autocorrelation":6, "autocrat":3, "autocratic":4, "autocratical":5, "autocratically":6, "autocross":3, "autocue":3, "autocycle":4, "autodidactically":6, "autodidact":4, "autodidactic":5, "autodyne":3, "autodyne reception":6, "autoerotism":5, "autoerotic":5, "autoerotically":7, "autoeroticism":6, "autogamic":4, "autogenesis":5, "autogenetic":5, "autogenetically":7, "autogiro":4, "autograft":3, "autograph":3, "autographic":4, "autographically":6, "autogyro":4, "autoharp":3, "autoharp":3, "autohypnotic":5, "autohypnotically":7, "autohypnosis":5, "autoignition":5, "autoimmune":4, "autoinfection":5, "autoinoculation":7, "autointoxication":7, "autoist":3, "autoionisation":7, "autoionization":7, "autokinetic":5, "autokinetic phenomenon":9, "autokinesis":5, "autolithography":6, "autoloading":4, "autolyse":3, "autolytic":4, "autolyze":3, "autolyzed":3, "autolyzing":4, "autolysin":4, "automat":3, "automate":3, "automated":4, "automatic":4, "automatic gain control":7, "automatic pilot":6, "automatic transmission":7, "automatic typesetting":7, "automatictacessing":7, "automating":4, "automatically":6, "automatograph":5, "automaticity":6, "automation":4, "automechanism":5, "automorphic":4, "automorphism":4, "automorphically":6, "automobile":4, "automobilist":5, "automotive":4, "autonomic":4, "autonomic nervous system":8, "autonomical":5, "autonomically":6, "autonym":3, "autooxidation":6, "autophyte":3, "autophytic":4, "autophytically":6, "autopista":4, "autopilot":4, "autoplast":3, "autoplastic":4, "autoplasty":4, "autopolyploid":5, "autopolyploidy":6, "autopositive":5, "autopotamic":5, "autoput":3, "autoradiography":7, "autoradiograph":6, "autoreflection":5, "autoroute":3, "autorotation":5, "autosome":3, "autostability":6, "autostoper":4, "autostrada":4, "autosuggestibility":8, "autosuggestible":6, "autosuggestion":5, "autosuggestionist":6, "autosuggestive":5, "autotelic":4, "autotelism":4, "autotimer":4, "autotomic":4, "autotoxaemia":6, "autotoxemia":6, "autotoxic":4, "autotoxin":4, "autotoxicosis":6, "autotransformer":5, "autotransformer":5, "autotransplant":4, "autotroph":3, "autotrophic":4, "autotrophically":6, "autotruck":3, "autotype":3, "autotypic":4, "autotypy":4, "autumn":2, "autumn crocus":4, "autumnal":3, "autumnal equinox":6, "autumnally":4, "autumni":3, "autunite":3, "auvergne":2, "auwers":2, "auzout":2, "avdp":1, "ave":1, "avebury":3, "avg":1, "avn":1, "avoir":1, "avallon":3, "avadavat":4, "avalanche":3, "avalanched":3, "avalanching":4, "avalon":3, "avalon peninsula":7, "avarice":3, "avaricious":4, "avariciously":5, "avariciousness":5, "avatar":3, "avens":2, "aventail":3, "aventine":3, "average":3, "average deviation":7, "averaged":3, "averagely":4, "averaging":4, "averrhoism":4, "averrhoist":4, "averrhoistic":5, "averroism":4, "averroist":4, "averroistic":5, "averyl":3, "aveline":3, "avelina":4, "avenaceous":4, "avenue":3, "avid":2, "avidly":3, "avicenna":4, "avidin":3, "avigation":4, "avigator":4, "avizandum":4, "avlona":3, "avoirdupois":4, "avoirdupois weight":5, "avondale":3, "avocado":4, "avocation":4, "avocet":3, "avodire":4, "avoset":3, "avram":2, "avril":2, "awe":1, "awe-inspiring":3, "awe-stricken":2, "awed":1, "awedly":2, "awedness":2, "aweless":2, "awelessness":3, "awesome":2, "awesomely":3, "awesomeness":3, "awestricken":3, "awestruck":2, "awkward":2, "awkwardly":3, "awkwardness":3, "awl":1, "awlwort":2, "awn":1, "awner":2, "awning":2, "awnless":2, "awful":2, "awfully":3, "awfulness":3, "awing":2, "awless":2, "awlessness":3, "awmous":2, "awninged":2, "axe":1, "axe-breaker":2, "axa":2, "axanthopsia":5, "axel":2, "axel":2, "axes":2, "axil":2, "axile":2, "axilla":3, "axillae":3, "axillar":3, "axillaries":4, "axillary":4, "axing":2, "axinomancy":5, "axis":2, "axis":2, "axised":2, "axises":3, "axial":3, "axial flow compressor":7, "axial skeleton":6, "axiality":5, "axially":4, "axilemma":4, "axilemmata":5, "axinite":3, "axiologist":5, "axiology":5, "axiom":3, "axiological":6, "axiologically":7, "axiomatic":5, "axiomatical":6, "axiomatically":7, "axiopoenus":5, "axle":2, "axled":2, "axletree":3, "axlike":2, "axman":2, "axminster carpet":5, "axon":2, "axone":2, "axonal":3, "axolotl":3, "axonometric":5, "axoplasm":3, "axseed":2, "axum":2, "aye":1, "aye-aye":1, "aylesbury":3, "ayntab":2, "ayre":1, "ayrshire":2, "aycliffe":2, "aydelotte":3, "aydin":2, "aym":2, "aymara":3, "aymaran":3, "aym":3, "azariah":4, "azathioprine":5, "azbine":2, "azerbaidzhan":4, "azerbaijan":4, "azide":2, "azine":2, "azido":3, "azimuth":3, "azimuthal":4, "azimuthal projection":7, "azimuthally":5, "azlon":2, "aznavour":3, "azo":2, "azo dye":3, "azole":2, "azote":2, "azoth":2, "azoted":3, "azobenzene":4, "azoimide":4, "azophenylene":5, "azotemia":5, "azotise":3, "azotised":3, "azotising":4, "azotize":3, "azotized":3, "azotizing":4, "azrael":2, "azrael":3, "azriel":3, "aztec":2, "aztecan":3, "azure":2, "azurite":3, "azurmalachite":5, "azyme":2, "azygous":3, "arogramme":4, "arate":3, "arator":4, "ariferous":5, "arial":4, "arialist":5, "ariality":6, "arially":5, "arialness":5, "arification":6, "ariform":4, "arify":4, "ary":3, "an":4, "ane":4, "aa":2, "aba":2, "abac":2, "aback":2, "abaculus":4, "abaddon":3, "abaft":2, "abagtha":3, "abaised":2, "abailard":3, "abandon":3, "abandoned":3, "abandonedly":4, "abandonable":5, "abandonee":4, "abandoner":4, "abandonment":4, "abantes":3, "abarbarea":5, "abas":2, "abase":2, "abased":2, "abasement":3, "abash":2, "abashedly":4, "abashedness":4, "abashment":3, "abaser":3, "abasing":3, "abate":2, "abatement":3, "abatable":4, "abated":3, "abater":3, "abating":3, "abatjour":3, "abattage":3, "abaca":3, "abadan":3, "abakan":3, "abasia":3, "abasic":3, "abatage":3, "abator":3, "abeam":2, "abed":2, "abednego":4, "abel":2, "abel-meholah":4, "abele":2, "abelmosk":3, "aberglaube":4, "abet":2, "abetment":3, "abettal":3, "abetted":3, "abetter":3, "abetting":3, "abettor":3, "abeyance":3, "abeyant":3, "abecedaria":6, "abecedarian":6, "abecedarium":6, "abecedary":5, "abelian":4, "abelian group":5, "abenezra":4, "abeokuta":5, "abib":2, "abide":2, "abidance":3, "abided":3, "abider":3, "abiding":3, "abidingly":4, "abidingness":4, "abidjan":3, "abie":2, "ability":4, "abimelech":4, "abinoam":4, "abinoem":4, "abiathar":4, "abihu":3, "abineri":4, "abiogenist":5, "abiotic":4, "abiotical":5, "abiotically":6, "abiogenesis":6, "abiogenetic":6, "abiogenetical":7, "abiogenetically":8, "abiosis":4, "abiu":3, "ablaze":2, "able":2, "able rating":4, "able-bodied":3, "able-bodied seaman":5, "able-bodiedness":4, "ablepharous":4, "ablepsia":4, "ablepsy":3, "ableptical":4, "ableptically":5, "abler":2, "ablest":2, "ablings":2, "ablins":2, "ablock":2, "abloom":2, "ablush":2, "ably":2, "aboard":2, "aboardage":3, "abode":2, "aboideau":3, "aboiteau":3, "abolish":3, "abolishable":5, "abolisher":4, "abolishment":4, "abolla":3, "abollae":3, "abominate":4, "abominated":5, "abominating":5, "abominable":5, "abominable snowman":7, "abominableness":6, "abominably":5, "abomination":5, "abominator":5, "abondance":3, "aboon":2, "aborning":3, "abort":2, "abortion":3, "abortional":4, "abortionist":4, "abortive":3, "abortively":4, "abortiveness":4, "aborticide":4, "abortifacient":5, "abortus":3, "abortuses":4, "abought":2, "abound":2, "aboundingly":4, "about":2, "about-face":2, "about-ship":2, "aboudikro":4, "aboukir":3, "aboukir bay":4, "aboulic":3, "aboulia":4, "above":2, "above board":3, "aboveboard":3, "aboveground":3, "abox":2, "abrade":2, "abraded":3, "abrader":3, "abrading":3, "abram":2, "abranchial":4, "abranchiate":4, "abraxas":3, "abradant":3, "abraham":3, "abraser":3, "abrasion":3, "abrasive":3, "abrazo":3, "abreast":2, "abri":2, "abridge":2, "abridged":2, "abridgeable":4, "abridgement":3, "abridgable":4, "abridger":3, "abridging":3, "abridgment":3, "abris":2, "abroach":2, "abroad":2, "abruzzi":3, "abu-bakr":2, "abu-bekr":2, "abulfeda":4, "abundance":3, "abundant":3, "abundantly":4, "abury":3, "abuse":2, "abused":2, "abusage":3, "abusable":4, "abuser":3, "abusing":3, "abut":2, "abutment":3, "abuttal":3, "abuttals":3, "abutted":3, "abutter":3, "abutting":3, "abuzz":2, "abukir":3, "abukir bay":4, "abulic":3, "abulia":4, "abuna":3, "abura":3, "abusive":3, "abusively":4, "abusiveness":4, "abutilon":4, "aby":2, "abye":2, "abysm":2, "abyss":2, "abyssal":3, "abysmal":3, "abysmally":4, "abyssal":3, "abydos":3, "academise":4, "academised":4, "academism":4, "academising":5, "academize":4, "academician":5, "academy":4, "academy":4, "acalculia":5, "acanthi":3, "acanthine":3, "acanthite":3, "acanthoid":3, "acanthous":3, "acanthocarpous":5, "acanthocephalan":6, "acanthus":3, "acanthuses":4, "acapnia":4, "acapnial":4, "acappella":4, "acardia":4, "acardiac":4, "acaricide":4, "acaricidal":5, "acaridan":4, "acarnan":3, "acarpellous":4, "acarpelous":4, "acarpous":3, "acastus":3, "acatalectic":5, "acaudal":3, "acaudate":3, "acaulescent":4, "acauline":3, "acacallis":4, "acacia":3, "acadie":3, "acadia":4, "acadian":4, "acapulco":4, "aceldama":4, "acellular":4, "acentric":3, "acephalous":4, "acerb":2, "acerbas":3, "acerbic":3, "acerbity":4, "acervate":3, "acervately":4, "acervulus":4, "acescence":3, "acescent":3, "acescency":4, "acesius":4, "acesodyne":4, "acessamenus":5, "acestoma":4, "acetified":4, "acetification":6, "acetifier":5, "acetify":4, "acetifying":5, "acetoin":4, "acetylate":4, "acetylated":5, "acetylating":5, "acetylation":5, "acetylene":4, "acetylenic":5, "acetylenogen":6, "acetylide":4, "acetylize":4, "acetylized":4, "acetylizer":5, "acetylizing":5, "acetylization":6, "acedia":4, "acenesthesia":5, "acequia":3, "acerous":3, "acetes":3, "acetic":3, "acetic acid":5, "acetic anhydride":6, "acetobacter":5, "acetophenetidin":7, "acetum":3, "acetyl":3, "acetylaminobenzene":8, "acetylaniline":6, "acetylbenzene":5, "acetylcholine":5, "acetylmethylcarbinol":8, "achab":2, "achad":2, "achaea":3, "achaean":3, "achaean league":4, "achaemenes":4, "achaemenid":4, "achaemenids":4, "achaeus":3, "achaian":3, "achan":2, "achar":2, "acharnians":4, "achaz":2, "achaia":3, "achaian":3, "achates":3, "achech":2, "acheilary":4, "achene":2, "achernar":3, "acheulean":4, "acheulian":4, "achenial":4, "achieve":2, "achieved":2, "achievement":3, "achievement age":4, "achievement quotient":5, "achievement test":4, "achievable":4, "achiever":3, "achieving":3, "achilles":3, "achilles heel":4, "achilles tendon":5, "achimaas":4, "achimelech":4, "achimenes":4, "achish":2, "achitophel":4, "achilary":4, "achlamydate":4, "achlorhydric":4, "achlorhydria":5, "achlorophyllous":5, "acholic":3, "achondrite":3, "achondritic":4, "achondroplastic":5, "achondroplasia":5, "achondroplasia":6, "acholia":4, "achronychous":4, "achromatophil":5, "achromatophilic":6, "achromatophilia":7, "achromatin":4, "achromatise":4, "achromatised":4, "achromatism":4, "achromatising":5, "achromatize":4, "achromatized":4, "achromatizing":5, "achromatization":6, "achromatous":4, "achromic":3, "achromous":3, "achromobacter":5, "acicula":4, "acicular":4, "acicularity":6, "acicularly":5, "aciculate":4, "aciculated":5, "aciculum":4, "acidic":3, "acidified":4, "acidifiable":6, "acidification":6, "acidifier":5, "acidify":4, "acidifying":5, "acidity":4, "acidulant":4, "acidulate":4, "acidulated":5, "acidulating":5, "acidulation":5, "acidulent":4, "acidulous":4, "acinacifoliate":7, "acinacifolious":7, "acinic":3, "aciniform":4, "acis":2, "acleistocardia":6, "aclinic line":4, "acock":2, "acockbill":3, "acoelomatous":5, "acoelous":3, "acoelomate":4, "acoemetae":4, "acoemeti":4, "acoenaesthesia":5, "acold":2, "aconcagua":4, "acorn":2, "acorn barnacle":5, "acorn valve":3, "acorn worm":3, "acorned":2, "acosmism":3, "acosmist":3, "acosmistic":4, "acotyledon":5, "acotyledonous":6, "acousma":3, "acousmas":3, "acousmata":4, "acoustic":3, "acoustic feature":5, "acoustic nerve":4, "acoustic phonetics":6, "acoustics":3, "acoustical":4, "acoustically":5, "acoustician":4, "acouasm":3, "acouchi":3, "acouchy":3, "aconitum":4, "acraea":3, "acraldehyde":4, "acre":2, "acre":2, "acre-foot":2, "acre-inch":2, "acred":2, "acreage":3, "acridity":4, "acrisius":4, "acritical":4, "acrodromous":4, "acrogenously":5, "acrography":4, "acrogynous":4, "acrology":4, "acronical":4, "acronically":5, "acronycal":4, "acronycally":5, "acronychal":4, "acronychous":4, "acronymize":4, "acronymized":4, "acronymizing":5, "acronymous":4, "acrophony":4, "acropathy":4, "acropetal":4, "acropetally":5, "acropolis":4, "acropolis":4, "across":2, "across-the-board":2, "acrostic":3, "acrostical":4, "acrostically":5, "acrotic":3, "acrolein":4, "acromia":4, "acromial":4, "acromion":4, "acroter":3, "acrux":2, "acrylic":3, "acrylic acid":5, "acrylic fibre":5, "acrylic resin":5, "acus":2, "acute":2, "acute accent":4, "acute arch":3, "acutely":3, "acuteness":3, "acutance":3, "acuity":4, "aculeate":4, "aculeated":5, "aculei":4, "aculeus":4, "acumen":3, "acuminate":4, "acuminated":5, "acuminating":5, "acumination":5, "acuminous":4, "acutilingual":5, "acyl":2, "acyloin":4, "acyclic":3, "acres":3, "ada":2, "adactylous":4, "adah":2, "adair":2, "adal":2, "adamic":3, "adamical":4, "adamically":5, "adapt":2, "adaptability":6, "adaptable":4, "adaptableness":5, "adaptedness":4, "adapter":3, "adaption":3, "adaptive":3, "adaptive radiation":7, "adaptively":4, "adaptiveness":4, "adaptor":3, "adar":2, "adar sheni":4, "adat":2, "adabel":3, "adabelle":3, "adagietto":4, "adagio":3, "adagissimo":5, "adagial":4, "adagio":4, "adana":3, "adapa":3, "adel":2, "adele":2, "adela":3, "adelphe":3, "ademption":3, "aden":2, "adenauer":4, "adenophore":4, "adenosine":4, "adenosine triphosphate":7, "adept":2, "adeptly":3, "adeptness":3, "adermin":3, "adermine":3, "adelantado":5, "adelina":4, "adena":3, "adenauer":4, "adie":2, "adieu":2, "adieus":2, "adieux":2, "adin":2, "adiphenine":4, "aditya":3, "adiactinic":5, "adige":3, "adighe":3, "adigranth":3, "adina":3, "adios":3, "adivasi":4, "ado":2, "adolf":2, "adolphe":2, "adolphus":3, "adonic":3, "adonica":4, "adopt":2, "adoptability":6, "adoptable":4, "adopted":3, "adopter":3, "adoption":3, "adoptional":4, "adoptive":3, "adoptively":4, "adore":2, "adored":2, "adorn":2, "adorner":3, "adorningly":4, "adornment":3, "adorsed":2, "adorability":6, "adorable":4, "adorableness":5, "adorably":4, "adorer":3, "adoring":3, "adoringly":4, "adorno":3, "adors":4, "adoula":3, "adown":2, "adobe":3, "adobe flat":4, "adonai":3, "adonis":3, "adonia":4, "adonoy":3, "adora":3, "adowa":3, "adramelech":4, "adrammelech":4, "adrastos":3, "adrastus":3, "adrenalin":4, "adrenalin":4, "adrenaline":4, "adrestus":3, "adret":2, "adrenin":3, "adrenine":3, "adrenocorticotrophic":8, "adrenocorticotropic":8, "adrenocorticotropic hormone":10, "adrift":2, "adriaen":3, "adrian":3, "adrian iv":4, "adrianopolis":6, "adrianople":5, "adriatic":4, "adriatic sea":5, "adrianopolis":6, "adrienne":3, "adroit":2, "adroitly":3, "adroitness":3, "adron":2, "adult":2, "adulthood":3, "adultness":3, "adullamite":4, "adulterant":4, "adulterate":4, "adulterated":5, "adulterating":5, "adulteration":5, "adulterator":5, "adulterer":4, "adulteress":4, "adulteries":4, "adulterine":4, "adulterous":4, "adulterously":5, "adultery":4, "adunc":2, "aduncity":4, "adust":2, "aduwa":3, "adyge":3, "adygei":3, "adygei autonomous region":9, "adyghe":3, "adzhar":2, "adzharistan":4, "adlie coast":4, "aella":3, "aello":3, "aedes":3, "aeneous":4, "aeneolithic":6, "afaced":2, "afacing":3, "afar":2, "afeard":2, "afeared":2, "afebrile":3, "afield":2, "afire":2, "aficionada":5, "aficionado":5, "afikomen":4, "aflame":2, "afloat":2, "aflutter":3, "afoot":2, "afore":2, "aforementioned":4, "aforesaid":3, "aforethought":3, "aforetime":3, "afoul":2, "afocal":3, "afraid":2, "afresh":2, "afyon":2, "aga":2, "aga khan":3, "aga khan iv":4, "agag":2, "again":2, "against":2, "agal":2, "agalloch":3, "agallochum":4, "agamete":3, "agamic":3, "agamically":5, "agammaglobulinemia":9, "agape":2, "agar":2, "agar":2, "agar-agar":3, "agaricaceous":5, "agaricin":4, "agartala":4, "agastrophus":4, "agastya":3, "agathocles":4, "agaze":2, "agadir":3, "agama":3, "agana":3, "agape":3, "agape":3, "agave":3, "agave":3, "agaa":4, "aged":2, "agedly":3, "agedness":3, "agee":2, "agee":2, "agen":2, "agent":2, "agent of production":6, "agent provocateur":6, "agent-general":4, "agency":3, "agenda":3, "agendum":3, "agenesis":4, "agential":3, "agentive":3, "agentival":4, "ageusic":3, "ageusia":4, "ageustia":4, "agena":3, "agenais":3, "agenetic":4, "agenesia":4, "agenois":3, "agenor":3, "agha":2, "aghast":2, "agility":4, "agist":2, "agister":3, "agistment":3, "agistor":3, "agitato":4, "aglaia":3, "aglauros":3, "aglaia":3, "aglaus":3, "agleam":2, "agley":2, "aglimmer":3, "aglint":2, "aglisten":3, "aglitter":3, "aglossia":4, "aglow":2, "aglucon":3, "aglucone":3, "agly":2, "aglycon":3, "aglycone":3, "ago":2, "agog":2, "agogics":3, "agone":2, "agonic":3, "agonic line":4, "agostini":4, "agouta":3, "agouti":3, "agouty":3, "agones":3, "agora":3, "agoroth":3, "agostino":4, "agra":2, "agraeus":3, "agrafe":2, "agraffe":2, "agram":2, "agrammaphasia":5, "agrammatism":4, "agranulocytosis":7, "agraphic":3, "agraphia":4, "agrarian":4, "agrarianism":5, "agrarianly":5, "agraulos":3, "agravic":3, "agree":2, "agreed":2, "agreeability":6, "agreeable":4, "agreeableness":5, "agreeably":4, "agreeing":3, "agreeingly":4, "agreement":3, "agreement":3, "agrestal":3, "agrestic":3, "agricola":4, "agrippa":3, "agrigento":4, "agrinion":3, "agriope":4, "agrius":3, "agrology":4, "agronomist":4, "agronomy":4, "agrostographic":5, "agrostologic":5, "aground":2, "agrotera":4, "agration":5, "agrg":5, "agrmens":4, "agrment":4, "aguardiente":4, "aguascalientes":5, "aguadilla":4, "ague":2, "aguelike":3, "agueweed":3, "aguinaldo":4, "agulhas":3, "agung":2, "aguish":3, "aguishly":4, "agujon":3, "agura":3, "aguroth":3, "agyieus":3, "aha":2, "ahab":2, "ahankara":4, "ahasuerus":5, "ahaz":2, "ahaziah":4, "ahead":2, "ahem":2, "ahidjo":3, "ahimaaz":4, "ahimelech":4, "ahimsa":3, "ahir":2, "ahistoric":4, "ahistorical":5, "ahithophel":4, "ahiezer":4, "ahira":3, "ahisar":3, "ahishar":3, "ahold":2, "aholt":2, "ahom":2, "ahorse":2, "ahoskie":3, "ahoy":2, "ahu":2, "ahuehuete":4, "ahull":2, "ahungered":3, "ahuzzath":3, "ahura mazda":5, "ai":2, "aias":2, "ain":2, "air":2, "ais":2, "aidoneus":5, "aiea":4, "aisha":3, "ajaccio":3, "ajanta":3, "ajar":2, "ajax":2, "ajee":2, "ajiva":3, "ajivika":4, "ajo":2, "ajodhya":3, "ajuga":3, "akademi":4, "akan":2, "akaba":3, "akala":3, "akasha":3, "akee":2, "akeldama":4, "akene":2, "akeake":4, "akela":3, "akela":3, "akhaia":4, "akhara":3, "akim":2, "akimbo":3, "akin":2, "akins":2, "akiba":3, "akihito":4, "akinetic":4, "akinesia":4, "akinesis":4, "akita":3, "akure":3, "akutagawa":5, "ala":2, "ala":2, "alack":2, "alackaday":4, "alacritous":4, "alacrity":4, "aladdin":3, "alae":2, "alai":2, "alain":2, "alain-fournier":3, "alannah":3, "alap":2, "alapa":3, "alar":2, "alarm":2, "alarm clock":3, "alarmable":4, "alarmedly":4, "alarmingly":4, "alarmism":3, "alarmist":3, "alarcn":4, "alarum":3, "alary":3, "alas":2, "alaska":3, "alaska highway":5, "alaska peninsula":7, "alaska range":4, "alaskan":3, "alastor":3, "alate":2, "alated":3, "alayne":2, "alag":3, "alagez":3, "alagoas":4, "alagz":4, "alalia":4, "alamein":3, "alamode":3, "alary":3, "alecithal":4, "alecto":3, "alectoromancy":6, "alectryomancy":6, "alee":2, "aleichem":3, "aleixandre":4, "alembert":3, "alembic":3, "alembicated":5, "alene":2, "alencon":3, "alencon lace":4, "alenon":4, "alep":2, "aleph":2, "aleph-null":2, "aleph-zero":3, "aleppo":3, "aleppo gall":4, "alert":2, "alertly":3, "alertness":3, "alerce":3, "alessandri":4, "alessandria":5, "alessandro":4, "alette":2, "alette":2, "aletta":3, "aleuromancy":5, "aleutian":3, "aleutian islands":5, "aleutians":3, "alexa":3, "alexian":3, "alexin":3, "alexine":3, "alexis":3, "alexis mikhailovich":7, "alexia":4, "alexiares":5, "alexicacus":5, "alexipharmic":5, "alexius i comnenus":8, "alea":3, "aleardi":4, "aleatoric":5, "aleatory":5, "alebion":4, "alecithic":4, "aledo":3, "alegrete":4, "aleksandrovsk":4, "aleksandropol":5, "alem":3, "alemn":4, "alerion":4, "alesia":4, "aletes":3, "alethic":3, "alethiologist":6, "alethiology":6, "alethiologic":6, "aleus":3, "alexandre":4, "alexandroupolis":6, "alexandropolis":6, "ali":2, "ali baba":4, "ali pasha":4, "alif":2, "alight":2, "alighted":3, "alighting":3, "alighting gear":4, "align":2, "aligner":3, "alignment":3, "alike":2, "alikeness":3, "aline":2, "aline":2, "alined":2, "alinement":3, "aliner":3, "alining":3, "alist":2, "alissa":3, "alit":2, "alive":2, "aliveness":3, "alizarin":4, "alizarine":4, "alias":3, "aliases":4, "aliacensis":5, "alicia":3, "aligarh":3, "alinotum":4, "alisa":3, "aliturgic":4, "aliturgical":5, "aliunde":4, "aliyah":3, "aliyahs":3, "aliyos":3, "aliza":3, "aloft":2, "alois":2, "alone":2, "aloneness":3, "along":2, "alongships":3, "alongshore":3, "alongside":3, "alonso":3, "alonzo":3, "aloof":2, "aloofly":3, "aloofness":3, "alost":2, "aloud":2, "alouette":4, "alouettes":4, "alow":2, "alowe":2, "alodia":4, "alodiality":6, "alodially":5, "alodium":4, "aloeus":4, "alogi":3, "alogia":3, "aloha":3, "aloha":3, "alopecus":4, "aloys":3, "alumna":3, "alumnus":3, "alundum":3, "aluminium hydroxide":8, "aluminium oxide":7, "aluminium sulphate":7, "alumina":4, "aluminate":4, "aluminiferous":6, "aluminise":4, "aluminised":4, "aluminising":5, "aluminite":4, "aluminize":4, "aluminized":4, "aluminizing":5, "aluminography":6, "aluminosity":6, "aluminous":4, "aluminographic":6, "aluminosilicate":7, "aluminothermics":6, "aluminothermy":6, "aluminum":4, "alunogen":4, "alyssum":3, "am":2, "amah":2, "amain":2, "amalgam":3, "amalgamate":4, "amalgamated":5, "amalgamating":5, "amalgamable":5, "amalgamation":5, "amalgamative":5, "amalgamator":5, "amalia":3, "amalthea":4, "aman":2, "amanda":3, "amandine":3, "amanist":3, "amanuensis":5, "amara":3, "amarna":3, "amarynceus":4, "amass":2, "amassable":4, "amasser":3, "amassment":3, "amate":2, "amated":3, "amating":3, "amaut":2, "amaya":3, "amaze":2, "amazed":2, "amazement":3, "amazedly":4, "amazedness":4, "amazing":3, "amazingly":4, "amadan":3, "amagasaki":5, "amalaka":4, "amap":3, "amap":4, "amasa":3, "amata":3, "amaterasu":5, "amati":3, "amato":3, "amazonas":4, "ameer":2, "ameerate":3, "ameiotic":4, "ameiosis":4, "amelia":3, "ameliorant":4, "ameliorate":4, "ameliorating":4, "ameliorated":5, "ameliorable":5, "ameliorableness":6, "amelioration":5, "ameliorative":5, "ameliorator":5, "amen":2, "amen":2, "amen corner":4, "amen-ra":2, "amend":2, "amends":2, "amendable":4, "amendatory":4, "amendatory":5, "amender":3, "amendment":3, "ament":2, "amenhotpe iii":5, "amenhotep iii":5, "amenity":4, "amenorrhea":5, "amenorrheal":5, "amenorrheic":5, "amenorrhoea":5, "amenorrhoeal":5, "amenorrhoeic":5, "amental":3, "amentia":3, "amentiform":4, "amerce":2, "amerced":2, "amerceable":4, "amercement":3, "amercer":3, "amercing":3, "amersfoort":3, "america":4, "america's cup":5, "american":4, "american aloe":6, "american beauty":6, "american chameleon":8, "american cheese":5, "american cloth":5, "american eagle":6, "american expeditionary forces":12, "american football":6, "american indian":7, "american indian movement":9, "american plan":5, "american revolution":8, "american samoa":7, "american standard version":8, "american trypanosomiasis":11, "americanise":5, "americanised":5, "americanism":5, "americanist":5, "americaniser":6, "americanising":6, "americanistic":6, "americanize":5, "americanized":5, "americanizer":6, "americanizing":6, "americanization":7, "americanly":5, "americana":5, "americano":5, "amerigo vespucci":7, "ametabolic":5, "ameba":3, "amebic":3, "ameboid":3, "ameboidism":4, "amebocyte":4, "ameliorate":4, "amelioration":5, "amelita":4, "amenability":6, "amenable":4, "amenableness":5, "amenably":4, "amerigo":4, "ametabolous":5, "ami":2, "amid":2, "amidst":2, "amidic":3, "amidship":3, "amidships":3, "amie":2, "amies":2, "amilcare":4, "amimia":4, "amin":2, "amine":2, "aminic":3, "aminity":4, "amintore":4, "amir":2, "amirate":3, "amis":2, "amis":2, "amish":2, "amiss":2, "amittai":3, "amiability":6, "amiable":4, "amiableness":5, "amiably":4, "amicus curiae":6, "amida":3, "amidah":3, "amidocyanogen":7, "amidogen":4, "amidopyrine":5, "amiel":3, "amiga":3, "amigo":3, "amino":3, "amino acid":5, "amino resin":5, "aminobenzene":5, "aminobenzoic acid":8, "aminophenol":5, "aminophylline":5, "aminoplast":4, "aminopyrine":5, "amitabha":4, "amoeba":3, "amoebalike":4, "amoebic":3, "amoebic dysentery":7, "amoeboid":3, "amoeboidism":4, "amoebocyte":4, "amok":2, "amon":2, "amon-ra":2, "among":2, "amongst":2, "amontillado":5, "amor":2, "amor patriae":5, "amort":2, "amoral":3, "amorally":4, "amorphism":3, "amorphous":3, "amorphously":4, "amorphousness":4, "amortise":3, "amortissement":4, "amortize":3, "amortisation":5, "amortization":5, "amos":2, "amount":2, "amour":2, "amour-propre":3, "amowt":2, "amoy":2, "amole":3, "amopaon":4, "amora":3, "amorality":5, "amoraim":4, "amoretto":4, "amorino":4, "amoroso":4, "amory":3, "amu darya":4, "amuck":2, "amundsen":3, "amundsen sea":4, "amur":2, "amurca":3, "amuse":2, "amused":2, "amusement":3, "amusement arcade":5, "amusement park":4, "amusable":4, "amusedly":4, "amuser":3, "amusing":3, "amusingly":4, "amusingness":4, "amugis":3, "amulius":4, "amusive":3, "amusively":4, "amusiveness":4, "amusia":4, "amy":2, "amygdale":3, "amygdala":4, "amygdalate":4, "amygdalaceous":5, "amygdalin":4, "amygdaline":4, "amygdaliform":5, "amygdaloid":4, "amygdaloidal":5, "amygdule":3, "amylic":3, "amylogen":4, "amyxorrhea":5, "amyxorrhoea":5, "amyatonic":5, "amyclas":3, "amyotonia":6, "amde":5, "ana":2, "anabasine":4, "anabasis":4, "anabolism":4, "anabolite":4, "anachorism":4, "anachronism":4, "anachronistic":5, "anachronistical":6, "anachronistically":7, "anachronous":4, "anachronously":5, "anacreon":4, "anacreontic":5, "anacreontically":7, "anadromous":4, "anaesthetise":4, "anaesthetist":4, "anaesthetize":4, "anaemic":3, "anaemia":4, "anaglyphy":4, "anak kuching":4, "anal":2, "anal canal":4, "anal fin":3, "anal intercourse":5, "analcime":3, "analcite":3, "anally":3, "analogise":4, "analogised":4, "analogism":4, "analogist":4, "analogising":5, "analogistic":5, "analogize":4, "analogized":4, "analogizing":5, "analogous":4, "analogously":5, "analogousness":5, "analogy":4, "analysand":4, "analysis":4, "analysis of variance":8, "analysis situs":6, "anam":2, "anambra":3, "anamelech":4, "anammelech":4, "anand":2, "ananda":3, "ananda":3, "anaphora":4, "anaphoral":4, "anastasis":4, "anastomose":4, "anastomosed":4, "anastomosing":5, "anastomotic":5, "anastomosis":5, "anastrophe":4, "anathema":4, "anathematic":5, "anathematical":6, "anathematically":7, "anathematise":5, "anathematised":5, "anathematiser":6, "anathematising":6, "anathematize":5, "anathematized":5, "anathematizer":6, "anathematizing":6, "anathematization":7, "anatabine":4, "anatman":3, "anatomise":4, "anatomised":4, "anatomist":4, "anatomiser":5, "anatomising":5, "anatomize":4, "anatomized":4, "anatomizable":6, "anatomizer":5, "anatomizing":5, "anatomisation":6, "anatomization":6, "anatomy":4, "anatropous":4, "anatto":3, "anaximander":5, "anaximandrian":6, "anaxo":3, "anabase":3, "anabranch":3, "anadyr":3, "analogia":5, "analogion":5, "anapurna":4, "anasazi":4, "anatole":3, "aneale":2, "anear":2, "anele":2, "aneled":2, "aneling":3, "anemochore":4, "anemogram":4, "anemograph":4, "anemographic":5, "anemographically":7, "anemone":4, "anemone fish":5, "anemoscope":4, "anemotis":4, "anenst":2, "anent":2, "anergic":3, "anesidora":5, "anesthetize":4, "anesthetization":6, "aneuch":2, "aneuric":3, "aneurin":3, "aneuria":4, "anew":2, "anemic":3, "anemia":4, "anemochoric":5, "aneto":3, "ani":2, "anicca":3, "anility":4, "anime":2, "anis":2, "anisic":3, "anilingus":4, "animato":4, "animi":3, "anita":3, "anoint":2, "anointer":3, "anointment":3, "anoia":3, "anole":2, "anomalism":4, "anomalistic":5, "anomalistic month":6, "anomalistic year":6, "anomalistically":7, "anomalous":4, "anomalously":5, "anomalousness":5, "anomaly":4, "anomic":3, "anon":2, "anonymous":4, "anonymously":5, "anopheles":4, "anopsia":4, "anouilh":2, "anoa":3, "anociassociation":8, "anociation":5, "anole":3, "anomia":4, "anorak":3, "anoscope":3, "anu":2, "anunnaki":4, "anus":2, "anuses":3, "anubis":3, "anucleate":4, "anucleated":5, "anuran":3, "anuradhapura":6, "anurous":3, "anpolis":5, "aoede":3, "aoide":3, "aornis":3, "aornum":3, "aorta":3, "aortal":3, "aortic":3, "aortitis":4, "aortography":5, "aortoclasia":5, "aoudad":3, "aoki":3, "aoli":3, "aomori":4, "aorangi":4, "aorist":3, "aoristic":4, "aoristically":6, "aosta":3, "apa":2, "apace":2, "apache":2, "apache dance":3, "apaches":2, "apache":3, "apaches":3, "apart":2, "apartheid":3, "apartment":3, "apartmental":4, "apartness":3, "aparri":3, "aparavidya":5, "aparejo":4, "apeak":2, "apeek":2, "apeiron":3, "apeldoorn":3, "apelles":3, "apercu":3, "aperient":4, "aperitive":4, "aperu":4, "apetalous":4, "apetalousness":5, "apetaly":4, "apex":2, "apexes":3, "apemius":4, "apepi":3, "aperiodic":5, "aperiodically":7, "aperiodicity":7, "aphaeresis":4, "aphacia":3, "aphacic":3, "aphagia":4, "aphakic":3, "aphakia":4, "aphakial":4, "aphasia":3, "aphasic":3, "aphasia":4, "aphasiac":4, "apheresis":4, "aphetic":3, "aphetically":5, "aphelia":4, "aphelian":4, "aphelion":4, "apheliotropism":6, "apheliotropic":6, "apheliotropically":8, "aphemia":4, "aphesius":4, "aphid":2, "aphid-lion":3, "aphidian":4, "aphidious":4, "aphidlion":4, "aphis":2, "aphislion":4, "aphidas":3, "aphlaston":3, "aphonic":3, "aphonia":4, "aphony":3, "aphotic":3, "aphyllous":3, "aphylly":3, "apiculate":4, "apiculus":4, "apiece":2, "apis":2, "apivorous":4, "apia":3, "apian":3, "apiaries":4, "apiarian":5, "apiary":4, "apiaceous":4, "apiarist":4, "apices":3, "apiculture":4, "apicultural":5, "apiculturist":5, "apiologist":5, "apiology":5, "aplanogamete":5, "aplanospore":4, "aplastic":3, "aplacental":4, "aplasia":3, "aplasia":4, "aplenty":3, "aplomb":2, "aplustre":3, "apo":2, "apocalypse":4, "apocalypse":4, "apocalyptic":5, "apocalyptical":6, "apocalyptically":7, "apocalypticism":6, "apocopate":4, "apocopated":5, "apocopating":5, "apocopation":5, "apocope":4, "apocrypha":4, "apocrypha":4, "apocryphal":4, "apocryphally":5, "apocryphalness":5, "apocynaceous":5, "apodema":4, "apodemal":4, "apodemas":4, "apodosis":4, "apogamously":5, "apogamy":4, "apollinaire":4, "apollinaris":4, "apollo":3, "apollo":3, "apollyon":3, "apologete":4, "apologetic":5, "apologetics":5, "apologetical":6, "apologetically":7, "apologise":4, "apologised":4, "apologist":4, "apologising":5, "apologize":4, "apologized":4, "apologizer":5, "apologizing":5, "apology":4, "apophasis":4, "apophony":4, "apophyllite":4, "apophyge":4, "apophysate":4, "apophysis":4, "aport":2, "aportlast":3, "aportoise":3, "apostate":3, "apostasy":4, "apostatise":4, "apostatised":4, "apostatism":4, "apostatising":5, "apostatize":4, "apostatized":4, "apostatizing":5, "apostil":3, "apostille":3, "apostle":3, "apostle spoon":4, "apostles' creed":4, "apostlehood":4, "apostleship":4, "apostolate":4, "apostolicity":5, "apostolos":4, "apostrophe":4, "apostrophise":4, "apostrophised":4, "apostrophising":5, "apostrophize":4, "apostrophized":4, "apostrophizing":5, "apostrophia":5, "apothecaries":5, "apothecaries' measure":7, "apothecaries' weight":6, "apothecary":5, "apotheosis":5, "apotheosise":5, "apotheosised":5, "apotheosising":6, "apotheosize":5, "apotheosized":5, "apotheosizing":6, "apocynthion":5, "apodeipna":4, "apodeipnon":4, "apolitical":5, "apolitically":6, "apophis":3, "aporia":4, "aporiae":4, "aporias":4, "apospory":4, "apr":2, "apraxic":3, "apraxia":4, "apresoline":4, "april":2, "april fool":3, "apricot":3, "apriorism":4, "apriorist":4, "apriority":5, "apriorism":4, "aprioristic":5, "aprioristically":7, "apron":2, "apron stage":3, "apronlike":3, "aprosexia":5, "aprowl":2, "apus":2, "apulia":3, "apulian":3, "apure":3, "apurmac":5, "apyretic":4, "apritif":5, "apritif":4, "aqaba":3, "aquarist":3, "aquaria":4, "aquarial":4, "aquarian":4, "aquarii":4, "aquarium":4, "aquariums":4, "aquarius":4, "aquatic":3, "aquatics":3, "aquatically":5, "aqueous":3, "aqueous ammonia":7, "aqueous humour":5, "aqueously":4, "aqueousness":4, "aqueus":3, "aquiver":3, "aquiculture":4, "aquileia":4, "aquinas":3, "aquinist":3, "ar":2, "ara":2, "arabinose":4, "arabinosic":5, "arachic":3, "arachne":3, "arachnid":3, "arachnida":4, "arachnidan":4, "arachnoid":3, "arad":2, "arae":2, "araeostyle":4, "araeosystyle":5, "aragonite":4, "arak":2, "araks":2, "arallu":3, "aram":2, "aramburu":4, "arany":2, "aranda":3, "aranyaka":4, "arapaho":4, "arapahoe":4, "aras":2, "araucan":3, "araxes":3, "arabia":4, "arabian":4, "arabian camel":6, "arabian desert":6, "arabian nights' entertainment":9, "arabian sea":5, "aracaj":4, "aracaju":4, "araceous":3, "aragats":3, "aragon":3, "araguaia":4, "araguaya":4, "araguar":5, "araguaya":4, "aragn":4, "arakan yoma":5, "araliaceous":5, "aralu":3, "araneid":4, "araneose":4, "araneous":4, "aranha":3, "araroba":4, "aratus":3, "arax":4, "araatuba":6, "areg":2, "areius":3, "arelia":3, "arensky":3, "arezzo":3, "arecibo":4, "arena":3, "arena theatre":6, "arene":3, "areola":4, "areolar":4, "areolate":4, "areostyle":4, "areosystyle":5, "arequipa":4, "arete":3, "aretino":4, "aretus":3, "areus":3, "arhythmia":4, "arhythmically":5, "ari":2, "aridity":4, "ariege":2, "aright":2, "ariminum":4, "arioso":3, "arise":2, "arisbe":3, "arisen":3, "arista":3, "arista":3, "aristate":3, "aristide":3, "aristides":4, "aristocrat":4, "aristocratic":5, "aristocraticness":6, "aristocratical":6, "aristocratically":7, "aristocraticalness":7, "aristodemocracy":7, "aristodemus":5, "aristolochiaceous":7, "aristophanic":5, "aristotype":4, "arithmetic":4, "arithmetic mean":5, "arithmetic progression":7, "arithmetician":5, "arithmomancy":5, "aria":3, "aria":3, "arica":3, "arietis":4, "ariki":3, "arion":3, "ariose":3, "ariosto":4, "arioso":4, "ariosto":4, "aristide":3, "arius":3, "aroint thee":3, "aroideous":4, "aroostook":3, "arose":2, "around":2, "around-the-clock":2, "arouse":2, "aroused":2, "arousal":3, "arousable":4, "arouser":3, "arousing":3, "aroma":3, "aromatise":4, "aromatised":4, "aromatising":5, "aromatize":4, "aromatized":4, "aromatizer":5, "aromatizing":5, "aromatisation":6, "aromatization":6, "aru islands":4, "arundinaceous":5, "arunta":3, "aruspex":3, "aruspices":4, "aruspicy":4, "aruba":3, "arunachal pradesh":6, "aruru":3, "arusha":3, "aruwimi":4, "arythmia":4, "arythmically":5, "arte":3, "asa":2, "asag":2, "asantehene":5, "asar":2, "asat":2, "asafoetida":5, "asahigawa":5, "asahikawa":5, "asana":3, "aschaffenburg":4, "ascorbic acid":5, "ascribable":4, "asemic":3, "asepalous":4, "asepsis":3, "aseptic":3, "aseptically":5, "asepticism":4, "aser":2, "asexual":4, "asexualise":5, "asexualised":5, "asexualising":6, "asexualize":5, "asexualized":5, "asexualizing":6, "asexuality":6, "asexualization":7, "asexually":5, "aseity":4, "asemia":4, "aseyev":3, "ashake":2, "ashamed":2, "ashamedly":4, "ashamedness":4, "ashanti":3, "asherah":3, "asherim":3, "ashipped":2, "ashipping":3, "ashikaga":4, "ashore":2, "ashur":2, "ashurbanipal":5, "asia":2, "asia minor":4, "asian":2, "asian flu":3, "aside":2, "asiderite":4, "asir":2, "asianic":4, "asiatic":4, "asiatic beetle":6, "asiatic cholera":7, "asiatically":6, "asine":3, "asius":3, "askance":2, "askant":2, "askew":2, "aslant":2, "asleep":2, "aslope":2, "aso":2, "asocial":3, "asoka":3, "asomatous":4, "asonia":4, "asopus":3, "asosan":3, "aspasia":4, "aspheric":3, "aspherical":4, "asprawl":2, "asquint":2, "asrama":3, "astaire":2, "astarboard":3, "astatic":3, "astatically":5, "astaticism":4, "astay":2, "astable":3, "astasia":3, "astern":2, "astereognosis":6, "asternal":3, "asteria":4, "astigmatism":4, "astigmatizer":5, "astigmatometer":6, "astigmatometry":6, "astigmatoscopy":6, "astigmic":3, "astigmia":4, "astigmoscope":4, "astilbe":3, "astir":2, "astomatous":4, "astonish":3, "astonishment":4, "astound":2, "astraddle":3, "astragalus":4, "astray":2, "astride":2, "astylar":3, "asunci":3, "asuncin":4, "asunder":3, "asur":2, "asura":3, "aswarm":2, "asyllabic":4, "asymptomatic":5, "asymptomatically":7, "asymmetric":4, "asymmetric time":5, "asymmetrical":5, "asymmetrically":6, "asymmetry":4, "asynchronism":4, "asynchronous":4, "asynchronously":5, "asyndeton":4, "asynergy":4, "asynjur":3, "asyntactic":4, "asyut":2, "asyt":3, "asylum":3, "asynergia":4, "ata":2, "atactic":3, "atakapa":4, "atascadero":5, "atavic":3, "ataxic":3, "ataxite":3, "ataxia":4, "ataxy":3, "atabalipa":5, "atacama desert":6, "atahualpa":4, "atatrk":4, "ate":2, "atef-crown":2, "atelic":3, "ateliotic":5, "aten":2, "ateste":3, "ateleiosis":5, "ateliosis":5, "athanasy":4, "atharva-veda":4, "athermancy":4, "athermanous":4, "atheism":3, "atheist":3, "atheistic":4, "atheisticness":5, "atheistical":5, "atheistically":6, "athematic":4, "athena":3, "athenai":3, "athene":3, "athenian":4, "athirst":2, "athrill":2, "athwart":2, "athwartships":3, "athnienne":4, "athniennes":4, "athematic":5, "atilt":2, "atingle":3, "atiptoe":3, "atomic":3, "atomic age":4, "atomic bomb":4, "atomic clock":4, "atomic cocktail":5, "atomic energy":6, "atomic energy authority":10, "atomic energy commission":9, "atomic heat":4, "atomic mass":4, "atomic mass unit":6, "atomic number":5, "atomic pile":4, "atomic power":5, "atomic structure":5, "atomic theory":6, "atomic volume":5, "atomic weight":4, "atomics":3, "atomical":4, "atomically":5, "aton":2, "atone":2, "atoned":2, "atoneable":4, "atonement":3, "atonal":3, "atonalism":4, "atonalistic":5, "atonally":4, "atonable":4, "atoner":3, "atonic":3, "atoning":3, "atoningly":4, "atop":2, "atoka":3, "atonality":5, "atonia":4, "atrax":2, "atrahasis":4, "atremble":3, "atresia":3, "atresic":3, "atreus":3, "atrichia":4, "atrip":2, "atria":3, "atrial":3, "atridae":3, "atridean":4, "atrioventricular":7, "atrium":3, "atrocity":4, "atrophic":3, "atrocious":3, "atrociously":4, "atrociousness":4, "atrophia":4, "atry":2, "atum":2, "atwain":2, "atween":2, "atwitter":3, "atymnius":4, "atypic":3, "atypical":4, "atypically":5, "atys":2, "ava":2, "ava":2, "ava'":2, "avail":2, "availability":6, "available":4, "availableness":5, "availably":4, "availingly":4, "avant-garde":2, "avant-gardism":3, "avanturine":4, "avar":2, "avare":2, "avast":2, "avaunt":2, "avalokitesvara":7, "ave":2, "ave":2, "ave maria":5, "aveiro":3, "avellan":3, "avenge":2, "avenged":2, "avengeful":3, "avenger":3, "avenging":3, "avengingly":4, "aventurin":4, "aventurine":4, "aver":2, "averred":2, "averse":2, "aversely":3, "averseness":3, "avert":2, "avertable":4, "avertedly":4, "averter":3, "avertible":4, "averell":3, "averil":3, "averment":3, "avernal":3, "averno":3, "avernus":3, "averrhos":5, "averring":3, "averroes":4, "averros":5, "aversion":3, "aversion therapy":6, "aversive":3, "avertin":3, "avery":3, "aves":2, "avesta":3, "avestan":3, "avestic":3, "aveyron":3, "avellaneda":5, "aviary":3, "avice":2, "avicularia":6, "avicularian":6, "avicularium":6, "avidity":4, "avidya":3, "aviemore":3, "avilion":3, "avion":2, "avions":2, "avirulence":4, "avirulent":4, "avis":2, "avitaminosis":6, "avian":3, "aviaries":4, "aviary":4, "aviate":3, "aviated":4, "aviatic":4, "aviating":4, "aviation":4, "aviation medicine":7, "aviator":4, "aviatrix":4, "aviatrices":5, "avicebrn":5, "aviculture":4, "aviculturist":5, "avifauna":4, "avifaunal":4, "avifaunally":5, "avignon":3, "avila":3, "avionics":4, "aviso":3, "avitaminotic":6, "avitaminosis":6, "aviva":3, "avo":2, "avo":2, "avocatory":5, "avoid":2, "avoidance":3, "avoidable":4, "avoidably":4, "avoider":3, "avon":2, "avonne":2, "avos":2, "avouch":2, "avoucher":3, "avouchment":3, "avow":2, "avowed":2, "avowal":3, "avowable":4, "avowedly":4, "avowedness":4, "avower":3, "avowry":3, "avoca":3, "avogadro":4, "avogadro constant":6, "avogadro's law":5, "avoset":3, "avulsed":3, "avulsion":3, "avuncular":4, "avunculate":4, "awa":2, "await":2, "awaiter":3, "awake":2, "awaked":2, "awakeable":4, "awaken":3, "awakenable":5, "awakener":4, "awakening":4, "awakeningly":5, "awaking":3, "award":2, "award wage":3, "awardable":4, "awarder":3, "aware":2, "awareness":3, "awash":2, "away":2, "aweather":3, "aweigh":2, "awheel":2, "awhile":2, "awhirl":2, "awoke":2, "awolowo":4, "awry":2, "axenic":3, "ayah":2, "ayacucho":4, "ayahuasca":4, "ayesha":3, "ayin":2, "ayina":3, "ayous":2, "ayub khan":3, "ayudhya":3, "ayuntamiento":5, "ayurveda":4, "ayurvedic":4, "ayutthaya":4, "ayuthea":4, "azalea":3, "azan":2, "azan":2, "azana":3, "azazel":3, "azaa":4, "azedarach":4, "azerbaijan":4, "azerbaijani":5, "azerbaijanis":5, "azerbaijanian":6, "azeglio":3, "azeotropy":5, "azeotrope":4, "azeotropic":5, "azilian":3, "azilian":4, "azikiwe":4, "azle":2, "azof":2, "azonal":3, "azonal soil":4, "azonic":3, "azores":2, "azotic":3, "azov":2, "azoic":3, "azophi":3, "azor":3, "azorian":4, "azorn":4, "azotos":3, "azotobacter":5, "azuela":3, "azulejo":4, "azusa":3, "azygospore":4, "arope":5, "ades":4, "adon":4, "aneous":5, "ar":3, "ada":4, "b battery":4, "b complex":3, "b horizon":4, "b special":3, "b-axes":2, "b/f":1, "b/l":1, "b/s":1, "baa":1, "baa":1, "baal":1, "baal":1, "baalbek":2, "baalshem":2, "baas":1, "baaskap":2, "baasskap":2, "baader-meinhof gang":4, "baaing":2, "bab":1, "bab el mandeb":4, "babe":1, "babe":1, "babel":1, "babism":1, "babs":1, "babbage":2, "babbitt":2, "babbitt":2, "babbitt metal":4, "babbittry":3, "babbitry":3, "babble":2, "babbler":2, "babblement":3, "babbling":2, "babblingly":3, "babesiasis":5, "babism":2, "babist":2, "babite":2, "babiroussa":4, "babirussa":4, "babirusa":4, "babka":2, "babracot":3, "babson":2, "babylon":3, "babylonish":4, "babylonia":5, "babylonian":5, "babylonian captivity":9, "bach":1, "bach":1, "bach trumpet":3, "bacharach":3, "bacheller":3, "bachelor":3, "bachelor girl":4, "bachelor of arts":5, "bachelor of science":6, "bachelor's":3, "bachelor's-button":4, "bachelor's-buttons":4, "bachelor-at-arms":3, "bachelors-at-arms":3, "bachelordom":4, "bachelorhood":4, "bachelorism":4, "bachelorlike":4, "bachelorly":4, "back":1, "back boiler":3, "back country":3, "back formation":4, "back marker":3, "back matter":3, "back number":3, "back passage":3, "back projection":4, "back river":3, "back scatter":3, "back-alley":2, "back-breaking":2, "back-filleted":3, "back-pedal":2, "back-pedaled":2, "back-pedalled":2, "back-pedaling":3, "back-pedalling":3, "back-scratcher":2, "back-seat driver":3, "back-slapping":2, "backed":1, "backs":1, "backache":2, "backband":2, "backbencher":3, "backbend":2, "backbit":2, "backbite":2, "backbiter":3, "backbiting":3, "backbitten":3, "backblocks":2, "backboard":2, "backbone":2, "backboned":2, "backboneless":3, "backbreaker":3, "backbreaking":3, "backchat":2, "backcloth":2, "backcomb":2, "backcourt":2, "backcross":2, "backdate":2, "backdoor":2, "backdown":2, "backdrop":2, "backer":2, "backer-up":2, "backers-up":2, "backfall":2, "backfield":2, "backfill":2, "backfire":2, "backfired":2, "backfiring":3, "backflow":2, "backgammon":3, "backgeared":2, "background":2, "backhand":2, "backhanded":3, "backhandedly":4, "backhandedness":4, "backhander":3, "backhaul":2, "backhaus":2, "backhouse":2, "backhouses":3, "backie":2, "backing":2, "backing store":3, "backlash":2, "backless":2, "backlighted":3, "backlighting":3, "backlings":2, "backlins":2, "backlit":2, "backlog":2, "backlogged":2, "backlogging":3, "backmost":2, "backpack":2, "backpacker":3, "backplate":2, "backrest":2, "backrope":2, "backsaw":2, "backscatter":3, "backscattering":4, "backscratcher":3, "backset":2, "backsheesh":2, "backshish":2, "backside":2, "backsight":2, "backslapper":3, "backslapping":3, "backslide":2, "backslidden":3, "backslider":3, "backsliding":3, "backspace":2, "backspaced":2, "backspacer":3, "backspacing":3, "backspin":2, "backsplice":2, "backspliced":2, "backsplicing":3, "backstab":2, "backstabbed":2, "backstabber":3, "backstabbing":3, "backstage":2, "backstair":2, "backstairs":2, "backstay":2, "backstitch":2, "backstop":2, "backstopped":2, "backstopping":3, "backstrapped":2, "backstreet":2, "backstretch":2, "backstroke":2, "backstroked":2, "backstroking":3, "backswept":2, "backswimmer":3, "backswing":2, "backsword":2, "backswordsman":3, "backswordman":3, "backtrack":2, "backup":2, "backveld":2, "backward":2, "backwards":2, "backwardation":4, "backwardly":3, "backwardness":3, "backwash":2, "backwasher":3, "backwater":3, "backwind":2, "backwinded":3, "backwinding":3, "backwood":2, "backwoods":2, "backwoodsman":3, "backyard":2, "bact":1, "bacca":2, "baccae":2, "baccate":2, "baccalaureate":5, "baccara":3, "baccarat":3, "bacchae":2, "bacchant":2, "bacchants":2, "bacchante":3, "bacchantes":3, "bacchantic":3, "bacchanal":3, "bacchanalia":5, "bacchanalia":5, "bacchanalian":5, "bacchanalianism":6, "bacchanalias":5, "bacchelli":3, "bacchic":2, "bacchii":3, "bacchius":3, "bacchus":2, "bacchuslike":3, "bacchylides":4, "bacciferous":4, "baccillum":3, "baccio":2, "baccivorous":4, "bacciform":3, "baccy":2, "bacillary":4, "bacillemia":5, "bacitracin":4, "baclava":3, "bacterize":3, "bacterized":3, "bacterizing":4, "bacterization":5, "bacteroid":3, "bacteraemia":5, "bacteremia":5, "bacterin":3, "bacteria":4, "bacteria bed":5, "bacterial":4, "bacterial plaque":5, "bacterially":5, "bactericide":4, "bactericidal":5, "bacterioid":4, "bacterioidal":5, "bacteriologist":6, "bacteriology":6, "bacteriolysis":6, "bacteriophagy":6, "bacterioscopist":6, "bacterioscopy":6, "bacteriological":7, "bacteriologically":8, "bacteriolytic":6, "bacteriophage":5, "bacteriophagic":6, "bacterioscopic":6, "bacterioscopically":8, "bacteriostat":5, "bacteriostatic":6, "bacteriostatically":8, "bacteriostasis":6, "bacterium":4, "bacteroidal":4, "bacteroides":4, "bactra":2, "bactria":3, "bactrian camel":5, "baculine":3, "baculite":3, "baculitic":4, "baculoid":3, "baculum":3, "bad":1, "bad godesberg":4, "bad-tempered":2, "badb":1, "bade":1, "badge":1, "badgeless":2, "badger":2, "badgeringly":4, "badgerly":3, "badging":2, "badderlocks":3, "baddeleyite":4, "baddie":2, "baddish":2, "baddy":2, "badinage":3, "badinaged":3, "badlands":2, "badly":2, "badman":2, "badminton":3, "badness":2, "baekeland":2, "bael":1, "baer":1, "baeda":2, "baedeker":3, "baedeker raid":4, "baetulus":3, "baetyl":2, "baetylic":3, "baetylus":3, "baeyer":2, "baff":1, "baffies":2, "baffy":2, "baffin":2, "baffin bay":3, "baffin island":4, "baffle":2, "baffler":2, "bafflement":3, "baffleplate":3, "baffling":2, "bafflingly":3, "bafflingness":3, "bag":1, "bag-flower":2, "bagehot":2, "bagh":1, "baghdad":2, "bagheera":3, "baghla":2, "baghlan":2, "bagnio":2, "bags":1, "bagatelle":3, "bagatha":3, "bagdad":2, "bagful":2, "baggage":2, "baggagemaster":4, "baggala":3, "bagging":2, "baggier":3, "baggiest":3, "baggily":3, "bagginess":3, "baggy":2, "baggyrinkle":4, "baggywrinkle":4, "bagley":2, "bagman":2, "bagnette":2, "bagpipe":2, "bagpiped":2, "bagpipes":2, "bagpiper":3, "bagpiping":3, "bagwash":2, "bagwig":2, "bagwigged":2, "bagwoman":3, "bagwomen":3, "bagwork":2, "bagworm":2, "bah":1, "bahr":1, "baht":1, "bahrain":2, "bahrein":2, "bahru":2, "bai":1, "bai":1, "bail":1, "baile ath":3, "bailsman":2, "bailable":3, "bailee":2, "bailer":2, "bailie":2, "bailiff":2, "bailiffship":3, "bailiwick":3, "baillaud":2, "baillie":2, "bailly":2, "bailment":2, "bailor":2, "bailout":2, "bain":1, "bain-marie":2, "bains-marie":2, "bainbridge":2, "bainite":2, "baird":1, "bairn":1, "bairnsfather":3, "bairnish":2, "bairnishness":3, "bairnly":2, "bait":1, "baith":1, "baiter":2, "baize":1, "baizing":2, "baidarka":3, "baigneuse":2, "baikal":2, "bailey":2, "bailey":2, "bailey bridge":3, "baily":2, "baily's beads":3, "bairam":2, "bajer":2, "bake":1, "baked alaska":4, "bakeapple":3, "bakehouse":2, "bakehouses":3, "bakemeat":2, "bakeshop":2, "bakeware":2, "bakewell tart":3, "bakhmut":2, "bakst":1, "baker":2, "baker":2, "baker's dozen":4, "bakersfield":3, "bakeries":3, "bakery":3, "baking":2, "baking powder":4, "baklava":3, "bakra":2, "baksheesh":2, "bakshis":2, "bakshish":2, "bal":1, "balch":1, "bald":1, "bald cypress":3, "bald eagle":3, "baldhead":2, "baldheaded":3, "balding":2, "baldish":2, "baldly":2, "baldmoney":3, "baldness":2, "baldpate":2, "baldpated":3, "baldpatedness":4, "baldwin":2, "baldwin i":3, "baldwinsville":3, "bale":1, "balefire":2, "baleful":2, "balefully":3, "balefulness":3, "baleless":2, "balk":1, "balkh":1, "balker":2, "balkingly":3, "balkier":3, "balkiest":3, "balkily":3, "balkiness":3, "balkline":2, "balky":2, "ball":1, "ball":1, "ball bearing":3, "ball-and-socket joint":3, "ball-bearing":2, "ball-carrier":3, "ball-jasper":2, "ball-peen hammer":3, "balls":1, "baller":2, "ballflower":3, "ballpark":2, "ballplayer":3, "ballpoint":2, "ballpoint pen":3, "ballroom":2, "ballroom dancing":4, "ballup":2, "ballwin":2, "balm":1, "balm of gilead":5, "balmier":3, "balmiest":3, "balmily":3, "balminess":3, "balmlike":2, "balmy":2, "balt":1, "bala":2, "balance":2, "balance":2, "balance of nature":5, "balance of payments":5, "balance of power":5, "balance of trade":4, "balance sheet":3, "balance wheel":3, "balanced":2, "balanceable":4, "balancer":3, "balancing":3, "balanchine":3, "balas":2, "balaclava":4, "balaclava":4, "balaclava helmet":6, "balaklava":4, "balalaika":4, "balanoid":3, "balata":3, "balbo":2, "balboa":3, "balboa":3, "balbriggan":3, "balbuena":3, "balche":2, "balch":3, "balconet":3, "balconette":3, "balconied":3, "balcony":3, "baldacchino":4, "baldad":2, "baldassare":4, "baldachin":3, "baldachined":3, "baldachino":4, "baldaquin":3, "balder":2, "balderdash":3, "baldomero":4, "baldoquin":3, "baldr":2, "baldric":2, "baldrick":2, "baldricked":2, "baldur":2, "baler":2, "balearic islands":6, "balfour":2, "balfour declaration":6, "baling":2, "baliol":2, "balibuntal":4, "balkan":2, "balkan mountains":4, "balkan peninsula":6, "balkan states":3, "balkanise":3, "balkanised":3, "balkanism":3, "balkanising":4, "balkanite":3, "balkanize":3, "balkanized":3, "balkanizing":4, "balkhash":2, "balkis":2, "balla":2, "ballad":2, "ballad metre":4, "ballad opera":5, "ballad stanza":4, "ballade":2, "balladeer":3, "balladic":3, "balladier":3, "balladise":3, "balladised":3, "balladist":3, "balladising":4, "balladize":3, "balladized":3, "balladizing":4, "balladlike":3, "balladmonger":4, "balladmongering":5, "balladry":3, "ballance":2, "ballard":2, "ballas":2, "ballast":2, "ballaster":3, "ballastic":3, "ballarat":3, "ballata":3, "ballate":3, "ballet":2, "ballets":2, "ballett":2, "balletic":3, "balletically":5, "balletomane":4, "balletomania":6, "ballerina":4, "ballington":3, "ballinger":3, "balliol":2, "ballism":2, "ballismus":3, "ballista":3, "ballistic":3, "ballistic galvanometer":8, "ballistic missile":5, "ballistics":3, "ballistite":3, "ballistically":5, "ballistician":4, "ballistocardiography":8, "ballistocardiogram":7, "ballistocardiograph":7, "ballistocardiographic":8, "balliol":3, "ballium":3, "ballocks":2, "ballon":2, "ballonn":4, "balloon":2, "balloon sail":3, "balloon sleeve":3, "balloon tyre":3, "balloon vine":3, "balloon-berries":3, "balloon-berry":3, "ballooner":3, "balloonfish":3, "balloonfishes":4, "balloonlike":3, "ballot":2, "ballot box":3, "ballot paper":4, "ballottement":3, "balloted":3, "balloter":3, "balloting":3, "ballottine":3, "ballonet":3, "ballotade":3, "bally":2, "ballyhoo":3, "ballyrag":3, "ballyragged":3, "ballyragging":4, "balmain":2, "balmacaan":3, "balmont":2, "balmoral":3, "balmunc":2, "balmung":2, "balneal":3, "balneary":4, "balneologist":5, "balneology":5, "balneologic":5, "balopticon":4, "balsa":2, "balsam":2, "balsam apple":4, "balsam fir":3, "balsam poplar":4, "balsam spruce":3, "balsamic":3, "balsamiferous":5, "balsamically":5, "balsamy":3, "balsamaceous":4, "balsaminaceous":5, "balshem":2, "baltassar":3, "baltei":3, "balteus":3, "balthazar":3, "baltic":2, "baltic sea":3, "baltic shield":3, "baltic states":3, "baltimore":3, "baltimore oriole":6, "balto-slavic":3, "balto-slavonic":4, "balun":2, "baluster":3, "balustered":3, "balustrade":3, "balustraded":4, "balzac":2, "bamako":3, "bambacciata":5, "bambara":3, "bamberg":2, "bambi":2, "bambino":3, "bambocciade":4, "bamboo":2, "bamboo curtain":4, "bamboozle":3, "bamboozler":3, "bamboozlement":4, "ban":1, "banc":1, "band":1, "band spectrum":3, "band-gala":2, "band-pass filter":3, "bandh":1, "bandsman":2, "bandage":2, "bandaged":2, "bandager":3, "bandaging":3, "bandbox":2, "bandboxical":4, "bandboxy":3, "banded":2, "bander":2, "bandfile":2, "bandfiled":2, "bandfiling":3, "banding":2, "bandjarmasin":4, "bandkeramik":4, "bandleader":3, "bandless":2, "bandlet":2, "bandmaster":3, "bandsaw":2, "bandsawn":2, "bandsawing":3, "bandspreading":3, "bandstand":2, "bandwagon":3, "bandwidth":2, "bane":1, "baneberry":3, "banecroft":2, "baneful":2, "banefully":3, "banefulness":3, "banff":1, "banffshire":2, "bang":1, "bangs":1, "bangalay":3, "bangboard":2, "banger":2, "bangka":2, "bangkok":2, "bangladesh":3, "bangtail":2, "bangtail muster":4, "bangup":2, "bangweulu":4, "bank":1, "bank acceptance":4, "bank account":3, "bank annuities":5, "bank discount":3, "bank holiday":4, "bank manager":4, "bank of england":4, "bank statement":3, "bank-riding":2, "banks":1, "banks island":3, "bankable":3, "bankbook":2, "banker":2, "banker's card":3, "banker's order":4, "banket":2, "bankhead":2, "banking":2, "bankroll":2, "bankroller":3, "bankrupt":2, "bankruptcy":3, "bankruptly":3, "bankside":2, "banksia":3, "banns":1, "bans":1, "bant":1, "banting":2, "banting":2, "bantling":2, "banat":2, "banat":2, "banbury":3, "banbury cake":4, "bancroft":2, "banda":2, "banda sea":3, "bandana":3, "bandanaed":3, "bandanna":3, "bandannaed":3, "bandar seri begawan":7, "bandaranaike":4, "bandaranaike":6, "bandeau":2, "bandello":3, "bandersnatch":3, "bandelet":3, "banderilla":4, "banderillas":4, "banderillero":5, "banderilleros":5, "banderol":3, "banderole":3, "bandied":2, "bandit":2, "bandits":2, "banditry":3, "banditti":3, "bandicoot":3, "bandinelli":4, "bandiness":3, "bandjarmasin":4, "bandjermasin":4, "bandoeng":2, "bandog":2, "bandore":2, "bandobust":3, "bandoleer":3, "bandoleered":3, "bandolier":3, "bandoliered":3, "bandoline":3, "bandora":3, "bandung":2, "bandurria":3, "bandura":3, "bandy":2, "bandy leg":3, "bandy-bandy":3, "bandy-legged":3, "bandying":3, "bangalore":3, "bangalore torpedo":6, "bangle":2, "bangled":2, "bangor":2, "bangui":2, "bania":2, "banian":2, "banish":2, "banisher":3, "banishment":3, "banister":3, "banisters":3, "baniya":2, "banja luka":4, "banjermasin":4, "banjo":2, "banjoist":3, "banjul":2, "banka":2, "banket":2, "banlieue":2, "banner":2, "bannered":2, "banneret":3, "bannerette":3, "bannerless":3, "bannerlike":3, "bannerman":3, "bannerol":3, "bannerol":3, "banning":2, "banning":2, "bannister":3, "bannister":3, "bannisters":3, "bannock":2, "bannockburn":3, "banquet":2, "banquette":2, "banqueted":3, "banqueter":3, "banqueting":3, "banquo":2, "bansela":3, "banshee":2, "banshie":2, "banstead":2, "bantam":2, "bantam":2, "bantamweight":3, "banteng":2, "banter":2, "banterer":3, "banteringly":4, "banthine":2, "banting":2, "banting":2, "bantingism":3, "bantoid":2, "bantu":2, "bantustan":3, "banville":2, "banyan":2, "banzai":2, "banzai attack":4, "baor":1, "bap":1, "bapt":1, "bapt":1, "baptise":2, "baptised":2, "baptism":2, "baptism of fire":4, "baptist":2, "baptiste":2, "baptistery":4, "baptistry":3, "baptising":3, "baptismal":3, "baptismally":4, "baptista":3, "baptisteries":4, "baptistery":4, "baptistic":3, "baptize":2, "baptized":2, "baptizement":3, "baptizable":4, "baptizer":3, "baptizing":3, "bar":1, "bar":1, "bar billiards":3, "bar mitzvah":3, "bar sinister":4, "barb":1, "barbe":1, "barbed":1, "barbless":2, "barbwire":2, "barclay":2, "bard":1, "bard":1, "barde":1, "bardstown":2, "barded":2, "bardic":2, "barding":2, "bardish":2, "bardier":3, "bardiest":3, "bardily":3, "bardiness":3, "bardlike":2, "bardolater":4, "bardolatry":4, "bardship":2, "bardy":2, "bare":1, "bareback":2, "barebacked":2, "barefaced":2, "barefacedly":4, "barefacedness":4, "barefisted":3, "barefoot":2, "barefooted":3, "barehanded":3, "barehead":2, "bareheaded":3, "bareheadedness":4, "bareknuckle":3, "bareknuckled":3, "barelegged":3, "barely":2, "bareness":2, "baresark":2, "barge":1, "barge couple":3, "bargeboard":2, "bargeman":2, "bargepole":2, "bargestone":2, "barging":2, "barit":1, "bark":1, "bark beetle":3, "barkantine":3, "barkentine":3, "barker":2, "barking":2, "barking deer":3, "barkier":3, "barkiest":3, "barkla":2, "barkleigh":2, "barkless":2, "barkley":2, "barky":2, "barm":1, "barmier":3, "barmiest":3, "barmy":2, "barn":1, "barn swallow":3, "barnesboro":3, "barnesville":2, "barnsley":2, "barnburner":3, "barndoor":2, "barnlike":2, "barnstock":2, "barnstorm":2, "barnstormer":3, "barnwell":2, "barnyard":2, "barque":1, "barre":1, "barred":1, "bart":1, "barth":1, "barthian":3, "barthianism":4, "bartlett":2, "bartlett pear":3, "bartley":2, "bara":2, "barabbas":3, "barac":2, "baragnosis":4, "barak":2, "barabara":4, "baraboo":3, "baranof island":5, "barathea":4, "barba":2, "barbaric":3, "barbarian":4, "barbarianism":5, "barbarianize":5, "barbarically":5, "barbarity":4, "barbate":2, "barbacan":3, "barbados":3, "barbara":3, "barbarise":3, "barbarised":3, "barbarism":3, "barbarising":4, "barbarize":3, "barbarized":3, "barbarizing":4, "barbarization":5, "barbarossa":4, "barbarous":3, "barbarously":4, "barbarousness":4, "barbary":3, "barbary ape":4, "barbary coast":4, "barbel":2, "barbell":2, "barbellate":3, "barber":2, "barber":2, "barber's itch":3, "barber-surgeon":3, "barberite":3, "barberry":3, "barbershop":3, "barberton":3, "barbet":2, "barbette":2, "barbette":2, "barbecue":3, "barbecued":3, "barbecuing":4, "barbeque":3, "barbequed":3, "barbequing":4, "barbera":3, "barbierite":3, "barbica":3, "barbican":3, "barbicel":3, "barbirolli":4, "barbital":3, "barbitalism":4, "barbitone":3, "barbiturism":4, "barbiturate":4, "barbituric":4, "barbituric acid":6, "barbizon school":4, "barbourville":3, "barbotine":3, "barbu":2, "barbule":2, "barbusse":2, "barbut":2, "barbute":2, "barbuda":3, "barbudo":3, "barca":2, "barcan":2, "barcarole":3, "barcarolle":3, "barce":2, "barcelona":4, "barcelona":4, "barchan":2, "barchane":2, "barclay de tolly":5, "barcoo river":4, "barcoo salute":4, "bardeen":2, "bardolatry":4, "bardot":2, "barents":2, "barents sea":3, "barenboim":3, "barer":2, "barest":2, "baresthesia":4, "barfly":2, "bargain":2, "bargain away":4, "bargain for":3, "bargain on":3, "bargain-basement":3, "bargainer":3, "bargee":2, "bargelli":3, "bargello":3, "barghest":2, "barhop":2, "barhopped":2, "barhopping":3, "baric":2, "baring":2, "baring":2, "barish":2, "barite":2, "baritone":3, "barium":3, "barium enema":6, "barium hydroxide":6, "barium meal":4, "barium oxide":5, "barium sulphate":5, "barkan":2, "barkantine":3, "barkeep":2, "barkeeper":3, "barkentine":3, "barkhan":2, "barlach":2, "barless":2, "barletta":3, "barley":2, "barley sugar":4, "barley water":4, "barley wine":3, "barley-bree":2, "barley-sugar":3, "barleycorn":3, "barleycorn":3, "barlow":2, "barmaid":2, "barman":2, "barmen":2, "barmecide":3, "barmecidal":4, "barmy":2, "barnard":2, "barnardo":3, "barnabas":3, "barnaby":3, "barnacle":3, "barnacle goose":4, "barnacled":3, "barnaul":3, "barnet":2, "barnett":2, "barney":2, "barney":2, "barneveldt":3, "barnum":2, "barognosis":4, "baron":2, "baron of beef":4, "baronage":3, "baroness":3, "baronet":3, "baronetage":4, "baronetcy":4, "baronetise":4, "baronetised":4, "baronetising":5, "baronetize":4, "baronetized":4, "baronetizing":5, "baronize":3, "baronized":3, "baronizing":4, "baroclinity":5, "baroclinicity":6, "barocyclonometer":7, "barogram":3, "barograph":3, "barographic":4, "barometric":4, "barometric pressure":6, "barometrically":6, "barometrograph":5, "baronetical":5, "barony":3, "baroscope":3, "baroscopic":4, "barosinusitis":6, "barostat":3, "baroswitch":3, "barothermogram":5, "barothermograph":5, "barothermohygrogram":7, "barothermohygrograph":7, "barotrauma":4, "barotraumata":5, "barotropic":4, "barquantine":3, "barquentine":3, "barquette":2, "barquisimeto":5, "barr":2, "barr":2, "barrack":2, "barracks":2, "barracker":3, "barrage":2, "barrage balloon":4, "barraged":2, "barraging":3, "barranca":3, "barrancabermeja":6, "barranco":3, "barranquilla":4, "barranquilla":4, "barrault":2, "barrable":3, "barracoon":3, "barracouta":4, "barracuda":4, "barracudina":5, "barramunda":4, "barramundi":4, "barrater":3, "barrator":3, "barratrous":3, "barratrously":4, "barratry":3, "barre":2, "barrel":2, "barrel organ":4, "barrel roll":3, "barrel vault":3, "barrel-chested":3, "barrel-roll":2, "barrel-vaulted":3, "barreled":2, "barrelled":2, "barreleye":3, "barrelfish":3, "barrelfishes":4, "barrelful":3, "barrelhead":3, "barrelhouse":3, "barrelhouses":4, "barreling":3, "barrelling":3, "barren":2, "barren lands":3, "barrens":2, "barrenly":3, "barrenness":3, "barrenwort":3, "barret":2, "barret":2, "barrett":2, "barrette":2, "barretter":3, "barretor":3, "barretry":3, "barrie":2, "barring":2, "barrington":3, "barrio":2, "barrios":2, "barrister":3, "barricade":3, "barricaded":4, "barricader":4, "barricading":4, "barricado":4, "barricadoed":4, "barricadoing":5, "barrier":3, "barrier cream":4, "barrier reef":4, "barristerial":5, "barroom":2, "barros":2, "barrow":2, "barrow":2, "barrow boy":3, "barrow point":3, "barrow-boy":2, "barrow-in-furness":3, "barrow-man":2, "barrulet":3, "barruly":3, "barry":2, "barry":2, "barry mountains":4, "barry-bendy":3, "barry-nebuly":4, "barry-pily":3, "barry-wavy":3, "barrymore":3, "barr":3, "barrs":3, "barsac":2, "barspoon":2, "barstool":2, "barstow":2, "bartend":2, "bartender":3, "barter":2, "barterer":3, "bartholdi":3, "bartholomew":4, "barthou":2, "bartholin's glands":4, "bartholomeu":5, "bartizan":3, "bartizaned":3, "bartlesville":3, "bartok":2, "barton":2, "barton":2, "bartonville":3, "bartolommeo":5, "bartolozzi":4, "bartolom":5, "bartram":2, "bartk":3, "baruch":2, "barways":2, "barwise":2, "barye":2, "barycentre":4, "baryon":3, "barysphere":3, "baryton":3, "barytone":3, "bas mitzvah":3, "bas-relief":2, "base":1, "base component":4, "base hospital":4, "base level":3, "base metal":3, "base period":4, "base-burner":2, "baseball":2, "baseboard":2, "baseborn":2, "baseburner":3, "basecoat":2, "basehearted":3, "baseless":2, "baseline":2, "baseliner":3, "basely":2, "baseman":2, "basement":2, "baseness":2, "baseplate":2, "bash":1, "bashful":2, "bashfully":3, "bashfulness":3, "bashibazouk":4, "bashkir":2, "bask":1, "basking shark":3, "basle":1, "basque":1, "basque provinces":4, "bass":1, "bass guitar":3, "bass viol":3, "basse-normandie":3, "basses-pyrnes":5, "basses-pyrn":3, "basseterre":2, "basses":2, "bassist":2, "bassly":2, "bassness":2, "basswood":2, "bassy":2, "bast":1, "baste":1, "basted":2, "baster":2, "basting":2, "bastnaesite":3, "bastnasite":3, "basalt":2, "basanite":3, "bascinet":3, "bascinet":3, "bascule":2, "baser":2, "bases":2, "basest":2, "basic":2, "basil":2, "basil":2, "basing":2, "basifixed":3, "basify":3, "basilar":3, "basilard":3, "basilary":4, "basilisk":3, "basiliscine":4, "basinet":3, "baskerville":3, "basket":2, "basket chair":3, "basket clause":3, "basket hilt":3, "basket maker":4, "basket weave":3, "basket-hilted":3, "basket-of-gold":2, "basket-star":2, "basketball":3, "basketful":3, "basketlike":3, "basketry":3, "basketwork":3, "baskin":2, "basnet":2, "basra":2, "basrah":2, "bassawn":2, "bassawing":3, "bassano":3, "bassarisk":3, "bassein":2, "bassenthwaite":3, "basset":2, "basset horn":3, "bassetts":2, "basseted":3, "basseting":3, "bassinet":3, "bassirilievi":5, "basso":2, "basso":2, "basso continuo":6, "basso profundo":5, "basso rilievo":5, "basso-relievo":4, "basso-rilievo":4, "bassoon":2, "bassoonist":3, "bastard":2, "bastard measles":4, "bastard title":4, "bastard wing":3, "bastard-saw":2, "bastardise":3, "bastardised":3, "bastardising":4, "bastardize":3, "bastardized":3, "bastardisation":5, "bastardization":5, "bastardly":3, "bastardry":3, "bastardy":3, "bastardy":3, "basti":2, "bastia":2, "bastide":2, "bastile":2, "bastille":2, "bastille":2, "bastille day":3, "bastilles":2, "bastion":2, "bastioned":2, "bastionary":4, "bastite":2, "bastia":3, "bastinade":3, "bastinaded":4, "bastinading":4, "bastinado":4, "bastinadoed":4, "bastinadoing":5, "bastion":3, "bastogne":2, "bastrop":2, "bat":1, "bat around":3, "bat mitzvah":3, "batch":1, "batch processing":4, "bate":1, "bates":1, "batesburg":2, "batesian mimicry":6, "batesville":2, "bath":1, "bath":1, "bath oliver":4, "bathe":1, "bather":2, "bathers":2, "bathhouse":2, "bathhouses":3, "bathing":2, "bathing beauty":4, "bathing costume":4, "bathing machine":4, "bathing suit":3, "bathing-machine":3, "bathinette":3, "bathless":2, "batholite":3, "batholith":3, "batholithic":4, "batholitic":4, "bathrobe":2, "bathroom":2, "bathsheba":3, "bathtub":2, "bathurst":2, "bathyal":3, "bathymetric":4, "bathymetrically":6, "bathypelagic":5, "bathyscape":3, "bathyscaph":3, "bathyscaphe":3, "bathysphere":3, "bathythermogram":5, "bathythermograph":5, "bats":1, "bats-in-the-belfry":2, "batsman":2, "batsmanship":3, "batswing":2, "batt":1, "battement":2, "bated":2, "bateleur eagle":5, "batfish":2, "batfishes":3, "batfowl":2, "batfowler":3, "bating":2, "batley":2, "batlike":2, "batman":2, "batman":2, "batna":2, "baton rouge":3, "batta":2, "battailous":3, "battalion":3, "battalion":4, "battalia":3, "batteau":2, "batted":2, "battel":2, "batteled":2, "battels":2, "batteler":3, "batteling":3, "batten":2, "battenburg":3, "battener":3, "batter":2, "battered baby":4, "batteries":3, "battering ram":4, "battersea":3, "battery":3, "battery":3, "batterie":3, "batteries":3, "battik":2, "batting":2, "batticaloa":5, "battier":3, "battiest":3, "battle":2, "battle cruiser":4, "battle cry":3, "battle fatigue":4, "battle royal":4, "battle-ax":2, "battle-axe":2, "battle-scarred":2, "battled":2, "battler":2, "battledore":3, "battledored":3, "battledoring":4, "battlefield":3, "battlefront":3, "battleground":3, "battlement":3, "battlemented":4, "battlepiece":3, "battleplane":3, "battleship":3, "battlesome":3, "battologise":4, "battologised":4, "battologist":4, "battologising":5, "battologize":4, "battologized":4, "battologizing":5, "battology":4, "battological":5, "battue":2, "battus":2, "battuta":3, "battuto":3, "batty":2, "batwing":2, "batwing sleeve":3, "batwoman":3, "baud":1, "baugh":1, "baulk":1, "baulky":2, "baum":1, "bauxite":2, "bauble":2, "baubo":2, "bauchi":2, "baucis":2, "baudekin":3, "baudelaire":3, "baudikin":3, "baudouin i":3, "baudrons":2, "bauer":2, "bauhaus":2, "bauhinia":4, "baum":2, "baumeister":3, "baum":3, "bauru":2, "bauson":2, "bausond":2, "bautzen":2, "bav":1, "bawd":1, "bawdier":3, "bawdiest":3, "bawdily":3, "bawdiness":3, "bawdry":2, "bawdy":2, "bawdyhouse":3, "bawdyhouses":4, "bawl":1, "bawler":2, "bawbee":2, "bawcock":2, "bawdry":2, "baws'nt":2, "bawtie":2, "bawty":2, "bax":1, "baxley":2, "baxter":2, "bay":1, "bay window":3, "bayle":1, "bayard":2, "bayard":2, "bayberry":3, "bayer":2, "bayern":2, "bayless":2, "bayley":2, "bayou":2, "bayonet":3, "bayoneted":4, "bayoneting":4, "bayonetted":4, "bayonetting":4, "bayport":2, "bayreuth":2, "baysmelt":2, "baytown":2, "bayville":2, "baywood":2, "bazatha":3, "baziotes":4, "baal":2, "baalim":3, "baalish":3, "baalism":3, "baalist":3, "baalistic":4, "baalite":3, "baalitical":5, "baalize":3, "baalized":3, "baalizing":4, "baba":2, "babar":2, "babassu":3, "babel":2, "babelic":3, "babelise":3, "babelised":3, "babelism":3, "babelising":4, "babelize":3, "babelized":3, "babelizing":4, "babelization":5, "baber":2, "babette":2, "babeuf":2, "babesia":3, "babesiosis":5, "babi":2, "babiche":2, "babied":2, "babies'-breath":2, "babits":2, "baboo":2, "baboon":2, "baboonery":4, "baboonish":3, "babu":2, "babul":2, "babur":2, "babushka":3, "baby":2, "baby bonus":4, "baby buggy":4, "baby carriage":4, "baby snatcher":4, "baby talk":3, "baby tooth":3, "baby's-breath":2, "baby's-slippers":3, "baby-blue-eyes":2, "baby-bouncer":3, "baby-face":2, "baby-faced":2, "baby-sit":2, "baby-sitter":3, "baby-tears":2, "baby-walker":3, "babyhood":3, "babying":3, "babyish":3, "babyishly":4, "babyishness":4, "babylike":3, "bacardi":3, "bacillar":3, "bacillary":4, "bacilli":3, "bacilliform":4, "bacillus":3, "bacis":2, "baco":2, "bacon":2, "bacon":2, "bacon-and-eggs":2, "baconer":3, "bacolod":3, "baconism":3, "baconian":4, "baconianism":5, "baculiform":4, "badakhshan":3, "badajoz":3, "badalona":4, "badarian":4, "baden":2, "baden-baden":3, "baden-powell":3, "baden-wrttemberg":5, "baden-wtemberg":4, "badigeon":3, "badinerie":4, "badoglio":3, "baez":2, "baganda":3, "bagasse":2, "bagel":2, "bagie":2, "bagio":3, "bagios":3, "bagritski":3, "baguet":2, "baguette":2, "baguio":3, "baguio":3, "baguios":3, "baha'ullah":4, "bahai":2, "bahadur":3, "bahai":3, "bahaism":3, "bahama islands":5, "bahamas":3, "bahamian":4, "bahasa indonesia":8, "bahawalpur":4, "bahia":3, "bahut":2, "bahuts":2, "bahuvrihi":4, "bahi":3, "bahsm":4, "bahist":4, "bahullah":5, "bahullh":6, "baha blanca":5, "baiae":2, "baja california":6, "baja california sur":7, "bajan":2, "bajada":3, "baker":2, "bakerlike":3, "bakelite":3, "baklava":3, "baklawa":3, "baku":2, "bakunin":3, "bala":2, "balaam":2, "balaamite":3, "balaamitical":5, "balac":2, "balak":2, "balao":2, "balaustine":3, "balakirev":4, "balarama":4, "balaton":3, "baleen":2, "baleen whale":3, "balenciaga":4, "balenciaga":5, "balestra":3, "baleares":4, "balewa":3, "bali":2, "balikpapan":4, "baline":2, "balinese":3, "baliol":3, "balius":3, "balon":2, "balochi":3, "baloney":3, "baluchi":3, "baluchistan":4, "bamako":3, "banal":2, "banality":4, "banally":3, "banana":3, "bananaland":4, "bananaquit":4, "banausic":3, "banausic":3, "banana":3, "banana belt":4, "banana bender":5, "banana oil":4, "banana republic":6, "banana split":4, "bananas":3, "banaras":3, "banares":3, "banerjea":3, "bani":2, "baobab":3, "bar":2, "baraca":3, "barat":2, "baracoa":4, "baraka":3, "baranov":3, "baraza":3, "barege":2, "bareilly":3, "barea":3, "bareli":3, "bari":2, "barih":2, "barilla":3, "barinas":3, "barocchio":3, "barometer":4, "barometry":4, "baron":2, "barong":2, "baroque":2, "barotropy":4, "barotse":3, "barotseland":4, "barouche":2, "barozzi":3, "barocius":4, "baroda":3, "baroja":3, "barolo":3, "baronial":4, "baruch":2, "barye":2, "barytic":3, "baryta":3, "barytes":3, "barytocalcite":5, "barge":3, "basad":2, "basal":2, "basal anaesthesia":7, "basal ganglia":5, "basal metabolic rate":7, "basal metabolism":6, "basalt":2, "basaltware":3, "basally":3, "basaltes":3, "basaltic":3, "basaltine":3, "basat":2, "basel":2, "basel-land":2, "basel-stadt":2, "basenji":3, "basenji":3, "bases":2, "bashan":2, "bashaw":2, "basho":2, "basic":2, "basic education":6, "basic english":4, "basic slag":3, "basic-lined":2, "basicity":4, "basidia":4, "basidial":4, "basidiosporous":6, "basidiocarp":5, "basidiomycete":6, "basidiomycetous":7, "basidiospore":5, "basidium":4, "basie":2, "basildon":3, "basilic":3, "basilic vein":4, "basilian":4, "basilica":4, "basilican":4, "basiliensis":5, "basilius":4, "basin":2, "basined":2, "basingstoke":3, "basinlike":3, "basipetal":4, "basis":2, "basitting":3, "basiate":3, "basiated":4, "basiating":4, "basiation":4, "basically":4, "basifixed":3, "basilan":3, "basilicata":5, "basion":3, "bason":2, "basophilous":4, "basov":2, "basophil":3, "basophile":3, "basophilic":4, "basotho":3, "basotho-qwaqwa":4, "bastian":3, "bastogne":2, "basuto":3, "basutoland":4, "bataan":2, "batan islands":4, "batangas":3, "batan":3, "batata":3, "batavia":4, "bateau":2, "bateleur":3, "bathetic":3, "bathilda":3, "bathometer":4, "bathos":2, "bathonian":4, "bathymeter":4, "bathymetry":4, "batik":2, "batilda":3, "batiste":2, "batista":3, "batia":3, "baton":2, "baton":2, "batrachian":4, "batum":2, "batumi":3, "batuque":3, "baul":2, "bavardage":3, "bavaria":4, "bavarian":4, "bavarian cream":5, "bawarchi":3, "baya":2, "bayar":2, "bayard":2, "bayadere":3, "bayam":3, "bayamo":3, "bayamo":3, "bayamn":4, "bayeux tapestry":5, "bayonne":2, "bazaar":2, "bazaine":2, "bazar":2, "bazin":2, "bazoo":2, "bazooka":3, "bazookaman":4, "bbc":1, "bbl":1, "bbbish":2, "bce":1, "bch":1, "bcl":1, "bda":1, "bde":1, "bdellium":3, "bdft":1, "bdl":1, "bds":1, "bds":1, "bea":1, "bea":1, "beach":1, "beach":1, "beach buggy":3, "beachboy":2, "beachboys":2, "beachcomber":3, "beacher":2, "beachhead":2, "beachie":2, "beachless":2, "beachwear":2, "beachwood":2, "beachy":2, "beachy head":3, "bead":1, "bead-ruby":2, "beadsman":2, "beadswoman":3, "beadswomen":3, "beaded":2, "beader":2, "beadeye":2, "beadflush":2, "beadhouse":2, "beadhouses":3, "beading":2, "beadier":3, "beadiest":3, "beadily":3, "beadiness":3, "beadlike":2, "beadroll":2, "beadwork":2, "beady":2, "beak":1, "beaker":2, "beaker folk":3, "beakless":2, "beaklike":2, "beaky":2, "beal":1, "beam":1, "beam aerial":4, "beam compass":3, "beam riding":3, "beaming":2, "beamingly":3, "beamish":2, "beamier":3, "beamiest":3, "beamily":3, "beaminess":3, "beamless":2, "beamlike":2, "beamy":2, "bean":1, "bean caper":3, "beanbag":2, "beaneries":3, "beanery":3, "beanfeast":2, "beanfest":2, "beanie":2, "beanlike":2, "beano":2, "beanos":2, "beanpole":2, "beanshooter":3, "beanstalk":2, "beany":2, "bear":1, "bear":1, "bear garden":3, "bear's-breeches":2, "bear-baiting":2, "bear-leader":2, "beard":1, "beard":1, "beardsley":2, "beardstown":2, "bearded":2, "bearded lizard":4, "bearded tit":3, "bearded vulture":4, "beardfish":2, "beardfishes":3, "bearding":2, "beardless":2, "beardlessness":3, "beardlike":2, "beardtongue":2, "bearable":3, "bearableness":4, "bearably":3, "bearbaiter":3, "bearbaiting":3, "bearberry":3, "bearbush":2, "bearcat":2, "bearer":2, "bearer":2, "bearing":2, "bearing rein":3, "bearings":2, "bearish":2, "bearishly":3, "bearishness":3, "bearlike":2, "bearpaw":2, "bearskin":2, "bearwood":2, "beast":1, "beast of burden":4, "beastie":2, "beastings":2, "beastlike":2, "beastlier":3, "beastliest":3, "beastliness":3, "beastly":2, "beat":1, "beat generation":5, "beat-up":1, "beatable":3, "beaten":2, "beater":2, "beating":2, "beating-up":2, "beatles":2, "beatnik":2, "beattie":2, "beatty":2, "beau":1, "beau ideal":4, "beaune":1, "beaut":1, "beaux":1, "beaux-esprits":2, "beaufort":2, "beaufort scale":3, "beaufort sea":3, "beaugregory":4, "beauharnais":3, "beauish":2, "beaujolais":3, "beaujolais":3, "beaumarchais":3, "beaumont":2, "beauregard":3, "beauteous":3, "beauteously":4, "beauteousness":4, "beautician":3, "beautified":3, "beautification":5, "beautifier":4, "beautiful":3, "beautifully":4, "beautifulness":4, "beautify":3, "beautifying":4, "beauty":2, "beauty queen":3, "beauty salon":4, "beauty sleep":3, "beauty spot":3, "beauty-bush":2, "beauvais":2, "beauvoir":2, "beacon":2, "beaconsfield":3, "beaconage":3, "beaconless":3, "beadle":2, "beadle":2, "beadledom":3, "beagle":2, "beagling":2, "beaton":2, "beaver":2, "beaver":2, "beaver-tree":2, "beaverboard":3, "beaverbrook":3, "beaverette":3, "beaverish":3, "beaverlike":3, "beaverton":3, "bebington":3, "bebryces":3, "bechet":2, "bechuana":3, "bechuanaland":4, "bechuana":4, "bechuanaland":5, "beck":1, "beck":1, "becker":2, "becket":2, "becket":2, "becket bend":3, "beckett":2, "beckford":2, "beckley":2, "beckmann":2, "beckon":2, "beckoner":3, "beckoningly":4, "becky":2, "beccafico":4, "becquerel":3, "bed":1, "bed":1, "bed and breakfast":4, "bed moulding":3, "bed-sitter":2, "bed-wetting":2, "bede":1, "bedesman":2, "bedeswoman":3, "bedeswomen":3, "bedehouse":2, "bedehouses":3, "bedeman":2, "beds":1, "bedbug":2, "bedchamber":3, "bedclothes":2, "bedclothing":3, "bedcover":3, "beddable":3, "bedded":2, "bedder":2, "bedding":2, "bedding plant":3, "beddoes":2, "bedegar":3, "bedeguar":3, "bedfast":2, "bedfellow":3, "bedford":2, "bedford cord":3, "bedfordshire":3, "bedframe":2, "bedivere":3, "bedlam":2, "bedlamp":2, "bedlamise":3, "bedlamised":3, "bedlamising":4, "bedlamite":3, "bedlamize":3, "bedlamized":3, "bedlamizing":4, "bedless":2, "bedlight":2, "bedlike":2, "bedlington":3, "bedlington terrier":6, "bedlingtonshire":4, "bedloe island":4, "bedloe's island":4, "bedmaker":3, "bedmaking":3, "bedmate":2, "bedouin":3, "bedouinism":4, "bedpad":2, "bedpan":2, "bedplate":2, "bedpost":2, "bedquilt":2, "bedrail":2, "bedrid":2, "bedridden":3, "bedrock":2, "bedroll":2, "bedroom":2, "bedside":2, "bedsitter":3, "bedsock":2, "bedsore":2, "bedspread":2, "bedspring":2, "bedstand":2, "bedstead":2, "bedstraw":2, "bedtick":2, "bedtime":2, "beduin":3, "bedward":2, "bedwards":2, "bedwarmer":3, "bedworth":2, "bee":1, "bee":1, "bee beetle":3, "bee killer":3, "bee orchid":3, "bee-eater":2, "beeb":1, "beech":1, "beechdrops":2, "beechen":2, "beechnut":2, "beechwood":2, "beechy":2, "beef":1, "beef stroganoff":4, "beef-witted":2, "beef-wittedly":3, "beef-wittedness":3, "beefburger":3, "beefburger":3, "beefcake":2, "beefeater":3, "beefier":3, "beefiest":3, "beefily":3, "beefiness":3, "beefless":2, "beefsteak":2, "beefwood":2, "beefy":2, "beek":1, "been":1, "beento":2, "beep":1, "beeper":2, "beer":1, "beer":1, "beer and skittles":4, "beer-up":1, "beers":1, "beerbohm":2, "beerhouse":2, "beerhouses":3, "beerier":3, "beeriest":3, "beeriness":3, "beernaert":2, "beerpull":2, "beersheba":3, "beery":2, "beestings":2, "beeswax":2, "beeswing":2, "beet":1, "beet sugar":3, "beetfly":2, "beetlike":2, "beetroot":2, "beeves":1, "beebe":2, "beebread":2, "beecham":2, "beecher":2, "beedi":2, "beehive":2, "beehive house":3, "beekeeper":3, "beekeeping":3, "beelike":2, "beeline":2, "beestride":2, "beethoven":3, "beetle":2, "beetle-browed":2, "beetle-crusher":3, "beetler":2, "beetlehead":3, "beetleheaded":4, "beezer":2, "bef":1, "beg":1, "beggar":2, "beggar's-lice":2, "beggar's-tick":2, "beggar's-ticks":2, "beggar-my-neighbour":3, "beggar-tick":2, "beggar-ticks":2, "beggardom":3, "beggarhood":3, "beggaries":3, "beggarlice":3, "beggarliness":4, "beggarly":3, "beggarweed":3, "beggary":3, "beggiatoa":4, "beghard":2, "begin":2, "beguin":2, "beguine":2, "behrman":2, "behan":2, "behmen":2, "behmenism":3, "behmenist":3, "behmenite":3, "behrens":2, "behring":2, "beige":1, "beiderbecke":3, "beigel":2, "beira":2, "beirut":2, "bejel":2, "bel":1, "bel":1, "bel canto":3, "bel esprit":3, "bel paese":4, "bel-ami":2, "bel-esprit":2, "belch":1, "belcher":2, "beld":1, "belg":1, "bell":1, "bell":1, "bell heather":3, "bell magpie":3, "bell metal":3, "bell-bottom":2, "bell-bottomed":2, "bell-bottoms":2, "bell-ringer":2, "belle":1, "belle":1, "belle poque":3, "belles-lettres":2, "bellefonte":2, "belleville":2, "bellevue":2, "bells of ireland":4, "bellbird":2, "bellboy":2, "bellflower":3, "bellflower":3, "bellhop":2, "bellman":2, "bellmead":2, "bellpull":2, "bellwether":3, "bellwood":2, "bellwort":2, "belt":1, "beltcourse":2, "belted":2, "belting":2, "beltless":2, "beltline":2, "beltman":2, "beltway":2, "belafonte":4, "belatrix":3, "beldam":2, "beldame":2, "belding":2, "belemnite":3, "belfast":2, "belflopped":2, "belflopping":3, "belfort":2, "belfry":2, "belga":2, "belgae":2, "belgaum":2, "belgian":2, "belgian congo":4, "belgian hare":3, "belgic":2, "belgique":2, "belgium":2, "belgorod-dnestrovski":5, "belgorod-dnestrovsky":5, "belgrade":2, "belgrano":3, "belgravia":4, "belgravian":4, "belisarius":5, "belisarius":5, "bella":2, "bellaire":2, "bellarmine":3, "bellay":2, "belladonna":4, "belladonna lily":6, "bellamy":3, "bellatrix":3, "belleau wood":3, "belleek":2, "bellerophon":4, "bellerophontes":5, "bellerophontic":5, "belletrist":3, "belletristic":4, "bellied":2, "belligerence":4, "belligerent":4, "belligerently":5, "belligerency":5, "bellingshausen sea":5, "bellingham":3, "bellinzona":4, "bellicose":3, "bellicosely":4, "bellicosity":5, "bellini":3, "belloc":2, "bellot":2, "bellotto":3, "bellow":2, "bellow":2, "bellows":2, "bellows":2, "bellows fish":3, "bellowslike":3, "bellower":3, "bellona":3, "bellonian":4, "belly":2, "belly ache":3, "belly dance":3, "belly flop":3, "belly landing":4, "belly laugh":3, "belly-flop":2, "belly-helve":2, "belly-land":2, "belly-landing":3, "belly-wash":2, "belly-whop":2, "bellyache":3, "bellyached":3, "bellyacher":4, "bellyband":3, "bellybutton":4, "bellyful":3, "bellylike":3, "belmar":2, "belmond":2, "belmont":2, "belmondo":3, "belmonte":3, "belmopan":3, "belomancy":4, "belonoid":3, "belpre":2, "belsen":2, "belshazzar":3, "beltane":2, "belteshazzar":4, "belton":2, "beltrami":3, "belvedere":3, "belvidere":3, "belwhopped":2, "belwhopping":3, "belzoni":3, "bem":1, "bemba":2, "bemberg":2, "ben":1, "ben":1, "ben bella":3, "ben day process":4, "ben lomond":3, "ben nevis":3, "ben-gurion":3, "ben-gurion":2, "ben-zvi":1, "bench":1, "bench warrant":3, "bench-warmer":2, "bencher":2, "benchless":2, "benchley":2, "benchmark":2, "benchwarmer":3, "bend":1, "bend":1, "bend sinister":4, "bends":1, "bendable":3, "bended":2, "bender":2, "bendies":2, "bending":2, "bendlet":2, "bendways":2, "bendwise":2, "bendy":2, "bene":1, "beng":1, "beng":1, "benn":1, "bent":1, "bentley":2, "bentleyville":3, "bentwood":2, "benzaldehyde":4, "benadryl":3, "benbow":2, "benbrook":2, "benda":2, "bendee":2, "bendel":2, "bendigo":3, "bene":2, "benet":2, "benedick":3, "benedict":3, "benedict":3, "benedict xv":4, "benedicite":5, "benedicta":4, "benedictine":4, "benediction":4, "benedictional":5, "benedictionale":6, "benedictory":5, "benedictus":4, "benedicite":5, "benedicite":5, "benefaction":4, "benefactor":4, "benefactress":4, "benefice":3, "beneficed":3, "beneficeless":4, "benefit":3, "benefit":3, "benefit association":8, "benefit of clergy":6, "benefited":4, "benefiter":4, "beneficial":4, "beneficially":5, "beneficialness":5, "beneficiary":5, "beneficiaries":6, "beneficiary":6, "beneficiate":5, "beneficiated":6, "beneficiating":6, "benelux":3, "benemid":3, "benfleet":2, "bengal":2, "bengal light":3, "bengalese":3, "bengali":3, "bengaline":3, "bengasi":3, "benghazi":3, "benguela":3, "benison":3, "benjamin":3, "benjamin":3, "benjamin-bush":3, "benjamin-constant":4, "benjaminite":4, "benjamite":3, "benjy":2, "benmost":2, "benne":2, "bennet":2, "bennet":2, "bennett":2, "bennettsville":3, "bennie":2, "bennington":3, "bennu":2, "benny":2, "benny":2, "bensenville":3, "benson":2, "benthal":2, "bentham":2, "benthamic":3, "benthamism":3, "benthamite":3, "benthic":2, "benthon":2, "benthonic":3, "benthos":2, "bentinck":2, "benton":2, "bentonite":3, "bentonville":3, "benu":2, "benvenuto":4, "benwood":2, "benzal":2, "benzalacetone":5, "benzaldehyde":4, "benzamine":3, "benzene":2, "benzene hexachloride":6, "benzene ring":3, "benzeneazobenzene":6, "benzedrine":3, "benzin":2, "benzine":2, "benzidine":3, "benzol":2, "benzole":2, "benzonitrile":4, "benzoate":3, "benzoate of soda":6, "benzocaine":3, "benzofuran":4, "benzoic":3, "benzoic acid":5, "benzoin":3, "benzophenone":4, "benzoquinone":4, "benzosulfimide":5, "benzotrichloride":5, "benzotrifluoride":6, "benzoyl":3, "benzoylate":4, "benzoylated":5, "benzoylating":5, "benzoylation":5, "benzyl":2, "benzylic":3, "benzylidene":4, "berchta":2, "berchtesgaden":4, "berg":1, "berg":1, "bergsma":2, "bergdama":3, "bergman":2, "bergschrund":2, "bergson":2, "bergsonism":3, "berk":1, "berkeley":2, "berkeleian":3, "berkeleianism":4, "berks":1, "berkley":2, "berkshire":2, "berl":1, "berm":1, "berme":1, "bern":1, "berne":1, "bernhard":2, "bernhardt":2, "bernhardi":3, "bernis":2, "bernstein":2, "bernstorff":2, "bert":1, "berth":1, "berthage":2, "bertie":2, "berber":2, "berbera":3, "berberine":3, "berberis":3, "berberidaceous":5, "berberidaceous":5, "berbice chair":3, "berceuse":2, "bercy":2, "berdache":2, "berdichev":3, "berdyaev":3, "berdyayev":3, "berenson":3, "beresford":3, "beretta":3, "berecyntia":5, "berenice":4, "bergall":2, "bergama":3, "bergamasca":4, "bergamee":3, "bergamo":3, "bergamot":3, "bergen":2, "bergen-belsen":3, "bergenfield":3, "bergerac":3, "bergin":2, "bergius":2, "bergius":3, "bergre":3, "bering":2, "bering sea":3, "bering strait":3, "beriosova":4, "beriberi":4, "beriberic":4, "berkelium":4, "berlen":2, "berley":2, "berlichingen":4, "berlin":2, "berlin":2, "berline":2, "berliner":3, "berlinguer":3, "berliner":3, "berlioz":3, "berlon":2, "berlyne":2, "berman":2, "bermejo":3, "bermuda":3, "bermuda grass":4, "bermuda rig":4, "bermuda shorts":4, "bermudan":3, "bermudas":3, "bermudian":4, "berna":2, "bernard":2, "bernard of clairvaux":5, "bernardsville":3, "bernardine":3, "bernardo":3, "bernadette":3, "bernadine":3, "bernadotte":3, "bernalillo":4, "bernanos":3, "bernese":2, "bernese alps":3, "bernette":2, "bernice":2, "bernie":2, "bernicle goose":4, "bernina":3, "bernina pass":4, "bernini":3, "bernouilli":3, "bernoulli":3, "bernoulli's principle":6, "bernoullian":4, "bero":4, "berretta":3, "berri":2, "berried":2, "berry":2, "berry":2, "berryless":3, "berrylike":3, "berryman":3, "bersagliere":4, "bersaglieri":4, "berseem":2, "berserk":2, "berserker":3, "berta":2, "bertaud":2, "bertha":2, "bertha":2, "berthold":2, "bertillon":3, "bertillon system":5, "bertina":3, "bertoia":3, "bertold":2, "bertolt":2, "berton":2, "bertolucci":4, "bertram":2, "bertrand":2, "bertrant":2, "berwick":2, "berwick-upon-tweed":3, "berwickshire":3, "berwyn":2, "beryl":2, "beryl":2, "beryline":3, "berzelius":4, "bes":1, "bess":1, "best":1, "best":1, "best seller":3, "best-selling":2, "besant":2, "besague":3, "besier":2, "bessarion":4, "bessarabia":5, "bessarabian":5, "bessel":2, "bessemer":3, "bessemer converter":6, "bessemer process":5, "bessie":2, "bessy":2, "bessye":2, "bestial":2, "bestialise":3, "bestialised":3, "bestialising":4, "bestialize":3, "bestialized":3, "bestializing":4, "bestially":3, "bestial":3, "bestialise":4, "bestialize":4, "bestiality":5, "bestiaries":4, "bestiary":4, "bestiarist":4, "bet":1, "bete":1, "beth":1, "beth":1, "bethalto":3, "bethany":3, "bethel":2, "bethel":2, "bethlehem":3, "bethmann hollweg":4, "bethmann-hollweg":3, "bethroot":2, "bethsaida":3, "bethsabee":4, "bethsaida":4, "bett":1, "betancourt":3, "betafite":3, "betjeman":3, "betony":3, "betsey":2, "betsi":2, "betsy":2, "betta":2, "betta":2, "betted":2, "better":2, "better half":3, "betterment":3, "betterton":3, "betti":2, "betting":2, "betting shop":3, "bettina":3, "bettinus":3, "bettor":2, "betty":2, "betty":2, "betulaceous":4, "beulah":2, "beuthen":2, "bev":1, "bevan":2, "bevatron":3, "bevel":2, "bevel gear":3, "bevel square":3, "beveled":2, "bevelled":2, "beveler":3, "beveling":3, "bevelling":3, "bever":2, "beverage":3, "beveridge":3, "beverley":3, "beverly":3, "beverly hills":4, "beveridge":3, "bevies":2, "bevilled":2, "bevin":2, "bevor":2, "bevvy":2, "bevy":2, "bewick":2, "bexley":2, "bey":1, "beyle":1, "beylic":2, "beyo":2, "beyoglu":3, "beyrouth":2, "bezant":2, "bezel":2, "bezwada":3, "bezzant":2, "beatified":4, "beatification":6, "beatify":4, "beatifying":5, "beatitude":4, "beatitude":4, "beata":3, "beatific":4, "beatifically":6, "beatrice":3, "beatus":3, "bebe":2, "bebeerine":3, "bebeeru":3, "bebel":2, "bebop":2, "bebopper":3, "becalm":2, "becalmed":2, "became":2, "because":2, "bechance":2, "bechanced":2, "bechancing":3, "becharm":2, "beclasp":2, "becloud":2, "become":2, "becoming":3, "becomingly":4, "becomingness":4, "becrawl":2, "becripple":3, "bedabble":3, "bedash":2, "bedaub":2, "bedazzle":3, "bedazzlement":4, "bedazzlingly":4, "bedeck":2, "bedel":2, "bedell":2, "bedevil":3, "bedeviled":3, "bedevilled":3, "bedeviling":4, "bedevilment":4, "bedew":2, "bedight":2, "bedighted":3, "bedighting":3, "bedim":2, "bedimmed":2, "bedimming":3, "bedizen":3, "bedizenment":4, "bedrabble":3, "bedraggle":3, "bedrench":2, "beelzebub":4, "befall":2, "befallen":3, "befell":2, "befit":2, "befitted":3, "befitting":3, "befittingly":4, "befittingness":4, "beflag":2, "beflagged":2, "beflagging":3, "befog":2, "befogged":2, "befogging":3, "befool":2, "before":2, "beforehand":3, "beforetime":3, "befoul":2, "befouler":3, "befoulment":3, "befriend":2, "befuddle":3, "befuddler":3, "befuddlement":4, "begad":2, "began":2, "begar":2, "begat":2, "begats":2, "begabled":3, "begem":2, "begemmed":2, "begemming":3, "beget":2, "begetter":3, "begetting":3, "begin":2, "beginner":3, "beginning":3, "begird":2, "begirded":3, "begirding":3, "begone":2, "begonia":3, "begorah":3, "begorra":3, "begorrah":3, "begot":2, "begotten":3, "begrime":2, "begrimed":2, "begriming":3, "begrudge":2, "begrudged":2, "begrudging":3, "begrudgingly":4, "beguile":2, "beguiled":2, "beguilement":3, "beguiler":3, "beguiling":3, "beguin":2, "beguine":2, "begum":2, "begummed":2, "begumming":3, "begun":2, "behaim":2, "behalf":2, "behan":2, "behar":2, "behave":2, "behaved":2, "behavior":3, "behavioral":4, "behaviorally":5, "behaviorism":4, "behaviorist":4, "behavioristic":5, "behavioristically":7, "behaviour":3, "behaviour therapy":6, "behavioural science":6, "behead":2, "beheadal":3, "beheader":3, "beheld":2, "behenic":3, "behest":2, "behemoth":3, "behind":2, "behindhand":3, "behistun":3, "behold":2, "beholdable":4, "beholden":3, "beholder":3, "beholding":3, "behoof":2, "behoove":2, "behooved":2, "behooving":3, "behove":2, "being":2, "bejabbers":3, "bejabers":3, "bejewel":3, "bejeweled":3, "bejewelled":3, "bejeweling":4, "bejewelling":4, "bel":2, "bela":2, "belah":2, "belar":2, "belasco":3, "belat":2, "belated":3, "belatedly":4, "belatedness":4, "belaud":2, "belauder":3, "belay":2, "belayed":2, "belaying":3, "belaying pin":4, "belabor":3, "belabour":3, "belande":5, "beleaguer":3, "beleaguerer":4, "belection":3, "belen":2, "belie":2, "belied":2, "belief":2, "believe":2, "believed":2, "believability":6, "believable":4, "believableness":5, "believably":4, "believer":3, "believingly":4, "belike":2, "belinda":3, "belittle":3, "belittler":3, "belittlement":4, "belive":2, "belize":2, "belial":3, "belier":3, "belisha beacon":5, "belitoeng":3, "belitong":3, "belitung":3, "bello":2, "belo horizonte":6, "beloid":2, "beloit":2, "belong":2, "belonging":3, "belongings":3, "belostok":3, "belove":2, "beloved":3, "below":2, "belowdecks":3, "belowground":3, "belorussia":4, "belorussian":4, "belovo":3, "belus":2, "beluga":3, "bely":2, "belying":3, "belm":3, "bema":2, "bemaul":2, "bemazed":2, "bemata":3, "bemean":2, "bemeaned":2, "bemeaning":3, "bemelmans":3, "bemidji":3, "bemire":2, "bemired":2, "bemirement":3, "bemiring":3, "bemis":2, "bemoan":2, "bemoaningly":4, "bemock":2, "bemuddle":3, "bemuse":2, "bemused":2, "bemusement":3, "bemusedly":4, "bemusing":3, "bename":2, "benaming":3, "benares":3, "benares":3, "bene":2, "beneaped":2, "beneath":2, "benefic":3, "beneficence":4, "beneficent":4, "beneficently":5, "benempt":2, "benempted":3, "benetta":3, "benevolence":4, "benevolent":4, "benevolently":5, "benevolentness":5, "benedetto":4, "benevento":4, "beni":2, "beni hasan":4, "beniamino":4, "benighted":3, "benightedness":4, "benign":2, "benignly":3, "benignant":3, "benignantly":4, "benignancy":4, "benignity":4, "benin":2, "benin city":4, "benicia":3, "benita":3, "benito":3, "benitoite":4, "beno":2, "benot":3, "benoni":3, "benue":2, "benue-congo":3, "benumb":2, "benumbedness":3, "benumbingly":4, "benumbment":3, "benue":3, "benue-congo":4, "bent":3, "beograd":3, "beowulf":3, "bepaint":2, "bequeath":2, "bequeathal":3, "bequeathable":4, "bequeather":3, "bequest":2, "berar":2, "berascal":3, "berate":2, "berated":3, "berating":3, "bereave":2, "bereavement":3, "bereaver":3, "bereaving":3, "bereft":2, "beret":2, "berets":2, "berezniki":4, "berea":3, "berean":3, "berezina":4, "berhyme":2, "berhymed":2, "berhyming":3, "beribboned":3, "berime":2, "berimed":2, "beriming":3, "berio":2, "berit":2, "berith":2, "beria":3, "beriosova":5, "berosus":3, "beryllium":4, "beryllonite":4, "besant":2, "besancon":3, "besanon":4, "bescreen":2, "bescribble":3, "beseech":2, "beseeched":2, "beseecher":3, "beseeching":3, "beseechingly":4, "beseechingness":4, "beseem":2, "beseleel":4, "beset":2, "besetment":3, "besetter":3, "besetting":3, "beshow":2, "beshrew":2, "beside":2, "besides":2, "besiege":2, "besieged":2, "besiegement":3, "besieger":3, "besieging":3, "besiegingly":4, "beslobber":3, "besmear":2, "besmearer":3, "besmirch":2, "besmircher":3, "besom":2, "besot":2, "besotted":3, "besottedly":4, "besottedness":4, "besotting":3, "besottingly":4, "besought":2, "bespake":2, "bespangle":3, "bespatter":3, "bespeak":2, "bespeaking":3, "bespectacled":4, "bespoke":2, "bespoken":3, "bespread":2, "bespreading":3, "besprent":2, "besprinkle":3, "bestead":2, "besteaded":3, "besteading":3, "bestir":2, "bestirred":2, "bestirring":3, "bestow":2, "bestowal":3, "bestowment":3, "bestraddle":3, "bestrew":2, "bestrewn":2, "bestrewing":3, "bestrid":2, "bestride":2, "bestridden":3, "bestriding":3, "bestrow":2, "bestrowed":2, "bestrowing":3, "bestud":2, "bestudded":3, "bestudding":3, "beta":2, "beta":2, "beta decay":4, "beta globulin":5, "beta iron":4, "beta particle":5, "beta ray":3, "beta rhythm":3, "beta-eucaine":3, "beta-naphthol":3, "beta-naphthylamine":5, "betake":2, "betaken":3, "betaking":3, "betacaine":3, "betain":3, "betaine":3, "betatron":3, "betel":2, "betel nut":3, "betel palm":3, "betelgeuse":3, "betelgeux":3, "bethe":2, "bethesda":3, "bethink":2, "bethinking":3, "bethought":2, "betide":2, "betided":3, "betiding":3, "betimes":2, "betook":2, "betoken":3, "betray":2, "betrayal":3, "betrayer":3, "betroth":2, "betrothed":2, "betrothal":3, "betrothment":3, "between":2, "between-deck":2, "between-maid":2, "betweenbrain":3, "betweenness":3, "betweentimes":3, "betweenwhiles":3, "betwixt":2, "bever":2, "bewail":2, "bewailingly":4, "bewailment":3, "beware":2, "bewared":2, "bewaring":3, "beweep":2, "beweeping":3, "bewept":2, "bewhiskered":3, "bewigged":2, "bewilder":3, "bewilderedly":4, "bewilderingly":5, "bewilderment":4, "bewitch":2, "bewitcher":3, "bewitchery":4, "bewitchingly":4, "bewitchingness":4, "bewitchment":3, "bewray":2, "bewrayer":3, "beyond":2, "beyondness":3, "bezae":2, "bezaleel":4, "bezaleelian":6, "bezanty":3, "bezique":2, "bezoar":2, "bezonian":4, "bhadgaon":2, "bhai":1, "bhakta":2, "bhakti":2, "bhaktimarga":4, "bhang":1, "bhangi":2, "bharal":2, "bhatpara":3, "bhaunagar":3, "bhavnagar":3, "bhabha":2, "bhagalpur":3, "bhagavad-gita":4, "bhajan":2, "bharat":2, "bharat natyam":4, "bharatiya":4, "bhavan":2, "bhavabhuti":4, "bhave":2, "bhawan":2, "bheestie":2, "bheesty":2, "bhikku":2, "bhikkuni":3, "bhikshu":2, "bhil":1, "bhindi":2, "bhishti":2, "bhili":2, "bhoodan":2, "bhopal":2, "bhp":1, "bhungi":2, "bhut":1, "bhutto":2, "bhubaneswar":4, "bhudan":2, "bhutan":2, "bhutanese":3, "bhutatathata":5, "bi-bivalent":3, "bianca":2, "bianchini":2, "bianco":2, "biarritz":2, "bialik":2, "bialy":2, "bialystok":3, "bib":1, "bib":1, "bib and tucker":4, "bibb":1, "bibl":1, "bibl":1, "bibliog":1, "bibber":2, "bibbiena":3, "bibbing":2, "bibcock":2, "bibless":2, "biblike":2, "biblism":2, "biblist":2, "biblical":3, "biblical":3, "biblical aramaic":7, "biblical latin":5, "biblically":4, "biblically":4, "biblicism":3, "biblicist":3, "biblicistic":4, "bibliogony":5, "bibliographer":5, "bibliography":5, "bibliolater":5, "bibliolatrist":5, "bibliolatrous":5, "bibliolatry":5, "bibliologist":5, "bibliology":5, "bibliophagous":5, "bibliophilism":5, "bibliophilist":5, "bibliophilistic":6, "bibliophily":5, "bibliopegist":5, "bibliopegistic":6, "bibliopegistical":7, "bibliopegy":5, "bibliopolism":5, "bibliopolist":5, "bibliopolistic":6, "bibliotic":4, "bibliotics":4, "biblioclasm":4, "biblioclast":4, "bibliofilm":4, "bibliogenesis":6, "bibliographic":5, "bibliographically":7, "biblioklept":4, "bibliological":6, "bibliomancy":5, "bibliomania":6, "bibliomaniac":6, "bibliomaniacal":7, "bibliopegic":5, "bibliophage":4, "bibliophil":4, "bibliophile":4, "bibliophilic":5, "bibliophobe":4, "bibliophobia":6, "bibliopole":4, "bibliopolic":5, "bibliopolically":7, "bibliotaph":4, "bibliotaphe":4, "bibliotaphic":5, "bibliotherapeutic":7, "bibliotherapist":6, "bibliotherapy":6, "bibliotheca":5, "bibliothecal":5, "bibliotist":4, "bibulosity":5, "bibulous":3, "bibulously":4, "bibulousness":4, "bice":1, "bick-iron":2, "bicker":2, "bickerer":3, "bickering":3, "bicknell":2, "bid":1, "bide":1, "biddability":5, "biddable":3, "biddableness":4, "biddably":3, "bidden":2, "bidder":2, "biddeford":3, "bidding":2, "biddle":2, "biddy":2, "biddy":2, "biddy-biddy":3, "bided":2, "bider":2, "biding":2, "biel":1, "bield":1, "bielsko-biala":3, "bien hoa":3, "bienne":1, "bienvenu":3, "bienvenue":3, "bienville":2, "bier":1, "bierce":1, "bierkeller":3, "bierstube":3, "biestings":2, "biedermeier":4, "biela":2, "bielersee":3, "bielefeld":3, "biff":1, "biffin":2, "bifrost":2, "big":1, "big bertha":3, "big brother":3, "big business":3, "big dipper":3, "big dipper":3, "big-bang theory":4, "big-hearted":2, "big-leaguer":2, "big-timer":2, "bigg":1, "biggs":1, "bight":1, "bigarreau":3, "bigarreau":3, "bigamist":3, "bigamistic":4, "bigamistically":6, "bigamous":3, "bigamously":4, "bigamy":3, "bigeye":2, "bigger":2, "biggest":2, "biggie":2, "biggin":2, "bigging":2, "biggish":2, "biggon":2, "biggy":2, "bighead":2, "bigheaded":3, "bigheartedly":4, "bighorn":2, "bighorn":2, "bighorns":2, "bigly":2, "bigmouth":2, "bigness":2, "bignonia":4, "bignoniaceous":5, "bigot":2, "bigoted":3, "bigotedly":4, "bigotry":3, "bigtha":2, "bigwig":2, "bigwigged":2, "bigwiggedness":4, "bihzad":2, "biisk":1, "bike":1, "bikie":2, "biking":2, "bildungsroman":4, "bile":1, "bilestone":2, "bilge":1, "bilgeway":2, "bilging":2, "bilgier":3, "bilgiest":3, "bilgy":2, "bilk":1, "bilker":2, "bill":1, "bill":1, "bill of adventure":5, "bill of attainder":5, "bill of exchange":4, "bill of indictment":5, "bill of lading":4, "bill-broker":2, "billboard":2, "billbug":2, "biller":2, "billfish":2, "billfishes":3, "billfold":2, "billhead":2, "billhook":2, "billing":2, "billman":2, "billposter":3, "billposting":3, "billroth":2, "billsticker":3, "billsticking":3, "billyo":3, "billyoh":3, "bilander":3, "bilbao":3, "bilberry":3, "bilbi":2, "bilbo":2, "bilboes":2, "bilby":2, "bildad":2, "bilhah":2, "bilharzia":4, "bilharziasis":5, "bilharziosis":5, "bilious":2, "biliously":3, "biliousness":3, "biliary":4, "bilious":3, "bilirubin":4, "biliverdin":4, "billable":3, "billabong":3, "billet":2, "billet-doux":2, "billets-doux":2, "billeted":3, "billeter":3, "billethead":3, "billeting":3, "billety":3, "billiard":2, "billiards":2, "billiardist":3, "billie":2, "billings":2, "billingsgate":3, "billingsgate":3, "billion":2, "billionth":2, "billionaire":3, "billiton":3, "billon":2, "billow":2, "billows":2, "billowier":4, "billowiest":4, "billowiness":4, "billowy":3, "billy":2, "billy":2, "billy goat":3, "billy the kid":4, "billye":2, "billyboy":3, "billycan":3, "billycock":3, "bilsted":2, "biltong":2, "bim":1, "bim":1, "bimanous":3, "bimbo":2, "bin":1, "bind":1, "bind over":3, "bindable":3, "binder":2, "binderies":3, "bindery":3, "bindheimite":3, "binding":2, "binding energy":5, "bindingly":3, "bindingness":3, "bindweed":2, "bine":1, "bing":1, "bing":1, "binge":1, "bingen":2, "bingham":2, "binghamton":3, "binghi":2, "binhdinh":2, "bint":1, "binaural":3, "binchois":2, "binder":2, "bindi-eye":2, "bindle":2, "bingey":2, "binghi":2, "bingle":2, "bingo":2, "bingy":2, "binnacle":3, "binning":2, "binocular":4, "binoculars":4, "binocularity":6, "binocularly":5, "binocle":3, "binturong":3, "binyon":2, "biog":1, "biol":1, "biparous":3, "birch":1, "birchen":2, "bircher":2, "birches":2, "birchism":2, "birchite":2, "bird":1, "bird":1, "bird cherry":3, "bird of paradise":5, "bird of passage":4, "bird pepper":3, "bird spider":3, "bird table":3, "bird's-foot trefoil":3, "bird's-nest fungus":3, "bird's-nest orchid":3, "bird-nesting":2, "bird-watcher":2, "birds'-nesting":2, "birdsboro":3, "birdbath":2, "birdbrain":2, "birdbrained":2, "birdcage":2, "birdcall":2, "birder":2, "birdhouse":2, "birdhouses":3, "birdie":2, "birdie":2, "birdied":2, "birdieing":3, "birdless":2, "birdlike":2, "birdlime":2, "birdlimed":2, "birdliming":3, "birdman":2, "birdseed":2, "birdwoman":3, "birdwomen":3, "birk":1, "birkbeck":2, "birken":2, "birkhoff":2, "birl":1, "birle":1, "birling":2, "birr":1, "birse":1, "birt":1, "birth":1, "birth certificate":5, "birth control":3, "birthday":2, "birthday honors":4, "birthday suit":3, "birthmark":2, "birthnight":2, "birthplace":2, "birthright":2, "birthroot":2, "birthstone":2, "birthstool":2, "birthwort":2, "birtwhistle":3, "birdell":2, "birgit":2, "birkenhead":3, "birkie":2, "birmingham":3, "birne":2, "birrell":2, "birretta":3, "birri":2, "birrus":2, "bis":1, "bise":1, "bish":1, "bishop":2, "bishop":2, "bishop auckland":4, "bishop sleeve":3, "bishop's mitre":4, "bishop's weed":3, "bishop's-cap":2, "bishop's-weed":2, "bishoped":2, "bishopbird":3, "bishoping":3, "bishopless":3, "bishoplike":3, "bishopric":3, "bishopville":3, "bisk":1, "bisk":1, "bisque":1, "bist":1, "bisbee":2, "biscay":2, "biscuit":2, "biscuit-fired":2, "biscuitlike":3, "bishydroxycoumarin":7, "biskra":2, "bismarck":2, "bismarck archipelago":7, "bismarck herring":4, "bismarckian":4, "bismarckianism":5, "bismanol":3, "bismillah":3, "bismuth":2, "bismuth glance":3, "bismuthal":3, "bismuthine":3, "bismuthinite":4, "bismuthous":3, "bismuthyl":3, "bismutite":3, "bismuthic":3, "bisnaga":3, "biss":2, "bissau":2, "bissextile":3, "bissextus":3, "bisso":2, "bissonata":4, "bisso":3, "bister":2, "bistered":2, "bistort":2, "bistoury":3, "bistre":2, "bistred":2, "bistro":2, "bit":1, "bitch":1, "bitchery":3, "bitchier":3, "bitchiest":3, "bitchiness":3, "bitchy":2, "bite":1, "biteable":3, "bitewing":2, "bitt":1, "bitable":3, "biter":2, "biting":2, "biting midge":3, "bitingly":3, "bitingness":3, "bitless":2, "bitser":2, "bitstock":2, "bitte":2, "bitted":2, "bitten":2, "bitter":2, "bitter apple":4, "bitter end":3, "bitter lakes":3, "bitter orange":4, "bitter principle":5, "bittern":2, "bitters":2, "bitterender":4, "bitterish":3, "bitterling":3, "bitterly":3, "bitterness":3, "bitternut":3, "bitterroot":3, "bittersweet":3, "bitterweed":3, "bitterwood":3, "bitterwort":3, "bitting":2, "bittock":2, "bitty":2, "bivouac":3, "bivouacked":3, "bivouacking":4, "bivvy":2, "biysk":1, "biz":1, "bize":1, "biznaga":3, "biztha":2, "bia":2, "biak":2, "biangular":4, "biannual":4, "biannually":5, "biannulate":4, "biarticulate":5, "biarticulated":6, "bias":2, "bias":2, "bias binding":4, "biased":2, "biasedly":3, "biassed":2, "biassedly":3, "biasing":3, "biassing":3, "biathlon":3, "biauricular":5, "biauriculate":5, "biaxial":4, "biaxiality":6, "biaxially":5, "biacetyl":4, "biadice":4, "biafra":3, "biafran":3, "bialy":3, "bibasic":3, "bibelot":3, "bibiena":3, "bible":2, "bible belt":3, "bible paper":4, "bible-basher":3, "bicameral":4, "bicameralism":5, "bicameralist":5, "bicapsular":4, "bicarb":2, "bicarbonate":4, "bicarbonate of soda":7, "bicentennial":5, "bicentennially":6, "bicentenaries":5, "bicentenary":5, "bicentric":3, "bicentrically":5, "bicephalous":4, "biceps":2, "bicepses":3, "bichat":2, "bichloride":3, "bichloride of mercury":7, "bichromate":3, "bicipital":4, "bicol":2, "bicollateral":5, "bicollaterality":7, "bicolor":3, "bicolored":3, "bicompact":3, "bicone":2, "biconcave":3, "biconcavity":5, "biconditional":5, "biconical":4, "biconically":5, "biconvex":3, "bicorn":2, "bicorn":2, "bicorne":2, "bicornate":3, "bicorporal":4, "bicorporeal":5, "bicron":2, "bicuspid":3, "bicuspid valve":4, "bicuspidate":4, "bicycle":3, "bicycle clip":4, "bicycle pump":4, "bicycler":3, "bicyclic":3, "bicyclist":3, "bicyclical":4, "bida":2, "bidarka":3, "bidarkee":3, "bidault":2, "bidentate":3, "bidenticulate":5, "bidet":2, "bidi":2, "bidirectional":5, "bid":3, "biennia":4, "biennial":4, "biennially":5, "biennium":4, "bienniums":4, "bifarious":4, "bifariously":5, "bifacial":3, "bifid":2, "bifidity":4, "bifidly":3, "bifilar":3, "bifilarly":4, "biflagellate":4, "biflex":2, "bifluoride":3, "biforked":2, "biform":2, "biformed":2, "biformity":4, "bifocal":3, "bifocals":3, "bifoliate":4, "bifoliolate":5, "biforate":3, "bifunctional":4, "bifurcate":3, "bifurcately":4, "bifurcated":4, "bifurcating":4, "bifurcation":4, "biga":2, "bigener":3, "bigeneric":4, "biguanide":3, "bihar":2, "bihari":3, "bihourly":3, "biisk":2, "bijapur":3, "bijection":3, "bijou":2, "bijouterie":4, "bijugate":3, "bijugous":3, "bikaner":3, "bikila":3, "bikini":3, "bikini":3, "bikol":2, "bilac":2, "bilateral":4, "bilateral symmetry":7, "bilateralism":5, "bilaterally":5, "bilateralness":5, "bilabial":4, "bilabiate":4, "bilection":3, "bilinear":4, "bilineate":4, "bilineated":5, "bilingual":3, "bilingualism":4, "bilinguality":5, "bilingually":4, "bilinguist":3, "bilith":2, "bilithon":3, "biliteral":4, "biliteralism":5, "bilobed":2, "bilocular":4, "biloculate":4, "biloxi":3, "bilobate":3, "bilobated":4, "bilocation":4, "bima":2, "bimaculate":4, "bimaculated":5, "bimah":2, "bimane":2, "bimanual":4, "bimanually":5, "bimensal":3, "bimester":3, "bimestrial":4, "bimethyl":3, "bimetallism":4, "bimetallist":4, "bimetallistic":5, "bimetallic":4, "bimetallic strip":5, "bimillennia":5, "bimillennium":5, "bimillenniums":5, "bimillenary":5, "bimodal":3, "bimodule":3, "bimonthly":3, "bimorph":2, "bimorph cell":3, "bimodality":5, "bimolecular":5, "bimolecularly":6, "bimotor":3, "bimotored":3, "binal":2, "binate":2, "binately":3, "binary":3, "binary code":4, "binary digit":5, "binary fission":5, "binary form":4, "binary notation":6, "binary operation":7, "binary star":4, "binary-coded decimal":7, "bination":3, "binet":2, "binet-simon scale":4, "bini":2, "binominal":4, "binominal nomenclature":8, "binormal":3, "binoxalate":4, "binocle":3, "binomial":4, "binomial distribution":8, "binomial theorem":7, "binomialism":5, "binomially":5, "binuclear":4, "binucleate":4, "binucleated":5, "bio-assay":3, "biocellate":4, "biogeny":4, "biographee":4, "biographer":4, "biography":4, "biologism":4, "biologist":4, "biology":4, "biolysis":4, "biome":2, "biometer":4, "biometry":4, "bion":2, "bionic":3, "bionics":3, "bionomy":3, "bionomist":4, "biopsy":3, "bioptic":3, "bioscopy":4, "biot":2, "biotic":3, "biotical":4, "bioassay":4, "bioassayed":4, "bioassaying":5, "bioastronautics":6, "biobibliographer":7, "biobibliography":7, "biobibliographic":7, "biocatalyst":5, "biocentric":4, "biocenology":6, "biochemic":4, "biochemist":4, "biochemistry":5, "biochemical":5, "biochemical oxygen demand":10, "biochemically":6, "biocide":3, "bioclimatic":5, "bioclimatician":6, "bioclimatologist":7, "bioclimatology":7, "bioclimatological":8, "bioclimatologically":9, "biocycle":4, "biodegradable":6, "biodynamic":5, "biodynamics":5, "biodynamical":6, "bioecologic":6, "bioecologically":8, "bioenergetics":6, "bioengineering":6, "bioecologist":6, "bioecology":6, "bioelectric":5, "bioelectricity":7, "bioelectrical":6, "bioelectrogenesis":8, "bioelectrogenetic":8, "bioelectrogenetically":10, "biofeedback":4, "bioflavonoid":5, "biofog":3, "biogen":3, "biogenesis":5, "biogenic":4, "biogenetic":5, "biogenetically":7, "biogeography":6, "biogeochemistry":7, "biogeochemical":7, "biogeographic":6, "biogeographically":8, "biographic":4, "biographical":5, "biographically":6, "bioherm":3, "biologic":4, "biological":5, "biological clock":6, "biological warfare":7, "biologically":6, "bioluminescence":6, "bioluminescent":6, "biolytic":4, "biomagnetic":5, "biomagnetism":5, "biomass":3, "biomedical":5, "biomedicine":5, "biometric":4, "biometrics":4, "biometrical":5, "biometrically":6, "biometricist":5, "biometrician":5, "biomorphic":4, "bionomic":4, "bionomics":4, "bionomical":5, "bionomically":6, "biophysics":4, "biophysical":5, "biophysically":6, "biophysicist":5, "bioplasm":3, "bioplasmic":4, "biopoiesis":5, "biopsychic":4, "biopsychical":5, "bioscope":3, "bioscopic":4, "biosocial":4, "biosociology":7, "biosociological":8, "biosphere":3, "biostatic":4, "biostatics":4, "biostatical":5, "biostrome":3, "biosynthesis":5, "biota":3, "biotechnology":6, "biotechnological":7, "biotechnologically":8, "biotin":3, "biotite":3, "biotitic":4, "biotope":3, "biotype":3, "biotypic":4, "biotypology":6, "bipack":2, "bipartite":3, "bipartitely":4, "bipartisan":4, "bipartisanism":5, "bipartisanship":5, "bipartition":4, "biparty":3, "biparietal":5, "bipectinate":4, "bipectinated":5, "biped":2, "bipetalous":4, "bipedal":3, "biphenyl":3, "bipinnaria":5, "bipinnariae":5, "bipinnate":3, "bipinnately":4, "biplane":2, "bipod":2, "bipolar":3, "bipolarity":5, "bipropellant":4, "bipyramid":4, "bipyramidal":5, "biquadrate":3, "biquadratic":4, "biquarterly":4, "biracial":3, "biracialism":4, "biradial":4, "biramose":3, "biramous":3, "birectangular":5, "bireme":2, "biretta":3, "birefringence":4, "birefringent":4, "biri":2, "biriani":4, "biro":2, "birobidzhan":4, "birobijan":4, "birobizhan":4, "birota":3, "bisayan":3, "bisayas":3, "bisect":2, "bisection":3, "bisectional":4, "bisectionally":5, "bisector":3, "bisectrix":3, "bisectrices":4, "bisellia":4, "bisellium":4, "biserrate":3, "bisexual":4, "bisexualism":5, "bisexuality":6, "bisexually":5, "biserial":4, "biserially":5, "bisitun":3, "bison":2, "bisphenoid":3, "bistable":3, "bistros":2, "bisulcate":3, "bisulfate":3, "bisulfide":3, "bisulfite":3, "bisulphate":3, "bisulphide":3, "bisulphite":3, "bisutun":3, "bisymmetric":4, "bisymmetrical":5, "bisymmetrically":6, "bisymmetry":4, "bitartrate":3, "bithynia":4, "bithynian":4, "bitolj":2, "biton":2, "bitonal":3, "bitonality":5, "bitumen":3, "bituminise":4, "bituminised":4, "bituminising":5, "bituminize":4, "bituminized":4, "bituminizing":5, "bituminoid":4, "bituminous":4, "bituminous coal":5, "biunique":3, "biuniquely":4, "biuniqueness":4, "bivalve":2, "bivalvular":4, "bivane":2, "bivariate":4, "bivalence":3, "bivalent":3, "bivinyl":3, "bivoltine":3, "biweekly":3, "biyearly":3, "biysk":2, "bizarre":2, "bizarrely":3, "bizarreness":3, "bizerse":3, "bizerta":3, "bizerte":3, "bizet":2, "bizone":2, "bizonal":3, "bizonia":4, "bjoerling":2, "bjrnson":3, "bjrnstjerne":4, "bjneborg":3, "bkcy":1, "bkg":1, "bkpt":1, "bks":1, "blab":1, "blabber":2, "blabbermouth":3, "blabbing":2, "black":1, "black":1, "black beetle":3, "black bindweed":3, "black body":3, "black bottom":3, "black bryony":4, "black country":3, "black diamond":4, "black forest":3, "black friar":3, "black guillemot":4, "black horehound":3, "black letter":3, "black magic":3, "black market":3, "black maria":4, "black measles":3, "black medick":3, "black mountains":3, "black muslim":3, "black mustard":3, "black nightshade":3, "black panther":3, "black pepper":3, "black powder":3, "black power":3, "black pudding":3, "black tracker":3, "black treacle":3, "black velvet":3, "black volta":3, "black vomit":3, "black walnut":3, "black widow":3, "black-and-tan terrier":4, "black-coated":2, "black-eyed susan":3, "black-figure":2, "black-hearted":2, "black-letter":2, "black-market":2, "black-marketeer":3, "blacksburg":2, "blackacre":3, "blackamoor":3, "blackball":2, "blackballer":3, "blackbeard":2, "blackbeetle":3, "blackberry":3, "blackberrylike":4, "blackbird":2, "blackbirder":3, "blackbirding":3, "blackboard":2, "blackboy":2, "blackbuck":2, "blackburn":2, "blackbutt":2, "blackcap":2, "blackcoat":2, "blackcock":2, "blackcod":2, "blackcurrant":3, "blackdamp":2, "blacken":2, "blackener":3, "blackett":2, "blackface":2, "blackfellow":3, "blackfigured":3, "blackfin":2, "blackfire":2, "blackfish":2, "blackfishes":3, "blackfly":2, "blackfoot":2, "blackguard":2, "blackguardism":3, "blackguardly":3, "blackhander":3, "blackhead":2, "blackheart":2, "blackheartedly":4, "blackheartedness":4, "blacking":2, "blackish":2, "blackishly":3, "blackishness":3, "blackjack":2, "blackleg":2, "blacklegged":2, "blacklegging":3, "blacklist":2, "blackly":2, "blackmail":2, "blackmailer":3, "blackmore":2, "blackmur":2, "blackness":2, "blackout":2, "blackpatch":2, "blackplate":2, "blackpoll":2, "blackpool":2, "blackrag":2, "blackshirt":2, "blacksmith":2, "blacksnake":2, "blackstone":2, "blackstrap molasses":5, "blacktail":2, "blackthorn":2, "blacktongue":2, "blacktop":2, "blackwall hitch":3, "blackwater fever":5, "blackweed":2, "blackwell":2, "blackwood":2, "blackwood":2, "blade":1, "blade grader":3, "bladebone":2, "bladeless":2, "bladder":2, "bladder campion":5, "bladder ketmia":5, "bladder senna":4, "bladder worm":3, "bladdernose":3, "bladdernut":3, "bladderpod":3, "bladderwort":3, "bladderwrack":3, "bladdery":3, "blae":1, "blaeu":1, "blaeberry":3, "blagg":1, "blague":1, "blah":1, "blain":1, "blaine":1, "blair":1, "blairsville":2, "blaise":1, "blake":1, "blakely":2, "blakemore":2, "blame":1, "blamed":1, "blameable":3, "blameableness":4, "blameably":3, "blameful":2, "blamefully":3, "blamefulness":3, "blameless":2, "blamelessly":3, "blamelessness":3, "blameworthiness":4, "blameworthy":3, "blamable":3, "blamableness":4, "blamably":3, "blamer":2, "blaming":2, "blanc":1, "blanc":1, "blanch":1, "blanch":1, "blanche":1, "blancher":2, "blancmange":2, "bland":1, "blandly":2, "blandness":2, "blank":1, "blank cartridge":3, "blank endorsement":4, "blankbook":2, "blankety":3, "blankety-blank":3, "blankly":2, "blankness":2, "blancanus":3, "blanchard":2, "blanchester":3, "blanchi":2, "blanchinus":3, "blanco-fombona":4, "blandish":2, "blandisher":3, "blandishingly":4, "blandishment":3, "blandishments":3, "blanket":2, "blanket stitch":3, "blanket-flower":3, "blanket-stitch":2, "blanketing":3, "blanketless":3, "blanketlike":3, "blanquette":2, "blanquette de veau":4, "blanquillo":3, "blantyre":2, "blantyre-limbe":3, "blare":1, "blaring":2, "blarney":2, "blarney stone":3, "blarneyed":2, "blarneying":3, "blast":1, "blast furnace":3, "blasted":2, "blaster":2, "blasting":2, "blastment":2, "blastoff":2, "blasty":2, "blasco ib":5, "blasdell":2, "blaspheme":2, "blasphemed":2, "blasphemer":3, "blaspheming":3, "blasphemous":3, "blasphemously":4, "blasphemousness":4, "blasphemy":3, "blastema":3, "blastemal":3, "blastemas":3, "blastematic":4, "blastemata":4, "blastie":2, "blastocoel":3, "blastocoele":3, "blastocoelic":4, "blastocyst":3, "blastoderm":3, "blastodermatic":5, "blastodermic":4, "blastodisc":3, "blastodisk":3, "blastogenesis":5, "blastoma":3, "blastomas":3, "blastomata":4, "blastomere":3, "blastomeric":4, "blastomycotic":5, "blastomycosis":5, "blastopore":3, "blastoporic":4, "blastosphere":3, "blastostyle":3, "blastostylar":4, "blastula":3, "blastular":3, "blat":1, "blate":1, "blately":2, "blateness":2, "blather":2, "blatherskite":3, "blatted":2, "blatting":2, "blaubok":2, "blaue reiter":4, "blaw":1, "blaydon":2, "blaze":1, "blaze":1, "blazer":2, "blazes":2, "blazing":2, "blazing star":3, "blazingly":3, "blacher":2, "bladensburg":3, "blagonravov":4, "blagoveshchensk":4, "blagoveshchensk":4, "blamey":2, "blas":2, "blas":3, "blatant":2, "blatantly":3, "blatancy":3, "blavatsky":3, "blazon":2, "blazoner":3, "blazonment":3, "blazonry":3, "bldg":1, "bleach":1, "bleachability":5, "bleachable":3, "bleacher":2, "bleachers":2, "bleacheries":3, "bleachery":3, "bleaching powder":4, "bleak":1, "bleakish":2, "bleakly":2, "bleakness":2, "blear":1, "blear-eyedness":2, "blearedness":3, "blearier":3, "bleariest":3, "blearily":3, "bleariness":3, "bleary":2, "bleary-eyed":2, "blearyeyedness":4, "bleat":1, "bleater":2, "bleatingly":3, "bleb":1, "blebby":2, "bleed":1, "bleeder":2, "bleeder resistor":5, "bleeder's disease":4, "bleeding":2, "bleeding heart":3, "bleep":1, "blellum":2, "blemish":2, "blemisher":3, "blench":1, "blencher":2, "blenchingly":3, "blend":1, "blende":1, "blended":2, "blender":2, "blending":2, "blent":1, "blenda":2, "blenheim":2, "blennioid":3, "blenny":2, "blepharitic":4, "blepharitis":4, "blepharospasm":4, "bless":1, "blessed":2, "blessed sacrament":5, "blessed virgin":4, "blessedly":3, "blessedness":3, "blesser":2, "blessing":2, "blessingly":3, "blest":1, "blesbok":2, "blesbuck":2, "blessing":2, "blet":1, "blether":2, "bletting":2, "bleuler":2, "blew":1, "blewits":2, "bleaunt":2, "bligh":1, "blight":1, "blighter":2, "blighties":2, "blightingly":3, "blighty":2, "blighty":2, "blimp":1, "blin":1, "blind":1, "blind alley":3, "blind freddie":3, "blind staggers":3, "blind stamping":3, "blindage":2, "blindcat":2, "blinder":2, "blindfish":2, "blindfishes":3, "blindfold":2, "blindfoldedly":4, "blindfoldedness":4, "blindfolder":3, "blindheim":2, "blinding":2, "blindingly":3, "blindly":2, "blindness":2, "blindstorey":3, "blindstory":3, "blindworm":2, "blink":1, "blinks":1, "blinkard":2, "blinker":2, "blinkers":2, "blinking":2, "blinkingly":3, "blintz":1, "blintze":1, "blinders":2, "blini":2, "blinis":2, "bliny":2, "blip":1, "bliss":1, "bliss":1, "blissfield":2, "blissful":2, "blissfully":3, "blissfulness":3, "blissless":2, "blister":2, "blister beetle":4, "blister copper":4, "blister rust":3, "blisteringly":4, "blistery":3, "blithe":1, "blithe":1, "blitheful":2, "blithefully":3, "blithely":2, "blitheness":2, "blithesome":2, "blithesomely":3, "blithesomeness":3, "blither":2, "blithering":3, "blitz":1, "blitz":1, "blitzkrieg":2, "blitzstein":2, "blixen":2, "blizzard":2, "blizzardly":3, "blizzardy":3, "blibliest":3, "blida":2, "blier":2, "blimey":2, "blimy":2, "blk":1, "bloat":1, "bloated":2, "bloatedness":3, "bloater":2, "blob":1, "blobbing":2, "bloc":1, "bloch":1, "block":1, "block":1, "block and tackle":4, "block diagram":4, "block lava":3, "block letter":3, "block printing":3, "block release":3, "blocked":1, "blockade":2, "blockade-runner":3, "blockaderunning":4, "blockaded":3, "blockader":3, "blockading":3, "blockage":2, "blockboard":2, "blockbuster":3, "blockbusting":3, "blocker":2, "blockhead":2, "blockheaded":3, "blockheadedly":4, "blockheadedness":4, "blockheadism":3, "blockhouse":2, "blockhouses":3, "blocking":2, "blockish":2, "blockishly":3, "blockishness":3, "blockier":3, "blockiest":3, "blocky":2, "bloemfontein":3, "blois":1, "blok":1, "bloke":1, "blond":1, "blonde":1, "blondeness":2, "blondish":2, "blondness":2, "blondel":2, "blood":1, "blood brother":3, "blood donor":3, "blood money":3, "blood orange":3, "blood plasma":3, "blood poisoning":4, "blood pressure":3, "blood pudding":3, "blood relation":4, "blood sausage":3, "blood serum":3, "blood vessel":3, "blood-and-thunder":2, "blood-drop emlets":3, "blood-letting":2, "bloodcurdling":3, "blooded":2, "bloodfin":2, "bloodflower":3, "bloodguiltiness":4, "bloodguilty":3, "bloodhound":2, "bloodied":2, "blooding":2, "bloodier":3, "bloodiest":3, "bloodily":3, "bloodiness":3, "bloodless":2, "bloodless revolution":6, "bloodlessly":3, "bloodlessness":3, "bloodletter":3, "bloodletting":3, "bloodlike":2, "bloodline":2, "bloodmobile":3, "bloodnoun":2, "bloodroot":2, "bloodshed":2, "bloodshedding":3, "bloodshot":2, "bloodstain":2, "bloodstained":2, "bloodstock":2, "bloodstone":2, "bloodstream":2, "bloodsucker":3, "bloodsucking":3, "bloodthirstily":4, "bloodthirstiness":4, "bloodthirsty":3, "bloodworm":2, "bloodwort":2, "bloody":2, "bloody mary":4, "bloody-minded":3, "bloodying":3, "bloom":1, "bloomed":1, "bloomsbury":3, "bloomsbury group":4, "bloomer":2, "bloomers":2, "bloomeries":3, "bloomery":3, "bloomfield":2, "bloomfieldian":4, "blooming":2, "bloomingdale":3, "bloomingly":3, "bloomingness":3, "bloomington":3, "bloomier":3, "bloomiest":3, "bloomless":2, "bloomy":2, "blooper":2, "bloomer":2, "blossom":2, "blossom":2, "blossomless":3, "blossomy":3, "blot":1, "blotch":1, "blotchier":3, "blotchiest":3, "blotchy":2, "blotless":2, "blotted":2, "blotter":2, "blotting":2, "blotting paper":4, "blottingly":3, "blotto":2, "blotty":2, "blouse":1, "blouselike":2, "blousing":2, "blousier":3, "blousiest":3, "blousily":3, "blouson":2, "blousy":2, "blouson":2, "blow":1, "blow into":3, "blow moulding":3, "blow over":3, "blow-in":1, "blow-molded":2, "blown":1, "blown-molded":2, "blowsier":3, "blowsiest":3, "blowsily":3, "blowsy":2, "blowzed":1, "blowzier":3, "blowziest":3, "blowzily":3, "blowzy":2, "blowball":2, "blower":2, "blowfish":2, "blowfishes":3, "blowfly":2, "blowgun":2, "blowhard":2, "blowhole":2, "blowie":2, "blowing":2, "blowier":3, "blowiest":3, "blowiness":3, "blowiron":3, "blowlamp":2, "blowoff":2, "blowout":2, "blowpipe":2, "blowtorch":2, "blowtube":2, "blowup":2, "blowy":2, "blub":1, "blubber":2, "blubberer":3, "blubberhead":3, "blubberingly":4, "blubbery":3, "bludge":1, "bludgeon":2, "bludgeoneer":3, "bludgeoner":3, "bludging":2, "blue":1, "blue":1, "blue baby":3, "blue butcher":3, "blue devils":3, "blue mantle":3, "blue mountains":3, "blue pencil":3, "blue peter":3, "blue pointer":3, "blue racer":3, "blue ribband":3, "blue ribbon":3, "blue ridge mountains":4, "blue vitriol":4, "blue-blackness":2, "blue-blooded":2, "blue-blossom":2, "blue-collar":2, "blue-eyed mary":3, "blue-green algae":3, "blue-pencil":2, "blue-penciled":2, "blue-pencilled":2, "blue-penciling":3, "blue-pencilling":3, "blue-ribbon":2, "blue-ribbon jury":4, "blues":1, "bluet":1, "bluebeard":2, "bluebeardism":3, "bluebell":2, "bluebelled":2, "blueberry":3, "bluebill":2, "bluebird":2, "bluebonnet":3, "bluebook":2, "bluebottle":3, "bluecap":2, "bluecoat":2, "bluecoated":3, "bluefield":2, "bluefields":2, "bluefish":2, "bluefishes":3, "bluegill":2, "bluegrass":2, "bluehead":2, "blueing":2, "blueish":2, "bluejack":2, "bluejacket":3, "bluely":2, "blueness":2, "bluenose":2, "bluepoint":2, "blueprint":2, "blueprinter":3, "bluestem":2, "bluestocking":3, "bluestockingism":4, "bluestone":2, "bluethroat":2, "bluetick":2, "bluetit":2, "bluetongue":2, "blueweed":2, "bluewood":2, "bluey":2, "bluff":1, "bluffable":3, "bluffer":2, "bluffly":2, "bluffness":2, "bluffton":2, "blum":1, "blunge":1, "blunger":2, "blunging":2, "blunt":1, "bluntly":2, "bluntness":2, "blunder":2, "blunderbuss":3, "blunderer":3, "blunderful":3, "blunderingly":4, "blur":1, "blurb":1, "blurbist":2, "blurt":1, "blurredly":3, "blurredness":3, "blurring":2, "blurry":2, "blush":1, "blusher":2, "blushful":2, "blushfully":3, "blushfulness":3, "blushingly":3, "blushless":2, "bluster":2, "blusterer":3, "blusteringly":4, "blusterous":3, "blusterously":4, "blustery":3, "blucher":2, "bluer":2, "bluest":2, "bluet":2, "bluet":2, "bluey":2, "bluey":2, "bluing":2, "bluish":2, "bluishness":3, "bluma":2, "blvd":1, "blype":1, "blyth":1, "blythe":1, "blytheville":2, "blriot":3, "blcher":3, "blcher":2, "blriot":2, "bma":1, "bmj":1, "bmus":1, "bo's'n":1, "bo's'n":2, "bo-peep":1, "bo-peep":1, "boac":1, "boar":1, "board":1, "board measure":3, "board-and-shingle":2, "boardable":3, "boarder":2, "boarding":2, "boarding house":3, "boarding school":3, "boardinghouse":3, "boardinghouses":4, "boardlike":2, "boardman":2, "boardroom":2, "boardwalk":2, "boart":1, "boarfish":2, "boarfishes":3, "boarhound":2, "boarish":2, "boarishly":3, "boarishness":3, "boast":1, "boaster":2, "boastful":2, "boastfully":3, "boastfulness":3, "boastingly":3, "boastless":2, "boat":1, "boat-billed heron":3, "boatsman":2, "boatage":2, "boatable":3, "boatbill":2, "boatbuilder":3, "boatel":2, "boater":2, "boathook":2, "boathouse":2, "boathouses":3, "boating":2, "boatless":2, "boatload":2, "boatman":2, "boatmanship":3, "boatswain":2, "boatswain's chair":3, "boattail":2, "boatwright":2, "boatyard":2, "bob":1, "bob":1, "bobobtail":2, "bobs":1, "bobber":2, "bobberies":3, "bobbery":3, "bobbie":2, "bobbielee":3, "bobbin":2, "bobbin lace":3, "bobbing":2, "bobbinet":3, "bobble":2, "bobby":2, "bobby":2, "bobby pin":3, "bobby socks":3, "bobby-dazzler":3, "bobbye":2, "bobbysocks":3, "bobbysoxer":4, "bobcat":2, "bobfloat":2, "boblet":2, "bobowler":3, "bobolink":3, "bobsled":2, "bobsledded":3, "bobsledder":3, "bobsledding":3, "bobsleigh":2, "bobstay":2, "bobsy-die":2, "bobtail":2, "bobwhite":2, "boche":1, "bock":1, "boccaccio":3, "boccaccio":4, "bocce":2, "boccherini":4, "bocci":2, "boccia":2, "boccie":2, "boccioni":3, "bod":1, "bod":1, "bode":1, "bode":1, "bodement":2, "bodge":1, "bodger":2, "bodgie":2, "bodh gaya":3, "boded":2, "bodice":2, "bodied":2, "bodies":2, "boding":2, "bodingly":3, "bodiless":3, "bodilessness":4, "bodily":3, "bodkin":2, "bodleian":3, "bodley":2, "bodmin":2, "body":2, "body blow":3, "body building":4, "body cavity":5, "body corporate":5, "body image":4, "body language":4, "body of christ":4, "body politic":5, "body snatcher":4, "body stocking":4, "body-centered":3, "body-centred":3, "body-line":2, "bodycheck":3, "bodyguard":3, "bodying":3, "bodywork":3, "bod":3, "boehmite":2, "boehmian":3, "boehme":2, "boehmenism":3, "boehmenist":3, "boehmenite":3, "boehmist":2, "boer":1, "boeuf bourguignon":4, "boeotia":3, "boeotian":3, "boeotia":4, "boeotus":3, "boff":1, "boffola":3, "boffin":2, "boffo":2, "bog":1, "bog asphodel":4, "bog myrtle":3, "bog orchid":3, "bogue":1, "boguing":2, "bogbean":2, "boggart":2, "bogging":2, "boggish":2, "bogginess":3, "boggle":2, "boggler":2, "bogglingly":3, "boggy":2, "bognor regis":4, "bogomil":3, "bogomile":3, "bogomilism":4, "bogomilian":5, "bogtrotter":3, "bogwood":2, "boh":1, "bohr":1, "bohr theory":4, "bohlen":2, "bohnenberger":4, "boil":1, "boil away":3, "boil over":3, "boiled":1, "boilable":3, "boiler":2, "boiler suit":3, "boilerless":3, "boilermaker":4, "boilerplate":3, "boiling":2, "boiling point":3, "boiling-water reactor":6, "boilingly":3, "boilover":3, "bois de boulogne":4, "bois-brl":2, "boisterous":3, "boisterously":4, "boisterousness":4, "boieldieu":3, "boileau":2, "boileau-despraux":5, "boise":2, "boise city":4, "boiserie":3, "bojer":2, "bok":1, "bokm'":2, "bokmakierie":4, "bol":1, "bold":1, "boldface":2, "boldfaced":2, "boldfacedly":4, "boldfacedness":4, "boldfacing":3, "boldhearted":3, "boldheartedly":4, "boldheartedness":4, "boldly":2, "boldness":2, "bole":1, "boll":1, "boll":1, "boll weevil":3, "bollworm":2, "bolt":1, "bolt-action":2, "boltzmann":2, "boltzmann constant":4, "bolter":2, "bolthead":2, "boltless":2, "boltlike":2, "boltrope":2, "boldo":2, "boleyn":2, "bolger":2, "bolingbroke":3, "bolivar":3, "bolivar":3, "bolivars":3, "bolland":2, "bollandist":3, "bollandus":3, "bollard":2, "bollix":2, "bollock":2, "bollocks":2, "bollox":2, "bolshevik":3, "bolshevik":3, "bolsheviks":3, "bolsheviki":4, "bolshevikism":4, "bolshevikism":4, "bolshevism":3, "bolshevism":3, "bolshevist":3, "bolshevistic":4, "bolshevistic":4, "bolshevistically":6, "bolshevistically":6, "bolshevize":3, "bolshevize":3, "bolshevized":3, "bolshevizing":4, "bolshevization":5, "bolshie":2, "bolshie":2, "bolshy":2, "bolshy":2, "bolson":2, "bolster":2, "bolsterer":3, "bolsn":3, "bolsnes":4, "boltel":2, "bolton":2, "boltonia":4, "bolzano":3, "bolvar":4, "bomb":1, "bomb calorimeter":6, "bombe":1, "bombable":2, "bomber":2, "bombing run":3, "bombload":2, "bombproof":2, "bombshell":2, "bombsight":2, "bomb":2, "bombard":2, "bombarder":3, "bombardment":3, "bombardier":3, "bombardon":3, "bombast":2, "bombastic":3, "bombastical":4, "bombastically":5, "bombay":2, "bombay duck":3, "bombacaceous":4, "bombasine":3, "bombazeen":3, "bombazine":3, "bombilla":3, "bombora":3, "bombous":2, "bombycid":3, "bomb":3, "bon":1, "bon vivant":3, "bon voyage":3, "bonce":1, "bond":1, "bond":1, "bond paper":3, "bond washing":3, "bond-servant":2, "bondsman":2, "bondswoman":3, "bondswomen":3, "bondage":2, "bonded":2, "bonded warehouse":4, "bonder":2, "bondholder":3, "bondholding":3, "bondless":2, "bondmaid":2, "bondman":2, "bondservant":3, "bondstone":2, "bondwoman":3, "bondwomen":3, "bone":1, "bone china":3, "bone idle":3, "bone of contention":5, "boned":1, "boneblack":2, "bonefish":2, "bonefishes":3, "bonehead":2, "boneheaded":3, "boneheadedness":4, "boneless":2, "bonelike":2, "boneset":2, "bonesetter":3, "boneshaker":3, "boneup":2, "boneyard":2, "bong":1, "bonkers":2, "bonn":1, "bonne":1, "bonnetire":3, "bonze":1, "bonaire":2, "bonadoxin":4, "bonaventure":4, "bonaventure":4, "bonaventura":5, "bonavist":3, "bonbon":2, "bonbonnire":4, "boner":2, "bonfire":2, "bongo":2, "bongo":2, "bongrace":2, "bonham":2, "bonheur":2, "bonheur-du-jour":2, "bonheurs-du-jour":2, "bonhoeffer":3, "bonhomie":3, "bonhomous":3, "boning":2, "bonington":3, "bonism":2, "bonier":3, "boniest":3, "boniface":3, "boniness":3, "bonjour":2, "bonkers":2, "bonnard":2, "bonnaz":2, "bonnet":2, "bonnet":2, "bonnet monkey":4, "bonnet rouge":3, "bonnethead":3, "bonnetless":3, "bonnetlike":3, "bonnie":2, "bonnie":2, "bonnibelle":3, "bonnier":3, "bonniest":3, "bonnily":3, "bonniness":3, "bonny":2, "bonny":2, "bonnyclabber":4, "bonpland":2, "bonsai":2, "bonsela":3, "bonsoir":2, "bonspiel":2, "bontempelli":4, "bontebok":3, "bontebuck":3, "bontoc":2, "bontok":2, "bony":2, "bonytail":3, "bonzer":2, "boo":1, "boo-boo":1, "boob":1, "bood":1, "boogie":2, "boogie-woogie":3, "book":1, "book into":3, "book of account":4, "book of changes":4, "book of mormon":4, "book scorpion":4, "book token":3, "book value":3, "book-keeping":2, "book-learning":2, "bookbinder":3, "bookbinderies":4, "bookbindery":4, "bookbinding":3, "bookcase":2, "bookcraft":2, "bookie":2, "booking":2, "bookish":2, "bookishly":3, "bookishness":3, "bookkeeper":3, "bookkeeping":3, "bookless":2, "booklet":2, "booklike":2, "booklouse":2, "booklover":3, "bookmaker":3, "bookmaking":3, "bookman":2, "bookmark":2, "bookmarker":3, "bookmobile":3, "bookplate":2, "bookrack":2, "bookrest":2, "bookseller":3, "bookshelf":2, "bookshop":2, "bookstack":2, "bookstall":2, "bookstand":2, "bookstore":2, "bookwork":2, "bookworm":2, "boole":1, "boolean":3, "boolean algebra":6, "boom":1, "boomer":2, "boomerang":3, "boomingly":3, "boomkin":2, "boomless":2, "boomlet":2, "boomslang":2, "boomtown":2, "boon":1, "boone":1, "booneville":2, "boong":1, "boondocks":2, "boondocker":3, "boondoggle":3, "boondoggler":3, "boonless":2, "boonton":2, "boonville":2, "boor":1, "boorga":2, "boorish":2, "boorishly":3, "boorishness":3, "boost":1, "booster":2, "booster shot":3, "boot":1, "booth":1, "booth":1, "boots":1, "boots":1, "boots and saddles":4, "bootblack":2, "booted":2, "bootee":2, "booteries":3, "bootery":3, "bootie":2, "bootjack":2, "bootlace":2, "bootleg":2, "bootlegged":2, "bootlegger":3, "bootlegging":3, "bootless":2, "bootlessly":3, "bootlessness":3, "bootlick":2, "bootlicker":3, "bootloader":3, "bootstrap":2, "boottop":2, "boottopping":3, "bootyless":3, "booze":1, "boozer":2, "boozing":2, "boozier":3, "booziest":3, "boozily":3, "booziness":3, "boozy":2, "boobialla":4, "boobily":3, "boobook":2, "booby":2, "booby hatch":3, "booby prize":3, "booby trap":3, "booby-trap":2, "boobyish":3, "boodle":2, "boodler":2, "boogeyman":3, "boogie":2, "boogie-woogie":3, "boohoo":2, "boohooed":2, "boohooing":3, "booing":2, "boothia":3, "boothia peninsula":7, "bootle":2, "bootrapped":2, "bootrapping":3, "booty":2, "bop":1, "bop":1, "bopper":2, "bopping":2, "bopster":2, "bor":1, "bord":1, "bord-and-pillar":2, "bore":1, "boreable":3, "borecole":2, "boredom":2, "borehole":2, "boresight":2, "boresome":2, "borg":1, "borghild":2, "borgholm":2, "born":1, "born":1, "borne":1, "bornholm":2, "bornholm disease":4, "bornite":2, "bors":1, "borsch":1, "borscht":1, "borsh":1, "borshch":1, "bort":1, "bortz":1, "borty":2, "borage":2, "borak":2, "boral":2, "borable":3, "borborygmus":4, "borda":2, "bordeaux":2, "bordeaux mixture":4, "bordel":2, "bordello":3, "borden":2, "bordentown":3, "border":2, "border":2, "border terrier":5, "bordered":2, "borders region":4, "borderer":3, "borderland":3, "borderless":3, "borderlight":3, "borderline":3, "bordet":2, "bordelais":3, "bordelaise":3, "bordereau":3, "bordure":2, "boree":2, "borer":2, "borger":2, "borgerhout":3, "borges":2, "borghese":3, "borgia":2, "borglum":2, "boring":2, "bornan":2, "bornean":3, "borneo":3, "borneol":3, "bornitic":3, "bornu":2, "borough":2, "borough-english":3, "borrasca":3, "borrelia":4, "borrow":2, "borrow":2, "borrower":3, "borrowing":3, "borromini":4, "borrovian":4, "borstal":2, "borzoi":2, "bosc":1, "bosch":1, "bosch process":3, "boschbok":2, "boschvark":2, "bose":1, "bose-einstein statistics":5, "bosh":1, "bosk":1, "boskier":3, "boskiest":3, "boskiness":3, "bosky":2, "boss":1, "boss cocky":3, "bossboy":2, "bosseyed":2, "bossism":2, "bossier":3, "bossiest":3, "bossiness":3, "bossy":2, "boscage":2, "boscobel":3, "boscovich":3, "boskage":2, "bosker":2, "bosket":2, "boskop":2, "bosnia":3, "bosnia and herzegovina":9, "bosnian":3, "bosom":2, "bosomed":2, "bosomy":3, "boson":2, "bosphorus":3, "bosporan":3, "bosporanic":4, "bosporus":3, "bosquet":2, "bossa nova":4, "bossage":2, "bossuet":2, "bossy":2, "boston":2, "boston":2, "boston crab":3, "boston ivy":4, "boston tea party":5, "boston terrier":5, "bostonian":4, "boswell":2, "boswellism":3, "boswellism":3, "boswellize":3, "boswellize":3, "boswellized":3, "boswellizing":4, "boswellian":4, "bosworth field":3, "bot":1, "bot":1, "botch":1, "botchedly":3, "botcher":2, "botchery":3, "botchier":3, "botchiest":3, "botchily":3, "botchiness":3, "botchy":2, "both":1, "bother":2, "botheration":4, "bothersome":3, "bothies":2, "bothnic":2, "bothnia":3, "bothnian":3, "bothria":3, "bothrium":3, "bothwell":2, "bothy":2, "bots":1, "bott":1, "botte":1, "botanomancy":5, "botanise":3, "botanised":3, "botanist":3, "botanising":4, "botanize":3, "botanized":3, "botanizer":4, "botanizing":4, "botany":3, "botany bay":4, "botany wool":4, "botfly":2, "botkin":2, "botonny":3, "botonne":4, "botony":3, "botone":4, "botryoid":3, "botryoidal":4, "botryoidally":5, "botryose":3, "botryomycotic":6, "botryomycosis":6, "botsares":3, "botswana":3, "bottega":3, "bottegas":3, "botteghe":3, "botticelli":4, "botticellian":5, "bottineau":3, "bottle":2, "bottle gourd":3, "bottle green":3, "bottle party":4, "bottle tree":3, "bottle up":3, "bottle-feed":2, "bottle-green":2, "bottle-nosed":2, "bottle-o":2, "bottle-oh":2, "bottle-washer":3, "bottler":2, "bottlebrush":3, "bottlelike":3, "bottleneck":3, "bottlenose":3, "bottlenose dolphin":5, "bottom":2, "bottom drawer":3, "bottom house":3, "bottom out":3, "bottoms":2, "bottoms up!":3, "bottomless":3, "bottomlessly":4, "bottomlessness":4, "bottommost":3, "bottomry":3, "bottrop":2, "botulin":3, "botulism":3, "botulinus":4, "botulinuses":5, "botvinnik":3, "bouar":1, "bouak":2, "bouak":3, "bouche":1, "boud":1, "bouffe":1, "bouffant":2, "bouffancy":3, "bough":1, "bought":1, "boughten":2, "boughless":2, "boughpot":2, "bouillabaisse":3, "bouilli":2, "bouillon":2, "bouk":1, "boule":1, "boules":1, "boulevard":2, "boulevardier":4, "boulework":2, "boulle":1, "boult":1, "boult":1, "boulder":2, "boulder":2, "boulder clay":3, "boulder dam":3, "bouldering":3, "boulevard":3, "boulter":2, "boun":1, "bounce":1, "bounceable":3, "bounceably":3, "bouncer":2, "bouncing":2, "bouncing bet":3, "bouncingly":3, "bouncy":2, "bound":1, "bounds":1, "boundable":3, "boundary":3, "boundary layer":5, "boundary rider":5, "bounded":2, "boundedly":3, "boundedness":3, "bounden":2, "bounder":2, "boundingly":3, "boundless":2, "boundlessly":3, "boundlessness":3, "boundness":2, "bouncy":2, "bounteous":3, "bounteously":4, "bounteousness":4, "bountiful":3, "bountiful":3, "bountifully":4, "bountifulness":4, "bounty":2, "bounty":2, "bountyless":3, "bourg":1, "bourges":1, "bourn":1, "bourne":1, "bournemouth":2, "bournless":2, "bourse":1, "bourbaki":3, "bourbon":2, "bourbon":2, "bourbon biscuit":4, "bourbonism":3, "bourbonist":3, "bourbonnais":3, "bourbonian":4, "bourdon":2, "bourdon gauge":3, "bourgeois":2, "bourgeois":2, "bourgeoise":2, "bourgeoises":3, "bourgeoisie":3, "bourgeon":2, "bourget":2, "bourgogne":2, "bourguiba":3, "bourkha":2, "bournonite":3, "bourr":2, "bourrasque":2, "bourre":3, "bourtree":2, "bouse":1, "bousing":2, "boussingault":3, "bousy":2, "bout":1, "bouts-rims":3, "bouch":2, "bouchard":2, "boucher":2, "bouchon":2, "bouch":3, "bouche":3, "boucicault":3, "boucl":2, "boucle":2, "boucl":3, "boudeuse":2, "boudicca":3, "boudoir":2, "bougainville":3, "bougainvillaea":5, "bougainvillea":5, "bougie":2, "bouguer":2, "bouguereau":3, "boulanger":3, "boulangism":3, "boulangist":3, "boule":2, "bouleuteria":5, "bouleuterion":5, "boulez":2, "boulevardier":4, "bouleversement":5, "boulimia":4, "boulogne":2, "boulogne-billancourt":4, "boulogne-sur-mer":2, "boumdienne":4, "bouphonia":4, "bouquet":2, "bouquet garni":4, "boustrophedon":4, "boutel":2, "boutell":2, "boutique":2, "boutonniere":3, "boutonnire":4, "boutonniere":4, "bouvard":2, "bouvardia":4, "bouzouki":3, "bovril":2, "bovver":2, "bovver boots":3, "bow":1, "bow collector":4, "bow compass":3, "bow street runner":4, "bow window":3, "bow-iron":2, "bowdlerise":3, "bowdlerised":3, "bowdlerism":3, "bowdlerising":4, "bowdlerize":3, "bowdlerized":3, "bowdlerizing":4, "bowdlerization":5, "bowedness":2, "bowl":1, "bowl over":3, "bowles":1, "bowls":1, "bowlder":2, "bowldering":3, "bowler":2, "bowling":2, "bowling alley":4, "bowling crease":3, "bowling green":3, "bowllike":2, "bown":1, "bowse":1, "bowsing":2, "bowditch":2, "bowdrill":2, "bowel":2, "bowel movement":4, "boweled":2, "bowell":2, "bowelled":2, "boweling":3, "bowelless":3, "bowelling":3, "bowen":2, "bowenite":3, "bower":2, "bowers":2, "bowerbird":3, "boweries":3, "bowerlike":3, "bowery":3, "bowery":3, "bowfin":2, "bowgrace":2, "bowhead":2, "bowie":2, "bowie knife":3, "bowing":2, "bowingly":3, "bowknot":2, "bowleg":2, "bowlegged":3, "bowleggedness":4, "bowler":2, "bowless":2, "bowlike":2, "bowline":2, "bowman":2, "bowpot":2, "bowsaw":2, "bowser":2, "bowshot":2, "bowsprit":2, "bowstring":2, "bowstring hemp":3, "bowstringing":3, "bowstrung":2, "bowtel":2, "bowtell":2, "bowwow":2, "bowyang":2, "bowyangs":2, "bowyer":2, "box":1, "box camera":4, "box canyon":3, "box elder":3, "box girder":3, "box junction":3, "box office":3, "box spanner":3, "box-office":2, "boxball":2, "boxberry":3, "boxboard":2, "boxcar":2, "boxer":2, "boxer":2, "boxers":2, "boxfish":2, "boxfishes":3, "boxful":2, "boxhaul":2, "boxhead":2, "boxholder":3, "boxing":2, "boxing day":3, "boxing glove":3, "boxlike":2, "boxroom":2, "boxthorn":2, "boxwood":2, "boy":1, "boyce":1, "boyd":1, "boyle":1, "boyne":1, "boys' brigade":3, "boycott":2, "boycotter":3, "boyer":2, "boyertown":3, "boyfriend":2, "boyhood":2, "boyish":2, "boyishly":3, "boyishness":3, "boyla":2, "boyo":2, "boyos":2, "boysenberry":4, "boz":1, "bozeman":2, "bozcaada":4, "bozzaris":3, "boa":2, "boa constrictor":5, "boa vista":4, "boabdil":3, "boadicea":5, "boas":2, "boas":2, "boaz":2, "boadicea":5, "boanerges":4, "bobadilla":4, "bobette":2, "bobo":2, "bobo-dioulasso":4, "bobol":2, "bobotie":3, "bobche":3, "bocaccio":3, "bocage":2, "bochum":2, "bodanzky":3, "bodenheim":3, "bodensee":3, "bodega":3, "bodegones":4, "bodegn":4, "bodhi":2, "bodhidharma":4, "bodhisattva":4, "bodoni":3, "boece":2, "boer":2, "boer war":3, "boethian":4, "boethius":4, "boetius":3, "bofors gun":3, "bogan":2, "bogan":2, "bogarde":2, "bogart":2, "bogalusa":4, "bogey":2, "bogey hole":3, "bogey-hole":2, "bogeyed":2, "bogeying":3, "bogeyman":3, "boghazkeui":4, "boghazky":4, "bogie":2, "bogle":2, "bogong":2, "bogor":2, "bogot":3, "bogota":3, "bogot":4, "bogus":2, "boguslawsky":4, "bogy":2, "bohea":2, "bohea":2, "bohemia":4, "bohemia-moravia":7, "bohemian":4, "bohemian brethren":6, "bohemian forest":6, "bohemianism":5, "bohol":2, "bohorok":3, "bohunk":2, "bohuslav":3, "bohme":3, "boiardo":3, "boit":2, "boito":3, "bojardo":3, "bokassa i":4, "bokhara":3, "bokhara rug":4, "bokharan":3, "boko":2, "bokoto":3, "bola":2, "bolan pass":3, "boland":2, "bolar":2, "bolas":2, "bolection":3, "bolectioned":3, "boleyn":2, "bolero":3, "boleros":3, "boleti":3, "boletus":3, "boletuses":4, "bolide":2, "bolivia":4, "bolivares":4, "boliviano":4, "boliviano":5, "bolo":2, "boloed":2, "bolography":4, "bolometer":4, "bologna":3, "bologna":3, "bologna sausage":5, "bolognese":3, "bolograph":3, "bolographic":4, "bolographically":6, "boloing":3, "bolometric":4, "bolometrically":6, "boloney":3, "bolus":2, "boluses":3, "bolyai":2, "boma":2, "boma":2, "bomarc":2, "bomu":2, "bona":2, "bona fide":4, "bona fides":4, "bona vacantia":6, "bona-fide":2, "bonanza":3, "bonaci":3, "bonaparte":3, "bonapartism":4, "bonapartist":4, "bonapartean":5, "bonin islands":4, "bonita":3, "bonito":3, "bononcini":4, "bonus":2, "bonus issue":4, "bonuses":3, "booz":2, "bootes":3, "bophuthatswana":5, "bor'":2, "bora":2, "bora bora":4, "boracic":3, "boraginaceous":5, "borah":2, "borak":2, "borane":2, "borasca":3, "borasco":3, "borate":2, "borated":3, "borating":3, "borax":2, "boraxes":3, "boraces":3, "boracic":3, "boracite":3, "borazon":3, "borel":2, "boreal":3, "boreal":3, "boreas":3, "boreadae":4, "boreum":3, "bori":2, "boric":2, "boric acid":4, "boride":2, "boris":2, "borislav":3, "boron":2, "boron carbide":4, "boron nitride":4, "boronic":3, "borodin":3, "borodino":4, "boroglyceride":5, "borohydride":4, "boronia":4, "borosilicate":5, "bosanquet":3, "bosun":2, "botanic":3, "botanical":4, "botanical garden":6, "botanically":5, "botargo":3, "botel":2, "botha":2, "bothe":2, "bothridithridia":6, "bothridium":4, "botrytis":3, "bovate":2, "bovarism":3, "bovarist":3, "bovaristic":4, "bovet":2, "bovgazk":3, "bovid":2, "bovine":2, "bovinely":3, "bovinity":4, "boyar":2, "boyard":2, "boyardism":3, "boyarism":3, "boyoma falls":4, "bozen":2, "bozo":2, "bodromius":6, "botes":4, "bpc":1, "bpi":1, "bpt":1, "br'er":1, "bra":1, "braata":2, "braatas":2, "brabanon":4, "brabble":2, "brabbler":2, "brabblement":3, "brace":1, "bracelet":2, "bracelets":2, "braceleted":3, "brach":1, "brachet":2, "brachiopodous":5, "brachycardia":5, "brachycephalous":5, "brachycephaly":5, "brachycephalic":5, "brachycranic":4, "brachydactylic":5, "brachydactylia":6, "brachydactylous":5, "brachydactyly":5, "brachydome":3, "brachystomatous":5, "brachyuran":4, "brachyurous":4, "bracken":2, "brackened":2, "brackenridge":3, "bracket":2, "bracket fungus":4, "bracketing":3, "brackish":2, "brackishness":3, "bracknell":2, "bract":1, "bracted":2, "bractless":2, "bractlet":2, "braccae":2, "braccia":2, "braccio":2, "bracer":2, "braces":2, "bracing":2, "bracingly":3, "bracingness":3, "braconid":3, "bracteal":3, "bracteate":3, "bracteole":3, "bracteose":3, "bracteolate":4, "brad":1, "brad":1, "bradawl":2, "bradbury":3, "braddock":2, "bradford":2, "bradley":2, "bradman":2, "bradshaw":2, "bradsot":2, "bradstreet":2, "bradyauxetic":5, "bradyauxetically":7, "bradyauxesis":5, "bradycardic":4, "bradycardia":5, "bradykinin":4, "bradykinetic":5, "bradykinesia":5, "bradytelic":4, "bradytely":4, "brae":1, "brag":1, "bragg":1, "bragdon":2, "braggart":2, "braggartism":3, "braggartly":3, "braggadocian":5, "braggadocianism":6, "braggadocio":5, "bragger":2, "bragging":2, "braggingly":3, "bragless":2, "brahe":1, "brahms":1, "brahmsite":2, "brahma":2, "brahman":2, "brahmanic":3, "brahmanism":3, "brahmanist":3, "brahmajnana":4, "brahmaloka":4, "brahmana":3, "brahmanee":3, "brahmani":3, "brahmaputra":4, "brahmi":2, "brahmin":2, "brahminic":3, "brahminism":3, "brahminist":3, "braid":1, "braided":2, "braider":2, "braiding":2, "braies":1, "brail":1, "braille":1, "braillewriter":3, "brailling":2, "braillist":2, "brain":1, "brain coral":3, "brain fever":3, "brain-fever bird":3, "brain-teaser":2, "brain-twister":2, "brain-washing":2, "brainchild":2, "brainchildren":3, "brainier":3, "brainiest":3, "braininess":3, "brainless":2, "brainlessly":3, "brainlessness":3, "brainlike":2, "brainpan":2, "brainpower":3, "brainsick":2, "brainsickly":3, "brainsickness":3, "brainstorm":2, "brainstorming":3, "braintree":2, "brainwash":2, "brainwasher":3, "brainwashing":3, "brainwork":2, "brainy":2, "braird":1, "braise":1, "braising":2, "brailowsky":3, "brainerd":2, "brake":1, "brake fluid":3, "brake horsepower":4, "brake lining":3, "brake parachute":4, "brakesman":2, "brakeage":2, "brakeless":2, "brakeman":2, "brakated":3, "brakating":3, "braker":2, "braking":2, "brakpan":2, "brale":1, "bram":1, "bramah":2, "bramble":2, "brambling":2, "bramblier":3, "brambliest":3, "brambly":2, "bramley":2, "bramley's seedling":4, "bramwell":2, "bran":1, "bran":1, "branch":1, "branch":1, "branch officer":4, "branching":2, "branchless":2, "branchlike":2, "brand":1, "brand":1, "brand-newness":2, "brandt":1, "brander":2, "brandless":2, "brandling":2, "branks":1, "brankie":2, "brans":1, "bransford":2, "bransle":2, "bransles":2, "brant":1, "brant":1, "brantsford":2, "brantford":2, "branchia":3, "branchiae":3, "branchial":3, "branchiate":3, "branchiform":3, "branchiopneustic":5, "branchiopodous":5, "branchiostegal":5, "branchiostegous":5, "branchiopod":4, "branchus":2, "brancusi":3, "brandeis":2, "brandenburg":3, "brandenburger":4, "brander":2, "brandering":3, "brandes":2, "brandied":2, "brandish":2, "brandisher":3, "brando":2, "brandon":2, "brandreth":2, "brandrith":2, "brandy":2, "brandy bottle":4, "brandy butter":4, "brandy snap":3, "brandying":3, "brandywine":3, "brangle":2, "brangus":2, "branguses":3, "brankier":3, "brankiest":3, "branky":2, "branle":2, "branles":2, "branner":2, "branning":2, "brannier":3, "branniest":3, "brannigan":3, "branny":2, "branstock":2, "branting":2, "branwen":2, "braque":1, "brash":1, "brashier":3, "brashiest":3, "brashiness":3, "brashly":2, "brashness":2, "brashy":2, "brasque":1, "brass":1, "brassage":2, "brassbound":2, "brassey":2, "brassie":2, "brassies":2, "brassish":2, "brassier":3, "brassiest":3, "brassily":3, "brassiness":3, "brassware":2, "brassy":2, "brasilin":3, "brass":2, "brassard":2, "brassart":2, "brasserie":3, "brassiere":2, "brassire":3, "brassica":3, "brassicaceous":4, "brass":3, "brat":1, "brattain":2, "brattice":2, "bratticed":2, "bratticing":3, "brattish":2, "brattishing":3, "brattier":3, "brattiest":3, "brattle":2, "brattleboro":4, "bratty":2, "bratwurst":2, "braun":1, "braunite":2, "braunschweig":2, "braunschweiger":3, "brauhaus":2, "brauhuser":4, "brave":1, "bravely":2, "braveness":2, "braver":2, "braveries":3, "bravery":3, "bravest":2, "braving":2, "braw":1, "brawl":1, "brawler":2, "brawn":1, "brawnier":3, "brawniest":3, "brawnily":3, "brawniness":3, "brawny":2, "brawley":2, "brawlie":2, "brawlis":2, "brawly":2, "brawlys":2, "braxton":2, "braxy":2, "bray":1, "brayer":2, "brayette":2, "brayley":2, "braz":1, "braze":1, "brazer":2, "brazing":2, "brazilin":3, "brazzaville":3, "brabant":2, "bracae":2, "bracero":3, "braceros":3, "brachistochrone":4, "brachistochronic":5, "brachia":3, "brachial":3, "brachialgia":5, "brachiate":3, "brachiation":4, "brachiator":4, "brachiopod":4, "brachiosaurus":5, "brachium":3, "brachycerous":4, "brachylogy":4, "brachypterous":4, "bradenton":3, "bradoon":2, "brady":2, "braga":2, "brage":2, "bragi":2, "braguette":2, "brahe":2, "brahui":3, "bramante":3, "brasier":2, "brasil":2, "brasil":2, "brasilein":4, "brasier":3, "brasov":2, "braslia":4, "brasia":3, "bratina":3, "bratislava":4, "brava":2, "bravais lattice":4, "bravado":3, "bravissimo":4, "bravo":2, "bravoed":2, "bravoing":3, "bravura":3, "brayera":3, "braza":2, "brazen":2, "brazen-faced":2, "brazen-facedly":4, "brazenly":3, "brazenness":3, "brazier":2, "brazil":2, "brazil":2, "brazil nut":3, "brazilein":4, "brazilian":3, "brazilianite":4, "brazilite":3, "brazilwood":3, "brazier":3, "brazos":2, "brcs":1, "breach":1, "breach of promise":4, "breacher":2, "bread":1, "bread and butter":4, "bread-and-butter":2, "breadth":1, "breadthless":2, "breadthways":2, "breadthwise":2, "breadbasket":3, "breadboard":2, "breadfruit":2, "breadless":2, "breadlessness":3, "breadline":2, "breadnut":2, "breadroot":2, "breadstuff":2, "breadwinner":3, "breadwinning":3, "break":1, "break even":3, "break into":3, "break-even":2, "breakage":2, "breakable":3, "breakableness":4, "breakably":3, "breakaway":3, "breakbone fever":4, "breakdown":2, "breakdown van":3, "breaker":2, "breakeven chart":4, "breakfast":2, "breakfaster":3, "breakfastless":3, "breakfront":2, "breaking":2, "breakless":2, "breakneck":2, "breakout":2, "breakover":3, "breakpoint":2, "breakthrough":2, "breakup":2, "breakwater":3, "breakweather":3, "breakwind":2, "bream":1, "bream":1, "breast":1, "breast-beater":2, "breast-beating":2, "breastbone":2, "breastfast":2, "breasting":2, "breastless":2, "breastpin":2, "breastplate":2, "breastplough":2, "breastplow":2, "breaststroke":2, "breastsummer":3, "breastwork":2, "breasfed":2, "breasfeeding":3, "breasted":2, "breath":1, "breath-taking":2, "breathe":1, "breatheableness":4, "breathable":3, "breathalyse":3, "breathalyser":4, "breathalyze":3, "breathalyzer":4, "breather":2, "breathing":2, "breathing space":3, "breathingly":3, "breathier":3, "breathiest":3, "breathiness":3, "breathless":2, "breathlessly":3, "breathlessness":3, "breathtaking":3, "breathy":2, "brecht":1, "brecht":1, "brecksville":2, "breckenridge":3, "breckinridge":3, "brecknock":2, "brecknockshire":3, "breccia":3, "breccial":3, "brecciate":3, "brecciated":4, "brecciating":4, "brecciation":4, "brecon":2, "breconshire":3, "bred":1, "brede":1, "bree":1, "breech":1, "breech delivery":5, "breechblock":2, "breechcloth":2, "breechclout":2, "breeches":2, "breeches buoy":3, "breeching":2, "breechless":2, "breechloader":3, "breechloading":3, "breed":1, "breedable":3, "breeder":2, "breeder reactor":5, "breeding":2, "breeks":1, "breenger":2, "breeze":1, "breezeless":2, "breezelike":2, "breezeway":2, "breezing":2, "breezier":3, "breeziest":3, "breezily":3, "breeziness":3, "breezy":2, "bregma":2, "bregmatic":3, "bregmata":3, "brei":1, "breislak":2, "brekky":2, "bremsstrahlung":3, "bremen":2, "bremerhaven":4, "bremerton":3, "brent":1, "brent":1, "brentwood":2, "brenda":2, "brendel":2, "brengun":2, "brenham":2, "brennan":2, "brenner pass":3, "brentano":3, "bres":1, "breshkovsky":3, "brest":1, "breslau":2, "bresson":2, "bressummer":3, "brethren":2, "brett":1, "breton":2, "bretta":2, "bretton woods conference":6, "breuer":2, "breugel":2, "breughel":2, "breve":1, "breviary":3, "brevis":2, "brevicaudate":4, "brevipennate":4, "brevirostrate":4, "brevity":3, "brew":1, "brewage":2, "brewer":2, "brewer":2, "brewer's yeast":3, "breweries":3, "brewery":3, "brewhouse":2, "brewhouses":3, "brewing":2, "brewis":2, "brewmaster":3, "brewster":2, "brewton":2, "brey":1, "brezhnev":2, "brea":2, "breda":2, "bregenz":2, "breloque":2, "bremen":2, "brescia":2, "brescian":2, "bretagne":2, "bretelle":2, "bretess":4, "breton":2, "bretche":3, "breva":2, "brevard":2, "brevet":2, "breveted":3, "breveting":3, "brevetted":3, "brevetting":3, "brevier":2, "brevis":2, "breviaries":4, "breviary":4, "breviate":3, "bribe":1, "bribeability":5, "bribeable":3, "bribability":5, "bribable":3, "briber":2, "briberies":3, "bribery":3, "bribing":2, "brice":1, "brick":1, "brick":1, "brickbat":2, "brickfield":2, "brickfielder":3, "brickish":2, "brickier":3, "brickiest":3, "brickkiln":2, "bricklayer":3, "bricklaying":3, "brickle":2, "brickleness":3, "bricklike":2, "brickmaker":3, "brickmaking":3, "brickred":2, "brickwork":2, "bricky":2, "brickyard":2, "bride":1, "bride":1, "bridesmaid":2, "bridegroom":2, "brideless":2, "bridelike":2, "bridewell":2, "bridge":1, "bridge":1, "bridgeable":3, "bridgeboard":2, "bridgehead":2, "bridgeless":2, "bridgelike":2, "bridgeman":2, "bridgeport":2, "bridgeton":2, "bridgetown":2, "bridgetree":2, "bridgeville":2, "bridgewall":2, "bridgewater":3, "bridgework":2, "bridges":2, "bridget":2, "bridging":2, "bridgman":2, "bridgwater":3, "bridal":2, "bridal wreath":3, "bridally":3, "bridalveil":3, "bridey":2, "bridget":2, "bridie":2, "brie":1, "brie":1, "brief":1, "briefs":1, "briefcase":2, "briefing":2, "briefless":2, "brieflessly":3, "brieflessness":3, "briefly":2, "briefness":2, "brig":1, "brig":1, "briggs":1, "briggsian":3, "bright":1, "bright":1, "bright's disease":3, "brights":1, "brighten":2, "brightener":3, "brightish":2, "brightly":2, "brightness":2, "brighton":2, "brightwaters":3, "brightwork":2, "brigand":2, "brigandage":3, "brigandish":3, "brigandishly":4, "brigandism":3, "brigandine":3, "brigantine":3, "brigantine":3, "brigadier":3, "brigadier general":6, "brigadiership":4, "brigalow":3, "brigham":2, "brighouse":2, "brigid":2, "brigit":2, "brigsail":2, "brill":1, "brill":1, "brillat-savarin":4, "brilliance":2, "brilliant":2, "brilliantly":3, "brilliantness":3, "brilliancy":3, "brilliantine":3, "brilliantined":3, "brim":1, "brimful":2, "brimfull":2, "brimfullness":3, "brimfully":3, "brimfulness":3, "brimless":2, "brimmer":2, "brimming":2, "brimmingly":3, "brimstone":2, "brimstony":3, "brine":1, "brineless":2, "bring":1, "bring about":3, "bring forward":3, "bring over":3, "bringer":2, "bringing":2, "bringing-up":2, "brink":1, "brinksmanship":3, "brinkless":2, "brinkley":2, "brinkmanship":3, "brinded":2, "brindisi":3, "brindle":2, "brindled":2, "briner":2, "brining":2, "brinish":2, "brinishness":3, "brinier":3, "briniest":3, "brininess":3, "brinjal":2, "brinny":2, "briny":2, "brise-soleil":2, "brisk":1, "briskly":2, "briskness":2, "brisbane":2, "brisket":2, "brisling":2, "bristle":2, "bristle worm":3, "bristle-grass":2, "bristleless":3, "bristlelike":3, "bristlemouth":3, "bristletail":3, "bristliness":3, "bristly":2, "bristol":2, "bristol board":3, "bristol channel":4, "bristol fashion":4, "bristols":2, "bristow":2, "brit":1, "brit":1, "britches":2, "britska":2, "britzska":2, "britzka":2, "britain":2, "british":2, "british cameroons":5, "british columbia":6, "british east africa":6, "british empire":4, "british guiana":5, "british honduras":5, "british india":5, "british isles":3, "british israelite":6, "british legion":4, "british museum":5, "british north america":7, "british somaliland":6, "british standard time":5, "british summer time":5, "british thermal unit":6, "british virgin islands":6, "british west africa":6, "british west indies":5, "britisher":3, "britishism":3, "britishly":3, "britishness":3, "briticism":3, "briton":2, "britomartis":4, "brittany":3, "britten":2, "brittle":2, "brittle-star":2, "brittlebush":3, "brittleness":3, "britton":2, "brittonic":3, "brix":1, "brian":2, "brian":2, "brian boru":4, "briand":2, "briar":2, "briard":2, "briarean":4, "briareus":4, "briarroot":3, "briarwood":3, "briary":3, "bricole":2, "bridie":2, "bridle":2, "bridle path":3, "bridler":2, "bridleless":3, "bridlewise":3, "bridoon":2, "brielle":2, "brier":2, "brierroot":3, "brierwood":3, "briery":3, "brieuc":2, "brieux":2, "brigade":2, "brigaded":3, "brigading":3, "brigitte":2, "brimo":2, "brinell number":4, "brio":2, "brioche":2, "brioches":3, "briolette":3, "briony":3, "briquet":2, "briquette":2, "briquetted":3, "briquetting":3, "briquetted":3, "briquetting":3, "brisa":2, "brisance":2, "brisant":2, "briseis":3, "briseus":3, "brisingamen":4, "brisure":2, "bris":3, "britannic":3, "britannicus":4, "britannia":4, "britannia metal":6, "briza":2, "brize":2, "brizo":2, "bro":1, "broach":1, "broacher":2, "broad":1, "broad":1, "broad arrow":3, "broad-minded":2, "broad-mindedness":3, "broad-spectrum":2, "broads":1, "broadax":2, "broadaxe":2, "broadaxes":3, "broadband":2, "broadbill":2, "broadbrim":2, "broadcast":2, "broadcasted":3, "broadcaster":3, "broadcasting":3, "broadcloth":2, "broaden":2, "broadhead":2, "broadish":2, "broadleaf":2, "broadloom":2, "broadly":2, "broadmindedly":4, "broadmoor":2, "broadsheet":2, "broadside":2, "broadsided":3, "broadsiding":3, "broadsword":2, "broadtail":2, "broadview":2, "broadway":2, "broadwayite":3, "broadwife":2, "brob":1, "brobdingnag":3, "brobdingnagian":5, "broch":1, "broche":1, "brock":1, "brockage":2, "brocken":2, "brocket":2, "brockport":2, "brockton":2, "brockway":2, "brocatel":3, "brocatelle":3, "broccoli":3, "brodehurst":2, "broddle":2, "broderick":3, "broederbond":3, "broeboe":2, "brogh":1, "brogue":1, "broglie":2, "broil":1, "broiler":2, "broiler house":3, "broilingly":3, "broider":2, "broiderer":3, "broidery":3, "broke":1, "brolga":2, "brolly":2, "brom":1, "brome":1, "bromsgrove":2, "bromberg":2, "bromeosin":4, "bromfield":2, "bromhidrosis":4, "bromley":2, "bronx":1, "bronxite":2, "bronxville":2, "bronze":1, "bronze medal":3, "bronzelike":2, "bronzing":2, "bronzite":2, "bronzy":2, "bronchi":2, "bronchitic":3, "bronchia":3, "bronchial":3, "bronchial tubes":4, "bronchially":4, "bronchiectatic":5, "bronchiectasis":5, "bronchiole":3, "bronchiolar":4, "bronchitis":3, "broncho":2, "bronchorrhagia":5, "bronchoscopist":4, "bronchoscopy":4, "bronchostomy":4, "bronchocele":3, "bronchopneumonic":5, "bronchopneumonia":5, "bronchopneumonia":6, "bronchoscope":3, "bronchoscopic":4, "bronchoscopically":6, "bronchospasm":3, "bronchus":2, "bronco":2, "broncobuster":4, "bronislaw":3, "bronson":2, "bront":2, "brontes":2, "brontosaur":3, "brontosaurus":4, "bront":3, "bronzino":3, "broo":1, "brooch":1, "brood":1, "brooder":2, "broodier":3, "broodiest":3, "broodiness":3, "broodless":2, "broodmare":2, "broody":2, "brook":1, "brook":1, "brooke":1, "brooks":1, "brooksville":2, "brookable":3, "brookfield":2, "brookhaven":3, "brookie":2, "brookings":2, "brookite":2, "brooklawn":2, "brookless":2, "brooklet":2, "brooklike":2, "brooklime":2, "brookline":2, "brooklyn":2, "brooklynese":3, "brooklynite":3, "brookville":2, "brookweed":2, "broom":1, "broome":1, "broomcorn":2, "broomrape":2, "broomsquire":2, "broomstick":2, "broomy":2, "broonzy":2, "bros":1, "bros":1, "brose":1, "brosy":2, "broth":1, "brothel":2, "brothellike":3, "brother":2, "brother jonathan":5, "brother-in-law":2, "brothers-in-law":2, "brotherhood":3, "brotherless":3, "brotherlike":3, "brotherliness":4, "brotherly":3, "brothy":2, "broteas":3, "brotula":3, "brough":1, "brought":1, "brougham":2, "broughta":2, "broughtas":2, "brouill":3, "broun":1, "brouhaha":3, "brouwer":2, "brow":1, "brown":1, "brown":1, "brown algae":3, "brown study":3, "brown sugar":3, "brown-noser":2, "browne":1, "brownsburg":2, "brownsville":2, "brownie":2, "brownie":2, "brownie guide":3, "browning":2, "browning":2, "brownish":2, "brownian movement":5, "brownness":2, "brownnosed":2, "brownnosing":3, "brownout":2, "brownprint":2, "brownshirt":2, "brownstone":2, "browntail":2, "brownwood":2, "browny":2, "browse":1, "browser":2, "browsing":2, "browband":2, "browbeat":2, "browbeaten":3, "browbeater":3, "browbeating":3, "browless":2, "browning":2, "broz":1, "broca":2, "brocade":2, "brocaded":3, "brocading":3, "broch":2, "brochantite":3, "brochette":2, "brochure":2, "broch":3, "broderie anglaise":5, "brodie":2, "brodie":2, "brogan":2, "broglie":2, "broguery":3, "broguish":2, "brokage":2, "broken":2, "broken hill":3, "broken wind":3, "broken-check":2, "broken-down":2, "broken-hearted":3, "broken-heartedly":4, "broken-heartedness":4, "brokenhearted":4, "brokenness":3, "broker":2, "brokerage":3, "brokership":3, "bromal":2, "bromate":2, "bromated":3, "bromating":3, "brome":2, "bromeliad":4, "bromeliaceous":5, "bromic":2, "bromic acid":4, "bromide":2, "bromide paper":4, "bromidic":3, "bromidically":5, "bromine":2, "brominate":3, "brominated":4, "brominating":4, "brominism":3, "bromise":2, "bromised":2, "bromism":2, "bromising":3, "bromize":2, "bromized":2, "bromizer":3, "bromizing":3, "bromidrosis":4, "bromination":4, "bromius":3, "bromization":4, "bromoil":2, "bromochloromethane":6, "bromoform":3, "bromomethane":4, "bruce":1, "bruch":1, "bruckner":2, "brucine":2, "bruegel":2, "brueghel":2, "bruges":1, "brugh":1, "brugge":2, "bruhn":1, "bruise":1, "bruiser":2, "bruising":2, "bruit":1, "bruiter":2, "brulyie":2, "brulyiement":3, "brulzie":2, "brume":1, "brumby":2, "brummagem":3, "brummagem":3, "brummell":2, "brummie":2, "brunch":1, "brunswick":2, "brunt":1, "brundidge":2, "brundisium":4, "brunhild":2, "brunhilda":3, "brunhilde":3, "brunner":2, "brush":1, "brush":1, "brush aside":3, "brush discharge":3, "brush turkey":3, "brushed":1, "brushable":3, "brusher":2, "brushfire":2, "brushiness":3, "brushless":2, "brushlessness":3, "brushlike":2, "brushpopper":3, "brushup":2, "brushwood":2, "brushwork":2, "brushy":2, "brusque":1, "brusquely":2, "brusqueness":2, "brusquerie":3, "brussel":2, "brussels":2, "brussels carpet":4, "brussels lace":3, "brussels sprout":3, "brut":1, "brut":1, "brute":1, "brutelike":2, "brutely":2, "bruteness":2, "bruted":2, "bruting":2, "brutish":2, "brutishly":3, "brutishness":3, "brutification":5, "bruxelles":2, "bruxism":2, "bruant":2, "brubeck":2, "brubu":2, "brucella":3, "brucellae":3, "brucellosis":4, "brucite":2, "bruges":2, "bruin":2, "bruja":2, "brujo":2, "brule":2, "brul":3, "brule":3, "brumaire":2, "brumal":2, "brumous":2, "brunei":2, "brunel":2, "brunelleschi":4, "brunet":2, "brunette":2, "brunetteness":3, "brunetness":3, "brunetire":4, "bruno":2, "brusa":2, "brutal":2, "brutalise":3, "brutalised":3, "brutalising":4, "brutalize":3, "brutalized":3, "brutalizing":4, "brutalitarian":6, "brutalitarianism":7, "brutality":4, "brutalization":5, "brutally":3, "brute":2, "brutified":3, "brutify":3, "brutifying":4, "brutus":2, "bryce":1, "bryndza":2, "brynhild":2, "brynza":2, "brython":2, "bryan":2, "bryansk":2, "bryant":2, "bryologist":4, "bryology":4, "bryological":5, "bryony":3, "bryophyte":3, "bryophytic":4, "bryozoa":4, "bryozoan":4, "brythonic":3, "brzegiem":2, "brnnhilde":4, "brscha":3, "brcke":3, "bre":2, "brhilde":3, "bring":2, "brl":2, "brno":2, "bs/l":1, "bsc":1, "bss":1, "bssc":1, "bst":1, "bsuperficialness":5, "bthu":1, "btl":1, "btry":1, "btu":1, "btu":1, "bub":1, "bub":1, "bubba":2, "bubble":2, "bubble and squeak":4, "bubble bath":3, "bubble car":3, "bubble chamber":4, "bubble gum":3, "bubbler":2, "bubbleless":3, "bubblelike":3, "bubblingly":3, "bubblier":3, "bubbliest":3, "bubbly":2, "bubbly-jock":2, "bubby":2, "buber":2, "buch":1, "buchan":2, "buchenwald":3, "buchite":2, "buchman":2, "buchmanism":3, "buchmanite":3, "buchner":2, "buchner funnel":4, "buck":1, "buck":1, "buck fever":3, "buck rabbit":3, "bucked":1, "bucks":1, "buckayro":3, "buckaroo":3, "buckbean":2, "buckboard":2, "buckbrush":2, "buckeen":2, "bucker":2, "bucket":2, "bucket about":4, "bucket down":3, "bucket ladder":4, "bucket out":3, "bucket seat":3, "bucket shop":3, "bucketed":3, "bucketful":3, "buckeye":2, "buckhannon":3, "buckhorn":2, "buckhound":2, "buckingham":3, "buckingham palace":5, "buckinghamshire":4, "buckish":2, "buckishly":3, "buckishness":3, "buckjump":2, "buckjumper":3, "buckle":2, "buckle":2, "buckle down":3, "buckler":2, "buckler-fern":2, "buckley":2, "buckley's chance":3, "buckleless":3, "buckling":2, "buckner":2, "bucko":2, "buckra":2, "buckram":2, "buckramed":2, "bucksaw":2, "buckshee":2, "buckshot":2, "buckskin":2, "buckskins":2, "buckstay":2, "bucktail":2, "buckthorn":2, "bucktooth":2, "bucktoothed":2, "buckwheat":2, "buckwheatlike":3, "buccal":2, "buccally":3, "buccaneer":3, "buccaneerish":4, "buccaro":3, "bucchero":3, "buccinator":4, "buccinatory":5, "buccolingual":4, "bud":1, "bud":1, "budd":1, "buddh gaya":3, "budge":1, "budge":1, "budger":2, "budgeree":3, "budgereegah":4, "budgerigar":4, "budgerygah":4, "budget":2, "budget":2, "budgetary":4, "budgeted":3, "budgeter":3, "budgie":2, "budging":2, "budded":2, "buddenbrooks":3, "budder":2, "buddha":2, "buddha":2, "buddhahood":3, "buddhi":2, "buddhism":2, "buddhist":2, "buddhistic":3, "buddhistical":4, "buddhistically":5, "buddhology":4, "buddie":2, "buddle":2, "buddler":2, "buddleia":3, "buddy":2, "buddy":2, "buddy-buddy":3, "budget account":4, "budless":2, "budlike":2, "budweis":2, "buena":2, "buena vista":4, "buenaventura":5, "bueno":2, "bueno":2, "buenos aires":4, "buf":1, "buff":1, "buffe":1, "buffability":5, "buffable":3, "buffer":2, "buffer state":3, "buffing wheel":3, "buffa":2, "buffalo":3, "buffalo":3, "buffalo bill":4, "buffalo fish":4, "buffalo gnat":4, "buffalo grass":4, "buffaloed":3, "buffalofish":4, "buffalofishes":5, "buffet":2, "buffet":2, "buffet car":3, "buffets":2, "buffeted":3, "buffeter":3, "bufflehead":3, "buffleheaded":4, "buffo":2, "buffon":2, "buffoon":2, "buffoonery":4, "buffoonish":3, "buffoonishness":4, "bug":1, "bug":1, "bugs":1, "bugaboo":3, "bugbane":2, "bugbear":2, "bugbearish":3, "bugeye":2, "bugger":2, "bugger about":4, "bugger off":3, "buggery":3, "buggier":3, "buggiest":3, "bugginess":3, "buggy":2, "bughouse":2, "bughouses":3, "bugout":2, "bugseed":2, "buhl":1, "buhl":1, "buhlwork":2, "buhr":1, "buhrstone":2, "build":1, "build into":3, "buildable":3, "builded":2, "builder":2, "building":2, "building line":3, "building society":6, "buildingless":3, "buildup":2, "built":1, "buirdly":2, "buisson":2, "buitenzorg":3, "bukh":1, "bul":1, "bul":1, "bulb":1, "bulbar":2, "bulbiferous":4, "bulbless":2, "bulbous":2, "bulg":1, "bulge":1, "bulge":1, "bulger":2, "bulgingly":3, "bulginess":3, "bulgy":2, "bulk":1, "bulk modulus":4, "bulkhead":2, "bulkheaded":3, "bulkheading":3, "bulkier":3, "bulkiest":3, "bulkily":3, "bulkiness":3, "bulky":2, "bull":1, "bull":1, "bull mastiff":3, "bull session":3, "bull terrier":4, "bull-headed":2, "bull-mastiff":2, "bull-roarer":2, "bullbaiting":3, "bullbat":2, "bulldog":2, "bulldog ant":3, "bulldog clip":3, "bulldogged":2, "bulldoggedness":4, "bulldoze":2, "bulldozed":2, "bulldozer":3, "bulldozing":3, "bullfight":2, "bullfighter":3, "bullfighting":3, "bullfinch":2, "bullfrog":2, "bullhead":2, "bullheaded":3, "bullheadedly":4, "bullheadedness":4, "bullhorn":2, "bullish":2, "bullishly":3, "bullishness":3, "bulllike":2, "bullnecked":2, "bullnose":2, "bullock":2, "bullock's heart":3, "bullocky":3, "bullpen":2, "bullpout":2, "bullpup":2, "bullring":2, "bullroarer":3, "bullshit":2, "bullshitting":3, "bullsnake":2, "bullterrier":4, "bullwhip":2, "bulnbuln":2, "bultmann":2, "bulbaceous":3, "bulbel":2, "bulbil":2, "bulbourethral":5, "bulbul":2, "bulfinch":2, "bulgar":2, "bulgaria":4, "bulgarian":4, "bulganin":3, "bulla":2, "bullace":2, "bullae":2, "bullaria":4, "bullarium":4, "bullate":2, "bullary":3, "buller":2, "bullet":2, "bulleted":3, "bullethead":3, "bulletheaded":4, "bulletheadedness":5, "bulletless":3, "bulletlike":3, "bulletproof":3, "bulletin":3, "bulletin board":4, "bulletined":3, "bullialdus":3, "bullied":2, "bullion":2, "bullionism":3, "bullionist":3, "bullionless":3, "bullitt":2, "bullock's-heart":2, "bullous":2, "bully":2, "bully beef":3, "bully-off":2, "bullyable":4, "bullyboy":3, "bullying":3, "bullyrag":3, "bullyragged":3, "bullyragger":4, "bullyragging":4, "bulrush":2, "bulwark":2, "bulwer":2, "bulwer-lytton":3, "bum":1, "bumf":1, "bump":1, "bump into":3, "bumph":1, "bumper":2, "bumper car":3, "bumping race":3, "bumpingly":3, "bumpier":3, "bumpiest":3, "bumpily":3, "bumpiness":3, "bumpkin":2, "bumpkinish":3, "bumpkinly":3, "bumpoff":2, "bumptious":2, "bumptiously":3, "bumptiousness":3, "bumpy":2, "bumbailiff":3, "bumbershoot":3, "bumble":2, "bumble-puppy":3, "bumbler":2, "bumblebee":3, "bumblebeefish":4, "bumblebeefishes":5, "bumbledom":3, "bumblefoot":3, "bumblepuppy":4, "bumbling":2, "bumblingly":3, "bumboat":2, "bumboatman":3, "bumkin":2, "bummalo":3, "bummaree":3, "bummer":2, "bumming":2, "bumsucking":3, "bun":1, "bunch":1, "bunche":1, "bunchberry":3, "bunches":2, "bunchflower":3, "bunchier":3, "bunchiest":3, "bunchily":3, "bunchiness":3, "bunchy":2, "bund":1, "bund":1, "bundh":1, "bundist":2, "bung":1, "bunger":2, "bunghole":2, "bungstarter":3, "bunk":1, "bunker":2, "bunkerage":3, "bunkhouse":2, "bunkhouses":3, "bunkie":2, "bunkmate":2, "bunn":1, "bunt":1, "buntal":2, "bunted":2, "bunting":2, "buntline":2, "bunco":2, "buncoed":2, "buncombe":2, "buncoing":3, "bundaberg":3, "bundelkhand":3, "bundesrat":3, "bundesrath":3, "bundestag":3, "bundle":2, "bundle up":3, "bundler":2, "bundobust":3, "bundu":2, "bundu bashing":4, "bungaloid":3, "bungalow":3, "bungee":2, "bungle":2, "bungler":2, "bunglesome":3, "bunglingly":3, "bunion":2, "bunker":2, "bunker hill":3, "bunkie":2, "bunko":2, "bunkoed":2, "bunkoing":3, "bunkum":2, "bunky":2, "bunny":2, "bunny":2, "bunny hug":3, "bunraku":3, "bunsen":2, "bunsen burner":4, "bunting":2, "bunton":2, "bunuel":2, "bunya-bunya":3, "bunyan":2, "bunyanesque":3, "bunyip":2, "buoy":1, "buoyage":2, "buoyant":2, "buoyantly":3, "buoyancy":3, "buonarroti":4, "buonaparte":4, "buononcini":4, "bur":1, "bur":1, "bur marigold":4, "burchfield":2, "burckhardt":2, "burd":1, "burg":1, "burgh":1, "burghal":2, "burgher":2, "burghership":3, "burghley":2, "burgage":2, "burger":2, "burk":1, "burke":1, "burke":1, "burkburnett":3, "burker":2, "burking":2, "burkite":2, "burl":1, "burl":1, "burler":2, "burn":1, "burn-up":1, "burned":1, "burns":1, "burnt":1, "burnt almond":3, "burnt offering":4, "burnt sienna":4, "burnt umber":3, "burnable":3, "burner":2, "burnham":2, "burnham scale":3, "burning":2, "burning bush":3, "burning glass":3, "burning-bush":2, "burningly":3, "burnley":2, "burnout":2, "burnside":2, "burnsides":2, "burp":1, "burr":1, "burr":1, "burred":1, "burrfish":2, "burrfishes":3, "burrstone":2, "burse":1, "burst":1, "burster":2, "bursting":2, "burt":1, "burbage":2, "burbank":2, "burberry":3, "burble":2, "burbler":2, "burbly":2, "burbot":2, "burden":2, "burden of proof":4, "burdened":2, "burdener":3, "burdenless":3, "burdensome":3, "burdensomely":4, "burdensomeness":4, "burdock":2, "burga":2, "burgas":2, "burgee":2, "burgenland":3, "burgeon":2, "burger":2, "burgess":2, "burgess":2, "burglar":2, "burglarise":3, "burglarised":3, "burglarising":4, "burglarize":3, "burglarized":3, "burglarious":4, "burglariously":5, "burglarproof":3, "burglary":3, "burgle":2, "burgoo":2, "burgos":2, "burgoyne":2, "burgomaster":4, "burgomastership":5, "burgonet":3, "burgrave":2, "burgundian":4, "burgundy":3, "burhel":2, "buriat":2, "buried":2, "buries":2, "burial":3, "burial ground":4, "burier":3, "burka":2, "burkha":2, "burlap":2, "burleigh":2, "burlesk":2, "burlesque":2, "burlesquely":3, "burlesquer":3, "burletta":3, "burley":2, "burley":2, "burleycue":3, "burlecue":3, "burlington":3, "burlingame":3, "burlier":3, "burliest":3, "burlily":3, "burliness":3, "burly":2, "burma":2, "burma road":3, "burman":2, "burmese":2, "burmese cat":3, "burmite":2, "burnet":2, "burnet":2, "burnett":2, "burney":2, "burnish":2, "burnishable":4, "burnisher":3, "burnishment":3, "burnoose":2, "burnoosed":2, "burnous":2, "burnouse":2, "burnoused":2, "burrawang":3, "burrhel":2, "burrier":3, "burriest":3, "burro":2, "burroughs":2, "burrow":2, "burrower":3, "burry":2, "bursa":2, "bursa":2, "bursal":2, "bursar":2, "bursarial":4, "bursate":2, "bursary":3, "burschenschaft":3, "burschenschaften":4, "burseed":2, "burseraceous":4, "bursiform":3, "bursitis":3, "burstone":2, "burthen":2, "burthensome":3, "burton":2, "burton":2, "burton-upon-trent":3, "burweed":2, "burwell":2, "bury":2, "bury":2, "bury st edmunds":5, "buryat":2, "burying":3, "burying beetle":5, "bus":1, "bus shelter":3, "busch":1, "busching":2, "bush":1, "bush":1, "bush jacket":3, "bush lawyer":3, "bush oyster":3, "bush telegraph":4, "bushed":1, "bushbashing":3, "bushbaby":3, "bushbeater":3, "bushbuck":2, "bushcraft":2, "bushel":2, "bushel":2, "busheled":2, "bushelled":2, "bushelbasket":4, "busheler":3, "bushelful":3, "busheling":3, "busheller":3, "bushelman":3, "busher":2, "bushfire":2, "bushhammer":3, "bushie":2, "bushing":2, "bushier":3, "bushiest":3, "bushily":3, "bushiness":3, "bushless":2, "bushlike":2, "bushman":2, "bushman":2, "bushmaster":3, "bushnell":2, "bushpig":2, "bushranger":3, "bushranging":3, "bushtit":2, "bushveld":2, "bushwa":2, "bushwah":2, "bushwalking":3, "bushwhack":2, "bushwhacker":3, "bushwhacking":3, "bushy":2, "bushy-bearded":3, "business":2, "business college":4, "business cycle":4, "business end":3, "businesslike":3, "businessman":3, "businesswoman":4, "businesswomen":4, "busk":1, "busker":2, "buss":1, "bust":1, "bust-up":1, "buster":2, "bustier":3, "bustiest":3, "busty":2, "busbar":2, "busboy":2, "busby":2, "buses":2, "busied":2, "busing":2, "busier":3, "busiest":3, "busily":3, "buskin":2, "buskined":2, "busload":2, "busman":2, "busman's holiday":5, "busra":2, "busrah":2, "busses":2, "bussing":2, "bustard":2, "bustee":2, "buster":2, "busti":2, "bustic":2, "bustle":2, "bustled":2, "bustler":2, "bustlingly":3, "busy":2, "busy lizzie":4, "busy signal":4, "busybodies":4, "busybody":4, "busying":3, "busyness":3, "busywork":3, "but":1, "butch":1, "butch":1, "butcher":2, "butcher's":2, "butcher's hook":3, "butcher's-broom":2, "butcherbird":3, "butcherer":3, "butcheries":3, "butcherliness":4, "butcherly":3, "butchery":3, "bute":1, "buteshire":2, "butt":1, "butt":1, "butte":1, "butte":1, "buttinski":3, "buttinsky":3, "buttstock":2, "buttstrap":2, "buttstrapped":2, "buttstrapping":3, "butler":2, "butler":2, "butlerage":3, "butleries":3, "butlerlike":3, "butlership":3, "butlery":3, "butsu":2, "buttals":2, "butter":2, "butter bean":3, "butter muslin":4, "butter up":3, "butter-and-eggs":2, "butterball":3, "butterbump":3, "butterbur":3, "butterbush":3, "buttercup":3, "butterfat":3, "butterfingered":4, "butterfingers":4, "butterfish":3, "butterfishes":4, "butterflied":3, "butterflies":3, "butterfly":3, "butterfly bush":4, "butterfly fish":4, "butterfly nut":4, "butterfly valve":4, "butterfly weed":4, "butterfly-flower":4, "butterfly-pea":3, "butterflyfish":4, "butterflyfishes":5, "butterflying":4, "butterflylike":4, "butteries":3, "butterine":3, "butteriness":4, "butterless":3, "butterlike":3, "buttermere":3, "buttermilk":3, "butternut":3, "butterpaste":3, "butterscotch":3, "butterweed":3, "butterwort":3, "buttery":3, "butting":2, "buttle":2, "buttock":2, "buttocked":2, "button":2, "button day":3, "button quail":3, "button tree":3, "button up":3, "button-down":2, "button-eared":2, "buttons":2, "buttonball":3, "buttonbush":3, "buttoner":3, "buttonhole":3, "buttonhole stitch":4, "buttonholed":3, "buttonholer":4, "buttonholing":4, "buttonhook":3, "buttonless":3, "buttonlike":3, "buttonmold":3, "buttonmould":3, "buttonwood":3, "buttony":3, "buttress":2, "buttress root":3, "buttressless":3, "buttresslike":3, "butty":2, "buxom":2, "buxomly":3, "buxomness":3, "buxtehude":4, "buxton":2, "buy":1, "buy into":3, "buys ballot's law":4, "buyable":3, "buyer":2, "buyers' market":4, "buying":2, "buzz":1, "buzzer":2, "buzzingly":3, "buzzwig":2, "buzzard":2, "buzzardlike":3, "buzzardly":3, "bubal":2, "bubaline":3, "bubalis":3, "buber":2, "bubinga":3, "bubo":2, "buboed":2, "bubonic":3, "bubonic plague":4, "bubonocele":4, "bubona":3, "bucaramanga":5, "bucentaur":3, "bucephalus":4, "buchanan":3, "bucharest":3, "buchu":2, "bucolic":3, "bucolics":3, "bucolical":4, "bucolically":5, "bucolion":4, "bucovina":4, "bucrania":4, "bucranium":4, "bucure":3, "bucuresti":3, "budapest":3, "budnny":4, "buell":2, "buford":2, "bufotenin":4, "bufotenine":4, "buganda":3, "bugayev":3, "bugle":2, "bugled":2, "bugler":2, "bugleweed":3, "bugloss":2, "bugong":2, "buibui":4, "bujumbura":4, "bukavu":3, "bukhara":3, "bukhara rug":4, "bukharin":3, "bukovina":4, "bulawayo":4, "bulimic":3, "bulimia":4, "bulimiac":4, "buna":2, "buna-n":2, "buna-s":2, "bunaea":3, "bunin":2, "bunodont":3, "bunus":2, "buoy":2, "buoyage":3, "buphagus":3, "buphonia":4, "buprestid":3, "bura":2, "buraida":3, "buran":2, "buraq":2, "buraydah":3, "bure":2, "bureau":2, "bureaucracy":4, "bureaucratize":4, "bureaucratized":4, "bureaucratizing":5, "bureaucratization":6, "bureaus":2, "bureaux":2, "bureaucrat":3, "bureaucratic":4, "bureaucratism":4, "bureaucratically":6, "bureaucracy":4, "bureaucratise":4, "bureaucratize":4, "burelly":3, "buret":2, "burette":2, "burelage":3, "burel":4, "buri":2, "burin":2, "buroo":2, "burundi":3, "burushaski":4, "busera":3, "bushire":2, "bushido":3, "busiris":3, "busoni":3, "busuuti":3, "butane":2, "butat":2, "butacaine":3, "butadiene":4, "butanol":3, "butanone":3, "butene":2, "butenedioic acid":7, "butes":2, "butenandt":3, "buteo":3, "buteonine":4, "butung":2, "butyl":2, "butyl":2, "butyl alcohol":5, "butylene":3, "butyn":2, "butyral":3, "butyraldehyde":5, "butyrate":3, "butyraceous":4, "butyric":3, "butyric acid":5, "butyrin":3, "butyrically":5, "butyryl":3, "bvm":1, "bwana":2, "bwg":1, "by-bidder":2, "by-bidding":2, "by-election":3, "by-line":1, "by-name":1, "by-pass":1, "by-passer":2, "by-past":1, "by-path":1, "by-plot":1, "by-product":2, "by-road":1, "by-talk":1, "by-work":1, "byblis":2, "byblos":2, "bydgoszcz":2, "bye":1, "bye-bye":1, "bye-election":3, "byelgorod-dnestrovski":5, "byelaw":2, "byelorussia":4, "byelorussian":4, "byelostok":3, "byelovo":3, "byng":1, "byo":1, "byrd":1, "byre":1, "byrl":1, "byrle":1, "byrne":1, "byrnes":1, "byrgius":3, "byrnie":2, "byrri":2, "byrrus":2, "byssal":2, "byssaceous":3, "byssi":2, "byssinosis":4, "byssus":2, "byssuses":3, "byte":1, "byz":1, "byzant":2, "byzantine":3, "byzantine church":4, "byzantine empire":5, "byam":2, "bygone":2, "bylane":2, "bylaw":2, "byliner":3, "byname":2, "bypass":2, "bypass engine":4, "bypass ratio":5, "bypasser":3, "bypassing":3, "bypath":2, "byplay":2, "byroad":2, "byron":2, "byronic":3, "byronically":5, "bystander":3, "bystreet":2, "bytom":2, "bytownite":3, "byway":2, "byword":2, "bywoner":3, "byzantinism":4, "byzantium":4, "byzas":2, "bb":4, "brny":4, "btard-montrachet":5, "bcquer":3, "barnaise":4, "bchamel":4, "bla":3, "branger":4, "brnice":5, "bton":3, "bziers":3, "bches-de-mer":3, "btise":3, "bo-bo":5, "bhme":3, "bhmerwald":4, "bnpa":3, "bttger":3, "bnde":3, "blow":3, "barnaise":3, "bchar":2, "bchamel sauce":4, "bjart":2, "blow":2, "bme":2, "bo-bo":3, "branger":3, "btise":2, "bton de commandement":6, "bziers":2, "c battery":4, "c horizon":4, "c's":1, "c-3":1, "c-axes":2, "c-axis":2, "c-bias":2, "c-in-c":1, "c-note":1, "c/a":1, "c/d":1, "c/f":1, "c/n":1, "c/n":1, "c/o":1, "ca'canny":2, "caaba":2, "cab":1, "cab":1, "cabe":1, "cabasset":3, "cabala":3, "cabalism":3, "cabalist":3, "cabalistic":4, "cabalistical":5, "cabalistically":6, "cabaret":3, "cabbage":2, "cabbage bug":3, "cabbage lettuce":4, "cabbage palm":3, "cabbage palmetto":5, "cabbage root fly":4, "cabbage white":3, "cabbaged":2, "cabbagehead":3, "cabbagelike":3, "cabbagetown":3, "cabbageworm":3, "cabbaging":3, "cabbagy":3, "cabbala":3, "cabbalism":3, "cabbalist":3, "cabbalistic":4, "cabbalistical":5, "cabbalistically":6, "cabbie":2, "cabbing":2, "cabble":2, "cabby":2, "cabdriver":3, "cabell":2, "cabezon":3, "cabezone":3, "cabezones":4, "cabin":2, "cabin boy":3, "cabin class":3, "cabin cruiser":4, "cabin-class":2, "cabinet":3, "cabinet pudding":5, "cabinet-maker":4, "cabinetmaker":5, "cabinetmaking":5, "cabinetry":4, "cabinetwork":4, "cabinetworker":5, "cabirean":4, "cabman":2, "cabot":2, "cabochon":3, "cabotage":3, "cabriole":3, "cabriolet":4, "cabstand":2, "cache":1, "cachepot":2, "cachalot":3, "caching":2, "cachinnate":3, "cachinnated":4, "cachinnating":4, "cachinnation":4, "cachinnator":4, "cachinnatory":5, "cack":1, "cack-handed":2, "cackle":2, "cackler":2, "caccia":2, "cacciatora":4, "cacciatore":4, "caccini":3, "cacodaemon":4, "cacodaemonic":5, "cacodemon":4, "cacodemonic":5, "cacodyl":3, "cacodylate":4, "cacodylic":4, "cacoepy":4, "cacoethic":4, "cacoethes":4, "cacogenic":4, "cacogenics":4, "cacographic":4, "cacomistle":4, "cacomixle":4, "cacophonic":4, "cacophonically":6, "cacothes":5, "cacqueteuse":3, "cacqueteuses":4, "cactaceous":3, "cacti":2, "cactoid":2, "cactus":2, "cactuses":3, "cactuslike":3, "cad":1, "cad":1, "cade":1, "cade":1, "cadge":1, "cadger":2, "cadging":2, "cadgily":3, "cadginess":3, "cadgy":2, "caddice":2, "caddiced":2, "caddicefly":3, "caddie":2, "caddie car":3, "caddie cart":3, "caddied":2, "caddis":2, "caddis fly":3, "caddis worm":3, "caddised":2, "caddish":2, "caddishly":3, "caddishness":3, "caddisfly":3, "caddisworm":3, "caddoan":3, "caddy":2, "caddying":3, "cadillac":3, "cadman":2, "cadmean":3, "cadmean victory":6, "cadmic":2, "cadmium":3, "cadmium cell":4, "cadmium sulphide":5, "cadmus":2, "cadwallader":4, "caen":1, "caerleon":3, "caernarfon":3, "caernarvon":3, "caernarvonshire":4, "caerphilly":3, "caesalpiniaceous":6, "caesarea":4, "caesarea mazaca":7, "caespitose":3, "caespitosely":4, "caestus":2, "caecally":3, "caecilian":4, "caecum":2, "caelian":3, "caelum":2, "caeneus":3, "caenis":2, "caenogenesis":5, "caenogenetic":5, "caenogenetically":7, "caenozoic":4, "caeoma":3, "caesar":2, "caesaraugusta":5, "caesarean":4, "caesarean section":6, "caesarism":3, "caesarist":3, "caesarian":4, "caesaropapism":5, "caesaropapist":5, "caesium":3, "caesium clock":4, "caesura":3, "caesurae":3, "caesural":3, "caesuras":3, "caesuric":3, "caetano":3, "caf":1, "caff":1, "cafeteria":5, "caffa":2, "caffein":2, "caffeine":2, "caffeinic":3, "caffeinism":3, "caffeina":3, "caffeism":3, "caftan":2, "caftaned":2, "cag-handed":2, "cage":1, "cage":1, "cageless":2, "cagelike":2, "cageling":2, "cagey":2, "cager":2, "cagey":2, "caging":2, "cagier":3, "cagiest":3, "cagily":3, "caginess":3, "cagmag":2, "cagney":2, "cagy":2, "cain":1, "cain":1, "caine":1, "caingang":2, "cainism":2, "cainite":2, "cainitic":3, "caird":1, "caird":1, "cairn":1, "cairns":1, "cairngorm":2, "cairngorm mountains":4, "cairny":2, "caisson":2, "caisson disease":4, "caissoned":2, "caithness":2, "caitlin":2, "caiaphas":3, "caicos islands":4, "caiman":2, "cainogenesis":5, "cainozoic":4, "cairene":2, "cairo":2, "caitiff":2, "caius":2, "cajeput":3, "cajeputol":4, "cajeputole":4, "cajuput":3, "cake":1, "cakewalk":2, "cakewalker":3, "caking":2, "cakra":2, "cakravartin":4, "cal":1, "cal":1, "calc-sinter":2, "calc-tufa":2, "calced":1, "calcsinter":3, "calcspar":2, "caldwell":2, "calf":1, "calf's-foot jelly":3, "calfless":2, "calflike":2, "calfskin":2, "calif":1, "calk":1, "calker":2, "call":1, "call letters":3, "call money":3, "call number":3, "call-up":1, "callable":3, "callboy":2, "caller":2, "calling":2, "calling card":3, "callout":2, "calm":1, "calmingly":3, "calmier":3, "calmiest":3, "calmly":2, "calmness":2, "calmy":2, "calque":1, "calve":1, "calves":1, "calving":2, "calx":1, "calxes":2, "calais":2, "calandria":4, "calabar":3, "calabar bean":4, "calabash":3, "calabazilla":5, "calaboose":3, "calabrasella":5, "calaloo":3, "calalu":3, "calamanco":4, "calamander":4, "calamary":4, "calamine":3, "calamint":3, "calamite":3, "calamitean":5, "calamondin":4, "calamondin orange":6, "calamus":3, "calathiform":4, "calathus":3, "calaverite":4, "calcar":2, "calcareous":4, "calcareously":5, "calcareousness":5, "calcaria":4, "calcanea":4, "calcaneal":4, "calcanean":4, "calcanei":4, "calcaneum":4, "calcaneus":4, "calcarate":3, "calcarated":4, "calcariferous":5, "calces":2, "calceiform":4, "calceolaria":6, "calceolate":4, "calchas":2, "calcic":2, "calcicolous":4, "calciferol":4, "calciferous":4, "calcific":3, "calcifugous":4, "calcine":2, "calcined":2, "calcinable":4, "calcinatory":5, "calciner":3, "calcining":3, "calciphobous":4, "calcite":2, "calcitic":3, "calcicole":3, "calcified":3, "calcification":5, "calcifuge":3, "calcify":3, "calcifying":4, "calcimine":3, "calcimined":3, "calciminer":4, "calcimining":4, "calcination":4, "calcinator":4, "calciphile":3, "calciphilic":4, "calciphobe":3, "calciphobic":4, "calcitonin":4, "calcium":3, "calcium carbide":5, "calcium carbonate":6, "calcium chloride":5, "calcium cyanamide":7, "calcium hydroxide":6, "calcium light":4, "calcium oxide":5, "calcium phosphate":5, "calcutta":3, "calculate":3, "calculated":4, "calculatedly":5, "calculating":4, "calculating machine":6, "calculatingly":5, "calculability":6, "calculable":4, "calculably":4, "calculagraph":4, "calculation":4, "calculative":4, "calculator":4, "calculous":3, "calculus":3, "calculus of variations":8, "caldaria":4, "caldarium":4, "calder":2, "caldera":3, "calderas":3, "calderca":4, "caldora":3, "caldron":2, "calends":2, "calendar":3, "calendar day":4, "calendar month":4, "calendar year":4, "calender":3, "calender":3, "calenderer":4, "calenture":3, "calentural":4, "calenturish":4, "caledonia":5, "caledonian":5, "caledonian canal":7, "calefaction":4, "calefactive":4, "calefactory":5, "calefacient":4, "calgary":3, "calhoun":2, "califate":3, "caliphal":3, "caliphate":3, "calisthenic":4, "calisthenics":4, "calisthenical":5, "caliban":3, "caliber":3, "calibered":3, "calibrate":3, "calibrated":4, "calibrater":4, "calibrating":4, "calibration":4, "calibrator":4, "calibre":3, "calibred":3, "calices":3, "calicle":3, "calico":3, "calico bush":4, "calicoed":3, "calicoback":4, "calicut":3, "calida":3, "caliduct":3, "california":4, "californian":4, "californite":4, "california":5, "california poppy":7, "californium":5, "calimanco":4, "calimere":3, "calipash":3, "calipatria":5, "calipee":3, "caliper":3, "caliperer":4, "calisaya":4, "calkin":2, "calla":2, "calla":2, "callais":2, "callan":2, "callant":2, "callas":2, "callaghan":3, "caller":2, "callet":2, "callicrates":4, "callidice":4, "callie":2, "calligrapher":4, "calligraphist":4, "calligraphy":4, "callimachus":4, "callipolis":4, "callippus":3, "callipus":3, "calliste":3, "callisthenic":4, "callisthenics":4, "callisto":3, "callida":3, "calligraphic":4, "calligraphically":6, "calliopsis":4, "calliope":4, "calliope":4, "calliopean":5, "callipash":3, "calliper":3, "calliper rule":4, "calliperer":4, "callipygian":5, "callipygous":4, "callithump":3, "callithumpian":5, "callose":2, "callosity":4, "callot":2, "callous":2, "callously":3, "callousness":3, "callow":2, "callowness":3, "callosal":3, "callus":2, "callused":2, "calluses":3, "callusing":3, "cally":2, "calmative":3, "calor gas":3, "calomel":3, "calorescence":4, "calorescent":4, "caloreceptor":5, "caloricity":5, "calorie":3, "calorie":3, "calorific":4, "calorific value":6, "calorifically":6, "calorimeter":5, "calorimetry":5, "calorize":3, "calorized":3, "calorizer":4, "calorizing":4, "calorimetric":5, "calorimetrically":7, "calory":3, "caloyer":3, "calpac":2, "calpack":2, "calpacked":2, "calpe":2, "calpurnia":4, "caltanissetta":5, "caltech":2, "calthrop":2, "caltrap":2, "caltrop":2, "calumny":3, "calumet":3, "calutron":3, "calvaria":4, "calvados":3, "calvary":3, "calvary":3, "calvary cross":4, "calvert":2, "calvin":2, "calvinism":3, "calvinist":3, "calvinistic":4, "calvinistical":5, "calvinistically":6, "calvina":3, "calvities":4, "calvous":2, "calvus":2, "calv":3, "calycate":3, "calyce":3, "calyces":3, "calycine":3, "calycle":3, "calydon":3, "calydonian":5, "calydonian boar":6, "cam":1, "cam":1, "camb":1, "cambs":1, "came":1, "cameroun":2, "camp":1, "camp":1, "camp follower":4, "camp meeting":3, "campbell":2, "campbell-bannerman":4, "campbell-stokes recorder":5, "campbellsville":3, "campbellism":3, "campbellite":3, "campbeltown":3, "campcraft":2, "camper":2, "campfire":2, "campground":2, "camping ground":3, "campier":3, "campiest":3, "campout":2, "camporee":3, "campshed":2, "campshedding":3, "campsheeting":3, "campshot":2, "campsite":2, "campstool":2, "campy":2, "camas":2, "camas":2, "camass":2, "camaca":3, "camaka":3, "camarilla":4, "camarillas":4, "cambay":2, "camber":2, "camberwell":3, "camberwell beauty":5, "cambist":2, "cambistry":3, "cambia":3, "cambial":3, "cambiata":4, "cambion":3, "cambium":3, "cambiums":3, "cambon":2, "camboose":2, "camborne-redruth":3, "cambodia":4, "cambodian":4, "cambogia":4, "cambrai":2, "cambrel":2, "cambric":2, "cambridge":2, "cambridge blue":3, "cambridgeshire":3, "cambria":3, "cambrian":3, "cambrian mountains":5, "cambyses":3, "camden":2, "camel":2, "camel's hair":3, "camel's-hair":2, "cameleer":3, "camelhair":3, "camellike":3, "camembert":3, "camera":3, "camera lucida":6, "camera obscura":6, "camera tube":4, "camera-ready copy":6, "camera-shy":3, "camerae":3, "cameral":3, "cameras":3, "cameralism":4, "cameralist":4, "cameralistic":5, "cameraman":4, "camerlengo":4, "camerlingo":4, "cameron":3, "cameronian":5, "camelot":3, "cameo":3, "cameo":3, "cameo ware":4, "cameos":3, "cameroon":3, "cameroons":3, "camiknickers":4, "camion":3, "camions":3, "camisade":3, "camisard":3, "camisado":4, "camisole":3, "camla":2, "camlet":2, "camletted":3, "camletting":3, "cammaerts":2, "camouflage":3, "camouflaged":3, "camouflager":4, "camouflaging":4, "camoufleur":3, "camoca":3, "camoens":3, "camomile":3, "camons":4, "campaign":2, "campaigner":3, "campanus":3, "campanula":4, "campanulate":4, "campanulaceous":5, "campagna":3, "campagna":3, "campagne":3, "campagus":3, "campania":3, "campania":4, "campanile":4, "campaniles":4, "campanili":4, "campanologer":5, "campanologist":5, "campanology":5, "campanological":6, "campanologically":7, "campe":2, "campestral":3, "campeche":3, "campesino":4, "camphene":2, "camphire":2, "camphol":2, "camphor":2, "camphor ball":3, "camphor ice":3, "camphor tree":3, "camphoric":3, "camphorweed":3, "camphorate":3, "camphorated":4, "camphorated oil":5, "camphorating":4, "campimeter":4, "campimetry":4, "campignian":3, "campimetrical":5, "campina grande":5, "campinas":3, "campion":3, "campion":3, "campo":2, "campo formio":4, "campo grande":4, "campong":2, "campos":2, "campobello":4, "campodean":4, "campodeid":4, "campodeiform":5, "campus":2, "campus university":7, "campuses":3, "campylite":3, "campylotropous":5, "camshaft":2, "camwood":2, "can":1, "can":1, "can't":1, "can-opener":3, "canad":1, "canandelabrum":4, "canc":1, "cane":1, "cane sugar":3, "canebrake":2, "canelike":2, "canework":2, "cang":1, "cangue":1, "canned":1, "cannes":1, "cans":1, "canst":1, "cant":1, "cant":1, "cantab":1, "canter":2, "cantic":2, "canting arms":3, "cantingly":3, "cantingness":3, "cantish":2, "cantily":3, "cantiness":3, "canty":2, "canandaigua":4, "canaster":3, "canace":3, "canada":3, "canada balsam":5, "canada goose":4, "canada lily":5, "canada thistle":5, "canajoharie":5, "canakin":3, "canaletto":4, "canalicular":5, "canaliculate":5, "canaliculation":6, "canaliculus":5, "canalise":3, "canalize":3, "cananean":4, "canap":3, "canap":4, "canastota":4, "canberra":3, "canby":2, "cancan":2, "cancel":2, "canceled":2, "cancelled":2, "cancelability":6, "cancelable":4, "canceler":3, "canceling":3, "cancellate":3, "cancellated":4, "cancellability":6, "cancellable":4, "cancellation":4, "canceller":3, "cancelli":3, "cancelling":3, "cancellus":3, "cancer":2, "cancer":2, "cancer stick":3, "cancered":2, "cancerate":3, "cancerated":4, "cancerating":4, "canceration":4, "cancerization":5, "cancerous":3, "cancerously":4, "cancerousness":4, "cancha":2, "canciones":3, "cancin":3, "cancri":2, "cancrine":2, "cancrizans":3, "cancroid":2, "candace":2, "candee":2, "candent":2, "candescence":3, "candescent":3, "candescently":4, "candela":3, "candelabra":4, "candelabrum":4, "candia":2, "candice":2, "candid":2, "candid camera":5, "candide":2, "candidly":3, "candidness":3, "candie":2, "candied":2, "candia":3, "candida":3, "candidate":3, "candidacy":4, "candidature":4, "candiot":3, "candiote":3, "candle":2, "candle-tree":2, "candler":2, "candlebeam":3, "candleberry":4, "candlefish":3, "candlefishes":4, "candleholder":4, "candlelight":3, "candlemaker":4, "candlemas":3, "candlenut":3, "candlepin":3, "candlepins":3, "candlepower":4, "candlestand":3, "candlestick":3, "candlewick":3, "candlewood":3, "candolle":2, "candor":2, "candour":2, "candy":2, "candy":2, "candy store":3, "candy-striped":2, "candys":2, "candyfloss":3, "candying":3, "candylike":3, "candytuft":3, "canens":2, "caner":2, "canephore":3, "canfield":2, "canfield":2, "canful":2, "caning":2, "canister":3, "canisteo":4, "canikin":3, "canker":2, "cankered":2, "cankeredly":3, "cankeredness":3, "cankerous":3, "cankerworm":3, "canna":2, "cannae":2, "cannabic":3, "cannabin":3, "cannabis":3, "cannanore":3, "cannel":2, "cannel coal":3, "cannelloni":4, "canner":2, "canneries":3, "cannery":3, "cannelons":3, "canneloni":4, "cannelure":3, "cannetille":3, "canning":2, "canning":2, "canning basin":4, "cannizzaro":4, "cannibal":3, "cannibalise":4, "cannibalism":4, "cannibalistic":5, "cannibalistically":7, "cannibalize":4, "cannibalized":4, "cannibalizing":5, "cannibalization":6, "cannibally":4, "cannier":3, "canniest":3, "cannikin":3, "cannily":3, "canniness":3, "cannock":2, "cannon":2, "cannon":2, "cannon bone":3, "cannon fodder":4, "cannonade":3, "cannonaded":4, "cannonading":4, "cannonball":3, "cannoneer":3, "cannoneering":4, "cannonry":3, "cannot":2, "cannula":3, "cannular":3, "cannulate":3, "cannulate":3, "cannulation":4, "canny":2, "canon":2, "canon law":3, "canoness":3, "canonicity":5, "canonise":3, "canonised":3, "canonist":3, "canoniser":4, "canonising":4, "canonistic":4, "canonistical":5, "canonize":3, "canonized":3, "canonizer":4, "canonizing":4, "canonization":5, "canonlike":3, "canonry":3, "canonship":3, "canopied":3, "canopy":3, "canopying":4, "canrobert":3, "canso":2, "canso":2, "cantal":2, "cantankerous":4, "cantankerously":5, "cantankerousness":5, "cantabile":4, "cantabrigian":5, "cantabrian mountains":6, "cantala":3, "cantalever":4, "cantaliver":4, "cantaloup":3, "cantaloupe":3, "cantata":3, "cantatrice":3, "cantatrice":4, "cantatrici":4, "canteen":2, "canter":2, "canterbury":4, "canterbury":4, "canterbury bell":5, "canterburian":5, "canthal":2, "cantharis":3, "cantharidal":4, "cantharides":4, "canthari":3, "cantharidean":5, "cantharidian":5, "cantharus":3, "canthus":2, "canthus":2, "cantillate":3, "cantillated":4, "cantillating":4, "cantillation":4, "cantillon":3, "canticle":3, "canticle of canticles":7, "canticles":3, "cantigny":3, "cantilever":4, "cantilena":4, "cantilever":4, "cantilever bridge":5, "cantina":3, "cantle":2, "cantling":2, "canto":2, "canton":2, "canton":2, "canton crepe":3, "canton flannel":4, "canton river":4, "cantonal":3, "cantonalism":4, "cantonese":3, "cantonment":3, "cantor":2, "cantor":2, "cantoris":3, "cantorship":3, "cantos":2, "cantoris":3, "cantorial":4, "cantraip":2, "cantrap":2, "cantrip":2, "cantus":2, "cantus firmus":4, "canula":3, "canulate":3, "canvas":2, "canvass":2, "canvasser":3, "canvasback":3, "canvaslike":3, "cany":2, "canyon":2, "canyon":2, "canzo":2, "canzona":3, "canzone":3, "canzonet":3, "canzonetta":4, "canzoni":3, "caoutchouc":2, "caodaism":3, "cap":1, "cap of maintenance":5, "cap'n":1, "cap-haitien":3, "cape":1, "cape":1, "cape breton island":5, "cape buffalo":4, "cape colored":3, "cape colony":4, "cape doctor":3, "cape gooseberry":4, "cape jasmine":3, "cape peninsula":5, "cape province":3, "cape sparrow":3, "cape verde islands":4, "capeskin":2, "capetown":2, "capetonian":4, "caph":1, "caps":1, "capt":1, "capelline":3, "capercaillie":4, "capercailzie":4, "capelin":3, "capeline":3, "capful":2, "capillaries":4, "capillarity":5, "capillary":4, "capillaceous":4, "capillatus":4, "caping":2, "capibara":4, "capita":3, "capital":3, "capital account":5, "capital assets":5, "capital expenditure":7, "capital gain":4, "capital gains tax":5, "capital goods":4, "capital levy":5, "capital market":5, "capital punishment":6, "capital ship":4, "capital stock":4, "capital surplus":5, "capital transfer tax":6, "capitalise":4, "capitalised":4, "capitalism":4, "capitalist":4, "capitaliser":5, "capitalising":5, "capitalistic":5, "capitalistically":7, "capitalize":4, "capitalized":4, "capitalizable":6, "capitalizer":5, "capitalizing":5, "capitalisation":6, "capitalization":6, "capitalization issue":8, "capitally":4, "capitalness":4, "capitate":3, "capitation":4, "capitative":4, "capitol":3, "capitoline":4, "capless":2, "caplin":2, "caporal":3, "caporetto":4, "cappadocia":4, "cappadocia":5, "capparidaceous":5, "cappelletti":4, "capper":2, "cappie":2, "capping":2, "cappotas":3, "cappuccino":4, "capreolate":4, "capric acid":4, "caprine":2, "capricorn":3, "capricornus":4, "caprifig":3, "caprification":5, "caprificator":5, "caprifoliaceous":6, "capriole":3, "caprioled":3, "caprioling":4, "capriote":3, "caproate":3, "capsaicin":4, "capsid":2, "capsize":2, "capsized":2, "capsizable":4, "capsizing":3, "capsian":3, "capsicum":3, "capstan":2, "capstan bar":3, "capstan lathe":3, "capstone":2, "capsule":2, "capsuled":2, "capsuling":3, "capsulise":3, "capsulize":3, "capsulized":3, "capsulizing":4, "capsular":3, "capsulate":3, "capsulated":4, "capsulation":4, "captain":2, "captain's biscuit":4, "captaincy":3, "captainship":3, "caption":2, "captionless":3, "captious":2, "captiously":3, "captiousness":3, "captive":2, "captivity":4, "captivate":3, "captivated":4, "captivating":4, "captivatingly":5, "captivation":4, "captivative":4, "captivator":4, "captor":2, "capture":2, "captured":2, "capturable":4, "capturer":3, "capturing":3, "capua":3, "capuan":3, "capuanus":4, "capuchin":3, "capuchin":3, "capulet":3, "capybara":4, "caqueteuse":2, "caquetoire":2, "car":1, "car":1, "card":1, "card":1, "card catalogue":4, "card index":3, "card reader":3, "card-carrying":3, "cards":1, "cardboard":2, "cardcastle":3, "carder":2, "cardholder":3, "cardhouse":2, "carding":2, "cardplayer":3, "cardroom":2, "cardsharp":2, "cardsharper":3, "cardsharping":3, "care":1, "care":1, "carefree":2, "carefreeness":3, "careful":2, "carefully":3, "carefulness":3, "careless":2, "carelessly":3, "carelessness":3, "caretaker":3, "caretaking":3, "careworn":2, "cark":1, "carking":2, "carkingly":3, "carl":1, "carl":1, "carl xvi gustaf":4, "carle":1, "carlsbad":2, "carlish":2, "carlishness":3, "carlson":2, "carlstadt":2, "carlton":2, "carn":1, "carp":1, "carper":2, "carping":2, "carpingly":3, "carpsucker":3, "carse":1, "cart":1, "carte":1, "carte":1, "cartesianism":3, "cartage":2, "cartable":3, "carter":2, "cartful":2, "carthorse":2, "cartload":2, "cartomancy":4, "cartwheel":2, "cartwright":2, "cartwright":2, "carve":1, "carven":2, "carver":2, "carving":2, "carving knife":3, "cara":2, "carack":2, "carat":2, "carabao":4, "carabid":3, "carabin":3, "carabine":3, "carabiner":4, "carabineer":4, "carabinier":4, "caracal":3, "caracalla":4, "caracol":3, "caracole":3, "caracoled":3, "caracolled":3, "caracoler":4, "caracoling":4, "caracoller":4, "caracolling":4, "caracul":3, "carageen":3, "caramel":3, "caramelise":4, "caramelised":4, "caramelising":5, "caramelize":4, "caramelized":4, "caramelizing":5, "caramelization":6, "carapace":3, "carapaced":3, "carapacial":4, "caravan":3, "caravanned":3, "caravaner":4, "caravaning":4, "caravanist":4, "caravanning":4, "caravansary":5, "caravanserai":5, "caravanserial":6, "caravel":3, "caraway":3, "carbamic":3, "carbamic acid":5, "carbamide":3, "carbamidine":4, "carbanion":4, "carbarn":2, "carbamate":3, "carbanil":3, "carbazole":3, "carbene":2, "carbide":2, "carbine":2, "carbimide":3, "carbineer":3, "carbinol":3, "carbolic":3, "carbolic acid":5, "carbon":2, "carbon arc":3, "carbon bisulphide":5, "carbon black":3, "carbon copy":4, "carbon cycle":4, "carbon dating":4, "carbon dioxide":5, "carbon dioxide snow":6, "carbon disulphide":5, "carbon fibre":4, "carbon microphone":5, "carbon monoxide":5, "carbon paper":4, "carbon process":4, "carbon steel":3, "carbon tetrachloride":6, "carbon tissue":4, "carbon-14 dating":4, "carbonate":3, "carbonated":4, "carbonating":4, "carbonatation":5, "carbonation":4, "carbonator":4, "carbondale":3, "carbonic":3, "carbonic acid":5, "carbonic-acid gas":5, "carboniferous":5, "carboniferous":5, "carbonise":3, "carbonised":3, "carbonisable":5, "carboniser":4, "carbonising":4, "carbonize":3, "carbonized":3, "carbonizable":5, "carbonizer":4, "carbonizing":4, "carbonium ion":6, "carbonization":5, "carbonless":3, "carbonnit":3, "carbonous":3, "carbonyl":3, "carbonyl chloride":5, "carbonylation":5, "carbonylic":4, "carbonylate":4, "carbonylated":5, "carbonylating":5, "carboxyl":3, "carboxyl group":4, "carboxylase":4, "carboxylate":4, "carboxylated":5, "carboxylating":5, "carboxylation":5, "carboxylic":4, "carboxylic acid":6, "carboy":2, "carboyed":2, "carbohydrate":4, "carbolated":4, "carbolise":3, "carbolised":3, "carbolising":4, "carbolize":3, "carbolized":3, "carbolizing":4, "carboloy":3, "carbonade":3, "carbonaceous":4, "carbonado":4, "carbonadoed":4, "carbonadoing":5, "carbonari":4, "carbonarism":4, "carbonarist":4, "carbonaro":4, "carborundum":4, "carbuncle":3, "carbuncled":3, "carbuncular":4, "carburation":4, "carburet":3, "carburetant":4, "carbureted":4, "carbureting":4, "carburetted":4, "carburetter":4, "carburetting":4, "carburettor":4, "carburetion":4, "carburetor":4, "carburise":3, "carburised":3, "carburiser":4, "carburising":4, "carburize":3, "carburized":3, "carburizer":4, "carburizing":4, "carburization":5, "carby":2, "carbylamine":4, "carcas":2, "carcase":2, "carcased":2, "carcass":2, "carcassless":3, "carcasing":3, "carcassonne":3, "carcajou":3, "carcanet":3, "carcaneted":4, "carcanetted":4, "carchemish":3, "carcinogen":4, "carcinogenic":5, "carcinogenicity":7, "carcinoma":4, "carcinomas":4, "carcinomata":5, "carcinomatoid":5, "carcinomatosis":6, "carcinosarcoma":6, "carcinosarcomas":6, "carcinosarcomata":7, "cardamom":3, "cardamon":3, "cardamum":3, "cardanus":3, "cardea":3, "cardiff":2, "cardin":2, "carditic":3, "cardiac":3, "cardialgia":5, "cardiectomy":5, "cardigan":3, "cardigan":3, "cardigan bay":4, "cardiganshire":4, "cardinal":3, "cardinal beetle":5, "cardinal flower":5, "cardinal number":5, "cardinal points":4, "cardinal virtues":5, "cardinal-bishop":4, "cardinal-deacon":4, "cardinal-priest":3, "cardinalate":4, "cardinalfish":4, "cardinalfishes":5, "cardinally":4, "cardinalship":4, "cardiography":5, "cardioid":3, "cardiologist":5, "cardiology":5, "cardiodynia":6, "cardiogram":4, "cardiograph":4, "cardiographic":5, "cardiologic":5, "cardiomegaly":6, "cardiomegalia":7, "cardiotonic":5, "cardiovascular":6, "carditis":3, "cardon":2, "cardoon":2, "cardozo":3, "carducci":3, "carduaceous":4, "cardueline":4, "caren":2, "carer":2, "caret":2, "carey":2, "carey street":3, "carfare":2, "carfax":2, "carfloat":2, "carfuffle":3, "cargo":2, "cargo cult":3, "carhop":2, "carib":2, "caribbee bark":4, "caribbees":3, "caribbean":4, "caribbean sea":5, "carie":2, "caries":2, "carillon":3, "carillonned":3, "carillons":3, "carillonneur":4, "carillonning":4, "carin":2, "caring":2, "caria":3, "cariama":4, "carian":3, "caribees":3, "cariboo mountains":5, "caribou":3, "caribou":3, "caribou eskimo":6, "caricature":4, "caricatured":4, "caricaturable":6, "caricaturing":5, "caricaturist":5, "caries":3, "carinate":3, "carinated":4, "carination":4, "carinule":3, "cariole":3, "cariosity":5, "carious":3, "carioca":4, "carioca":4, "cariocan":4, "cariogenic":5, "carisoprodol":5, "caritive":3, "carius":3, "carla":2, "carleen":2, "carless":2, "carleta":3, "carlin":2, "carline":2, "carline":2, "carling":2, "carlinville":3, "carlisle":2, "carlism":2, "carlist":2, "carlini":3, "carlita":3, "carlo":2, "carload":2, "carloadings":3, "carlos":2, "carlotta":3, "carlow":2, "carlota":3, "carlovingian":5, "carlyle":2, "carlyne":2, "carma":2, "carman":2, "carman":2, "carmarthen":3, "carmarthenshire":4, "carmagnole":3, "carmagnoles":3, "carmania":4, "carmanor":3, "carme":2, "carmel":2, "carmel":2, "carmel-by-the-sea":2, "carmela":3, "carmelite":3, "carmella":3, "carmen":2, "carmenta":3, "carmentis":3, "carmelina":4, "carmelita":4, "carmi":2, "carmine":2, "carminative":4, "carmichael":3, "carnac":2, "carnage":2, "carnal":2, "carnal knowledge":4, "carnallite":3, "carnalism":3, "carnality":4, "carnally":3, "carnalness":3, "carnap":2, "carnarvon":3, "carnarvonshire":4, "carnassial":4, "carnatic":3, "carnauba":3, "carnacian":3, "carnation":3, "carnation":3, "carnelian":3, "carnet":2, "carney":2, "carneades":4, "carnegie":3, "carneous":3, "carneus":3, "carnie":2, "carniferous":4, "carnivora":4, "carnivoral":4, "carnivorism":4, "carnivorous":4, "carnivorously":5, "carnivorousness":5, "carnified":3, "carnification":5, "carnify":3, "carnifying":4, "carniola":4, "carniolan":4, "carnival":3, "carnivalesque":4, "carnivallike":4, "carnivore":3, "carnose":2, "carnosity":4, "carnot":2, "carnot cycle":4, "carnot principle":5, "carnous":2, "carnovsky":3, "carnosine":3, "carnotite":3, "carnus":2, "carny":2, "caro":2, "caro's acid":4, "carob":2, "carol":2, "carol":2, "carol ii":3, "carole":2, "caroled":2, "carolled":2, "caroler":3, "caroling":3, "caroller":3, "carolling":3, "carom":2, "carousel":3, "carola":3, "carolean":4, "caroli":3, "caroline":3, "caroline islands":5, "carolingian":5, "carolinian":5, "carolina":4, "carolus":3, "carolus":3, "caroluses":4, "carotene":3, "carotin":3, "carpaccio":3, "carpal":2, "carpale":3, "carpalia":4, "carpathian mountains":6, "carpathians":4, "carpatho-ukraine":4, "carpe diem":4, "carpeaux":2, "carpel":2, "carpellary":4, "carpellate":3, "carpentaria":5, "carpentaria":5, "carpenter":3, "carpenter":3, "carpenter bee":4, "carpenter moth":4, "carpentersville":4, "carpentering":4, "carpenterworm":4, "carpentier":3, "carpentry":3, "carpet":2, "carpet beetle":4, "carpet bug":3, "carpet knight":3, "carpet shark":3, "carpet slipper":4, "carpet snake":3, "carpet-cut":2, "carpet-sweeper":3, "carpetbag":3, "carpetbagged":3, "carpetbagger":4, "carpetbaggery":5, "carpetbagging":4, "carpeting":3, "carpetless":3, "carpetweed":3, "carphology":4, "carpi":2, "carpinteria":5, "carpo":2, "carpologist":4, "carpology":4, "carpophagous":4, "carpophorus":4, "carport":2, "carpogonia":5, "carpogonial":5, "carpogonium":5, "carpological":5, "carpologically":6, "carpometacarpal":6, "carpometacarpus":6, "carpophore":3, "carpospore":3, "carposporic":4, "carpostome":3, "carpus":2, "carrack":2, "carracci":3, "carranza":3, "carrageen":3, "carragheen":3, "carrara":3, "carraran":3, "carrel":2, "carrel":2, "carrell":2, "carrefour":3, "carriage":2, "carriage dog":3, "carriage trade":3, "carriageway":3, "carrick bend":3, "carrick bitt":3, "carrie":2, "carried":2, "carrington":3, "carritch":2, "carrire":3, "carriable":4, "carrier":3, "carrier bag":4, "carrier pigeon":5, "carrier-free":3, "carriole":3, "carrion":3, "carrion crow":4, "carrion flower":5, "carrol":2, "carroll":2, "carrollite":3, "carrollton":3, "carrom":2, "carron oil":3, "carronade":3, "carrot":2, "carrot-top":2, "carrotiness":4, "carroty":3, "carrousel":3, "carromata":4, "carrus":2, "carry":2, "carry":2, "carry away":4, "carry back":3, "carry forward":4, "carry off":3, "carry on":3, "carry out":3, "carry over":4, "carry through":3, "carry-back":2, "carry-forward":3, "carry-on":2, "carry-over":3, "carryall":3, "carryable":4, "carrycot":3, "carrying":3, "carrying charge":4, "carrying place":4, "carrying-on":3, "carryings-on":3, "carrre":3, "carsey":2, "carshops":2, "carsick":2, "carsickness":3, "carson":2, "carson city":4, "carstensz":2, "cartagena":4, "cartel":2, "cartelism":3, "cartelist":3, "cartelistic":4, "cartelize":3, "cartelization":5, "cartellized":3, "cartellizing":4, "carter":2, "cartersville":3, "carteret":3, "carterville":3, "carteret":3, "cartesian":3, "cartesian":4, "cartesian coordinates":8, "carthage":2, "carthal":2, "carthaginian":5, "carthusian":3, "carthusian":4, "cartier":2, "cartier-bresson":3, "cartist":2, "cartilage":3, "cartilage bone":4, "cartilaginous":5, "cartilaginous fish":6, "cartographer":4, "cartography":4, "carton":2, "carton-pierre":2, "cartonnier":3, "cartonniers":3, "cartoon":2, "cartoonist":3, "cartopper":3, "cartouch":2, "cartouche":2, "cartogram":3, "cartograph":3, "cartographic":4, "cartographically":6, "cartomancy":4, "cartridge":2, "cartridge belt":3, "cartridge clip":3, "cartridge paper":4, "cartridge pen":3, "cartularies":4, "cartulary":4, "caruncle":3, "carucate":3, "carucated":4, "carvacrol":3, "carvel":2, "carvel-built":2, "carver":2, "cary":2, "caryl":2, "caryll":2, "caryn":2, "carya":3, "caryatic":4, "caryatid":4, "caryatids":4, "caryatis":4, "caryatidal":5, "caryatides":5, "caryopsis":4, "caryophyllaceous":6, "carzey":2, "case":1, "case history":4, "case-harden":2, "case-worker":2, "casebook":2, "casebound":2, "casebox":2, "caseharden":3, "casekeeper":3, "caseless":2, "caselessly":3, "caseload":2, "casemaker":3, "casemate":2, "casemated":3, "casement":2, "casement":2, "casemented":3, "casework":2, "caseworker":3, "caseworm":2, "cash":1, "cash":1, "cash discount":3, "cash on delivery":6, "cash ratio":4, "cash register":4, "cash-and-carry":2, "cashable":3, "cashableness":4, "cashbook":2, "cashbox":2, "cashdrawer":2, "cashew":2, "cashier":2, "cashmere":2, "cashmere":2, "cashmerian":4, "cask":1, "casklike":2, "casque":1, "cass":1, "cast":1, "cast about":3, "cast iron":3, "cast-iron":2, "cast-iron-plant":2, "caste":1, "casteless":2, "castable":3, "castaway":3, "caster":2, "casterless":3, "casting":2, "casting vote":3, "castoff":2, "casablanca":4, "casanova":4, "casanovanic":5, "casbah":2, "casbah":2, "cascade":2, "cascade range":3, "cascaded":3, "cascading":3, "cascara":3, "cascabel":3, "cascadia":4, "cascadian":4, "cascara":3, "cascara sagrada":6, "cascarilla":4, "caschrom":2, "caser":2, "casing":2, "casimere":3, "casimire":3, "casket":2, "casketlike":3, "caslon":2, "caspar":2, "casparian strip":5, "casper":2, "caspian":3, "caspian sea":4, "cassander":3, "cassandra":3, "cassatt":2, "cassaba":3, "cassapanca":4, "cassareep":3, "cassata":3, "cassation":3, "cassava":3, "cassel":2, "cassette":2, "cassegrainian telescope":8, "casserole":3, "casseroled":3, "casseroling":4, "cassia":2, "cassie":2, "cassie":2, "cassis":2, "cassite":2, "cassiterite":4, "cassius":2, "cassia":3, "cassiepea":5, "cassiepean":5, "cassimere":3, "cassini":3, "cassino":3, "cassino":3, "cassiodorus":5, "cassiope":4, "cassiopea":5, "cassiopean":5, "cassiopeia":5, "cassiopeiae":5, "cassiopeian":5, "cassirer":3, "cassius longinus":6, "cassock":2, "cassolette":3, "cassoon":2, "cassoulet":3, "cassone":3, "cassowaries":4, "cassowary":4, "castalides":4, "castalia":4, "castalian":4, "castanet":3, "castanets":3, "castellammare di stabia":8, "castellan":3, "castellanship":4, "castellated":4, "castellanos":4, "castellanus":4, "castellany":4, "castellation":4, "castellatus":4, "castelli":3, "castellum":3, "castellna":4, "castelnuovo-tedesco":6, "castelvetro":4, "caster sugar":4, "castile":2, "castile soap":3, "castilian":3, "castilla":3, "castigate":3, "castigated":4, "castigating":4, "castigation":4, "castigative":4, "castigator":4, "castigatory":5, "castiglione":4, "castilla":3, "castilla la vieja":6, "castillo":3, "castle":2, "castle nut":3, "castled":2, "castleford":3, "castlelike":3, "castlereagh":3, "castor":2, "castor":2, "castor and pollux":5, "castor bean":3, "castor oil":3, "castor-bean":2, "castor-oil plant":3, "castores":3, "castoreum":4, "castrate":2, "castrated":3, "castrating":3, "castrametation":5, "castration":3, "castration complex":5, "castrato":3, "castrator":3, "castries":2, "castro":2, "casual":3, "casualism":4, "casualist":4, "casually":4, "casualness":4, "casualty":4, "casuarina":5, "casuist":3, "casuistry":4, "casuistic":4, "casuistical":5, "casuistically":6, "caswell":2, "cat":1, "cat brier":3, "cat burglar":3, "cat cracker":3, "cat's cradle":3, "cat's pyjamas":4, "cat's whisker":3, "cat's whiskers":3, "cat-harpin":2, "cat-lap":1, "cat-o'-mountain":2, "catch":1, "catch basin":3, "catchall":2, "catchable":3, "catcher":2, "catchfly":2, "catchie":2, "catching":2, "catchingly":3, "catchingness":3, "catchier":3, "catchiest":3, "catchiness":3, "catchlight":2, "catchline":2, "catchment":2, "catchment area":5, "catchpenny":3, "catchphrase":2, "catchpole":2, "catchpoll":2, "catchpollery":4, "catchpolery":4, "catchup":2, "catchweight":2, "catchword":2, "catchy":2, "cate":1, "cates":1, "catesby":2, "cath":1, "cathar":2, "catharist":3, "cathari":3, "catharism":3, "catharist":3, "catharistic":4, "cather":2, "catherine":3, "catheryn":3, "catherine":3, "catherine de' medici":7, "catherine i":4, "catherine ii":4, "catherine of aragon":7, "catherine of siena":7, "catherine wheel":4, "catheter":3, "catheterise":4, "catheterised":4, "catheterising":5, "catheterize":4, "catheterized":4, "catheterizing":5, "catheterization":6, "cathetus":3, "cathie":2, "cathleen":2, "cathode":2, "cathode rays":3, "cathode-ray tube":3, "cathodic":3, "cathodo-luminescent":6, "cathodoluminescence":7, "cathodoluminescent":7, "catholic":3, "catholic":3, "catholic church":4, "catholic epistles":6, "catholicity":5, "catholicity":5, "catholicness":4, "cathomycin":4, "cathud":2, "cathy":2, "catskill":2, "catskill mountains":4, "catskills":2, "catspaw":2, "catt":1, "cattleya":3, "cattleya":3, "cataebates":4, "catamnestic":4, "catamnesis":4, "catarrhine":3, "catarrhine":3, "catarrhinian":5, "catabaptist":4, "catabolic":4, "catabolically":6, "catacaustic":4, "catachrestic":4, "catachrestically":6, "catachresis":4, "cataclasis":4, "cataclinal":4, "cataclysm":3, "cataclysmal":4, "cataclysmic":4, "cataclysmically":6, "catacomb":3, "catacumba":4, "catacumbal":4, "catadioptric":5, "catafalque":3, "catagenesis":5, "catagenetic":5, "catalan":3, "catalase":3, "catalectic":4, "catalepsis":4, "catalepsy":4, "cataleptic":4, "catalin":3, "catalina island":6, "catalo":3, "catalog":3, "catalogue":3, "catalogue raisonn":6, "cataloguer":4, "cataloguist":4, "cataloger":4, "catalogic":4, "catalogist":4, "catalonia":5, "catalufa":4, "catalyse":3, "catalyst":3, "catalytic":4, "catalytic cracker":6, "catalytical":5, "catalytically":6, "catalyze":3, "catalyzed":3, "catalyzer":4, "catalyzing":4, "catamarca":4, "catamaran":4, "catamenia":5, "catamenial":5, "catamite":3, "catamitus":4, "catamount":3, "catamountain":4, "cataphasia":4, "cataphoretic":5, "cataphoresis":5, "cataphract":3, "cataphracted":4, "cataphractic":4, "cataphyll":3, "cataphyllary":5, "cataplane":3, "cataplasm":3, "cataplastic":4, "cataplasia":4, "cataplasia":5, "cataplexy":4, "catapult":3, "catapultic":4, "cataract":3, "cataracted":4, "cataractal":4, "cataractous":4, "catasauqua":4, "catastrophic":4, "catastrophically":6, "catatonic":4, "catatonia":5, "catatoniac":5, "catbird":2, "catboat":2, "catcall":2, "catcaller":3, "catcating":3, "cated":2, "cater-corner":3, "cater-cornered":3, "cateran":3, "catercorner":4, "caterpillar":4, "caterpillar hunter":6, "caterpillarlike":5, "caterwaul":3, "caterwauler":4, "caterwauling":4, "catechetic":4, "catechetical":5, "catechetically":6, "catechesis":4, "catechin":3, "catechise":3, "catechised":3, "catechism":3, "catechist":3, "catechiser":4, "catechising":4, "catechismal":4, "catechistic":4, "catechistical":5, "catechistically":6, "catechize":3, "catechized":3, "catechizable":5, "catechizer":4, "catechizing":4, "catechisation":5, "catechization":5, "catechol":3, "catecholamine":5, "catechu":3, "catechumen":4, "catechumenism":5, "catechumenical":6, "catechumenically":7, "catechumenal":5, "catechumenate":5, "categoric":4, "categorical":5, "categorical imperative":9, "categorically":6, "categoricalness":6, "categorise":4, "categorised":4, "categorist":4, "categorising":5, "categorize":4, "categorized":4, "categorizing":5, "categorization":6, "category":4, "catenane":3, "catenaries":4, "catenary":4, "catenate":3, "catenated":4, "catenating":4, "catenation":4, "catenoid":3, "caterina":4, "catface":2, "catfaced":2, "catfall":2, "catfight":2, "catfish":2, "catfishes":3, "catfooted":3, "catgut":2, "catharpin":3, "cathead":2, "cathouse":2, "cathouses":3, "cating":2, "catiline":3, "catilinarian":6, "cation":3, "cationic":4, "catkin":2, "catkinate":3, "catlettsburg":3, "catlike":2, "catlin":2, "catling":2, "catmint":2, "catnap":2, "catnapped":2, "catnapping":3, "catnip":2, "catstick":2, "catsup":2, "cattail":2, "cattalo":3, "catted":2, "cattell":2, "cattery":3, "cattegat":3, "cattery":3, "cattie":2, "catting":2, "cattish":2, "cattishly":3, "cattishness":3, "cattier":3, "cattiest":3, "cattily":3, "cattiness":3, "cattle":2, "cattle plague":3, "cattle truck":3, "cattle-grid":2, "cattleless":3, "cattleman":3, "cattleship":3, "catton":2, "catty":2, "catty-corner":3, "catty-cornered":3, "catwalk":2, "caught":1, "caul":1, "cauld":1, "caulk":1, "caulker":2, "cauldron":2, "caus":1, "cause":1, "cause clbre":4, "cause-and-effect":2, "causeless":2, "causelessly":3, "causelessness":3, "causeway":2, "causal":2, "causally":3, "causability":5, "causable":3, "causative":3, "causatively":4, "causativeness":4, "causativity":5, "causer":2, "causing":2, "caustic":2, "caustic potash":4, "caustic soda":4, "causticity":4, "causticly":3, "caustical":3, "caustically":4, "cauca":2, "caucasia":3, "caucasian":3, "caucasic":3, "caucasia":4, "caucasian":4, "caucasoid":3, "caucasus":3, "cauchy":2, "caucon":2, "caucus":2, "caucuses":3, "cauda":2, "caudad":2, "caudae":2, "caudal":2, "caudal fin":3, "caudally":3, "caudate":2, "caudated":3, "caudaite":3, "caudation":3, "caudex":2, "caudillo":3, "caudillos":3, "caudine forks":3, "caudices":3, "caudle":2, "caulescent":3, "caulicolous":4, "cauliculus":4, "cauline":2, "caulis":2, "caulicle":3, "cauliflower":4, "cauliflower cheese":5, "cauliflower ear":5, "cauliflorous":4, "cauliflory":4, "cauliform":3, "caulome":2, "caulomic":3, "caulocarpous":4, "caulonia":3, "caunus":2, "cauquenes":3, "causalgia":4, "causality":4, "causation":3, "causational":4, "causationism":4, "causationist":4, "causeuse":2, "causey":2, "causerie":3, "cauterant":3, "cauteries":3, "cauterise":3, "cauterised":3, "cauterising":4, "cauterize":3, "cauterized":3, "cauterizing":4, "cauterization":5, "cautery":3, "caution":2, "caution money":4, "cautionary":4, "cautioner":3, "cautious":2, "cautiously":3, "cautiousness":3, "cauvery":3, "cav":1, "cav":1, "cave":1, "cave-in":1, "cavefish":2, "cavefishes":3, "cavelike":2, "caveman":2, "cavalcade":3, "cavalry":3, "cavalry twill":4, "cavalryman":4, "cavan":2, "cavalerius":5, "cavalero":4, "cavalier":3, "cavalier":3, "cavalier poets":5, "cavalierism":4, "cavalierly":4, "cavalierness":4, "cavatina":4, "cavel":2, "cavell":2, "cavendish":3, "cavendish":3, "caver":2, "cavern":2, "cavernous":3, "cavernously":4, "cavesson":3, "cavil":2, "caviled":2, "cavilled":2, "caviler":3, "caviling":3, "cavilingly":4, "cavilingness":4, "caviller":3, "cavillingly":4, "cavillingness":4, "caving":2, "caviar":3, "caviare":3, "cavicorn":3, "cavitation":4, "cavitied":3, "cavity":3, "cavity block":4, "cavity resonator":7, "cavity wall":4, "caw":1, "cawnpore":2, "cawnpur":2, "cawdrey":2, "cawley":2, "caxton":2, "cay":1, "cayes":1, "cayce":2, "cayenne":2, "cayenne":2, "cayenne pepper":4, "cayenned":2, "cayley":2, "cayleyan":3, "cayman":2, "cayman islands":4, "cayuse":2, "cazenovia":5, "caanthus":3, "cabaeus":3, "cabal":2, "cabal":2, "caballed":2, "caballer":3, "caballero":4, "caballeros":4, "caballing":3, "cabane":2, "cabala":3, "caball":3, "caballo":3, "caballos":3, "cabana":3, "cabanatuan":4, "cabaa":4, "cabeiri":3, "caber":2, "cabernet":3, "cabet":2, "cabildo":3, "cabinda":3, "cabimas":3, "cabiri":3, "cable":2, "cable":2, "cable car":3, "cable railway":4, "cable release":4, "cable stitch":3, "cable-car":2, "cable-laid":2, "cable-stitch":2, "cablese":2, "cablet":2, "cablegram":3, "cablelaid":3, "cablelike":3, "cableway":3, "cabling":2, "cabob":2, "caboched":2, "cabomba":3, "caboose":2, "caboodle":3, "caboshed":2, "cabossed":2, "cabot":2, "caboch":4, "caboclo":3, "cabora bassa":5, "cabral":2, "cabretta":3, "cabrera":3, "cabrilla":3, "cabrini":3, "cabuya":3, "caca":2, "cacanapa":4, "cacao":3, "cacaos":3, "cachectic":3, "cachet":2, "cachets":2, "cachexia":4, "cachexy":3, "cachou":2, "cachucha":3, "cacimbo":3, "cacique":2, "caciquism":3, "cacographer":4, "cacography":4, "cacology":4, "cacophonous":4, "cacophonously":5, "cacophony":4, "cacus":2, "cacuminal":4, "cadaster":3, "cadastral":3, "cadastre":3, "cadaver":3, "cadaveric":4, "cadaverine":4, "cadaverous":4, "cadaverously":5, "cadaverousness":5, "cadelle":2, "cadence":2, "cadence":2, "cadenced":2, "cadencing":3, "cadent":2, "cadency":3, "cadential":3, "cadenza":3, "cadenza":3, "cadet":2, "cadet":2, "cadette":2, "cadetcy":3, "cadetship":3, "cadena":3, "cadi":2, "cadiz":2, "cadorna":3, "cadre":2, "caducean":4, "caducei":4, "caduceus":4, "caducity":4, "caducous":3, "caella":2, "caf":2, "cafard":2, "caf":3, "cagliari":3, "cagliostro":3, "cagliostro":3, "cagoule":2, "cagoulard":3, "caguas":2, "cahier":2, "cahill":2, "cahoot":2, "cahoots":2, "cahow":2, "cahokia mounds":5, "caid":2, "caique":2, "caius":2, "cajole":2, "cajoled":2, "cajolement":3, "cajoler":3, "cajoleries":4, "cajolery":4, "cajoling":3, "cajolingly":4, "cajun":2, "cal":2, "calabria":4, "calah":2, "calakmul":3, "calamitoid":4, "calamitous":4, "calamitously":5, "calamitousness":5, "calamity":4, "calandra":3, "calantha":3, "calash":2, "calaverite":4, "calabria":4, "calabrian":4, "caladium":4, "calama":3, "calapan":3, "caleb":2, "calebite":3, "calendrical":4, "calendula":4, "calescence":3, "calescent":3, "calexico":4, "calesa":3, "caletor":3, "cali":2, "caliculus":4, "calif":2, "caliginosity":6, "caliginous":4, "caliginously":5, "caligula":4, "caliph":2, "calippus":3, "calista":3, "calix":2, "calixtin":3, "calixtine":3, "caliche":3, "califate":3, "calina":3, "caliphate":3, "callao":3, "calles":2, "caloric":3, "calorifacient":5, "calotte":2, "calumniate":4, "calumniated":5, "calumniating":5, "calumniation":5, "calumniator":5, "calumniatory":6, "calumnious":4, "calumniously":5, "calyciform":4, "calycinal":4, "calyculus":4, "calypso":3, "calypso":3, "calyptra":3, "calyptrate":3, "calyptrogen":4, "calyx":2, "calyxes":3, "calche":3, "camail":2, "camailed":2, "camanchaca":4, "camauro":3, "camacho":3, "camag":3, "camagey":4, "camaraderie":5, "camellia":3, "camellia":3, "camellia":4, "camelopard":4, "camelopardalis":6, "camelopardus":5, "camenae":3, "camile":2, "camille":2, "camila":3, "camilla":3, "camillo":3, "camise":2, "camilo":3, "camirus":3, "camoodi":3, "camorist":3, "camorra":3, "camorrism":3, "camouflet":3, "camus":2, "camra stylo":5, "cana":2, "canaan":2, "canaanite":3, "canaanitic":4, "canaanitish":4, "canaille":2, "canaigre":3, "canal":2, "canal boat":3, "canal ray":3, "canal zone":3, "canaled":2, "canaling":3, "canalise":3, "canalised":3, "canalising":4, "canalize":3, "canalized":3, "canalizing":4, "canalization":5, "canaller":3, "canalling":3, "canard":2, "canarian":3, "canaries":3, "canaries":3, "canary":3, "canary creeper":5, "canary grass":4, "canary islands":5, "canary seed":4, "canary yellow":5, "canasta":3, "canaveral":4, "canadian":4, "canadian football":6, "canadian french":5, "canadian pondweed":6, "canadian river":6, "canadian shield":5, "canadianism":5, "canadianize":5, "canadianized":5, "canadianizing":6, "canadianization":7, "canafistola":5, "canafistula":5, "canalatura":5, "canales":3, "canaletto":4, "canalis":3, "cananea":4, "canara":3, "canarese":3, "canella":3, "canephora":4, "canephorae":4, "canes venatici":6, "canescence":3, "canescent":3, "caney":2, "canea":3, "canicula":4, "canicular":4, "canine":2, "caninity":4, "canis major":4, "canis minor":4, "canoe":2, "canoed":2, "canoeing":3, "canoeist":3, "canoewood":3, "canon":2, "canonic":3, "canonical":4, "canonical hour":5, "canonicals":4, "canonically":5, "canonicate":4, "canoodle":3, "canoodler":3, "canossa":3, "canopic":3, "canopic jar":4, "canopus":3, "canorous":3, "canorously":4, "canorousness":4, "canotier":3, "canova":3, "canuck":2, "canute":2, "canula":3, "canular":3, "capa":2, "capacitance":4, "capacitate":4, "capacitated":5, "capacitating":5, "capacitation":5, "capacitive":4, "capacitively":5, "capacitor":4, "capacity":4, "caparison":4, "capability":5, "capablanca":4, "capable":3, "capableness":4, "capably":3, "capacious":3, "capaciously":4, "capaciousness":4, "capaneus":4, "capataz":3, "capataces":4, "capek":2, "capella":3, "caper":2, "capers":2, "caperer":3, "caperingly":4, "capernaum":4, "capet":2, "capette":2, "capeador":4, "capeadores":5, "capetian":3, "caphaurus":3, "capillary":4, "capillary tube":5, "capitulant":4, "capitular":4, "capitularies":5, "capitularly":5, "capitulary":5, "capitulate":4, "capitulated":5, "capitulating":5, "capitulation":5, "capitulator":5, "capitulatory":6, "capitulum":4, "capias":3, "capita":3, "capitasti":4, "capiteux":3, "capo":2, "capon":2, "capone":2, "caponette":3, "caponise":3, "caponised":3, "caponiser":4, "caponising":4, "caponize":3, "caponized":3, "caponizer":4, "caponizing":4, "caponization":5, "capot":2, "capote":2, "capouch":2, "capotasto":4, "capotastos":4, "capote":3, "capri":2, "capri pants":3, "caprice":2, "capriccio":4, "capriccios":4, "capriccioso":5, "capris":2, "capricious":3, "capriciously":4, "capriciousness":4, "caproic acid":5, "caprylic":3, "capuche":2, "capuched":2, "caput":2, "capys":2, "caquet":3, "caractacus":4, "caradoc":3, "carafe":2, "caramba":3, "carambola":4, "caramuel":3, "carangid":3, "carangoid":3, "caratacus":4, "carabao":4, "carabaos":4, "carabinero":5, "carabineros":5, "carabiniere":5, "carabinieri":5, "caracas":3, "caracara":4, "carapa":3, "caratinga":4, "caravaggio":4, "careen":2, "careenage":3, "careener":3, "career":2, "career girl":3, "careers master":4, "careers mistress":4, "careers officer":5, "careerism":3, "careerist":3, "carel":2, "caress":2, "caresse":2, "caresser":3, "caressingly":4, "caressive":3, "caressively":4, "carew":2, "carillon":3, "carillonneur":4, "carinthia":4, "carinula":4, "carinulate":4, "carisa":3, "carissa":3, "carissimi":4, "caribe":3, "carina":3, "carina":3, "carinal":3, "carita":3, "caritas":3, "caroche":2, "caroon":2, "carothers":3, "carotenoid":4, "carotid":3, "carotidal":4, "carotinoid":4, "carouse":2, "caroused":2, "carousal":3, "carouser":3, "carousing":3, "carousingly":4, "caruncular":4, "carunculate":4, "carunculated":5, "caruthersville":4, "caruso":3, "carpano":5, "casa":2, "casals":2, "casaque":2, "casaubon":3, "casaba":3, "casabianca":4, "casablanca":4, "casadesus":4, "casatus":3, "casein":2, "caseinogen":4, "casern":2, "caserne":2, "caserta":3, "casey":2, "casease":3, "caseate":3, "caseated":4, "caseating":4, "caseation":4, "casefied":3, "casefy":3, "casefying":4, "caseinogen":5, "caseose":3, "caseous":3, "cashaw":2, "cashoo":2, "casino":3, "castrop-rauxel":3, "casus":2, "casus belli":4, "catabasis":4, "catabolism":4, "catabolite":4, "catadromous":4, "catalpa":3, "catalysis":4, "catanzaro":4, "catarrh":2, "catarrhed":2, "catarrhal":3, "catarrhally":4, "catarrhous":3, "catastasis":4, "catastrophe":4, "catastrophism":4, "catastrophist":4, "catawba":3, "catalua":5, "catania":3, "catenulate":4, "cater":2, "cater-cousin":3, "caterer":3, "catering":3, "cateringly":4, "catena":3, "catenary":4, "catharsis":3, "catharsius":4, "cathartic":3, "cathartical":4, "cathartically":5, "catharticalness":5, "cathay":2, "catharina":4, "cathectic":3, "cathepsin":3, "catheptic":3, "cathexes":3, "cathexis":3, "cathedra":3, "cathedral":3, "cathedrallike":4, "cathisma":3, "cathismata":4, "cathodic protection":6, "cathodically":5, "catholicly":4, "catholically":5, "catholicalness":5, "catholicate":4, "catholicise":4, "catholicised":4, "catholicism":4, "catholiciser":5, "catholicising":5, "catholicize":4, "catholicized":4, "catholicizer":5, "catholicizing":5, "catholicization":6, "catholicoi":4, "catholicon":4, "catholicos":4, "catholicus":4, "catjang":2, "cato":2, "caton":2, "catonsville":3, "catoptric":3, "catoptrics":3, "catoptrical":4, "catoptrically":5, "catreus":3, "catullian":4, "catullus":3, "cavaedia":4, "cavaedium":4, "cavalla":3, "cavally":3, "cavate":2, "cavated":3, "cavafy":3, "cavalieri":4, "cave":2, "cavetto":3, "cavea":3, "caveae":3, "caveat":3, "caveat emptor":5, "caveator":4, "cavi-rilievi":4, "cavie":2, "cavite":3, "cavo-relievo":4, "cavo-rilievo":4, "cavort":2, "cavorter":3, "cavour":2, "cavum":2, "cavy":2, "caxias":3, "cayey":3, "cayuga":3, "cazique":2, "caque":3, "caada":4, "caon":3, "caster":4, "cbc":1, "cbd":1, "cbd":1, "cbe":1, "cbi":1, "cbs":1, "cdn":1, "cdn":1, "cdr":1, "cdt":1, "cease":1, "ceaseless":2, "ceaselessly":3, "ceaselessness":3, "ceasing":2, "ceausescu":3, "cear":2, "cebriones":4, "cecil":2, "cecily":3, "cede":1, "ceded":2, "ceder":2, "ceding":2, "cedreatis":4, "cedric":2, "cedula":3, "cegb":1, "ceil":1, "ceiler":2, "ceiling":2, "ceilinged":2, "ceilometer":4, "ceiba":2, "ceibo":2, "ceilidh":2, "cell":1, "cell division":4, "cell membrane":3, "cellblock":2, "celt":1, "celt":1, "celtic":2, "celtic cross":3, "celtic-germanic":3, "celtist":2, "celtiberian":5, "celticism":3, "celticist":3, "celandine":3, "celadon":3, "celanese":3, "celature":3, "celery":3, "celery pine":4, "celestine":3, "celestine":3, "celestite":3, "celestina":4, "celeuthea":4, "celebes":3, "celebes sea":4, "celebesian":4, "celebrant":3, "celebrate":3, "celebrated":4, "celebratedness":5, "celebrater":4, "celebrating":4, "celebration":4, "celebrative":4, "celebrator":4, "celebratory":5, "celebret":3, "celebrezze":4, "celia":2, "celibate":3, "celibatic":4, "celibacy":4, "cella":2, "cellae":2, "cellar":2, "cellarage":3, "cellarer":3, "cellaret":3, "cellarette":3, "cellarless":3, "cellarman":3, "celle":2, "cellist":2, "cellini":3, "cello":2, "celloidin":3, "cellose":2, "cellobiose":4, "cellophane":3, "cellule":2, "cellular":3, "cellularity":5, "cellularly":4, "cellulase":3, "cellulate":3, "cellulated":4, "cellulating":4, "cellulation":4, "cellulitis":4, "celluloid":3, "celluloid":3, "cellulose":3, "cellulose acetate":6, "cellulose nitrate":5, "cellulosity":5, "cellulous":3, "cellulolytic":5, "cellulosic":4, "celsius":3, "celsius scale":4, "celtically":4, "celto-germanic":4, "celtuce":2, "celure":2, "cembalist":3, "cembalo":3, "cemeteries":4, "cemetery":4, "cemeterial":5, "cen":1, "cense":1, "cent":1, "cento":1, "centner":2, "cenacle":3, "cenchrias":3, "cenci":2, "cenotaph":3, "cenotaphic":4, "censer":2, "censerless":3, "censor":2, "censorable":4, "censorinus":4, "censorship":3, "censorial":4, "censorious":4, "censoriously":5, "censoriousness":5, "censure":2, "censured":2, "censureless":3, "censurability":6, "censurable":4, "censurableness":5, "censurably":4, "censurer":3, "censuring":3, "census":2, "censuses":3, "censual":3, "cental":2, "centare":2, "centas":2, "centaur":2, "centauri":3, "centauric":3, "centaurial":4, "centaurian":4, "centaurus":3, "centaury":3, "centavo":3, "centenionalis":6, "centennial":4, "centennially":5, "center":2, "center":2, "center-fire":2, "centered":2, "centerable":4, "centerboard":3, "centerfold":3, "centering":3, "centerless":3, "centerline":3, "centerpiece":3, "centerpunch":3, "centerville":3, "centesimal":4, "centesimally":5, "centesimo":4, "centenaries":4, "centenarian":5, "centenary":4, "centenary":4, "centesis":3, "centillion":3, "centillionth":3, "centime":2, "centipedal":4, "centiare":3, "centiares":3, "centibar":3, "centigrade":3, "centigram":3, "centigramme":3, "centiliter":4, "centilitre":4, "centimani":4, "centimeter":4, "centimeter-gram-second":5, "centimetre":4, "centimetre-gram-second":5, "centimetre-gramme-second":5, "centipede":3, "centipoise":3, "centistere":3, "centistoke":3, "cento":2, "centonical":4, "centonism":3, "centra":2, "centrad":2, "central":2, "central african empire":7, "central african federation":9, "central angle":4, "central america":6, "central bank":3, "central committee":5, "central european time":7, "central heating":4, "central india agency":8, "central intelligence agency":9, "central karoo":4, "central limit theorem":7, "central nervous system":6, "central powers":4, "central processing unit":7, "central region":4, "central reserve":4, "central standard time":5, "central sulcus":4, "central tendency":5, "central-fire":2, "centralise":3, "centralised":3, "centralism":3, "centralist":3, "centralising":4, "centralistic":4, "centralize":3, "centralized":3, "centralizer":4, "centralizing":4, "centralisation":5, "centrality":4, "centralization":5, "centrally":3, "centrales":3, "centralia":3, "centralia":4, "centre":2, "centre":2, "centre bit":3, "centre forward":4, "centre half":3, "centre of curvature":6, "centre of gravity":6, "centre of mass":4, "centre of pressure":5, "centre punch":3, "centre spread":3, "centre three-quarter":4, "centre-fire":2, "centred dot":3, "centreboard":3, "centrefold":3, "centrepiece":3, "centric":2, "centricity":4, "centrifugal":4, "centrifugal force":5, "centrifugalise":5, "centrifugalised":5, "centrifugalize":5, "centrifugalized":5, "centrifugalizing":6, "centrifugalization":7, "centrifugally":5, "centrifugate":4, "centrifugation":5, "centring":2, "centripetal":4, "centripetal force":5, "centripetalism":5, "centripetally":5, "centrist":2, "centrical":3, "centrically":4, "centrifuge":3, "centrifuged":3, "centrifuging":4, "centriole":3, "centroid":2, "centroidal":3, "centrobaric":4, "centroclinal":4, "centrodorsal":4, "centrodorsally":5, "centrolecithal":5, "centrolinead":5, "centromere":3, "centrosome":3, "centrosomic":4, "centrosphere":3, "centrosymmetric":5, "centrosymmetrical":6, "centrosymmetry":5, "centrum":2, "centum":2, "centuple":3, "centuplicate":4, "centuplicated":5, "centuplicating":5, "centuplication":5, "centuried":3, "centurial":4, "centurion":4, "century":3, "century plant":4, "ceorl":1, "ceorlish":2, "cep":1, "cephalad":3, "cephalalgia":4, "cephalalgic":4, "cephalalgia":5, "cephalate":3, "cephalin":3, "cephalisation":5, "cephalitis":4, "cephalization":5, "cephalometer":5, "cephalometry":5, "cephalon":3, "cephalopoda":5, "cephalopodous":5, "cephalous":3, "cephalochordate":5, "cephalodia":5, "cephalodium":5, "cephalometric":5, "cephalonia":5, "cephalopod":4, "cephalopodic":5, "cephalothoracic":6, "cephalothorax":5, "cephalothoraxes":6, "cephalothoraces":6, "cephalus":3, "cere":1, "cerecloth":2, "cereless":2, "cerement":2, "cern":1, "cert":1, "ceramist":3, "ceratin":3, "ceratoid":3, "ceratopsian":5, "cerberi":3, "cerberus":3, "cerberuses":4, "cerberean":4, "cercal":2, "cercaria":4, "cercariae":4, "cercarial":4, "cercarian":4, "cercel":4, "cercele":4, "cerci":2, "cercis":2, "cercopes":3, "cercopithecoid":5, "cercus":2, "cercyon":3, "cerebella":4, "cerebellum":4, "cerebellums":4, "cerebral":3, "cerebral dominance":6, "cerebral hemisphere":6, "cerebral palsy":5, "cerebral vascular accident":9, "cerebrally":4, "cerebrate":3, "cerebrated":4, "cerebrating":4, "cerebration":4, "cerebrational":5, "cerebric":3, "cerebritis":4, "cerebroid":3, "cerebroside":4, "cerebrospinal":5, "cerebrospinal fluid":7, "cerebrospinal meningitis":9, "cerebrotonic":5, "cerebrotonia":6, "cerebrovascular":6, "cerebrovascular accident":9, "cerebrovisceral":6, "cerebrum":3, "ceremonial":5, "ceremonialism":6, "ceremonialist":6, "ceremonially":6, "ceremonious":5, "ceremoniously":6, "ceremoniousness":6, "ceremony":4, "cereous":3, "ceresin":3, "cering":2, "ceriman":3, "cermet":2, "cern":2, "cernuda":3, "cernuous":3, "cerro de pasco":5, "cerro gordo":4, "certain":2, "certainly":3, "certainty":3, "certes":2, "certificate":4, "certificate of incorporation":10, "certificate of origin":8, "certificated":5, "certificating":5, "certificatory":6, "certified":3, "certified public accountant":8, "certifiable":5, "certifiableness":6, "certifiably":5, "certification":5, "certifier":4, "certify":3, "certifying":4, "certiorari":5, "certitude":3, "certosina":4, "cervantes":3, "cervellire":4, "cervelas":3, "cervelat":3, "cervelire":4, "cervid":2, "cervin":2, "cervine":2, "cervix":2, "cervixes":3, "cervical":3, "cervical smear":4, "cervices":3, "cervicitis":4, "cess":1, "cesspipe":2, "cesspit":2, "cesspool":2, "cespitose":3, "cespitosely":4, "cessation":3, "cessative":3, "cesser":2, "cession":2, "cessionaries":4, "cessionary":4, "cesta":2, "cesti":2, "cestode":2, "cestoid":2, "cestos":2, "cestoda":3, "cestrinus":3, "cestus":2, "cestuses":3, "cet":1, "cete":1, "ceuta":2, "cevdet":2, "ceylon":2, "ceylon moss":3, "ceylonese":3, "ceanothus":4, "cear":4, "ceb":2, "ceb":3, "cecal":2, "cecile":2, "cecilia":3, "cecillia":3, "cecity":3, "cecrops":2, "cecropia":4, "cecropia moth":5, "cecum":2, "cecyle":2, "cedar":2, "cedar of lebanon":6, "cedar rapids":4, "cedarn":2, "cedarburg":3, "cedarhurst":3, "cedartown":3, "cedalion":4, "cedi":2, "cedilla":3, "cela":2, "celaeno":3, "celaya":3, "celeb":2, "celebrity":4, "celeriac":4, "celerity":4, "celeste":2, "celeste":2, "celesta":3, "celestial":3, "celestially":4, "celestialness":4, "celestial":4, "celestial empire":6, "celestial equator":7, "celestial globe":5, "celestial guidance":6, "celestial horizon":7, "celestial latitude":7, "celestial longitude":7, "celestial navigation":8, "celestial pole":5, "celestial sphere":5, "celestiality":6, "celestina":4, "celine":2, "celiac":3, "celina":3, "celiotomy":5, "celioscope":4, "celo-navigation":5, "celom":2, "celotomy":4, "celoscope":3, "cell":3, "cemal":2, "cement":2, "cementer":3, "cementite":3, "cementless":3, "cementation":4, "cementitious":4, "cementum":3, "cenaean":3, "cenaeum":3, "cenesthesia":4, "cenesthesis":4, "cenesthesia":5, "cenis":2, "cenobite":3, "cenobitic":4, "cenobitism":4, "cenobitically":6, "cenogenesis":5, "cenogenetic":5, "cenogenetically":7, "cenospecies":4, "cenote":3, "cenozoic":4, "cephalic":3, "cephalic index":5, "cepheus":2, "cephei":3, "cepheid":3, "cepheid variable":7, "cepheus":3, "cera":2, "ceram":2, "ceramal":3, "cerambus":3, "ceramic":3, "ceramics":3, "cerargyrite":4, "cerastes":3, "cerate":2, "cerated":3, "ceratodus":4, "ceratoduses":5, "ceraceous":3, "cerenkov":3, "ceres":2, "cereal":3, "cereus":3, "cereuses":4, "ceric":2, "ceric oxide":4, "ceriferous":4, "cerise":2, "cerite":2, "ceria":3, "cerigo":3, "cerium":3, "cerium metals":5, "cero":2, "cerographist":4, "cerography":4, "cerotic":3, "cerotic acid":5, "cerous":2, "cerograph":3, "cerographic":4, "ceroma":3, "ceroplastic":4, "ceroplastics":4, "cerotype":3, "ceruse":2, "cerussite":3, "cerulean":4, "cerumen":3, "ceruminous":4, "cerusite":3, "ceryx":2, "cesarean":4, "cesarian":4, "cesare":3, "cesena":3, "cesium":3, "cesura":3, "cesurae":3, "cesuras":3, "cetane":2, "cetane number":4, "cetacean":3, "cetacea":4, "cetaceum":4, "cetatea alb":5, "ceteris paribus":6, "ceti":2, "cetin":2, "cetinje":3, "cetinje":3, "ceto":2, "cetologist":4, "cetology":4, "cetological":5, "cetura":3, "cetus":2, "cetus":2, "ceuta":3, "ceyx":2, "cfe":1, "cfi":1, "cfi":1, "cgm":1, "cgs":1, "cgs units":3, "ch'an":1, "ch'in":1, "ch'in":1, "ch'ing":1, "ch'ing-yan":2, "cha-cha":1, "chabazite":3, "chablis":2, "chablis":2, "chackle":2, "chackled":2, "chackling":2, "chacma":2, "chad":1, "chad":1, "chadderton":3, "chadic":2, "chadless":2, "chadron":2, "chadwick":2, "chaeronea":4, "chaeta":2, "chaetognath":3, "chaetognatha":4, "chaetognathan":4, "chaetophorous":4, "chaetodon":3, "chaetopod":3, "chaetotactic":4, "chaetotaxy":4, "chafe":1, "chafeweed":2, "chaff":1, "chafferer":3, "chaffingly":3, "chaffier":3, "chaffiest":3, "chaffiness":3, "chaffless":2, "chafflike":2, "chaffy":2, "chafer":2, "chaferies":3, "chafery":3, "chaffee":2, "chaffer":2, "chaffeur-ship":2, "chaffinch":2, "chafing":2, "chafing dish":3, "chain":1, "chain":1, "chain letter":3, "chain lightning":3, "chain printer":3, "chain reaction":4, "chain-driven":2, "chain-react":2, "chain-reacting":3, "chain-smoker":2, "chainsman":2, "chainage":2, "chainbreak":2, "chainless":2, "chainlike":2, "chainman":2, "chainplate":2, "chainstitch":2, "chainwork":2, "chair":1, "chair-warmer":2, "chairborne":2, "chairlady":3, "chairless":2, "chairlift":2, "chairman":2, "chairmanned":2, "chairmaning":3, "chairmanning":3, "chairmanship":3, "chairwoman":3, "chairwomen":3, "chaise":1, "chaitya":2, "chaikovski":3, "chakra":2, "chakravartin":4, "chalk":1, "chalkboard":2, "chalkier":3, "chalkiest":3, "chalklike":2, "chalkpit":2, "chalkrail":2, "chalkstone":2, "chalkstony":3, "chalky":2, "chalcanthite":3, "chalcedony":4, "chalcedon":3, "chalcedonic":4, "chalcid":2, "chalcid fly":3, "chalcidice":4, "chalcidicum":4, "chalcis":2, "chalciope":4, "chalcographer":4, "chalcographist":4, "chalcography":4, "chalcocite":3, "chalcographic":4, "chalcolite":3, "chalcolithic":4, "chalcolithic":4, "chalcophile":3, "chalcopyrite":4, "chalcostibite":4, "chaldaea":3, "chaldaean":3, "chaldaic":3, "chaldee":2, "chaldea":3, "chaldean":3, "chaldron":2, "chalice":2, "chaliced":2, "chalicothere":4, "chalinitis":4, "challah":2, "challahs":2, "challenge":2, "challenged":2, "challengeable":4, "challenger":3, "challenging":3, "challengingly":4, "challie":2, "challis":2, "challis":2, "challiho":3, "challoth":2, "chalmers":2, "chalone":2, "chalumeau":3, "chalybite":3, "cham":1, "cham":1, "champ":1, "champs lys":4, "champer":2, "champlev":3, "champlev":4, "champy":2, "chamaephyte":3, "chamber":2, "chamber counsel":4, "chamber music":4, "chamber of commerce":5, "chamber orchestra":5, "chamber organ":4, "chamber pot":3, "chambered nautilus":5, "chambers":2, "chambers":2, "chambersburg":3, "chamberer":3, "chamberlain":3, "chamberlain":3, "chambermaid":3, "chambertin":3, "chamblee":2, "chambord":2, "chambray":2, "chambry":4, "chambry":3, "chamfer":2, "chamferer":3, "chamfrain":2, "chamfron":2, "chammied":2, "chammy":2, "chammying":3, "chamois":2, "chamoised":2, "chamoix":2, "chamomile":3, "chamosite":3, "champac":2, "champagne":2, "champagne":2, "champagne-ardenne":3, "champaign":2, "champaign":2, "champak":2, "champers":2, "champertous":3, "champerty":3, "champignon":3, "champignons":3, "champigny-sur-marne":3, "champion":3, "championless":4, "championlike":4, "championship":4, "champlain":2, "champollion":3, "chamyne":3, "chanc":1, "chance":1, "chance-medley":2, "chanceful":2, "chancefully":3, "chancefulness":3, "chanceless":2, "chancey":2, "chancing":2, "chancier":3, "chanciest":3, "chancy":2, "chang":1, "change":1, "change of venue":4, "change-ringing":2, "changeability":5, "changeable":3, "changeableness":4, "changeably":3, "changeful":2, "changefully":3, "changefulness":3, "changeless":2, "changelessly":3, "changelessness":3, "changeling":2, "changemaker":3, "changeover":3, "changepocket":3, "changan":2, "changable":3, "changchiak'ou":3, "changchiakow":3, "changchow":2, "changchowfu":3, "changchun":2, "changedness":3, "changer":2, "changing":2, "changsha":2, "changteh":2, "chant":1, "chante-fable":2, "chante-fafables":3, "chantable":3, "chanter":2, "chantership":3, "chantey":2, "chanties":2, "chantingly":3, "chantress":2, "chanty":2, "chancel":2, "chanceled":2, "chancelled":2, "chancelleries":4, "chancellery":4, "chancellor":3, "chancellorsville":4, "chancellorship":4, "chancellory":4, "chanceries":3, "chancery":3, "chancre":2, "chancroid":2, "chancroidal":3, "chancrous":2, "chandarnagar":4, "chandelle":2, "chandelled":2, "chandelling":3, "chandernagor":4, "chandernagore":4, "chandelier":3, "chandigarh":3, "chandler":2, "chandler":2, "chandleries":3, "chandlery":3, "chandragupta":4, "chandui":3, "chanduy":3, "chanfron":2, "channel":2, "channel":2, "channel country":4, "channel islands":4, "channel iron":4, "channeled":2, "channelled":2, "channeler":3, "channeling":3, "channelise":3, "channelize":3, "channelized":3, "channelizing":4, "channelization":5, "channeller":3, "channelling":3, "channing":2, "chanson":2, "chanson de geste":4, "chansonnier":3, "chansonniers":3, "chantage":2, "chanteuse":2, "chantey":2, "chantecler":3, "chanterelle":3, "chantilly":3, "chantilly lace":4, "chanticleer":3, "chantry":2, "chanty":2, "chao phraya":3, "chaoan":2, "chaochow":2, "chaochowfu":3, "chap":1, "chape":1, "chapeless":2, "chappe":1, "chaps":1, "chaparral":3, "chaparral cock":4, "chaparral pea":4, "chaparajos":4, "chaparejos":4, "chapbook":2, "chapel":2, "chapel of ease":4, "chapeled":2, "chapelled":2, "chapeling":3, "chapelling":3, "chaperon":3, "chaperone":3, "chaperoned":3, "chaperonage":4, "chaperoning":4, "chaperonless":4, "chapfallen":3, "chapiter":3, "chaplain":2, "chaplaincy":3, "chaplainry":3, "chaplainship":3, "chaplet":2, "chapleted":3, "chaplin":2, "chapman":2, "chapman":2, "chapmanship":3, "chappal":2, "chappie":2, "chapping":2, "chappy":2, "chapstick":2, "chaptalize":3, "chaptalized":3, "chaptalizing":4, "chaptalization":5, "chapter":2, "chapteral":3, "chapterhouse":3, "chaptrel":2, "char":1, "char":1, "chard":1, "chare":1, "charge":1, "charge account":3, "charge density":4, "charge of quarters":4, "charged":1, "chargeability":5, "chargeable":3, "chargeableness":4, "chargeably":3, "chargeful":2, "chargeless":2, "charga-plate":2, "chargable":3, "charger":2, "charging":2, "chark":1, "charles":1, "charles edward stuart":5, "charles martel":3, "charleston":2, "charleston":2, "charlestown":2, "charleton":2, "charleville-mzi":3, "charlton":2, "charm":1, "charmedly":3, "charmer":2, "charming":2, "charmingly":3, "charmingness":3, "charmless":2, "charmlessly":3, "charr":1, "chart":1, "chartable":3, "chartism":2, "chartist":2, "chartist":2, "chartless":2, "chartlet":2, "character":3, "character actor":5, "character sketch":4, "character type":4, "characterful":4, "characterise":4, "characterised":4, "characteriser":5, "characterising":5, "characteristic":5, "characteristic curve":6, "characteristical":6, "characteristically":7, "characterize":4, "characterized":4, "characterizable":6, "characterizer":5, "characterizing":5, "characterisation":6, "characterization":6, "characterless":4, "charactery":4, "charas":2, "charabanc":3, "characid":3, "characin":3, "charcas":2, "charchemish":3, "charcoal":2, "charcoal grey":3, "charcoal-burner":3, "charcoaly":3, "charcot":2, "charcuterie":4, "charcutier":3, "chardin":2, "chardon":2, "chardonnet":3, "charg":3, "chargfaires":3, "charing":2, "charing cross":3, "charism":2, "charismatic":4, "charier":3, "chariest":3, "charily":3, "chariness":3, "chariot":3, "charioteer":4, "chariotlike":4, "charitable":4, "charitableness":5, "charitably":4, "charites":3, "chariton":3, "charity":3, "charity":3, "charity commissioners":7, "charityless":4, "charka":2, "charkha":2, "charlady":3, "charlatan":3, "charlatanic":4, "charlatanism":4, "charlatanically":6, "charlatanry":4, "charlee":2, "charleen":2, "charlene":2, "charley":2, "charley horse":3, "charlemagne":3, "charleroi":3, "charleroy":3, "charlevoix":3, "charlie":2, "charlie":2, "charline":2, "charlock":2, "charlot":2, "charlotte":2, "charlotte":2, "charlotte amalie":6, "charlotte russe":3, "charlottesville":3, "charlottetown":3, "charlottenburg":4, "charlye":2, "charlyn":2, "charlyne":2, "charmeuse":2, "charmeuse":2, "charmian":3, "charminar":3, "charnel":2, "charnel house":3, "charnu":2, "charollais":3, "charon":2, "charolais":3, "charpai":2, "charpentier":3, "charpoy":2, "charqui":2, "charquid":2, "charrette":2, "charring":2, "charrier":3, "charriest":3, "charro":2, "charros":2, "charry":2, "charta":2, "chartaceous":3, "charter":2, "charter colony":5, "charter member":4, "charter party":4, "chartered accountant":5, "charterage":3, "charterable":4, "charterer":3, "charterhouse":3, "charterhouses":4, "charterless":3, "chartist":2, "chartographer":4, "chartography":4, "chartographic":4, "chartographically":6, "chartophylax":4, "chartophylaxes":5, "chartophylacium":5, "chartres":2, "chartreuse":2, "chartula":3, "chartularies":4, "chartulary":4, "charvaka":3, "charvet":2, "charwoman":3, "charwomen":3, "chary":2, "charcin":4, "chase":1, "chase":1, "chaseable":3, "chasles":1, "chasm":1, "chasmy":2, "chassepot":2, "chaste":1, "chastely":2, "chasteness":2, "chaster":2, "chastest":2, "chaser":2, "chasing":2, "chasidim":3, "chaska":2, "chasmal":2, "chasmic":2, "chasmogamy":4, "chasmogamic":4, "chasmophyte":3, "chass":2, "chasseur":2, "chassis":2, "chassidim":3, "chass":3, "chassd":3, "chassing":4, "chasten":2, "chastener":3, "chasteningly":4, "chastenment":3, "chastise":2, "chastised":2, "chastisement":3, "chastisable":4, "chastiser":3, "chastising":3, "chastity":3, "chastity belt":4, "chasuble":3, "chasubled":3, "chat":1, "chatelain":3, "chatelaine":3, "chatelaines":3, "chatelains":3, "chatham":2, "chatham island":4, "chatham islands":4, "chattable":3, "chattahoochee":4, "chattanooga":4, "chattanoogan":4, "chattanoogian":5, "chatted":2, "chattel":2, "chattel house":3, "chattel mortgage":4, "chatter":2, "chatter mark":3, "chatterbox":3, "chatterer":3, "chatteringly":4, "chatterton":3, "chattertonian":5, "chattery":3, "chatting":2, "chattingly":3, "chattier":3, "chattiest":3, "chattily":3, "chattiness":3, "chatty":2, "chaudfroid":2, "chauffer":2, "chauffeur":2, "chauffeuse":2, "chaulmoogra":3, "chaunt":1, "chauncey":2, "chausson":2, "chaussure":2, "chaucer":2, "chaucerian":4, "chaufer":2, "chaumont":2, "chaumont-en-bassigny":4, "chautauqua":3, "chautauqua":3, "chautemps":2, "chauvinism":3, "chauvinist":3, "chauvinistic":4, "chauvinistically":6, "chaw":1, "chay":1, "chaya":2, "chayaroot":3, "chayefsky":3, "chan":4, "chabouk":2, "chabrier":3, "chabrol":2, "chabuk":2, "chachalaca":4, "chaco":2, "chaconne":2, "chacun":2, "chadarim":3, "chagal":2, "chagall":2, "chagas' disease":4, "chagatai":3, "chagres":2, "chagrin":2, "chagrinned":2, "chagrining":3, "chagrinning":3, "chagul":2, "chahar":2, "chaim":2, "chalaza":3, "chalazal":3, "chalazian":4, "chalet":2, "chalets":2, "chaliapin":3, "chaliapin":4, "chalon-sur-sa":2, "chalutz":2, "chalutzim":3, "chalukya":3, "chalybeate":4, "chamade":2, "chamaelemaeleontis":7, "chamaeleon":4, "chametz":2, "chameleon":4, "chameleonic":5, "chameleonlike":5, "chamise":2, "chaminade":3, "chamiso":3, "chamorro":3, "chamorros":3, "chamos":2, "chamotte":2, "chamouni":3, "chamonix":3, "chanaan":2, "chanel":2, "chaney":2, "chanoyu":3, "chanukkah":3, "chanukah":3, "chany":2, "chaon":2, "chaos":2, "chaotic":3, "chaotically":5, "chaori":3, "chapatti":3, "chaparajos":4, "chaparejos":4, "chapati":3, "chapeau":2, "chaprassi":3, "chaprasi":3, "chapultepec":4, "chaqueta":3, "chara":2, "charade":2, "charades":2, "charango":3, "charente":2, "charente-maritime":4, "charette":2, "chari":2, "chari-nile":2, "chariclo":3, "charis":2, "charisma":3, "charismata":4, "charivari":4, "charivaried":4, "charivariing":5, "charivari":4, "charops":2, "charonian":4, "charoses":3, "charoset":3, "charoseth":3, "charybdis":3, "charybdian":4, "chashitsu":3, "chasid":2, "chasidim":3, "chasidism":3, "chateau":2, "chateau wine":3, "chateaubriand":4, "chaton":2, "chatoyant":3, "chatoyancy":4, "chavannes":2, "chavez":2, "chavin":2, "chayote":3, "chazan":2, "chazanim":3, "che guevara":4, "cheap":1, "cheapen":2, "cheapener":3, "cheapjack":2, "cheaply":2, "cheapness":2, "cheapside":2, "cheapskate":2, "cheat":1, "cheatable":3, "cheater":2, "cheatingly":3, "cheb":1, "check":1, "checked":1, "checks and balances":5, "checkable":3, "checkback":2, "checkbook":2, "checker":2, "checkered":2, "checkers":2, "checkerberry":4, "checkerbloom":3, "checkerboard":3, "checkerspot":3, "checkerwork":3, "checkhook":2, "checking account":4, "checkless":2, "checkmate":2, "checkmated":3, "checkmating":3, "checkoff":2, "checkpoint":2, "checkrail":2, "checkrein":2, "checkroom":2, "checkrow":2, "checksum":2, "checkup":2, "checkweigher":3, "checkweighman":3, "checkwriter":3, "checky":2, "cheddite":2, "cheddar":2, "cheek":1, "cheekbone":2, "cheekier":3, "cheekiest":3, "cheekily":3, "cheekiness":3, "cheekless":2, "cheekpiece":2, "cheektowaga":4, "cheeky":2, "cheep":1, "cheeper":2, "cheer":1, "cheers":1, "cheerer":2, "cheerful":2, "cheerfully":3, "cheerfulness":3, "cheeringly":3, "cheerier":3, "cheeriest":3, "cheerily":3, "cheeriness":3, "cheerio":3, "cheerios":3, "cheerleader":3, "cheerleading":3, "cheerless":2, "cheerlessly":3, "cheerlessness":3, "cheerly":2, "cheero":2, "cheeros":2, "cheery":2, "cheese":1, "cheese cutter":3, "cheese skipper":3, "cheesed":1, "cheeseboard":2, "cheeseburger":3, "cheesecake":2, "cheesecloth":2, "cheesemonger":3, "cheeseparer":3, "cheeseparing":3, "cheesewood":2, "cheesing":2, "cheesily":3, "cheesiness":3, "cheesy":2, "cheezit":2, "cheechaco":3, "cheechako":3, "cheetah":2, "chef":1, "chef-d'oeuvre":2, "chefs-d'oeuvre":2, "cheilitis":3, "cheilotomy":4, "cheiloplasty":4, "cheiron":2, "chelmsford":2, "chelmno":2, "chelp":1, "chellean":3, "chelsea":2, "chelsea bun":3, "cheltenham":3, "chelyabinsk":3, "chelyuskin":3, "chem":1, "chemic":2, "chemism":2, "chemist":2, "chemistry":3, "chemical":3, "chemical bond":4, "chemical engineering":7, "chemical equation":6, "chemical potential":6, "chemical reaction":6, "chemical warfare":5, "chemically":4, "chemiculture":4, "chemigraphic":4, "chemigraphically":6, "chemiluminescence":6, "chemiluminescence":6, "chemiluminescent":6, "chemisette":3, "chemisorb":3, "chemisorption":4, "chemmy":2, "chemnitz":2, "chemosmotic":4, "chemosmosis":4, "chemoceptor":4, "chemokinetic":5, "chemokinesis":5, "chemonite":3, "chemopallidectomy":7, "chemopause":3, "chemoprophylaxis":6, "chemoreception":5, "chemoreceptive":5, "chemoreceptor":5, "chemoreflex":4, "chemosorb":3, "chemosphere":3, "chemosurgery":5, "chemosynthetic":5, "chemosynthetically":7, "chemosynthesis":5, "chemotactic":4, "chemotactically":6, "chemotaxis":4, "chemotherapeutic":6, "chemotherapeutics":6, "chemotherapist":5, "chemotherapy":5, "chemotroph":3, "chemotrophic":4, "chemotropic":4, "chemotropically":6, "chemotropism":4, "chempaduk":3, "chemurgic":3, "chemurgical":4, "chemurgy":3, "chengchow":2, "chengteh":2, "chengtu":2, "chennault":2, "cheongsam":2, "chephren":2, "cheque":1, "chequebook":2, "chequy":2, "chequer":2, "chequered":2, "chequered flag":3, "chequers":2, "chequers":2, "chequerboard":3, "cher":1, "chert":1, "chertsey":2, "cherty":2, "cherbourg":2, "cheremis":3, "cheremiss":3, "chergui":2, "cheri":2, "cherie":2, "cherish":2, "cherishable":4, "cherisher":3, "cherishingly":4, "cherimoya":4, "cherimoyer":4, "chernovtsy":3, "chernozem":3, "cherokee":3, "cherokee rose":4, "cherry":2, "cherry":2, "cherry brandy":4, "cherry laurel":4, "cherry picker":4, "cherry plum":3, "cherry-bob":2, "cherry-pie":2, "cherrylike":3, "cherrystone":3, "cherryvale":3, "cherryville":3, "chersonese":3, "cherub":2, "cherubs":2, "cherubfish":3, "cherubfishes":4, "cherubim":3, "chervil":2, "chervonets":3, "chervovontsi":4, "cheryl":2, "cherylene":3, "ches":1, "cheshire":2, "cheshire cheese":3, "cheshunt":2, "cheshvan":2, "chess":1, "chessboard":2, "chesses":2, "chessman":2, "chesstree":2, "chest":1, "chest of viols":4, "chestier":3, "chestiest":3, "chestily":3, "chestiness":3, "chestnut":2, "chestnutty":3, "chesty":2, "chesaning":3, "chesapeake":3, "chesapeake bay":4, "cheskey":2, "chesna":2, "chessel":2, "chester":2, "chesterbed":3, "chesterfield":3, "chesterfield":3, "chesterfieldian":5, "chesterton":3, "chestertown":3, "cheswick":2, "chet":1, "cheth":1, "chetnik":2, "cheveret":2, "chevalier":3, "cheverly":3, "cheves":2, "chevied":2, "chevies":2, "cheviot":3, "chevon":2, "chevret":2, "chevrette":2, "chevron":2, "chevroned":2, "chevronel":3, "chevronny":3, "chevronwise":3, "chevrony":3, "chevrotain":3, "chevy":2, "chevying":3, "chew":1, "chew over":3, "chewable":3, "chewer":2, "chewie":2, "chewing gum":3, "chewier":3, "chewiest":3, "chewy":2, "cheyne-stokes breathing":3, "cheyenne":2, "cheyne":2, "chez":1, "chebec":2, "chebeck":2, "cheboygan":3, "cheboksary":4, "chechako":3, "chechen":2, "checotah":3, "cheder":2, "cheders":2, "chefoo":2, "chehalis":3, "cheju":2, "cheka":2, "chekhov":2, "chekhovian":4, "chekiang":2, "chekist":2, "chekov":2, "chela":2, "chelate":2, "chelated":3, "chelaship":3, "chelation":3, "chelicera":4, "chelicerae":4, "cheliceral":4, "chelicerate":4, "cheliferous":4, "chelidon":3, "cheliform":3, "cheliped":3, "cheloid":2, "chelonian":4, "chelyuskin":3, "chemigrapher":4, "chemigraphy":4, "chemin de fer":4, "chemise":2, "chemosh":2, "chemotropism":4, "chemostat":3, "chemulpo":3, "chenab":2, "cheneau":2, "cheney":2, "chenier":2, "chenille":2, "chenopod":3, "chenopodiaceous":6, "cheops":2, "cheraw":2, "cherem":2, "cheremkhovo":4, "cherenkov":3, "cherenkov radiation":7, "cheribon":3, "cheroot":2, "cherubic":3, "cherubically":5, "cherubicon":4, "cherubikon":4, "cherubini":4, "chetah":2, "cheval glass":3, "cheval-de-frise":2, "chevallier":3, "chevaux-de-frise":2, "chevalier":3, "chevalier-montrachet":5, "chevee":2, "chevet":2, "cheville":2, "cheviot":3, "cheviot hills":4, "chewa":2, "chewink":2, "chg":1, "chi":1, "chi-rho":1, "chi-square distribution":5, "chi-tse":1, "chiangling":2, "chiangmai":2, "chiao":1, "chiaus":1, "chiauses":2, "chiapas":2, "chiari":2, "chibcha":2, "chibchan":2, "chic":1, "chichagof island":5, "chichester":3, "chichivache":3, "chick":1, "chick":1, "chickabiddy":4, "chickadee":3, "chickamauga":4, "chickaree":3, "chickasaw":3, "chickasha":3, "chicken":2, "chicken breast":3, "chicken feed":3, "chicken louse":3, "chicken out":3, "chicken wire":3, "chicken-breasted":3, "chicken-breastedness":4, "chicken-hearted":3, "chicken-heartedness":4, "chicken-livered":3, "chickenpox":3, "chickenshit":3, "chickpea":2, "chickweed":2, "chiccory":3, "chicle":2, "chicly":2, "chicopee":3, "chicory":3, "chide":1, "chided":2, "chider":2, "chidingly":3, "chief":1, "chief education officer":8, "chief justice":3, "chief petty officer":6, "chief rabbi":3, "chiefdom":2, "chiefless":2, "chiefly":2, "chieftain":2, "chieftaincy":3, "chieftainship":3, "chield":1, "chiengmai":2, "chiengrai":2, "chierially":3, "chiffchaff":2, "chiffrobe":2, "chifferobe":3, "chiffon":2, "chiffonnier":3, "chiffonnire":4, "chiffonade":3, "chiffonier":3, "chifforobe":3, "chifley":2, "chigetai":3, "chigger":2, "chigoe":2, "chigwell":2, "chihli":2, "child":1, "child benefit":4, "child guidance":3, "child labour":3, "child minder":3, "child-bearing":2, "childe":1, "childe":1, "childbearing":3, "childbed":2, "childbirth":2, "childhood":2, "childing":2, "childish":2, "childishly":3, "childishness":3, "childless":2, "childlessness":3, "childlike":2, "childlikeness":3, "childly":2, "childminder":3, "childness":2, "chill":1, "chillingly":3, "chillness":2, "chilblain":2, "chilblained":2, "chilcat":2, "childersburg":3, "childermas":3, "childermas":3, "children":2, "childress":2, "chile":2, "chile":2, "chile pine":3, "chile saltpetre":5, "chili":2, "chilies":2, "chiliad":3, "chiliadal":4, "chiliadic":4, "chiliarch":3, "chiliarchy":4, "chiliasm":3, "chiliast":3, "chiliastic":4, "chilipepper":4, "chilkat":2, "chilkoot pass":3, "chiller":2, "chilli":2, "chilli con carne":5, "chilli powder":4, "chilli sauce":3, "chillicothe":4, "chillier":3, "chilliest":3, "chillily":3, "chilliness":3, "chillon":2, "chillum":2, "chilly":2, "chilpancingo":4, "chiltern hills":3, "chiltern hundreds":4, "chimb":1, "chime":1, "chimp":1, "chimar":2, "chimborazo":4, "chimbote":3, "chimer":2, "chimkent":2, "chimney":2, "chimney breast":3, "chimney corner":4, "chimney stack":3, "chimney swallow":4, "chimney sweep":3, "chimney swift":3, "chimneyed":2, "chimneyless":3, "chimneylike":3, "chimneypiece":3, "chimneypot":3, "chimpanzee":3, "chin":1, "chin":1, "chin-up":1, "chinch":1, "chinchier":3, "chinchiest":3, "chinchy":2, "chine":1, "ching":1, "chinghai":2, "chingtao":2, "chink":1, "chink":1, "chinse":1, "chinsing":2, "chintz":1, "chintzier":3, "chintziest":3, "chintzy":2, "chinbeak":2, "chincapin":3, "chincherinchee":4, "chinchilchinned":3, "chinchilchinning":4, "chinchilla":3, "chinchow":2, "chincough":2, "chindit":2, "chindwin":2, "chinese":2, "chinfest":2, "chinkapin":3, "chinkiang":2, "chinless":2, "chinless wonder":4, "chinoleine":3, "chinoline":3, "chinquapin":3, "chinwag":2, "chip":1, "chip basket":3, "chipboard":2, "chipewyan":4, "chipley":2, "chipmunk":2, "chipolata":4, "chippable":3, "chippendale":3, "chippendale":3, "chipper":2, "chippewa":3, "chippeway":3, "chippie":2, "chipping":2, "chipping sparrow":4, "chipproof":2, "chippy":2, "chirk":1, "chirm":1, "chirp":1, "chirper":2, "chirpingly":3, "chirpier":3, "chirpiest":3, "chirpily":3, "chirpiness":3, "chirpy":2, "chirr":1, "chirre":1, "chirring":2, "chirimoya":4, "chirrup":2, "chirruped":2, "chirruping":3, "chirrupper":3, "chirrupy":3, "chiru":2, "chisel":2, "chiseled":2, "chiselled":2, "chiseler":3, "chiseling":3, "chiseller":3, "chisellike":3, "chit":1, "chitchat":2, "chitchatted":3, "chitchatty":3, "chitlin":2, "chitling":2, "chittamwood":3, "chittagong":3, "chittenango":4, "chitter":2, "chitterling":3, "chitterlings":3, "chiusi":2, "chiv":1, "chive":1, "chivalric":3, "chivalrous":3, "chivalrously":4, "chivalrousness":4, "chivalry":3, "chivaree":3, "chivareed":3, "chivareeing":4, "chivari":3, "chivied":2, "chivies":2, "chivvied":2, "chivvy":2, "chivvying":3, "chivy":2, "chivying":3, "chiack":2, "chian":2, "chianti":3, "chianti":3, "chiasm":2, "chiasma":3, "chiasmal":3, "chiasmas":3, "chiasmata":4, "chiasmatype":4, "chiasmatypy":5, "chiasmic":3, "chiasmus":3, "chiastic":3, "chiastolite":4, "chiapas":3, "chiarooscurist":6, "chiarooscuro":6, "chiaroscuro":5, "chiba":2, "chibouk":2, "chibouque":2, "chicane":2, "chicaned":2, "chicaner":3, "chicaneries":4, "chicanery":4, "chicago":3, "chicalote":4, "chicano":3, "chicano":3, "chicha":2, "chichen itz":4, "chichewa":3, "chichi":2, "chichili":3, "chichihaerh":3, "chichihar":3, "chiclayo":3, "chico":2, "chico":2, "chignon":2, "chignoned":2, "chignons":2, "chihuahua":3, "chikamatsu":4, "chill":2, "chilln":3, "chilo":2, "chilomonas":4, "chilon":2, "chilopodous":4, "chilotomy":4, "chiloplasty":4, "chilopod":3, "chilung":2, "chimaera":3, "chimere":2, "chimeric":3, "chimerical":4, "chimerically":5, "chimericalness":5, "chimera":3, "chimu":2, "chin":2, "china":2, "china":2, "china aster":4, "china bark":3, "china clay":3, "china rose":3, "china sea":3, "china tree":3, "chinan":2, "chinar":2, "chinaberry":4, "chinagraph":3, "chinaman":3, "chinatown":3, "chinaware":3, "chinee":2, "chinese":2, "chinese block":3, "chinese cabbage":4, "chinese chequers":4, "chinese chippendale":5, "chinese copy":4, "chinese eddo":4, "chinese empire":4, "chinese lantern":4, "chinese puzzle":4, "chinese red":3, "chinese revolution":6, "chinese sacred lily":6, "chinese turkestan":5, "chinese wall":3, "chinese wax":3, "chinese water torture":6, "chinese white":3, "chinese windlass":4, "chinese wood oil":4, "chino":2, "chinoidin":3, "chinoidine":3, "chinoiserie":4, "chinone":2, "chinook":2, "chinook":2, "chinook jargon":4, "chinook salmon":4, "chinookan":3, "chin":3, "chionodoxa":5, "chios":2, "chione":3, "chiquita":3, "chirac":2, "chirau":2, "chirico":3, "chiro":2, "chirographer":4, "chirography":4, "chiron":2, "chiropodist":4, "chiropody":4, "chiropter":3, "chiroptera":4, "chiropteran":4, "chirographic":4, "chirogymnast":4, "chiromancer":4, "chiromancy":4, "chiromantic":4, "chiromantical":5, "chiropodial":5, "chiropractic":4, "chiropractor":4, "chirurgeon":3, "chirurgery":4, "chirurgic":3, "chirurgical":4, "chishima":3, "chisimaio":4, "chisin":3, "chita":2, "chital":2, "chitarrone":4, "chitin":2, "chitinoid":3, "chitinous":3, "chiton":2, "chkalov":2, "chladni":2, "chlamydate":3, "chlamydeous":4, "chlamydospore":4, "chlamys":2, "chlamyses":3, "chlidanope":4, "chlodwig":2, "chlor-trimeton":3, "chloracne":3, "chlorargyrite":4, "chloracetic acid":6, "chlordan":2, "chlordane":2, "chlordiazepoxide":6, "chlorguanide":3, "chloris":2, "chlorpheniramine":5, "chlorphenol":3, "chlorpicrin":3, "chlorpromazine":4, "chlorpropamide":4, "chlorprophenpyridamine":7, "chlortetracycline":5, "chloanthite":3, "chloasma":3, "chloe":2, "chloette":2, "chloral":2, "chloral hydrate":4, "chlorambucil":4, "chloramphenicol":5, "chloranil":3, "chlorastrolite":4, "chlorate":2, "chloramine":3, "chlorella":3, "chlorellaceous":4, "chlorenchyma":4, "chloric":2, "chloric acid":4, "chloride":2, "chloride of lime":4, "chlorin":2, "chlorine":2, "chlorinate":3, "chlorinated":4, "chlorinated lime":5, "chlorinating":4, "chlorination":4, "chlorinator":4, "chlorinity":4, "chlorinous":3, "chlorite":2, "chloritic":3, "chloridize":3, "chloridized":3, "chloridizing":4, "chlorotic":3, "chlorous":2, "chloroacetone":5, "chloroacetophenone":7, "chloroacetic":5, "chloroacetic acid":7, "chlorobenzene":4, "chlorobromomethane":6, "chlorocarbon":4, "chloroethene":4, "chloroethylene":5, "chloroform":3, "chloroformic":4, "chloroguanide":4, "chlorohydrin":4, "chlorohydroquinone":6, "chloromethane":4, "chloromycetin":5, "chloronaphthalene":5, "chlorophaeite":4, "chlorophenol":4, "chlorophenothane":5, "chlorophyl":3, "chlorophyll":3, "chlorophylloid":4, "chlorophyllose":4, "chlorophyllous":4, "chloropicrin":4, "chloroplast":3, "chloroplastic":4, "chloroplatinic":5, "chloroprene":3, "chloroquine":3, "chlorosis":3, "chlorospinel":4, "chlorothiazide":5, "chlorotrifluoroethylene":9, "chlorotrifluoromethane":8, "chlo":3, "chm":1, "choate":1, "chock":1, "chocker":2, "chockstone":2, "choco":2, "chocolate":3, "chocolate-box":3, "chocolate-flower":4, "chocolaty":4, "choctaw":2, "choctaw":2, "choctaw-root":2, "chogyal":2, "choice":1, "choiceless":2, "choicely":2, "choiceness":2, "choicer":2, "choir":1, "choirboy":2, "choirgirl":2, "choirlike":2, "choirmaster":3, "choiseul":2, "choke":1, "chokes":1, "chokeable":3, "chokeberry":3, "chokebore":2, "chokecherry":3, "chokedamp":2, "choker":2, "chokey":2, "chokies":2, "choking":2, "chokingly":3, "chokier":3, "chokiest":3, "choky":2, "cholagogue":3, "cholagogic":4, "choler":2, "cholera":3, "choleric":3, "cholericly":4, "cholericness":4, "cholerically":5, "cholecyst":3, "cholecystectomy":6, "cholecystography":6, "cholecystostomy":6, "cholelith":3, "choleraic":4, "cholla":2, "chollas":2, "chollers":2, "chololith":3, "chomp":1, "chomsky":2, "chon":1, "chongjin":2, "chonchooed":2, "chonchooing":3, "chondral":2, "chondrichthyes":4, "chondrite":2, "chondritic":3, "chondria":3, "chondrify":3, "chondriome":3, "chondriocont":4, "chondrioma":4, "chondriomite":4, "chondriosome":4, "chondriosomal":5, "chondroma":3, "chondromas":3, "chondromata":4, "chondromatous":4, "chondrosarcoma":5, "chondrosarcomas":5, "chondrosarcomata":6, "chondrosarcomatous":6, "chondrule":2, "chondrus":2, "chonju":2, "chook":1, "chookie":2, "chookies":2, "chooky":2, "choom":1, "choose":1, "choosable":3, "chooser":2, "choosey":2, "choosingly":3, "choosier":3, "choosiest":3, "choosy":2, "choora":2, "chop":1, "chop suey":3, "chops":1, "chopfallen":3, "chophouse":2, "chophouses":3, "chopin":2, "choplogic":3, "choplogical":4, "chopper":2, "chopper tool":3, "choppers":2, "chopping":2, "choppier":3, "choppiest":3, "choppily":3, "choppiness":3, "choppy":2, "chopstick":2, "chopsticks":2, "chopsticks":2, "chor chungjin":3, "chord":1, "chord symbol":3, "chordal":2, "chorded":2, "chording":2, "chordophone":3, "chore":1, "choreman":2, "chordate":2, "chordamesoderm":5, "chordamesodermal":6, "chordamesodermic":6, "chordata":3, "chordee":2, "chordophone":3, "chordotonal":4, "chorister":3, "chorizo":3, "chorley":2, "chorten":2, "chortle":2, "chortler":2, "chorz":2, "chose":1, "chott":1, "chou":1, "chou":1, "chough":1, "choultry":2, "chouse":1, "chouser":2, "chousing":2, "choux pastry":3, "choukoutien":3, "chow":1, "chow":1, "chowchilla":3, "chowder":2, "chowhound":2, "choy":1, "choya":2, "choanocyte":4, "choanocyte":4, "choanocytal":5, "choanoflagellate":6, "chocho":2, "choko":2, "choledochostomy":6, "choledochotomy":6, "cholee":2, "cholent":2, "cholesteremia":6, "cholesterin":4, "cholesterol":4, "cholesterolemia":7, "cholecalciferol":6, "cholecystitis":5, "cholecystotomy":6, "cholelithiasis":6, "choli":2, "cholic acid":4, "choline":2, "cholinergic":4, "cholinesterase":5, "cholo":2, "cholon":2, "cholula":3, "chopa":2, "chopin":2, "chopine":2, "choragic":3, "choral":2, "chorale":2, "chorale prelude":4, "chorally":3, "choragus":3, "choregrapher":4, "choregraphy":4, "chorea":3, "choreal":3, "choreatic":4, "choregraphic":4, "choregraphically":6, "choregus":3, "choreic":3, "choreographer":5, "choreography":5, "choreoid":3, "choreodrama":5, "choreograph":4, "choreographic":5, "choreographically":7, "choric":2, "chorine":2, "chorial":3, "choriamb":3, "choriambic":4, "choriambus":4, "chorioid":3, "chorion":3, "chorionic":4, "chorioallantoic":7, "chorioallantois":7, "choriocarcinoma":7, "choriocarcinomas":7, "choriocarcinomata":8, "chorioepithelioma":9, "chorioepitheliomas":9, "chorioepitheliomata":10, "chorioma":4, "choriomas":4, "choriomata":5, "choripetalous":5, "choriso":3, "chorizo":3, "chorobates":4, "chorographer":4, "chorography":4, "choroid":2, "choroid plexus":4, "choroiditis":4, "chorology":4, "chorogi":3, "chorographic":4, "chorographically":6, "chorus":2, "chorus girl":3, "chorused":2, "choruses":3, "chorusing":3, "chorusmaster":4, "chorzw":3, "chosen":2, "chosen":2, "chosen people":4, "chosn":2, "chota nagpur":4, "chophori":5, "chr":1, "chremzlach":2, "chremsel":2, "chremzel":2, "chresard":2, "chrestomathy":4, "chrestomathic":4, "chrematistic":4, "chris":1, "chrism":1, "christ":1, "christchurch":2, "christcross":2, "christcross-row":2, "christhood":2, "christless":2, "christlike":2, "christliness":3, "christly":2, "christmas":2, "christmas beetle":4, "christmas box":3, "christmas cactus":4, "christmas card":3, "christmas eve":3, "christmas island":4, "christmas pudding":4, "christmas rose":3, "christmas stocking":4, "christmas tree":3, "christmasberry":4, "christmastide":3, "chrismal":2, "chrismatory":4, "chrismon":2, "chrisom":2, "chrissie":2, "christabel":3, "christadelphian":5, "christen":2, "christendom":3, "christener":3, "christening":3, "christian":2, "christian action":4, "christian brothers":4, "christian era":4, "christian name":3, "christian science":4, "christian x":3, "christiansburg":3, "christianise":3, "christianised":3, "christianism":3, "christianiser":4, "christianising":4, "christianize":3, "christianized":3, "christianizer":4, "christianizing":4, "christianization":5, "christianlike":3, "christianly":3, "christiansand":3, "christiania":4, "christie":2, "christine":2, "christiaan":3, "christiana":4, "christianity":5, "christiania":5, "christina":3, "christoff":2, "christologist":4, "christology":4, "christophe":2, "christophany":4, "christocentric":4, "christocentrism":4, "christogram":3, "christological":5, "christopher":3, "christy":2, "chrome":1, "chrome alum":3, "chrome yellow":3, "chromeplate":2, "chromeplated":3, "chromeplating":3, "chromhidrosis":4, "chroming":2, "chron":1, "chron":1, "chronic":2, "chronical":3, "chronically":4, "chronicle":3, "chronicle play":4, "chronicler":3, "chronicles":3, "chronobiology":6, "chronogram":3, "chronogrammatic":5, "chronogrammatically":7, "chronogrammatist":5, "chronograph":3, "chronographic":4, "chronographically":6, "chronologic":4, "chronological":5, "chronologically":6, "chronometric":4, "chronometrically":6, "chronopher":3, "chronoscope":3, "chronoscopic":4, "chronoscopically":6, "chronotron":3, "chroma":2, "chromate":2, "chromatic":3, "chromatic aberration":7, "chromatic color":5, "chromatic scale":4, "chromatics":3, "chromaticness":4, "chromatically":5, "chromaticism":4, "chromaticity":5, "chromaticity coordinates":9, "chromaticity diagram":8, "chromatid":3, "chromatin":3, "chromatinic":4, "chromatism":3, "chromatist":3, "chromatography":5, "chromatoid":3, "chromatology":5, "chromatolysis":5, "chromatophilous":5, "chromatogram":4, "chromatograph":4, "chromatographic":5, "chromatographically":7, "chromatolytic":5, "chromatophil":4, "chromatophile":4, "chromatophilic":5, "chromatophilia":6, "chromatophore":4, "chromatophoric":5, "chromel":2, "chromic":2, "chromic acid":4, "chromite":2, "chromidrosis":4, "chrominance":3, "chromium":3, "chromium steel":4, "chromo":2, "chromophilous":4, "chromous":2, "chromogen":3, "chromogenic":4, "chromolithograph":5, "chromolithographic":6, "chromolithographer":6, "chromolithography":6, "chromomere":3, "chromonema":4, "chromonemata":5, "chromophil":3, "chromophile":3, "chromophilic":4, "chromophilia":5, "chromophobe":3, "chromophore":3, "chromophoric":4, "chromophobic":4, "chromophotography":6, "chromophotograph":5, "chromophotographic":6, "chromoplasm":3, "chromoplast":3, "chromoplasmic":4, "chromoprotein":4, "chromosome":3, "chromosome number":5, "chromosomal":4, "chromosomally":5, "chromosphere":3, "chromospheric":4, "chromyl":2, "chronaxie":3, "chronaxy":3, "chronicity":4, "chronium":3, "chronographer":4, "chronologer":4, "chronologist":4, "chronology":4, "chronometer":4, "chronometry":4, "chronon":2, "chronoscopy":4, "chrysalid":3, "chrysalis":3, "chrysalises":4, "chrysarobin":4, "chryselephantine":5, "chrysler":2, "chrysostom":3, "chrysoberyl":4, "chrysocale":3, "chrysocarpous":4, "chrysocolla":4, "chrysograph":3, "chrysolite":3, "chrysolitic":4, "chrysomelid":4, "chrysoprase":3, "chrysotile":3, "chryssee":2, "chrystal":2, "chrysalides":4, "chrysanthemum":4, "chrysaor":3, "chryses":2, "chryseis":3, "chrysippus":3, "chrysographer":4, "chrysography":4, "chrysophenine":4, "chrysostomus":4, "chrysothemis":4, "chrysoidine":4, "chrtien de troyes":4, "chs":1, "chthonic":2, "chthonian":3, "chthonius":3, "chuanchow":2, "chub":1, "chubb":1, "chubbier":3, "chubbiest":3, "chubbily":3, "chubbiness":3, "chubby":2, "chubsucker":3, "chuchchi":2, "chuck":1, "chuck":1, "chuck wagon":3, "chuck-farthing":2, "chuck-will's-widow":2, "chuckchi":2, "chucker-out":2, "chuckers-out":2, "chuckhole":2, "chuckies":2, "chuckle":2, "chuckled":2, "chuckler":2, "chucklehead":3, "chuckleheaded":4, "chuckleheadedness":5, "chuckling":2, "chucklingly":3, "chuckwalla":3, "chucky":2, "chuddah":2, "chuddar":2, "chudder":2, "chudskoye ozero":6, "chuff":1, "chuffier":3, "chuffiest":3, "chuffily":3, "chuffiness":3, "chuffy":2, "chuffie":2, "chuffy":2, "chug":1, "chugger":2, "chugging":2, "chukchee":2, "chukchi":2, "chukchi peninsula":6, "chukchi sea":3, "chukka":2, "chukka boot":3, "chukkar":2, "chukker":2, "chullpa":2, "chulpa":2, "chum":1, "chump":1, "chumping":2, "chumpish":2, "chumpishness":3, "chumley":2, "chumming":2, "chummier":3, "chummiest":3, "chummily":3, "chumminess":3, "chummy":2, "chungking":2, "chunk":1, "chunkier":3, "chunkiest":3, "chunkily":3, "chunkiness":3, "chunky":2, "chunder":2, "chunderous":3, "chunnel":2, "chunter":2, "chuppah":2, "chuppahs":2, "chuppoth":2, "chur":1, "church":1, "church army":3, "church commissioners":5, "church of england":4, "church of scotland":4, "church slavonic":4, "churchgoer":3, "churchgoing":3, "churchill":2, "churchill falls":3, "churchier":3, "churchiest":3, "churchiness":3, "churchless":2, "churchlike":2, "churchliness":3, "churchly":2, "churchman":2, "churchmanly":3, "churchmanship":3, "churchward":2, "churchwards":2, "churchwarden":3, "churchwoman":3, "churchwomen":3, "churchy":2, "churchyard":2, "churl":1, "churlish":2, "churlishly":3, "churlishness":3, "churn":1, "churnability":5, "churnable":3, "churner":2, "churning":2, "churr":1, "churrigueresque":4, "churrigueresco":5, "chute":1, "chutzpa":2, "chutzpah":2, "chuted":2, "chuting":2, "chutist":2, "chutnee":2, "chutney":2, "chuttie":2, "chutty":2, "chubasco":3, "chufa":2, "chukar":2, "chumash":2, "chumashim":3, "chupatti":3, "chupatty":3, "chuprassi":3, "churada":3, "churinga":3, "churidars":3, "chuvash":2, "chuvashes":3, "chuvashi":3, "chyle":1, "chyme":1, "chymist":2, "chymistry":3, "chypre":1, "chyack":2, "chylaceous":3, "chylous":2, "chylocaulous":4, "chylocaulously":5, "chylophyllous":4, "chylophyllously":5, "chymous":2, "chymosin":3, "chymotrypsin":4, "chymotrypsinogen":6, "chlons":3, "chlons-sur-marne":3, "chlons-sur-sane":4, "chteau":3, "chteau-thierry":4, "chteauneuf-du-pape":4, "chteauroux":4, "chchia":3, "chnier":3, "chrie":3, "chnire":4, "chlons-sur-marne":2, "chnier":2, "chteau":2, "chteau-thierry":3, "chteauroux":3, "ci-devant":2, "cia":1, "ciao":1, "ciardi":2, "ciano":2, "ciao":2, "cibber":2, "cichlid":2, "cichloid":2, "cicatrice":3, "cicatricle":4, "cicatrise":3, "cicatrised":3, "cicatriser":4, "cicatrising":4, "cicatrix":3, "cicatrize":3, "cicatrized":3, "cicatrizer":4, "cicatrizing":4, "cicatrices":4, "cicatricial":4, "cicatrisation":5, "cicatrizant":4, "cicatrization":5, "cicely":3, "cicely":3, "cicero":3, "cicero":3, "ciceronically":6, "cicerone":4, "ciceronian":5, "ciceronianism":6, "cicones":3, "cid":1, "cidney":2, "cie":1, "cienfuegos":3, "cierzo":2, "cienega":3, "cif":1, "cif":1, "cig":1, "cigaret":3, "cigarette":3, "cigarette card":4, "cigarette end":4, "cigarette holder":5, "cigarette lighter":5, "cigarette paper":5, "cigarillo":4, "ciggy":2, "cilice":2, "cilix":2, "cilia":3, "ciliary":4, "ciliary body":6, "ciliate":3, "ciliately":4, "ciliated":4, "ciliata":4, "ciliation":4, "ciliolate":4, "cilium":3, "cilla":2, "cillus":2, "cimarron":3, "cimbalom":3, "cimbri":2, "cimbric":2, "cimices":3, "cimmerium":4, "cimmerian":4, "cinch":1, "cincture":2, "cinctured":2, "cincturing":3, "cinque":1, "cinquefoil":2, "cinchonic":3, "cinchonism":3, "cinchonidine":4, "cinchona":3, "cinchonine":3, "cinchonise":3, "cinchonised":3, "cinchonising":4, "cinchonize":3, "cinchonized":3, "cinchonizing":4, "cinchonization":5, "cincinnati":4, "cincinnatus":4, "cinder":2, "cinder block":3, "cinder track":3, "cinderella":4, "cinderlike":3, "cinderous":3, "cindery":3, "cindie":2, "cindy":2, "cindylou":3, "cine":2, "cine camera":5, "cine film":3, "cinerator":4, "cineritious":4, "cineaste":3, "cinema":3, "cinematic":4, "cinematics":4, "cinematically":6, "cinematograph":5, "cinematographic":6, "cinematographically":8, "cinemascope":4, "cinemascope":4, "cinemascopic":5, "cinematheque":4, "cinematize":4, "cinematized":4, "cinematizing":5, "cinematographer":6, "cinematography":6, "cineol":3, "cineole":3, "cinerama":4, "cineraria":5, "cinerarium":5, "cinerary":4, "cineradiography":7, "cinerama":4, "cineration":4, "cinerin":3, "cingalese":3, "cingulate":3, "cingulectomy":5, "cingulum":3, "cinna":2, "cinnamic":3, "cinnamic acid":5, "cinnamoyl":4, "cinnamyl":3, "cinnabar":3, "cinnabarine":4, "cinnamene":3, "cinnamol":3, "cinnamon":3, "cinnamon bear":4, "cinnamon stone":4, "cinnamoned":3, "cinnamonic":4, "cinquain":2, "cinquecentism":4, "cinquecentist":4, "cinquecento":4, "cinquedea":4, "cinyras":3, "cinzano":3, "cin":3, "cinaste":4, "cio":1, "cipolin":3, "cippi":2, "cippus":2, "cir":1, "circ":1, "cire perdue":3, "cirque":1, "circa":2, "circaean":3, "circassia":3, "circassian":3, "circassia":4, "circassian":4, "circadian":4, "circe":2, "circean":3, "circinate":3, "circinately":4, "circinus":3, "circle":2, "circle-in":2, "circle-out":2, "circler":2, "circlet":2, "circlorama":4, "circuit":2, "circuit binding":4, "circuit breaker":4, "circuit judge":3, "circuit rider":4, "circuit training":4, "circuital":3, "circuiter":3, "circuitry":3, "circumambience":5, "circumambient":5, "circumambiency":6, "circumambulate":5, "circumambulated":6, "circumambulating":6, "circumambulation":6, "circumambulator":6, "circumambulatory":7, "circumbasal":4, "circumbendibus":5, "circumbendibuses":6, "circumbendibus":5, "circumcenter":4, "circumcise":3, "circumcised":3, "circumciser":4, "circumcising":4, "circumcision":4, "circumcolumnar":5, "circumference":4, "circumferential":5, "circumferentor":5, "circumflex":3, "circumfluence":4, "circumfluent":4, "circumfluous":4, "circumfuse":3, "circumfused":3, "circumfusing":4, "circumfusion":4, "circumgyration":5, "circumgyratory":6, "circumincession":5, "circuminsession":5, "circumjacence":4, "circumjacent":4, "circumjacency":5, "circumlocutory":6, "circumlocution":5, "circumlocutionist":6, "circumlunar":4, "circumnavigate":5, "circumnavigated":6, "circumnavigating":6, "circumnavigable":6, "circumnavigation":6, "circumnavigator":6, "circumnavigatory":7, "circumnutate":4, "circumnutated":5, "circumnutating":5, "circumnutation":5, "circumnutatory":6, "circumocular":5, "circumpolar":4, "circumradii":5, "circumradius":5, "circumrotate":4, "circumrotated":5, "circumrotating":5, "circumrotation":5, "circumrotatory":6, "circumscissile":4, "circumscribe":3, "circumscribed":3, "circumscribable":5, "circumscriber":4, "circumscribing":4, "circumscription":4, "circumscriptive":4, "circumscriptively":5, "circumsolar":4, "circumspect":3, "circumspectly":4, "circumspectness":4, "circumspection":4, "circumspective":4, "circumspectively":5, "circumstance":3, "circumstanced":3, "circumstancing":4, "circumstantial":4, "circumstantial evidence":7, "circumstantially":5, "circumstantiality":7, "circumstantiate":5, "circumstantiated":6, "circumstantiating":6, "circumstantiation":6, "circumvallate":4, "circumvallated":5, "circumvallating":5, "circumvallation":5, "circumvascular":5, "circumvent":3, "circumventer":4, "circumvention":4, "circumventive":4, "circumventor":4, "circumvolve":3, "circumvolved":3, "circumvolving":4, "circumvolution":5, "circumvolutory":6, "circus":2, "circus maximus":5, "circuses":3, "circuitous":4, "circuitously":5, "circuitousness":5, "circuity":4, "circular":3, "circular function":5, "circular measure":5, "circular mil":4, "circular polarization":8, "circular saw":4, "circular triangle":6, "circular-knit":3, "circularise":4, "circularised":4, "circulariser":5, "circularising":5, "circularize":4, "circularized":4, "circularizer":5, "circularizing":5, "circularity":5, "circularization":6, "circularly":4, "circulate":3, "circulated":4, "circulating":4, "circulating decimal":7, "circulating library":7, "circulating medium":7, "circulable":4, "circulation":4, "circulative":4, "circulator":4, "circulatory":5, "circulus":3, "cirenaica":5, "cirrate":2, "cirrhosed":2, "cirrhotic":3, "cirrhosis":3, "cirri":2, "cirriform":3, "cirriped":3, "cirripede":3, "cirrose":2, "cirrosely":3, "cirrous":2, "cirrocumular":5, "cirrocumulative":6, "cirrocumulus":5, "cirrostrative":4, "cirrostratus":4, "cirrus":2, "cirsectomy":4, "cirsoid":2, "cist":1, "cisted":2, "cistvaen":2, "cisalpine":3, "cisalpine gaul":4, "cisatlantic":4, "ciscaucasia":4, "ciscaucasia":5, "cisco":2, "cisco":2, "cising":2, "ciskei":2, "cislunar":3, "cismontane":3, "cispadane":3, "cissaea":3, "cissing":2, "cissoid":2, "cissoidal":3, "cissy":2, "cistaceous":3, "cistern":2, "cisterna":3, "cistercian":3, "cistercianism":4, "cisterna":3, "cisternal":3, "cistic":2, "cistophori":4, "cistophorus":4, "cistophoric":4, "cistron":2, "cistus":2, "cit":1, "cite":1, "citeable":3, "cithaeronian":5, "cithara":3, "citharist":3, "cither":2, "cithern":2, "citable":3, "citadel":3, "cited":2, "citer":2, "citied":2, "cities":2, "citing":2, "citified":3, "citification":5, "citify":3, "citifying":4, "citizen":3, "citizens' band":4, "citizeness":4, "citizenly":4, "citizenry":4, "citizenship":4, "citole":2, "citral":2, "citrange":2, "citrate":2, "citreous":3, "citric":2, "citric acid":4, "citric acid cycle":6, "citrin":2, "citrine":2, "citriculture":4, "citriculturist":5, "citron":2, "citron wood":3, "citronella":4, "citronellal":4, "citrous":2, "citronalis":4, "citronellol":4, "citrulline":3, "citrus":2, "citruses":3, "cittern":2, "cittticano":5, "city":2, "city":2, "city blues":3, "city company":5, "city desk":3, "city editor":5, "city father":4, "city hall":3, "city manager":5, "city of god":4, "city planning":4, "city slicker":4, "city-born":2, "city-bred":2, "city-state":2, "cityfied":3, "cityfy":3, "cityless":3, "citylike":3, "cityscape":3, "cityward":3, "citywards":3, "ciudad bolvar":5, "ciudad jurez":4, "ciudad real":4, "ciudad trujillo":5, "ciudad victoria":5, "civ":1, "civet":2, "civetlike":3, "civic":2, "civic centre":4, "civic-minded":3, "civic-mindedly":4, "civic-mindedness":4, "civics":2, "civies":2, "civil":2, "civil day":3, "civil death":3, "civil defence":4, "civil disobedience":7, "civil engineer":5, "civil law":3, "civil liberty":5, "civil list":3, "civil marriage":4, "civil rights":3, "civil servant":4, "civil service":4, "civil war":3, "civil war":3, "civil year":3, "civil-law":2, "civil-rights":2, "civilly":3, "civilness":3, "civism":2, "civia":3, "civically":4, "civilise":3, "civilised":3, "civilisatory":6, "civiliser":4, "civilising":4, "civilize":3, "civilized":3, "civilizable":5, "civilizatory":6, "civilizedness":5, "civilizer":4, "civilizing":4, "civilisation":5, "civilization":5, "civilizational":6, "civvies":2, "civvy":2, "cinaga":4, "cibaria":4, "cibarial":4, "cibarian":4, "cibarious":4, "cibarium":4, "ciboria":4, "ciborium":4, "cicatricose":4, "cicada":3, "cicala":3, "cichoriaceous":5, "cichus":2, "cicisbei":4, "cicisbeism":4, "cicisbeo":4, "ciconians":4, "cider":2, "ciderish":3, "ciderlike":3, "cigar":2, "cigar-flower":3, "cigarless":3, "cilissa":3, "cilicia":3, "cilician":3, "cilicia":4, "cilician gates":5, "cimaise":2, "cimabue":4, "cimarosa":4, "cimex":2, "cimelia":4, "cimeliarch":4, "cimelium":4, "cimon":2, "cinereous":4, "cinereous":4, "cinma vrit":6, "cion":2, "cipango":3, "cipher":2, "cipherable":4, "cipherer":3, "cipus":2, "cir":2, "cirencester":4, "cir":3, "ciseaux":2, "ciseleur":3, "ciselure":3, "cisel":4, "citation":3, "citatory":4, "cithaeron":3, "citlaltepetl":4, "citlaltpetl":4, "citoyen":3, "citoyens":3, "civilian":3, "civility":4, "clabber":2, "clabularia":5, "clabularium":5, "clack":1, "clacker":2, "clackmannan":3, "clackmannanshire":4, "clacton":2, "clacton-on-sea":2, "clactonian":4, "clad":1, "cladding":2, "cladode":2, "cladoptosis":4, "cladocarpous":4, "cladophyll":3, "claim":1, "claim-jumper":2, "claim-jumping":2, "claimsman":2, "claimant":2, "claimer":2, "claiming race":3, "claimless":2, "clair":1, "clair-obscure":2, "claire":1, "clairaudience":4, "clairseach":2, "clairseacher":3, "clairton":2, "clairvoyance":3, "clairvoyant":3, "clairvoyantly":4, "claiborne":2, "clairaut":2, "clam":1, "clamp":1, "clampdown":2, "clamper":2, "clamatorial":5, "clambake":2, "clamber":2, "clamberer":3, "clamjamfry":3, "clamjamphrie":3, "clamlike":2, "clamming":2, "clammier":3, "clammiest":3, "clammily":3, "clamminess":3, "clammy":2, "clamor":2, "clamorer":3, "clamorist":3, "clamorous":3, "clamorously":4, "clamorousness":4, "clamshell":2, "clamworm":2, "clan":1, "clang":1, "clanger":2, "clangor":2, "clangorous":3, "clangorously":4, "clangour":2, "clank":1, "clankingly":3, "clankingness":3, "clankless":2, "clansman":2, "clansmanship":3, "clanswoman":3, "clanswomen":3, "clandestine":3, "clandestinely":4, "clandestineness":4, "clandestinity":5, "clanless":2, "clannish":2, "clannishly":3, "clannishness":3, "clanton":2, "clap":1, "clapt":1, "clapboard":2, "clapham sect":3, "clapper":2, "clapper bridge":3, "clapperboard":3, "clapperclaw":3, "clapperclawer":4, "clapping":2, "clapstick":2, "clapton":2, "claptrap":2, "claque":1, "clare":1, "clare of assisi":5, "claremont":2, "claremore":2, "clark":1, "clarksburg":2, "clarksdale":2, "clarkston":2, "clarksville":2, "clarkia":3, "clart":1, "clarts":1, "clara":2, "clarain":2, "clarabelle":3, "clarabella":4, "claramae":3, "clarence":2, "clarence":2, "clarenceux":3, "clarendon":3, "clarendon":3, "clarendon code":4, "claret":2, "claret cup":3, "clarice":2, "claries":2, "claribel":3, "claribella":4, "clarified":3, "clarification":5, "clarifier":4, "clarify":3, "clarifying":4, "clarinet":3, "clarinetist":4, "clarinettist":4, "clarion":3, "clarion":3, "clarionet":4, "clarity":3, "claro":2, "claros":2, "claromontanus":5, "clarsach":2, "clarseach":2, "clary":2, "clash":1, "clasher":2, "clashingly":3, "clasp":1, "claspt":1, "clasper":2, "clasping":2, "class":1, "class struggle":3, "class-conscious":2, "classable":3, "classbook":2, "classer":2, "classier":3, "classiest":3, "classily":3, "classiness":3, "classless":2, "classmate":2, "classroom":2, "classwork":2, "classy":2, "classes":2, "classic":2, "classic blues":3, "classics":2, "classis":2, "classical":3, "classical college":5, "classical conditioning":7, "classicalism":4, "classicalist":4, "classicality":5, "classically":4, "classicalness":4, "classicise":3, "classicised":3, "classicism":3, "classicist":3, "classicising":4, "classicistic":4, "classicize":3, "classicized":3, "classicizing":4, "classified":3, "classifiable":5, "classification":5, "classification schedule":7, "classificational":6, "classificatory":6, "classifier":4, "classify":3, "classifying":4, "clastic":2, "clathrate":2, "clatter":2, "clatterer":3, "clatteringly":4, "clattery":3, "claucht":1, "claude":1, "claude lorrain":3, "claude-nicolas":3, "claught":1, "clause":1, "clausal":2, "clausthalite":3, "claustral":2, "claustrophilia":5, "claustrophobe":3, "claustrophobic":4, "claustrophobia":5, "claudel":2, "claudette":2, "claudine":2, "claudio":2, "claudius":2, "claudia":3, "claudicant":3, "claudication":4, "claudius":3, "claudius ii":4, "clausewitz":3, "clausius":3, "clausula":3, "clausular":3, "clave":1, "claver":2, "clavier":2, "clavicembalist":5, "clavicembalo":5, "clavichord":3, "clavichordist":4, "clavicle":3, "clavicorn":3, "clavicylinder":5, "clavicytheria":6, "clavicytherium":6, "claviform":3, "clavola":3, "claw":1, "claw hammer":3, "claw hatchet":3, "claw setting":3, "clawer":2, "clawless":2, "claxon":2, "claxton":2, "clay":1, "clay":1, "clay mineral":4, "clay pigeon":3, "claybank":2, "clayborn":2, "clayborne":2, "clayey":2, "clayish":2, "clayiness":3, "claylike":2, "claymore":2, "claypan":2, "claypool":2, "claystone":2, "clayton":2, "claytonia":4, "clachan":2, "cladanthous":3, "cladoceran":4, "cladocerous":4, "clamant":2, "clamantly":3, "clapotis":3, "claquers":2, "claqueur":2, "claretian":3, "clarificant":4, "clarin":2, "clarinda":3, "clarino":3, "clarissa":3, "clarino":3, "claro":2, "clava":2, "clavae":2, "claval":2, "clavate":2, "clavately":3, "clave":2, "claver":2, "clavicular":4, "claviculate":4, "clavier":2, "clavierist":3, "clavius":3, "clavus":2, "clean":1, "clean-handed":2, "clean-living":2, "clean-shaven":2, "cleanse":1, "cleansable":3, "cleanser":2, "cleansing":2, "cleanable":3, "cleaner":2, "cleanhandedness":4, "cleaning":2, "cleanlier":3, "cleanliest":3, "cleanliness":3, "cleanly":2, "cleanness":2, "cleanout":2, "cleanskin":2, "cleanup":2, "clear":1, "clear away":3, "clear-headed":2, "clear-sighted":2, "clear-sightedness":3, "clearance":2, "clearable":3, "clearcole":2, "clearer":2, "clearfield":2, "clearheaded":3, "clearheadedly":4, "clearheadedness":4, "clearing":2, "clearing bank":3, "clearing house":3, "clearly":2, "clearness":2, "clearstarch":2, "clearstarcher":3, "clearstoried":3, "clearstory":3, "clearway":2, "clearwater":3, "clearwing":2, "clearwing moth":3, "cleat":1, "cleave":1, "cleavage":2, "cleavability":5, "cleavable":3, "cleaver":2, "cleavers":2, "cleaving":2, "cleavingly":3, "cleck":1, "cleek":1, "cleethorpes":2, "clef":1, "cleft":1, "cleft palate":3, "cleg":1, "cleisthenes":3, "cleistogamous":4, "cleistogamously":5, "cleistogamy":4, "cleistocarp":3, "cleistocarpous":4, "cleistogamic":4, "cleistogamically":6, "cleistothecia":5, "cleistothecium":5, "cleidoic":3, "cleidoic egg":4, "clela":2, "clem":1, "clem":1, "clematis":3, "clemens":2, "clement":2, "clement":2, "clement i":3, "clement of alexandria":8, "clement v":3, "clement vii":3, "clemently":3, "clemency":3, "clemency":3, "clementine":3, "clementine":3, "clementina":4, "clementon":3, "clemmie":2, "clemming":2, "clemmy":2, "clemon":2, "clench":1, "clepe":1, "clept":1, "cleping":2, "clepsydra":3, "cleptobiotic":5, "cleptobiosis":5, "cleptomania":5, "cleptomaniac":5, "clerestoried":3, "clerestory":3, "clerk":1, "clerkess":2, "clerkish":2, "clerklike":2, "clerklier":3, "clerkliest":3, "clerkliness":3, "clerkly":2, "clerkship":2, "clergy":2, "clergylike":3, "clergyman":3, "cleric":2, "clerical":3, "clerical collar":5, "clericals":3, "clericalism":4, "clericalist":4, "clericality":5, "clerically":4, "clerihew":3, "clerisy":3, "clermont":2, "clermont-ferrand":3, "clete":1, "cleve":1, "cleves":1, "cleveite":2, "cleveland":2, "clever":2, "clever dick":3, "clever-clever":3, "cleverdick":3, "cleverish":3, "cleverishly":4, "cleverly":3, "cleverness":3, "clevis":2, "clew":1, "clewgarnet":3, "clewiston":3, "clea":2, "cleanth":2, "cleantha":3, "cleanthes":3, "clearchus":3, "cleburne":2, "clech":3, "clemens":2, "clemenceau":3, "clementi":3, "clementia":3, "cleo":2, "cleoid":2, "cleon":2, "cleobis":3, "cleobulus":4, "cleodaeus":4, "cleome":3, "cleone":3, "cleopatra":4, "cleopatra's needle":6, "cleopatra":4, "cleostratus":4, "cleota":3, "cleothera":4, "cleromancy":4, "cleruch":2, "cleruchial":4, "cleruchy":3, "cleta":2, "cletus":2, "cleva":2, "click":1, "click beetle":3, "clicker":2, "clickety-clack":3, "clickety-click":3, "clickless":2, "cliff":1, "cliff":1, "cliff swallow":3, "cliff-hanger":2, "cliff-hanging":2, "cliffhanger":3, "cliffhanging":3, "cliffier":3, "cliffiest":3, "cliffless":2, "cliffy":2, "clift":1, "clifford":2, "clifton":2, "climb":1, "climbable":3, "climber":2, "climbing":2, "climbing fish":3, "climbing frame":3, "climbing irons":4, "climbingfish":3, "climbingfishes":4, "clime":1, "clinch":1, "clincher":2, "clincher-built":2, "cline":1, "cling":1, "clingan":2, "clinger":2, "clingfish":2, "clingfishes":3, "clinging":2, "clinging vine":3, "clingingly":3, "clingingness":3, "clingier":3, "clingiest":3, "clinginess":3, "clingstone":2, "clingy":2, "clink":1, "clinker":2, "clinker-built":2, "clinkstone":2, "clint":1, "clinal":2, "clinally":3, "clinic":2, "clinid":2, "clinical":3, "clinical thermometer":7, "clinically":4, "clinquant":2, "clinton":2, "clintonville":3, "clintonia":4, "clip":1, "clip-on":1, "clipped":1, "clips":1, "clipt":1, "clipboard":2, "clippable":3, "clipper":2, "clipper-built":2, "clippers":2, "clippety-clop":3, "clippie":2, "clipping":2, "clippingly":3, "clipsheet":2, "clique":1, "cliqueless":2, "clishmaclaver":4, "clishmaclaver":4, "clisthenes":3, "clistocarp":3, "clistocarpous":4, "clistothecia":5, "clistothecium":5, "clithral":2, "clitic":2, "clitoral":3, "clitoridean":5, "clitoris":3, "clive":1, "clivers":2, "clianthus":3, "clich":2, "cliche":2, "clichy":2, "clich":3, "clide":2, "client":2, "clientage":3, "clientless":3, "clientage":3, "cliental":3, "clientele":3, "climacteric":4, "climacterical":5, "climacterically":6, "climactic":3, "climactical":4, "climactically":5, "climant":2, "climate":2, "climatal":3, "climatic":3, "climatical":4, "climatically":5, "climax":2, "climatologist":5, "climatology":5, "climatologic":5, "climatologically":7, "clinah":2, "clinandria":4, "clinandrium":4, "clinis":2, "clinician":3, "clinometer":4, "clinometry":4, "clinograph":3, "clinographic":4, "clinometric":4, "clinometrical":5, "clinostat":3, "clio":2, "cliquey":2, "cliquing":2, "cliquish":2, "cliquishly":3, "cliquishness":3, "cliquism":2, "cliquy":2, "clite":2, "clitellum":3, "clitus":2, "cllr":1, "cloak":1, "cloak-and-dagger":2, "cloak-and-suiter":2, "cloakedly":3, "cloakless":2, "cloakroom":2, "clobber":2, "clobberer":3, "cloche":1, "clock":1, "clock-watcher":2, "clocker":2, "clocklike":2, "clockmaker":3, "clockmaking":3, "clockwise":2, "clockwork":2, "clod":1, "cloddish":2, "cloddishly":3, "cloddishness":3, "cloddily":3, "cloddiness":3, "cloddy":2, "clodhopper":3, "clodhopping":3, "clodlike":2, "clodpate":2, "clodpole":2, "clodpoll":2, "cloelia":3, "cloete":2, "clog":1, "clogging":2, "cloggily":3, "clogginess":3, "cloggy":2, "cloister":2, "cloistered":2, "cloisterless":3, "cloisterlike":3, "cloistral":2, "cloistress":2, "cloison":2, "cloisonn":3, "cloisonnisme":3, "cloisonnist":3, "cloisonn":4, "cloke":1, "clomb":1, "clomp":1, "clone":1, "clonk":1, "clonic":2, "cloot":1, "cloots":1, "clootie":2, "clop":1, "close":1, "close company":4, "close harmony":4, "close quarters":3, "close season":3, "close-fertilization":5, "close-fisted":2, "close-fitting":2, "close-winded":2, "closed":1, "closed circuit":3, "closed corporation":5, "closed primary":4, "closed scholarship":4, "closed season":3, "closed sentence":3, "closed-circuit":2, "closed-circuit television":6, "closeable":3, "closedown":2, "closefisted":3, "closefistedly":4, "closefistedness":4, "closely":2, "closeness":2, "closeout":2, "closable":3, "closer":2, "closest":2, "closet":2, "closet drama":4, "closet queen":3, "closing":2, "closing time":3, "closter":2, "clostridia":4, "clostridial":4, "clostridian":4, "clostridium":4, "clot":1, "cloth":1, "clothe":1, "clothes":1, "clothesbasket":3, "clotheshorse":2, "clothesline":2, "clothespin":2, "clothespress":2, "clothbound":2, "clothier":2, "clothing":2, "clothlike":2, "clotted":2, "clotted cream":3, "clotting":2, "clotty":2, "clou":1, "cloud":1, "cloud chamber":3, "cloud-cuckoo-land":2, "clouds":1, "cloudage":2, "cloudberry":3, "cloudburst":2, "clouded":2, "cloudier":3, "cloudiest":3, "cloudily":3, "cloudiness":3, "cloudland":2, "cloudless":2, "cloudlessly":3, "cloudlessness":3, "cloudlet":2, "cloudlike":2, "cloudscape":2, "cloudy":2, "clough":1, "clough":1, "clout":1, "clouter":2, "clouet":2, "clove":1, "clowder":2, "clown":1, "clowneries":3, "clownery":3, "clownish":2, "clownishly":3, "clownishness":3, "cloy":1, "cloyedness":3, "cloying":2, "cloyingly":3, "cloyingness":3, "cloanthus":3, "cloaca":3, "cloacal":3, "clois":2, "cloky":2, "clonicity":4, "clonism":2, "clonus":2, "clonuses":3, "cloque":2, "cloquet":2, "cloqu":3, "clorinda":3, "cloris":2, "closure":2, "closured":2, "closuring":3, "clothier":3, "clotho":2, "clotilda":3, "clotilde":3, "cloture":2, "clotured":2, "cloturing":3, "cloven":2, "cloven hoof":3, "cloven-footed":3, "cloven-hoofed":2, "clover":2, "clover":2, "clovered":2, "cloverdale":3, "cloverleaf":3, "cloverleaf aerial":6, "clovery":3, "clovis":2, "clovis i":3, "clovis point":3, "clo":3, "club":1, "club sandwich":3, "clubability":5, "clubable":3, "clubbability":5, "clubbable":3, "clubber":2, "clubbing":2, "clubbier":3, "clubbiest":3, "clubbily":3, "clubby":2, "clubfoot":2, "clubfooted":3, "clubhand":2, "clubhaul":2, "clubhouse":2, "clubhouses":3, "clubland":2, "clubman":2, "clubroom":2, "clubroot":2, "clubwoman":3, "clubwomen":3, "cluck":1, "clucky":2, "clue":1, "clueless":2, "cluj":1, "clump":1, "clumpish":2, "clumplike":2, "clumpy":2, "clumber spaniel":4, "clumsier":3, "clumsiest":3, "clumsily":3, "clumsiness":3, "clumsy":2, "clung":1, "clunk":1, "clurman":2, "cluster":2, "cluster fly":3, "clustered":2, "clusteringly":4, "clustery":3, "clutch":1, "clutcher":2, "clutchingly":3, "clutchy":2, "clutter":2, "cluing":2, "cluny":2, "cluny lace":3, "clupeid":3, "clupeoid":3, "clusium":3, "clwyd":2, "clyde":1, "clydesdale":2, "clydebank":2, "clymene":3, "clype":1, "clypeal":3, "clypeate":3, "clypei":3, "clypeiform":4, "clypeus":3, "clyster":2, "clytia":3, "clymenus":3, "clysis":2, "clytaemnesra":4, "clytaemnestra":4, "clytemnestra":4, "clytius":3, "clyti":4, "cmdr":1, "cmf":1, "cmg":1, "cml":1, "cnaa":1, "cnemides":3, "cnemic":2, "cnemis":2, "cnemial":3, "cnidoblast":3, "cnida":2, "cnidarian":4, "cnidia":3, "cnidogenous":4, "cnidophorous":4, "cnidoblast":3, "cnidocil":3, "cnidocyst":3, "cnidophore":3, "cnidus":2, "cnossian":3, "cnossus":2, "cns":1, "cnut":1, "co-driver":2, "co-ed":1, "co-op":1, "co-opt":1, "co-operate":3, "co-operation":4, "co-operative":4, "co-operatively":5, "co-operator":4, "co-optation":3, "co-optative":3, "co-ordinal":3, "co-ordinate":3, "co-ordinately":4, "co-ordination":4, "co-ordinative":4, "co-ordinator":4, "co-respondent":3, "co-signer":2, "co-star":1, "co-surety":2, "co-worker":2, "coach":1, "coachability":5, "coachable":3, "coachbuilder":3, "coachbuilding":3, "coacher":2, "coachman":2, "coachmanship":3, "coachwhip":2, "coachwood":2, "coachwork":2, "coak":1, "coal":1, "coal heaver":3, "coal measures":3, "coal scuttle":3, "coalbin":2, "coaldale":2, "coaler":2, "coalface":2, "coalfield":2, "coalfish":2, "coalfishes":3, "coalier":3, "coaliest":3, "coalless":2, "coalport":2, "coalsack":2, "coaly":2, "coaming":2, "coarse":1, "coarsely":2, "coarseness":2, "coarsen":2, "coarser":2, "coarsest":2, "coast":1, "coast mountains":3, "coastal":2, "coastally":3, "coaster":2, "coastguard":2, "coastguardsman":3, "coastland":2, "coastline":2, "coastward":2, "coastwards":2, "coastways":2, "coastwise":2, "coat":1, "coat armour":3, "coat hanger":3, "coates":1, "coatsworth":2, "coatbridge":2, "coatdress":2, "coated":2, "coatee":2, "coating":2, "coatless":2, "coatrack":2, "coatroom":2, "coattail":2, "coax":1, "coaxer":2, "coaxingly":3, "cob":1, "cob money":3, "cobb":1, "cobb":1, "cobol":1, "cobber":2, "cobbett":2, "cobbing":2, "cobble":2, "cobbler":2, "cobbler's wax":3, "cobblers":2, "cobbles":2, "cobblestone":3, "cobbra":2, "cobden":2, "cobham":2, "cobnut":2, "cobweb":2, "cobwebbed":2, "cobwebs":2, "cobwebbing":3, "cobwebby":3, "cochineal":3, "cochlea":3, "cochlear":3, "cochleate":3, "cochleated":4, "cock":1, "cock feather":3, "cock-a-doodle-doo":2, "cock-a-doodooed":2, "cock-a-doodooing":3, "cock-a-leekie":2, "cock-and-bull story":3, "cockscomb":2, "cocksfoot":2, "cockshead":2, "cockade":2, "cockaded":3, "cockaigne":2, "cockayne":2, "cockalorum":4, "cockateel":3, "cockatiel":3, "cockatoo":3, "cockatrice":3, "cockbill":2, "cockboat":2, "cockchafer":3, "cockcroft":2, "cockcrow":2, "cockcrowing":3, "cocker":2, "cocker spaniel":4, "cockerel":3, "cockeye":2, "cockeye bob":3, "cockeyed":2, "cockeyed bob":3, "cockfight":2, "cockfighting":3, "cockhorse":2, "cockies":2, "cockish":2, "cockishly":3, "cockishness":3, "cockier":3, "cockiest":3, "cockily":3, "cockiness":3, "cockle":2, "cockleboat":3, "cocklebur":3, "cockleshell":3, "cocklike":2, "cockloft":2, "cockney":2, "cockneydom":3, "cockneyfied":3, "cockneyfication":5, "cockneyfy":3, "cockneyfying":4, "cockneyish":3, "cockneyishly":4, "cockneyism":3, "cockneylike":3, "cocknify":3, "cockpit":2, "cockroach":2, "cockshut":2, "cockshy":2, "cockspur":2, "cocksure":2, "cocksurely":3, "cocksureness":3, "cockswain":2, "cocktail":2, "cocktail lounge":3, "cocktail stick":3, "cockup":2, "cocky":2, "cocky-leeky":3, "cocalus":3, "coccal":2, "cocci":2, "coccic":2, "coccid":2, "coccidioidomycosis":8, "coccidiosis":5, "cocciferous":4, "coccoid":2, "coccoidal":3, "coccous":2, "coccobacilli":5, "coccobacillus":5, "coccolith":3, "coccus":2, "coccygeal":4, "coccyx":2, "coccyges":3, "coccygius":4, "cocozelle":4, "cocteau":2, "cod":1, "cod":1, "cod":1, "cod-liver oil":3, "code":1, "code napolon":5, "codeless":2, "codger":2, "codswallop":3, "codder":2, "coddle":2, "coddler":2, "coded":2, "coder":2, "codfish":2, "codfishes":3, "coding":2, "codicil":3, "codicillary":5, "codified":3, "codification":5, "codifier":4, "codify":3, "codifying":4, "codlin":2, "codlin moth":3, "codline":2, "codling":2, "codling moth":3, "codlins-and-cream":2, "codpiece":2, "coenacle":3, "coesite":2, "coehorn":2, "coelanaglyphic":5, "coelacanth":3, "coelentera":4, "coelenterate":4, "coelenterata":5, "coelenteron":4, "coeliac":3, "coeliac disease":5, "coelom":2, "coelome":2, "coelomate":3, "coeloscope":3, "coelostat":3, "coenaculum":4, "coenesthesia":4, "coenesthesis":4, "coenesthesia":5, "coeno":2, "coenobite":3, "coenobitic":4, "coenobitism":4, "coenocyte":3, "coenosarc":3, "coenosarcal":4, "coenosarcous":4, "coenuri":3, "coenurus":3, "coeus":2, "coff":1, "coffing":2, "coffret":2, "coft":1, "coffee":2, "coffee bag":3, "coffee bar":3, "coffee cup":3, "coffee house":3, "coffee mill":3, "coffee morning":4, "coffee nut":3, "coffee shop":3, "coffee table":4, "coffee tree":3, "coffee-and":2, "coffee-colored":3, "coffee-klatsch":2, "coffee-table book":4, "coffeeberry":4, "coffeecake":3, "coffeehouse":3, "coffeehoused":3, "coffeehouses":4, "coffeepot":3, "coffeeweed":3, "coffer":2, "coffered":2, "cofferdam":3, "cofferlike":3, "coffeyville":3, "coffin":2, "coffin":2, "coffin bone":3, "coffin nail":3, "coffinite":3, "coffinless":3, "coffle":2, "cog":1, "cog railway":3, "coggan":2, "cogging":2, "cogitate":3, "cogitated":4, "cogitatingly":5, "cogitability":6, "cogitable":4, "cogitation":4, "cogitative":4, "cogitatively":5, "cogitativeness":5, "cogitator":4, "cognac":2, "cognate":2, "cognateness":3, "cognatic":3, "cognation":3, "cognise":2, "cognised":2, "cognising":3, "cognize":2, "cognized":2, "cognizer":3, "cognizing":3, "cognisance":3, "cognisant":3, "cognisable":4, "cognisableness":5, "cognisably":4, "cognition":3, "cognitional":4, "cognitive":3, "cognitive dissonance":6, "cognitively":4, "cognitum":3, "cognizance":3, "cognizant":3, "cognizability":6, "cognizable":4, "cognizableness":5, "cognizably":4, "cognomina":4, "cognominal":4, "cognominally":5, "cognoscibility":6, "cognoscible":4, "cognoscitive":4, "cognoscitively":5, "cognomen":3, "cognomens":3, "cognovit":3, "cogway":2, "cogwheel":2, "cohn":1, "coif":1, "coiffeur":2, "coiffure":2, "coign":1, "coign of vantage":4, "coigne":1, "coigning":2, "coil":1, "coimbra":2, "coin":1, "coin-op":1, "coinage":2, "coinable":3, "coiner":2, "cointise":2, "cointreau":2, "coir":1, "coire":1, "coistrel":2, "coit":1, "coke":1, "coke":1, "cokelike":2, "coker":2, "coking":2, "cokuloris":4, "coky":2, "col":1, "col":1, "cold":1, "cold":1, "cold cathode":3, "cold chisel":3, "cold rubber":3, "cold shoulder":3, "cold storage":3, "cold turkey":3, "cold warrior":4, "cold-blooded":2, "cold-bloodedly":3, "cold-bloodedness":3, "cold-chisel":2, "cold-chiseled":2, "cold-chiselled":2, "cold-chiseling":3, "cold-chiselling":3, "cold-hearted":2, "cold-heartedly":3, "cold-heartedness":3, "cold-shortness":2, "cold-shoulder":2, "cold-streamers":2, "cold-water":2, "cold-working":2, "coldish":2, "coldly":2, "coldness":2, "coldslaw":2, "coldstream":2, "coldturkey":3, "coldwater":3, "cole":1, "cole":1, "coles":1, "coleman":2, "colemanite":3, "coleridge":2, "coleridge-taylor":3, "coleridgian":4, "coleseed":2, "coleslaw":2, "colewort":2, "coll":1, "colloq":1, "colo":1, "colonel":2, "colonel blimp":3, "colonelcy":3, "colonelship":3, "colt":1, "colt":1, "coltsfoot":2, "coltish":2, "coltishly":3, "coltishness":3, "colander":3, "colaxas":5, "colacobiotic":6, "colacobiosis":6, "colbaith":2, "colbert":2, "colby":2, "colcannon":3, "colchester":3, "colchis":2, "colchicine":3, "colchicum":3, "colcothar":3, "colet":2, "coley":2, "coleopteran":5, "coleoptile":4, "coleorhiza":5, "colfax":2, "colic":2, "colicky":3, "colicroot":3, "colicweed":3, "colin":2, "colin":2, "coliform":3, "coliform bacteria":7, "colinette":3, "coliseum":4, "colla":2, "collaborate":4, "collaborated":5, "collaborating":5, "collaboration":5, "collaborationism":6, "collaborationist":6, "collaborative":5, "collaboratively":6, "collaborator":5, "collage":2, "collagist":3, "collapse":2, "collapsed":2, "collapsability":6, "collapsable":4, "collapsing":3, "collapsibility":6, "collapsible":4, "collapsar":3, "collar":2, "collar cell":3, "collard":2, "collared dove":3, "collarbone":3, "collaret":3, "collarette":3, "collarless":3, "collate":2, "collatable":4, "collated":3, "collateral":4, "collaterality":6, "collaterally":5, "collating":3, "collada":3, "collagen":3, "collagenase":4, "collarino":4, "collation":3, "collative":3, "collator":3, "colleague":2, "colleagueship":3, "collect":2, "collectability":6, "collectable":4, "collected":3, "collectedly":4, "collectedness":4, "collectibility":6, "collectible":4, "collectanea":5, "collection":3, "collectional":4, "collective":3, "collective bargaining":6, "collective farm":4, "collective fruit":4, "collective noun":4, "collective ownership":6, "collective pitch lever":6, "collective security":7, "collective unconscious":6, "collectively":4, "collectivism":4, "collectivist":4, "collectivistic":5, "collectivistically":7, "collectivity":5, "collectivise":4, "collectivize":4, "collectivized":4, "collectivizing":5, "collectivization":6, "collector":3, "collectorate":4, "collectorship":4, "collectorate":4, "colleen":2, "colleen":2, "college":2, "college of arms":4, "college of cardinals":6, "college of education":7, "college of justice":5, "college pudding":4, "college-preparatory":6, "colleger":3, "collembolan":4, "collenchymatous":5, "collenchyma":4, "colles' fracture":4, "collet":2, "collette":2, "colleted":3, "colleting":3, "colley":2, "collegian":3, "collegiate":3, "collegiately":4, "collegiateness":4, "collegia":4, "collegial":4, "collegian":4, "collegiate":4, "collegiate church":5, "collegiate institute":7, "collegium":4, "collide":2, "collided":3, "colliding":3, "collie":2, "collied":2, "collier":2, "collier":2, "collieries":3, "colliery":3, "collielike":3, "collieshangie":4, "collingswood":3, "collingwood":3, "collins":2, "collins":2, "collins street farmer":5, "collinsville":3, "collinear":4, "collinearity":6, "collinearly":5, "collinsia":4, "collier":3, "colligate":3, "colligated":4, "colligating":4, "colligation":4, "colligative":4, "collimate":3, "collimated":4, "collimating":4, "collimation":4, "collimator":4, "collision":3, "collisional":4, "collogue":2, "collogued":2, "colloid":2, "colloidal":3, "colloidality":5, "collop":2, "collophanite":4, "colloblast":3, "collocate":3, "collocated":4, "collocating":4, "collocation":4, "collocative":4, "collocutor":4, "collodi":3, "collodion":4, "collodium":4, "colloguing":3, "collophane":3, "collophore":3, "colloquist":3, "colloquia":4, "colloquial":4, "colloquialism":5, "colloquialist":5, "colloquially":5, "colloquialness":5, "colloquium":4, "colloquiums":4, "colloquy":3, "collotype":3, "collotyped":3, "collotypic":4, "collotypy":4, "collude":2, "colluded":3, "colluder":3, "colluding":3, "collunaria":5, "collunarium":5, "collusion":3, "collusive":3, "collusively":4, "collusiveness":4, "collutories":4, "collutoria":5, "collutorium":5, "collutory":4, "colluvium":4, "colly":2, "collyria":4, "collyrium":4, "collying":3, "collywobbles":4, "colmar":2, "colob":2, "colonnade":3, "colonnaded":4, "colonsay":3, "color":2, "color filter":4, "color index":4, "color scheme":3, "color sergeant":4, "color supplement":5, "color-blind":2, "colored":2, "colored":2, "colors":2, "colorant":3, "colorability":6, "colorable":4, "colorableness":5, "colorably":4, "coloration":4, "colorational":5, "colorationally":6, "colorature":4, "colorbearer":4, "colorcast":3, "colored":3, "colorer":3, "colorfast":3, "colorfastness":4, "colorful":3, "colorfully":4, "colorfulness":4, "colorific":4, "colorimeter":5, "colorimetrist":5, "coloring":3, "colorist":3, "coloristic":4, "colorimetric":5, "colorimetrically":7, "colorless":3, "colorlessly":4, "colorlessness":4, "colorman":3, "colory":3, "colossality":5, "colosseum":4, "colosseum":4, "colour bar":3, "colour code":3, "colour guard":3, "colour line":3, "colour phase":3, "colobus":3, "colocynth":3, "colonette":3, "colonie":3, "colonies":3, "colonise":3, "colonised":3, "colonist":3, "colonisable":5, "coloniser":4, "colonising":4, "colonize":3, "colonized":3, "colonizability":7, "colonizable":5, "colonizer":4, "colonisation":5, "colonisationist":6, "colonitis":4, "colonization":5, "colonizationist":6, "colony":3, "colophon":3, "colophon":3, "colophonian":5, "colophony":4, "coloquintida":5, "coloradan":4, "colorado":4, "colorado":4, "coloradoan":5, "coloradoite":5, "colorado":4, "colorado beetle":6, "colorado desert":6, "colorado springs":5, "colorational":5, "colorationally":6, "coloratura":5, "colpitis":3, "colportage":3, "colporteur":3, "colpotomy":4, "colpoda":3, "coltee":2, "colter":2, "colton":2, "coltrane":2, "colum":2, "column":2, "column inch":3, "columned":2, "columnist":3, "columbaries":4, "columbaria":5, "columbarium":5, "columbary":4, "columbeia":4, "columbeion":4, "columbine":3, "columbine":3, "columnarity":5, "colubrid":3, "colubrine":3, "columella":4, "columellae":4, "columellar":4, "columellate":4, "columelliform":5, "colville":2, "colvin":2, "colwyn":2, "colwyn bay":3, "colza":2, "colza oil":3, "com":1, "com":1, "com":1, "comb":1, "comb jelly":3, "combe":1, "comber":2, "combfish":2, "combfishes":3, "combings":2, "combless":2, "comblessness":3, "comdg":1, "comdr":1, "comdt":1, "come":1, "come about":3, "come across":3, "come along":3, "come away":3, "come between":3, "come forward":3, "come into":3, "come over":3, "come upon":3, "come-at-able":2, "come-hither":2, "come-on":1, "comeatable":4, "comeback":2, "comedown":2, "comelier":3, "comeliest":3, "comelily":3, "comeliness":3, "comely":2, "comeuppance":3, "comm":1, "commandable":3, "comp":1, "compt":1, "compte rendu":3, "compazine":3, "compsognathus":4, "comptometer":4, "compton":2, "compton effect":4, "compton-burnett":3, "comptroller":3, "comptrollership":4, "comr":1, "comte":1, "comtism":2, "comtist":2, "comatose":3, "comatosely":4, "comatoseness":4, "comatosity":5, "combat":2, "combat fatigue":4, "combatant":3, "combatable":4, "combated":3, "combater":3, "combating":3, "combative":3, "combatively":4, "combativeness":4, "combattant":3, "combatted":3, "combatter":3, "combatting":3, "combativity":5, "combine":2, "combine harvester":5, "combined":2, "combinedly":3, "combinedness":3, "combinable":4, "combinableness":5, "combinably":4, "combiner":3, "combining":3, "combining form":4, "combination":4, "combination lock":5, "combination room":5, "combination tone":5, "combinations":4, "combinational":5, "combinative":4, "combinatorial":6, "combinatorial analysis":10, "combinatory":5, "combo":2, "combust":2, "combustion":3, "combustion chamber":5, "combustive":3, "combustibility":6, "combustible":4, "combustibleness":5, "combustibly":4, "combustor":3, "comer":2, "comet":2, "cometh":2, "cometary":4, "cometlike":3, "comecon":3, "comedist":3, "comedo":3, "comedos":3, "comedones":4, "comedy":3, "comedy of manners":6, "comfit":2, "comfier":3, "comfiest":3, "comfily":3, "comfiness":3, "comfort":2, "comfort":2, "comfort station":4, "comfortable":4, "comfortableness":5, "comfortably":4, "comforter":3, "comforter":3, "comfortingly":4, "comfortless":3, "comfortlessly":4, "comfortlessness":4, "comfrey":2, "comfy":2, "comic":2, "comic opera":5, "comic strip":3, "coming":2, "cominform":3, "cominformist":4, "comintern":3, "comical":3, "comicality":5, "comically":4, "comicalness":4, "comitative":4, "comites":3, "comity":3, "comity of nations":6, "comm":2, "comma":2, "comma bacillus":5, "comma butterfly":5, "commack":2, "command":2, "command guidance":4, "command module":4, "command paper":4, "command performance":5, "command post":3, "commander":3, "commander in chief":5, "commanderies":4, "commandership":4, "commandery":4, "commanding":3, "commanding officer":6, "commandingness":4, "commandless":3, "commandment":3, "commandant":3, "commandeer":3, "commando":3, "commager":3, "commeasure":3, "commeasured":3, "commeasurable":5, "commeasuring":4, "commeasure":3, "commemorate":4, "commemorated":5, "commemorating":5, "commemorable":5, "commemoration":5, "commemorational":6, "commemorative":5, "commemoratively":6, "commemorativeness":6, "commemorator":5, "commemoratory":6, "commence":2, "commenced":2, "commenceable":4, "commencement":3, "commencer":3, "commencing":3, "commend":2, "commendable":4, "commendableness":5, "commendably":4, "commendatory":5, "commender":3, "commendingly":4, "comment":2, "commentable":4, "commenter":3, "commendam":3, "commendation":4, "commensal":3, "commensalism":4, "commensality":5, "commensally":4, "commensurate":4, "commensurately":5, "commensurateness":5, "commensurability":7, "commensurable":5, "commensurableness":6, "commensurably":5, "commensuration":5, "commentaries":4, "commentarial":5, "commentary":4, "commentate":3, "commentative":4, "commentator":4, "commentatorial":6, "commentatorially":7, "commerce":2, "commerce":2, "commercial":3, "commercial art":4, "commercial bank":4, "commercial college":5, "commercial paper":5, "commercial traveller":6, "commercial vehicle":6, "commercialise":4, "commercialised":4, "commercialism":4, "commercialist":4, "commercialising":5, "commercialistic":5, "commercialize":4, "commercialized":4, "commercializing":5, "commercialization":6, "commercially":4, "commedia dell'arte":6, "commie":2, "commines":2, "comminatory":5, "commingle":3, "commingler":3, "commis":2, "commisce":3, "commiserate":4, "commiserated":5, "commiserable":5, "commiseration":5, "commiserative":5, "commiseratively":6, "commiserator":5, "commissar":3, "commissaries":4, "commissarial":5, "commissariat":5, "commissary":4, "commission":3, "commission plan":4, "commissioned officer":6, "commissionaire":4, "commissional":4, "commissioner":4, "commissioner for oaths":6, "commissionership":5, "commissive":3, "commissively":4, "commissure":3, "commissurotomy":6, "commissural":4, "commit":2, "commitment":3, "committal":3, "committable":4, "committed":3, "committee":3, "committeeism":4, "committeeman":4, "committeeship":4, "committeewoman":5, "committeewomen":5, "committer":3, "committing":3, "commix":2, "commixture":3, "comminate":3, "comminated":4, "comminating":4, "commination":4, "comminator":4, "comminute":3, "comminuted":4, "comminuted fracture":6, "comminuting":4, "comminution":4, "commo":2, "commode":2, "commodity":4, "common":2, "common carrier":5, "common chord":3, "common cold":3, "common denominator":7, "common divisor":5, "common entrance":4, "common era":4, "common factor":4, "common fee":3, "common fraction":4, "common good":3, "common ground":3, "common knowledge":4, "common law":3, "common logarithm":5, "common market":4, "common measure":4, "common metre":4, "common multiple":5, "common noun":3, "common pleas":3, "common prayer":3, "common room":3, "common seal":3, "common sense":3, "common stock":3, "common time":3, "common-law":2, "common-law marriage":4, "commons":2, "commons":2, "commonage":3, "commonality":5, "commonalty":4, "commonable":4, "commoner":3, "commonly":3, "commonness":3, "commonplace":3, "commonplace book":4, "commonplacely":4, "commonplaceness":4, "commonsense":3, "commonsensible":5, "commonsensibly":5, "commonsensical":5, "commonsensically":6, "commonweal":3, "commonwealth":3, "commonwealth":3, "commonwealth day":4, "commove":2, "commoved":2, "commoving":3, "commodious":4, "commodiously":5, "commodiousness":5, "commodore":3, "commodus":3, "commorant":3, "commorancy":4, "commotion":3, "commotional":4, "commotive":3, "commune":2, "commune":2, "communed":2, "communer":3, "communing":3, "communion":3, "communion":3, "communion of saints":5, "communional":4, "communionable":5, "communionist":4, "communism":3, "communist":3, "communist manifesto":7, "communist party":5, "commute":2, "commutability":6, "commutable":4, "commutableness":5, "commuted":3, "commuter":3, "commuting":3, "communal":3, "communalise":4, "communalised":4, "communalism":4, "communalist":4, "communaliser":5, "communalising":5, "communalistic":5, "communalize":4, "communalized":4, "communalizer":5, "communalizing":5, "communality":5, "communalization":6, "communally":4, "communard":3, "communard":3, "communis":3, "communise":3, "communised":3, "communist china":5, "communising":4, "communistic":4, "communistical":5, "communistically":6, "communize":3, "communized":3, "communizing":4, "communicant":4, "communicate":4, "communicated":5, "communicating":5, "communicability":7, "communicable":5, "communicableness":6, "communicably":5, "communication":5, "communication cord":6, "communications satellite":8, "communicative":5, "communicatively":6, "communicativeness":6, "communicator":5, "communicatory":6, "communiqu":4, "communiqu":5, "communital":4, "communitarian":6, "community":4, "community centre":6, "community chest":5, "community college":6, "community home":5, "community school":5, "community singing":6, "communization":5, "commutate":3, "commutated":4, "commutating":4, "commutation":4, "commutation ticket":6, "commutative":4, "commutative law":5, "commutatively":5, "commutator":4, "commutual":4, "commutuality":6, "commy":2, "comnenian":4, "comnenus":3, "comorin":3, "comoro islands":5, "compact":2, "compactedly":4, "compactedness":4, "compactible":4, "compactification":6, "compactly":3, "compactness":3, "compaction":3, "compander":3, "compander":3, "companion":3, "companion set":4, "companionate":4, "companionability":7, "companionable":5, "companionableness":6, "companionably":5, "companionless":4, "companionship":4, "companionway":4, "compare":2, "compared":2, "compart":2, "compartment":3, "compartmental":4, "compartmentalise":5, "compartmentalize":5, "compartmentalized":5, "compartmentalizing":6, "compartmentalization":7, "compartmentally":5, "compartmentation":5, "comparatist":4, "comparative":4, "comparatively":5, "comparativeness":5, "comparator":4, "comparer":3, "comparing":3, "comparison":4, "comparsa":3, "compartimento":5, "compass":2, "compass card":3, "compass plant":3, "compass rose":3, "compass saw":3, "compass window":4, "compassable":4, "compassless":3, "compassion":3, "compassionate":4, "compassionately":5, "compassionateness":5, "compassionated":5, "compassionating":5, "compassionless":4, "compatibility":6, "compatible":4, "compatibleness":5, "compatibly":4, "compatriot":4, "compadre":3, "compagnie":3, "companied":3, "company":3, "company secretary":7, "company sergeant-major":6, "company union":5, "companying":4, "companyless":4, "comparability":6, "comparable":4, "comparableness":5, "comparably":4, "comparator":4, "compaternity":5, "compathy":3, "compatriot":4, "compatriotic":5, "compatriotism":5, "compaero":5, "compaeros":5, "compaia":5, "compaias":5, "compeer":2, "compel":2, "compelled":2, "compellable":4, "compellably":4, "compellation":4, "compellent":3, "compeller":3, "compelling":3, "compellingly":4, "compend":2, "compendia":4, "compendious":4, "compendiously":5, "compendiousness":5, "compendium":4, "compendiums":4, "compensate":3, "compensated":4, "compensating":4, "compensatingly":5, "compensable":4, "compensation":4, "compensational":5, "compensative":4, "compensator":4, "compensatory":5, "compensatory spending":7, "compere":2, "compete":2, "competed":3, "competer":3, "competing":3, "competingly":4, "competitive":4, "competitively":5, "competitiveness":5, "competitor":4, "competitorship":5, "competitory":5, "competence":3, "competent":3, "competently":4, "competency":4, "competition":4, "compi":2, "compile":2, "compiled":2, "compilatory":5, "compiler":3, "compiling":3, "compigne":3, "compilation":4, "compilation film":5, "complain":2, "complaint":2, "complainant":3, "complainable":4, "complainer":3, "complainingly":4, "complainingness":4, "complaisance":3, "complaisant":3, "complaisantly":4, "complacence":3, "complacent":3, "complacently":4, "complacency":4, "complanate":3, "complanation":4, "compleat":2, "complect":2, "complected":3, "complection":3, "complete":2, "completely":3, "completeness":3, "completable":4, "completed":3, "completedness":4, "completer":3, "completing":3, "complex":2, "complex conjugate":5, "complex fraction":4, "complex salt":3, "complex sentence":4, "complexion":3, "complexioned":3, "complexional":4, "complexionally":5, "complexionless":4, "complexity":4, "complexly":3, "complexness":3, "complement":3, "complement fixation test":7, "complemented":4, "complementer":4, "complemental":4, "complementally":5, "complementariness":6, "complementary":5, "complementary angle":7, "complementary color":7, "complementary wavelength":7, "complementation":5, "complementizer":5, "completion":3, "completive":3, "completively":4, "complice":2, "complicitous":4, "complicity":4, "complied":2, "complin":2, "compline":2, "compliance":3, "compliant":3, "compliantly":4, "compliancy":4, "compliable":4, "compliableness":5, "compliably":4, "complicate":3, "complicated":4, "complicatedly":5, "complicatedness":5, "complicating":4, "complicacy":4, "complication":4, "complicative":4, "complier":3, "compliment":3, "complimentable":5, "complimenter":4, "complimentingly":5, "complimentarily":6, "complimentariness":6, "complimentary":5, "complot":2, "complotment":3, "complotted":3, "complotter":3, "complotting":3, "compluvia":4, "compluvium":4, "comply":2, "complying":3, "compo":2, "comport":2, "comportance":3, "comportment":3, "compos mentis":4, "compose":2, "composed":2, "compost":2, "composable":4, "composedly":4, "composedness":4, "composer":3, "composing":3, "composing room":4, "composite":3, "composite-built":3, "compositely":4, "compositeness":4, "compositive":4, "compositively":5, "compositor":4, "compositorial":6, "compossibility":6, "compossible":4, "compote":2, "compound":2, "compound engine":4, "compound eye":3, "compound flower":4, "compound fraction":4, "compound fracture":4, "compound interest":5, "compound leaf":3, "compound lens":3, "compound microscope":5, "compound number":4, "compound sentence":4, "compound-wound":2, "compoundable":4, "compoundedness":4, "compounder":3, "compon":3, "component":3, "componented":4, "componential":4, "compony":3, "compon":4, "composite":3, "composite number":5, "composite photograph":6, "composite school":4, "composition":4, "composition of forces":7, "compositional":5, "compositionally":6, "compostela":4, "composure":3, "compotation":4, "compotator":4, "compotatory":5, "compotier":3, "comprador":3, "compradore":3, "compress":2, "compressed":2, "compressed air":3, "compressedly":4, "compressingly":4, "compressible":4, "compressibly":4, "compression":3, "compression ratio":6, "compression-ignition":5, "compressional":4, "compressive":3, "compressively":4, "compressibility":6, "compressor":3, "compressure":3, "comprecation":4, "comprehend":3, "comprehender":4, "comprehendingly":5, "comprehendible":5, "comprehension":4, "comprehensive":4, "comprehensive school":5, "comprehensively":5, "comprehensiveness":5, "comprehensibility":7, "comprehensible":5, "comprehensibleness":6, "comprehensibly":5, "comprise":2, "comprised":2, "comprisal":3, "comprisable":4, "comprising":3, "comprize":2, "comprized":2, "comprizal":3, "comprizable":4, "comprizing":3, "compromissary":5, "compromis":3, "compromise":3, "compromised":3, "compromiser":4, "compromising":4, "compromisingly":5, "compulsion":3, "compulsive":3, "compulsively":4, "compulsiveness":4, "compulsorily":5, "compulsoriness":5, "compulsory":4, "compulsory purchase":6, "compunction":3, "compunctionless":4, "compunctious":3, "compunctiously":4, "compurgation":4, "compurgator":4, "compurgatory":5, "compute":2, "computability":6, "computable":4, "computably":4, "computed":3, "computer":3, "computer typesetting":6, "computerise":4, "computerize":4, "computing":3, "computist":3, "computation":4, "computational":5, "computative":4, "computatively":5, "computerize":4, "computerized":4, "computerizing":5, "computerization":6, "comrade":2, "comradery":3, "comradeship":3, "comsat":2, "comstock":2, "comstock lode":3, "comstockery":4, "comtesse":2, "con":1, "con":1, "con amore":4, "con brio":3, "con dolore":4, "con espressione":5, "con fuoco":4, "con moto":3, "con spirito":4, "conc":1, "concertina":2, "conch":1, "conchate":2, "conchfish":2, "concurrency":3, "conditione":2, "cone":1, "coneflower":3, "conenose":2, "conf":1, "cong":1, "cong":1, "conj":1, "conk":1, "conker":2, "conkers":2, "conn":1, "conn":1, "conon":1, "cons":1, "cons":1, "conservation":2, "const":1, "constr":1, "cont":1, "containership":2, "contd":1, "conte":1, "contr":1, "conative":3, "concatenate":4, "concatenated":5, "concatenating":5, "concatenation":5, "concatenator":5, "concave":2, "concavely":3, "concaveness":3, "concavity":4, "concavo-concave":4, "concavo-convex":4, "concavo-concave":4, "concavo-convex":4, "conceal":2, "concealable":4, "concealedly":4, "concealedness":4, "concealer":3, "concealment":3, "concede":2, "conceded":3, "concededly":4, "conceder":3, "conceding":3, "conceit":2, "conceited":3, "conceitedly":4, "conceitedness":4, "conceive":2, "conceived":2, "conceivability":6, "conceivable":4, "conceivableness":5, "conceivably":4, "conceiver":3, "conceiving":3, "concelebrate":4, "concelebrated":5, "concelebrating":5, "concelebration":5, "concent":2, "concenter":3, "concentrate":3, "concentrated":4, "concentrating":4, "concentration":4, "concentration camp":5, "concentrative":4, "concentrativeness":5, "concentrator":4, "concentre":3, "concentric":3, "concentricity":5, "concentrical":4, "concentrically":5, "concept":2, "concepci":3, "concepcin":4, "conceptacular":5, "conceptacle":4, "conception":3, "conceptional":4, "conceptive":3, "conceptual":4, "conceptualise":5, "conceptualised":5, "conceptualism":5, "conceptualist":5, "conceptualising":6, "conceptualistic":6, "conceptualize":5, "conceptualized":5, "conceptualizing":6, "conceptuality":6, "conceptualization":7, "conceptually":5, "concern":2, "concerned":2, "concernedly":4, "concernedness":4, "concerning":3, "concerningly":4, "concerningness":4, "concernment":3, "concert":2, "concert grand":3, "concert overture":5, "concert pitch":3, "concerted":3, "concertedly":4, "concertgoer":4, "concertise":3, "concertised":3, "concertising":4, "concertize":3, "concertized":3, "concertizer":4, "concertizing":4, "concertmaster":4, "concertante":4, "concertato":4, "concertise":3, "concertize":3, "concertina":4, "concertinist":4, "concertino":4, "concerto":3, "concerto grosso":5, "concession":3, "concession road":4, "concessionaire":4, "concessionaries":5, "concessionary":5, "concessioner":4, "concessive":3, "concessively":4, "concessible":4, "concha":2, "conchal":2, "conchie":2, "conchiferous":4, "conchiolin":4, "conchita":3, "conchoid":2, "conchoidal":3, "conchoidally":4, "conchologist":4, "conchology":4, "conchobar":3, "conchological":5, "conchologically":6, "conchy":2, "concierge":2, "conciliative":4, "conciliatory":5, "conciliar":4, "conciliarly":5, "conciliate":4, "conciliated":5, "conciliating":5, "conciliatingly":6, "conciliable":5, "conciliation":5, "conciliative":5, "conciliator":5, "conciliatorily":7, "conciliatoriness":7, "conciliatory":6, "concinnate":3, "concinnated":4, "concinnating":4, "concinnity":4, "concinnous":3, "concinnously":4, "concise":2, "concisely":3, "conciseness":3, "concierge":3, "concision":3, "conclave":2, "conclavist":3, "conclude":2, "concludable":4, "concluded":3, "concluder":3, "concluding":3, "concludible":4, "conclusion":3, "conclusional":4, "conclusionally":5, "conclusive":3, "conclusively":4, "conclusiveness":4, "concoct":2, "concocter":3, "concoction":3, "concoctive":3, "concoctor":3, "concomitance":4, "concomitant":4, "concomitantly":5, "concord":2, "concord":2, "concord grape":3, "concorde":2, "concordal":3, "concordance":3, "concordant":3, "concordantly":4, "concordat":3, "concordatory":5, "concordia":4, "concorporate":4, "concorporated":5, "concorporating":5, "concorporation":5, "concours d'lgance":5, "concourse":2, "concrescence":3, "concrete":2, "concrete music":4, "concrete noun":3, "concrete number":4, "concrete poetry":5, "concretely":3, "concreteness":3, "concreted":3, "concreting":3, "concretization":5, "concretion":3, "concretionary":5, "concretise":3, "concretive":3, "concretively":4, "concretize":3, "concretized":3, "concretizing":4, "concur":2, "concurred":2, "concurrence":3, "concurrent":3, "concurrently":4, "concurring":3, "concurringly":4, "concuss":2, "concussion":3, "concussive":3, "concubine":3, "concubinage":4, "concubinaries":5, "concubinary":5, "concupiscence":4, "concupiscent":4, "concupiscible":5, "concyclic":3, "cond":2, "condamine":3, "condemn":2, "condemned cell":3, "condemner":3, "condemningly":4, "condemnable":4, "condemnably":4, "condemnation":4, "condemnatory":5, "condense":2, "condensed":2, "condensed milk":3, "condensedly":3, "condensedness":3, "condenser":3, "condensing":3, "condensate":3, "condensability":6, "condensable":4, "condensary":4, "condensation":4, "condensation trail":5, "condensational":5, "condensative":4, "condenseries":4, "condensery":4, "condensible":4, "condescendent":4, "condescender":4, "condescend":3, "condescendence":4, "condescending":4, "condescendingly":5, "condescension":4, "condescensive":4, "condescensively":5, "condign":2, "condignly":3, "condignity":4, "condillac":3, "condisciple":4, "condit":2, "condiment":3, "condimental":4, "condimentary":5, "condition":3, "conditioned":3, "conditioned response":5, "conditional":4, "conditionality":6, "conditionally":5, "conditioner":4, "conditioning":4, "conditivia":5, "conditivium":5, "conditoria":5, "conditorium":5, "condole":2, "condoled":2, "condolement":3, "condoler":3, "condoling":3, "condolingly":4, "condom":2, "condon":2, "condone":2, "condoned":2, "condonable":4, "condoner":3, "condoning":3, "condor":2, "condorcet":3, "condottiere":4, "condottieri":4, "condolatory":5, "condolence":3, "condolent":3, "condominium":5, "condonation":4, "conduce":2, "conduced":2, "conduceability":6, "conduct":2, "conductance":3, "conductibility":6, "conductible":4, "conducer":3, "conducing":3, "conducingly":4, "conducible":4, "conducibleness":5, "conducibly":4, "conduction":3, "conductional":4, "conductive":3, "conductively":4, "conductivity":5, "conductor":3, "conductorless":4, "conductorship":4, "conductorial":5, "conductress":3, "conductus":3, "conduit":2, "conducive":3, "conduciveness":4, "conduplicate":4, "conduplication":5, "condyle":2, "condylar":3, "condylarth":3, "condyloid":3, "condylomatous":5, "condyloma":4, "condylomas":4, "condylomata":5, "cond":3, "conelrad":3, "conestoga wagon":6, "confab":2, "confabbed":2, "confabbing":3, "confabulate":4, "confabulated":5, "confabulating":5, "confabulation":5, "confabulator":5, "confabulatory":6, "confarreate":4, "confarreation":5, "confect":2, "confection":3, "confectionaries":5, "confectionary":5, "confectioner":4, "confectioners' sugar":6, "confectioneries":5, "confectionery":5, "confederalist":5, "confederate":4, "confederate":4, "confederated":5, "confederating":5, "confederacy":5, "confederacy":5, "confederation":5, "confederation":5, "confederationism":6, "confederationist":6, "confederative":5, "confedrit":3, "confer":2, "conferred":2, "conferee":3, "conference":3, "conferential":4, "conferment":3, "conferral":3, "conferrable":4, "conferree":3, "conferrer":3, "conferring":3, "conferva":3, "conferval":3, "confervalike":4, "confervoid":3, "confervous":3, "confess":2, "confessant":3, "confessable":4, "confessedly":4, "confesser":3, "confessingly":3, "confession":3, "confessional":4, "confessionalism":5, "confessionaries":5, "confessionary":5, "confessionalian":6, "confessor":3, "confetti":3, "confetto":3, "confide":2, "confided":3, "confider":3, "confiding":3, "confidingly":4, "configure":3, "configuration":5, "configurational":6, "configurationally":7, "configurationism":6, "configurationist":6, "configurative":5, "confine":2, "confined":2, "confineable":4, "confineless":3, "confinement":3, "confinable":4, "confinedly":4, "confinedness":4, "confiner":3, "confining":3, "confirm":2, "confirmed":2, "confirmand":3, "confirmable":4, "confirmative":4, "confirmatory":5, "confirmedly":4, "confirmedness":4, "confirmer":3, "confirmingly":4, "confirmand":3, "confirmation":4, "confirmor":3, "confiscate":3, "confiscated":4, "confiscating":4, "confiscable":4, "confiscation":4, "confiscator":4, "confiscatory":5, "confiteor":4, "confidant":3, "confidante":3, "confidence":3, "confidence game":4, "confidence interval":6, "confidence man":4, "confidence trick":4, "confident":3, "confidente":3, "confidently":4, "confidential":4, "confidentially":5, "confidentialness":5, "confidentiality":7, "confiture":3, "conflate":2, "conflagrant":3, "conflagration":4, "conflagrative":4, "conflation":3, "conflict":2, "conflictingly":4, "confliction":3, "conflictive":3, "conflictory":4, "conflux":2, "confluence":3, "confluent":3, "conform":2, "conformance":3, "conformability":6, "conformable":4, "conformableness":5, "conformably":4, "conformer":3, "conformingly":4, "conformism":3, "conformist":3, "conformity":4, "conformal":3, "conformation":4, "confound":2, "confoundable":4, "confounded":3, "confoundedly":4, "confoundedness":4, "confounder":3, "confoundingly":4, "confocal":3, "confr":2, "confraternal":4, "confraternity":5, "confrere":2, "confricamentum":5, "confront":2, "confronter":3, "confrontation":4, "confuse":2, "confused":2, "confusability":6, "confusable":4, "confusably":4, "confusedly":4, "confusedness":4, "confusing":3, "confusingly":4, "confute":2, "confutable":4, "confutative":4, "confuted":3, "confuter":3, "confuting":3, "confucian":3, "confucianism":4, "confucianist":4, "confucius":3, "confusion":3, "confusional":4, "confutation":4, "cong":2, "conga":2, "congaed":2, "congaing":3, "congeal":2, "congealedness":3, "congealability":6, "congealable":4, "congealableness":5, "congealer":3, "congealment":3, "congee":2, "congeed":2, "congeeing":3, "congelifract":4, "congelifraction":5, "congeliturbation":6, "congenerous":4, "congenial":3, "congenially":4, "congenital":4, "congenitally":5, "congenitalness":5, "conger":2, "congest":2, "congestible":4, "congestion":3, "congestive":3, "congestus":3, "congelation":4, "congener":3, "congeneric":4, "congeniality":6, "congeries":3, "congii":3, "congius":3, "conglobe":2, "conglobed":2, "conglobing":3, "conglomerate":4, "conglomerated":5, "conglomeratic":5, "conglomerating":5, "conglomeration":5, "conglobate":3, "conglobately":4, "conglobated":4, "conglobating":4, "conglobation":4, "conglutinant":4, "conglutinate":4, "conglutinated":5, "conglutinating":5, "conglutination":5, "conglutinative":5, "congo":2, "congo":2, "congo eel":3, "congo free state":4, "congo red":3, "congou":2, "congolese":3, "congrats":2, "congratters":3, "congratulant":4, "congratulate":4, "congratulated":5, "congratulating":5, "congratulation":5, "congratulations":5, "congratulational":6, "congratulator":5, "congratulatory":6, "congress":2, "congress":2, "congress of vienna":6, "congressman":3, "congressman":3, "congressman-at-large":3, "congressmen-at-large":3, "congresswoman":4, "congresswoman":4, "congresswomen":4, "congressional":4, "congressional district":6, "congressional record":6, "congressionalist":5, "congressionally":5, "congreve":2, "congregant":3, "congregate":3, "congregated":4, "congregating":4, "congregation":4, "congregational":5, "congregational church":6, "congregationalism":6, "congregationalism":6, "congregationally":6, "congregative":4, "congregativeness":5, "congregator":4, "congruence":3, "congruent":3, "congruently":4, "congruency":4, "congruity":4, "congruous":3, "congruously":4, "congruousness":4, "cong":3, "conic":2, "conic projection":5, "conic section":4, "conics":2, "coning":2, "coniston water":5, "conical":3, "conical projection":6, "conically":4, "conicoid":3, "conjecture":3, "conjectured":3, "conjectural":4, "conjecturally":5, "conjecturable":5, "conjecturably":5, "conjecturer":4, "conjecturing":4, "conjoin":2, "conjoined":2, "conjoint":2, "conjointly":3, "conjointness":3, "conjoinedly":4, "conjoiner":3, "conjunct":2, "conjunctly":3, "conjunction":3, "conjunction-reduction":5, "conjunctional":4, "conjunctionally":5, "conjunctive":3, "conjunctively":4, "conjunctiva":4, "conjunctival":4, "conjunctivitis":5, "conjuncture":3, "conjunctural":4, "conjure":2, "conjure up":3, "conjured":2, "conjuration":4, "conjurator":4, "conjurer":3, "conjuring":3, "conjuror":3, "conjugal":3, "conjugality":5, "conjugally":4, "conjugant":3, "conjugate":3, "conjugated":4, "conjugated protein":6, "conjugating":4, "conjugable":4, "conjugably":4, "conjugation":4, "conjugational":5, "conjugationally":6, "conjugative":4, "conjugator":4, "conjuror":3, "connacht":2, "connate":2, "connately":3, "connateness":3, "connatural":4, "connaturally":5, "connaturalness":5, "connaught":2, "connation":3, "connect":2, "connectable":4, "connected":3, "connectedly":4, "connectedness":4, "connecting rod":4, "connectible":4, "connecticut":4, "connection":3, "connectional":4, "connectionism":4, "connective":3, "connective tissue":5, "connectively":4, "connectivity":5, "connector":3, "connee":2, "connellsville":3, "connelly":3, "connersville":3, "connexion":3, "connemara":4, "connie":2, "conning":2, "conning tower":4, "conniption":3, "connive":2, "connived":2, "connivance":3, "connivant":3, "connivantly":4, "connivence":3, "connivent":3, "connivently":4, "conniver":3, "conniving":3, "connivingly":4, "connoisseur":3, "connoisseurship":4, "connor":2, "connors":2, "connote":2, "connoted":3, "connoting":3, "connotation":4, "connotative":4, "connotatively":5, "connotively":4, "connubial":4, "connubiality":6, "connubially":5, "conon":2, "conoscenti":4, "conquer":2, "conquerable":4, "conquerableness":5, "conqueringly":4, "conqueror":3, "conqueror":3, "conquest":2, "conquest":2, "conquistador":4, "conquistadores":5, "conquian":3, "conrad":2, "conral":2, "conroe":2, "conroy":2, "consanguine":3, "consanguineous":5, "consanguineously":6, "consanguinity":5, "consarned":2, "conscience":2, "conscience clause":3, "conscience money":4, "conscience-stricken":3, "conscienceless":3, "consciencelessly":4, "consciencelessness":4, "conscionable":4, "conscionableness":5, "conscionably":4, "conscious":2, "consciously":3, "consciousness":3, "conscientious":4, "conscientious objector":7, "conscientiously":5, "conscientiousness":5, "conscript":2, "conscript fathers":4, "conscription":3, "conscriptional":4, "conscriptionist":4, "consecutive":4, "consecutively":5, "consecutiveness":5, "consent":2, "consenter":3, "consenting adult":5, "consensus":3, "consensuses":4, "consensual":4, "consensually":5, "consentaneity":6, "consentaneous":5, "consentaneously":6, "consentience":3, "consentient":3, "consentiently":4, "conserve":2, "conservant":3, "conservancy":4, "conservable":4, "conservatism":4, "conservatism":4, "conservative":4, "conservative":4, "conservative judaism":7, "conservative party":6, "conservatively":5, "conservativeness":5, "conservatoire":4, "conservatory":4, "conservatorium":6, "conservatory":5, "conserver":3, "conservation":4, "conservation of charge":6, "conservation of energy":8, "conservation of mass":6, "conservation of momentum":8, "conservation of parity":8, "conservational":5, "conservationist":5, "conservatoire":4, "conservator":4, "consett":2, "consecrate":3, "consecrated":4, "consecratedness":5, "consecrater":4, "consecrating":4, "consecration":4, "consecrator":4, "consecratory":5, "consecution":4, "consequence":3, "consequences":4, "consequent":3, "consequently":4, "consequential":4, "consequentially":5, "consequentialness":5, "consequentiality":7, "consider":3, "considered":3, "considerance":4, "considerate":4, "considerately":5, "considerateness":5, "considerable":5, "considerably":5, "consideration":5, "considerer":4, "considering":4, "consign":2, "consignable":4, "consignee":3, "consigner":3, "consignment":3, "consignor":3, "consignation":4, "consist":2, "consistence":3, "consistent":3, "consistently":4, "consistency":4, "consistorial":5, "consistory":4, "consol":2, "console":2, "console table":4, "consoled":2, "consols":2, "consolable":4, "consolatory":5, "consoler":3, "consoling":3, "consolingly":4, "consolidate":4, "consolidated":5, "consolidated fund":6, "consolidating":5, "consolidation":5, "consolidative":5, "consolidator":5, "consolitorily":6, "consolitoriness":6, "consolute":3, "consomm":3, "consomm":4, "consonantize":4, "consonantized":4, "consonantizing":5, "consort":2, "consortable":4, "consorter":3, "consortion":3, "consortia":4, "consortial":4, "consortium":4, "consocies":3, "consociate":4, "consociated":5, "consociating":5, "consociation":5, "consolation":4, "consolation prize":5, "consolette":3, "consolute":3, "consonance":3, "consonant":3, "consonantism":4, "consonantly":4, "consonancy":4, "consonantal":4, "consonantalize":5, "consonantalized":5, "consonantalizing":6, "consonantally":5, "consonantic":4, "consonantise":4, "consonantised":4, "consonantising":5, "conspectus":3, "conspectuses":4, "conspecific":4, "conspicuous":4, "conspicuously":5, "conspicuousness":5, "conspire":2, "conspired":2, "conspiracy":4, "conspirative":4, "conspirator":4, "conspiratorial":6, "conspiratorially":7, "conspiratress":4, "conspiring":3, "conspiringly":4, "conspicuity":5, "constabular":4, "constabularies":5, "constabulary":5, "constance":2, "constant":2, "constant":2, "constantan":3, "constantly":3, "constancy":3, "constanta":3, "constantia":3, "constantin":3, "constantine":3, "constantine i":4, "constantine ii":4, "constantine xi":4, "constantinian":5, "constantinople":5, "constable":3, "constable":3, "constableship":4, "constatation":4, "constellate":3, "constellated":4, "constellating":4, "constellation":4, "constellatory":5, "conster":2, "consternate":3, "consternated":4, "consternating":4, "consternation":4, "constituent":4, "constituently":5, "constituency":5, "constipate":3, "constipated":4, "constipating":4, "constipation":4, "constitute":3, "constituted":4, "constituter":4, "constituting":4, "constitution":4, "constitutional":5, "constitutional monarchy":8, "constitutional psychology":9, "constitutionalism":6, "constitutionalist":6, "constitutionality":7, "constitutionally":6, "constitutive":4, "constitutively":5, "constitutor":4, "constrain":2, "constrained":2, "constraint":2, "constrainable":4, "constrainedly":4, "constrainer":3, "constrainingly":4, "constrict":2, "constriction":3, "constrictive":3, "constrictor":3, "constringe":2, "constringed":2, "constringing":3, "constringent":3, "constringency":4, "construct":2, "constructer":3, "constructible":4, "construction":3, "constructional":4, "constructionally":5, "constructionism":4, "constructionist":4, "constructive":3, "constructively":4, "constructiveness":4, "constructivism":4, "constructivism":4, "constructivist":4, "constructor":3, "construe":2, "construed":2, "construability":6, "construable":4, "construer":3, "construing":3, "consubstantial":4, "consubstantialism":5, "consubstantialist":5, "consubstantially":5, "consubstantiality":7, "consubstantiate":5, "consubstantiated":6, "consubstantiating":6, "consubstantiation":6, "consuela":3, "consuelo":3, "consuetude":3, "consuetudinary":6, "consul":2, "consul general":5, "consult":2, "consultant":3, "consultable":4, "consultative":4, "consultatively":5, "consulter":3, "consulting":3, "consulting room":4, "consulship":3, "consultation":4, "consultative":4, "consultatory":5, "consultive":3, "consume":2, "consumed":2, "consumption":3, "consumptive":3, "consumptively":4, "consumptiveness":4, "consumable":4, "consumedly":4, "consumer":3, "consumer goods":4, "consumerism":4, "consuming":3, "consumingly":4, "consumingness":4, "consummate":3, "consummately":4, "consummation":4, "consummative":4, "consummator":4, "consummatory":5, "consus":2, "consular":3, "consular agent":5, "consulate":3, "cont":2, "contact":2, "contact flight":3, "contact lens":3, "contact man":3, "contact print":3, "contactant":3, "contactor":3, "contactual":4, "contactually":5, "contain":2, "contained":2, "containable":4, "containedly":4, "container":3, "containerboard":4, "containerise":4, "containerize":4, "containerized":4, "containerizing":5, "containerization":6, "containment":3, "contaminant":4, "contaminate":4, "contaminated":5, "contaminating":5, "contaminable":5, "contamination":5, "contaminative":5, "contaminator":5, "contaminous":4, "contango":3, "contango":3, "contagion":3, "contagioned":3, "contagious":3, "contagious abortion":6, "contagiously":4, "contagiousness":4, "contagium":3, "contagiosity":6, "contagium":4, "contakia":4, "contakion":4, "contemn":2, "contemner":3, "contemningly":4, "contempt":2, "contemptibility":6, "contemptible":4, "contemptibleness":5, "contemptibly":4, "contemptuous":4, "contemptuously":5, "contemptuousness":5, "contemnible":4, "contemnibly":4, "contemplate":3, "contemplated":4, "contemplating":4, "contemplatingly":5, "contemplable":4, "contemplation":4, "contemplative":4, "contemplatively":5, "contemplativeness":5, "contemplator":4, "contemporaries":5, "contemporarily":6, "contemporariness":6, "contemporary":5, "contemporaneity":7, "contemporaneous":6, "contemporaneously":7, "contemporise":4, "contemporised":4, "contemporising":5, "contemporize":4, "contemporized":4, "contemporizing":5, "contend":2, "contendingly":4, "content":2, "content word":3, "contentable":4, "contented":3, "contentedly":4, "contentedness":4, "contently":3, "contentment":3, "contentness":3, "contention":3, "contentional":4, "contentious":3, "contentiously":4, "contentiousness":4, "conterminal":4, "conterminous":4, "conterminously":5, "conterminousness":5, "contest":2, "contestant":3, "contestable":4, "contestableness":5, "contestably":4, "contester":3, "contestingly":4, "contestation":4, "context":2, "contexture":3, "contextured":3, "contextural":4, "contextual":4, "contextualise":5, "contextualize":5, "contextually":5, "contiguous":4, "contiguously":5, "contiguousness":5, "contingence":3, "contingent":3, "contingently":4, "contingency":4, "continuately":4, "continue":3, "continued":3, "continued fraction":5, "continuedly":4, "continuedness":4, "continua":4, "continual":4, "continuality":6, "continually":5, "continualness":5, "continuance":4, "continuant":4, "continuate":4, "continuateness":5, "continuable":5, "continuation":5, "continuative":5, "continuatively":6, "continuativeness":6, "continuator":5, "continuer":4, "continuing":4, "continuingly":5, "continuo":4, "continuous":4, "continuous creation":7, "continuous spectrum":6, "continuous stationery":8, "continuous waves":5, "continuously":5, "continuousness":5, "continutinuos":6, "continuum":4, "contiguity":5, "continence":3, "continent":3, "continent":3, "continently":4, "continency":4, "continental":4, "continental":4, "continental breakfast":6, "continental climate":6, "continental congress":6, "continental divide":6, "continental drift":5, "continental quilt":5, "continental shelf":5, "continental system":6, "continentalism":5, "continentalist":5, "continentality":6, "continentally":5, "continuity":5, "continuity girl":6, "conto":2, "contoid":2, "contort":2, "contorted":3, "contortedly":4, "contortedness":4, "contortion":3, "contortioned":3, "contortional":4, "contortionist":4, "contortionistic":5, "contortive":3, "contortively":4, "contour":2, "contour feather":4, "contour interval":5, "contour line":3, "contour ploughing":4, "contoise":3, "contra":2, "contract":2, "contract bridge":3, "contract out":3, "contracted":3, "contractedly":4, "contractedness":4, "contractibility":6, "contractible":4, "contractibleness":5, "contractibly":4, "contractile":3, "contractility":5, "contraction":3, "contractional":4, "contractive":3, "contractively":4, "contractiveness":4, "contractor":3, "contracture":3, "contractured":3, "contractual":4, "contractually":5, "contrail":2, "contralto":3, "contrapposto":4, "contraption":3, "contraptious":3, "contrarious":4, "contrariously":5, "contrariousness":5, "contrast":2, "contraste":2, "contrastable":4, "contrastably":4, "contrastedly":4, "contrastingly":4, "contrasty":3, "contrastive":3, "contrastively":4, "contrate":2, "contraband":3, "contrabandism":4, "contrabandist":4, "contrabass":3, "contrabassist":4, "contrabassoon":4, "contrabassoonist":5, "contraception":4, "contraceptive":4, "contraclockwise":4, "contradance":3, "contradict":3, "contradictable":5, "contradicter":4, "contradiction":4, "contradictious":4, "contradictiously":5, "contradictiousness":5, "contradictive":4, "contradictively":5, "contradictiveness":5, "contradictor":4, "contradictorily":6, "contradictoriness":6, "contradictory":5, "contradistinction":5, "contradistinctive":5, "contradistinctively":6, "contradistinguish":5, "contraindicant":5, "contraindicate":5, "contraindicated":6, "contraindicating":6, "contraindication":6, "contraoctave":4, "contraorbital":5, "contraorbitally":6, "contraplete":3, "contrapletal":4, "contrapose":3, "contraposed":3, "contraposing":4, "contrapositive":5, "contraposition":5, "contraprop":3, "contrapuntal":4, "contrapuntalist":5, "contrapuntally":5, "contrapuntist":4, "contrariety":5, "contrarily":4, "contrariness":4, "contrariwise":4, "contrary":3, "contrasuggestible":6, "contravallation":5, "contravene":3, "contravened":3, "contravener":4, "contravening":4, "contravention":4, "contrayerva":4, "contre-partie":3, "contrecoup":3, "contredanse":3, "contredanses":4, "contretemps":3, "contribute":3, "contributable":5, "contributive":4, "contributively":5, "contributiveness":5, "contributor":4, "contributorial":6, "contributory":5, "contributory negligence":8, "contrite":2, "contritely":3, "contriteness":3, "contrive":2, "contrived":2, "contrivance":3, "contrivable":4, "contriver":3, "contriving":3, "contribute":3, "contributed":4, "contributing":4, "contribution":4, "contributional":5, "contrition":3, "control":2, "control account":4, "control chart":3, "control column":4, "control experiment":6, "control grid":3, "control group":3, "control rod":3, "control stick":3, "control surface":4, "control tower":4, "controlled":2, "controllability":6, "controllable":4, "controllable-pitch":4, "controllableness":5, "controllably":4, "controller":3, "controllership":4, "controlless":3, "controlling":3, "controllingly":4, "controlor":3, "controvert":3, "controverter":4, "controvertist":4, "controvertible":5, "controvertibly":5, "controversial":4, "controversialism":5, "controversialist":5, "controversially":5, "controversy":4, "contuse":2, "contused":2, "contusing":3, "contumacity":5, "contumacious":4, "contumaciously":5, "contumaciousness":5, "contumacy":4, "contumelious":5, "contumeliously":6, "contumeliousness":6, "contumely":4, "contusion":3, "contusioned":3, "contusive":3, "cont":3, "conure":2, "conurbation":4, "convallariaceous":6, "convalesce":3, "convalesced":3, "convalescing":4, "convalescence":4, "convalescent":4, "convalescently":5, "convect":2, "convection":3, "convectional":4, "convective":3, "convectively":4, "convector":3, "convene":2, "convened":2, "convent":2, "convenable":4, "convenably":4, "convener":3, "convenience":3, "convenient":3, "conveniently":4, "conveniency":4, "convening":3, "convenience":4, "convenience food":5, "convenient":4, "convenor":3, "conventicular":5, "convention":3, "conventional":4, "conventionalise":5, "conventionalised":5, "conventionalism":5, "conventionalist":5, "conventionalising":6, "conventionalize":5, "conventionalized":5, "conventionalizing":6, "conventionality":6, "conventionalization":7, "conventionally":5, "conventioner":4, "conventioneer":4, "conventicle":4, "conventicler":4, "conventual":4, "conventually":5, "converge":2, "converged":2, "converging":3, "converse":2, "converse":2, "conversed":2, "conversely":3, "conversable":4, "conversableness":5, "conversably":4, "converser":3, "conversing":3, "convert":2, "convertaplane":4, "converted":3, "converter":3, "converter reactor":6, "convertite":3, "convertibility":6, "convertible":4, "convertibleness":5, "convertibly":4, "convertiplane":4, "convertoplane":4, "convergence":3, "convergent":3, "convergent thinking":5, "convergently":4, "convergency":4, "conversance":3, "conversant":3, "conversantly":4, "conversancy":4, "conversation":4, "conversation piece":5, "conversational":5, "conversationalist":6, "conversationally":6, "conversationist":5, "conversazione":5, "conversazioni":5, "conversazioziones":7, "conversion":3, "conversional":4, "conversionary":5, "conversus":3, "convertaplane":4, "convertin":3, "convertite":3, "convertive":3, "convertor":3, "convertoplane":4, "convex":2, "convexedly":4, "convexedness":4, "convexity":4, "convexly":3, "convexo-concave":4, "convexo-convex":4, "convexo-plane":3, "convey":2, "conveyance":3, "conveyancer":4, "conveyancing":4, "conveyable":4, "conveyer":3, "conveyor":3, "conveyor belt":4, "conveyorize":4, "conveyorized":4, "conveyorizer":5, "conveyorizing":5, "conveyorization":6, "convenance":3, "convenances":3, "convenances":4, "convict":2, "convictable":4, "convictfish":3, "convictfishes":4, "convictible":4, "conviction":3, "convictional":4, "convictive":3, "convictively":4, "convince":2, "convinced":2, "convincedly":4, "convincedness":4, "convincer":3, "convincing":3, "convincingly":4, "convincingness":4, "convincibility":6, "convincible":4, "convive":2, "convivial":4, "convivialist":5, "conviviality":6, "convivially":5, "convocative":4, "convoke":2, "convoked":2, "convoker":3, "convoking":3, "convolve":2, "convolved":2, "convolvement":3, "convolving":3, "convolluses":4, "convolvulaceous":5, "convolvuli":4, "convolvulus":4, "convoy":2, "convocant":3, "convocation":4, "convocational":5, "convocationally":6, "convocator":4, "convolute":3, "convolutely":4, "convoluted":4, "convolutedly":5, "convolutedness":5, "convoluting":4, "convolution":4, "convolutional":5, "convolutionary":6, "convulse":2, "convulsed":2, "convulsedly":4, "convulsing":3, "convulsibility":6, "convulsible":4, "convulsant":3, "convulsion":3, "convulsionaries":5, "convulsionary":5, "convulsive":3, "convulsively":4, "convulsiveness":4, "conway":2, "conyers":2, "coo":1, "cooch":1, "cooch behar":3, "coof":1, "cook":1, "cook":1, "cook inlet":3, "cook islands":3, "cook-general":3, "cook-general":3, "cooke":1, "cookeville":2, "cooks-general":3, "cookable":3, "cookbook":2, "cooker":2, "cookeries":3, "cookery":3, "cookery book":4, "cookery":3, "cookhouse":2, "cookhouses":3, "cookie":2, "cookie":2, "cookies":2, "cooking":2, "cookless":2, "cookout":2, "cookshop":2, "cookstove":2, "cookware":2, "cooky":2, "cooky":2, "cool":1, "cool-headed":2, "cool-headedly":3, "cool-headedness":3, "coolth":1, "coolant":2, "cooler":2, "coolgardie safe":4, "coolidge":2, "coolie":2, "cooling-off":2, "coolingly":3, "coolingness":3, "coolish":2, "coolly":2, "coolness":2, "cooly":2, "coom":1, "coomb":1, "coombe":1, "coon":1, "cooncan":2, "cooner":2, "coonhound":2, "coonskin":2, "coontie":2, "coop":1, "coop":1, "cooper":2, "cooperage":3, "cooperite":3, "coopery":3, "coopery":3, "coorg":1, "coos":1, "coot":1, "cootch":1, "cooter":2, "cootie":2, "cooties":2, "cooty":2, "cooboo":2, "cooee":2, "cooeed":2, "cooeeing":3, "cooer":2, "cooey":2, "cooeyed":2, "cooeying":3, "cooing":2, "cooingly":3, "coolabah":3, "coolamon":3, "cooley":2, "coolidge":2, "coolie":2, "coolibah":3, "cooly":2, "cooper":2, "cooper's creek":3, "cooper's hawk":3, "cooperstown":3, "cop":1, "cope":1, "copesmate":2, "copemate":2, "copestone":2, "copht":1, "copse":1, "copt":1, "coper":2, "copied":2, "copies":2, "coping":2, "coping saw":3, "coping stone":3, "copier":3, "copland":2, "coplay":2, "copley":2, "coppard":2, "coppelia":3, "copper":2, "copper belt":3, "copper pyrites":5, "copper sulphate":4, "copper-leaf":2, "copperah":3, "copperas":3, "copperhead":3, "copperheadism":4, "coppermine":3, "copperplate":3, "coppersmith":3, "coppery":3, "coppice":2, "coppiced":2, "copping":2, "coppe":3, "copra":2, "copraemic":3, "copraemia":4, "copremic":3, "copremia":4, "copreus":3, "coprology":4, "coprophagist":4, "coprophagous":4, "coprophagy":4, "coprolagnist":4, "coprolagnia":5, "coprolalia":5, "coprolaliac":5, "coprolite":3, "coprolitic":4, "coprophilic":4, "coprophilia":5, "coprophobic":4, "coprophobia":5, "copter":2, "coptic":2, "coptic church":3, "copula":3, "copular":3, "copulate":3, "copulated":4, "copulating":4, "copulation":4, "copulative":4, "copulatively":5, "copy":2, "copy desk":3, "copy taster":4, "copy typist":4, "copy-edit":3, "copybook":3, "copyboy":3, "copycat":3, "copycatted":4, "copycatting":4, "copycutter":4, "copyfitter":4, "copyfitting":4, "copygraph":3, "copyhold":3, "copyholder":4, "copying":3, "copyist":3, "copyread":3, "copyreader":4, "copyright":3, "copyright deposit library":9, "copyrightable":5, "copyrighted":4, "copyrighter":4, "copywriter":4, "copywriting":4, "coquelicot":3, "cor":1, "cor":1, "cor anglais":3, "cor blimey":3, "cord":1, "cords":1, "cordage":2, "corded":2, "corder":2, "cording":2, "cordite":2, "cordless":2, "cordlike":2, "cordwain":2, "cordwainer":3, "cordwainery":4, "cordwood":2, "core":1, "core":1, "coreless":2, "coremaker":3, "corf":1, "cork":1, "cork":1, "cork cambium":4, "corked":1, "corkage":2, "corkboard":2, "corker":2, "corking":2, "corkier":3, "corkiest":3, "corkiness":3, "corklike":2, "corkscrew":2, "corkwood":2, "corky":2, "corm":1, "cormlike":2, "corn":1, "corn borer":3, "corn bunting":3, "corn earworm":3, "corn exchange":3, "corn factor":3, "corn lily":3, "corn marigold":4, "corn poppy":3, "corn salad":3, "corn syrup":3, "corn whisky":3, "corn-colored":2, "corn-cracker":2, "corn-picker":2, "corned":1, "cornball":2, "corncob":2, "corncob pipe":3, "corncockle":3, "corncrake":2, "corncrib":2, "cornfed":2, "cornfield":2, "cornflag":2, "cornflakes":2, "cornflour":2, "cornflower":3, "cornhusk":2, "cornhusker":3, "cornhusking":3, "cornier":3, "corniest":3, "cornstalk":2, "cornstalk":2, "cornstarch":2, "cornstone":2, "cornwall":2, "cornwallis":3, "corny":2, "corol":1, "coroll":1, "corp":1, "corps":1, "corps de ballet":4, "corps diplomatique":5, "corpse":1, "corpsman":2, "corr":1, "correl":1, "corse":1, "corse":1, "corselet":2, "corslet":2, "cortland":2, "corves":1, "coral":2, "coral":2, "coral fern":3, "coral reef":3, "coral sea":3, "coral snake":3, "coral tree":3, "coralberry":4, "coralliferous":5, "corallike":3, "coralline":3, "corallite":3, "corallita":4, "coralloid":3, "coralloidal":4, "coralroot":3, "coraciiform":5, "coracle":3, "coracoid":3, "coramine":3, "corban":2, "corbeil":2, "corbeille":2, "corbel":2, "corbel out":3, "corbel step":3, "corbeled":2, "corbelled":2, "corbeling":3, "corbelling":3, "corbet":2, "corbett":2, "corbicula":4, "corbiculate":4, "corbie":2, "corbie gable":4, "corbie-step":2, "corbiestep":3, "corbin":2, "corbina":3, "corblimey":3, "corblimy":3, "corbusier":3, "corby":2, "corby":2, "corcoran":3, "corcovado":4, "corcyra":3, "corcyraean":4, "cordate":2, "cordately":3, "corday":2, "cordell":2, "cordelle":2, "cordelled":2, "cordelling":3, "cordelia":3, "cordelier":3, "cordeliers":3, "cordial":2, "cordiality":4, "cordially":3, "cordialness":3, "cordillera":4, "cordilleran":4, "cordilleran":4, "cordilleras":4, "cordis":2, "cordia":3, "cordial":3, "cordiality":5, "cordierite":4, "cordiform":3, "cordon":2, "cordon bleu":3, "cordon sanitaire":5, "cordoba":3, "cordoba":3, "cordonazo":4, "cordova":3, "cordovan":3, "cordovan":3, "corduroy":3, "corduroy road":4, "corduroys":3, "corer":2, "corey":2, "coresus":3, "corfam":2, "corfu":2, "corgi":2, "coring":2, "corinth":2, "corinthus":3, "coricidin":4, "coriolanus":5, "coriolis force":5, "corker":2, "corliss":2, "cormel":2, "cormoid":2, "cormous":2, "cormophyte":3, "cormophytic":4, "cormorant":3, "cornaceous":3, "corneille":2, "cornel":2, "cornell":2, "cornelia":3, "cornelian":3, "cornelian":4, "corner":2, "corner":2, "cornered":2, "cornerstone":3, "cornerways":3, "cornerwise":3, "cornet":2, "cornet--pistons":4, "cornets--pistons":4, "cornett":2, "cornette":2, "cornetcy":3, "cornetfish":3, "cornetfishes":4, "cornetist":3, "cornetti":3, "cornettist":3, "cornetto":3, "cornea":3, "corneal":3, "cornelis":3, "cornelius":4, "cornemuse":3, "corneous":3, "cornice":2, "corniced":2, "corniche":2, "cornicing":3, "corniculate":4, "corning":2, "cornish":2, "cornish pasty":4, "cornish split":3, "cornishman":3, "cornichon":3, "cornicle":3, "corno":2, "cornopion":4, "cornu":2, "cornute":2, "cornuted":3, "cornuting":3, "cornua":3, "cornual":3, "cornucopia":5, "cornucopian":5, "cornucopiate":5, "cornuto":3, "corollaries":4, "corollary":4, "corollaceous":4, "corody":3, "corolitic":4, "coromandel coast":5, "coromell":3, "coronach":3, "coronal":3, "coronal suture":5, "coronaled":3, "coronalled":3, "coronaries":4, "coronary":4, "coronary artery":7, "coronary insufficiency":9, "coronary thrombosis":7, "coronate":3, "coronation":4, "coronel":3, "coroner":3, "coronership":4, "coronet":3, "coroneted":4, "coronetlike":4, "coronetted":4, "coronitis":4, "coroplast":3, "coroplastic":4, "corporal punishment":6, "corpora":3, "corporal":3, "corporalcy":4, "corporality":5, "corporally":4, "corporalship":4, "corporate":3, "corporately":4, "corporateness":4, "corporatism":4, "corporatist":4, "corporativism":5, "corporale":4, "corporation":4, "corporational":5, "corporative":4, "corporator":4, "corporeal":4, "corporeality":6, "corporeally":5, "corporealness":5, "corporeity":5, "corposant":3, "corpus":2, "corpus callosum":5, "corpus christi":4, "corpus delicti":5, "corpus juris":4, "corpus juris canonici":8, "corpus juris civilis":7, "corpus luteum":5, "corpus luteum hormone":7, "corpus striatum":5, "corpus vile":4, "corpuscle":3, "corpuscule":3, "corpuscular":4, "corpuscular theory":7, "corpuscularity":6, "corpulence":3, "corpulent":3, "corpulently":4, "corpulency":4, "corr":2, "corrade":2, "corraded":3, "corrading":3, "corral":2, "corralled":2, "corralling":3, "corrado":3, "corrasion":3, "corrasive":3, "correct":2, "correctable":4, "correctedness":4, "correctingly":4, "correctible":4, "correctitude":4, "correctly":3, "correctness":3, "correction":3, "correctional":4, "corrective":3, "correctively":4, "corrector":3, "correggio":3, "corregidor":4, "corregidor":4, "corregidors":4, "corregidores":5, "corregimiento":6, "correlative":4, "correlatively":5, "correlativeness":5, "correlativity":6, "corrente":3, "correlate":3, "correlatable":5, "correlated":4, "correlating":4, "correlation":4, "correlation coefficient":8, "correlational":5, "correspond":3, "correspondence":4, "correspondence column":6, "correspondence school":5, "correspondent":4, "correspondently":5, "correspondency":5, "correspondingly":5, "corresponsive":4, "corresponsively":5, "corrie":2, "corrientes":3, "corriedale":3, "corrida":3, "corridor":3, "corridored":3, "corrientes":4, "corrigendum":4, "corrigibility":6, "corrigible":4, "corrigibleness":5, "corrigibly":4, "corrival":3, "corrivalry":4, "corrobboree":4, "corroborant":4, "corroborate":4, "corroborated":5, "corroborating":5, "corroboration":5, "corroborative":5, "corroboratively":6, "corroborator":5, "corroboree":4, "corrode":2, "corrodant":3, "corroded":3, "corroder":3, "corroding":3, "corrodibility":6, "corrodible":4, "corrody":3, "corrosion":3, "corrosional":4, "corrosive":3, "corrosive sublimate":6, "corrosively":4, "corrosiveness":4, "corrosivity":5, "corrupt":2, "corruptedly":4, "corruptedness":4, "corrupter":3, "corruptful":3, "corruptibility":6, "corruptible":4, "corruptibleness":5, "corruptibly":4, "corruptly":3, "corruptness":3, "corruption":3, "corruptionist":4, "corruptive":3, "corruptively":4, "corruptible":4, "corruptor":3, "corrugate":3, "corrugated":4, "corrugated iron":6, "corrugated paper":6, "corrugating":4, "corrugation":4, "corrugator":4, "corry":2, "corrze":3, "corsac":2, "corsage":2, "corsair":2, "corset":2, "corsetless":3, "corsetry":3, "corselet":3, "corsetior corsetier":6, "corsica":3, "corsican":3, "corsicana":4, "cort":2, "cortege":2, "cortelyou":3, "cortes":2, "cortex":2, "cortez":2, "cortegiano":4, "corti":2, "corticolous":4, "cortin":2, "cortical":3, "cortically":4, "corticate":3, "corticated":4, "cortication":4, "cortices":3, "corticoid":3, "corticosterone":5, "corticosteroid":5, "corticotrophin":5, "cortisol":3, "cortisone":3, "cortot":2, "cortona":3, "corts":3, "cortge":3, "cortges":4, "coruscate":3, "coruscated":4, "coruscating":4, "coruscation":4, "corv":2, "corvallis":3, "corvet":2, "corvette":2, "corvine":2, "corvina":3, "corvo":2, "corvus":2, "corve":3, "corwin":2, "coryell":2, "corymb":2, "corymbed":2, "corymblike":3, "coryat":3, "coryate":3, "corybant":3, "corybantes":4, "corybantian":4, "corybantic":4, "corydon":3, "corynebacteria":7, "corynebacterial":7, "corynebacterium":7, "coryph":3, "coryphaea":4, "coryphaei":4, "coryphaeus":4, "coryphasia":4, "coryphe":4, "corythus":3, "cos":1, "cos":1, "cos":1, "cos lettuce":3, "cose":1, "cosh":1, "cosher":2, "cospar":1, "coss":1, "cost":1, "cost accounting":4, "cost benefit analysis":8, "cost of living":4, "cost-account":2, "cost-effective":3, "cost-push inflation":4, "costing":2, "costless":2, "costlessness":3, "costlier":3, "costliest":3, "costliness":3, "costly":2, "costmaries":3, "costmary":3, "cosgrave":2, "cosing":2, "cosmetic":3, "cosmetic surgery":6, "cosmetically":5, "cosmetas":3, "cosmetician":4, "cosmetologist":5, "cosmetology":5, "cosmetological":6, "cosmic":2, "cosmic dust":3, "cosmic rays":3, "cosmin":2, "cosmine":2, "cosmism":2, "cosmist":2, "cosmical":3, "cosmicality":5, "cosmically":4, "cosmo":2, "cosmogonal":4, "cosmogonist":4, "cosmogony":4, "cosmographer":4, "cosmographist":4, "cosmography":4, "cosmoid":2, "cosmologist":4, "cosmology":4, "cosmopolis":4, "cosmopolite":4, "cosmopolitism":5, "cosmos":2, "cosmoses":3, "cosmochemistry":5, "cosmodrome":3, "cosmogonic":4, "cosmographic":4, "cosmographically":6, "cosmoline":3, "cosmolined":3, "cosmolining":4, "cosmological":5, "cosmologically":6, "cosmonaut":3, "cosmonautic":4, "cosmonautics":4, "cosmonautical":5, "cosmonautically":6, "cosmopolitan":5, "cosmopolitanise":6, "cosmopolitanised":6, "cosmopolitanism":6, "cosmopolitanising":7, "cosmopolitanize":6, "cosmopolitanized":6, "cosmopolitanizing":7, "cosmopolitanization":8, "cosmopolitanly":6, "cosmoramic":4, "cosmorama":4, "cosmotron":3, "cossack":2, "cossack hat":3, "cosset":2, "cossie":2, "costa":2, "costa brava":4, "costa rica":4, "costae":2, "costain":2, "costal":2, "costally":3, "costard":2, "costate":2, "costectomy":4, "costello":3, "costen":2, "coster":2, "costermansville":4, "costermonger":4, "costive":2, "costively":3, "costiveness":3, "costotomy":4, "costoclavicular":6, "costoscapular":5, "costotome":3, "costrel":2, "costume":2, "costume jewellery":6, "costume piece":3, "costumed":2, "costumer":3, "costuming":3, "costumier":4, "costumiers":4, "costusroot":3, "cot":1, "cot":1, "cote":1, "cotehardie":3, "coth":1, "cothamore":3, "cotswold":2, "cotswolds":2, "cotte":1, "cottbus":2, "coted":2, "cotice":2, "coticed":2, "coticing":3, "coting":2, "cotise":2, "cotised":2, "cotising":3, "cotman":2, "cotopaxi":4, "cotquean":2, "cotta":2, "cottage":2, "cottage cheese":3, "cottage hospital":5, "cottage industry":5, "cottage loaf":3, "cottage pie":3, "cottage piano":5, "cottaged":2, "cottager":3, "cottar":2, "cotter":2, "cotter pin":3, "cottier":2, "cottian alps":4, "cottier":3, "cotton":2, "cotton":2, "cotton belt":3, "cotton bush":3, "cotton cake":3, "cotton candy":4, "cotton flannel":4, "cotton grass":3, "cotton on":3, "cotton picker":4, "cotton stainer":4, "cotton to":3, "cotton waste":3, "cotton wool":3, "cotton-picking":3, "cottonade":3, "cottonless":3, "cottonmouth":3, "cottonpickin'":4, "cottonpicking":4, "cottonseed":3, "cottonseed meal":4, "cottonseed oil":4, "cottontail":3, "cottonweed":3, "cottonwick":3, "cottonwood":3, "cottony":3, "cottony-cushion scale":5, "cottus":2, "cotwal":2, "cotys":2, "cotyleus":3, "cotyledon":4, "cotyledonal":5, "cotyledonary":6, "cotyloid":3, "cotyloidal":4, "couch":1, "couchant":2, "coucher":2, "couching":2, "cough":1, "cough mixture":3, "cougher":2, "could":1, "couldn't":2, "coulter":2, "coulter":2, "count":1, "count against":3, "count palatine":4, "countable":3, "countableness":4, "countably":3, "countdown":2, "counter":2, "counterjumper":4, "counterman":3, "counting house":3, "countless":2, "countship":2, "council":2, "council of states":4, "council of trent":4, "council of war":4, "council school":3, "council-manager plan":5, "councillor":3, "councillorship":4, "councilman":3, "councilmanic":4, "councilwoman":4, "councilwomen":4, "councilor":3, "councilorship":4, "counsel":2, "counseled":2, "counselled":2, "counselable":4, "counseling":3, "counsellable":4, "counselling":3, "counsellor":3, "counsellorship":4, "counselor":3, "counselor-at-law":3, "counselors-at-law":3, "counselorship":4, "countee":2, "counter":2, "counter jumper":4, "counter-boulle":2, "counter-ion":3, "counter-passant":3, "counter-rampant":3, "counter-reformation":5, "counter-revolution":5, "counter-revolutionary":7, "counter-worker":3, "counterearth":2, "counteract":3, "counteracter":4, "counteractingly":5, "counteraccusation":6, "counteraction":4, "counteractive":4, "counteractively":5, "counteractor":4, "counterargument":5, "counterattack":4, "counterattraction":5, "counterattractive":5, "counterattractively":6, "counterbalance":4, "counterbalanced":4, "counterbalancing":5, "counterblast":3, "counterblow":3, "counterbore":3, "counterbored":3, "counterborer":4, "counterboring":4, "counterbrace":3, "counterbracing":4, "counterbrand":3, "counterchange":3, "counterchanged":3, "counterchanging":4, "countercharge":3, "countercharged":3, "countercharging":4, "countercheck":3, "counterclaim":3, "counterclaimant":4, "counterclockwise":4, "countercolored":4, "counterculture":4, "countercurrent":4, "countercurrently":5, "counterdeclaration":6, "counterdemonstration":6, "counterespionage":6, "counterfact":3, "counterfactual":5, "counterfactually":6, "counterfeit":3, "counterfeiter":4, "counterfeitly":4, "counterfeitness":4, "counterflashing":4, "counterfoil":3, "counterforce":3, "counterfort":3, "counterglow":3, "counterinsurgent":5, "counterinsurgency":6, "counterintelligence":6, "counterirritant":5, "counterlight":3, "counterlighted":4, "counterlighting":4, "counterlit":3, "countermand":3, "countermandable":5, "countermanifesto":6, "countermarch":3, "countermark":3, "countermeasure":4, "countermine":3, "countermined":3, "countermining":4, "countermove":3, "countermoved":3, "countermovement":4, "countermoving":4, "counteroffensive":5, "counteroffer":4, "counterpane":3, "counterpaned":3, "counterpart":3, "counterplot":3, "counterplotted":4, "counterplotting":4, "counterpoint":3, "counterpoise":3, "counterpoised":3, "counterpoising":4, "counterpoison":4, "counterpotent":4, "counterpressure":4, "counterproof":3, "counterpropaganda":6, "counterproposition":6, "counterproductive":5, "counterproposal":5, "counterpunch":3, "counterreformation":6, "counterrevolution":6, "counterrevolutionaries":8, "counterrevolutionary":8, "counterreplied":4, "counterreply":4, "counterreplying":5, "counterrotating":5, "countersank":3, "countersalient":5, "counterscarp":3, "countershading":4, "countershaft":3, "countershafting":4, "countersign":3, "countersignature":5, "countersink":3, "countersinking":4, "counterspy":3, "counterstain":3, "counterstamp":3, "counterstatement":4, "counterstroke":3, "countersubject":4, "countersunk":3, "countertendency":5, "countertenor":4, "counterthrust":3, "countertransference":5, "counterturn":3, "countertype":3, "countervail":3, "countervair":3, "counterview":3, "counterweigh":3, "counterweight":3, "counterweighted":4, "counterword":3, "counterwork":3, "countess":2, "countenance":3, "countenanced":3, "countenancer":4, "countenancing":4, "countrified":3, "countrifiedness":4, "country":2, "country club":3, "country cousin":4, "country dance":3, "country gentleman":5, "country rock":3, "country seat":3, "country-and-western":3, "country-bred":2, "country-dance":2, "country-wide":2, "countryfied":3, "countryfiedness":4, "countryfolk":3, "countryman":3, "countrypeople":4, "countryseat":3, "countryside":3, "countrywide":3, "countrywoman":4, "countrywomen":4, "county":2, "county borough":4, "county court":3, "county palatine":5, "county seat":3, "county town":3, "coup":1, "coup d'tat":3, "coup de foudre":4, "coup de thatre":5, "coupe":1, "couped":1, "coupling":2, "course":1, "coursed":1, "courser":2, "courses":2, "coursing":2, "court":1, "court":1, "court circular":4, "court martial":3, "court of appeal":4, "court of exchequer":5, "court of honor":4, "court of inquiry":5, "court of justiciary":7, "court of session":4, "court plaster":3, "court tennis":3, "court-baron":2, "court-bouillon":2, "court-martial":2, "court-martialed":2, "court-martialled":2, "court-martials":2, "court-martialing":3, "court-martialling":3, "courtenay":2, "courteney":2, "courts-martial":2, "courthouse":2, "courthouses":3, "courtland":2, "courtlier":3, "courtliest":3, "courtliness":3, "courtly":2, "courtly love":3, "courtney":2, "courtroom":2, "courtship":2, "courtyard":2, "courage":2, "courantyne":3, "courbet":2, "courbevoie":3, "courgette":2, "courier":3, "courlan":2, "courland":2, "cournand":2, "courtelle":2, "courteous":3, "courteously":4, "courteousness":4, "courtesan":3, "courtesy":3, "courtesy light":4, "courtesy title":5, "courtezan":3, "courtier":3, "courtrai":2, "couscous":2, "cousin":2, "cousin-german":3, "cousins-german":3, "cousinage":3, "cousinhood":3, "cousinly":3, "cousinry":3, "cousinship":3, "cousteau":2, "couth":1, "couthie":2, "couthily":3, "couthiness":3, "couthy":2, "coucal":2, "couchant":2, "couchette":2, "couch":3, "coud":2, "coudersport":3, "coue":2, "cougar":2, "coulee":2, "coulisse":2, "coulibiaca":4, "couloir":2, "couloirs":2, "coulomb":2, "coulomb":2, "coulomb field":3, "coulomb's law":3, "coulombmeter":4, "coulometer":4, "coule":3, "coumarin":3, "coumarone":3, "coup":2, "couperin":2, "couperin":3, "couperus":3, "couple":2, "couple-close":2, "coupler":2, "couplet":2, "couplement":3, "coupling":2, "coupon":2, "couponless":3, "coup":3, "courant":2, "courante":2, "courageous":3, "courageously":4, "courageousness":4, "coureur de bois":4, "courier":3, "cousin":2, "cousy":2, "couteau":2, "couter":2, "coutil":2, "couture":2, "couturiers":3, "couturier":4, "couturire":5, "couturires":5, "couvade":2, "cou":3, "cou":3, "couism":4, "cove":1, "coven":2, "covent garden":4, "coventry":3, "cover":2, "cover crop":3, "cover girl":3, "cover note":3, "cover point":3, "cover-shoulder":3, "cover-up":2, "covered":2, "covered wagon":4, "covert":2, "covert cloth":3, "covert coat":3, "covertly":3, "covertness":3, "coverage":3, "coverall":3, "coverable":4, "coverdale":3, "coverer":3, "covering":3, "covering letter":5, "coverless":3, "coverlet":3, "coverley":3, "coverlid":3, "coverture":3, "covet":2, "covetable":4, "coveter":3, "covetingly":4, "covetous":3, "covetously":4, "covetousness":4, "covey":2, "covenant":3, "covenant":3, "covenanter":4, "covenanter":4, "covenantal":4, "covenantee":4, "covenantor":4, "covin":2, "coving":2, "covington":3, "covinous":3, "covinously":4, "cow":1, "cow parsley":3, "cow parsnip":3, "cow pillow":3, "cow pony":3, "cowes":1, "cowk":1, "cowl":1, "cowl":1, "cowl neckline":3, "cowled":1, "cowling":2, "cowlstaff":2, "cowp":1, "cowage":2, "coward":2, "coward":2, "cowardic":3, "cowardice":3, "cowardliness":4, "cowardly":3, "cowbane":2, "cowbell":2, "cowberry":3, "cowbind":2, "cowbird":2, "cowboy":2, "cowcatcher":3, "cowell":2, "cower":2, "coweringly":4, "cowfish":2, "cowfishes":3, "cowgirl":2, "cowhage":2, "cowherb":2, "cowherd":2, "cowhide":2, "cowhided":3, "cowhiding":3, "cowitch":2, "cowichan sweater":5, "cowley":2, "cowlick":2, "cowlike":2, "cowman":2, "cowpat":2, "cowpea":2, "cowper":2, "cowper's glands":3, "cowpoke":2, "cowpox":2, "cowpuncher":3, "cowrie":2, "cowry":2, "cowshed":2, "cowskin":2, "cowslip":2, "cowslipped":2, "cowtail":2, "cox":1, "cox":1, "cox's orange pippin":5, "coxa":2, "coxae":2, "coxal":2, "coxalgic":3, "coxalgia":4, "coxalgy":3, "coxcomb":2, "coxcombical":4, "coxcombically":5, "coxcombry":3, "coxey":2, "coxsackie":3, "coxsackie virus":5, "coxswain":2, "coy":1, "coy":1, "coyish":2, "coyishness":3, "coyly":2, "coyness":2, "coyolxauhqui":4, "coyote":2, "coyote":3, "coyote-brush":3, "coyote-bush":3, "coypu":2, "coysevox":3, "coz":1, "coze":1, "cozen":2, "cozens":2, "cozenage":3, "cozener":3, "cozeningly":4, "cozing":2, "cozzens":2, "coact":2, "coacervate":4, "coacervation":5, "coaction":3, "coactive":3, "coactively":4, "coactivity":5, "coactor":3, "coadjutant":4, "coadjutor":4, "coadjutress":4, "coadjutrix":4, "coadjutrices":5, "coadunate":4, "coadunation":5, "coadventure":4, "coadventured":4, "coadventurer":5, "coadventuress":5, "coadventuring":5, "coagulant":4, "coagulase":4, "coagulate":4, "coagulated":5, "coagulating":5, "coagulability":7, "coagulable":5, "coagulation":5, "coagulative":5, "coagulator":5, "coagulatory":6, "coagulin":4, "coagulum":4, "coanda":3, "coaptation":4, "coarctate":3, "coarctation":4, "coarticulation":6, "coauthor":3, "coax":2, "coaxal":3, "coaxial":4, "coaxial cable":6, "coachella":4, "coahuila":4, "coalesce":3, "coalesced":3, "coalescing":4, "coalescence":4, "coalescent":4, "coalinga":4, "coalition":4, "coalitional":5, "coalitioner":5, "coalitionist":5, "coati":3, "coati-mondi":4, "coati-mundi":4, "cobalt":2, "cobalt bloom":3, "cobalt blue":3, "cobalt bomb":3, "cobaltammine":4, "cobaltine":3, "cobaltic":3, "cobaltine":3, "cobaltite":3, "cobaltous":3, "cobelligerent":5, "cobia":3, "coble":2, "coblenz":2, "cobleskill":3, "cobourg":2, "cobra":2, "cobra de capello":6, "coburg":2, "coburg":2, "coca":2, "coca-cola":3, "cocain":2, "cocaine":2, "cocainise":3, "cocainised":3, "cocainism":3, "cocainising":4, "cocainize":3, "cocainized":3, "cocainizing":4, "cocainization":5, "cochairman":3, "cochabamba":4, "cochin":2, "cochin":2, "cochin china":4, "cochin-china":3, "cochinchine":3, "cochise":2, "cocles":2, "coco":2, "coco de mer":4, "cocoa":2, "cocoa bean":3, "cocoa butter":4, "cocoanut":3, "coconscious":3, "coconsciously":4, "coconsciousness":4, "cocoon":2, "cocos islands":4, "cocotte":2, "cocobola":4, "cocobolo":4, "cocomat":3, "coconut":3, "coconut butter":5, "coconut ice":4, "coconut matting":5, "coconut milk":4, "coconut oil":4, "coconut palm":4, "coconut shy":4, "cocopan":3, "cocoyam":3, "cocytean":4, "cocytus":3, "coda":2, "codeclination":5, "codeine":2, "codetta":3, "codex":2, "codex juris canonici":8, "codefendant":4, "codeia":3, "codices":3, "codicology":5, "codon":2, "codomain":3, "cody":2, "coed":2, "coedit":3, "coeditor":4, "coeditorship":5, "coeducation":5, "coeducational":6, "coeducationalism":7, "coeducationally":7, "coefficient":4, "coefficiently":5, "coemption":3, "coenzyme":3, "coerce":2, "coerced":2, "coercer":3, "coercing":3, "coercion":3, "coercionary":5, "coercionist":4, "coercive":3, "coercive force":4, "coercively":4, "coerciveness":4, "coercivity":5, "coercible":4, "coessential":4, "coessentially":5, "coessentiality":7, "coexecutor":5, "coexecutrix":5, "coexecutrices":6, "coexist":3, "coexistence":4, "coexistent":4, "coexistency":5, "coextend":3, "coextension":4, "coextensive":4, "coextensively":5, "coequal":3, "coequality":5, "coequally":4, "coetaneity":6, "coetaneous":5, "coetaneously":6, "coeternal":4, "coeternally":5, "coeternity":5, "coeval":3, "coevality":5, "coevally":4, "cofactor":3, "cofinal":3, "cofunction":3, "cogent":2, "cogently":3, "cogency":3, "cogito":3, "cognac":2, "cognoscenti":4, "cogon":2, "cohabit":3, "cohabitant":4, "cohabiter":4, "cohabitation":5, "cohan":2, "cohasset":3, "cohanim":3, "coheir":2, "coheiress":3, "coheirship":3, "cohen":2, "cohens":2, "cohenite":3, "cohere":2, "cohered":2, "coherence":3, "coherent":3, "coherently":4, "coherency":4, "coherer":3, "cohering":3, "cohesion":3, "cohesive":3, "cohesively":4, "cohesiveness":4, "coho":2, "cohoes":2, "cohort":2, "cohortative":4, "cohosh":2, "cohobate":3, "cohobated":4, "cohobating":4, "cohobation":4, "cohobator":4, "cohune":2, "coimbatore":4, "coincide":3, "coincided":4, "coinciding":4, "coincidence":4, "coincident":4, "coincidently":5, "coincidental":5, "coincidentally":6, "coinheritance":5, "coinstantaneous":6, "coinstantaneously":7, "coinsure":3, "coinsured":3, "coinsurance":4, "coinsurable":5, "coinsurer":4, "coinsuring":4, "coital":3, "coition":3, "coitus":3, "coitus interruptus":7, "coitus reservatus":7, "cojones":3, "cokernut":3, "col":2, "cola":2, "cola nut":3, "colatitude":4, "colascione":4, "colectomy":4, "colette":2, "coleoptera":5, "coleoptera":5, "coleopteran":5, "coleopteron":5, "coleopterous":5, "coleoptile":4, "coleorhiza":5, "coleridge":3, "coleus":3, "coleuses":4, "colichemarde":3, "coligni":3, "coligny":3, "colitic":3, "coligny":3, "colima":3, "colitis":3, "colog":2, "cologne":2, "cologne":2, "cologarithm":4, "colomb":2, "colomb-bchar":3, "colombes":2, "colombia":4, "colombier":4, "colombo":3, "colon":2, "colonic":3, "colophony":4, "colossae":3, "colossal":3, "colossally":4, "colossi":3, "colossian":3, "colossians":3, "colossus":3, "colossus of rhodes":5, "colostomy":4, "colostral":3, "colostrum":3, "colotomy":4, "colonate":3, "colones":3, "colonial":4, "colonial experience":8, "colonialise":5, "colonialised":5, "colonialism":5, "colonialist":5, "colonialising":6, "colonialize":5, "colonialized":5, "colonializing":6, "colonialisation":7, "colonialization":7, "colonially":5, "colonus":3, "columba":3, "columban":3, "columbate":3, "columbic":3, "columbite":3, "columbia":4, "columbian":4, "columbiana":5, "columbier":4, "columbium":4, "columbous":3, "columbus":3, "columbus day":4, "columnal":3, "columnar":3, "columnarized":4, "columniation":5, "colure":2, "colugo":3, "colusa":3, "coly":2, "coln":3, "coma":2, "coma berenices":6, "comaetho":3, "comaker":3, "comal":2, "comals":2, "comanche":3, "comanchean":4, "comandante":4, "comaneci":3, "comate":2, "comatic":3, "comatula":4, "comatulid":4, "comales":3, "comatose":3, "comes":2, "comestible":4, "comether":3, "comedic":3, "comedial":4, "comedian":4, "comedical":4, "comedically":5, "comedienne":4, "comedietta":5, "comenius":4, "cometes":3, "comines":2, "comitial":3, "comitia":4, "como":2, "comose":2, "comus":2, "comdie francaise":5, "conan doyle":3, "conant":2, "conakry":3, "conation":3, "conatus":3, "coney":2, "coney island":4, "conicity":4, "conidia":4, "conidial":4, "conidian":4, "conidiophorous":6, "conidiophore":5, "conidium":4, "coniferin":4, "coniferous":4, "conin":2, "conifer":3, "coniine":3, "coniology":5, "coniroster":4, "conirostral":4, "conium":3, "conoid":2, "conoidal":3, "conoidally":4, "conon":2, "conodont":3, "conoscenti":4, "conoscope":3, "conoscopic":4, "conundrum":3, "cony":2, "coo":2, "coop":2, "coopt":2, "cooperate":4, "cooperated":5, "cooperating":5, "cooperation":5, "cooperationist":6, "cooperative":5, "cooperative bank":6, "cooperative farm":6, "cooperative party":7, "cooperative society":9, "cooperatively":6, "cooperativeness":6, "cooperator":5, "cooption":3, "coordinal":4, "coordinate":4, "coordinate bond":5, "coordinate clause":5, "coordinates":4, "coordinately":5, "coordinateness":5, "coordinated":5, "coordinating":5, "coordinating conjunction":8, "coordination":5, "coordination compound":7, "coordinative":5, "coordinator":5, "cop":2, "copaiba":3, "copaiva":3, "copal":2, "copalm":2, "copaline":3, "copalite":3, "copartner":3, "copartnership":4, "coparcenary":5, "coparcener":4, "coparceny":4, "copacetic":4, "copasetic":4, "copeck":2, "copenhagen":4, "copenhagen blue":5, "coper":2, "copernican":4, "copernican system":6, "copernicus":4, "copepod":3, "copesetic":4, "copesettic":4, "copiague":2, "copiap":4, "copilot":3, "copiosity":5, "copious":3, "copiously":4, "copiousness":4, "copita":3, "coplanar":3, "coplanarity":5, "copolymer":4, "copolymerise":5, "copolymerize":5, "copolymerized":5, "copolymerizing":6, "copolymerization":7, "coprecipitate":5, "coprecipitated":6, "coprecipitating":6, "coprecipitation":6, "coprophilism":4, "coprophilous":4, "coprosma":3, "coprostanol":4, "coprosterol":4, "copn":3, "coquet":2, "coquette":2, "coquetry":3, "coquetted":3, "coquetting":3, "coquettish":3, "coquettishly":4, "coquettishness":4, "coquelin":3, "coquille":2, "coquille":2, "coquilhatville":4, "coquilla nut":4, "coquillage":3, "coquina":3, "coquito":3, "cora":2, "corantijn":3, "coranto":3, "coraji":3, "coralye":3, "coraopolis":5, "core":2, "corelative":4, "corelatively":5, "corella":3, "corelli":3, "corelation":4, "coreligionist":5, "coremia":4, "coremium":4, "coreopsis":4, "corespondent":4, "cori":2, "corinne":2, "corinna":3, "corinthian":4, "corinthians":4, "coria":3, "coriander":4, "coriaceous":4, "corita":3, "corium":3, "coro":2, "coroebus":3, "corolla":3, "corollate":3, "corollated":4, "corot":2, "corona":3, "corona australis":6, "corona borealis":7, "corona discharge":5, "coronach":3, "coronally":4, "coronado":4, "coronagraph":4, "coronagraphic":5, "coronis":3, "coronograph":4, "coronus":3, "corozo":3, "corumb":4, "corundum":3, "corunna":3, "coruscant":3, "coruscate":3, "corua":4, "corydalis":4, "corymbose":3, "corymbosely":4, "corynne":2, "coryphodon":4, "corycia":3, "corynetes":4, "coryza":3, "cosa nostra":4, "cosec":2, "cosech":2, "coseismal":3, "coseismic":3, "cosenza":3, "coset":2, "cosey":2, "cosecant":3, "cosie":2, "cosignatory":5, "cosine":2, "cosier":3, "cosiest":3, "cosily":3, "cosimo":3, "cosiness":3, "costarred":2, "costarring":3, "cosuretyship":4, "cosy":2, "cosy along":4, "cosyra":3, "cotan":2, "cotangent":3, "cotangential":4, "cotabato":4, "coteau":2, "cotemporaries":5, "cotemporary":5, "cotemporaneous":6, "cotenant":3, "cotenancy":4, "cotenure":3, "coterminous":4, "coterie":3, "cothurn":2, "cothurnal":3, "cothurnus":3, "cotidal":3, "cotillion":3, "cotillon":3, "cotillons":3, "cotinga":3, "cotoneaster":5, "cotonou":3, "cotopaxi":4, "cotula":3, "cotulla":3, "coty":2, "cotype":2, "covariance":4, "covariant":4, "covarrubias":4, "covalence":3, "covalent":3, "covalent bond":4, "covalently":4, "covalency":4, "covellite":3, "covers":2, "coversed sine":3, "covina":3, "coyotillo":4, "coyotillos":4, "cozad":2, "cozen":2, "cozey":2, "cozie":2, "cozier":3, "coziest":3, "cozily":3, "coziness":3, "cozy":2, "copt":3, "coperate":5, "coperation":6, "coperationist":7, "coperative":6, "coperatively":7, "coperativeness":7, "coperator":6, "coptation":5, "coptative":5, "coption":4, "cordinal":5, "cordinate":5, "cordinately":6, "cordinateness":6, "cordination":6, "cordinative":6, "cordinator":6, "cpd":1, "cpl":1, "cpo":1, "cpr":1, "cps":1, "cpsu":1, "cpu":1, "craal":1, "crab":1, "crab":1, "crab apple":3, "crab nebula":4, "crab-plover":2, "crabb":1, "crabbe":1, "crabs":1, "crabbed":2, "crabbedly":3, "crabbedness":3, "crabber":2, "crabbing":2, "crabbier":3, "crabbiest":3, "crabby":2, "crabeater":3, "crabeating":3, "crablike":2, "crabstick":2, "crabwise":2, "crabwood":2, "crack":1, "cracked":1, "crackedness":2, "cracksman":2, "crackable":3, "crackajack":3, "crackbrain":2, "crackbrained":2, "crackbrainedness":3, "crackdown":2, "cracker":2, "cracker-barrel":3, "cracker-on":2, "crackers":2, "crackers-on":2, "crackerberry":4, "crackerjack":3, "cracket":2, "cracking":2, "crackjaw":2, "crackle":2, "crackless":2, "crackleware":3, "crackling":2, "cracklier":3, "crackliest":3, "crackly":2, "cracknel":2, "crackpot":2, "cracky":2, "cracow":2, "craft":1, "craft union":3, "craftsman":2, "craftsmanship":3, "craftier":3, "craftiest":3, "craftily":3, "craftiness":3, "craftless":2, "craftwork":2, "craftworker":3, "crafty":2, "craftint":2, "crafton":2, "craftype":2, "crag":1, "crag":1, "cragsman":2, "cragged":2, "craggedly":3, "craggedness":3, "craggier":3, "craggiest":3, "craggily":3, "cragginess":3, "craggy":2, "craglike":2, "craig":1, "craigavon":3, "craik":1, "craigie":2, "crake":1, "cram":1, "cram":1, "cramp":1, "cramped":1, "crampedness":2, "cramper":2, "crampfish":2, "crampfishes":3, "crampingly":3, "crambo":2, "crammer":2, "cramming":2, "crammingly":3, "cramoisie":3, "cramoisy":3, "crampon":2, "cramponne":4, "crampoon":2, "crampone":4, "cran":1, "crane":1, "crane":1, "cranesbill":2, "cranebill":2, "cranelike":2, "cranely":2, "craneman":2, "cranemanship":3, "crank":1, "crankcase":2, "crankier":3, "crankiest":3, "crankily":3, "crankiness":3, "crankless":2, "crankly":2, "crankness":2, "crankous":2, "crankpin":2, "crankplate":2, "crankshaft":2, "cranky":2, "cranage":2, "cranberry":3, "cranberry bush":4, "crancelin":3, "crandall":2, "cranford":2, "craning":2, "crankle":2, "cranko":2, "cranmer":2, "crannequin":3, "crannied":2, "crannog":2, "crannoge":2, "cranny":2, "cranreuch":2, "cranston":2, "cranwell":2, "crap":1, "crape":1, "crape myrtle":3, "crapehanger":3, "crapelike":2, "craps":1, "craping":2, "crappie":2, "crapping":2, "crapshooter":3, "crapulence":3, "crapulent":3, "crapulency":4, "crapulous":3, "crapulously":4, "crapulousness":4, "crare":1, "crash":1, "crash barrier":4, "crash helmet":3, "crash-landing":2, "crashaw":2, "crasher":2, "crashing":2, "crashingly":3, "crass":1, "crassly":2, "crassness":2, "crassitude":3, "crassus":2, "crassulaceous":4, "cratch":1, "crate":1, "crated":2, "crater":2, "crating":2, "craunch":1, "craunchingly":3, "crave":1, "cravenette":3, "cravenetted":4, "cravenetting":4, "craver":2, "craving":2, "cravingly":3, "cravingness":3, "craw":1, "crawl":1, "crawler":2, "crawling peg":3, "crawlingly":3, "crawlier":3, "crawliest":3, "crawly":2, "crawfish":2, "crawfishes":3, "crawford":2, "crawley":2, "cray":1, "crayfish":2, "crayfishes":3, "crayon":2, "crayoned":2, "crayoning":3, "crayonist":3, "craze":1, "crazed":1, "crazedly":3, "crazedness":3, "crazing":2, "cracow":2, "cracovienne":4, "cradle":2, "cradle snatcher":4, "cradler":2, "cradlesong":3, "cradling":2, "craiova":3, "crakow":2, "cramerton":3, "cranach":2, "cranaus":3, "crania":3, "cranial":3, "cranial index":5, "cranial nerve":4, "cranially":4, "craniate":3, "craniata":4, "craniologist":5, "craniology":5, "craniometer":5, "craniometrist":5, "craniometry":5, "cranioscopist":5, "cranioscopy":5, "craniotomy":5, "craniological":6, "craniologically":7, "craniometric":5, "craniometrically":7, "craniophore":4, "cranioscopical":6, "craniotome":4, "cranium":3, "craniums":3, "crapaud":2, "craquelure":3, "crasis":2, "crataeis":3, "crater":2, "crater":2, "crateral":3, "craterless":3, "craterlike":3, "craterous":3, "crateris":3, "craton":2, "cratus":2, "cravat":2, "cravatted":3, "cravatting":3, "craven":2, "cravenly":3, "cravenness":3, "crazier":3, "craziest":3, "crazily":3, "craziness":3, "crazy":2, "crazy bone":3, "crazy paving":4, "crazy quilt":3, "crazyweed":3, "creak":1, "creakingly":3, "creakier":3, "creakiest":3, "creakily":3, "creakiness":3, "creaky":2, "cream":1, "cream cracker":3, "cream of tartar":4, "cream soda":3, "cream-colored":2, "creamcups":2, "creamer":2, "creameries":3, "creamery":3, "creamier":3, "creamiest":3, "creamily":3, "creaminess":3, "creamlaid":2, "creamless":2, "creamlike":2, "creamware":2, "creamwove":2, "creamy":2, "crease":1, "crease-resistant":3, "creaseless":2, "creasier":3, "creasiest":3, "creasy":2, "creature":2, "creature comforts":4, "creatureliness":4, "creaturely":3, "creatural":3, "creche":1, "credit":2, "credit account":4, "credit card":3, "credit line":3, "credit rating":4, "credit squeeze":3, "credit standing":4, "credit union":4, "credits":2, "creditability":6, "creditable":4, "creditableness":5, "creditably":4, "creditless":3, "credibility":5, "credibility gap":6, "credible":3, "credibleness":4, "credibly":3, "creditor":3, "creditorship":4, "credulous":3, "credulously":4, "credulousness":4, "cree":1, "cree":1, "creed":1, "creedal":2, "creeded":2, "creedless":2, "creedlessness":3, "creek":1, "creek":1, "creel":1, "creel":1, "creep":1, "creeps":1, "creeper":2, "creepfed":2, "creepfeeding":3, "creepie":2, "creepie-peepie":3, "creeping":2, "creeping bent grass":4, "creeping charlie":4, "creeping jennie":4, "creeping thistle":4, "creepingly":3, "creepier":3, "creepiest":3, "creepily":3, "creepiness":3, "creepy":2, "creepy-crawly":3, "creese":1, "creesh":1, "cremasterial":5, "crematorium":5, "crenature":3, "crenel":2, "creneled":2, "crenelled":2, "crenelate":3, "crenelated":4, "crenelating":4, "crenelation":4, "crenelet":3, "creneling":3, "crenellate":3, "crenellated":4, "crenellating":4, "crenellation":4, "crenelling":3, "crenulate":3, "crenulated":4, "crenulation":4, "creole":1, "crepe":1, "crepe myrtle":3, "crepe paper":3, "crepe rubber":3, "crepe-paper":2, "crepehanger":3, "crept":1, "creping":2, "crepidoma":4, "crepidomata":5, "crepitant":3, "crepitate":3, "crepitated":4, "crepitating":4, "crepitation":4, "crepitus":3, "cres":1, "cress":1, "cressier":3, "cressiest":3, "cresskill":2, "cressy":2, "crest":1, "crested":2, "crested tit":3, "crestfallen":3, "crestfallenly":4, "crestfallenness":4, "crestfish":2, "crestfishes":3, "cresting":2, "crestless":2, "crestline":2, "crestview":2, "crescas":2, "crescent":2, "crescent":2, "crescentlike":3, "crescentic":3, "crescentoid":3, "crescive":2, "cresco":2, "cresphontes":3, "cresset":2, "cressie":2, "cressida":3, "cressida":3, "cressy":2, "creston":2, "cresyl":2, "crete":1, "cretin":2, "cretinism":3, "creuse":1, "creusot":2, "crevice":2, "creviced":2, "crew":1, "crewe":1, "crewel":2, "crewelist":3, "crewelwork":3, "crewless":2, "crewman":2, "crewmanship":3, "crewneck":2, "creance":2, "create":2, "creatable":4, "created":3, "createdness":4, "creating":3, "creatinine":4, "creatin":3, "creatine":3, "creation":3, "creation":3, "creational":4, "creationary":5, "creationism":4, "creationist":4, "creationistic":5, "creative":3, "creatively":4, "creativeness":4, "creativity":5, "creator":3, "creator":3, "creatorship":4, "credence":2, "credence table":4, "credent":2, "credently":3, "credendum":3, "credential":3, "credentialed":3, "credenza":3, "credo":2, "credo":2, "credulity":4, "crefeld":2, "crefishes":3, "cremaster":3, "cremate":2, "cremated":3, "cremating":3, "cremation":3, "cremationism":4, "cremationist":4, "cremator":3, "crematoria":5, "crematorium":5, "crematoriums":5, "crematory":4, "cremer":2, "cremona":3, "crenate":2, "crenately":3, "crenated":3, "crenation":3, "crenelle":2, "crenelled":2, "crenelling":3, "crenell":4, "creole":2, "creole":2, "creole-fish":2, "creon":2, "creophagous":4, "creodont":3, "creolised":3, "creolize":3, "creolized":3, "creolizing":4, "creolization":5, "creosol":3, "creosote":3, "creosote bush":4, "creosoted":4, "creosotic":4, "creosoting":4, "crepis":2, "crepon":2, "crepuscle":3, "crepuscule":3, "crepuscular":4, "crescendo":3, "crescendo":3, "cresius":3, "cresol":2, "cresylic":3, "creta":2, "cretan":2, "cretaceous":3, "cretaceous":3, "cretaceously":4, "cretheus":3, "crethes":4, "cretic":2, "cretin":2, "cretinism":3, "cretinous":3, "cretinoid":3, "cretonne":2, "crevalle":3, "crevasse":2, "crevassed":2, "crevassing":3, "cresa":4, "crib":1, "crib-biting":2, "cribbage":2, "cribbage board":3, "cribber":2, "cribbing":2, "cribbit":2, "cribbiting":2, "cribbiter":3, "cribbiting":3, "cribbitten":3, "cribble":2, "cribriform":3, "cribrous":2, "cribwork":2, "crichton":2, "crick":1, "crick":1, "cricket":2, "cricketer":3, "cricketlike":3, "cried":1, "crile":1, "crim":1, "crime":1, "crime passionel":4, "crimeless":2, "crimelessness":3, "crimp":1, "crimper":2, "crimpier":3, "crimpiest":3, "crimplene":2, "crimpness":2, "crimpy":2, "criminal":3, "criminal conversation":7, "criminal law":4, "criminalist":4, "criminalistics":5, "criminality":5, "criminally":4, "criminate":3, "criminated":4, "criminating":4, "crimination":4, "criminative":4, "criminator":4, "criminatory":5, "criminologist":5, "criminology":5, "criminological":6, "criminologically":7, "crimmer":2, "crimple":2, "crimson":2, "crimsonly":3, "crimsonness":3, "crine":1, "crined":1, "cringe":1, "cringer":2, "cringing":2, "cringingly":3, "cringingness":3, "crinet":2, "cringle":2, "crinire":3, "crinkle":2, "crinkleroot":3, "crinklier":3, "crinkliest":3, "crinkly":2, "crinkum-crankum":3, "crinoline":3, "cripes":1, "cripps":1, "crippen":2, "cripple":2, "cripple creek":3, "crippler":2, "crippling":2, "cripplingly":3, "crisp":1, "crispbread":2, "crispen":2, "crisper":2, "crispier":3, "crispiest":3, "crispily":3, "crispiness":3, "crisply":2, "crispness":2, "crispy":2, "crisscross":2, "crisscross-row":2, "crisfield":2, "crispate":2, "crispated":3, "crispation":3, "crispi":2, "crispin":2, "crispinian":4, "crissa":2, "crissal":2, "crissum":2, "crista":2, "cristate":2, "cristated":3, "cristophe":2, "cristobal":3, "cristobalite":4, "cristbal":4, "crit":1, "critic":2, "criticaster":4, "criticasterism":5, "criticastry":4, "critical":3, "critical angle":5, "critical apparatus":7, "critical constants":5, "critical mass":4, "critical path analysis":8, "critical period":6, "critical point":4, "critical pressure":5, "critical state":4, "critical temperature":7, "critical volume":5, "critically":4, "criticalness":4, "criticise":3, "criticised":3, "criticism":3, "criticiser":4, "criticising":4, "criticisingly":5, "criticize":3, "criticized":3, "criticizable":5, "criticizer":4, "criticizing":4, "criticizingly":5, "critter":2, "crittur":2, "crizzle":2, "cribellum":3, "cribl":3, "cricoid":2, "cricopharyngeal":6, "crier":2, "crikey":2, "crimea":3, "crimean":3, "crimean war":4, "crinal":2, "crinated":3, "crinite":2, "crinoid":2, "crinoidea":4, "crinose":2, "crinosity":4, "crinogenic":4, "crinum":2, "criolla":3, "criollas":3, "criollo":3, "criollos":3, "criophorus":4, "criosphinx":3, "criosphinxes":4, "criosphinges":4, "crises":2, "criseyde":3, "crisic":2, "crisis":2, "crisium":3, "crispi":2, "cristbal":4, "criteria":4, "criterion":4, "criterional":5, "critique":2, "crius":2, "crivetz":2, "cro-magnon":2, "cro-magnon man":3, "croak":1, "croaker":2, "croakier":3, "croakiest":3, "croakily":3, "croakiness":3, "croaky":2, "crock":1, "crocked":1, "crockery":3, "crocket":2, "crockett":2, "crockford":2, "crocking":2, "crocodile":3, "crocodile bird":4, "crocodile river":5, "crocodile tears":4, "crocodilian":5, "crocodiloid":4, "croesi":2, "croesus":2, "croesuses":3, "croft":1, "crofter":2, "crohn's disease":3, "croissant":2, "croisette":2, "crompton":2, "crombec":2, "cromlech":2, "cromwell":2, "cromwell current":4, "cromwellian":4, "crone":1, "cronk":1, "cronish":2, "cronj":3, "crood":1, "crook":1, "crookes radiometer":6, "crookesite":2, "crookston":2, "crooksville":2, "crookback":2, "crooked":2, "crookedly":3, "crookedness":3, "crookneck":2, "croon":1, "crooner":2, "crooningly":3, "crop":1, "crop rotation":4, "crop-dusting":2, "cropland":2, "cropless":2, "cropper":2, "croppie":2, "cropping":2, "crore":1, "cross":1, "cross":1, "cross bedding":3, "cross crosslet":3, "cross of lorraine":4, "cross product":3, "cross relation":4, "cross river":3, "cross section":3, "cross-bearer":2, "cross-bedded":2, "cross-bedding":2, "cross-bencher":2, "cross-bias":2, "cross-buttock":2, "cross-country":2, "cross-cousin":2, "cross-crosscrosslets":3, "cross-crosslet":2, "cross-dating":2, "cross-examine":3, "cross-examined":3, "cross-examiner":4, "cross-examining":4, "cross-examination":5, "cross-eyedness":2, "cross-faded":2, "cross-fading":2, "cross-fertilize":3, "cross-fertilized":3, "cross-fertilizing":4, "cross-fertilization":5, "cross-garnet":2, "cross-grainedly":2, "cross-handed":2, "cross-index":2, "cross-legged":2, "cross-leggedly":3, "cross-leggedness":3, "cross-linkage":2, "cross-license":2, "cross-licensed":2, "cross-licensing":3, "cross-over":2, "cross-pollinate":3, "cross-pollinated":4, "cross-pollinating":4, "cross-pollination":4, "cross-purpose":2, "cross-question":2, "cross-questionable":4, "cross-ratio":3, "cross-reference":3, "cross-refer":2, "cross-referred":2, "cross-referring":3, "cross-section":2, "cross-sectional":3, "cross-validation":4, "crosse":1, "crossed":1, "crossarm":2, "crossability":5, "crossable":3, "crossband":2, "crossbanded":3, "crossbanding":3, "crossbar":2, "crossbeam":2, "crossbench":2, "crossbencher":3, "crossbill":2, "crossbirth":2, "crossbolted":3, "crossbones":2, "crossbow":2, "crossbowman":3, "crossbred":2, "crossbreed":2, "crossbreeding":3, "crosscheck":2, "crosscrosslet":3, "crosscurrent":3, "crosscurrented":4, "crosscut":2, "crosscut saw":3, "crosscutter":3, "crosscutting":3, "crossette":2, "crossfertilizable":6, "crossfertilizafiled":6, "crossfertilizafiling":7, "crossfire":2, "crossgrainedness":3, "crosshatch":2, "crosshatcher":3, "crosshead":2, "crossing":2, "crossing over":4, "crossjack":2, "crosslap":2, "crosslet":2, "crossleted":3, "crosslight":2, "crosslighted":3, "crossline":2, "crossly":2, "crossmated":3, "crossmating":3, "crossness":2, "crossover":3, "crossover network":5, "crosspatch":2, "crosspiece":2, "crossrail":2, "crossroad":2, "crossroads":2, "crossrow":2, "crossruf":2, "crossruff":2, "crossstringed":2, "crossstringing":3, "crosstail":2, "crosstalk":2, "crosstie":2, "crosstied":2, "crosstown":2, "crosstree":2, "crossville":2, "crosswalk":2, "crossway":2, "crossways":2, "crosswind":2, "crosswise":2, "crossword puzzle":4, "crosswort":2, "crosby":2, "crosette":2, "crossett":2, "crossopterygian":6, "crotch":1, "crotchet":2, "crotchetiness":4, "crotchety":3, "crotchwood":2, "crouch":1, "croucher":2, "crouchingly":3, "croup":1, "croupe":1, "croupier":3, "croupiest":3, "croupily":3, "croupiness":3, "croupous":2, "croupy":2, "crouse":1, "crouse":1, "crousely":2, "croustade":2, "croute":1, "croupade":2, "croupier":3, "croupiers":3, "crouton":2, "crow":1, "crow":1, "crow blackbird":3, "crow-pheasant":2, "crowd":1, "crowd puller":3, "crowded":2, "crowdedly":3, "crowdedness":3, "crown":1, "crown":1, "crown and anchor":4, "crown agent":3, "crown colony":4, "crown derby":3, "crown imperial":5, "crown jewels":3, "crown office":3, "crown princess":3, "crown-of-jewels":2, "crown-of-jewjewels":3, "crowned":1, "crowncapping":3, "crowner":2, "crownet":2, "crowning":2, "crownland":2, "crownless":2, "crownpiece":2, "crownwork":2, "crowbar":2, "crowberry":3, "crowboot":2, "crowdie":2, "crowdy":2, "crower":2, "crowfoot":2, "crowhop":2, "crowhopper":3, "crowing":2, "crowingly":3, "crowkeeper":3, "crowley":2, "crowstep":2, "croydon":2, "croze":1, "croat":2, "croats":2, "croatia":3, "croatian":3, "croce":2, "croceatas":4, "crocein":3, "croceine":3, "crochet":2, "crocheter":3, "crocidolite":4, "crocoite":3, "crocoisite":4, "crocus":2, "crocus":2, "crocused":2, "crocuses":3, "crojack":2, "cromer":2, "cromerian":4, "cromorne":2, "cronin":2, "cronia":3, "cronian":3, "cronos":2, "cronus":2, "crony":2, "cronyn":2, "cronyism":3, "croquet":2, "croquette":2, "croquis":2, "croquignole":3, "crosier":2, "crosiered":2, "crotalaria":5, "crotalin":3, "croton":2, "croton bug":3, "croton oil":3, "croton-on-hudson":3, "crotonbug":3, "crotonic acid":5, "crotone":3, "crotopus":3, "crotus":2, "crozier":2, "crozier":2, "crt":1, "cru":1, "cruck":1, "crud":1, "crude":1, "crudely":2, "crudeness":2, "crudded":2, "crudding":2, "cruder":2, "crudest":2, "cruikshank":2, "cruise":1, "cruise missile":3, "cruiseway":2, "cruiser":2, "cruiserweight":3, "cruising":2, "cruisingly":3, "cruller":2, "crum":1, "crumb":1, "crumbs":1, "crumbable":3, "crumber":2, "crumbier":3, "crumbiest":3, "crumby":2, "crump":1, "crumble":2, "crumblingness":3, "crumblier":3, "crumbliest":3, "crumbliness":3, "crumbly":2, "crumbum":2, "crumhorn":2, "crummie":2, "crumming":2, "crummier":3, "crummiest":3, "crummock water":4, "crummy":2, "crumpet":2, "crumple":2, "crumpled":2, "crumply":2, "crunch":1, "crunchable":3, "crunchingly":3, "crunchingness":3, "crunchier":3, "crunchiest":3, "crunchily":3, "crunchiness":3, "crunchy":2, "crupper":2, "crus":1, "cruse":1, "crush":1, "crush barrier":4, "crushability":5, "crushable":3, "crusher":2, "crushing":2, "crushingly":3, "crust":1, "crusted":2, "crustedly":3, "crustier":3, "crustiest":3, "crustily":3, "crustiness":3, "crustless":2, "crusty":2, "crustal":2, "crustacean":3, "crustaceous":3, "crustacea":4, "crutch":1, "crutched friar":3, "crutchlike":2, "crux":1, "crux":1, "crux ansata":4, "cruxes":2, "cruz":1, "cruces":2, "crucial":2, "crucially":3, "crucian":2, "cruciferous":4, "crucis":2, "cruciality":5, "cruciate":3, "cruciately":4, "crucible":3, "crucible steel":4, "crucifer":3, "crucified":3, "crucifix":3, "crucifixion":4, "crucifixion":4, "crucificial":4, "crucifier":4, "cruciform":3, "cruciformly":4, "cruciformity":5, "crucify":3, "crucifying":4, "crudity":3, "cruel":2, "cruelhearted":4, "cruelly":3, "cruelness":3, "cruelty":3, "cruet":2, "crunode":2, "crunodal":3, "cruor":2, "crura":2, "crural":2, "crusade":2, "crusaded":3, "crusader":3, "crusading":3, "crusado":3, "crusily":3, "crusily-fitchy":4, "crusoe":2, "cruzado":3, "cruzeiro":3, "cruzeiros":3, "crwth":1, "cry":1, "crypt":1, "cryptal":2, "cryptanalyst":4, "cryptanalytic":5, "cryptanalytics":5, "cryptanalytically":7, "cryptanalyze":4, "cryptanalyzed":4, "cryptanalyzing":5, "cryptanalysis":5, "cryptaesthesia":5, "cryptesthesia":5, "cryptic":2, "cryptical":3, "cryptically":4, "cryptogamist":4, "cryptogamous":4, "cryptogamy":4, "cryptographer":4, "cryptographist":4, "cryptography":4, "cryptologist":4, "cryptology":4, "cryptometer":4, "cryptonymous":4, "cryptorchid":3, "cryptorchis":3, "cryptorchism":3, "cryptorchidism":4, "cryptoanalyst":5, "cryptoanalytic":6, "cryptoanalytically":8, "cryptoanalysis":6, "cryptoclastic":4, "cryptoclimate":4, "cryptoclimatology":7, "cryptococcosis":5, "cryptocrystalline":5, "cryptogam":3, "cryptogamic":4, "cryptogenic":4, "cryptogram":3, "cryptogrammatic":5, "cryptogrammatist":5, "cryptogrammic":4, "cryptograph":3, "cryptographic":4, "cryptographically":6, "cryptolith":3, "cryptomeria":5, "cryptonym":3, "cryptophyte":3, "cryptophytic":4, "cryptoporticus":5, "cryptovolcanic":5, "cryptovolcanism":5, "cryptozoic":4, "cryptozoic":4, "cryptozoite":4, "cryptozoon":4, "cryptozygous":4, "cryptozygy":4, "cryst":1, "crystal":2, "crystal":2, "crystal ball":3, "crystal class":3, "crystal counter":4, "crystal detector":5, "crystal form":3, "crystal gazing":4, "crystal habit":4, "crystal lattice":4, "crystal pickup":4, "crystal set":3, "crystal system":4, "crystal violet":5, "crystaled":2, "crystalled":2, "crystaling":3, "crystalise":3, "crystalize":3, "crystalliferous":5, "crystalligerous":5, "crystallike":3, "crystalline":3, "crystalline lens":4, "crystalling":3, "crystallinity":5, "crystallise":3, "crystallised":3, "crystallisable":5, "crystallising":4, "crystallite":3, "crystallitic":4, "crystallize":3, "crystallized":3, "crystallizability":7, "crystallizable":5, "crystallizing":4, "crystallisation":5, "crystallization":5, "crystallographer":5, "crystallography":5, "crystalloid":3, "crystalloidal":4, "crystallose":3, "crystallographic":5, "crystallographical":6, "crystallographically":7, "crybaby":3, "crying":2, "cryingly":3, "crymotherapy":5, "cryology":4, "cryometer":4, "cryometry":4, "cryonics":3, "cryoscopy":4, "cryobiology":6, "cryogen":3, "cryogenic":4, "cryogenics":4, "cryohydrate":4, "cryohydric":4, "cryolite":3, "cryophilic":4, "cryophyte":3, "cryoplankton":4, "cryoscope":3, "cryoscopic":4, "cryostat":3, "cryosurgery":5, "cryotherapy":5, "cryotron":3, "crcy":3, "crches":3, "crvecoeur":3, "crger":3, "cramel":3, "crcao":3, "crcy":2, "crl":2, "crzette":2, "csb":1, "csc":1, "csc":1, "csch":1, "cse":1, "csiro":1, "csm":1, "cst":1, "ctenizid":3, "ctenophore":3, "ctenophoric":4, "ctesiphon":3, "cteatus":3, "ctenidia":4, "ctenidial":4, "ctenidium":4, "ctenoid":2, "ctenophora":4, "ctenophoran":4, "ctesippus":3, "ctesius":3, "ctn":1, "cto":1, "ctr":1, "cts":1, "ctv":1, "cu-bop":1, "cuadrilla":3, "cuadrillas":3, "cuamuchil":3, "cub":1, "cub":1, "cub reporter":4, "cub-hunting":2, "cube":1, "cubage":2, "cubane":2, "cubbing":2, "cubbish":2, "cubbishly":3, "cubbishness":3, "cubby":2, "cubbyhole":3, "cubbyu":3, "cuber":2, "cubing":2, "cubism":2, "cubism":2, "cubist":2, "cubmaster":3, "cucking stool":3, "cuckold":2, "cuckoldly":3, "cuckoldry":3, "cuckoo":2, "cuckoo clock":3, "cuckoo shrike":3, "cuckoo spit":3, "cuckoo-shrike":2, "cuckoo-spit":2, "cuckooed":2, "cuckooflower":4, "cuckooing":3, "cuckoopint":3, "cud":1, "cudgel":2, "cudgeled":2, "cudgelled":2, "cudgeler":3, "cudgeling":3, "cudgelling":3, "cudgerie":3, "cudahy":3, "cudbear":2, "cuddie":2, "cuddle":2, "cuddlesome":3, "cuddy":2, "cudgeller":3, "cudweed":2, "cue":1, "cue-bid":1, "cuenca":2, "cuernavaca":4, "cuesta":2, "cueca":2, "cueist":2, "cuero":2, "cuff":1, "cuffs":1, "cui bono":3, "cui-ui":1, "cuif":1, "cuir-bouilli":2, "cuirie":2, "cuish":1, "cuisse":1, "cuittle":2, "cuicuilco":3, "cuirass":2, "cuirassier":3, "cuisine":2, "cuitle":2, "culch":1, "cull":1, "culler":2, "cullman":2, "culm":1, "culm":1, "culm measures":3, "culsdesac":3, "cult":1, "cultch":1, "cultish":2, "cultism":2, "cultist":2, "culbertson":3, "culdee":2, "culinarian":5, "culinary":4, "cullen":2, "cullender":3, "cullet":2, "cullied":2, "cullion":2, "cullis":2, "culloden":3, "cully":2, "cullying":3, "culmicolous":4, "culmiferous":4, "culminant":3, "culminate":3, "culminated":4, "culminating":4, "culmination":4, "culpa":2, "culpability":5, "culpable":3, "culpableness":4, "culpably":3, "culpeper":3, "culprit":2, "cultelli":3, "cultellus":3, "culti":2, "cultic":2, "cultigen":3, "cultivar":3, "cultivate":3, "cultivatable":5, "cultivated":4, "cultivating":4, "cultivability":6, "cultivable":4, "cultivably":4, "cultivation":4, "cultivator":4, "cultrate":2, "cultrated":3, "culture":2, "culture lag":3, "culture medium":5, "culture shock":3, "culture vulture":4, "cultured":2, "cultured pearl":3, "cultureless":3, "cultural":3, "cultural anthropology":8, "cultural lag":4, "cultural revolution":7, "culturally":4, "culturing":3, "culturist":3, "cultus":2, "cultuses":3, "cultual":3, "culver":2, "culver's root":3, "culvert":2, "culverin":3, "cum":1, "cum dividend":4, "cum grano salis":5, "cum laude":3, "cumber":2, "cumberer":3, "cumberland":3, "cumberless":3, "cumberment":3, "cumbernauld":3, "cumbersome":3, "cumbersomely":4, "cumbersomeness":4, "cumbrance":2, "cumbria":3, "cumbrian mountains":5, "cumbrous":2, "cumbrously":3, "cumbrousness":3, "cumin":2, "cummer":2, "cummerbund":3, "cummin":2, "cummings":2, "cummingtonite":4, "cumquat":2, "cumshaw":2, "cunctation":3, "cunctatious":3, "cunctative":3, "cunctator":3, "cunctatorship":4, "cunctatory":4, "cunt":1, "cunjevoi":3, "cunner":2, "cunning":2, "cunningly":3, "cunningness":3, "cunnilinctus":4, "cunnilingus":4, "cup":1, "cup final":3, "cupped":1, "cupbearer":3, "cupboard":2, "cupboard love":3, "cupcake":2, "cupful":2, "cupholder":3, "cuplike":2, "cuppa":2, "cupper":2, "cupping":2, "cupping glass":3, "cuppier":3, "cuppiest":3, "cuppy":2, "cur":1, "curb":1, "curbable":3, "curbing":2, "curbless":2, "curblike":2, "curbstone":2, "curch":1, "curd":1, "curdier":3, "curdiest":3, "curdiness":3, "curdy":2, "cure":1, "cureless":2, "curelessly":3, "curf":1, "curl":1, "curledly":3, "curledness":3, "curler":2, "curling":2, "curling tongs":3, "curlicue":3, "curlier":3, "curliest":3, "curliness":3, "curlpaper":3, "curly":2, "curn":1, "curr":1, "curse":1, "curst":1, "curstly":2, "curstness":2, "cursed":2, "cursedly":3, "cursedness":3, "curser":2, "curses":2, "cursing":2, "curt":1, "curt":1, "curtly":2, "curtness":2, "curtsey":2, "curtseyed":2, "curtseying":3, "curtsied":2, "curtsy":2, "curtsying":3, "curve":1, "curvedly":3, "curvedness":3, "curvey":2, "curving":2, "curvier":3, "curviest":3, "curvy":2, "curage":2, "curagh":2, "curability":5, "curable":3, "curableness":4, "curably":3, "curative":3, "curatively":4, "curativeness":4, "curculio":4, "curculios":4, "curcuma":3, "curdle":2, "curdler":2, "curer":2, "curfew":2, "curing":2, "curlew":2, "curlew sandpiper":5, "curley":2, "curlike":2, "curlicue":3, "curlycue":3, "curlyhead":3, "curmudgeon":3, "curmudgeonly":4, "currach":2, "curragh":2, "currant":2, "currantworm":3, "currajong":3, "currawong":3, "current":2, "current":2, "current account":4, "current assets":4, "current density":5, "current expenses":5, "current liabilities":7, "currently":3, "currentness":3, "currency":3, "currer":2, "curricular":4, "curriculum":4, "curriculum vitae":6, "currie":2, "curried":2, "currish":2, "currishly":3, "currishness":3, "curricle":3, "currier":3, "currier":3, "currieries":4, "curriery":4, "currijong":3, "curry":2, "curry":2, "curry powder":4, "curry puff":3, "currycomb":3, "currying":3, "cursive":2, "cursively":3, "cursiveness":3, "cursor":2, "cursorial":4, "cursorily":4, "cursoriness":4, "cursory":3, "curtail":2, "curtail step":3, "curtailedly":3, "curtailer":3, "curtailment":3, "curtain":2, "curtain call":3, "curtain lecture":4, "curtain speech":3, "curtain wall":3, "curtain-raiser":3, "curtains":2, "curtainless":3, "curtal":2, "curtal axe":3, "curtalax":3, "curtate":2, "curtana":3, "curtesy":3, "curtin":2, "curtis":2, "curtiss":2, "curtilage":3, "curtius":3, "curvaceous":3, "curvacious":3, "curvature":3, "curvet":2, "curvette":2, "curvilineal":5, "curvilinear":5, "curvilinearity":7, "curvilinearly":6, "curwensville":3, "curzon":2, "cush":1, "cushat":2, "cushing":2, "cushing's disease":4, "cushion":2, "cushionless":3, "cushionlike":3, "cushiony":3, "cushitic":3, "cushier":3, "cushiest":3, "cushman":2, "cushy":2, "cusk":1, "cuso":1, "cusp":1, "cusped":1, "cuspal":2, "cuss":1, "cussed":2, "cussedly":3, "cussedness":3, "cussword":2, "cusco":2, "cuscus":2, "cuspate":2, "cuspid":2, "cuspidal":3, "cuspidate":3, "cuspidated":4, "cuspidation":4, "cuspidor":3, "cusso":2, "custard":2, "custard apple":4, "custard pie":3, "custard powder":4, "custer":2, "custom":2, "custom-built":2, "custom-made":2, "customs":2, "customs house":3, "customs union":4, "customshouse":3, "customaries":4, "customarily":5, "customariness":5, "customary":4, "customable":4, "customableness":5, "customer":3, "customhouse":3, "customise":3, "customize":3, "custos":2, "custodes":3, "custodial":4, "custodian":4, "custodianship":5, "custody":3, "custumal":3, "cut":1, "cut across":3, "cut along":3, "cut-and-cover":2, "cut-in":1, "cut-up technique":3, "cutch":1, "cutch":1, "cute":1, "cutely":2, "cuteness":2, "cuthbert":2, "cuts":1, "cutaway":3, "cutback":2, "cutbank":2, "cutcha":2, "cutcherry":3, "cutchery":3, "cutdown":2, "cuter":2, "cutest":2, "cutey":2, "cutie":2, "cutlas":2, "cutlass":2, "cutlass fish":3, "cutlassfish":3, "cutlassfishes":4, "cutler":2, "cutlery":3, "cutlet":2, "cutline":2, "cutoff":2, "cutout":2, "cutover":3, "cutpurse":2, "cuttack":2, "cuttage":2, "cuttable":3, "cutter":2, "cutter-rigged":2, "cutthroat":2, "cutting":2, "cutting grass":3, "cuttingly":3, "cuttingness":3, "cuttle":2, "cuttlebone":3, "cuttlefish":3, "cuttlefishes":4, "cutty":2, "cutty sark":3, "cutty stool":3, "cuttyhunk":3, "cutup":2, "cutwater":3, "cutwork":2, "cutworm":2, "cuxhaven":3, "cuyp":1, "cuzco":2, "cuba":2, "cuba libre":4, "cuban heel":3, "cubature":3, "cube":2, "cubeb":2, "cubic":2, "cubic measure":4, "cubicity":4, "cubiculum":4, "cubistic":3, "cubistically":5, "cubit":2, "cubical":3, "cubically":4, "cubicalness":4, "cubicle":3, "cubiform":3, "cubital":3, "cubitiere":3, "cubitus":3, "cuboid":2, "cuboidal":3, "cuchulain":3, "cuchulainn":3, "cuchullain":3, "cucullate":3, "cucullately":4, "cucullated":4, "cucumber":3, "cucumber tree":4, "cucurbit":3, "cucurbitaceous":5, "cuculiform":4, "cucumiform":4, "cuda":2, "cufic":2, "cui":2, "cuiabor cuyab":6, "cuiab":4, "cuing":2, "cuijo":4, "cukor":2, "culet":2, "culex":2, "culebra cut":4, "culiac":3, "culiacn":4, "culicid":3, "culion":2, "culices":3, "culinarily":5, "culinary":4, "culotte":2, "culottes":2, "cumae":2, "cumaean":3, "cuman":3, "cuman":4, "cumarin":3, "cumarone":3, "cumulet":3, "cumulate":3, "cumulately":4, "cumulated":4, "cumulating":4, "cumulation":4, "cumulative":4, "cumulative evidence":7, "cumulative voting":6, "cumulatively":5, "cumulativeness":5, "cumuliform":4, "cumulous":3, "cumulocirrus":5, "cumulonimbus":5, "cumulostratus":5, "cumulus":3, "cunaxa":3, "cuneiform":3, "cuneal":3, "cuneate":3, "cuneately":4, "cuneated":4, "cuneatic":4, "cunei":3, "cuneiform":4, "cuneiformist":5, "cuneo":3, "cuneus":3, "cunicular":4, "cuniculus":4, "cuniform":3, "cunina":3, "cupavo":3, "cupel":2, "cupeled":2, "cupelled":2, "cupeler":3, "cupeling":3, "cupellation":4, "cupelling":3, "cupertino":4, "cupid":2, "cupid's bow":3, "cupid's-bow":2, "cupid's-dart":2, "cupidinous":4, "cupidity":4, "cupola":3, "cupolated":4, "cuprammonium":5, "cupreous":3, "cupric":2, "cupriferous":4, "cuprite":2, "cuprous":2, "cupronickel":4, "cuprum":2, "cupule":2, "cupular":3, "cupulate":3, "curassow":3, "curate":2, "curate's egg":3, "curateship":3, "curatic":3, "curacao":3, "curacy":3, "curare":3, "curari":3, "curarine":3, "curarise":3, "curarize":3, "curarized":3, "curarizing":4, "curarization":5, "curative":3, "curator":3, "curatorship":4, "curatorial":5, "curatrix":3, "curatrices":4, "curaao":4, "curaoa":4, "curet":2, "curette":2, "curettement":3, "curettage":3, "curetted":3, "curetting":3, "curetes":3, "curie":2, "curie":2, "curie point":3, "curie's law":3, "curie-weiss law":3, "curia":3, "curia regis":5, "curiae":3, "curial":3, "curiatii":5, "curio":3, "curios":3, "curiosity":5, "curious":3, "curiously":4, "curiousness":4, "curiosa":4, "curitis":3, "curitiba":4, "curityba":4, "curium":3, "curule":2, "curule chair":3, "cur":3, "curs":3, "cusanus":3, "cusec":2, "cushaw":2, "cutaneous":4, "cutaneously":5, "cuticula":4, "cuticular":4, "cutin":2, "cutinise":3, "cutinised":3, "cutinising":4, "cutinize":3, "cutinized":3, "cutinizing":4, "cutinization":5, "cutis":2, "cuticle":3, "cuticolor":4, "cuvette":2, "cuvier":3, "cuve":3, "cuyab":3, "cuyab":4, "cva":1, "cvo":1, "cwlth":1, "cwm":1, "cwmbran":2, "cwo":1, "cwo":1, "cwt":1, "cwtch":1, "cybele":3, "cyc":1, "cycadaceous":4, "cyclas":2, "cyclades":3, "cyclades":3, "cyclamen":3, "cycnus":2, "cyd":1, "cydnus":2, "cygnet":2, "cygnus":2, "cyke":1, "cyl":1, "cylinder":3, "cylinder block":4, "cylinder head":4, "cylinder press":4, "cylinderlike":4, "cylindraceous":4, "cylindrite":3, "cylindroid":3, "cylindromatous":5, "cylindroma":4, "cylices":3, "cyllene":3, "cyllenian":4, "cylvia":3, "cyme":1, "cymbal":2, "cymbaleer":3, "cymbaler":3, "cymbalist":3, "cymballike":3, "cymbalo":3, "cymbalom":3, "cymbeline":3, "cymbiform":3, "cymbocephaly":5, "cymbocephalic":5, "cymric":2, "cymry":2, "cyn":1, "cynara":3, "cynewulf":3, "cynghanedd":3, "cynic":2, "cynic":2, "cynical":3, "cynically":4, "cynicalness":4, "cynicism":3, "cynicism":3, "cynthia":3, "cynthiana":4, "cynthius":3, "cynwulf":2, "cyparissia":5, "cyparissus":4, "cyprian":3, "cyprinoid":3, "cypriot":3, "cypriote":3, "cypripedium":5, "cypsela":3, "cypselus":3, "cyr-l'cole":3, "cyrano":3, "cyrenaic":4, "cyrenaica":5, "cyril":2, "cyrtosis":3, "cyrtostyle":3, "cyst":1, "cystic":2, "cystic fibrosis":5, "cystoid":2, "cysatus":3, "cystectomy":4, "cysteine":3, "cysteinic":4, "cystidia":4, "cystidium":4, "cystine":2, "cysticerci":4, "cysticercoid":4, "cysticercus":4, "cystitis":3, "cystoid":2, "cystomatous":4, "cystometer":4, "cystoscopy":4, "cystostomy":4, "cystotomy":4, "cystocarp":3, "cystocarpic":4, "cystocele":3, "cystolith":3, "cystolithic":4, "cystoma":3, "cystomas":3, "cystomata":4, "cystoscope":3, "cystoscopic":4, "cystotome":3, "cythera":3, "cytherea":4, "cytherean":4, "cytidine":3, "cyzicus":3, "cyan":2, "cyanamid":4, "cyanamide":4, "cyaneous":4, "cyane":5, "cyanic":3, "cyanic acid":5, "cyanogen":4, "cyanotype":4, "cyathia":4, "cyathiform":4, "cyathium":4, "cyanate":3, "cyane":3, "cyanid":3, "cyanide":3, "cyanide process":5, "cyanided":4, "cyaniding":4, "cyanin":3, "cyanine":3, "cyanite":3, "cyanitic":4, "cyano":3, "cyanometer":5, "cyanopathy":5, "cyanotic":4, "cyanochroia":5, "cyanocobalamin":7, "cyanoderma":5, "cyanogenamide":6, "cyanogenic":5, "cyanogenetic":6, "cyanoguanidine":6, "cyanohydrin":5, "cyanopathic":5, "cyanoplatinite":6, "cyanosis":4, "cyanuric":4, "cyathus":3, "cybernate":3, "cybernetic":4, "cybernetics":4, "cyberneticist":5, "cybernetician":5, "cybebe":3, "cycad":2, "cycadlike":3, "cychreus":3, "cycladic":3, "cyclamate":3, "cyclamycin":4, "cycle":2, "cycle of erosion":6, "cycler":2, "cyclecar":3, "cyclic":2, "cyclic pitch lever":5, "cyclicity":4, "cycling":2, "cyclist":2, "cyclize":2, "cyclized":2, "cyclizing":3, "cyclical":3, "cyclically":4, "cyclization":4, "cyclo-cross":2, "cycloid":2, "cycloidal":3, "cycloidally":4, "cyclolysis":4, "cyclometer":4, "cyclone":2, "cyclonic":3, "cyclonically":5, "cyclops":2, "cyclostomate":4, "cyclotomy":4, "cycloalkane":4, "cycloacetylene":6, "cyclocephaly":5, "cyclogenesis":5, "cyclograph":3, "cyclohexane":4, "cyclohexatriene":6, "cyclonal":3, "cyclonite":3, "cycloolefin":5, "cyclopaedic":4, "cyclopaedist":4, "cyclopaedia":5, "cyclopaedically":6, "cycloparaffin":5, "cyclopentane":4, "cyclopentadiene":6, "cyclopes":3, "cyclopean":4, "cyclopedic":4, "cyclopedist":4, "cyclopedia":5, "cyclopedically":6, "cyclopia":4, "cycloplegic":4, "cycloplegia":5, "cyclopropane":4, "cyclorama":4, "cycloramic":4, "cyclosilicate":5, "cyclosis":3, "cyclostome":3, "cyclostomatous":5, "cyclostrophic":4, "cyclostyle":3, "cyclostylar":4, "cyclothymic":4, "cyclothymia":5, "cyclothymiac":5, "cyclotome":3, "cyclotomic":4, "cyclotrimethylenetrinitramine":10, "cyclotron":3, "cyder":2, "cydippe":3, "cyetic":3, "cyesis":3, "cylindric":3, "cylindrical":4, "cylindrical coordinates":8, "cylindricality":6, "cylindrically":5, "cylix":2, "cyma":2, "cymaise":2, "cymar":2, "cymatia":4, "cymation":4, "cymatium":4, "cymene":2, "cymodoce":4, "cymoid":2, "cymometer":4, "cymose":2, "cymosely":3, "cymotrichous":4, "cymotrichy":4, "cymogene":3, "cymograph":3, "cymographic":4, "cymophane":3, "cynortes":3, "cynosure":3, "cynosural":4, "cynosura":4, "cynurus":3, "cyperaceous":4, "cyphella":3, "cyphellae":3, "cyphellate":3, "cypher":2, "cypres":2, "cypress":2, "cypress pine":3, "cypress vine":3, "cyprinodont":4, "cyprinid":3, "cyprinoid":3, "cyprus":2, "cyprus":2, "cyra":2, "cyrano de bergerac":7, "cyrena":3, "cyrene":3, "cyrillic":3, "cyrillus":3, "cyrus":2, "cytaster":3, "cytissorus":4, "cytoclasis":4, "cytogeny":4, "cytoid":2, "cytologist":4, "cytology":4, "cytolysin":4, "cytolysis":4, "cyton":2, "cytophagy":4, "cytost":2, "cytotropism":4, "cytoarchitecture":6, "cytoarchitectural":7, "cytoarchitecturally":8, "cytochemistry":5, "cytochemical":5, "cytochrome":3, "cytochrome reductase":6, "cytoclastic":4, "cytogenesis":5, "cytogenetic":5, "cytogenetics":5, "cytogenetical":6, "cytogenetically":7, "cytogeneticist":6, "cytokinesis":5, "cytologic":4, "cytologically":6, "cytolytic":4, "cytopathogenic":6, "cytopathologic":6, "cytopathologically":8, "cytopathology":6, "cytopenia":5, "cytophagic":4, "cytopharynx":4, "cytopharynges":5, "cytoplasm":3, "cytoplast":3, "cytoplasmic":4, "cytoplastic":4, "cytosine":3, "cytosome":3, "cytostome":3, "cytostomal":4, "cytotactic":4, "cytotaxis":4, "cytotaxonomy":6, "cytotoxic":4, "cytotoxin":4, "cytotrophoblast":5, "cytotrophoblastic":6, "cytotropic":4, "cytozoa":4, "cytozoic":4, "cytozoon":4, "czar":1, "czardas":2, "czardom":2, "czarevitch":3, "czarism":2, "czarist":2, "czaristic":3, "czarevna":3, "czaritza":3, "czarina":3, "czaritza":3, "czech":1, "czecho-slovak":3, "czecho-slovakia":5, "czecho-slovakian":5, "czechoslovak":4, "czechoslovakia":6, "czechoslovakian":6, "czernowitz":3, "czerny":2, "czestochowa":4, "czstochowa":4, "crdenas":4, "cdiz":3, "cndido":4, "cntimo":4, "cdula":4, "cline":3, "clibataires":5, "csar":3, "cvennes":3, "czanne":3, "crdoba":4, "ccuta":4, "cceres":3, "ccuta":3, "cdenas":3, "cdiz":2, "cdoba":3, "cdova":3, "cmon":2, "csel":2, "ctimo":3, "cvennes":2, "czanne":2, "czur":2, "cdmon":3, "d region":3, "d'accord":2, "d'albert":2, "d'amboise":2, "d'annunzio":3, "d'arblay":2, "d'arrest":2, "d'avenant":3, "d'alembert":3, "d'entrecasteaux islands":6, "d'indy":2, "d'inzeo":3, "d'iberville":3, "d's":1, "d'urfey":2, "d-day":1, "d-glucose":2, "d-notice":2, "d-state":1, "d/a":1, "d/f":1, "d/l":1, "d/o":1, "d/w":1, "da capo":3, "da gama":3, "da vinci":3, "dab":1, "dabber":2, "dabbing":2, "dabble":2, "dabbler":2, "dabchick":2, "dabster":2, "dace":1, "dachshund":2, "dacker":2, "dacko":2, "dacca":2, "daces":2, "dacrya":3, "dacryagogue":4, "dacryon":3, "dacryorrhea":5, "dactyl":2, "dactyl":2, "dactyls":2, "dactyli":3, "dactylic":3, "dactylically":5, "dactylography":5, "dactylogram":4, "dactylographic":5, "dactylographer":5, "dactylography":5, "dactylology":5, "dactylomegaly":6, "dad":1, "dad-blasted":2, "dade":1, "dadeville":2, "daddah":2, "daddy":2, "daddy-longlegs":3, "daedalid":3, "daedalus":3, "daedal":2, "daedala":3, "daedalean":4, "daedalian":4, "daedalion":4, "daemon":2, "daemonic":3, "daemonology":5, "daemonian":4, "daff":1, "daffy":2, "daft":1, "daftly":2, "daftness":2, "daffadilly":4, "daffadowndilly":5, "daffing":2, "daffier":3, "daffiest":3, "daffodil":3, "daffodil":3, "daffodilly":4, "daffodowndilly":5, "daffy":2, "daffy":2, "dag":1, "dag":1, "daghda":2, "dagda":2, "dagenham":3, "dagga":2, "dagger":2, "daggerboard":3, "dagging":2, "daggle":2, "daglock":2, "dagmar":2, "dagna":2, "dagney":2, "dagny":2, "dagwood":2, "dag":3, "dah":1, "dahlgren":2, "dahlia":2, "dahlia":2, "dahlonega":4, "dahna":2, "dai-sho":1, "dai-sho-no-soroimono":5, "daingerfield":3, "daintier":3, "daintiest":3, "daintily":3, "daintiness":3, "dainty":2, "dairies":2, "dairy":2, "dairying":3, "dairymaid":3, "dairyman":3, "dairywoman":4, "dairywomen":4, "daibutsu":3, "daiker":2, "dailies":2, "dailiness":3, "daily":2, "daily double":4, "daily-breader":3, "daimen":2, "daimio":2, "daimon":2, "daimonic":3, "daimyo":2, "daiquiri":3, "dairen":2, "daisied":2, "daisy":2, "daisy":2, "daisy bush":3, "daisy chain":3, "daisy-cutter":3, "daisycutter":4, "dak":1, "dak":1, "dakhla":2, "dakhma":2, "daktyl":2, "daktyls":2, "daktyli":3, "dal":1, "dal segno":3, "dale":1, "dale":1, "dales":1, "dalesman":2, "dalles":1, "dalcroze":2, "dalhart":2, "dalhousie":3, "dalia":2, "dalila":3, "dallan":2, "dallan":2, "dallas":2, "dallastown":3, "dallapiccola":5, "dallied":2, "dallin":2, "dalliance":3, "dallier":3, "dalloway":3, "dally":2, "dallying":3, "dallyingly":4, "dalmatic":3, "dalmatia":3, "dalmatian":3, "dalny":2, "dalrymple":3, "dalton":2, "dalton":2, "dalton plan":3, "dalton's law":3, "daltonic":3, "daltonism":3, "daltonian":4, "dalyce":2, "dalymore":3, "dam":1, "dam":1, "dame":1, "dame":1, "dame's rocket":3, "dame's violet":4, "damewort":2, "damn":1, "damndest":2, "damned":1, "damnedest":2, "damner":2, "damning":2, "damningly":3, "damningness":3, "damnyankee":3, "damp":1, "dampcourse":2, "dampen":2, "dampener":3, "damper":2, "damping off":3, "damping-off":2, "dampish":2, "dampishly":3, "dampishness":3, "damply":2, "dampness":2, "dampproof":2, "damage":2, "damaged":2, "damageability":6, "damageable":4, "damageableness":5, "damager":3, "damages":3, "damaging":3, "damagingly":4, "daman":2, "daman":2, "damar":2, "damaris":3, "damask":2, "damask rose":3, "damask steel":3, "damalis":3, "damascene":3, "damascene":3, "damascened":3, "damascening":4, "damaskeen":3, "damaskeening":4, "damfool":2, "damfoolish":3, "damia":3, "damiana":4, "damietta":4, "dammar":2, "dammer":2, "damming":2, "dammit":2, "damnability":5, "damnable":3, "damnableness":4, "damnably":3, "damnation":3, "damnatory":4, "damnified":3, "damnify":3, "damnifying":4, "damoiselle":3, "damocles":3, "damoclean":4, "damodar":3, "damosel":3, "damozel":3, "dampier":3, "damrosch":2, "damsel":2, "damselfish":3, "damselfishes":4, "damselfly":3, "damson":2, "damson cheese":3, "damyankee":3, "damysus":3, "dan":1, "dan":1, "dance":1, "danceability":5, "danceable":3, "dancer":2, "dancing":2, "dancingly":3, "danegeld":2, "danegeld":2, "danegelt":2, "danegelt":2, "danelagh":2, "danelaw":2, "danelage":3, "danewort":2, "dang":1, "danged":1, "dank":1, "dankly":2, "dankness":2, "dann":1, "danse macabre":3, "dansville":2, "danae":3, "danai":3, "danaidean":5, "danaus":3, "danan":4, "dana":4, "danburite":3, "danbury":3, "dancette":2, "dancetty":3, "dancett":4, "dancette":4, "dander":2, "dandelion":4, "dandie":2, "dandie dinmont":4, "dandiacal":4, "dandiacally":5, "dandier":3, "dandiest":3, "dandified":3, "dandification":5, "dandify":3, "dandifying":4, "dandily":3, "dandiprat":3, "dandle":2, "dandler":2, "dandriff":2, "dandriffy":3, "dandruff":2, "dandruffy":3, "dandy":2, "dandy":2, "dandy roll":3, "dandy-brush":2, "dandyish":3, "dandyism":3, "danford":2, "danger":2, "danger money":4, "dangerless":3, "dangerous":3, "dangerously":4, "dangerousness":4, "dangle":2, "dangler":2, "dangleberry":4, "dangling participle":6, "danglingly":3, "dani":2, "daniel":2, "daniell":2, "daniell cell":3, "daniels":2, "daniela":3, "danielson":3, "danish":2, "danish blue":3, "danish loaf":3, "danish pastry":4, "danish west indies":5, "danite":2, "danica":3, "danio":3, "danios":3, "danmark":2, "dannemora":4, "danny":2, "danny":2, "dansant":2, "danseur":2, "danseuse":2, "dante":2, "dantesque":2, "dantean":3, "danton":2, "danube":2, "danubian":4, "danvers":2, "danville":2, "danzig":2, "dap":1, "daphnaea":3, "daphne":2, "daphne":2, "daphnephoria":5, "daphnis":2, "daphnis and chloe":5, "daphnia":3, "daphnia":3, "dapper":2, "dapperly":3, "dapperness":3, "dapping":2, "dapple":2, "dapple-gray":2, "dapple-grey":2, "dappled":2, "dapsang":2, "dar es salaam":4, "dard":1, "dare":1, "dare":1, "daredevil":3, "daredevilry":4, "daredeviltry":4, "daren't":2, "daresay":2, "darg":1, "dark":1, "dark ages":3, "dark continent":4, "dark glasses":3, "dark lantern":3, "dark reaction":4, "dark-field illumination":6, "dark-field microscope":4, "darken":2, "darkener":3, "darkey":2, "darkie":2, "darkies":2, "darkish":2, "darkishness":3, "darkling":2, "darkly":2, "darkness":2, "darkroom":2, "darksome":2, "darksomeness":3, "darktown":2, "darky":2, "darmstadt":2, "darn":1, "darned":1, "darner":2, "darning":2, "darning egg":3, "darning needle":4, "darnley":2, "dart":1, "darts":1, "dartboard":2, "darter":2, "dartford":2, "dartingly":3, "dartingness":3, "dartmoor":2, "dartmouth":2, "dara":2, "daraf":2, "darbies":2, "darby":2, "darby and joan":4, "darbyite":3, "darcy":2, "dardan":2, "dardanelles":3, "dardanian":4, "dardanus":3, "dardic":2, "darer":2, "dares":2, "darfur":2, "dargah":2, "daric":2, "daring":2, "daringly":3, "daringness":3, "darien":3, "dariole":3, "darjeeling":3, "darkle":2, "darlan":2, "darleen":2, "darlene":2, "darling":2, "darling":2, "darling downs":3, "darling range":3, "darling river":4, "darlingly":3, "darlingness":3, "darlington":3, "darnel":2, "darnell":2, "darney":2, "darraign":2, "darrell":2, "darrow":2, "dartle":2, "darvon":2, "darwin":2, "darwin's finches":4, "darwinism":3, "darwinist":3, "darwinistic":4, "darwinite":3, "darwinian":4, "darwinian theory":7, "daryl":2, "dash":1, "dashed":1, "dasht-e-kavir":2, "dasht-i-kavir":2, "dashboard":2, "dashedly":3, "dasher":2, "dashing":2, "dashingly":3, "dashier":3, "dashiest":3, "dashpot":2, "dashy":2, "dassn't":2, "dascylus":3, "dasn't":2, "dassie":2, "dassin":2, "dastard":2, "dastardliness":4, "dastardly":3, "dasyus":2, "dasyphyllous":4, "dasyure":3, "dasyurine":4, "dasyuroid":4, "dat":1, "date":1, "dates":1, "dateable":3, "dateableness":4, "dateless":2, "dateline":2, "datelined":2, "datelining":3, "datable":3, "datableness":4, "datcha":2, "dated":2, "dater":2, "dating":2, "datolite":3, "datolitic":4, "datto":2, "dau":1, "daub":1, "daube":1, "dauber":2, "daubery":3, "daubingly":3, "daubry":2, "dauby":2, "daud":1, "daughter":2, "daughter-in-law":2, "daughters-in-law":2, "daughterless":3, "daughterlike":3, "daughterliness":4, "daughterly":3, "dauk":1, "daunt":1, "dauntingly":3, "dauntingness":3, "dauntless":2, "dauntlessly":3, "dauntlessness":3, "daut":1, "dautie":2, "daubigny":3, "daudet":2, "dauerschlaf":3, "daugavpils":3, "daugava":3, "daumier":2, "dauphin":2, "dauphine":2, "dauphiness":3, "dauphin":3, "dauphin":4, "dave":1, "davenport":3, "davenport":3, "davey":2, "davenant":3, "davit":2, "daw":1, "dawes":1, "dawk":1, "dawn":1, "dawn":1, "dawn chorus":3, "dawn redwood":3, "dawnlike":2, "dawt":1, "dawtie":2, "dawdle":2, "dawdler":2, "dawdlingly":3, "dawson":2, "dawson creek":3, "dax":1, "day":1, "day":1, "day blindness":3, "day lewis":3, "day lily":3, "day of atonement":5, "day of judgment":4, "day release":3, "day return":3, "day-glo":1, "day-lewis":2, "day-neutral":2, "days":1, "daysman":2, "dayak":2, "daybeacon":3, "daybed":2, "daybill":2, "daybook":2, "dayboy":2, "daybreak":2, "daydream":2, "daydreamer":3, "daydreamy":3, "dayflower":3, "dayfly":2, "daylight":2, "daylight robbery":5, "daylight-saving time":4, "daylights":2, "daylong":2, "daymark":2, "dayside":2, "daysie":2, "dayspring":2, "daystar":2, "daytime":2, "dayton":2, "daytona beach":4, "daywork":2, "dayworker":3, "daze":1, "dazedly":3, "dazing":2, "dazzle":2, "dazzler":2, "dazzlingly":3, "dacha":2, "dachau":2, "dach":3, "dacia":3, "dacoit":2, "dacoities":3, "dacoity":3, "dacron":2, "dada":2, "dadaism":3, "dadaist":3, "dadaistic":4, "dadaistically":6, "dado":2, "dagan":2, "dagestan":3, "dago":2, "dagon":2, "dagoba":3, "dagoberto":4, "daguerre":2, "daguerreotype":4, "daguerreotyped":4, "daguerreotyper":5, "daguerreotypic":5, "daguerreotyping":5, "daguerreotypist":5, "daguerreotypy":5, "dahabeeyah":4, "dahabeah":4, "dahabiah":4, "dahabieh":4, "dahabiya":4, "dahoon":2, "dahoman":3, "dahomey":3, "dais":2, "daira":3, "dakar":2, "daker-hen":2, "dakin's solution":5, "dakoit":2, "dakoities":3, "dakoity":3, "dakota":3, "dakotan":3, "dalai lama":4, "dalan":2, "daladier":3, "dalasi":3, "daled":2, "daleth":2, "dali":2, "daly":2, "daln":3, "dam":2, "daman":2, "damanh":3, "damanhur":3, "damar":2, "damas":2, "damascus":3, "damascus steel":4, "damastes":3, "damara":3, "damaraland":4, "damien":2, "damon":2, "damon and pythias":6, "damo":3, "dana":2, "danang":2, "danaite":3, "danaidae":4, "danaides":4, "danava":3, "daneen":2, "danelle":2, "danella":3, "danene":2, "danette":2, "danilo":3, "dania":3, "danilova":4, "danita":3, "dano-norwegian":4, "danu":2, "danuta":3, "darice":2, "darius":2, "darin":3, "daria":3, "dario":3, "darius":3, "darius i":4, "darius iii":4, "darogha":3, "daro":4, "dasahara":4, "dasein":2, "dasehra":3, "dasheen":2, "dashiki":3, "dastur":2, "dasymeter":4, "data":2, "data bank":3, "data capture":4, "data processing":5, "data set":3, "datary":3, "datcha":2, "dative":2, "dative bond":3, "datively":3, "datival":3, "dato":2, "datolite":3, "datuk":2, "datum":2, "datum plane":3, "datura":3, "daturic":3, "davao":2, "davene":2, "david":2, "david i":3, "davidic":3, "davidson":3, "davie":2, "davies":2, "davis":2, "davis cup":3, "davis strait":3, "davisson":3, "davida":3, "davina":3, "davison":3, "davita":3, "davout":2, "davy":2, "davy jones":3, "davy lamp":3, "davys":2, "dayan":2, "dayan":2, "dayanim":3, "dbe":1, "dbh":1, "dbl":1, "dcb":1, "dcl":1, "dcm":1, "dcmg":1, "dcvo":1, "ddr":1, "dds":1, "ddsc":1, "ddt":1, "de beauvoir":3, "de broglie":3, "de broglie waves":4, "de facto":3, "de fide":3, "de jure":3, "de kooning":3, "de lesseps":3, "de los angeles":5, "de mdicis":4, "de novo":3, "de profundis":4, "de quincey":3, "de rigueur":3, "de sica":3, "de soto":3, "de valera":4, "de villiers":3, "de-aerate":2, "de-emphasis":3, "de-emphasise":3, "de-emphasize":3, "de-emphasized":3, "de-emphasizing":4, "de-escalate":3, "de-escalation":4, "de-excite":2, "de-excited":3, "de-exciting":3, "de-ice":1, "de-icer":2, "de-stalinize":3, "de-stalinized":3, "de-stalinizing":4, "de-stalinisation":5, "de-stalinization":5, "dead":1, "dead centre":3, "dead letter":3, "dead man's fingers":4, "dead man's handle":4, "dead reckoning":4, "dead-and-alive":2, "dead-anneal":2, "dead-center":2, "dead-letter":2, "dead-nettle":2, "deadbeat":2, "deaden":2, "deadener":3, "deadening":3, "deadeye":2, "deadfall":2, "deadflat":2, "deadhead":2, "deadlight":2, "deadline":2, "deadlier":3, "deadliest":3, "deadliness":3, "deadlock":2, "deadly":2, "deadly nightshade":4, "deadly sins":3, "deadman":2, "deadness":2, "deadpan":2, "deadpanned":2, "deadpanning":3, "deadrise":2, "deadwood":2, "deadwood":2, "deadwork":2, "deaf":1, "deaf-mutism":2, "deafen":2, "deafening":3, "deafeningly":4, "deafly":2, "deafmuteness":3, "deafness":2, "deal":1, "dealt":1, "dealer":2, "dealership":3, "dealfish":2, "dealfishes":3, "dealing":2, "dealings":2, "dean":1, "dean":1, "dean of faculty":5, "deaneries":3, "deanery":3, "deanship":2, "dear":1, "dear john letter":4, "dearth":1, "dearborn":2, "dearie":2, "dearies":2, "dearly":2, "dearness":2, "deary":2, "death":1, "death":1, "death adder":3, "death certificate":5, "death duty":3, "death penalty":4, "death rattle":3, "death valley":3, "death warrant":3, "deathsman":2, "deathbed":2, "deathblow":2, "deathday":2, "deathful":2, "deathiness":3, "deathless":2, "deathlessly":3, "deathlessness":3, "deathlike":2, "deathliness":3, "deathly":2, "deathtrap":2, "deathwatch":2, "deathy":2, "deauville":2, "deave":1, "deaving":2, "deacon":2, "deaconess":3, "deaconry":3, "deaconship":3, "deakin":2, "deb":1, "deb":1, "debs":1, "debt":1, "debt of honor":4, "debtless":2, "debtor":2, "debauchee":3, "debbie":2, "debbora":3, "debby":2, "debes":2, "debit":2, "debitor":3, "debonnaire":3, "debonair":3, "debonaire":3, "debonairly":4, "debonairness":4, "debora":3, "deborah":3, "debra":2, "debutant":3, "debutante":3, "dec":1, "dec":1, "decd":1, "dechenite":3, "deck":1, "deck over":3, "deck tennis":3, "decks":1, "deckel":2, "decker":2, "decker":2, "deckhead":2, "deckhouse":2, "deckhouses":3, "decking":2, "deckle":2, "deckle edge":3, "deckle-edged":2, "deckpipe":2, "decl":1, "decade":2, "decan":2, "decane":2, "decanedioic acid":7, "decare":2, "decating":3, "decadal":3, "decadally":4, "decadence":3, "decadent":3, "decadency":4, "decadrachm":3, "decadrachma":4, "decadron":3, "decagon":3, "decagram":3, "decahedral":4, "decahedron":4, "decahydrate":4, "decahydrated":5, "decaliter":4, "decalog":3, "decalog":3, "decalogue":3, "decalogue":3, "decameter":4, "decanal":3, "decanally":4, "decanormal":4, "decanoic acid":6, "decapod":3, "decastere":3, "decastyle":3, "decastylar":4, "decastylos":4, "decasyllabic":5, "decasyllable":5, "decatizing":4, "decca":2, "deccan":2, "decem":2, "decile":2, "deciare":3, "decibar":3, "decibel":3, "decigram":3, "decigramme":3, "deciliter":4, "decilitre":4, "decima":3, "decimal":3, "decimal classification":8, "decimal currency":6, "decimal fraction":5, "decimal place":4, "decimal point":4, "decimal system":5, "decimalise":4, "decimalised":4, "decimalising":5, "decimalize":4, "decimalized":4, "decimalizing":5, "decimalization":6, "decimally":4, "decimate":3, "decimated":4, "decimating":4, "decimation":4, "decimator":4, "decimeter":4, "decimetre":4, "decimus":3, "decinormal":4, "decistere":3, "declamation":4, "declaration":4, "declaration of independence":9, "declinate":3, "declination":4, "declinational":5, "declinometer":5, "declomycin":4, "decorate":3, "decorated":4, "decorated":4, "decorated style":5, "decorating":4, "decoration":4, "decorative":4, "decoratively":5, "decorativeness":5, "decorator":4, "decorous":3, "decorously":4, "decorousness":4, "decrement":3, "decremeter":4, "decretory":4, "decuman":3, "decuple":3, "decury":3, "dedham":2, "dedicate":3, "dedicated":4, "dedicating":4, "dedication":4, "dedicational":5, "dedicative":4, "dedicator":4, "dedicatorily":6, "dedicatory":5, "dee":1, "dee":1, "deed":1, "deedless":2, "deek":1, "deem":1, "deems":1, "deemster":2, "deemstership":3, "deep":1, "deep structure":3, "deep therapy":4, "deep-chestdrawn":2, "deep-chestdrawing":3, "deep-chestdrew":2, "deep-chested":2, "deep-rooted":2, "deep-seated":2, "deepen":2, "deepener":3, "deepeningly":4, "deepfreeze":2, "deepfreeze":2, "deepfreezing":3, "deepfried":2, "deepfrozen":3, "deepfrying":3, "deephaven":3, "deeping":2, "deeply":2, "deepness":2, "deepwater":3, "deer":1, "deergrass":2, "deerhound":2, "deerskin":2, "deerslayer":3, "deerstalker":3, "deerstalking":3, "deejay":2, "def":1, "deft":1, "deftly":2, "deftness":2, "defamation":4, "deference":3, "deferent":3, "deferential":4, "deferentially":5, "defecate":3, "defecated":4, "defecating":4, "defecation":4, "deficit":3, "deficit spending":5, "defilade":3, "defiladed":4, "defilading":4, "definite":3, "definite article":6, "definite integral":6, "definitely":4, "definiteness":4, "definitize":4, "definitized":4, "definitizing":5, "definition":4, "deflagrate":3, "deflagrated":4, "deflagrating":4, "deflagrability":6, "deflagrable":4, "deflagration":4, "defloration":4, "deg":1, "degradation":4, "degradational":5, "degradative":4, "dehra dun":3, "deictic":2, "deictically":4, "deign":1, "deil":1, "deipnosophist":4, "deirdre":2, "deixis":2, "deimos":2, "dekadrachm":2, "dekare":2, "dekadrachm":3, "dekagram":3, "dekagramme":3, "dekaliter":4, "dekalitre":4, "dekameter":4, "dekametre":4, "dekastere":3, "dekker":2, "dekko":2, "del":1, "del":1, "del credere agent":6, "del sarto":3, "delft":1, "delft":1, "dell":1, "dell":1, "dells":1, "delve":1, "delver":2, "delving":2, "delagoa bay":5, "delano":3, "delatorian":5, "delavan":3, "delaware":3, "delawarean":5, "delbert":2, "delcass":4, "delegate":3, "delegated":4, "delegating":4, "delegable":4, "delegacy":4, "delegation":4, "delegit":3, "deleterious":5, "deleteriously":6, "deleteriousness":6, "delgado":3, "delhi":2, "deli":2, "delia":2, "delis":2, "delicate":3, "delicately":4, "delicateness":4, "delicacy":4, "delicatessen":5, "deliquesce":3, "deliquesced":3, "deliquescing":4, "deliquescence":4, "deliquescent":4, "deliration":4, "delitescence":4, "delitescent":4, "delitescency":5, "della":2, "della":2, "della robbia":5, "delma":2, "delmarva peninsula":7, "delmore":2, "delmotte":2, "delphi":2, "delphic":2, "delphic oracle":5, "delphine":2, "delphinia":4, "delphinia":4, "delphinium":4, "delphiniums":4, "delphinius":4, "delphian":3, "delphinin":3, "delphinine":3, "delphinus":3, "delphos":2, "delphus":2, "delphyne":3, "delsarte":2, "delsarte system":4, "delsartian":4, "delta":2, "delta":2, "delta connection":5, "delta iron":4, "delta ray":3, "delta rhythm":3, "delta wing":3, "deltaic":3, "deltiology":5, "deltoid":2, "deltoidal":3, "deluge":2, "deluge":2, "deluged":2, "deluging":3, "dem":1, "deme":1, "dempsey":2, "dempster":2, "dempster":2, "demagog":3, "demagogue":3, "demagoguery":5, "demagoguism":4, "demagogic":4, "demagogism":4, "demagogical":5, "demagogically":6, "demagogy":4, "demagogy":4, "demarest":3, "demavend":3, "dembowski":3, "demerara":4, "demerara":4, "demerol":3, "demi-cannon":3, "demi-culverin":4, "demi-hunter":3, "demi-sec":2, "deming":2, "demibastion":4, "demibastioned":4, "demibastion":5, "demicanton":4, "demiculverin":5, "demigod":3, "demigoddess":4, "demijohn":3, "demilune":3, "demimetope":5, "demimonde":3, "demimondaine":4, "demiphon":3, "demipique":3, "demirep":3, "demirelief":4, "demisemiquaver":6, "demitasse":3, "demitasses":4, "demiurge":3, "demiurgeous":4, "demiurgically":6, "demivierge":3, "demivolt":3, "demivolte":3, "demo":2, "demo":2, "demoiselle":3, "demonstrate":3, "demonstrated":4, "demonstratedly":5, "demonstrating":4, "demonstration":4, "demonstrational":5, "demonstrator":4, "demos":2, "demos":2, "democrat":3, "democrat":3, "democratic":4, "democratic party":6, "democratic-republican party":9, "democratical":5, "democratically":6, "demolition":4, "demolitions":4, "den":1, "den":1, "den helder":3, "dene":1, "deng":1, "denom":1, "dens":1, "dense":1, "densely":2, "denseness":2, "denser":2, "densest":2, "dent":1, "denary":3, "denbigh":2, "denbighshire":3, "dendric":2, "dendrite":2, "dendritic":3, "dendritical":4, "dendritically":5, "dendriform":3, "dendrites":3, "dendroid":2, "dendroidal":3, "dendrologist":4, "dendrology":4, "dendron":2, "dendrophagous":4, "dendrophilous":4, "dendrochronological":7, "dendrochronologically":8, "dendrochronologist":6, "dendrochronology":6, "dendrological":5, "deneb":2, "denegation":4, "dengue":2, "denham":2, "denier":2, "denim":2, "denims":2, "denis":2, "denigrate":3, "denigrated":4, "denigrating":4, "denigration":4, "denigrator":4, "denison":3, "denization":4, "denizen":3, "denizenation":5, "denizenship":4, "denmark":2, "denmark strait":3, "denning":2, "denning":2, "dennis":2, "dennison":3, "denny":2, "denpasar":3, "densimeter":4, "densimetry":4, "densified":3, "densification":5, "densifier":4, "densify":3, "densifying":4, "densimetric":4, "densimetrically":6, "densitometer":5, "densitometry":5, "densitometric":5, "density":3, "densus":2, "dental":2, "dental floss":3, "dental hygiene":4, "dental hygienist":5, "dental plaque":3, "dental surgeon":4, "dentalise":3, "dentalised":3, "dentalising":4, "dentalize":3, "dentalized":3, "dentalizing":4, "dentality":4, "dentalization":5, "dentalman":3, "dentate":2, "dentately":3, "dentalia":4, "dentalium":4, "dentaliums":4, "dentaries":3, "dentary":3, "dentation":3, "dentelle":2, "dentes":2, "dentex":2, "denticulate":4, "denticulately":5, "denticulated":5, "denticulation":5, "dentil":2, "dentiled":2, "dentin":2, "dentine":2, "dentinal":3, "dentist":2, "dentistry":3, "dentistry":3, "denticle":3, "dentiform":3, "dentifrice":3, "dentilabial":5, "dentilingual":4, "dentiphone":3, "dentirostral":4, "dentition":3, "dentoid":2, "denton":2, "denture":2, "denudate":3, "denudation":4, "denver":2, "denys":2, "dens":3, "dep":1, "dept":1, "depth":1, "depth of focus":4, "depth psychology":5, "deptford":2, "depeter":3, "depilate":3, "depilated":4, "depilating":4, "depilation":4, "depilator":4, "deploration":4, "deposition":4, "deposition":4, "depositional":5, "depravation":4, "deprecate":3, "deprecated":4, "deprecating":4, "deprecatingly":5, "deprecation":4, "deprecative":4, "deprecatively":5, "deprecator":4, "deprecatorily":6, "deprecatoriness":6, "deprecatory":5, "depredate":3, "depredated":4, "depredating":4, "depredation":4, "depredationist":5, "depredator":4, "depredatory":5, "depreter":3, "deprivation":4, "depside":2, "depurate":3, "depurated":4, "depurating":4, "depuration":4, "depurative":4, "depurator":4, "deputable":4, "deputation":4, "deputise":3, "deputised":3, "deputising":4, "deputize":3, "deputized":3, "deputizing":4, "deputy":3, "deputyship":4, "der":1, "dere":1, "deriv":1, "derm":1, "dermabrasion":4, "dermatoglyphics":5, "dern":1, "derv":1, "derbent":2, "derby":2, "derby":2, "derbyshire":3, "derek":2, "derelict":3, "derelictly":4, "derelictness":4, "dereliction":4, "deringer":3, "derivation":4, "derivational":5, "derivationally":6, "derleth":2, "derma":2, "dermal":2, "dermatic":3, "dermatogen":4, "dermatoglyphics":5, "dermatographic":5, "dermatographia":6, "dermatophytic":5, "dermatophytosis":6, "dermatotropic":5, "dermatherm":3, "dermatitis":4, "dermatographism":5, "dermatoid":3, "dermatologist":5, "dermatology":5, "dermatome":3, "dermatomic":4, "dermatological":6, "dermatophyte":4, "dermatophytosis":6, "dermatoplastic":5, "dermatoplasty":5, "dermatoses":4, "dermatosis":4, "dermatozoa":5, "dermatozoon":5, "dermatozon":6, "dermatropic":4, "dermic":2, "dermis":2, "dermographism":4, "dermoid":2, "dermoptera":4, "dermott":2, "dermographic":4, "dermographia":5, "dermotherm":3, "dermotropic":4, "dernier cri":3, "dernier":3, "deron":2, "derogate":3, "derogately":4, "derogated":4, "derogating":4, "derogation":4, "derrel":2, "derri":2, "derrick":2, "derring-do":2, "derringer":3, "derris":2, "derriere":3, "derrire":4, "derry":2, "derry":2, "derry-down":2, "dertrum":2, "dervish":2, "dervishhood":3, "dervishism":3, "dervishlike":3, "derwent":2, "derwentwater":4, "des":1, "des pror deprez":4, "desc":1, "desk":1, "deskbound":2, "deskman":2, "desamidase":4, "desaminase":4, "descant":2, "descanter":3, "descartes":2, "descamisado":5, "deschamps":2, "deschutes":2, "descloizite":3, "desde":2, "desdemona":4, "deseilligny":4, "desert":2, "desert boots":3, "desert cooler":4, "desert island":4, "desert lynx":3, "desert pea":3, "desert rat":3, "desert soil":3, "desertlike":3, "deserticolous":5, "desecrate":3, "desecrated":4, "desecrater":4, "desecrating":4, "desecration":4, "desecrator":4, "deshabille":3, "desiccant":3, "desiccate":3, "desiccated":4, "desiccating":4, "desiccated":4, "desiccation":4, "desiccative":4, "desiccator":4, "designate":3, "designated":4, "designating":4, "designation":4, "designative":4, "designator":4, "designatory":5, "designee":3, "desiderii":5, "desiderius":5, "desinence":3, "desinent":3, "desinential":4, "deslandres":3, "desma":2, "desman":2, "desmid":2, "desmidian":4, "desmitis":3, "desmoid":2, "desmond":2, "desmontes":3, "desmotropism":4, "desmotropy":4, "desmoulins":3, "desmolase":3, "desmona":3, "desmotropic":4, "desoxyribose":5, "desoxyribonuclease":8, "desoxyribonucleic acid":10, "desoxyribonucleoprotein":10, "desolate":3, "desolately":4, "desolateness":4, "desolated":4, "desolater":4, "desolating":4, "desolatingly":5, "desolation":4, "desolator":4, "despair":2, "despairingly":4, "despairingness":4, "despatch":2, "despatcher":3, "despenser":3, "desperate":3, "desperately":4, "desperateness":4, "desperado":4, "desperation":4, "desperado":4, "despiau":2, "despicable":4, "despise":2, "despiteous":4, "despiteously":5, "despicability":6, "despicable":4, "despicableness":5, "despicably":4, "despoena":3, "despot":2, "despotic":3, "despotism":3, "despotical":4, "despotically":5, "despoticalness":5, "despumate":3, "despumation":4, "desquamate":3, "desquamated":4, "desquamating":4, "desquamation":4, "dessau":2, "dessalines":3, "dessert":2, "dessertspoon":3, "dessertspoonful":4, "dessiatine":3, "desta":2, "desterro":3, "destine":2, "destined":2, "destining":3, "destination":4, "destiny":3, "destiny":3, "destitute":3, "destitutely":4, "destituteness":4, "destituted":4, "destituting":4, "destitution":4, "destrier":3, "desuetude":3, "desultorily":5, "desultoriness":5, "desultory":4, "desuetude":4, "detinue":3, "detmold":2, "detonate":3, "detonated":4, "detonating":4, "detonability":6, "detonable":4, "detonation":4, "detonative":4, "detonator":4, "detriment":3, "detrimental":4, "detrimentality":6, "detrimentally":5, "detritivorous":5, "deuce":1, "deuced":2, "deucedly":3, "deurne":2, "deut":1, "deutsch":1, "deutschland":2, "deutsche mark":3, "deutscher":2, "deutschemark":3, "deutzia":3, "deux-svres":3, "deucalion":4, "deuced":2, "deuteragonist":5, "deuteranope":4, "deuteranopic":5, "deuteranomal":5, "deuterate":3, "deuteranomalous":6, "deuteranomaly":6, "deuteranope":4, "deuteranopia":5, "deuteranopia":6, "deuteride":3, "deuterium":4, "deuterium oxide":6, "deuterogamist":5, "deuterogamy":5, "deuteron":3, "deuteronomist":5, "deuteronomy":5, "deuterotoky":5, "deuteronomic":5, "deuterium":4, "deuteroplasm":4, "deuton":2, "deutoplasm":3, "deutoplasmic":4, "devastate":3, "devastated":4, "devastating":4, "devastating":4, "devastation":4, "devastative":4, "devastator":4, "devel":2, "devereux":3, "devil":2, "devil's advocate":5, "devil's bit":3, "devil's coach-horse":3, "devil's darning needle":6, "devil's food cake":4, "devil's island":4, "devil's-bit":2, "devil's-pincushion":4, "devil's-tongue":2, "devil's-walking-stick":3, "devil-in-the-bush":2, "devil-may-care":2, "deviled":2, "devilled":2, "devils-on-horseback":3, "devilfish":3, "devilfishes":4, "deviling":3, "devilish":3, "devilishly":4, "devilishness":4, "devilkin":3, "devilling":3, "devilment":3, "devilry":3, "deviltry":3, "devilwood":3, "devon":2, "devonport":3, "devonshire":3, "devonshire cream":4, "devonshire split":4, "devolution":4, "devotee":3, "dew":1, "dew":1, "dew":1, "dewsbury":3, "dewar":2, "dewar flask":3, "dewberry":3, "dewclaw":2, "dewclawed":2, "dewdrop":2, "dewey":2, "dewey decimal system":7, "deweyan":3, "dewfall":2, "dewier":3, "dewiest":3, "dewily":3, "dewiness":3, "dewlap":2, "dewlapped":2, "dewless":2, "dewy":2, "dewy-eyed":2, "dexamethasone":5, "dexamenus":4, "dexamyl":3, "dexedrine":3, "dexiocardia":6, "dexter":2, "dexter":2, "dexterity":4, "dexterous":3, "dexterously":4, "dexterousness":4, "dextorsal":3, "dextra":2, "dextrad":2, "dextral":2, "dextrality":4, "dextrally":3, "dextran":2, "dextrin":2, "dextrine":2, "dextro":2, "dextrocular":4, "dextrocularity":6, "dextrorse":2, "dextrorsely":3, "dextrorsal":3, "dextrose":2, "dextrous":2, "dextrously":3, "dextrousness":3, "dextroamphetamine":6, "dextrocardia":5, "dextrocardial":5, "dextroglucose":4, "dextrogyre":3, "dextrogyrate":4, "dextrorotary":5, "dextrorotation":5, "dextrorotatory":6, "dextrosinistral":5, "dextrosinistrally":6, "dey":1, "dezhnev":2, "deactivate":4, "deactivate":4, "deactivated":5, "deactivating":5, "deactivation":5, "deactivator":5, "deaerate":3, "deaerated":4, "deaerating":4, "deaeration":4, "deaerator":4, "deambulatory":6, "deaminise":4, "deaminize":4, "deamidase":4, "deaminase":4, "deaminate":4, "deaminated":5, "deaminating":5, "deamination":5, "deaminize":4, "deaminized":4, "deaminizing":5, "deaminization":6, "deanna":3, "deanthropomorphic":6, "deanthropomorphism":6, "deacetylate":5, "deacetylated":6, "deacetylating":6, "deacetylation":6, "dealate":3, "dealated":4, "dealation":4, "dearate":5, "debag":2, "debagged":2, "debagging":3, "debar":2, "debark":2, "debarred":2, "debarkation":4, "debarment":3, "debarring":3, "debase":2, "debased":2, "debasement":3, "debasedness":4, "debaser":3, "debasing":3, "debasingly":4, "debate":2, "debateable":4, "debatable":4, "debated":3, "debater":3, "debating":3, "debatingly":4, "debauch":2, "debauched":2, "debauchedly":4, "debauchedness":4, "debaucher":3, "debaucheries":4, "debauchery":4, "debauchment":3, "debacle":3, "debe":2, "debeak":2, "debeaker":3, "debenture":3, "debentured":3, "debilitant":4, "debilitate":4, "debilitated":5, "debilitating":5, "debilitation":5, "debilitative":5, "debility":4, "debir":2, "debouch":2, "debouchment":3, "debouchure":3, "debrecen":3, "debridement":3, "debrief":2, "debris":2, "debruise":2, "debruised":2, "debruising":3, "debug":2, "debugged":2, "debugging":3, "debunk":2, "debunker":3, "deburr":2, "debus":2, "debused":2, "debussed":2, "debusing":3, "debussing":3, "debussy":3, "debut":2, "debye":2, "debye":2, "decaffeinate":4, "decaffeinated":5, "decaffeinating":5, "decagonal":4, "decal":2, "decalcification":6, "decalcifier":5, "decalcify":4, "decalcifying":5, "decalcomania":6, "decamp":2, "decampment":3, "decameron":4, "decamerous":4, "decant":2, "decanter":3, "decancellate":4, "decancellated":5, "decancellating":5, "decancellation":5, "decanically":5, "decantation":4, "decapitate":4, "decapitated":5, "decapitating":5, "decapitation":5, "decapitator":5, "decapodous":4, "decapolis":4, "decarbonate":4, "decarbonated":5, "decarbonating":5, "decarbonation":5, "decarbonise":4, "decarbonised":4, "decarboniser":5, "decarbonising":5, "decarbonize":4, "decarbonized":4, "decarbonizer":5, "decarbonizing":5, "decarbonization":6, "decarbonylation":6, "decarboxylase":5, "decarboxylate":5, "decarboxylated":6, "decarboxylating":6, "decarboxylation":6, "decarbonylate":5, "decarbonylated":6, "decarbonylating":6, "decarburation":5, "decarburise":4, "decarburised":4, "decarburising":5, "decarburize":4, "decarburized":4, "decarburizing":5, "decarburization":6, "decartelize":4, "decartelized":4, "decartelizing":5, "decartelization":6, "decasualise":5, "decasualised":5, "decasualising":6, "decasualize":5, "decasualized":5, "decasualizing":6, "decasualization":7, "decathlon":3, "decay":2, "decay":2, "decayedness":3, "decayable":4, "decayless":3, "decadently":4, "decalescence":4, "decalescent":4, "decanal":3, "decani":3, "decatur":3, "decease":2, "deceased":2, "deceasing":3, "deceit":2, "deceitful":3, "deceitfully":4, "deceitfulness":4, "deceive":2, "deceived":2, "deceivability":6, "deceivableness":5, "deceivably":4, "deceiver":3, "deceiving":3, "deceivingly":4, "decelerate":4, "decelerated":5, "decelerating":5, "deceleration":5, "decelerator":5, "deceleron":4, "decelerometer":6, "december":3, "decembrist":3, "decemvir":3, "decemvirs":3, "decemviral":4, "decemvirate":4, "decemviri":4, "decent":2, "decently":3, "decentness":3, "decenary":4, "decencies":3, "decency":3, "decennary":4, "decennia":4, "decennial":4, "decennially":5, "decennium":4, "decenniums":4, "decenter":3, "decentralise":4, "decentralised":4, "decentralist":4, "decentralising":5, "decentralize":4, "decentralized":4, "decentralizing":5, "decentralization":6, "decentre":3, "deception":3, "deceptive":3, "deceptively":4, "deceptiveness":4, "decern":2, "decerebrate":4, "decerebrated":5, "decerebrating":5, "decerebration":5, "decertified":4, "decertification":6, "decertify":4, "decertifying":5, "decedent":3, "decerebrate":4, "dechen":2, "dechloridation":5, "dechloridize":4, "dechloridized":4, "dechloridizing":5, "decide":2, "decidable":4, "decided":3, "decidedly":4, "decidedness":4, "decider":3, "deciding":3, "decidua":4, "deciduae":4, "decidual":4, "deciduas":4, "deciduate":4, "deciduitis":5, "deciduous":4, "deciduously":5, "deciduousness":5, "decillion":3, "decillionth":3, "decius":2, "decipher":3, "decipherability":7, "decipherable":5, "decipherer":4, "decipherment":4, "decision":3, "decisional":4, "decisive":3, "decisively":4, "decisiveness":4, "declaim":2, "declaimer":3, "declamatory":4, "declamatory":5, "declare":2, "declared":2, "declarant":3, "declarable":4, "declarative":4, "declaratively":5, "declarator":4, "declaratory":5, "declaredly":4, "declarer":3, "declaring":3, "declass":2, "declassified":4, "declassification":6, "declassify":4, "declassifying":5, "declension":3, "declensional":4, "declensionally":5, "decline":2, "declined":2, "declinable":4, "declinatory":4, "declinature":4, "decliner":3, "declining":3, "declive":2, "declivitous":4, "declivitously":5, "declivity":4, "declivent":3, "declivous":3, "declutch":2, "decoct":2, "decoction":3, "decoctive":3, "decode":2, "decoded":3, "decoder":3, "decoding":3, "decoke":2, "decolletage":3, "decollete":3, "decollate":3, "decollated":4, "decollating":4, "decollation":4, "decollator":4, "decolor":3, "decolorant":4, "decoloration":5, "decolorise":4, "decolorised":4, "decoloriser":5, "decolorising":5, "decolorize":4, "decolorized":4, "decolorizer":5, "decolorizing":5, "decolorization":6, "decolonise":4, "decolonised":4, "decolonising":5, "decolonize":4, "decolonized":4, "decolonizing":5, "decolonization":6, "decommission":4, "decompensation":5, "decompose":3, "decomposed":3, "decomposer":3, "decomposability":7, "decomposable":5, "decomposer":4, "decomposing":4, "decompound":3, "decomposition":5, "decompress":3, "decompression":4, "decompression chamber":6, "decompression sickness":6, "decompressive":4, "deconcentrate":4, "deconcentrated":5, "deconcentrating":5, "decongest":3, "decongestant":4, "decongestant":4, "decongestive":4, "deconsecrate":4, "deconsecrated":5, "deconsecrating":5, "deconsecration":5, "decontaminate":5, "decontaminated":5, "decontaminating":6, "decontamination":6, "decontaminative":6, "decontaminator":6, "decontrol":3, "decontrolled":3, "decontrolling":4, "decor":2, "decorticate":4, "decorticated":5, "decorticating":5, "decortication":5, "decorticator":5, "decortization":5, "decoupage":3, "decouple":3, "decoupling":3, "decoy":2, "decoyer":3, "decorah":3, "decorum":3, "decrease":2, "decreasing":3, "decreasingly":4, "decree":2, "decree absolute":5, "decree nisi":4, "decreed":2, "decreet":2, "decreeing":3, "decrepit":3, "decrepitly":4, "decrepitate":4, "decrepitated":5, "decrepitating":5, "decrepitation":5, "decrepitude":4, "decrescence":3, "decrescent":3, "decrescendo":4, "decretal":3, "decretals":3, "decretist":3, "decretive":3, "decretively":4, "decried":2, "decrial":3, "decrier":3, "decry":2, "decrypt":2, "decrying":3, "decubitus":4, "decumbence":3, "decumbent":3, "decumbently":4, "decumbency":4, "decurved":2, "decurrence":3, "decurrent":3, "decurrently":4, "decurrency":4, "decussate":3, "decussately":4, "decussation":4, "decubital":4, "decubitus ulcer":6, "decuple":3, "decurion":4, "dedal":2, "dedans":2, "dedendum":3, "dedekind":3, "dedifferentiate":6, "dedifferentiated":7, "dedifferentiating":7, "dedifferentiation":7, "dedolomitize":5, "dedolomitized":5, "dedolomitizing":6, "dedolomitization":7, "deduce":2, "deduced":2, "deduct":2, "deductibility":6, "deductible":4, "deducing":3, "deducibility":6, "deducible":4, "deducibleness":5, "deducibly":4, "deduction":3, "deductive":3, "deductively":4, "dedagach":4, "deemphasis":4, "deescalate":4, "deescalated":5, "deescalating":5, "deescalation":5, "deesis":3, "deface":2, "defaced":2, "defaceable":4, "defacement":3, "defacer":3, "defacing":3, "defalcate":3, "defalcated":4, "defalcating":4, "defalcation":4, "defalcator":4, "defame":2, "defamed":2, "defamatory":5, "defamer":3, "defaming":3, "defamingly":4, "defang":2, "default":2, "defaulter":3, "defeat":2, "defeater":3, "defeatism":3, "defeatist":3, "defeasance":3, "defeasibility":6, "defeasible":4, "defeasibleness":5, "defeature":3, "defect":2, "defectibility":6, "defectible":4, "defectless":3, "defection":3, "defective":3, "defectively":4, "defectiveness":4, "defector":3, "defeminise":4, "defeminised":4, "defeminising":5, "defeminize":4, "defeminized":4, "defeminizing":5, "defeminization":6, "defence":2, "defence mechanism":5, "defenceless":3, "defencelessly":4, "defencelessness":4, "defend":2, "defendant":3, "defendable":4, "defender":3, "defense":2, "defenseless":3, "defenselessly":4, "defenselessness":4, "defenseman":3, "defenestration":5, "defensive":3, "defensively":4, "defensiveness":4, "defensibility":6, "defensible":4, "defensibleness":5, "defensibly":4, "defer":2, "deferred":2, "deferred annuity":6, "deferred sentence":4, "deferable":4, "deferment":3, "deferral":3, "deferrable":4, "deferrer":3, "deferring":3, "defervesce":3, "defervesced":3, "defervescing":4, "defervescence":4, "defervescent":4, "defibrillator":5, "defile":2, "defiled":2, "defilement":3, "defilable":4, "defiler":3, "defiling":3, "defilingly":4, "define":2, "defined":2, "definability":6, "definable":4, "definably":4, "definer":3, "defining":3, "definiens":4, "definiendum":5, "definientia":5, "definitise":4, "definitised":4, "definitising":5, "definitive":4, "definitively":5, "definitiveness":5, "definitude":4, "defiance":3, "defiant":3, "defiantly":4, "defiantness":4, "defiable":4, "defibrillate":4, "defibrillated":5, "defibrillating":5, "defibrillation":5, "defibrillator":5, "deficience":3, "deficient":3, "deficiently":4, "deficiency":4, "deficiency disease":6, "defier":3, "deflate":2, "deflated":3, "deflating":3, "deflation":3, "deflationary":4, "deflationary gap":6, "deflationist":4, "deflator":3, "deflect":2, "deflectable":4, "deflected":3, "deflection":3, "deflective":3, "deflector":3, "deflexed":2, "deflexion":3, "deflocculant":4, "deflocculate":4, "deflocculated":5, "deflocculating":5, "deflocculation":5, "deflower":3, "deflowerer":4, "defloration":4, "defluxion":3, "defoe":2, "deforce":2, "deforced":2, "deforcement":3, "deforcer":3, "deforcing":3, "deform":2, "deformed":2, "deformability":6, "deformable":4, "deformative":4, "deformedly":4, "deformedness":4, "deformer":3, "deformity":4, "deforciant":3, "deforest":3, "deforestation":5, "deforester":4, "deformation":4, "deformational":5, "deformeter":4, "defoliant":4, "defoliate":4, "defoliated":5, "defoliating":5, "defoliation":5, "defoliator":5, "defraud":2, "defrauder":3, "defraudation":4, "defray":2, "defrayal":3, "defrayable":4, "defrayer":3, "defrayment":3, "defrock":2, "defrost":2, "defroster":3, "defunct":2, "defunctness":3, "defunctive":3, "defuse":2, "defused":2, "defusing":3, "defuze":2, "defuzed":2, "defuzing":3, "defusion":3, "defy":2, "defyingly":4, "degas":2, "degas":2, "degassed":2, "degassing":3, "degauss":2, "degausser":3, "degenerate":4, "degenerately":5, "degenerateness":5, "degenerated":5, "degenerating":5, "degeneracy":5, "degeneration":5, "degenerative":5, "degenerative joint disease":8, "deglamorize":4, "deglamorized":4, "deglamorizing":5, "deglamorization":6, "deglaciation":5, "deglutinate":4, "deglutinated":5, "deglutinating":5, "deglutination":5, "deglutition":4, "deglutitious":4, "degold":2, "degrade":2, "degraded":3, "degradedly":4, "degradedness":4, "degrader":3, "degrading":3, "degradingly":4, "degradingness":4, "degradable":4, "degrease":2, "degreased":2, "degreaser":3, "degreasing":3, "degree":2, "degree day":3, "degree of freedom":5, "degree-day":2, "degreeless":3, "degression":3, "degressive":3, "degressively":4, "degum":2, "degummed":2, "degummer":3, "degumming":3, "degust":2, "degustate":3, "degustation":4, "dehisce":2, "dehisced":2, "dehiscing":3, "dehiscence":3, "dehiscent":3, "dehorn":2, "dehorner":3, "dehort":2, "dehorter":3, "dehortation":4, "dehortative":4, "dehortatory":5, "dehumanise":4, "dehumanised":4, "dehumanising":5, "dehumanize":4, "dehumanized":4, "dehumanizing":5, "dehumanization":6, "dehumidified":5, "dehumidification":7, "dehumidifier":6, "dehumidify":5, "dehumidifying":6, "dehypnotise":4, "dehypnotised":4, "dehypnotising":5, "dehypnotize":4, "dehypnotized":4, "dehypnotizing":5, "dehydrate":3, "dehydrated":4, "dehydrating":4, "dehydration":4, "dehydrator":4, "dehydrofreeze":4, "dehydrofreezing":5, "dehydrofroze":4, "dehydrofrozen":5, "dehydrogenase":5, "dehydrogenate":5, "dehydrogenated":6, "dehydrogenating":6, "dehydrogenation":6, "dehydrogenise":5, "dehydrogenised":5, "dehydrogeniser":6, "dehydrogenising":6, "dehydrogenize":5, "dehydrogenized":5, "dehydrogenizer":6, "dehydrogenization":7, "dehydroretinol":6, "deianeira":4, "deianira":4, "deice":2, "deiced":2, "deicer":3, "deicing":3, "deicon":5, "deific":3, "deism":2, "deist":2, "deistic":3, "deistical":4, "deistically":5, "deisticalness":5, "deicide":3, "deicidal":4, "deidamia":5, "deified":3, "deification":5, "deifier":4, "deiform":3, "deiformity":5, "deify":3, "deifying":4, "deionize":4, "deionized":4, "deionizer":5, "deionizing":5, "deionization":6, "deiphontes":4, "deity":3, "deity":3, "deject":2, "dejected":3, "dejectedly":4, "dejectedness":4, "dejecta":3, "dejection":3, "delaine":2, "delambre":3, "delaminate":4, "delaminated":5, "delaminating":5, "delamination":5, "deland":2, "delannoy":3, "delate":2, "delated":3, "delater":3, "delating":3, "delaunay":3, "delay":2, "delay action":4, "delay line":3, "delay-action":3, "delayed action":4, "delayed drop":3, "delayed neutron":4, "delayed-action":3, "delayable":4, "delayer":3, "delaying action":5, "delayingly":4, "delabialize":5, "delabialized":5, "delabializing":6, "delabialization":7, "delacroix":3, "delaroche":3, "delation":3, "delative":3, "delator":3, "delavigne":3, "dele":2, "delead":2, "delectate":3, "delectated":4, "delectating":4, "delectability":6, "delectable":4, "delectableness":5, "delectably":4, "delectation":4, "deledda":3, "delete":2, "deleted":3, "deleting":3, "delegalize":4, "delegalized":4, "delegalizing":5, "deletion":3, "delibes":2, "deliberate":4, "deliberately":5, "deliberateness":5, "deliberated":5, "deliberating":5, "deliberation":5, "deliberative":5, "deliberatively":6, "deliberativeness":6, "deliberator":5, "delict":2, "delight":2, "delight":2, "delighted":3, "delightedly":4, "delightedness":4, "delighter":3, "delightful":3, "delightfully":4, "delightfulness":4, "delightingly":4, "delightless":3, "delightsome":3, "delightsomely":4, "delightsomeness":4, "delimit":3, "delimitate":4, "delimitated":5, "delimitating":5, "delimitation":5, "delimitative":5, "delineate":4, "delineated":5, "delineating":5, "delineable":5, "delineation":5, "delineative":5, "delineator":5, "delinquent":3, "delinquently":4, "delinquency":4, "deliria":4, "delirious":4, "deliriously":5, "deliriousness":5, "delirium":4, "delirium tremens":6, "deliriums":4, "delisle":2, "delist":2, "deliver":3, "deliverance":4, "deliverable":5, "deliverer":4, "deliveries":4, "deliverly":4, "delivery":4, "delivery van":5, "deliveryman":5, "delian":3, "delian league":4, "delicia":3, "delicious":3, "deliciously":4, "deliciousness":4, "delilah":3, "delineavit":5, "delium":3, "delius":3, "delorme":2, "delos":2, "delouse":2, "deloused":2, "delousing":3, "delocalise":4, "delocalised":4, "delocalising":5, "delocalize":4, "delocalized":4, "delocalizing":5, "delocalization":6, "delores":3, "deluc":2, "delude":2, "deluded":3, "deluder":3, "deluding":3, "deludingly":4, "delustering":4, "delusterant":4, "delustrant":3, "deluxe":2, "delubrum":3, "delusion":3, "delusional":4, "delusive":3, "delusively":4, "delusiveness":4, "delusory":4, "demagnetise":4, "demagnetised":4, "demagnetiser":5, "demagnetising":5, "demagnetize":4, "demagnetized":4, "demagnetizable":6, "demagnetizer":5, "demagnetizing":5, "demagnetisation":6, "demagnetization":6, "demand":2, "demand bill":3, "demand deposit":5, "demand loan":3, "demand note":3, "demand-pull inflation":5, "demandant":3, "demandable":4, "demander":3, "demanding":3, "demandingly":4, "demantoid":3, "demark":2, "demarcate":3, "demarcated":4, "demarcating":4, "demarcation":4, "demarcator":4, "demarkation":4, "demasculinise":5, "demasculinize":5, "demasculinization":7, "demasculinnised":5, "demasculinnising":6, "demasculinnized":5, "demasculinnizing":6, "dematerialise":6, "dematerialised":6, "dematerialising":7, "dematerialize":6, "dematerialized":6, "dematerializing":7, "dematerialization":8, "demean":2, "demeanor":3, "dement":2, "demented":3, "dementedly":4, "dementedness":4, "dementia":3, "dementia praecox":5, "demerit":3, "demeritorious":6, "demeritoriously":7, "demersal":3, "demesne":2, "demesnial":4, "demethylchlortetracycline":8, "demeter":3, "demetra":3, "demetria":4, "demetrias":4, "demetrios":4, "demetrius":4, "demi-pension":3, "demilitarise":5, "demilitarised":5, "demilitarising":6, "demilitarize":5, "demilitarized":5, "demilitarizing":6, "demilitarization":7, "demineralise":5, "demineralize":5, "demineralized":5, "demineralizing":6, "demineralization":7, "demise":2, "demised":2, "demist":2, "demisability":6, "demisable":4, "demising":3, "demission":3, "demit":2, "demitted":3, "demitting":3, "demirel":3, "demob":2, "demobbed":2, "demobbing":3, "democoon":4, "democracy":4, "democratise":4, "democratised":4, "democratising":5, "democratize":4, "democratized":4, "democratizing":5, "democratization":6, "democritus":4, "demoded":3, "demodocus":4, "demodulate":4, "demodulated":5, "demodulating":5, "demodulation":5, "demodulator":5, "demographer":4, "demographist":4, "demography":4, "demolish":3, "demolisher":4, "demolishment":4, "demon":2, "demonetise":4, "demonetised":4, "demonetising":5, "demonetize":4, "demonetized":4, "demonetizing":5, "demonetization":6, "demonic":3, "demonise":3, "demonised":3, "demonism":3, "demonist":3, "demonising":4, "demonize":3, "demonized":3, "demonizing":4, "demonical":4, "demonographer":5, "demonography":5, "demonolater":5, "demonolatrous":5, "demonolatrously":6, "demonolatry":5, "demonologist":5, "demonology":5, "demonologic":5, "demonologically":7, "demonstrant":3, "demonstrability":6, "demonstrable":4, "demonstrableness":5, "demonstrably":4, "demonstrative":4, "demonstratively":5, "demonstrativeness":5, "demonstrator":4, "demophon":5, "demopolis":4, "demoralise":4, "demoralised":4, "demoraliser":5, "demoralising":5, "demoralize":4, "demoralized":4, "demoralizer":5, "demoralizing":5, "demoralization":6, "demos":2, "demosthenes":4, "demote":2, "demothball":3, "demoted":3, "demotic":3, "demotic":3, "demoting":3, "demount":2, "demountability":6, "demountable":4, "demobilise":4, "demobilised":4, "demobilising":5, "demobilize":4, "demobilized":4, "demobilizing":5, "demobilization":6, "demogorgon":4, "demographic":4, "demographically":6, "demonassa":4, "demonax":3, "demoniac":4, "demonian":4, "demoniacal":5, "demoniacally":6, "demophon":3, "demotion":3, "demulcent":3, "demulsified":4, "demulsification":6, "demulsifier":5, "demulsify":4, "demulsifying":5, "demur":2, "demure":2, "demurely":3, "demureness":3, "demurred":2, "demurer":3, "demurest":3, "demurrage":3, "demurral":3, "demurrable":4, "demurrer":3, "demurring":3, "demus":2, "demuth":2, "demy":2, "demystify":4, "demythify":4, "demythologise":5, "demythologised":5, "demythologising":6, "demythologize":5, "demythologized":5, "demythologizing":6, "demythologization":7, "denarii":4, "denarius":4, "denaturalise":5, "denaturalised":5, "denaturalising":6, "denaturalize":5, "denaturalized":5, "denaturalizing":6, "denaturalization":7, "denary":3, "denasalize":4, "denasalized":4, "denasalizing":5, "denationalise":5, "denationalised":5, "denationalising":6, "denationalize":5, "denationalized":5, "denationalizing":6, "denationalization":7, "denature":3, "denatured":3, "denaturant":4, "denaturation":5, "denaturing":4, "denaturise":4, "denaturised":4, "denaturiser":5, "denaturising":5, "denaturize":4, "denaturized":4, "denaturizer":5, "denaturizing":5, "denaturization":6, "denazified":4, "denazification":6, "denazify":4, "denazifying":5, "denebola":4, "denegation":4, "denice":2, "denicotinize":5, "denicotinized":5, "denicotinizing":6, "denied":2, "denier":2, "denis":2, "denise":2, "denial":3, "deniable":4, "denier":3, "deniker":3, "denitrate":3, "denitrated":4, "denitrating":4, "denitration":4, "denitrified":4, "denitrification":6, "denitrificator":6, "denitrifier":5, "denitrify":4, "denitrifying":5, "denominate":4, "denominated":5, "denominating":5, "denomination":5, "denominational":6, "denominationalism":7, "denominationalist":7, "denominationally":7, "denominative":5, "denominatively":6, "denominator":5, "denote":2, "denotement":3, "denotable":4, "denoted":3, "denoting":3, "denouement":3, "denounce":2, "denounced":2, "denouncement":3, "denouncer":3, "denouncing":3, "denotation":4, "denotative":4, "denotatively":5, "denotativeness":5, "denotive":3, "denude":2, "denuded":3, "denuder":3, "denuding":3, "denunciate":4, "denunciated":5, "denunciating":5, "denunciable":5, "denunciation":5, "denunciative":5, "denunciatively":6, "denunciator":5, "denunciatory":6, "denuclearise":5, "denuclearize":5, "denudative":4, "denumerable":5, "denumerably":5, "deny":2, "denying":3, "deo gratias":5, "deo volente":5, "deontic":3, "deontologist":5, "deontology":5, "deontological":6, "deoxidise":4, "deoxidised":4, "deoxidiser":5, "deoxidising":5, "deoxidize":4, "deoxidized":4, "deoxidizer":5, "deoxidizing":5, "deoxidization":6, "deoxycorticosterone":8, "deoxycortone":5, "deoxygenate":5, "deoxygenated":6, "deoxygenating":6, "deoxygenation":6, "deoxygenise":5, "deoxygenize":5, "deoxygenized":5, "deoxygenizing":6, "deoxygenization":7, "deoxyribose":5, "deoxyribonuclease":8, "deoxyribonucleic acid":10, "deoxyribonucleoprotein":10, "deodand":3, "deodar":3, "deodorant":4, "deodorise":4, "deodorised":4, "deodoriser":5, "deodorising":5, "deodorize":4, "deodorized":4, "deodorizer":5, "deodorizing":5, "deodorization":6, "depaint":2, "depart":2, "departed":3, "department":3, "department store":4, "departmentalise":5, "departmentalize":5, "departmental":4, "departmentalise":5, "departmentalised":5, "departmentalism":5, "departmentalising":6, "departmentalize":5, "departmentalized":5, "departmentalizing":6, "departmentalization":7, "departmentally":5, "departure":3, "depasture":3, "depauperate":4, "depauperation":5, "depend":2, "dependance":3, "dependant":3, "dependantly":4, "dependancy":4, "dependability":6, "dependable":4, "dependableness":5, "dependably":4, "dependence":3, "dependent":3, "dependent clause":4, "dependent variable":7, "dependently":4, "dependency":4, "depeople":3, "deperm":2, "depersonalise":5, "depersonalised":5, "depersonalising":6, "depersonalize":5, "depersonalized":5, "depersonalizing":6, "depersonalisation":7, "depersonalization":7, "depew":2, "dephlogisticated":6, "depict":2, "depicter":3, "depiction":3, "depictive":3, "depictor":3, "depicture":3, "depictured":3, "depicturing":4, "depilatory":5, "deplane":2, "deplaned":2, "deplaning":3, "deplete":2, "depleted":3, "depleting":3, "depletion":3, "depletive":3, "depletory":4, "deplore":2, "deplored":2, "deplorability":6, "deplorable":4, "deplorableness":5, "deplorably":4, "deplorer":3, "deploring":3, "deploringly":4, "deploy":2, "deployment":3, "deplume":2, "deplumed":2, "depluming":3, "deplumation":4, "depolymerise":5, "depolymerize":5, "depone":2, "deponed":2, "deponing":3, "depopulate":4, "depopulated":5, "depopulating":5, "depopulation":5, "depopulative":5, "depopulator":5, "deport":2, "deportable":4, "deporter":3, "deportment":3, "deportation":4, "deportee":3, "depose":2, "deposed":2, "deposal":3, "deposable":4, "deposer":3, "deposing":3, "deposit":3, "deposit account":5, "depositaries":5, "depositary":5, "depositor":4, "depository":5, "depot":2, "depolarise":4, "depolarised":4, "depolariser":5, "depolarising":5, "depolarize":4, "depolarized":4, "depolarizer":5, "depolarizing":5, "depolarization":6, "depoliticise":5, "depoliticize":5, "depolymerize":5, "depolymerized":5, "depolymerizing":6, "depolymerization":7, "deponent":3, "deprave":2, "depraved":2, "depravedly":3, "depravedness":3, "depraver":3, "depraving":3, "depravingly":4, "depravity":4, "depress":2, "depressed":2, "depressingly":4, "depressibility":6, "depressible":4, "depressant":3, "depression":3, "depression":3, "depressive":3, "depressively":4, "depressiveness":4, "depressor":3, "depressomotor":5, "depressurise":4, "depressurize":4, "depreciable":4, "depreciate":4, "depreciated":5, "depreciating":5, "depreciatingly":6, "depreciable":5, "depreciation":5, "depreciative":5, "depreciatively":6, "depreciator":5, "depreciatory":6, "deprive":2, "deprived":2, "deprival":3, "deprivable":4, "deprivative":4, "depriver":3, "depriving":3, "depute":2, "deputed":3, "deputing":3, "deracinate":4, "deracinnated":5, "deracinnating":5, "deracination":5, "deraign":2, "deraignment":3, "derail":2, "derailleur":3, "derailment":3, "derain":2, "derange":2, "deranged":2, "derangeable":4, "derangement":3, "deranger":3, "deranging":3, "deratize":3, "deratization":5, "deray":2, "deration":3, "deregister":4, "derequisition":5, "dereism":3, "dereistic":4, "dereistically":6, "derestrict":3, "deride":2, "derided":3, "derider":3, "deriding":3, "deridingly":4, "derisible":4, "derive":2, "derived":2, "derived unit":4, "derivable":4, "derivative":4, "derivatively":5, "derivativeness":5, "deriver":3, "derision":3, "derisive":3, "derisively":4, "derisiveness":4, "derisory":4, "dero":2, "derogative":4, "derogatively":5, "derogatorily":6, "derogatoriness":6, "derogatory":5, "derust":2, "desai":2, "desalt":2, "desalter":3, "desalinate":4, "desalinated":5, "desalinating":5, "desalination":5, "desalinise":4, "desalinize":4, "desalinisation":6, "desalinization":6, "desargues":2, "desalinize":4, "desalinized":4, "desalinizing":5, "desalinization":6, "descale":2, "descaled":2, "descaling":3, "descend":2, "descendant":3, "descendant":3, "descendability":6, "descendable":4, "descendent":3, "descender":3, "descendingly":4, "descendibility":6, "descendible":4, "descent":2, "descension":3, "descensory":4, "deschool":2, "describe":2, "described":2, "describability":6, "describable":4, "describably":4, "describer":3, "describing":3, "descried":2, "description":3, "descriptive":3, "descriptive geometry":7, "descriptive linguistics":6, "descriptively":4, "descriptiveness":4, "descriptivism":4, "descrier":3, "descry":2, "descrying":3, "deseam":2, "desegregate":4, "desegregated":5, "desegregating":5, "desegregation":5, "desensitise":4, "desensitize":4, "desensitized":4, "desensitizer":5, "desensitizing":5, "desensitization":6, "desert":2, "deserted":3, "desertedly":4, "desertedness":4, "deserter":3, "deserve":2, "deserved":2, "deservedly":4, "deservedness":4, "deserver":3, "deserving":3, "deservingly":4, "deservingness":4, "desertic":3, "desertion":3, "desex":2, "desexualise":5, "desexualize":5, "desiderate":4, "desiderated":5, "desiderating":5, "desiderata":5, "desideration":5, "desiderative":5, "desideratum":5, "design":2, "designed":2, "designedly":4, "designedness":4, "designer":3, "designing":3, "designingly":4, "designment":3, "desilt":2, "desilver":3, "desilverize":4, "desilverized":4, "desilverizing":5, "desire":2, "desired":2, "desiredly":3, "desiredness":3, "desireless":3, "desirability":6, "desirable":4, "desirableness":5, "desirably":4, "desirer":3, "desiring":3, "desiringly":4, "desirous":3, "desirously":4, "desirousness":4, "desist":2, "desistance":3, "desistence":3, "desorb":2, "desorption":3, "despair":2, "despairer":3, "despairful":3, "despairfully":4, "despairfulness":4, "despairing":3, "despise":2, "despised":2, "despisable":4, "despisableness":5, "despiser":3, "despising":3, "despisingly":4, "despite":2, "despiteful":3, "despitefully":4, "despitefulness":4, "despited":3, "despiting":3, "despoil":2, "despoiler":3, "despoilment":3, "despond":2, "despondence":3, "despondent":3, "despondently":4, "despondency":4, "desponder":3, "despondingly":4, "despoliation":5, "despumate":3, "despumated":4, "despumating":4, "destalinize":4, "desterilize":4, "desterilized":4, "desterilizing":5, "desterilization":6, "destool":2, "destoolment":3, "destroy":2, "destroyable":4, "destroyer":3, "destroyer escort":5, "destruct":2, "destructibility":6, "destructible":4, "destructibleness":5, "destruction":3, "destructionist":4, "destructive":3, "destructive distillation":7, "destructively":4, "destructiveness":4, "destructivity":5, "destructor":3, "desulfur":3, "desulfurate":4, "desulfurated":5, "desulfurating":5, "desulfuration":5, "desulfurise":4, "desulfurised":4, "desulfuriser":5, "desulfurising":5, "desulfurize":4, "desulfurized":4, "desulfurizer":5, "desulfurizing":5, "desulfurization":6, "desulphur":3, "desulphurate":4, "desulphurated":5, "desulphurating":5, "desulphurise":4, "desulphurize":4, "desulphuration":5, "desulphurise":4, "desulphurised":4, "desulphurising":5, "desulphurize":4, "desulphurized":4, "desulphurizing":5, "desuperheater":5, "detach":2, "detached":2, "detachedly":3, "detachability":6, "detachable":4, "detachedness":4, "detacher":3, "detachment":3, "detail":2, "detail drawing":4, "detailed":2, "detailedly":3, "detailedness":3, "detain":2, "detainable":4, "detainer":3, "detainment":3, "detect":2, "detectable":4, "detectible":4, "detectaphone":4, "detection":3, "detective":3, "detector":3, "detent":2, "detention":3, "detention centre":5, "deter":2, "deterge":2, "deterged":2, "deterging":3, "deterred":2, "detergence":3, "detergent":3, "detergency":4, "determent":3, "determine":3, "determined":3, "determinedly":4, "determinedness":4, "determiner":4, "determining":4, "determinism":4, "determinist":4, "deterministic":5, "determinant":4, "determinate":4, "determinately":5, "determinateness":5, "determinated":5, "determinating":5, "determinability":7, "determinable":5, "determinableness":6, "determinably":5, "determination":5, "determinative":5, "determinatively":6, "determinativeness":6, "deterrence":3, "deterrent":3, "deterring":3, "detersive":3, "detersively":4, "detersiveness":4, "detest":2, "detestability":6, "detestable":4, "detestableness":5, "detestably":4, "detester":3, "detestation":4, "deteriorate":5, "deteriorated":6, "deteriorating":6, "deterioration":6, "deteriorationist":7, "deteriorative":6, "dethrone":2, "dethroned":2, "dethronement":3, "dethroner":3, "dethroning":3, "detour":2, "detoxicant":4, "detoxicate":4, "detoxicated":5, "detoxicating":5, "detoxication":5, "detoxicator":5, "detoxified":4, "detoxification":6, "detoxify":4, "detoxifying":5, "detract":2, "detractingly":4, "detraction":3, "detractive":3, "detractively":4, "detractiveness":4, "detractor":3, "detractory":4, "detrain":2, "detrainment":3, "detribalise":4, "detribalize":4, "detribalized":4, "detribalizing":5, "detribalization":6, "detrivorous":4, "detrital":3, "detrition":3, "detritus":3, "detroit":2, "detrude":2, "detruded":3, "detruding":3, "detruncate":3, "detruncated":4, "detruncating":4, "detruncation":4, "detrusion":3, "detrusive":3, "detumescence":4, "deus":2, "deus ex machina":6, "deusdedit":4, "deva":2, "deva":2, "devalue":3, "devaluate":4, "devaluated":5, "devaluating":5, "devaluation":5, "devaluing":4, "devadasi":4, "devanagari":5, "develop":3, "develope":3, "developed":3, "developement":4, "developability":7, "developable":5, "developer":4, "developing":4, "development":4, "developmental":5, "developmentary":6, "developp":5, "deventer":3, "devest":2, "devi":2, "device":2, "deviceful":3, "devicefully":4, "devicefulness":4, "devine":2, "devise":2, "devised":2, "devisal":3, "devisable":4, "deviser":3, "devising":3, "devitrified":4, "devitrification":6, "devitrify":4, "devitrifying":5, "deviance":3, "deviant":3, "deviate":3, "deviated":4, "deviating":4, "deviability":6, "deviable":4, "deviascope":4, "deviation":4, "deviationism":5, "deviationist":5, "deviator":4, "deviatory":5, "devious":3, "deviously":4, "deviousness":4, "devisee":3, "devisor":3, "devitalise":4, "devitalised":4, "devitalising":5, "devitalize":4, "devitalized":4, "devitalizing":5, "devitalization":6, "devoice":2, "devoiced":2, "devoicing":3, "devoid":2, "devoir":2, "devoirs":2, "devolve":2, "devolved":2, "devolvement":3, "devolving":3, "devolatilise":5, "devolatilised":5, "devolatilising":6, "devolatilize":5, "devolatilized":5, "devolatilizing":6, "devolatilization":7, "devote":2, "devotement":3, "devoted":3, "devotedly":4, "devotedness":4, "devoting":3, "devour":2, "devourer":3, "devouringly":4, "devouringness":4, "devout":2, "devoutly":3, "devoutness":3, "devocalise":4, "devocalised":4, "devocalising":5, "devocalize":4, "devocalized":4, "devocalizing":5, "devocalization":6, "devolution":4, "devona":3, "devonian":4, "devotion":3, "devotional":4, "devotionality":6, "devotionally":5, "devotionalness":5, "devvalued":3, "dewan":2, "dewali":3, "dewater":3, "dewi":2, "dezincification":6, "demphasis":5, "descalate":5, "descalation":6, "dephilus":5, "dephobe":5, "dephobus":5, "depyle":5, "depylus":5, "deon":4, "deope":5, "dfc":1, "dfm":1, "dhahran":2, "dhak":1, "dhal":1, "dhamma":2, "dhammapada":4, "dharma":2, "dharmapada":4, "dharmasastra":4, "dharmashastra":4, "dharmasutra":4, "dharna":2, "dhaulagiri":4, "dharana":3, "dhikr":1, "dhole":1, "dholl":1, "dhooly":2, "dhooti":2, "dhootie":2, "dhow":1, "dhobi":2, "dhobi itch":3, "dhobie":2, "dhodheknisos":5, "dhoti":2, "dhurna":2, "dhurrie":2, "dhuti":2, "dhyana":2, "dhlos":2, "dia":1, "diag":1, "dial":1, "diam":1, "diabelli":3, "diaghilev":3, "diamond":2, "diamond":2, "diamond-matched":2, "diamondback":3, "diamondlike":3, "diaper":2, "dib":1, "dibs":1, "dibatag":3, "dibber":2, "dibbing":2, "dibble":2, "dibbuk":2, "dice":1, "dicey":2, "dichterliebe":4, "dick":1, "dick":1, "dickcissel":3, "dickens":2, "dickens":2, "dickensian":4, "dicker":2, "dickey":2, "dickeybird":3, "dickie":2, "dickie":2, "dickies":2, "dickinson":3, "dickite":2, "dickson":2, "dicky":2, "dict":1, "dicast":2, "dicer":2, "dicing":2, "dicta":2, "dictate":2, "dictatingly":4, "dictagraph":3, "dictaphone":3, "dictation":3, "dictational":4, "dictator":3, "dictatorial":5, "dictatorship":4, "dictatorial":5, "dictatorially":6, "dictatorialness":6, "dictatress":3, "diction":2, "dictionaries":4, "dictionary":4, "dictionary catalogue":7, "dictograph":3, "dictum":2, "dictynna":3, "dictys":2, "did":1, "didst":1, "didache":3, "didachist":3, "didachographer":5, "didakai":3, "diddicoy":3, "diddikai":3, "diddle":2, "diddler":2, "didgeridoo":4, "didicoy":3, "didlove":2, "didn't":2, "didrikson":3, "didymaea":4, "didymous":3, "die":1, "die-casting":2, "die-hardism":2, "diels":1, "diels-alder reaction":5, "dieldrin":2, "dies":1, "dies":1, "dieback":2, "diefenbaker":4, "diego":2, "diego-suarez":3, "diehard":2, "dieing":2, "diesel":2, "diesel":2, "diesel cycle":4, "diesel engine":4, "diesel oil":3, "diesel-electric":4, "diesel-electric":4, "diesel-hydraulic":4, "dieselize":3, "dieselized":3, "dieselizing":4, "dieselization":5, "diesinker":3, "diesinking":3, "diestock":2, "dietrich":2, "diff":1, "difficulties":2, "differ":2, "difference":3, "differenced":3, "differencing":4, "different":3, "differently":4, "differential":4, "differential calculus":7, "differential coefficient":8, "differential equation":7, "differential gear":5, "differential operator":8, "differential windlass":6, "differentially":5, "differentia":5, "differentiae":5, "differentiate":5, "differentiated":6, "differentiating":6, "differentiable":6, "differentiation":6, "differentiator":6, "difficile":3, "difficult":3, "difficultly":4, "difficulty":4, "diffidence":3, "diffident":3, "diffidently":4, "diffidentness":4, "diffluence":3, "diffluent":3, "difflugia":4, "diffract":2, "diffraction":3, "diffraction grating":5, "diffractive":3, "diffractively":4, "diffractiveness":4, "diffractometer":5, "diffuse":2, "diffused junction":4, "diffusely":3, "diffuseness":3, "diffusedly":4, "diffusedness":4, "diffuser":3, "diffusibility":6, "diffusible":4, "diffusibleness":5, "diffusibly":4, "diffusate":3, "diffusion":3, "diffusion coefficient":7, "diffusive":3, "diffusively":4, "diffusiveness":4, "diffusivity":5, "diffusor":3, "difluence":3, "dig":1, "digged":1, "dight":1, "dighted":2, "dighting":2, "digs":1, "digamous":3, "digamy":3, "digby":2, "digger":2, "digger":2, "digger wasp":3, "diggers":2, "digging":2, "diggings":2, "digit":2, "digital":3, "digitally":4, "digitise":3, "digitize":3, "digital":3, "digital clock":4, "digital computer":6, "digitalin":4, "digitalis":4, "digitalise":4, "digitalism":4, "digitalize":4, "digitalized":4, "digitalizing":5, "digitalization":6, "digitate":3, "digitately":4, "digitated":4, "digitation":4, "digitise":3, "digitised":3, "digitising":4, "digitize":3, "digitized":3, "digitizing":4, "digitiform":4, "digitigrade":4, "digitinerved":4, "digitinervate":5, "digitipinnate":5, "digitization":5, "digitoxin":4, "digitron":3, "dignified":3, "dignifiedly":4, "dignifiedness":4, "dignify":3, "dignifying":4, "dignitaries":4, "dignitarial":5, "dignitary":4, "dignity":3, "dik-dik":1, "dike":1, "diker":2, "diking":2, "dikkop":2, "diktat":2, "dill":1, "dill pickle":3, "dilatation":4, "dilatometer":5, "dilatometry":5, "dilatometric":5, "dilatometrically":7, "dilatorily":5, "dilatoriness":5, "dilatory":4, "dildo":2, "dildoe":2, "dilemmatic":4, "dilemmatically":6, "dilettante":3, "dilettantism":4, "dilettante":4, "dilettantes":4, "dilettanteish":5, "dilettanteism":5, "dilettanti":4, "dilettantish":4, "diligence":3, "diligent":3, "diligently":4, "diligentness":4, "diligences":4, "dilli":2, "dillie":2, "dillinger":3, "dillon":2, "dilly":2, "dilly":2, "dilly bag":3, "dilly-dally":3, "dillydallied":4, "dillydally":4, "dillydallying":5, "diluent":3, "dim":1, "dim-witted":2, "dime":1, "dime novel":3, "dimerism":3, "dimerous":3, "dimeter":3, "dimissorial":5, "dimissory":4, "diminution":4, "dimity":3, "dimly":2, "dimmer":2, "dimmest":2, "dimming":2, "dimmitt":2, "dimness":2, "dimout":2, "dimple":2, "dimply":2, "dimwit":2, "din":1, "din":1, "din":1, "dine":1, "ding":1, "dinge":1, "dingbat":2, "dingbats":2, "dingus":2, "dinguses":3, "dink":1, "dinkey":2, "dinkies":2, "dinkier":3, "dinkiest":3, "dinkly":2, "dinky":2, "dinky-di":2, "dint":1, "dintless":2, "dinarchy":3, "dindle":2, "dindymene":4, "diner":2, "dinesen":3, "dingaan":2, "dingey":2, "dinghy":2, "dingier":3, "dingiest":3, "dingily":3, "dinginess":3, "dingle":2, "dingo":2, "dingy":2, "dining":2, "dining car":3, "dining room":3, "dinka":2, "dinkum":2, "dinkum":2, "dinmont":2, "dinner":2, "dinner jacket":4, "dinner service":4, "dinner-dance":2, "dinnerless":3, "dinnerware":3, "dinning":2, "dinoflagellate":5, "dinwiddie":3, "dioc":1, "dior":1, "dip":1, "dip":1, "dip circle":3, "dip needle":3, "dip-needling":2, "diphtheritic":4, "diphtheritically":6, "diphtheria":4, "diphtherial":4, "diphtheriaphor":5, "diphtheroid":3, "diphthong":2, "diphthongise":3, "diphthongised":3, "diphthongising":4, "diphthongize":3, "diphthongized":3, "diphthongizing":4, "diphthongization":5, "diphthongal":3, "diphthongia":4, "diphyodont":4, "dipl":1, "dipt":1, "diplacusis":4, "diploid":2, "diploidic":3, "diplont":2, "diploblastic":4, "diplocardiac":5, "diplococcal":4, "diplococci":4, "diplococcic":4, "diplococcus":4, "diplodocus":4, "diploe":3, "diplomat":3, "diplomate":3, "diplomatic":4, "diplomatic corps":5, "diplomatic immunity":8, "diplomatic service":6, "diplomatics":4, "diplomatical":5, "diplomatically":6, "diplophonic":4, "diplophonia":5, "diplopod":3, "diplostemonous":5, "diplostemony":5, "diplotene":3, "diplo":4, "dipneedle":3, "dipnoan":3, "dipody":3, "dipper":2, "dipping":2, "dippier":3, "dippiest":3, "dippy":2, "dipsacaceous":4, "dipso":2, "dipsomania":5, "dipsomaniac":5, "dipsomaniacal":6, "dipstick":2, "dipsy-doodle":3, "diptera":3, "diptera":3, "dipteral":3, "dipteran":3, "dipteroi":3, "dipteron":3, "dipteros":3, "dipterous":3, "dipterocarpaceous":6, "diptote":2, "diptych":2, "dipylon":3, "dir":1, "dire":1, "directcarving":3, "directdiscourse":3, "directexamination":3, "direful":2, "direfully":3, "direfulness":3, "direly":2, "direness":2, "dirge":1, "dirgeful":2, "dirgelike":2, "dirk":1, "dirk":1, "dirl":1, "dirndl":2, "dirt":1, "dirt wagon":3, "dirtfarmer":3, "dirtied":2, "dirtier":3, "dirtiest":3, "dirtily":3, "dirtiness":3, "dirty":2, "dirtying":3, "dirdum":2, "direr":2, "direst":2, "dirham":2, "dirhem":2, "dirigibility":6, "dirigible":4, "dirty-faced":2, "dirty-minded":3, "dis":1, "disc":1, "disc flower":3, "disc harrow":3, "disc jockey":3, "dish":1, "dished":1, "dishcloth":2, "dishcloth gourd":3, "dishclout":2, "dishcross":2, "dishful":2, "dishpan":2, "dishrag":2, "dishtowel":3, "dishwasher":3, "dishwater":3, "dishy":2, "disk":1, "disklike":2, "dispersedelement":3, "dispersedye":2, "dist":1, "distr":1, "disaccord":3, "disaccredit":4, "disaccustom":4, "disaccustomedness":5, "disadvantage":4, "disadvantage":4, "disadvantaged":4, "disadvantaging":5, "disadvantageous":5, "disadvantageously":6, "disadvantageousness":6, "disaffect":3, "disaffectedly":5, "disaffectedness":5, "disaffection":4, "disaffiliate":5, "disaffiliated":6, "disaffiliating":6, "disaffiliation":6, "disaffirm":3, "disaffirmation":5, "disafforest":4, "disafforestment":5, "disafforestation":6, "disallow":3, "disallowance":4, "disallowable":5, "disallowableness":6, "disambiguate":5, "disannul":3, "disannulled":3, "disannuller":4, "disannulling":4, "disannulment":4, "disappear":3, "disappearance":4, "disappoint":3, "disappointed":4, "disappointedly":5, "disappointer":4, "disappointingly":5, "disappointingness":5, "disappointment":4, "disapprove":3, "disapproved":3, "disapproval":4, "disapprover":4, "disapproving":4, "disapprovingly":5, "disapprobation":5, "disarm":2, "disarmament":4, "disarmer":3, "disarming":3, "disarmingly":4, "disarmament":4, "disarrange":3, "disarranged":3, "disarrangement":4, "disarranger":4, "disarranging":4, "disarray":3, "disarticulate":5, "disarticulated":6, "disarticulating":6, "disarticulation":6, "disarticulator":6, "disassemble":4, "disassembly":4, "disassociate":5, "disassociated":6, "disassociating":6, "disassociation":6, "disaster":3, "disastrous":3, "disastrously":4, "disastrousness":4, "disability":5, "disability clause":6, "disable":3, "disabled":3, "disabler":3, "disablement":4, "disablement benefit":7, "disabuse":3, "disabused":3, "disabusal":4, "disabusing":4, "disagree":3, "disagreed":3, "disagreeability":7, "disagreeable":5, "disagreeableness":6, "disagreeably":5, "disagreeing":4, "disagreement":4, "disanoint":3, "disavow":3, "disavowal":4, "disavowedly":5, "disavower":4, "disband":2, "disbandment":3, "disbar":2, "disbarred":2, "disbarment":3, "disbarring":3, "disbelief":3, "disbelieve":3, "disbelieved":3, "disbeliever":4, "disbelieving":4, "disbelievingly":5, "disbosom":3, "disbowel":3, "disboweled":3, "disbowelled":3, "disboweling":4, "disbowelling":4, "disbranch":2, "disbud":2, "disbudded":3, "disbudding":3, "disburse":2, "disbursed":2, "disbursement":3, "disbursable":4, "disburser":3, "disbursing":3, "disburden":3, "disburdenment":4, "disburthen":3, "discalced":2, "discalceate":4, "discant":2, "discanter":3, "discantus":3, "discard":2, "discarder":3, "discarnate":3, "discarnation":4, "discase":2, "discased":2, "discasing":3, "discept":2, "disceptation":4, "discern":2, "discernable":4, "discernableness":5, "discernably":4, "discerner":3, "discerning":3, "discerningly":4, "discernible":4, "discernibleness":5, "discernibly":4, "discernment":3, "discerp":2, "discerptibility":6, "discerptible":4, "discerptibleness":5, "discharge":2, "dischargeable":4, "discharger":3, "disci":2, "discission":3, "discifloral":4, "disciple":3, "disciples of christ":5, "disciplelike":4, "discipleship":4, "discipline":3, "disciplined":3, "disciplinant":4, "disciplinability":7, "disciplinable":5, "disciplinableness":6, "discipliner":4, "disciplining":4, "disciplinal":4, "disciplinant":4, "disciplinarian":6, "disciplinary":5, "disclaim":2, "disclaimer":3, "disclamatory":5, "disclamation":4, "disclimax":3, "disclose":2, "disclosed":2, "discloser":3, "disclosing":3, "disclosure":3, "disco":2, "discobolos":4, "discobolus":4, "discographer":4, "discography":4, "discoid":2, "discoidal":3, "discolor":3, "discoloration":5, "discolorment":4, "discombobulate":5, "discombobulated":6, "discombobulating":6, "discomfit":3, "discomfiter":4, "discomfiture":4, "discomfort":3, "discomfortable":5, "discomfortably":5, "discomfortingly":5, "discommend":3, "discommender":4, "discommode":3, "discommoded":4, "discommoding":4, "discommodity":5, "discommon":3, "discommodious":5, "discommodiously":6, "discommodiousness":6, "discompose":3, "discomposed":3, "discomposedly":5, "discomposing":4, "discomposingly":5, "discomposure":4, "disconcert":3, "disconcerted":4, "disconcertedly":5, "disconcertedness":5, "disconcertingly":5, "disconcertingness":5, "disconcertment":4, "disconcertion":4, "disconformity":5, "disconnect":3, "disconnected":4, "disconnectedly":5, "disconnectedness":5, "disconnecter":4, "disconnection":4, "disconnective":4, "disconnectiveness":5, "disconnexion":4, "disconsider":4, "disconsideration":6, "disconsolate":4, "disconsolately":5, "disconsolation":5, "discontent":3, "discontented":4, "discontentedly":5, "discontentedness":5, "discontentment":4, "discontinue":4, "discontinued":4, "discontinuance":5, "discontinuation":6, "discontinuer":5, "discontinuing":5, "discontinuous":5, "discontinuously":6, "discontinuousness":6, "discontinuity":6, "discord":2, "discordance":3, "discordant":3, "discordantly":4, "discordancy":4, "discordancy":4, "discordia":4, "discount":2, "discount house":3, "discountable":4, "discounter":3, "discountenance":4, "discountenanced":4, "discountenancer":5, "discountenancing":5, "discourse":2, "discoursed":2, "discourseless":3, "discourser":3, "discoursing":3, "discourage":3, "discouraged":3, "discourageable":5, "discouragement":4, "discourager":4, "discouraging":4, "discouragingly":5, "discourteous":4, "discourteously":5, "discourteousness":5, "discourtesy":4, "discover":3, "discovert":3, "discoverable":5, "discoverably":5, "discoverer":4, "discoveries":4, "discoverture":4, "discovery":4, "discovery bay":5, "discographical":5, "discographically":6, "discophil":3, "discophile":3, "discotheque":3, "discothque":4, "discredit":3, "discreditability":7, "discreditable":5, "discreditably":5, "discreet":2, "discreetly":3, "discreetness":3, "discrepance":3, "discrepant":3, "discrepantly":4, "discrepancy":4, "discrete":2, "discretely":3, "discreteness":3, "discreate":3, "discreated":4, "discreating":4, "discreation":4, "discretion":3, "discretional":4, "discretionally":5, "discretionarily":6, "discretionary":5, "discriminant":4, "discriminantal":5, "discriminate":4, "discriminately":5, "discriminated":5, "discriminating":5, "discriminatingly":6, "discrimination":5, "discrimination learning":7, "discriminational":6, "discriminative":5, "discriminatively":6, "discriminator":5, "discriminatory":6, "discriminant":4, "discrown":2, "discursion":3, "discursive":3, "discursively":4, "discursiveness":4, "discus":2, "discuss":2, "discussable":4, "discusser":3, "discussible":4, "discuses":3, "discussant":3, "discussion":3, "discussional":4, "discutient":4, "disdain":2, "disdainful":3, "disdainfully":4, "disdainfulness":4, "disease":2, "diseased":2, "diseasedly":4, "diseasedness":4, "diseasing":3, "disembark":3, "disembargo":4, "disembargoed":4, "disembargoing":5, "disembarkation":5, "disembarrass":4, "disembarrassment":5, "disembodied":4, "disembodiment":5, "disembody":4, "disembodying":5, "disembogue":3, "disembogued":3, "disemboguement":4, "disemboguing":4, "disembosom":4, "disembowel":4, "disemboweled":4, "disembowelled":4, "disemboweling":5, "disembowelling":5, "disembowelment":5, "disembroil":3, "disenable":4, "disenchant":3, "disenchanter":4, "disenchantment":4, "disencumber":4, "disendow":3, "disendower":4, "disendowment":4, "disenfranchise":4, "disenfranchised":4, "disenfranchisement":5, "disenfranchising":5, "disengage":3, "disengaged":3, "disengagement":4, "disengagedness":5, "disengaging":4, "disentail":3, "disentailment":4, "disentangle":4, "disentangler":4, "disentanglement":5, "disenthral":3, "disenthrall":3, "disenthrallment":4, "disenthralment":4, "disenthrone":3, "disenthronement":4, "disentitle":4, "disentomb":3, "disentombment":4, "disentrance":3, "disentranced":3, "disentrancement":4, "disentrancing":4, "disentwine":3, "disentwined":3, "disentwining":4, "disestablish":4, "disestablishment":5, "disestablishmentarian":8, "disestablishmentarianism":9, "disesteem":3, "disequilibrium":6, "disfavor":3, "disfavorer":4, "disfavour":3, "disfavourer":4, "disfeature":3, "disfeatured":3, "disfeaturement":4, "disfeaturing":4, "disfigure":3, "disfigured":3, "disfigurement":4, "disfiguration":5, "disfigurer":4, "disfiguring":4, "disforest":3, "disfranchise":3, "disfranchised":3, "disfranchisement":4, "disfranchising":4, "disfrock":2, "disfurnish":3, "disfurnishment":4, "disgavel":3, "disgaveled":3, "disgavelled":3, "disgaveling":4, "disgavelling":4, "disgorge":2, "disgorged":2, "disgorgement":3, "disgorger":3, "disgorging":3, "disgrace":2, "disgraced":2, "disgraceful":3, "disgracefully":4, "disgracefulness":4, "disgracer":3, "disgracing":3, "disgregate":3, "disgregated":4, "disgregating":4, "disgregation":4, "disgruntle":3, "disgruntlement":4, "disguise":2, "disguised":2, "disguisable":4, "disguisedly":4, "disguisedness":4, "disguiser":3, "disguising":3, "disgust":2, "disgustedly":4, "disgustedness":4, "disgustful":3, "disgustfully":4, "disgusting":3, "disgustingly":4, "disgustingness":4, "dishallow":3, "disharmonise":4, "disharmonised":4, "disharmonism":4, "disharmonising":5, "disharmonize":4, "disharmonized":4, "disharmonizing":5, "disharmonious":5, "disharmony":4, "dishabille":3, "dishabituate":5, "dishabituated":6, "dishabituating":6, "dishearten":3, "disheartener":4, "dishearteningly":5, "disheartenment":4, "dishelm":2, "disherit":3, "disherison":4, "disheritor":4, "dishonest":3, "dishonestly":4, "dishonesty":4, "dishonor":3, "dishonorable":5, "dishonorableness":6, "dishonorably":5, "dishonorer":4, "disillusion":4, "disillusionise":5, "disillusionist":5, "disillusionize":5, "disillusionized":5, "disillusionizer":6, "disillusionizing":6, "disillusionment":5, "disillusive":4, "disimpassioned":4, "disimprison":4, "disimprisonment":5, "disincentive":4, "disincline":3, "disinclined":3, "disinclining":4, "disinclination":5, "disinfect":3, "disinfectant":4, "disinfection":4, "disinfective":4, "disinfector":4, "disinfest":3, "disinfestation":5, "disinflate":3, "disinflated":4, "disinflating":4, "disinflation":4, "disingenuous":5, "disingenuously":6, "disingenuousness":6, "disinherit":4, "disinheritance":5, "disinhibition":5, "disinhume":3, "disinhumed":3, "disinhuming":4, "disinter":3, "disinterred":3, "disinterest":4, "disinterested":5, "disinterestedly":6, "disinterestedness":6, "disinterment":4, "disinterring":4, "disintegrate":4, "disintegrated":5, "disintegrating":5, "disintegrable":5, "disintegration":5, "disintegrative":5, "disintegrator":5, "disintegratory":6, "disjasked":3, "disjasket":3, "disjaskit":3, "disject":2, "disjecta membra":5, "disjection":3, "disjoin":2, "disjoined":2, "disjoint":2, "disjointed":3, "disjointedly":4, "disjointedness":4, "disjoinable":4, "disjunct":2, "disjunction":3, "disjunctive":3, "disjunctively":4, "disjuncture":3, "disjune":2, "disko":2, "diskography":4, "diskophile":3, "diskrs":3, "dislike":2, "disliked":2, "dislikable":4, "disliking":3, "dislimn":2, "dislodge":2, "dislodged":2, "dislodgement":3, "dislodging":3, "dislodgment":3, "disloyal":3, "disloyally":4, "disloyalty":4, "dislocate":3, "dislocated":4, "dislocating":4, "dislocation":4, "dismal":2, "dismal swamp":3, "dismality":4, "dismally":3, "dismalness":3, "dismantle":3, "dismantler":3, "dismantlement":4, "dismast":2, "dismastment":3, "dismay":2, "dismayedness":3, "dismember":3, "dismemberment":3, "dismemberer":4, "dismiss":2, "dismissal":3, "dismissible":4, "dismissal":3, "dismission":3, "dismissive":3, "dismount":2, "dismountable":4, "disnature":3, "disnatured":3, "disnaturing":4, "disney":2, "disneyland":3, "disocclude":3, "disoccluded":4, "disoccluding":4, "disoperation":5, "disorder":3, "disordered":3, "disorderedly":4, "disorderedness":4, "disorderliness":5, "disorderly":4, "disorderly conduct":6, "disorderly house":5, "disorganise":4, "disorganised":4, "disorganising":5, "disorganize":4, "disorganized":4, "disorganizer":5, "disorganizing":5, "disorganisation":6, "disorganization":6, "disown":2, "disobey":3, "disobeyer":4, "disobedience":5, "disobedient":5, "disobediently":6, "disoblige":3, "disobliged":3, "disobliging":4, "disobligingly":5, "disobligingness":5, "disorient":4, "disorientate":5, "disorientating":6, "disorientation":6, "dispart":2, "dispartment":3, "disparage":3, "disparaged":3, "disparagement":4, "disparager":4, "disparaging":4, "disparagingly":5, "disparate":3, "disparity":4, "dispassion":3, "dispassionate":4, "dispassionately":5, "dispassionateness":5, "dispatch":2, "dispatch box":3, "dispatch case":3, "dispatch rider":4, "dispatcher":3, "dispauper":3, "disparate":3, "disparately":4, "disparateness":4, "dispel":2, "dispelled":2, "dispellable":4, "dispeller":3, "dispelling":3, "dispend":2, "dispense":2, "dispensed":2, "dispenser":3, "dispensing":3, "dispensability":6, "dispensable":4, "dispensableness":5, "dispensary":4, "dispensation":4, "dispensational":5, "dispensationalism":6, "dispensator":4, "dispensatorily":6, "dispensatory":5, "dispensible":4, "dispeople":3, "dispeopler":3, "dispeoplement":4, "disperse":2, "dispersed":2, "dispersedly":4, "disperser":3, "dispersing":3, "dispersibility":6, "dispersible":4, "dispersal":3, "dispersal prison":5, "dispersant":3, "dispersion":3, "dispersion":3, "dispersion hardening":6, "dispersive":3, "dispersively":4, "dispersiveness":4, "dispersoid":3, "dispirit":3, "dispirited":4, "dispiritedly":5, "dispiritedness":5, "dispiteous":4, "dispiteously":5, "dispiteousness":5, "displace":2, "displaced":2, "displaced person":4, "displaceable":4, "displacement":3, "displacement activity":7, "displacement ton":4, "displacer":3, "displacing":3, "displant":2, "display":2, "displayed":2, "displayer":3, "displease":2, "displeased":2, "displeasing":3, "displeasingly":4, "displeasingness":4, "displeasure":3, "displeasured":3, "displeasureable":5, "displeasureably":5, "displeasuring":4, "displode":2, "disploded":3, "disploding":3, "displume":2, "displumed":2, "displuming":3, "displuviate":4, "disport":2, "dispose":2, "disposed":2, "disposal":3, "disposability":6, "disposable":4, "disposableness":5, "disposedly":4, "disposedness":4, "disposer":3, "disposing":3, "disposingly":4, "dispossess":3, "dispossessed":3, "dispossession":4, "dispossessor":4, "dispossessory":5, "disposition":4, "dispositional":5, "disposure":3, "dispraise":2, "dispraised":2, "dispraiser":3, "dispraising":3, "dispraisingly":4, "dispread":2, "dispreader":3, "dispreading":3, "disprize":2, "disprized":2, "disprizing":3, "disproof":2, "disprove":2, "disproved":2, "disprovable":4, "disprover":3, "disproving":3, "disproportion":4, "disproportional":5, "disproportionality":7, "disproportionally":6, "disproportionalness":6, "disproportionate":5, "disproportionately":6, "disproportionateness":6, "disproportionable":6, "disproportionableness":7, "disproportionably":6, "disproportionation":6, "dispute":2, "disputeless":3, "disputability":6, "disputable":4, "disputableness":5, "disputably":4, "disputative":4, "disputed":3, "disputer":3, "disputing":3, "disputant":3, "disputation":4, "disputatious":4, "disputatiously":5, "disputatiousness":5, "disputative":4, "disqualified":4, "disqualifiable":6, "disqualification":6, "disqualify":4, "disqualifying":5, "disquiet":3, "disquietedly":5, "disquietedness":5, "disquieting":4, "disquietingly":5, "disquietly":4, "disquietude":4, "disquisition":4, "disquisitional":5, "disraeli":3, "disrate":2, "disrated":3, "disrating":3, "disrelish":3, "disreputability":7, "disreputable":5, "disreputableness":6, "disreputably":5, "disreputation":5, "disregard":3, "disregarder":4, "disregardful":4, "disregardfully":5, "disregardfulness":5, "disremember":4, "disrepair":3, "disrepute":3, "disrespect":3, "disrespectability":7, "disrespectable":5, "disrespectful":4, "disrespectfully":5, "disrespectfulness":5, "disrobe":2, "disrobed":2, "disrobement":3, "disrober":3, "disrobing":3, "disroot":2, "disrupt":2, "disrupter":3, "disruption":3, "disruptive":3, "disruptive discharge":5, "disruptively":4, "disruptor":3, "disrupture":3, "dissatisfaction":5, "dissatisfactoriness":7, "dissatisfactory":6, "dissatisfied":4, "dissatisfiedly":5, "dissatisfiedness":5, "dissatisfy":4, "dissatisfying":5, "disseat":2, "dissect":2, "dissected":3, "dissection":3, "dissectible":4, "dissector":3, "disseise":2, "disseised":2, "disseising":3, "disseize":2, "disseized":2, "disseizing":3, "disseisee":3, "disseisin":3, "disseizee":3, "disseizin":3, "disseizor":3, "dissemblance":3, "dissemble":3, "dissembler":3, "dissemblingly":4, "disseminate":4, "disseminated":5, "disseminated sclerosis":8, "disseminating":5, "dissemination":5, "disseminative":5, "disseminator":5, "disseminule":4, "dissent":2, "dissenter":3, "dissenter":3, "dissentingly":4, "dissension":3, "dissentience":3, "dissentient":3, "dissentiently":4, "dissentiency":4, "dissentious":3, "dissepiment":4, "dissepimental":5, "dissert":2, "disserve":2, "disserved":2, "disservice":3, "disserving":3, "dissertate":3, "dissertated":4, "dissertating":4, "dissertation":4, "dissertational":5, "dissertationist":5, "dissertator":4, "disservice":3, "dissever":3, "disseverance":4, "disseveration":5, "disseverment":4, "dissilience":4, "dissilient":4, "dissiliency":5, "dissimilar":4, "dissimilarity":6, "dissimilarly":5, "dissimilate":4, "dissimilated":5, "dissimilating":5, "dissimilation":5, "dissimilative":5, "dissimilatory":6, "dissimulate":4, "dissimulated":5, "dissimulating":5, "dissimulation":5, "dissimulative":5, "dissimulator":5, "dissidence":3, "dissident":3, "dissidently":4, "dissimilitude":5, "dissipate":3, "dissipated":4, "dissipater":4, "dissipating":4, "dissipatedly":5, "dissipatedness":5, "dissipation":4, "dissipative":4, "dissipativity":6, "dissipator":4, "dissogeny":4, "dissogony":4, "dissolve":2, "dissolved":2, "dissolvability":6, "dissolvable":4, "dissolvableness":5, "dissolver":3, "dissolving":3, "dissolvingly":4, "dissolubility":6, "dissoluble":4, "dissolubleness":5, "dissolvent":3, "dissocial":3, "dissociality":6, "dissociate":4, "dissociated":5, "dissociating":5, "dissociability":7, "dissociable":5, "dissociableness":6, "dissociation":5, "dissociative":5, "dissolute":3, "dissolutely":4, "dissoluteness":4, "dissolution":4, "dissolutive":4, "dissonance":3, "dissonant":3, "dissonantly":4, "dissonancy":4, "disspread":2, "disspreading":3, "dissuade":2, "dissuadable":4, "dissuaded":3, "dissuader":3, "dissuading":3, "dissuasion":3, "dissuasive":3, "dissuasively":4, "dissuasiveness":4, "dissyllabic":4, "dissyllabise":4, "dissyllabised":4, "dissyllabism":4, "dissyllabising":5, "dissyllabize":4, "dissyllabized":4, "dissyllabizing":5, "dissyllable":4, "dissymmetric":4, "dissymmetrically":6, "dissymmetry":4, "distaff":2, "distaff side":3, "distain":2, "distal":2, "distally":3, "distance":2, "distanced":2, "distanceless":3, "distancing":3, "distant":2, "distant early warning":6, "distantly":3, "distantness":3, "distaste":2, "distasteful":3, "distastefully":4, "distastefulness":4, "distasted":3, "distasting":3, "distelfink":3, "distemper":3, "distemperedly":4, "distemperedness":4, "distemperature":5, "distend":2, "distended":3, "distendedly":4, "distendedness":4, "distender":3, "distent":2, "distensile":3, "distension":3, "distensibility":6, "distensible":4, "distention":3, "distich":2, "distil":2, "distill":2, "distilled":2, "distillable":4, "distiller":3, "distillery":4, "distillment":3, "distileries":4, "distilery":4, "distilland":3, "distillate":3, "distillation":4, "distillatory":5, "distilling":3, "distilment":3, "distinct":2, "distinctly":3, "distinctness":3, "distinction":3, "distinctionless":4, "distinctive":3, "distinctively":4, "distinctiveness":4, "distingu":3, "distinguish":3, "distinguished":3, "distinguishedly":4, "distinguishability":7, "distinguishable":5, "distinguishableness":6, "distinguishably":5, "distinguisher":4, "distinguishing":4, "distinguishingly":5, "distinguishment":4, "distingu":4, "distingue":4, "distichal":3, "distichous":3, "distichously":4, "distort":2, "distorted":3, "distortedly":4, "distortedness":4, "distorter":3, "distortion":3, "distortional":4, "distortive":3, "distract":2, "distracted":3, "distractedly":4, "distractedness":4, "distracter":3, "distractingly":4, "distractibility":6, "distractible":4, "distraction":3, "distractive":3, "distractively":4, "distrail":2, "distrain":2, "distraint":2, "distrainable":4, "distrainee":3, "distrainer":3, "distrainment":3, "distrait":2, "distraite":2, "distrainor":3, "distraught":2, "distress":2, "distress merchandise":5, "distressed":2, "distressedly":4, "distressedness":4, "distressful":3, "distressfully":4, "distressfulness":4, "distressingly":4, "distribute":3, "distributable":5, "distributed":4, "distributed term":5, "distributer":4, "distributing":4, "distributaries":5, "distributary":5, "distributee":4, "distributive":4, "distributively":5, "distributiveness":5, "distributor":4, "distributorship":5, "district":2, "district attorney":5, "district court":3, "district of columbia":7, "distringas":3, "distribution":4, "distribution function":6, "distributional":5, "distrito federal":6, "distrust":2, "distruster":3, "distrustful":3, "distrustfully":4, "distrustfulness":4, "disturb":2, "disturbed":2, "disturbance":3, "disturber":3, "disturbing":3, "distyle":2, "disunion":3, "disunionism":4, "disunionist":4, "disuse":2, "disused":2, "disusing":3, "disunite":3, "disunity":3, "disunited":4, "disuniter":4, "disuniting":4, "disunified":4, "disunify":4, "disunifying":5, "disunity":4, "disutility":5, "disvalue":3, "disvalued":3, "disvaluing":4, "disyoke":2, "disyoked":2, "disyoking":3, "dit":1, "ditch":1, "ditchdigger":3, "ditchdigging":3, "ditcher":2, "ditchless":2, "ditchwater":3, "dither":2, "dithyramb":3, "dithyrambic":4, "dithyrambically":6, "dithyrambus":4, "ditmars":2, "ditokous":3, "dittander":3, "dittany":3, "dittersdorf":3, "dittied":2, "ditto":2, "dittoed":2, "dittography":4, "dittograph":3, "dittographic":4, "dittoing":3, "ditty":2, "ditty bag":3, "dittying":3, "diushambe":3, "div":1, "dive":1, "dive bomber":3, "diver":2, "divi-divi":3, "diving":2, "diving beetle":4, "diving bell":3, "diving board":3, "diving duck":3, "diving suit":3, "dividend":3, "dividivis":4, "divination":4, "divinise":3, "divinised":3, "divinising":4, "divinize":3, "divinized":3, "divinizing":4, "divinization":5, "divot":2, "divulgation":4, "divvied":2, "divvy":2, "divvying":3, "dix":1, "dixie":2, "dixie":2, "dixies":2, "dixiecrat":3, "dixiecratic":4, "dixieland":3, "dixielander":4, "dixit":2, "dixmoor":2, "dixon":2, "dixy":2, "diy":1, "diy":1, "dizzied":2, "dizzier":3, "dizziest":3, "dizzily":3, "dizziness":3, "dizzy":2, "dizzying":3, "dia":2, "diabolise":4, "diabolised":4, "diabolism":4, "diabolist":4, "diabolising":5, "diabolize":4, "diabolized":4, "diabolizing":5, "diabolization":6, "diabolo":4, "diachylon":4, "diachylum":4, "diacetylmorphine":6, "diacid":3, "diaconal":4, "diaconate":4, "diactinic":4, "diactinism":4, "diadochi":4, "diadochokinesia":7, "diadochokinesis":7, "diadochy":4, "diadromous":4, "diaeresis":4, "diaghilev":4, "diagnose":3, "diagnosed":3, "diagnosable":5, "diagnosing":4, "diagnostic":4, "diagnostics":4, "diagnostically":6, "diagnosticate":5, "diagnosticated":6, "diagnosticating":6, "diagnostication":6, "diagnostician":5, "diagnosis":4, "diagonal":4, "diagonal-built":4, "diagonal-cut":4, "diagonally":5, "diahann":2, "dial":2, "dial gauge":3, "dial tone":3, "dialed":2, "dialled":2, "dialer":3, "dialing":3, "diallage":3, "dialler":3, "dialling":3, "dialling tone":4, "dialogise":4, "dialogised":4, "dialogism":4, "dialogist":4, "dialogising":5, "dialogite":4, "dialogize":4, "dialogized":4, "dialogizing":5, "dialysate":4, "dialysis":4, "dialyzate":4, "dialyzator":5, "diameter":4, "diametral":4, "diametrally":5, "diamine":3, "diane":2, "diana":3, "diandrous":3, "diantha":3, "dianthus":3, "dianthuses":4, "diaphaneity":6, "diaphanometer":6, "diaphanometry":6, "diaphanous":4, "diaphanously":5, "diaphanousness":5, "diaphanometric":6, "diaphony":4, "diaphysis":4, "diaplasis":4, "diapophysial":6, "diarch":2, "diarbekr":4, "diarchic":3, "diarchial":4, "diarchy":3, "diarrhetic":4, "diarrhea":4, "diarrheal":4, "diarrheic":4, "diarrhoea":4, "diarthrodial":5, "diarthrosis":4, "dias":2, "diaschisis":4, "diaspora":4, "diastasis":4, "diaster":3, "diastolic":4, "diastole":4, "diastral":3, "diastrophism":4, "diathesis":4, "diatomicity":6, "diatomite":4, "diatropism":4, "diaz":2, "diazo":3, "diazoalkane":5, "diazoamino":6, "diazomethane":5, "diazomethane":5, "diazotize":4, "diazotized":4, "diazotizability":8, "diazotizable":6, "diazotizing":5, "diazotization":6, "diazotype":4, "diabase":3, "diabasic":4, "diabetic":4, "diabetes":4, "diabetes insipidus":8, "diabetes mellitus":7, "diablerie":4, "diablery":4, "diabolic":4, "diabolical":5, "diabolically":6, "diabolicalness":6, "diacaustic":4, "diacetyl":4, "diacetylmorphine":6, "diachronic":4, "diacidic":4, "diaconicon":5, "diaconicum":5, "diacritic":4, "diacritical":5, "diacritically":6, "diadelphous":4, "diadem":3, "diadem spider":5, "diadochic":4, "diadochian":5, "diagenesis":5, "diagenetic":5, "diageotropism":6, "diageotropic":6, "diagram":3, "diagramed":3, "diagrammed":3, "diagraming":4, "diagrammatic":5, "diagrammatical":6, "diagrammatically":7, "diagramming":4, "diagraph":3, "diakinesis":5, "diakonikon":5, "dialect":3, "dialect atlas":5, "dialect geography":7, "dialectal":4, "dialectally":5, "dialectic":4, "dialectics":4, "dialectical":5, "dialectical materialism":10, "dialectically":6, "dialectician":5, "dialecticism":5, "dialectologist":6, "dialectology":6, "dialectologic":6, "dialectologically":8, "dialog":3, "dialogue":3, "dialogued":3, "dialoguer":4, "dialoguing":4, "dialogic":4, "dialogical":5, "dialogically":6, "dialogistic":5, "dialogistically":7, "dialyse":3, "dialysed":3, "dialysable":5, "dialyser":4, "dialysing":4, "dialytic":4, "dialytically":6, "dialyze":3, "dialyzed":3, "dialyzability":7, "dialyzable":5, "dialyzer":4, "dialyzing":4, "dialysation":5, "dialyzation":5, "diamagnet":4, "diamagnetic":5, "diamagnetism":5, "diamagnetically":7, "diamant":4, "diamanta":4, "diamantiferous":6, "diamantine":4, "diametric":4, "diametrical":5, "diametrically":6, "diamine":3, "diaminopropyltetramethylenediamine":14, "diamond":3, "diamond anniversary":8, "diamond bird":4, "diamond jubilee":6, "diamond point":4, "diamond snake":4, "diamond wedding":5, "diamondback":4, "diamorphine":4, "diamox":3, "dianetics":4, "dianoia":4, "dianoetic":5, "dianoetically":7, "diapause":3, "diapaused":3, "diapausing":4, "diapason":4, "diapasonal":5, "diapente":4, "diaper":3, "diapedetic":5, "diapedesis":5, "diaphane":3, "diaphone":3, "diaphoretic":5, "diaphoresis":5, "diaphototropism":6, "diaphragm":3, "diaphragmatic":5, "diaphragmatically":7, "diaphysial":5, "diapir":3, "diapophysis":5, "diapositive":5, "diarist":3, "diaristic":4, "diary":3, "diascope":3, "diasia":4, "diaspore":3, "diastalsis":4, "diastase":3, "diastatic":4, "diastasic":4, "diastasis":4, "diastema":4, "diastemata":5, "diastrophic":4, "diastyle":3, "diasystem":4, "diatessaron":5, "diathermancy":5, "diathermic":4, "diathermia":5, "diathermy":4, "diathetic":4, "diatom":3, "diatomic":4, "diatonic":4, "diatonically":6, "diatonicism":5, "diatomaceous":5, "diatomaceous earth":6, "diatreme":3, "diatribe":3, "diatropic":4, "diazin":3, "diazine":3, "diazole":3, "diazonium":5, "diazonium salt":6, "diazotise":4, "diazotize":4, "dibai":2, "dibasic":3, "dibasicity":5, "dibelius":4, "diboll":2, "dibrach":2, "dibranchiate":4, "dibromide":3, "dibucaine":3, "dicacodyl":4, "dicarboxylic acid":7, "dicast":2, "dicasteries":4, "dicastery":4, "dicastic":3, "dice":2, "dicentra":3, "dicephalism":4, "dicephalous":4, "dichasia":4, "dichasial":4, "dichasium":4, "dichlamydeous":5, "dichloride":3, "dichlorodifluoromethane":8, "dichlorodifluoromethane":9, "dichlorodiphenyltrichloroethane":11, "dichlorodiphenyltrichloroethane":11, "dichloromethane":5, "dichogamous":4, "dichogamy":4, "dichondra":3, "dichotomise":4, "dichotomised":4, "dichotomist":4, "dichotomising":5, "dichotomistic":5, "dichotomize":4, "dichotomized":4, "dichotomizing":5, "dichotomization":6, "dichotomous":4, "dichotomously":5, "dichotomy":4, "dichogamic":4, "dichotomic":4, "dichotomically":6, "dichroic":3, "dichroism":3, "dichroite":3, "dichroitic":4, "dichroiscope":4, "dichroiscopic":5, "dichromat":3, "dichromate":3, "dichromatic":4, "dichromaticism":5, "dichromatism":4, "dichromatopsia":6, "dichromic":3, "dichromic acid":5, "dichrooscope":4, "dichroscope":3, "dichroscopic":4, "diclinism":3, "diclinous":3, "dicot":2, "dicotyl":3, "dicotyledon":5, "dicotyledonous":6, "dicoumarin":4, "dicoumarol":4, "dicophane":3, "dicrotic":3, "dicrotal":3, "dicrotism":3, "dicumarol":4, "dicynodont":4, "dicyandiamide":6, "dicyanodiamide":7, "dicyclopentadienyliron":10, "didactic":3, "didactics":3, "didactical":4, "didactically":5, "didacticism":4, "didapper":3, "diderot":3, "dido":2, "dido":2, "didrachm":2, "didrachma":3, "didy":2, "didymium":4, "didynamous":4, "didynamy":4, "diene":2, "diencephalon":5, "diencephalic":5, "dieppe":2, "dieresis":4, "dies irae":4, "dies non":3, "diet":2, "diethyl ether":5, "diethylacetal":6, "diethylaminoethanol":9, "diethylethanolamine":8, "diethylmalonylurea":9, "diethylstilbestrol":6, "diethylstilboestrol":6, "dieted":3, "dieter":3, "dieting":3, "diecious":3, "dielectric":4, "dielectric constant":6, "dielectric heating":6, "dielectrically":6, "dieretic":4, "diesis":3, "diestrus":3, "dietaries":4, "dietary":4, "dietetic":4, "dietetics":4, "dietetical":5, "dietician":4, "dietitian":4, "digambara":4, "digamma":3, "digammated":4, "digastric":3, "digenesis":4, "digest":2, "digest":2, "digestant":3, "digestedly":4, "digestedness":4, "digester":3, "digestibility":6, "digestible":4, "digestibleness":5, "digestibly":4, "digestant":3, "digestif":3, "digestion":3, "digestional":4, "digestive":3, "digestive biscuit":5, "digestively":4, "digestor":3, "digenetic":4, "diglot":2, "diglottic":3, "diglyceride":4, "diglyph":2, "digo-suarez":3, "digraph":2, "digraphic":3, "digress":2, "digresser":3, "digressingly":4, "digression":3, "digressional":4, "digressive":3, "digressively":4, "digressiveness":4, "dihedral":3, "dihedron":3, "dihybrid":3, "dihybridism":4, "dihydrate":3, "dihydrated":4, "dihydric":3, "dihydroxy":4, "dihydromorphinone":6, "dihydrosphingosine":6, "dihydrostreptomycin":7, "dihydrotachysterol":7, "diipolia":5, "dijon":2, "dike":2, "diketone":3, "dilacerate":4, "dilacerated":5, "dilacerating":5, "dilaceration":5, "dilantin":3, "dilapidate":4, "dilapidated":5, "dilapidating":5, "dilapidated":5, "dilapidation":5, "dilapidator":5, "dilate":2, "dilatant":3, "dilatancy":4, "dilatate":3, "dilatability":6, "dilatable":4, "dilatableness":5, "dilatably":4, "dilated":3, "dilater":3, "dilating":3, "dilatingly":4, "dilaudid":3, "dilatant":3, "dilatancy":4, "dilatator":4, "dilation":3, "dilative":3, "dilator":3, "dilatory":4, "dilemma":3, "dilute":2, "dilutely":3, "diluteness":3, "diluted":3, "diluting":3, "dilution":3, "diluvia":4, "diluvial":4, "diluvian":4, "diluvion":4, "diluvium":4, "dimaggio":4, "dimashq":2, "dimenhydrinate":5, "dimension":3, "dimensional":4, "dimensionality":6, "dimensionally":5, "dimensionless":4, "dimer":2, "dimercaprol":4, "dimerize":3, "dimerized":3, "dimerizing":4, "dimethyl":3, "dimethylanthranilate":7, "dimethylbenzene":5, "dimethylcarbinol":6, "dimethyldiketone":6, "dimethylketol":5, "dimethylketone":5, "dimethylmethane":5, "dimetric":3, "dimethoxymethane":6, "dimethylsulphoxide":6, "dimidiate":4, "dimidiated":5, "dimidiating":5, "dimidiation":5, "diminish":3, "diminished":3, "diminished responsibility":9, "diminished seventh chord":6, "diminishable":5, "diminishableness":6, "diminishingly":5, "diminishingturns":5, "diminuendo":5, "diminutive":4, "diminutively":5, "diminutiveness":5, "dimitrovo":4, "dimorph":2, "dimorphic":3, "dimorphism":3, "dimorphite":3, "dimorphous":3, "dina":2, "dinah":2, "dinanderie":4, "dinar":2, "dinard":2, "dinaric":3, "dinaric alps":4, "dinergate":3, "dineric":3, "dinette":2, "dinitrobenzene":5, "dinitrogen tetroxide":7, "dinoceras":4, "dinoceras":4, "dinoflagellate":5, "dinosaur":3, "dinosaurian":5, "dinothere":3, "dinuba":3, "dio cassius":5, "diocesan":4, "diode":2, "dioestrous":3, "dioestrum":3, "dioecious":3, "dioeciously":4, "dioeciousness":4, "dioestrus":3, "diogenes":4, "dioicous":3, "dioicousness":4, "diol":2, "dion":2, "dionne":3, "diophantus":4, "diopside":3, "diopsimeter":5, "dioptase":3, "diopter":3, "dioptometer":5, "dioptral":3, "dioptre":3, "dioptric":3, "dioptrics":3, "dioptrical":4, "dioptrically":5, "dior":2, "diorthotic":4, "diorthosis":4, "dioscuri":4, "diosdado":4, "diosgenin":4, "diosmose":3, "diosmosed":3, "diosmosing":4, "diosmosis":4, "dioxan":3, "dioxane":3, "dioxide":3, "diocese":3, "diocletian":4, "diodorus siculus":7, "diogenic":4, "diomede":3, "diomede islands":5, "diomedes":4, "dionaea":4, "dione":3, "dionysiac":5, "dionysian":4, "dionysia":5, "dionysian":5, "dionysiacally":7, "dionysius":5, "dionysius exiguus":9, "dionysius of halicarnassus":11, "dionysos":4, "dionysus":4, "diophantine equation":7, "diophantus":4, "diorama":4, "dioramic":4, "diorama":4, "diores":3, "diorite":3, "dioritic":4, "diotic":3, "dipeptide":3, "dipetalous":4, "diphase":2, "diphasic":3, "diphenhydramine":5, "diphenyl":3, "diphenylacetylene":7, "diphenylamine":5, "diphenylaminechlorarsine":8, "diphenylhydantoin":7, "diphenyl":3, "diphenylamine":5, "diphenylhydantoin sodium":10, "diphosgene":3, "diphosphate":3, "diphonia":4, "diphyllous":3, "diphycercal":4, "diphyletic":4, "dipleurula":4, "diplex":2, "diplegia":3, "diplegic":3, "diplodocus":4, "diplodocuses":5, "diplopic":3, "diploic":3, "diploma":3, "diplomaed":3, "diplomacy":4, "diplomaing":4, "diplomata":4, "diplomatist":4, "diplopia":4, "diplosis":3, "dipodic":3, "dipole":2, "dipolia":4, "dipolar":3, "diprotic":3, "dipropellant":4, "diprotodont":4, "dipyramid":4, "dipyramidal":5, "dirac":2, "dirac constant":4, "dirae":2, "direct":2, "direct access":4, "direct action":4, "direct current":4, "direct discourse":4, "direct distance dialing":7, "direct dye":3, "direct evidence":5, "direct mail":3, "direct method":4, "direct object":4, "direct primary":5, "direct question":4, "direct speech":3, "direct tax":3, "direct-acting":3, "direct-current":3, "direct-examine":4, "direct-examined":4, "direct-examining":5, "direct-grant school":3, "directable":4, "directed":3, "directly":3, "directness":3, "directrix":3, "direction":3, "direction finder":5, "directions":3, "directional":4, "directionless":4, "directive":3, "directively":4, "directiveness":4, "directivity":5, "directoire":3, "director":3, "director-general":5, "directorship":4, "directorate":4, "directorial":5, "directorially":6, "directory":4, "directory":4, "directress":3, "directrix":3, "directrixes":4, "directrices":4, "direxit":3, "diredawa":4, "dirhinous":3, "dirigible":4, "dirichlet":3, "dirigo":3, "diriment":3, "disaccharid":4, "disaccharide":4, "disepalous":4, "diseur":2, "diseuse":2, "disegno":3, "dishevel":3, "disheveled":3, "dishevelled":3, "disheveling":4, "dishevelling":4, "dishevelment":4, "dispermic":3, "dispermous":3, "dispermy":3, "disphenoid":3, "distad":2, "distomatosis":5, "distylar":3, "disubstituted":5, "disulfate":3, "disulfide":3, "disulfiram":4, "disulfiram":4, "disulfuric":4, "disulphate":3, "disulphide":3, "disulphuric":4, "disulphuric acid":6, "disyllabic":4, "disyllabism":4, "disyllabize":4, "disyllabized":4, "disyllabizing":5, "disyllable":4, "dita":2, "ditheism":3, "ditheist":3, "ditheistic":4, "ditheistical":5, "dithionic":4, "dithionous":4, "dithionate":4, "dithionite":4, "dithionous acid":6, "ditriglyph":3, "ditriglyphic":4, "diu":2, "diuril":3, "diurnal":3, "diurnal parallax":6, "diurnally":4, "diurnalness":4, "diuretic":4, "diuretically":6, "diureticalness":6, "diuresis":4, "diva":2, "divan":2, "divaricate":4, "divaricately":5, "divaricated":5, "divaricating":5, "divaricatingly":6, "divarication":5, "divaricator":5, "divagate":3, "divagated":4, "divagating":4, "divagation":4, "divalence":3, "divalent":3, "divali":3, "diverge":2, "diverged":2, "diverging":3, "divers":2, "diverse":2, "diversely":3, "diverseness":3, "divert":2, "divertedly":4, "diverter":3, "diverting":3, "divertingly":4, "divertible":4, "divergence":3, "divergent":3, "divergent thinking":5, "divergently":4, "divergency":4, "diversion":3, "diversional":4, "diversionary":5, "diversified":4, "diversifiability":8, "diversifiable":6, "diversification":6, "diversifier":5, "diversiform":4, "diversify":4, "diversifying":5, "diversity":4, "diverticular":5, "diverticulitis":6, "diverticulosis":6, "diverticulum":5, "divertissement":4, "divertive":3, "divertimento":5, "dives":2, "divest":2, "divestiture":4, "divestible":4, "divi":2, "divide":2, "dividable":4, "dividableness":5, "divided":3, "divided highway":5, "dividedly":4, "dividedness":4, "divider":3, "dividers":3, "dividing":3, "dividual":4, "dividually":5, "divine":2, "divine office":4, "divine service":4, "divined":2, "divinely":3, "divineness":3, "divinable":4, "divinatory":5, "diviner":3, "divining":3, "divining rod":4, "divinity":4, "divisibility":6, "divisible":4, "divisibleness":5, "divisibly":4, "dividendus":4, "divisi":3, "division":3, "division sign":4, "divisional":4, "divisionally":5, "divisionary":5, "divisionism":4, "divisionism":4, "divisionist":4, "divisive":3, "divisively":4, "divisiveness":4, "divisible":4, "divisor":3, "divorce":2, "divorced":2, "divorceable":4, "divorcement":3, "divorcer":3, "divorcing":3, "divorcee":3, "divorcive":3, "divorc":4, "divorce":4, "divulge":2, "divulged":2, "divulgement":3, "divulger":3, "divulging":3, "divulse":2, "divulsed":2, "divulsing":3, "divulgate":3, "divulgated":4, "divulgater":4, "divulgating":4, "divulgator":4, "divulgatory":5, "divulgence":3, "divulsion":3, "divulsive":3, "diwan":2, "diwali":3, "diyarbakir":4, "diyarbekir":4, "dizen":2, "dizenment":3, "dizygotic":4, "djailolo":3, "djambi":2, "djaja":2, "djajapura":4, "djakarta":3, "djebel":2, "djellab":2, "djellabah":3, "djerba":2, "djelab":2, "djibbah":2, "djin":1, "djinni":2, "djinny":2, "djibouti":3, "djilas":2, "djokjakarta":4, "dlr":1, "dlvy":1, "dma":1, "dmitri":2, "dmso":1, "dmus":1, "dmz":1, "dna":1, "dnestr":2, "dnepr":2, "dneprodzerzhinsk":4, "dnepropetrovsk":4, "dniester":2, "dnieper":2, "dniester":2, "do over":3, "do without":3, "do-all":1, "do-dad":1, "do-gooder":2, "do-goodism":2, "do-it-yourself":2, "do-it-yourselfer":3, "do-nothing":2, "do-nothingism":3, "doa":1, "doane":1, "doat":1, "doater":2, "dobber":2, "dobber-in":2, "dobbin":2, "dobby":2, "dobson":2, "dobson":2, "dobsonfly":3, "doc":1, "doch-an-dorrach":2, "doch-an-dorris":2, "doch-an-dorroch":2, "dock":1, "dock-walloper":3, "dock-walloping":3, "dockage":2, "docker":2, "docket":2, "docketed":3, "docketing":3, "dockland":2, "dockmackie":3, "dockmaster":3, "dockside":2, "dockyard":2, "docile":2, "docilely":3, "docosanoic":5, "doctor":2, "doctor of philosophy":7, "doctoral":3, "doctorally":4, "doctorate":3, "doctorfish":3, "doctorfishes":4, "doctorless":3, "doctorship":3, "doctorial":4, "doctorially":5, "doctrine":2, "doctrine of descent":5, "doctrinaire":3, "doctrinairism":4, "doctrinal":3, "doctrinality":5, "doctrinally":4, "document":3, "documental":4, "documentarily":6, "documentary":5, "documentation":5, "dodd":1, "dodds":1, "dodge":1, "dodge":1, "dodge city":3, "dodgeville":2, "dodgem":2, "dodger":2, "dodging":2, "dodgson":2, "dodgy":2, "dodsworth":2, "dodder":2, "doddered":2, "dodderer":3, "doddering":3, "doddie":2, "doddle":2, "doddy":2, "doe":1, "doe":1, "doek":1, "does":1, "doesn't":2, "doenitz":2, "doeskin":2, "doff":1, "doffer":2, "dog":1, "dog biscuit":3, "dog collar":3, "dog fennel":3, "dog latin":3, "dog paddle":3, "dog violet":4, "dog-catcher":2, "dog-ear":1, "dog-end":1, "dog-legged":2, "dog-paddle":2, "doge":1, "dogedom":2, "dogeship":2, "dogs":1, "dogsbody":3, "dogbane":2, "dogberry":3, "dogberry":3, "dogbodies":3, "dogbody":3, "dogcart":2, "dogcatcher":3, "dogdom":2, "dogface":2, "dogfight":2, "dogfish":2, "dogfishes":3, "dogged":2, "doggedly":3, "doggedness":3, "dogger":2, "dogger":2, "dogger bank":3, "doggerel":3, "doggeries":3, "doggery":3, "doggie":2, "dogging":2, "doggish":2, "doggishly":3, "doggishness":3, "doggier":3, "doggiest":3, "doggo":2, "doggone":2, "doggoned":2, "doggonedest":3, "doggonest":3, "doggrel":2, "doggy":2, "doghouse":2, "doghouses":3, "dogleg":2, "dogleg fence":3, "dogless":2, "doglike":2, "dogma":2, "dogman":2, "dogmas":2, "dogmatic":3, "dogmatics":3, "dogmatical":4, "dogmatically":5, "dogmaticalness":5, "dogmata":3, "dogmatise":3, "dogmatised":3, "dogmatism":3, "dogmatist":3, "dogmatiser":4, "dogmatising":4, "dogmatize":3, "dogmatized":3, "dogmatizer":4, "dogmatizing":4, "dogmatization":5, "dogrel":2, "dogshore":2, "dogtooth":2, "dogtooth violet":5, "dogtrot":2, "dogvane":2, "dogwatch":2, "dogwinkle":3, "dogwood":2, "doh":1, "dohnnyi":4, "dohnnyi":3, "doiled":1, "doit":1, "doited":2, "doily":2, "doisy":2, "doited":2, "dol":1, "dole":1, "doleful":2, "dolefully":3, "dolefulness":3, "dolesome":2, "dolgeville":2, "doll":1, "doll":1, "dollface":2, "dollfaced":2, "dollfuss":2, "dollhouse":2, "dollhouses":3, "dollish":2, "dollishly":3, "dollishness":3, "dolly mixture":4, "dolph":1, "dolt":1, "doltish":2, "doltishly":3, "doltishness":3, "dolby":2, "dolce":2, "dolce far niente":5, "dolce vita":4, "doldrums":2, "dolerite":3, "doleritic":4, "doling":2, "dolichocephalism":6, "dolichocephalous":6, "dolichocephalic":6, "dolichocranic":5, "dolichosaurus":5, "dollar":2, "dollar diplomacy":6, "dollarbird":3, "dollarfish":3, "dollarfishes":4, "dollarwise":3, "dolley":2, "dollie":2, "dollied":2, "dollies":2, "dollond":2, "dollop":2, "dolly":2, "dolly":2, "dolly drop":3, "dolly varden":4, "dollying":3, "dollyman":3, "dolma":2, "dolman":2, "dolman sleeve":3, "dolmas":2, "dolmen":2, "dolmenic":3, "dolmetsch":2, "dolor":2, "dolorimetry":5, "dolorous":3, "dolorously":4, "dolorousness":4, "dolour":2, "dolomitic":4, "dolphin":2, "dolphin":2, "dolphin striker":4, "dolphinfish":3, "dolphinfishes":4, "dolton":2, "dom":1, "dom":1, "dom":1, "dome":1, "domed":1, "domesday":2, "domesday book":3, "domelike":2, "domett":2, "domenic":3, "domenick":3, "domic":2, "doming":2, "domino":3, "domical":3, "domically":4, "domicil":3, "domicile":3, "domiciled":3, "domiciling":4, "domiciliar":5, "domiciliary":6, "domiciliate":5, "domiciliated":6, "domiciliating":6, "domiciliation":6, "domina":3, "dominance":3, "dominant":3, "dominant seventh chord":6, "dominant tenement":6, "dominant wavelength":5, "dominantly":4, "dominancy":4, "dominate":3, "dominated":4, "dominating":4, "dominatingly":5, "domination":4, "dominations":4, "dominative":4, "dominator":4, "domine":3, "domineer":3, "domineering":4, "domineeringly":5, "domineeringness":5, "dominic":3, "dominick":3, "dominie":3, "dominique":3, "dominica":4, "domino":3, "domino theory":6, "dominoes":3, "domnus":2, "domremy":3, "domremy-la-pucelle":4, "domrmy":3, "domrmy-la-pucelle":4, "don":1, "don":1, "don quixote":3, "don't":1, "done":1, "dong":1, "donne":1, "donald":2, "donaldsonville":4, "donalsonville":4, "donatello":4, "donatism":3, "donatist":3, "donatistic":4, "donatistical":5, "donative":3, "donatory":4, "donbas":2, "donbass":2, "doncaster":3, "dondi":2, "donelson":3, "donegal":3, "donga":2, "dongola":3, "donica":3, "donizetti":4, "donjon":2, "donkey":2, "donkey derby":4, "donkey jacket":4, "donkey vote":3, "donkey's years":3, "donkey-work":2, "donna":2, "donna":2, "donnard":2, "donne":2, "donnee":2, "donnered":2, "donnert":2, "donnie":2, "donning":2, "donnish":2, "donnishly":3, "donnishness":3, "donnism":2, "donny":2, "donny":2, "donnybrook":3, "donsie":2, "donsy":2, "donzel":2, "dook":1, "doom":1, "dooms":1, "doomsday":2, "doomsday book":3, "doomwatcher":3, "doon":1, "door":1, "doorn":1, "doorbell":2, "doorbrand":2, "doorcase":2, "doorframe":2, "doorjamb":2, "doorkeeper":3, "doorknob":2, "doorless":2, "doorman":2, "doormat":2, "doornail":2, "doornik":2, "doorpiece":2, "doorplate":2, "doorpost":2, "doorsill":2, "doorstead":2, "doorstep":2, "doorstone":2, "doorstop":2, "doorway":2, "dooryard":2, "doostoevsky":4, "doodad":2, "doodah":2, "doodle":2, "doodler":2, "doodlebug":3, "doodlesack":3, "doohickey":3, "dooley":2, "doolie":2, "doolittle":3, "dooly":2, "doover":2, "dop":1, "dope":1, "dopesheet":2, "dopester":2, "dopey":2, "doper":2, "doping":2, "dopier":3, "dopiest":3, "doppelgnger":5, "doppelger":4, "doppelmayer":4, "dopper":2, "doppler":2, "doppler effect":4, "dopy":2, "dor":1, "doran":1, "dore":1, "dorm":1, "dornbirn":2, "dorp":1, "dorr":1, "dorr":1, "dorse":1, "dort":1, "dortmund":2, "dorty":2, "doralice":3, "doralynne":3, "doran":2, "dorbeetle":3, "dorcas":2, "dorcas society":6, "dorchester":3, "dordogne":2, "dordrecht":2, "doric":2, "dorice":2, "doriden":3, "dorje":2, "dorking":2, "dormant":2, "dormancy":3, "dormate":2, "dormer":2, "dormered":2, "dormeuse":2, "dormie":2, "dormient":3, "dormitory":4, "dormouse":2, "dormobile":3, "dormy":2, "dorneck":2, "dornick":2, "dorothee":3, "dorothea":4, "dorothy":3, "dorpat":2, "dorrance":2, "dorrie":2, "dorsad":2, "dorsal":2, "dorsal fin":3, "dorsales":3, "dorsalis":3, "dorsally":3, "dorser":2, "dorset":2, "dorset horn":3, "dorsetshire":3, "dorsey":2, "dorsiferous":4, "dorsiflexion":4, "dorsiflexor":4, "dorsigrade":3, "dorsispinal":4, "dorsiventral":4, "dorsiventrality":6, "dorsiventrally":5, "dorsolateral":5, "dorsolumbar":4, "dorsoventral":4, "dorsoventrally":5, "dorsum":2, "dorter":2, "dortics":4, "dortiness":3, "dortour":2, "dos passos":3, "dose":1, "dosemeter":3, "doss":1, "dosser":2, "dosshouse":2, "dost":1, "dosage":2, "dosing":2, "dossal":2, "dossel":2, "dosser":2, "dosseret":3, "dossil":2, "dossier":3, "dossiers":3, "dostoevski":4, "dostoevsky":4, "dostoyevski":4, "dostoyevsky":4, "dot":1, "dot":1, "dot product":3, "dote":1, "doth":1, "dotage":2, "doted":2, "doter":2, "doting":2, "dotingly":3, "dotingness":3, "dotier":3, "dotiest":3, "dotlike":2, "dotted":2, "dottel":2, "dotter":2, "dotterel":3, "dottie":2, "dotting":2, "dottier":3, "dottiest":3, "dottily":3, "dottiness":3, "dottle":2, "dottrel":2, "dotty":2, "dotty":2, "doty":2, "dou":1, "doubs":1, "doubt":1, "doubtable":3, "doubtably":3, "doubter":2, "doubtful":2, "doubtfully":3, "doubtfulness":3, "doubting thomas":4, "doubtingly":3, "doubtingness":3, "doubtless":2, "doubtlessly":3, "doubtlessness":3, "douc":1, "douce":1, "doucely":2, "douceness":2, "doucepere":2, "douche":1, "douching":2, "doug":1, "dough":1, "dought":1, "doughbelly":3, "doughboy":2, "doughface":2, "doughier":3, "doughiest":3, "doughiness":3, "doughnut":2, "doughtier":3, "doughtiest":3, "doughtily":3, "doughtiness":3, "doughty":2, "doughty":2, "doughy":2, "douglas":2, "douglas fir":3, "douglas scale":3, "douglas-home":2, "douglass":2, "douglasville":3, "doup":1, "douppioni":4, "dour":1, "dourly":2, "dourness":2, "douschka":2, "douse":1, "douser":2, "dousing":2, "douter":2, "douw":1, "doux":1, "douzeper":2, "douzepers":2, "douai":2, "douay":2, "douay bible":4, "douala":3, "double":2, "double agent":4, "double back":3, "double bar":3, "double bass":3, "double bassoon":4, "double bill":3, "double bind":3, "double boiler":4, "double bond":3, "double bridle":4, "double chin":3, "double concerto":5, "double cream":3, "double cross":3, "double dagger":4, "double decomposition":7, "double dutch":3, "double eagle":4, "double entendre":5, "double entry":4, "double exposure":5, "double fault":3, "double feature":4, "double first":3, "double flat":3, "double glazing":4, "double gloucester":4, "double helix":4, "double indemnity":6, "double jeopardy":5, "double negative":5, "double obelisk":5, "double play":3, "double pneumonia":6, "double refraction":5, "double salt":3, "double saucepan":4, "double scull":3, "double sharp":3, "double standard":4, "double star":3, "double tackle":4, "double take":3, "double talk":3, "double time":3, "double up":3, "double-acting":3, "double-action":3, "double-bank":2, "double-barreled":3, "double-barrelled":3, "double-bass":2, "double-blind":2, "double-breasted":3, "double-check":2, "double-chinned":2, "double-clutch":2, "double-crop":2, "double-cross":2, "double-crostic":3, "double-cut":2, "double-date":2, "double-dealer":3, "double-dealing":3, "double-decker":3, "double-declutch":3, "double-dotted":3, "double-edged":2, "double-ended":3, "double-ender":3, "double-faced":2, "double-facedly":4, "double-facedness":4, "double-header":3, "double-helical gear":5, "double-hung":2, "double-jointed":3, "double-lock":2, "double-minded":3, "double-mindedly":4, "double-mindedness":4, "double-o":2, "double-park":2, "double-quick":2, "double-reed":2, "double-ripper":3, "double-runner":3, "double-space":2, "double-stop":2, "double-system sound recording":7, "double-tailed":2, "double-talk":2, "double-team":2, "double-think":2, "double-time":2, "double-tongue":2, "double-tongued":2, "doubler":2, "doubles":2, "doublet":2, "doubleday":3, "doubleganger":4, "doubleheader":4, "doubleness":3, "doublethink":3, "doublethinking":4, "doublethought":3, "doubleton":3, "doubletree":3, "doubling":2, "doubloon":2, "doublure":2, "doubly":2, "douceur":2, "doudated":3, "doudating":3, "doukhobor":3, "doukhobors":3, "doukhobortsy":4, "douma":2, "doumergue":2, "doupion":3, "doura":2, "dourah":2, "dourine":2, "douricouli":4, "douro":2, "douroucouli":4, "douspaced":2, "douspacing":3, "doustopped":2, "doustopping":3, "doutimed":2, "doutiming":3, "doutongued":2, "doutonguing":3, "douzaine":2, "douzime":4, "douzimes":4, "dovap":1, "dove":1, "dove":1, "dovecot":2, "dovecote":2, "dovekey":2, "dovekie":2, "dovelike":2, "dovetail":2, "dovetailed":2, "dovetailer":3, "dovish":2, "dovzhenko":3, "dow":1, "dow":1, "dow-jones average":4, "dowf":1, "down":1, "down":1, "down payment":3, "down under":3, "down's syndrome":3, "down-and-outer":2, "down-easter":2, "down-market":2, "down-payment":2, "downs":1, "downs":1, "downat-the-heel":2, "downbeat":2, "downcast":2, "downcastly":3, "downcastness":3, "downcome":2, "downcomer":3, "downdraft":2, "downer":2, "downfall":2, "downfallen":3, "downfield":2, "downgrade":2, "downgraded":3, "downgrading":3, "downhaul":2, "downhearted":3, "downheartedly":4, "downheartedness":4, "downhill":2, "downing":2, "downing street":3, "downier":3, "downiest":3, "downily":3, "downiness":3, "downless":2, "downlike":2, "downpatrick":3, "downpipe":2, "downpour":2, "downrange":2, "downright":2, "downrightly":3, "downrightness":3, "downspout":2, "downstage":2, "downstair":2, "downstairs":2, "downstate":2, "downstater":3, "downstream":2, "downstroke":2, "downswing":2, "downtake":2, "downthrow":2, "downtime":2, "downtown":2, "downtowner":3, "downtrend":2, "downtrod":2, "downtrodden":3, "downtroddenness":4, "downturn":2, "downward":2, "downward mobility":6, "downwards":2, "downwardly":3, "downwardness":3, "downwash":2, "downwind":2, "downy":2, "downy mildew":4, "dowse":1, "dowser":2, "dowsing":2, "dowsing rod":3, "dowable":3, "dowager":3, "dowagerism":4, "dowden":2, "dowding":2, "dowdier":3, "dowdiest":3, "dowdily":3, "dowdiness":3, "dowdy":2, "dowdyish":3, "dowdyism":3, "dowel":2, "doweled":2, "dowelled":2, "doweling":3, "dowelling":3, "dower":2, "dower house":3, "doweries":3, "dowerless":3, "dowery":3, "dowie":2, "dowitcher":3, "dowily":3, "dowiness":3, "dowland":2, "dowlas":2, "dowly":2, "dowmetal":3, "downey":2, "downingtown":3, "dowry":2, "dowsabel":3, "dowson":2, "dowy":2, "doxastic":3, "doxie":2, "doxies":2, "doxographer":4, "doxology":4, "doxological":5, "doxologically":6, "doxy":2, "doyle":1, "doylestown":2, "doyen":2, "doyenne":2, "doyennes":2, "doyens":2, "doyley":2, "doyly":2, "doz":1, "doze":1, "dozen":2, "dozens":2, "dozenth":2, "dozer":2, "dozing":2, "dozier":3, "doziest":3, "dozily":3, "doziness":3, "dozy":2, "doab":2, "doanna":3, "doable":3, "dobell's solution":5, "doberman pinscher":5, "dobie":2, "dobie":2, "dobl":2, "dobla":2, "doblones":3, "dobln":3, "dobra":2, "dobro":2, "dobrogea":3, "dobruja":3, "dobrynin":3, "dobuan":3, "docent":2, "docentship":3, "docetism":3, "docila":3, "docility":4, "dodecagon":4, "dodecahedral":5, "dodecahedron":5, "dodecanal":4, "dodecanese":4, "dodecanoic acid":7, "dodecaphonic":5, "dodecaphonist":5, "dodecaphonism":5, "dodecaphony":5, "dodecastyle":4, "dodecastylar":5, "dodecastylos":5, "dodecasyllabic":6, "dodecasyllable":6, "dodecagonal":5, "dodecylphenol":5, "dodo":2, "dodoism":3, "dodoma":3, "dodona":3, "dodonaean":4, "dodonean":4, "dodonian":4, "doer":2, "doest":2, "doeth":2, "dogey":2, "dogie":2, "dogy":2, "doha":2, "doing":2, "doings":2, "dojo":2, "dolabrate":3, "dolabriform":4, "dolin":2, "dolia":3, "dolina":3, "doline":3, "dolium":3, "dolius":3, "dolon":2, "dolor":2, "dolour":2, "dolomite":3, "dolomites":3, "dolomitise":4, "dolomitised":4, "dolomitising":5, "dolomitize":4, "dolomitized":4, "dolomitizing":5, "dolomitisation":6, "dolomitization":6, "dolores":3, "dolorimeter":5, "dolorimetry":5, "dolorimetric":5, "dolorimetrically":7, "doloroso":4, "dolus":2, "domagk":2, "domain":2, "domanial":4, "domenikos":4, "domestic":3, "domestic fowl":4, "domestic science":5, "domesticity":5, "domestically":5, "domesticate":4, "domesticated":5, "domesticating":5, "domesticable":5, "domestication":5, "domesticative":5, "domesticator":5, "domesticize":4, "domesticity":5, "domenico":4, "domenico veneziano":9, "domingo":3, "dominion":3, "dominion day":4, "dominions":3, "dominical":4, "dominical letter":6, "dominican":4, "dominican republic":7, "dominicale":5, "dominium":4, "dominee":3, "dominikus":4, "dominus":3, "domitian":3, "domorphous":3, "dona":2, "dona":2, "donalda":3, "donar":2, "donate":2, "donated":3, "donating":3, "donau":2, "donati":3, "donation":3, "donato":3, "donator":3, "donatus":3, "donec":2, "donee":2, "donets":2, "donets basin":4, "donetsk":2, "donor":2, "donorship":3, "donus":2, "donut":2, "dopa":2, "dopant":2, "dopatta":3, "dor":2, "dora":2, "dorab":2, "dorado":3, "dorado":3, "dorati":3, "doraville":3, "dore":2, "doreen":2, "dorene":2, "dorette":2, "dori":2, "dorin":2, "dorine":2, "dorinda":3, "doris":2, "dorian":3, "dorita":3, "doritis":3, "doronicum":4, "dorobo":3, "dorus":2, "dory":2, "doryman":3, "dor":3, "dor":3, "dosimeter":4, "dosimetry":4, "dosimetric":4, "dosimetrician":5, "dotal":2, "dotard":2, "dotardly":3, "dotation":3, "dothan":2, "dover":2, "dover's powder":4, "dowagiac":3, "dowie":2, "dowy":2, "doa":3, "dph":1, "dph":1, "dpm":1, "dpn":1, "dpnh":1, "dpp":1, "dpt":1, "dpw":1, "drab":1, "drabber":2, "drabbest":2, "drabbet":2, "drabbing":2, "drabble":2, "drabbler":2, "drably":2, "drabness":2, "drachm":1, "drachma":2, "drachmal":2, "draconid":3, "dracula":3, "draegerman":3, "draff":1, "draffy":2, "draft":1, "draft dodger":3, "draftsman":2, "draftsmanship":3, "draftable":3, "draftee":2, "drafter":2, "draftier":3, "draftiest":3, "draftily":3, "draftiness":3, "drafty":2, "drag":1, "dragger":2, "dragging":2, "draggingly":3, "draggle":2, "draggletail":3, "draggletailed":3, "draggy":2, "draghound":2, "dragline":2, "dragnet":2, "dragon":2, "dragon tree":3, "dragon's blood":3, "dragon's-head":2, "dragon's-tongue":2, "dragoness":3, "dragonet":3, "dragonfly":3, "dragonhead":3, "dragonish":3, "dragonlike":3, "dragonnade":3, "dragonroot":3, "dragoman":3, "dragomanic":4, "dragrope":2, "dragsaw":2, "dragsawing":3, "dragster":2, "drahthaar":2, "drail":1, "drain":1, "drainage":2, "drainage basin":4, "drainageway":3, "drainable":3, "drainboard":2, "drainer":2, "drainfield":2, "draining board":3, "drainless":2, "drainpipe":2, "drainpipes":2, "drainspout":2, "drainway":2, "drake":1, "drake":1, "drake passage":3, "drakefly":2, "dram":1, "dramamine":3, "dramatise":3, "dramatised":3, "dramatist":3, "dramatiser":4, "dramatising":4, "dramatize":3, "dramatized":3, "dramatizable":5, "dramatizer":4, "dramatizing":4, "dramatisation":5, "dramatization":5, "dramaturge":3, "dramaturgic":4, "dramaturgist":4, "dramaturgical":5, "dramaturgically":6, "dramaturgy":4, "drambuie":3, "drammach":2, "drammen":2, "dramming":2, "drammock":2, "dramshop":2, "drank":1, "drances":2, "drancy":2, "drape":1, "drapes":1, "drapeable":3, "drapable":3, "draper":2, "draping":2, "drastic":2, "drastically":4, "drat":1, "dratted":2, "dratting":2, "draught":1, "draughtsboard":2, "draughtsman":2, "draughtboard":2, "draughter":2, "draughtier":3, "draughtiest":3, "draughtily":3, "draughtiness":3, "draughty":2, "drave":1, "draw":1, "drawl":1, "drawler":2, "drawlingly":3, "drawlingness":3, "drawly":2, "drawn":1, "drawn butter":3, "drawability":5, "drawable":3, "drawback":2, "drawbar":2, "drawbench":2, "drawbore":2, "drawbored":2, "drawboring":3, "drawboy":2, "drawbridge":2, "drawee":2, "drawer":2, "drawing":2, "drawing account":4, "drawing board":3, "drawing card":3, "drawing pin":3, "drawing room":3, "drawing-in":2, "drawing-room":2, "drawings-in":2, "drawknife":2, "drawplate":2, "drawshave":2, "drawstring":2, "drawtube":2, "dray":1, "drayage":2, "drayhorse":2, "draying":2, "drayman":2, "drayton":2, "dracaena":3, "draco":2, "draco lizard":4, "dracone":2, "draconic":3, "draconic":3, "draconically":5, "draconically":5, "draconis":3, "draconian":4, "draconianism":5, "drag":2, "drago":2, "dragoon":2, "dragoonage":3, "dragoman":3, "draguignan":3, "drage":3, "drakensberg":3, "drama":2, "dramatic":3, "dramatic irony":6, "dramatics":3, "dramatically":5, "dramamine":3, "dramatis personae":6, "draper":2, "draperied":3, "draperies":3, "drapery":3, "drava":2, "drave":2, "dravidic":3, "dravidian":4, "dravite":2, "dravosburg":3, "dread":1, "dreadable":3, "dreadful":2, "dreadfully":3, "dreadfulness":3, "dreadnaught":2, "dreadness":2, "dreadnought":2, "dream":1, "dreams":1, "dreamt":1, "dreamboat":2, "dreamer":2, "dreamful":2, "dreamfully":3, "dreamfulness":3, "dreaming":2, "dreamingly":3, "dreamier":3, "dreamiest":3, "dreamily":3, "dreaminess":3, "dreamland":2, "dreamless":2, "dreamlessly":3, "dreamlessness":3, "dreamlike":2, "dreamtime":2, "dreamy":2, "drear":1, "drearies":2, "drearier":3, "dreariest":3, "drearily":3, "dreariness":3, "drearisome":3, "dreary":2, "drebbel":2, "dreck":1, "dredge":1, "dredger":2, "dredging":2, "dree":1, "dreeing":2, "dreg":1, "dregs":1, "dreggy":2, "dreich":1, "dreigh":1, "dreibund":2, "dreidel":2, "dreikanter":3, "dreiser":2, "drek":1, "drench":1, "drencher":2, "drenchingly":3, "drente":2, "drenthe":2, "dress":1, "dress circle":3, "dress parade":3, "dress rehearsal":4, "dress uniform":4, "dress-coated":2, "dresser":2, "dressing":2, "dressing gown":3, "dressing room":3, "dressing station":4, "dressing table":4, "dressing-down":2, "dressings":2, "dressier":3, "dressiest":3, "dressily":3, "dressiness":3, "dressler":2, "dressmaker":3, "dressmaking":3, "dressy":2, "drest":1, "dresden":2, "dresden china":4, "dressage":2, "dressoir":2, "dressoirs":2, "drew":1, "drew":1, "dreyfus":2, "dreyfusard":3, "drib":1, "dribble":2, "dribbler":2, "dribblet":2, "driblet":2, "driech":1, "dried":1, "driegh":1, "drift":1, "drift anchor":3, "drift transistor":4, "driftage":2, "driftbolt":2, "drifter":2, "driftfish":2, "driftfishes":3, "driftingly":3, "driftier":3, "driftiest":3, "driftless":2, "driftlessness":3, "driftpin":2, "driftwood":2, "drifty":2, "drill":1, "drillable":3, "drillbit":2, "driller":2, "drilling":2, "drillmaster":3, "drillstock":2, "drin":1, "drink":1, "drinkability":5, "drinkable":3, "drinkableness":4, "drinkably":3, "drinker":2, "drinking":2, "drinking fountain":4, "drinking water":4, "drinking-up time":3, "drinkwater":3, "drip":1, "dripolator":4, "drippage":2, "dripping":2, "dripping pan":3, "drippier":3, "drippiest":3, "drippy":2, "dripstone":2, "drive":1, "driveable":3, "driveway":2, "drivable":3, "drivel":2, "driveled":2, "drivelled":2, "driveler":3, "driveling":3, "drivelingly":4, "driveller":3, "drivelling":3, "drivellingly":4, "driven":2, "driver":2, "driver ant":3, "driverless":3, "driving":2, "driving licence":4, "driving wheel":3, "drivingly":3, "drizzle":2, "drizzly":2, "drier":2, "driest":2, "drily":2, "drina":2, "drogue":1, "drogheda":3, "droit":1, "droit du seigneur":4, "droitural":3, "droll":1, "drolleries":3, "drollery":3, "drollness":2, "drolly":2, "dromedaries":4, "dromedary":4, "dromoi":2, "dromon":2, "dromond":2, "dromos":2, "drone":1, "drongo":2, "droning":2, "droningly":3, "dronish":2, "droob":1, "drool":1, "droolier":3, "drooliest":3, "drooly":2, "droop":1, "droopingly":3, "droopier":3, "droopiest":3, "droopiness":3, "droopy":2, "drop":1, "drop away":3, "drop cannon":3, "drop curtain":3, "drop hammer":3, "drop shipment":3, "drop-kicker":2, "drops":1, "dropt":1, "drophead coup":4, "droplet":2, "droplight":2, "droplike":2, "dropline":2, "dropout":2, "droppage":2, "dropper":2, "dropping":2, "droppings":2, "dropsied":2, "dropsical":3, "dropsically":4, "dropsicalness":4, "dropsonde":2, "dropsy":2, "dropwort":2, "droshky":2, "dross":1, "drossier":3, "drossiest":3, "drossiness":3, "drossy":2, "drosky":2, "drought":1, "droughtier":3, "droughtiest":3, "droughtiness":3, "droughty":2, "drouk":1, "drouthier":3, "drouthiest":3, "drouthiness":3, "drouthy":2, "drove":1, "drover":2, "droving":2, "drown":1, "drowner":2, "drowse":1, "drowsing":2, "drowsy":2, "drowsier":3, "drowsiest":3, "drowsihead":3, "drowsily":3, "drowsiness":3, "drowsy":2, "drogher":2, "drosometer":4, "drosophila":4, "droste-hlshoff":4, "drover":2, "dru":1, "drub":1, "drubber":2, "drubbing":2, "drudge":1, "drudger":2, "drudgery":3, "drudging":2, "drudgingly":3, "druffen":2, "drug":1, "drug":1, "drug addict":3, "drugget":2, "drugging":2, "druggist":2, "drugless":2, "drugstore":2, "drum":1, "drum major":3, "drum majorette":4, "drumbeat":2, "drumbeater":3, "drumble":2, "drumfire":2, "drumfish":2, "drumfishes":3, "drumhead":2, "drumhead court-martial":4, "drumlin":2, "drumlier":3, "drumliest":3, "drumly":2, "drummer":2, "drumming":2, "drummock":2, "drummond":2, "drumstick":2, "drunk":1, "drunkard":2, "drunken":2, "drunkenly":3, "drunkenness":3, "drunkometer":4, "drupe":1, "drupelet":2, "druse":1, "druse":1, "druthers":2, "druze":1, "drucilla":3, "druella":3, "druid":2, "druid":2, "druidess":3, "druidic":3, "druidism":3, "druidical":4, "druidology":5, "drupaceous":3, "drupel":2, "drury lane":3, "drusean":3, "drusilla":3, "drusian":3, "drusus":2, "dry":1, "dry battery":4, "dry distillation":5, "dry farming":3, "dry martini":4, "dry measure":3, "dry tortugas":4, "dry-bulb thermometer":5, "dry-footing":2, "dryer":1, "drysdale":2, "dryad":2, "dryads":2, "dryadic":3, "dryas":2, "dryas":2, "dryasdust":3, "dryable":3, "dryades":3, "drybrush":2, "dryden":2, "drydenian":4, "dryer":2, "dryfarmer":3, "drygalski":3, "drying":2, "drying oil":3, "dryly":2, "dryness":2, "dryope":3, "dryopithecine":5, "dryopithecus":5, "drypoint":2, "drysalter":3, "drysalteries":4, "drysaltery":4, "dsc":1, "dsc":1, "dsm":1, "dso":1, "dsp":1, "dst":1, "dt's":1, "dtl":1, "du barry":3, "du bellay":3, "du guesclin":3, "du maurier":4, "duane":1, "dub":1, "dubbeltje":3, "dubbin":2, "dubbing":2, "dubbo":2, "dubcek":2, "dublin":2, "dublin bay prawn":4, "dubliners":3, "duchess":2, "duchesslike":3, "duchies":2, "duchy":2, "duck":1, "duck-billed platypus":4, "duck-legged":2, "ducks":1, "duckbill":2, "duckboard":2, "ducker":2, "duckie":2, "duckies":2, "ducking stool":3, "duckier":3, "duckiest":3, "duckling":2, "duckpin":2, "ducktail":2, "duckweed":2, "duckwheat":2, "ducky":2, "duct":1, "ductless":2, "ductless gland":3, "ductwork":2, "ducat":2, "ducaton":3, "ducatoon":3, "duccio di buoninsegna":7, "ductile":2, "ductilely":3, "ductileness":3, "ductility":4, "ductor":2, "ductule":2, "dud":1, "dude":1, "dudgeon":2, "duds":1, "duddie":2, "duddy":2, "dudish":2, "dudishly":3, "dudley":2, "due":1, "dues":1, "dueness":2, "duero":2, "duea":3, "duff":1, "duff":1, "duffer":2, "duffel":2, "duffel bag":3, "duffel coat":3, "duffer":2, "duffle":2, "duffy":2, "dug":1, "dugout":2, "duisburg":2, "duisburg-hamborn":3, "duit":1, "duiker":2, "duikerbok":3, "duke":1, "duke":1, "dukes":1, "dukedom":2, "dukkha":2, "dull":1, "dullsville":2, "dullard":2, "dullish":2, "dullness":2, "dulse":1, "dulce":2, "dulcet":2, "dulcetly":3, "dulcetness":3, "dulcie":2, "dulcinea":4, "dulcinea":4, "dulciana":4, "dulcibelle":3, "dulcified":3, "dulcification":5, "dulcify":3, "dulcifying":4, "dulcimer":3, "dulcitone":3, "dulcy":2, "dulles":2, "dully":2, "dulness":2, "dumb":1, "dumb ague":3, "dumbbell":2, "dumbfound":2, "dumbfounder":3, "dumbfounderment":4, "dumbhead":2, "dumbly":2, "dumbness":2, "dumbstricken":3, "dumbstruck":2, "dumbwaiter":3, "dummkopf":2, "dump":1, "dumps":1, "dumpcart":2, "dumper":2, "dumper-truck":2, "dumpish":2, "dumpishly":3, "dumpishness":3, "dumpier":3, "dumpiest":3, "dumpily":3, "dumpiness":3, "dumpling":2, "dumpy":2, "dumpy level":4, "dumbarton":3, "dumbarton oaks":4, "dumbartonshire":4, "dumdum":2, "dumfound":2, "dumfounder":3, "dumfounderment":4, "dumfries":2, "dumfriesshire":3, "dumka":2, "dummied":2, "dummy":2, "dummy variable":6, "dummying":3, "dumyat":2, "dun":1, "dun laoghaire":3, "dunce":1, "dunch":1, "duncish":2, "duncishly":3, "dune":1, "dung":1, "dung beetle":3, "dunghill":2, "dungy":2, "dunk":1, "dunker":2, "dunker":2, "dunn":1, "dunne":1, "dunnite":2, "duns scotus":3, "dunsmuir":2, "dunt":1, "dunbar":2, "dunbarton":3, "duncan":2, "duncan i":3, "duncan phyfe":3, "duncanville":3, "dunciad":3, "duncical":3, "dundalk":2, "dundavoe":3, "dundee":2, "dundee cake":3, "dunder":2, "dunderhead":3, "dunderheaded":4, "dunderheadedness":5, "dunderpate":3, "dunellen":3, "dunedin":3, "dunfermline":3, "dungas":2, "dungaree":3, "dungeon":2, "dungeness":3, "duniewassal":4, "dunite":2, "dunkard":2, "dunkerque":2, "dunkirk":2, "dunlin":2, "dunlop":2, "dunmore":2, "dunnage":2, "dunnaged":2, "dunnaging":3, "dunnakin":3, "dunning":2, "dunnite":2, "dunno":2, "dunnock":2, "dunny":2, "dunsany":3, "dunsinane":3, "dunstan":2, "dunstable":3, "dunstaple":3, "dunthorne":2, "duntroon":2, "duomo":2, "dup":1, "dupe":1, "dupability":5, "dupable":3, "duper":2, "duperies":3, "dupery":3, "duping":2, "dupping":2, "duppy":2, "dur":1, "dure":1, "durkheim":2, "durst":1, "durance":2, "durable press":4, "durative":3, "durban":2, "durbar":2, "durga":2, "durgah":2, "durham":2, "during":2, "durmast":2, "durr":2, "durra":2, "durrell":2, "durrie":2, "durrs":3, "duryea":2, "durzi":2, "dusk":1, "duskish":2, "duskier":3, "duskiest":3, "duskily":3, "duskiness":3, "dusky":2, "dust":1, "dust cover":3, "dust devil":3, "dust jacket":3, "dust-up":1, "dustbin":2, "dustcart":2, "dustcloth":2, "duster":2, "duster coat":3, "dustheap":2, "dusting":2, "dusting-powder":3, "dustier":3, "dustiest":3, "dustily":3, "dustiness":3, "dustless":2, "dustman":2, "dustpan":2, "dustproof":2, "dustsheet":2, "duststorm":2, "dustup":2, "dusty":2, "dusty miller":4, "dustin":2, "dutch":1, "dutch":1, "dutch auction":3, "dutch courage":3, "dutch east indies":4, "dutch elm disease":4, "dutch guiana":4, "dutch metal":3, "dutch new guinea":4, "dutch oven":3, "dutch reformed church":4, "dutch uncle":3, "dutch west indies":4, "dutchman":2, "dutchman's-breeches":3, "dutchman's-pipe":2, "dux":1, "duyker":2, "duad":2, "dual":2, "dual alliance":5, "dual carriageway":5, "dual monarchy":5, "dual-purpose":3, "dualism":3, "dualist":3, "dualistic":4, "dualistically":6, "duality":4, "dually":3, "duarchy":3, "duala":3, "dubai":2, "dubinsky":3, "dubiety":4, "dubiosity":5, "dubious":3, "dubiously":4, "dubiousness":4, "dubitable":4, "dubitably":4, "dubitation":4, "dubitative":4, "dubitatively":5, "dubois":2, "dubonnet":3, "dubonnet":3, "dubrovnik":3, "dubuffet":3, "dubuque":2, "ducal":2, "ducally":3, "ducasse":2, "duce":2, "duce":2, "duces":2, "duchamp":2, "duchamp-villon":3, "duchesse":2, "duchesses":2, "ducommun":3, "dudeen":2, "dudelsack":3, "dudevant":3, "duel":2, "dueled":2, "duelled":2, "dueler":3, "dueling":3, "duelist":3, "duelistic":4, "dueller":3, "duelling":3, "duellist":3, "duellistic":4, "duello":3, "duenna":3, "duet":2, "duette":2, "duettist":3, "duecentist":4, "duecento":4, "dufay":2, "dufy":2, "dugento":3, "dugong":2, "duhamel":3, "duing":2, "duka":2, "dukas":2, "dukhobor":3, "dukhobors":3, "dukhobortsy":4, "dulaney":3, "dulia":3, "dulocracy":4, "dulotic":3, "dulosis":3, "duluth":2, "duly":2, "duma":2, "dumas":2, "dumaguete":4, "dumont":2, "dumortierite":5, "dumortierite":5, "dumuzi":3, "dun":2, "duna":2, "dunaj":2, "dunant":2, "dunite":2, "duniwassal":4, "dunois":2, "dunoon":2, "duo":2, "duopoly":4, "duopsony":4, "duos":2, "duodecagon":5, "duodecastyle":5, "duodecimal":5, "duodecimality":7, "duodecimally":6, "duodecimo":5, "duodenary":5, "duodecillion":5, "duodecillionth":5, "duodena":4, "duodenal":4, "duodenary":5, "duodenitis":5, "duodenojejunostomy":9, "duodenum":4, "duodiode":4, "duodiodepentode":6, "duolog":3, "duologue":3, "duotone":3, "duotriode":4, "duotype":3, "duparc":2, "dupatta":3, "dupion":3, "dupioni":4, "duplation":3, "duple":2, "duple time":3, "dupleix":2, "duplessis-mornay":4, "duplet":2, "duplex":2, "duplex apartment":5, "duplex house":3, "duplexer":3, "duplexity":4, "duplicity":4, "duplicate":3, "duplicate bridge":4, "duplicated":4, "duplicating":4, "duplicability":6, "duplicable":4, "duplication":4, "duplicative":4, "duplicator":4, "duplicature":4, "duplicatus":4, "dupo":2, "dupont":2, "dupont":2, "dupondii":4, "dupondius":4, "dupr":2, "dupr":3, "duque de caxias":6, "duquesne":2, "dura":2, "dura mater":4, "durain":2, "dural":2, "duralumin":4, "duralumin":4, "durance":2, "durance":2, "durand":2, "durant":2, "durango":3, "duranty":3, "durazzo":3, "durability":5, "durable":3, "durable goods":4, "durableness":4, "durably":3, "duramen":3, "duration":3, "durational":4, "durative":3, "durene":2, "duress":2, "duressor":3, "durex":2, "durian":3, "durion":3, "duro":2, "duroc":2, "duroc-jersey":3, "durum":2, "durum wheat":3, "duse":2, "dusehra":3, "dushanbe":3, "dushehra":3, "dustoor":2, "dustour":2, "duteous":3, "duteously":4, "duteousness":4, "dutiability":5, "dutiable":4, "dutiful":3, "dutifully":4, "duty":2, "duty officer":5, "duty-bound":2, "duty-free":2, "duty-free shop":3, "duumvir":3, "duumvirs":3, "duumvirate":4, "duumviri":4, "duvalier":3, "duvet":2, "duveneck":3, "duvetine":3, "duvetyn":3, "duvetyne":3, "duvida":3, "dvaita":2, "dvandva":2, "dvina":2, "dvina bay":3, "dvina gulf":3, "dvm":1, "dvorak":2, "dvork":3, "dwale":1, "dwalm":1, "dwarf":1, "dwarf chestnut":3, "dwarf cornel":3, "dwarf mallow":3, "dwarfish":2, "dwarfishly":3, "dwarfishness":3, "dwarfism":2, "dwayne":1, "dwell":1, "dweller":2, "dwelling":2, "dwelt":1, "dwight":1, "dwine":1, "dwindle":2, "dwining":2, "dwt":1, "dyaus-pitar":2, "dybbuk":2, "dybbuks":2, "dybbukim":3, "dye":1, "dyeable":3, "dyeing":2, "dyeline":2, "dyestuff":2, "dyeweed":2, "dyewood":2, "dyfed":2, "dyke":1, "dyking":2, "dylan":2, "dyne":1, "dynast":2, "dynasty":3, "dyspnea":3, "dyspneal":3, "dyspneic":3, "dyspnoea":3, "dyspnoeal":3, "dyspnoeic":3, "dyspnoic":3, "dysadaptation":5, "dysanagnosia":5, "dysanalyte":4, "dysaptation":4, "dysarthric":3, "dysarthria":4, "dysacousma":4, "dysacousia":4, "dysbarism":3, "dyscrasic":3, "dyscrasia":3, "dyscrasia":4, "dyscrasial":4, "dyscrinism":3, "dysenteric":4, "dysentery":4, "dysergia":3, "dysesthetic":4, "dysesthesia":4, "dysfunction":3, "dysgenic":3, "dysgenics":3, "dysgnosia":3, "dysgonic":3, "dysgraphia":4, "dyskinetic":4, "dyskinesia":4, "dyslalia":4, "dyslexia":4, "dyslogia":3, "dyslogistic":4, "dyslogistically":6, "dysmenorrhea":5, "dysmenorrheal":5, "dysmenorrhoea":5, "dysmenorrhoeal":5, "dysmetria":4, "dysmnesia":3, "dyspareunia":5, "dyspathetic":4, "dyspathy":3, "dyspepsia":3, "dyspepsia":4, "dyspepsy":3, "dyspeptic":3, "dyspeptical":4, "dyspeptically":5, "dysphagic":3, "dysphagia":3, "dysphagia":4, "dysphasia":3, "dysphasic":3, "dysphasia":4, "dysphemism":3, "dysphemia":4, "dysphonic":3, "dysphoric":3, "dysphonia":4, "dysphoria":4, "dysplastic":3, "dysplasia":3, "dysplasia":4, "dyspraxia":4, "dysprosium":4, "dysrhythmia":4, "dysteleologist":6, "dysteleology":6, "dysteleological":7, "dysthymic":3, "dysthymia":4, "dystonic":3, "dystopia":4, "dystonia":4, "dystopia":4, "dystrophic":3, "dystrophia":4, "dystrophy":3, "dysuric":3, "dysuria":4, "dyushambe":3, "dyad":2, "dyadic":3, "dyak":2, "dyane":2, "dyana":3, "dyarchic":3, "dyarchical":4, "dyarchy":3, "dyable":3, "dyer":2, "dyer":2, "dyer's rocket":4, "dyer's-broom":2, "dyer's-greenweed":3, "dyer's-weed":2, "dyersville":3, "dying":2, "dymas":2, "dynameter":4, "dynamic":3, "dynamic psychology":7, "dynamics":3, "dynamical":4, "dynamically":5, "dynast":2, "dynastic":3, "dynastically":5, "dynasty":3, "dynamism":3, "dynamist":3, "dynamistic":4, "dynamite":3, "dynamited":4, "dynamiter":4, "dynamitic":4, "dynamiting":4, "dynamitist":4, "dynamitically":6, "dynamo":3, "dynamogenous":5, "dynamogenously":6, "dynamometer":5, "dynamometry":5, "dynamoelectric":6, "dynamoelectrical":7, "dynamogenesis":6, "dynamogenic":5, "dynamometric":5, "dynamotor":4, "dynatron":3, "dynatron oscillator":7, "dynel":2, "dynode":2, "dyophysite":4, "dyophysitic":5, "dyothelite":4, "dyothelitism":5, "dyostyle":3, "dytiscid":3, "dyula":3, "dzaudzhikau":3, "dzerzhinsk":2, "dzhambul":2, "dzhugashvili":4, "dziggetai":3, "dzo":1, "dzongka":2, "dzungaria":4, "dzugashvili":4, "dzyubin":2, "dmaso":4, "dbutant":4, "dbutante":4, "dbouch":5, "dbot":6, "dbris":3, "dbut":3, "dclass":5, "dclasse":5, "dcolletage":4, "dcollet":5, "dcor":3, "dcoupage":4, "dgag":5, "djeuner":4, "dmarche":3, "dmenti":4, "dmod":5, "dpartement":5, "dsire":5, "dtente":3, "dtenu":4, "dtenue":4, "daz":3, "dblin":3, "dsseldorf":4, "dna":3, "dnaburg":4, "drer":3, "dsenwind":4, "daz de bivar":5, "dbridement":3, "dbris":2, "dclass":3, "dcollet":3, "dcolletage":3, "dcor":2, "dgag":3, "dj":2, "dli":2, "dlike":2, "dmarche":2, "dmod":3, "dnaburg":3, "dnitz":2, "dnouement":3, "dreann":2, "dren":2, "drenmatt":3, "drer":2, "dseldorf":3, "dtente":2, "e layer":3, "e region":3, "e'en":1, "e'er":1, "each":1, "each other":3, "eacso":1, "eads":1, "eadwine":2, "eak":1, "ealderman":3, "ealdorman":3, "eam":1, "eanling":2, "ear":1, "ear trumpet":3, "ear-minded":2, "ear-piercing":2, "ear-splitting":2, "eared":1, "earl":1, "earl":1, "earl marshal":3, "earldom":2, "earlship":2, "earn":1, "earned income":3, "earner":2, "earning":2, "earnings":2, "earnings related supplement":8, "earom":1, "earp":1, "earth":1, "earth closet":3, "earth inductor compass":6, "earth mother":3, "earth pillar":3, "earth science":3, "earth-goddess":2, "earthborn":2, "earthbound":2, "earthen":2, "earthenware":3, "earthier":3, "earthiest":3, "earthily":3, "earthiness":3, "earthlight":2, "earthling":2, "earthlier":3, "earthliest":3, "earthliness":3, "earthly":2, "earthman":2, "earthmover":3, "earthnut":2, "earthpea":2, "earthquake":2, "earthquaked":2, "earthquaken":3, "earthquaking":3, "earthrise":2, "earthshaker":3, "earthshaker":3, "earthshaking":3, "earthshine":2, "earthstar":2, "earthward":2, "earthwards":2, "earthwork":2, "earthworm":2, "earthy":2, "earache":2, "earbash":2, "earbob":2, "eardrop":2, "eardrops":2, "eardrum":2, "earflap":2, "earful":2, "earhart":2, "earing":2, "earlap":2, "earleen":2, "earlene":2, "earless":2, "earless seal":3, "earlike":2, "earline":2, "earlier":3, "earliest":3, "earliness":3, "early":2, "early":2, "early bird":3, "early bird":3, "early christian":4, "early closing":4, "early english":4, "early purple orchid":6, "early renaissance":5, "early warning":4, "earmark":2, "earmindedness":4, "earmuff":2, "earnest":2, "earnestly":3, "earnestness":3, "earphone":2, "earpiece":2, "earplug":2, "earreach":2, "earring":2, "earringed":2, "earshot":2, "earsplitting":3, "eartha":2, "earwax":2, "earwig":2, "earwigged":2, "earwigging":3, "earwiggy":3, "earwitness":3, "ease":1, "easeful":2, "easefully":3, "easefulness":3, "easement":2, "east":1, "east":1, "east africa":4, "east anglia":4, "east bengal":3, "east berlin":3, "east china sea":4, "east flanders":3, "east germanic":4, "east germany":4, "east indian":4, "east indies":3, "east india company":7, "east kilbride":3, "east london":3, "east lothian":4, "east pakistan":4, "east prussia":3, "east riding":3, "east sussex":3, "east-northeast":2, "east-northeastward":3, "east-northeastwardly":4, "east-sider":2, "east-southeast":2, "east-southeastward":3, "east-southeastwardly":4, "eastaurora":3, "eastbound":2, "eastbourne":2, "easter":2, "easter egg":3, "easter island":4, "easter lily":4, "easter-ledges":3, "eastern":2, "eastern church":3, "eastern ghats":3, "eastern hemisphere":5, "eastern orthodox church":6, "eastern rite":3, "eastern roman empire":6, "eastern standard time":5, "eastern townships":4, "easterner":3, "easterner":3, "easternize":3, "easternized":3, "easternizing":4, "easternmost":3, "easterling":3, "easterliness":4, "easterly":3, "eastertide":3, "easting":2, "eastlake":2, "eastland":2, "eastleigh":2, "eastman":2, "eastmost":2, "eastness":2, "eastside":2, "eastward":2, "eastwards":2, "eastwardly":3, "easer":2, "easies":2, "easing":2, "easier":3, "easiest":3, "easily":3, "easiness":3, "easley":2, "easton":2, "easy":2, "easy chair":3, "easy game":3, "easy mark":3, "easy-going":3, "easygoing":4, "easygoingness":5, "easylike":3, "eat":1, "eath":1, "eats":1, "eatage":2, "eatable":3, "eatables":3, "eaten":2, "eater":2, "eateries":3, "eatery":3, "eating":2, "eau":1, "eau de cologne":4, "eau de javelle":4, "eave":1, "eaves":1, "eavesdrip":2, "eavesdrop":2, "eavesdropped":2, "eavesdropper":3, "eavesdropping":3, "eadie":2, "eager":2, "eager beaver":4, "eagerly":3, "eagerness":3, "eagle":2, "eagle owl":3, "eagle ray":3, "eagle-eyed":2, "eagle-hawk":2, "eaglet":2, "eaglestone":3, "eaglewood":3, "eagre":2, "eakins":2, "ealing":2, "eanes":2, "easel":2, "easeled":2, "eaton":2, "eatonton":3, "ebb":1, "ebcdic":1, "ebensburg":3, "eberhard":3, "ebenezer":4, "eblis":2, "ebner":2, "ebon":2, "ebonies":3, "ebonise":3, "ebonised":3, "ebonist":3, "ebonising":4, "ebonite":3, "ebonize":3, "ebonized":3, "ebonizing":4, "ebony":3, "eboracum":4, "ebullition":4, "eccl":1, "eccl":1, "eccles":1, "eccles":1, "ecclus":1, "ecg":1, "eche":1, "echo virus":3, "echt":1, "echelette":3, "echelon":3, "echelonment":4, "echeveria":5, "eching":2, "echinate":3, "echinated":4, "echinoidea":5, "echo":2, "echo":2, "echo chamber":4, "echo sounder":4, "echoed":2, "echoes":2, "echoer":3, "echogram":3, "echograph":3, "echoic":3, "echoing":3, "echoism":3, "echolalic":4, "echolalia":5, "echoless":3, "echolocation":5, "echopractic":4, "echopraxis":4, "echopraxia":5, "echovirus":4, "eck":1, "eckardt":2, "eckart":2, "eckermann":3, "eckhardt":2, "eckhart":2, "ecol":1, "econ":1, "ecowas":1, "ecsc":1, "ect":1, "ecua":1, "ecbatana":4, "ecbolic":3, "ecce homo":4, "eccentric":3, "eccentricity":5, "eccentrical":4, "eccentrically":5, "eccentricity":5, "ecchymotic":4, "ecchymosis":4, "eccles":2, "eccles cake":3, "ecclesia":4, "ecclesiae":4, "ecclesiarch":4, "ecclesiastes":5, "ecclesiastic":5, "ecclesiastical":6, "ecclesiastical commissioners":10, "ecclesiastically":7, "ecclesiasticism":6, "ecclesiasticus":6, "ecclesiolater":6, "ecclesiolatry":6, "ecclesiologist":6, "ecclesiology":6, "ecclesiologic":6, "ecclesiologically":8, "eccrine":2, "eccrinology":5, "eccrinology":5, "ecdemic":3, "ecdysial":4, "ecdysiast":4, "ecdysis":3, "ecdysone":3, "echard":2, "eclampsia":4, "eclamptic":3, "eclectic":3, "eclectically":5, "eclecticism":4, "eclecticist":4, "eclogue":2, "eclogues":2, "eclogite":3, "ecological":5, "ecologically":6, "ecospecies":4, "ecospecific":5, "ecospecifically":7, "ecosphere":3, "ecosystem":4, "ecotone":3, "ecotonal":4, "ecotype":3, "ecotypic":4, "ecotypically":6, "ecphonesis":4, "ecru":2, "ecstatic":3, "ecstatics":3, "ecstatically":5, "ecstasie":3, "ecstasy":3, "ectad":2, "ectal":2, "ectally":3, "ectatic":3, "ectasis":3, "ectene":3, "ecthlipsis":3, "ecthymatous":4, "ecthyma":3, "ectogenous":4, "ectopic":3, "ectopic pregnancy":6, "ectosteal":4, "ectosteally":5, "ectostosis":4, "ectoblast":3, "ectoblastic":4, "ectocornea":5, "ectocranial":5, "ectocrine":3, "ectoderm":3, "ectodermal":4, "ectodermic":4, "ectodermoidal":5, "ectoenzyme":4, "ectogenesis":5, "ectogenic":4, "ectogenetic":5, "ectomere":3, "ectomeric":4, "ectomorph":3, "ectomorphy":4, "ectomorphic":4, "ectoparasite":5, "ectoparasitic":6, "ectophyte":3, "ectophytic":4, "ectopia":4, "ectoplasm":3, "ectoplasmatic":5, "ectoplasmic":4, "ectoproct":3, "ectosarc":3, "ectosarcous":4, "ectotrophic":4, "ectozoa":4, "ectozoan":4, "ectozoic":4, "ectozoon":4, "ectrodactylism":5, "ectrodactylia":6, "ectrodactylous":5, "ectromelic":4, "ectromelia":5, "ectropion":4, "ectropionize":5, "ectropionized":5, "ectropionizing":6, "ectropionization":7, "ectropium":4, "ectype":2, "ectypal":3, "ecuador":3, "ecuadorean":5, "ecuadorian":5, "ecumenic":4, "ecumenics":4, "ecumenical":5, "ecumenicalism":6, "ecumenically":6, "ecumenicism":5, "ecumenicist":5, "ecumenicity":6, "ecumenism":4, "ecumenist":4, "eczematous":4, "eczema":3, "eczematoid":4, "edc":1, "edge":1, "edgebone":2, "edgefield":2, "edgehill":2, "edgeless":2, "edgeways":2, "edgewater":3, "edgewise":2, "edgewood":2, "edgeworth":2, "edger":2, "edgerton":3, "edging":2, "edgingly":3, "edgier":3, "edgiest":3, "edgily":3, "edginess":3, "edgy":2, "edh":1, "edit":1, "edp":1, "edp":1, "edta":1, "educ":1, "education":2, "eda":2, "edaphon":3, "edcouch":2, "edda":2, "eddas":2, "eddaic":3, "eddic":2, "eddie":2, "eddied":2, "eddington":3, "eddo":2, "eddy":2, "eddy":2, "eddy current":4, "eddying":3, "eddystone":3, "eddystone rocks":4, "edeline":3, "edgar":2, "edgar atheling":5, "edgard":2, "edinburg":3, "edinburgh":3, "edit":2, "edibility":5, "edible":3, "edibles":3, "edibleness":4, "edicule":3, "edifice":3, "edified":3, "edification":5, "edificial":4, "edifier":4, "edify":3, "edifying":4, "edifyingly":5, "edifyingness":5, "edison":3, "editor":3, "editor in chief":5, "editorship":4, "editorial":5, "editorialise":6, "editorialist":6, "editorialize":6, "editorialized":6, "editorializer":7, "editorializing":7, "editorialization":8, "editorially":6, "editress":3, "edley":2, "edman":2, "edmond":2, "edmond-nicolas":4, "edmonde":2, "edmonds":2, "edmonton":3, "edmund":2, "edmund i":3, "edmund ii":3, "edmunds":2, "edmunda":3, "edna":2, "ednas":2, "ednie":2, "edo":2, "edsel":2, "eduard":3, "educate":3, "educatability":7, "educatable":5, "educated":4, "educatee":4, "educating":4, "educability":6, "educable":4, "education":4, "educational":5, "educationalist":6, "educationally":6, "educationist":5, "educative":4, "educator":4, "educatory":5, "edvard":2, "edward":2, "edward i":3, "edward ii":3, "edward iii":3, "edward iv":3, "edward the confessor":6, "edward v":3, "edward vi":3, "edward vii":3, "edward viii":3, "edwards":2, "edwardsville":3, "edwardian":4, "edwardianism":5, "edwardsian":4, "edwardsianism":5, "edwin":2, "edwina":3, "eec":1, "eeg":1, "eel":1, "eelback":2, "eelblenny":3, "eelgrass":2, "eelier":3, "eeliest":3, "eellike":2, "eelpout":2, "eelworm":2, "eely":2, "eerotema":4, "eerie":2, "eerier":3, "eeriest":3, "eerily":3, "eeriness":3, "eery":2, "eff":1, "eft":1, "efta":1, "eftsoon":2, "eftsoons":2, "efface":2, "effaced":2, "effaceable":4, "effacement":3, "effacer":3, "effacing":3, "effable":3, "effect":2, "effects":2, "effecter":3, "effectible":4, "effectless":3, "effecter":3, "effective":3, "effectively":4, "effectiveness":4, "effectivity":5, "effector":3, "effectual":4, "effectuality":6, "effectually":5, "effectualness":5, "effectuate":4, "effectuated":5, "effectuating":5, "effectuation":5, "effeminate":4, "effeminately":5, "effeminateness":5, "effeminated":5, "effeminating":5, "effeminacy":5, "effemination":5, "effeminise":4, "effeminised":4, "effeminising":5, "effeminize":4, "effeminized":4, "effeminizing":5, "effeminization":6, "effendi":3, "efference":3, "efferent":3, "efferently":4, "effervesce":3, "effervesced":3, "effervescing":4, "effervescingly":5, "effervescence":4, "effervescent":4, "effervescently":5, "effervescency":5, "effervescible":5, "effete":2, "effetely":3, "effeteness":3, "effie":2, "effigial":4, "effigiate":4, "effigiated":5, "effigiating":5, "effigiation":5, "effigies":4, "effingham":3, "efficacious":4, "efficaciously":5, "efficaciousness":5, "efficacy":4, "efficient":3, "efficiently":4, "efficiency":4, "efficiency apartment":7, "effigies":3, "effigy":3, "effleurage":3, "effloresce":3, "effloresced":3, "efflorescing":4, "efflorescence":4, "efflorescent":4, "effluent":2, "efflux":2, "effluence":3, "effluent":3, "effluvia":4, "effluvial":4, "effluvium":4, "effort":2, "effortful":3, "effortfully":4, "effortless":3, "effortlessly":4, "effortlessness":4, "effraction":3, "effractor":3, "effronteries":4, "effrontery":4, "effulge":2, "effulged":2, "effulging":3, "effulgence":3, "effulgent":3, "effulgently":4, "effuse":2, "effused":2, "effusing":3, "effusion":3, "effusive":3, "effusively":4, "effusiveness":4, "effusiometer":6, "effy":2, "effye":2, "efik":2, "efrem":2, "egg":1, "egg and anchor":4, "egg timer":3, "egg-noggin":2, "eggs benedict":4, "eggbeater":3, "eggcrate":2, "eggcup":2, "egger":2, "egghead":2, "eggless":2, "eggnog":2, "eggplant":2, "eggshell":2, "eggshell porcelain":4, "egk":1, "egypt":1, "egbert":2, "egede":3, "eggar":2, "egger":2, "eggleston":3, "egham":2, "eglantine":3, "eglevsky":3, "egmont":2, "ehf":1, "ehrlich":2, "ehrenbreitstein":4, "ehrenburg":3, "eichmann":2, "eichstadt":2, "eiffel":2, "eiffel tower":4, "eight":1, "eighth":1, "eighthly":2, "eightball":2, "eighteen":2, "eighteenth":2, "eighteenmo":3, "eightfold":2, "eighties":2, "eightieth":3, "eightpenny":3, "eightsome reel":3, "eightvo":2, "eighty":2, "eighty-eight":2, "eighty-eighth":2, "eighty-fifth":2, "eighty-first":2, "eighty-five":2, "eighty-four":2, "eighty-fourth":2, "eighty-nine":2, "eighty-ninth":2, "eighty-niner":3, "eighty-one":2, "eighty-second":3, "eighty-seven":3, "eighty-seventh":3, "eighty-six":2, "eighty-sixth":2, "eighty-third":2, "eighty-three":2, "eighty-two":2, "eijkman":2, "eild":1, "eilshemius":4, "eimmart":2, "eindhoven":3, "einthoven":3, "einkanter":3, "einkorn":2, "einstein":2, "einstein shift":3, "einstein's law":3, "einsteinian":4, "einsteinium":4, "eire":2, "eisk":1, "eisegesis":4, "eisteddfod":3, "eisteddfods":3, "eisteddfodau":4, "eisteddfodic":4, "eichendorff":3, "eide":2, "eider":2, "eider duck":3, "eiderdown":3, "eidetic":3, "eidos":2, "eidolon":3, "eigenfrequency":5, "eigenfunction":4, "eigenvalue":4, "eigenvector":4, "eiger":2, "eikon":2, "eilat":2, "eileen":2, "eileithyia":4, "einar":2, "eirenic":3, "eirenical":4, "eirenicon":4, "eisenach":3, "eisenhower":4, "eisenstadt":3, "eisenstein":3, "eisegetic":4, "eisteddfod":3, "either":2, "either-or":2, "eke":1, "eking":2, "ektene":3, "el aaiun":3, "el alamein":4, "el beda":3, "el capitan":4, "el cid campeador":6, "el dorado":4, "el faiy":3, "el ferrol":3, "el greco":3, "el gza":3, "el khalil":3, "el mansura":4, "el minya":3, "el misti":3, "el obeid":3, "el paso":3, "el salvador":4, "eld":1, "eldo":1, "elder":2, "elderberry":4, "elderliness":4, "elderly":3, "eldest":2, "elec":1, "elect":1, "elem":1, "eleonora":2, "eleuin":2, "elev":1, "elf":1, "elfin":2, "elfish":2, "elfishly":3, "elfishness":3, "elfland":2, "elflike":2, "elflock":2, "eliz":1, "elk":1, "elkhart":2, "elkhorn":2, "elkhound":2, "elkton":2, "ell":1, "ellesmere island":4, "ellesmere port":3, "ellsworth":2, "elldridge":2, "elm":1, "elmsford":2, "elmhurst":2, "elmier":3, "elmiest":3, "elmy":2, "else":1, "elsewhere":2, "elsewhither":3, "elsdon":2, "elsmere":2, "elt":1, "elves":1, "elvish":2, "elvishly":3, "elaeoptene":4, "elaeothesia":6, "elaeothesium":6, "elagabalus":5, "elaphebolia":6, "elapid":3, "elater":3, "elaterium":5, "elayl":3, "elba":2, "elbe":2, "elbert":2, "elberfeld":3, "elberta":3, "elberton":3, "elbie":2, "elbing":2, "elbl":2, "elbow":2, "elbow grease":3, "elbowroom":3, "elbridge":2, "elbrus":2, "elbruz":2, "elburz mountains":4, "elche":2, "elda":2, "elden":2, "elder":2, "elder":2, "elder statesman":4, "elderberry":4, "elderly":3, "elding":2, "eldo":2, "eldon":2, "eldora":3, "eldorado":4, "eldred":2, "eldrich":2, "eldridge":2, "eldritch":2, "eleanor":3, "eleanor of aquitaine":7, "eleemosynary":6, "eleusinia":5, "eleusinian":5, "eleusinian mysteries":8, "eleutherius":5, "eleatic":4, "eleaticism":5, "eleanora":5, "eleazar":4, "elecampane":4, "eleemosynary":7, "elegance":3, "elegant":3, "elegantly":4, "elegancy":4, "elegise":3, "elegised":3, "elegist":3, "elegising":4, "elegize":3, "elegized":3, "elegizing":4, "elegiac":4, "elegiac couplet":6, "elegiac stanza":6, "elegiacal":5, "elegy":3, "element":3, "elemental":4, "elemental":4, "elementally":5, "elementarily":6, "elementariness":6, "elementary":5, "elementary particle":8, "elementary school":6, "elemi":3, "elemong":3, "elena":3, "elenor":3, "elenore":3, "eleoptene":4, "eleonore":4, "eleonora":5, "elephant":3, "elephant bird":4, "elephant foot":4, "elephant grass":4, "elephant seal":4, "elephant shrew":4, "elephant's":3, "elephant's-ear":3, "elephant's-foot":3, "elephanta":4, "elephantine":4, "elephantiasic":6, "elephantiasis":6, "elephantoid":4, "elevate":3, "elevated":4, "elevating":4, "elevatingly":5, "elevation":4, "elevator":4, "elevon":3, "elfinwood":3, "elga":2, "elgan":2, "elgar":2, "elger":2, "elgenia":4, "elgin":2, "elgin marbles":4, "elgon":2, "elhi":2, "elie":2, "elinvar":3, "eligibility":6, "eligible":4, "eligibly":4, "elihu":3, "elinor":3, "eliot":3, "eliphaz":3, "eliseus":4, "elkanah":3, "elkin":2, "elkins":2, "elko":2, "ell":2, "ella":2, "ellas":2, "ellamae":3, "ellamay":3, "ellen":2, "ellensburg":3, "ellenville":3, "ellery":3, "elli":2, "ellice islands":4, "ellin":2, "elling":2, "ellington":3, "ellinwood":3, "ellipse":2, "ellipsis":3, "ellipsoid":3, "ellipsoidal":4, "ellipsograph":4, "elliptic":3, "elliptic geometry":7, "ellipticity":5, "elliptical":4, "elliptically":5, "ellipticalness":5, "ellipticity":5, "elliptograph":4, "ellis":2, "ellisville":3, "elliot":3, "elliott":3, "ellison":3, "ellora":3, "elman":2, "elmer":2, "elmira":3, "elmont":2, "elocution":4, "elocutionary":6, "elocutionist":5, "elohimic":4, "elohistic":4, "eloise":3, "eloquence":3, "eloquent":3, "eloquently":4, "eloquentness":4, "eloyse":3, "elpenor":3, "elritch":2, "elrica":3, "elroy":2, "elsa":2, "elsan":2, "elsass":2, "elsass-lothringen":4, "elsene":3, "elsevier":3, "elsie":2, "elsinore":3, "elspeth":2, "elton":2, "eluant":3, "eluate":3, "eluent":3, "elva":2, "elver":2, "elverda":3, "elvin":2, "elvine":2, "elvis":2, "elvina":3, "elvira":3, "elvita":3, "elwin":2, "elwood":2, "elwyn":2, "elyot":3, "elytra":3, "elytroid":3, "elytron":3, "elytrous":3, "elytrum":3, "elzevier":3, "elzevir":3, "elzevirian":5, "eme":1, "emf":1, "emf":1, "emp":1, "empt":1, "empson":2, "emptied":2, "emptiable":4, "emptier":3, "emptiest":3, "emptily":3, "emptiness":3, "emptor":2, "empty":2, "empty quarter":4, "empty-handed":3, "empty-headed":3, "emptying":3, "ems":1, "emsworth":2, "emu":1, "emu":1, "emagram":3, "emanant":3, "emanate":3, "emanated":4, "emanating":4, "emanation":4, "emanational":5, "emanative":4, "emanatively":5, "emanator":4, "emanatory":5, "embalm":2, "embalmer":3, "embalmment":3, "embank":2, "embankment":3, "embar":2, "embark":2, "embarkment":3, "embarred":2, "embarcation":4, "embargo":3, "embargoed":3, "embargoing":4, "embarkation":4, "embarras de richesses":6, "embarrass":3, "embarrassedly":4, "embarrassingly":5, "embarrassment":4, "embarring":3, "embassage":3, "embassador":4, "embassy":3, "embattle":3, "embattled":3, "embattlement":4, "embay":2, "embayment":3, "embacle":3, "embed":2, "embedded":3, "embedding":3, "embedment":3, "embellish":3, "embellisher":4, "embellishment":4, "ember":2, "ember days":3, "ember goose":3, "ember week":3, "embezzle":3, "embezzler":3, "embezzlement":4, "embitter":3, "embitterer":4, "embitterment":4, "embiid":3, "embiotocid":5, "embla":2, "emblaze":2, "emblazed":2, "emblazer":3, "emblazing":3, "emblazon":3, "emblazoner":4, "emblazonment":4, "emblazonry":4, "emblem":2, "emblematic":4, "emblematical":5, "emblematically":6, "emblematicalness":6, "emblematise":4, "emblematised":4, "emblematist":4, "emblematising":5, "emblematize":4, "emblematized":4, "emblematizing":5, "emblements":3, "embodied":3, "embodier":4, "embodiment":4, "embody":3, "embodying":4, "embolden":3, "embolic":3, "embonpoint":3, "embosk":2, "emboss":2, "embosser":3, "embossment":3, "embosom":3, "embouchure":3, "embow":2, "embowed":2, "embowel":3, "emboweled":3, "embowelled":3, "emboweling":4, "embowelling":4, "embower":3, "embowment":3, "embot":5, "embolectomy":5, "embolism":3, "embolismic":4, "embolite":3, "embolus":3, "emboly":3, "embrace":2, "embraced":2, "embraceable":4, "embracement":3, "embraceor":3, "embracer":3, "embraceries":4, "embracery":4, "embracing":3, "embracive":3, "embranchment":3, "embrangle":3, "embranglement":4, "embrasure":3, "embrasured":3, "embrectomy":4, "embrittle":3, "embrittlement":4, "embroil":2, "embroiler":3, "embroilment":3, "embroider":3, "embroiderer":4, "embroideress":4, "embroideries":4, "embroidery":4, "embrocate":3, "embrocated":4, "embrocating":4, "embrocation":4, "embrue":2, "embrued":2, "embrute":2, "embruted":3, "embruting":3, "embruing":3, "embryectomy":5, "embryo":3, "embryo sac":4, "embryogeny":5, "embryoid":3, "embryologist":5, "embryology":5, "embryonic":4, "embryonically":6, "embryotomy":5, "embryotrophy":5, "embryogenesis":6, "embryogenic":5, "embryological":6, "embryologically":7, "embryonal":4, "embryotroph":4, "embryotrophe":4, "embryotrophic":5, "embryulci":4, "embryulcia":5, "embryulcus":4, "embryulcuses":5, "embus":2, "embussed":2, "embusqu":3, "embussing":3, "emcee":2, "emceed":2, "emceeing":3, "emden":2, "emerald":3, "emerald":3, "emerald isle":4, "emerize":3, "emerized":3, "emerizing":4, "emerson":3, "emersonian":5, "emery":3, "emery":3, "emery board":4, "emery wheel":4, "emeryville":4, "emelin":3, "emeline":3, "emesis":3, "emetin":3, "emetine":3, "emissaries":4, "emissary":4, "emissivity":5, "emigrant":3, "emigrate":3, "emigrated":4, "emigrating":4, "emigration":4, "emigrational":5, "emigrative":4, "emigratory":5, "emilie":3, "emily":3, "emina":3, "eminence":3, "eminence":3, "eminent":3, "eminent domain":5, "eminently":4, "eminency":4, "eminency":4, "emiscan":3, "emitron":3, "emlyn":2, "emma":2, "emmanuel":4, "emmarble":3, "emmanuel":4, "emmen":2, "emmenagogue":4, "emmenagogic":5, "emmenia":4, "emmeniopathy":6, "emmental":3, "emmenthal":3, "emmenthaler":4, "emmenthaler":4, "emmer":2, "emmet":2, "emmet":2, "emmetsburg":3, "emmett":2, "emmeleen":3, "emmelene":3, "emmeline":3, "emmerich":3, "emmetrope":3, "emmetropic":4, "emmetropia":5, "emmie":2, "emmy":2, "emmylou":3, "emollition":4, "emogene":3, "emory":3, "empaestic":3, "empaistic":3, "empale":2, "empaled":2, "empalement":3, "empaler":3, "empaling":3, "empanel":3, "empaneled":3, "empanelled":3, "empaneling":4, "empanelling":4, "empathic":3, "empathically":5, "empanada":4, "empathetic":4, "empathise":3, "empathize":3, "empathized":3, "empathizing":4, "empathy":3, "empedocles":4, "empennage":3, "empennages":4, "emperies":3, "emperor":3, "emperor penguin":5, "emperorship":4, "empery":3, "empestic":3, "emphatic":3, "emphaticalness":5, "emphasis":3, "emphasise":3, "emphasised":3, "emphasising":4, "emphasize":3, "emphasized":3, "emphasizing":4, "emphysematous":5, "emphysema":4, "empire":2, "empire":2, "empire day":3, "empire state":3, "empire-builder":3, "empiric":3, "empirical":4, "empirical formula":7, "empirically":5, "empiricalness":5, "empiricism":4, "empiricist":4, "empirin":3, "empirism":3, "empiristic":4, "emplace":2, "emplaced":2, "emplacement":3, "emplacing":3, "emplane":2, "emplectite":3, "employ":2, "employability":6, "employable":4, "employe":3, "employee":3, "employer":3, "employment":3, "employment agency":6, "employment exchange":5, "employment service agency":8, "employ":4, "empoison":3, "empoisonment":4, "empolder":3, "empoverish":4, "empower":3, "empowerment":4, "emporia":4, "emporium":4, "emporium":4, "emporiums":4, "empress":2, "empressement":3, "emprise":2, "emprize":2, "empurple":3, "empusae":3, "empyreal":4, "empyema":4, "empyemic":4, "empyreuma":4, "empyrean":4, "emulgens":3, "emulate":3, "emulated":4, "emulating":4, "emulation":4, "emulative":4, "emulatively":5, "emulator":4, "emulous":3, "emulously":4, "emulousness":4, "emyrie":2, "en attendant":4, "en brochette":3, "en famille":3, "en passant":3, "en pension":3, "en rapport":3, "enc":1, "encl":1, "ency":1, "encyc":1, "encke":2, "end":1, "end matter":3, "end organ":3, "end product":3, "end-all":1, "endemic":1, "endangeitis":5, "endangitis":4, "endarch":2, "endarteritis":5, "endarteria":5, "endarterial":5, "endarterium":5, "endaortitis":5, "endbrain":2, "enddamage":3, "enddamaged":3, "enddamaging":4, "ender":2, "endergonic":4, "endgame":2, "endhand":2, "ending":2, "endless":2, "endlessly":3, "endlessness":3, "endlong":2, "endmost":2, "endnote":2, "endover":3, "endpaper":3, "endpiece":2, "endplate":2, "endplay":2, "endpoint":2, "endshake":2, "endsweep":2, "endways":2, "endwise":2, "ene":1, "eng":1, "eng":1, "engin":1, "engr":1, "engel":2, "engelbert":3, "england":2, "englander":3, "english":2, "english bond":3, "english channel":4, "english flute":3, "english horn":3, "english setter":4, "englisher":3, "englishism":3, "englishly":3, "englishman":3, "englishman's tie":4, "englishness":3, "englishry":3, "englishwoman":4, "englishwomen":4, "enl":1, "ens":1, "ens":1, "ent":1, "enact":2, "enactable":4, "enactment":3, "enactive":3, "enactor":3, "enactory":4, "enallage":4, "enamor":3, "enamoredness":4, "enantiotropy":6, "enantiomorph":5, "enantiomorphic":6, "enantiomorphism":6, "enantiomorphous":6, "enantiosis":5, "enantiotropic":6, "enarched":2, "enarme":2, "enargite":3, "enarthrodial":5, "enarthrosis":4, "enable":3, "enabler":3, "enabling":3, "enabling act":4, "encaenia":3, "encaenia":4, "encage":2, "encaged":2, "encaging":3, "encamp":2, "encampment":3, "encapsule":3, "encapsuled":3, "encapsulate":4, "encapsulated":5, "encapsulating":5, "encapsulation":5, "encapsuling":4, "encarnalise":4, "encarnalised":4, "encarnalising":5, "encarnalize":4, "encarnalized":4, "encarnalizing":5, "encarpus":3, "encase":2, "encased":2, "encasement":3, "encash":2, "encasing":3, "encastered":3, "encastr":4, "encaustic":3, "encaustically":5, "enceinte":2, "enceladus":4, "encephalalgia":6, "encephalasthenia":7, "encephalin":4, "encephalitic":5, "encephalitis":5, "encephalitis lethargica":9, "encephalography":6, "encephalon":4, "encephalopathy":6, "encephalotomy":6, "encephalogram":5, "encephalograph":5, "encephalographic":6, "encephalographically":8, "encephaloma":5, "encephalomalacia":7, "encephalomata":6, "encephalomyelitic":8, "encephalomyelitis":8, "encephalosis":5, "encephalic":4, "enchain":2, "enchainment":3, "enchant":2, "enchanter":3, "enchanter's nightshade":5, "enchanting":3, "enchantingness":4, "enchantment":3, "enchantress":3, "enchase":2, "enchased":2, "enchaser":3, "enchasing":3, "enchanement":4, "enchilada":4, "enchiridia":5, "enchiridion":5, "enchiridions":5, "enchondromatous":5, "enchondroma":4, "enchondromas":4, "enchondromata":5, "enchoric":3, "enchoric":3, "enchorial":4, "encincture":3, "encinctured":3, "encincturing":4, "encircle":3, "encirclement":4, "encina":3, "encina":3, "encinal":3, "encipher":3, "encipherer":4, "encipherment":4, "enclasp":2, "enclave":2, "enclitic":3, "enclitically":5, "enclose":2, "enclosed":2, "enclosed order":4, "enclosable":4, "encloser":3, "enclosing":3, "enclosure":3, "encode":2, "encodement":3, "encoded":3, "encoder":3, "encoding":3, "encoignure":3, "encoignures":3, "encolpia":4, "encolpion":4, "encompass":3, "encompassment":4, "encore":2, "encored":2, "encoring":3, "encounter":3, "encounter group":4, "encounterer":4, "encourage":3, "encouraged":3, "encouragement":4, "encourager":4, "encouraging":4, "encouragingly":5, "encomia":4, "encomiast":4, "encomiastic":5, "encomiastical":6, "encomiastically":7, "encomienda":5, "encomium":4, "encomiums":4, "encopresis":4, "encrimson":3, "encrinite":3, "encroach":2, "encroacher":3, "encroachment":3, "encrust":2, "encrustant":3, "encrustation":4, "encrypt":2, "encryption":3, "enculturate":4, "enculturated":5, "enculturating":5, "enculturation":5, "enculturative":5, "encumber":3, "encumberingly":5, "encumbrance":3, "encumbrancer":4, "encyclic":3, "encyclical":4, "encyst":2, "encystment":3, "encystation":4, "encyclopaecical":6, "encyclopaedic":5, "encyclopaedism":5, "encyclopaedist":5, "encyclopaedia":6, "encyclopaedically":7, "encyclopedic":5, "encyclopedism":5, "encyclopedist":5, "encyclopedia":6, "encyclopedical":6, "encyclopedically":7, "encydlopaedic":5, "endamage":3, "endamagement":4, "endanger":3, "endangerment":4, "endarch":2, "endarchy":3, "endameba":4, "endamebic":4, "endamoeba":4, "endamoebic":4, "endear":2, "endearingly":4, "endearment":3, "endeavor":3, "endeavorer":4, "endemic":3, "endemical":4, "endemically":5, "enders":2, "enderby land":4, "endermic":3, "endermically":5, "endecott":3, "endemism":3, "endes":4, "endive":2, "endicott":3, "endocrinous":4, "endogamous":4, "endogamy":4, "endogenous":4, "endogeny":4, "endophytous":4, "endopodite":4, "endopoditic":5, "endorse":2, "endorsed":2, "endorsement":3, "endorsable":4, "endorser":3, "endorsing":3, "endorsingly":4, "endorsee":3, "endorsor":3, "endoscopist":4, "endoscopy":4, "endosmos":3, "endosmotic":4, "endosmotically":6, "endosmosis":4, "endosporous":4, "endosporously":5, "endostea":4, "endosteum":4, "endostosis":4, "endow":2, "endower":3, "endowment":3, "endowment assurance":6, "endoangiitis":6, "endoarteritis":6, "endoaortitis":6, "endoblast":3, "endoblastic":4, "endocarp":3, "endocarditic":5, "endocardia":5, "endocardiac":5, "endocardial":5, "endocarditis":5, "endocardium":5, "endocarpoid":4, "endocentric":4, "endocrania":5, "endocranial":5, "endocranium":5, "endocrine":3, "endocrine gland":4, "endocrinologic":6, "endocrinopath":5, "endocrinopathic":6, "endocrinotherapy":7, "endocrinal":4, "endocrinologist":6, "endocrinology":6, "endocrinopathy":6, "endoderm":3, "endodermis":4, "endodermal":4, "endodermic":4, "endodermis":4, "endodontics":4, "endodontist":4, "endodontium":5, "endodontologist":6, "endoenzyme":4, "endoergic":4, "endogamic":4, "endogen":3, "endogenesis":5, "endogenicity":6, "endolithic":4, "endolymph":3, "endolymphatic":5, "endometria":5, "endometrial":5, "endometriosis":6, "endometritis":5, "endometrium":5, "endomorph":3, "endomorphic":4, "endomorphism":4, "endomorphy":4, "endoneurium":5, "endoparasite":5, "endoparasitic":6, "endopeptidase":5, "endoperidial":6, "endoperidium":6, "endophasia":4, "endophyte":3, "endophytic":4, "endophytically":6, "endoplasm":3, "endoplasmic":4, "endoplasmic reticulum":8, "endopod":3, "endopterygote":5, "endosarc":3, "endosarcous":4, "endoscope":3, "endoscopic":4, "endoskeletal":5, "endoskeleton":5, "endosome":3, "endosperm":3, "endospore":3, "endosporia":5, "endosporium":5, "endothermal":4, "endothermic":4, "endothermism":4, "endothermically":6, "endothecia":5, "endothecial":5, "endothecium":5, "endothelia":5, "endothelial":5, "endothelioid":5, "endothelioma":6, "endotheliomas":6, "endotheliomata":7, "endothelium":5, "endotoxic":4, "endotoxin":4, "endotoxoid":4, "endotrophic":4, "endrin":2, "endue":2, "endued":2, "endure":2, "endured":2, "endurance":3, "endurant":3, "endurability":6, "endurable":4, "endurableness":5, "endurably":4, "endurer":3, "enduring":3, "enduringly":4, "enduringness":4, "enduing":3, "endymion":4, "energetic":4, "energetics":4, "energetical":5, "energetically":6, "energeticist":5, "energetistic":5, "energid":3, "energise":3, "energised":3, "energism":3, "energist":3, "energising":4, "energistic":4, "energize":3, "energized":3, "energizer":4, "energizing":4, "energumen":4, "energy":3, "energy band":4, "energy level":5, "enervate":3, "enervated":4, "enervating":4, "enervation":4, "enervative":4, "enervator":4, "enema":3, "enemy":3, "enface":2, "enfaced":2, "enfacement":3, "enfacing":3, "enfant terrible":5, "enfeeble":3, "enfeeblement":4, "enfeoff":2, "enfeoffment":3, "enfetter":3, "enfield":2, "enfield rifle":4, "enfin":2, "enfilade":3, "enfiladed":4, "enfilading":4, "enflame":2, "enflamed":2, "enflaming":3, "enfleurage":3, "enfold":2, "enfolder":3, "enfoldment":3, "enforce":2, "enforced":2, "enforceability":6, "enforceable":4, "enforcement":3, "enforcer":3, "enforcing":3, "enforcive":3, "enforcedly":4, "enfranchise":3, "enfranchised":3, "enfranchisement":4, "enfranchiser":4, "enfranchising":4, "enful":2, "engage":2, "engaged":2, "engaged tone":3, "engagement":3, "engagement ring":4, "engagedly":4, "engagedness":4, "engager":3, "engaging":3, "engagingly":4, "engagingness":4, "engarland":3, "engadine":3, "engagee":3, "engag":4, "engels":2, "engelberta":4, "engender":3, "engenderer":4, "engenderment":4, "enghien":2, "engine":2, "engine driver":4, "engine room":3, "engineless":3, "engineman":3, "enginery":3, "engird":2, "engirded":3, "engirding":3, "engirdle":3, "engineer":3, "engineering":4, "engineeringly":5, "enginous":3, "englacial":3, "englacially":4, "englacial":4, "engle":2, "englewood":3, "englut":2, "englutted":3, "englutting":3, "engobe":2, "engorge":2, "engorged":2, "engorgement":3, "engorging":3, "engraft":2, "engraftment":3, "engraftation":4, "engrail":2, "engrailed":2, "engrailment":3, "engrain":2, "engrained":2, "engrainedly":3, "engram":2, "engrammic":3, "engrave":2, "engraved":2, "engraver":3, "engraving":3, "engross":2, "engrosser":3, "engrossing":3, "engrossingly":4, "engrossingness":4, "engrossment":3, "engrossedly":4, "engulf":2, "engulfment":3, "enhance":2, "enhanced":2, "enhancement":3, "enhancer":3, "enhancing":3, "enhancive":3, "enharmonic":4, "enharmonic modulation":8, "enharmonically":6, "enhearten":3, "enigmatic":4, "enigmatical":5, "enigmatically":6, "enisle":2, "enisled":2, "enisling":3, "eniwetok":4, "enjambed":2, "enjambement":3, "enjambment":3, "enjoin":2, "enjoiner":3, "enjoinment":3, "enjoy":2, "enjoyable":4, "enjoyableness":5, "enjoyably":4, "enjoyer":3, "enjoyingly":4, "enjoyment":3, "enkephalin":4, "enki":2, "enkindle":3, "enkindler":3, "enkidu":3, "enkolpia":4, "enkolpion":4, "enlace":2, "enlaced":2, "enlacement":3, "enlacing":3, "enlarge":2, "enlarged":2, "enlargedly":3, "enlargeable":4, "enlargement":3, "enlarger":3, "enlarging":3, "enlargingly":4, "enlargedness":4, "enlighten":3, "enlightenedly":4, "enlightenedness":4, "enlightener":4, "enlighteningly":5, "enlightenment":4, "enlightenment":4, "enlil":2, "enlist":2, "enlisted man":4, "enlistee":3, "enlister":3, "enlistment":3, "enliven":3, "enlivener":4, "enliveningly":5, "enlivenment":4, "enmarble":3, "enmesh":2, "enmeshment":3, "enmity":3, "ennage":2, "ennerdale water":5, "ennead":3, "enneadic":4, "enneagon":4, "enneahedral":5, "enneahedron":5, "enneastyle":4, "enneastylar":5, "enneastylos":5, "enneasyllabic":6, "ennis":2, "enniskillen":4, "ennius":3, "ennoble":3, "ennobler":3, "ennoblement":4, "ennoblingly":4, "ennomus":3, "ennosigaeus":5, "ennui":2, "ennuyant":3, "ennuyante":3, "ennuy":4, "ennuye":4, "ennuyes":4, "ennuys":4, "enosis":3, "enovid":3, "enphytotic":4, "enplane":2, "enplaned":2, "enplaning":3, "enquire":2, "enquired":2, "enquiries":3, "enquiring":3, "enquiry":3, "enrage":2, "enraged":2, "enragement":3, "enragedly":4, "enraging":3, "enrapt":2, "enrapture":3, "enraptured":3, "enrapturedly":4, "enrapturing":4, "enravish":3, "enregister":4, "enregistration":5, "enrich":2, "enricher":3, "enrichingly":4, "enrichment":3, "enrica":3, "enrico":3, "enrique":3, "enrobe":2, "enrobed":2, "enrober":3, "enrobing":3, "enrol":2, "enroll":2, "enrolled":2, "enrollee":3, "enroller":3, "enrollment":3, "enrolling":3, "enrolment":3, "enroot":2, "ensample":3, "ensanguine":3, "ensanguined":3, "ensanguining":4, "enschede":3, "ensconce":2, "ensconced":2, "ensconcing":3, "enscroll":2, "ensemble":3, "ensepulcher":4, "ensepulchre":4, "ensenada":4, "ensheath":2, "ensheathe":2, "ensheathed":2, "ensheathing":3, "enshrine":2, "enshrined":2, "enshrinement":3, "enshrining":3, "enshroud":2, "ensign":2, "ensigncy":3, "ensignship":3, "ensile":2, "ensiled":2, "ensiling":3, "ensiform":3, "ensilage":3, "ensilaged":3, "ensilaging":4, "ensilability":6, "ensky":2, "enskyed":2, "enskying":3, "enslave":2, "enslaved":2, "enslavement":3, "enslaver":3, "enslaving":3, "ensnare":2, "ensnared":2, "ensnarement":3, "ensnarer":3, "ensnaring":3, "ensnaringly":4, "ensor":2, "ensorcel":3, "ensorcell":3, "ensorcellment":4, "ensoul":2, "ensphere":2, "ensphered":2, "ensphering":3, "enspirit":3, "enstatite":3, "enstatitic":4, "ensue":2, "ensued":2, "ensure":2, "ensured":2, "ensurer":3, "ensuring":3, "ensuing":3, "ensuingly":4, "enswathe":2, "enswathed":2, "enswathement":3, "enswathing":3, "entablature":4, "entail":2, "entailer":3, "entailment":3, "entangle":3, "entangledly":4, "entangledness":4, "entangler":3, "entangleable":5, "entanglement":4, "entanglingly":4, "entablement":4, "entamoeba":4, "entasis":3, "entebbe":3, "entelechy":4, "entellus":3, "entellus":3, "entelluses":4, "entente":2, "entente cordiale":4, "enter":2, "enter into":4, "entera":3, "enteral":3, "enteralgia":4, "enterally":4, "enterable":4, "enterclose":3, "enterectomy":5, "enterer":3, "enteric":3, "enteric fever":5, "enteritis":4, "enterology":5, "enteron":3, "enteropneust":4, "enterorrhexis":5, "enterostomy":5, "enterotomy":5, "enterobiasis":6, "enterocolitis":6, "enterogastrone":5, "enterohepatitis":7, "enterokinase":5, "enterologic":5, "enterotoxemia":7, "enterovirus":5, "enterozoa":5, "enterozoan":5, "enterozoon":5, "enterprise":3, "enterprise":3, "enterpriseless":4, "enterpriser":4, "enterprising":4, "enterprisingly":5, "enterrologist":5, "entertain":3, "entertainer":4, "entertaining":4, "entertainingly":5, "entertainingness":5, "entertainment":4, "entelechial":5, "enthalpy":3, "enthetic":3, "enthral":2, "enthrall":2, "enthralled":2, "enthraller":3, "enthrallingly":4, "enthrallment":3, "enthralling":3, "enthralment":3, "enthrone":2, "enthroned":2, "enthronement":3, "enthroning":3, "enthronise":3, "enthronised":3, "enthronising":4, "enthronize":3, "enthronized":3, "enthronizing":4, "enthronisation":5, "enthronization":5, "enthuse":2, "enthused":2, "enthusing":3, "enthusiasm":4, "enthusiast":4, "enthusiastic":5, "enthusiastically":7, "enthusitheos":4, "enthymeme":3, "enthymematic":5, "entice":2, "enticed":2, "enticement":3, "enticing":3, "enticingly":4, "enticingness":4, "entire":2, "entirely":3, "entireness":3, "entirety":3, "entia":3, "entitative":4, "entitatively":5, "entitle":3, "entitlement":4, "entity":3, "entoil":2, "entomb":2, "entombment":3, "entomic":3, "entopic":3, "entourage":3, "entoblast":3, "entoblastic":4, "entoderm":3, "entodermal":4, "entomogenous":5, "entomolegist":5, "entomologise":5, "entomologised":5, "entomologising":6, "entomologize":5, "entomologized":5, "entomologizing":6, "entomology":5, "entomophagous":5, "entomophilous":5, "entomophily":5, "entomostracan":5, "entomostracous":5, "entomological":6, "entomologically":7, "entomologise":5, "entomologize":5, "entomostracan":5, "entophyte":3, "entophytic":4, "entozoa":4, "entozoal":4, "entozoan":4, "entozoic":4, "entozoon":4, "entr":2, "entr'acte":2, "entrails":2, "entrain":2, "entrainer":3, "entrammel":3, "entrance":2, "entranced":2, "entrancement":3, "entranceway":3, "entrancing":3, "entrancingly":4, "entrant":2, "entrap":2, "entrapped":2, "entrapment":3, "entrapper":3, "entrapping":3, "entrappingly":4, "entrada":3, "entre nous":3, "entre-deux-mers":2, "entreasure":3, "entreasured":3, "entreasuring":4, "entreat":2, "entreaties":3, "entreatingly":4, "entreatment":3, "entreaty":3, "entree":2, "entrench":2, "entrenchment":3, "entrec":3, "entrechat":3, "entrecte":4, "entrelac":3, "entremets":3, "entrep":3, "entrepot":3, "entrepreneur":4, "entrepreneurial":6, "entrepreneurship":5, "entrepreneuse":4, "entrepreneuses":5, "entrept":4, "entresol":3, "entropy":3, "entrust":2, "entrustment":3, "entry":2, "entryway":3, "entre":3, "entwine":2, "entwined":2, "entwinement":3, "entwining":3, "entwist":2, "enure":2, "enured":2, "enuring":3, "enuretic":4, "enuresis":4, "envelop":3, "enveloped":3, "enveloper":4, "enveloping":4, "envelopment":4, "envenom":3, "enver":2, "enver pasha":4, "envelope":3, "envied":2, "envisage":3, "envisaged":3, "envisagement":4, "envisaging":4, "enviable":4, "enviableness":5, "enviably":4, "envier":3, "envious":3, "enviously":4, "enviousness":4, "environ":3, "environs":3, "environment":4, "environmental":5, "environmentalism":6, "environmentalist":6, "environmentally":6, "envision":3, "envoi":2, "envoy":2, "envy":2, "envying":3, "envyingly":4, "enweave":2, "enweaved":2, "enweaving":3, "enwind":2, "enwinding":3, "enwomb":2, "enwound":2, "enwoven":3, "enwrap":2, "enwrapped":2, "enwrapping":3, "enwreath":2, "enwreathe":2, "enwreathed":2, "enwreathing":3, "enwrought":2, "enyalius":5, "enzed":2, "enzootic":4, "enzootically":6, "enzotic":5, "enzotically":7, "enzyme":2, "enzygotic":4, "enzymatic":4, "enzymatically":6, "enzymic":3, "enzymically":5, "enzymologist":5, "enzymology":5, "enzymolysis":5, "enzymolytic":5, "enzymosis":4, "eom":1, "epa":1, "eph":1, "ephes":1, "ephebeia":4, "ephebeion":4, "ephebea":4, "ephebeum":4, "ephesus":3, "ephialtes":4, "ephod":2, "ephor":2, "ephors":2, "ephoral":3, "ephorate":3, "ephori":3, "epiph":1, "epis":1, "epist":1, "epns":1, "eprom":1, "eparch":2, "eparchate":3, "eparchial":4, "eparchy":3, "epaulet":3, "epaulette":3, "epaxial":4, "epaxially":5, "epagogic":4, "epagoge":4, "epanaphora":5, "epanorthosis":5, "epaphus":3, "epeirogeny":5, "epeisodia":5, "epeisodion":5, "epencephalon":5, "epencephalic":5, "ependyma":4, "ependymal":4, "ependymary":5, "epenthetic":4, "epenthesis":4, "epexegetic":5, "epexegetical":6, "epexegetically":7, "epexegesis":5, "epic":2, "epic simile":5, "epiclike":3, "epictetian":4, "epictetus":4, "epistemic":4, "epibaterius":6, "epiblast":3, "epiblastic":4, "epibolic":4, "epical":3, "epicanthic":4, "epicanthus":4, "epicarp":3, "epicardia":5, "epicardiac":5, "epicardial":5, "epicardium":5, "epicaste":4, "epicalyx":4, "epicalyxes":5, "epicalyces":5, "epicene":3, "epicenism":4, "epicenter":4, "epicentral":4, "epicentre":4, "epicentrum":4, "epicedial":5, "epicedian":5, "epicedium":5, "epicist":3, "epiclesis":4, "epicondyle":4, "epicondylian":6, "epicontinental":6, "epicotyl":4, "epicritic":4, "epicrisis":4, "epicure":3, "epicurism":4, "epicurean":5, "epicurean":5, "epicureanism":6, "epicurus":4, "epicycle":4, "epicyclic":4, "epicyclic train":5, "epicycloid":4, "epicycloidal":5, "epicycloidal wheel":6, "epidaurus":4, "epideictic":4, "epidemic":4, "epidemic encephalitis":9, "epidemic meningitis":8, "epidemic parotitis":8, "epidemiarum":6, "epidemical":5, "epidemically":6, "epidermal":4, "epidermic":4, "epidermis":4, "epidermically":6, "epidermoid":4, "epidermoidal":5, "epidemicity":6, "epidemiologist":7, "epidemiology":7, "epidemiological":8, "epidemiologically":9, "epidictic":4, "epididydidymides":8, "epididymal":5, "epididymis":5, "epidiascope":5, "epididymis":5, "epidiorite":5, "epidote":3, "epidotic":4, "epifocal":4, "epigamic":4, "epigastric":4, "epigastria":5, "epigastrium":5, "epigene":3, "epigenesis":5, "epigenesist":5, "epigeal":4, "epigean":4, "epigenetic":5, "epigenetically":7, "epigeous":4, "epiglottal":4, "epiglottic":4, "epiglottidean":6, "epiglottis":4, "epiglottises":5, "epiglottides":5, "epigon":3, "epigone":3, "epigonic":4, "epigoneion":5, "epigram":3, "epigrammatic":5, "epigrammatically":7, "epigrammatise":5, "epigrammatised":5, "epigrammatism":5, "epigrammatist":5, "epigrammatising":6, "epigrammatize":5, "epigrammatized":5, "epigrammatizing":6, "epigraph":3, "epigraphic":4, "epigraphical":5, "epigraphically":6, "epigyne":3, "epilate":3, "epilated":4, "epilating":4, "epilation":4, "epilator":4, "epilepsia":5, "epilepsy":4, "epileptic":4, "epileptically":6, "epileptiform":5, "epileptoid":4, "epilimnetic":5, "epilimnia":5, "epilimnion":5, "epilithic":4, "epilog":3, "epilogue":3, "epilogued":3, "epiloguing":4, "epimenides":5, "epimer":3, "epimere":3, "epimeric":4, "epimerise":4, "epimerised":4, "epimerising":5, "epimerize":4, "epimerized":4, "epimerizing":5, "epimetheus":5, "epimorphic":4, "epimorphism":4, "epimorphosis":5, "epimyocardial":7, "epimyocardium":7, "epinastic":4, "epinasty":4, "epinaoi":4, "epinaos":4, "epinephrin":4, "epinephrine":4, "epineuria":5, "epineurial":5, "epineurium":5, "epionychia":6, "epionychium":6, "epipastic":4, "epipaleolithic":7, "epipetalous":5, "epiphanic":4, "epiphania":5, "epiphenomenal":6, "epiphenomenalism":7, "epiphenomenalist":7, "epiphenomenally":7, "epiphenomenon":6, "epiphloedal":4, "epiphloedic":4, "epiphonema":5, "epiphragm":3, "epiphragmal":4, "epiphyll":3, "epiphylline":4, "epiphyllous":4, "epiphyseal":5, "epiphyte":3, "epiphytic":4, "epiphytically":6, "epiphylaxis":5, "epiphytotic":5, "epiplexis":4, "epiploic":4, "epirogeny":5, "episcope":3, "episepalous":5, "episedia":5, "episematic":5, "episememe":4, "episiotomy":6, "episode":3, "episodic":4, "episodical":5, "episodically":6, "episome":3, "epispastic":4, "epistatic":4, "epistaxis":4, "episternum":4, "episteme":4, "epistemic":4, "epistemically":6, "epistolic":4, "epistolical":5, "epistyle":3, "epistylar":4, "episyllogism":5, "epitaph":3, "epitaphic":4, "epitaphist":4, "epitaphless":4, "epitaxis":4, "epitaxial":5, "epitaxial transistor":8, "epitaxy":4, "epithalamus":5, "epithalamia":6, "epithalamion":6, "epithalamium":6, "epithalamiums":6, "epithet":3, "epithetic":4, "epithetical":5, "epithecia":5, "epithecial":5, "epithecium":5, "epithelia":5, "epithelial":5, "epithelioid":5, "epitheliomatous":7, "epithelioma":6, "epitheliomas":6, "epitheliomata":7, "epitheliomuscular":8, "epithelium":5, "epitheliums":5, "epithelization":6, "epitomical":5, "epixylous":4, "epizoa":4, "epizoic":4, "epizoism":4, "epizoite":4, "epizoon":4, "epizootic":5, "epizootically":7, "epizooty":5, "epizotic":6, "epizotically":8, "epizoty":6, "epoch":2, "epoch-making":3, "epochal":3, "epochally":4, "epode":2, "eponymous":4, "eponymy":4, "epos":2, "epoxies":3, "epoxy":3, "eponychium":5, "eponym":3, "eponymic":4, "epop":3, "epopee":3, "epopoeia":4, "epping forest":4, "epsilon":3, "epsilon":3, "epsilon-delta":4, "epsilon-neighborhood":5, "epsom":2, "epsom salts":3, "epsomite":3, "epstein":2, "epulo":3, "epulones":4, "epuration":4, "equiprobabilism":2, "equiv":1, "equability":5, "equable":3, "equableness":4, "equably":3, "equerry":3, "equine":2, "equine distemper":5, "equipage":3, "equipartition":5, "equipoise":3, "equisetic":4, "equisetum":4, "equitant":3, "equitable":4, "equitableness":5, "equitably":4, "equitation":4, "equites":3, "equities":3, "equity":3, "equity":3, "equity of redemption":7, "equivalence":4, "equivalency":5, "equivoke":3, "equivoque":3, "erckmann-chatrian":4, "ere":1, "erelong":2, "erenow":2, "erewhile":2, "erewhiles":2, "erg":1, "erk":1, "erlking":2, "ern":1, "erne":1, "erne":1, "ernst":1, "err":1, "errability":5, "errable":3, "erring":2, "erringly":3, "ers":1, "ers":1, "erse":1, "erst":1, "erstwhile":2, "erzgebirge":4, "erato":3, "eratosthenes":5, "erbil":2, "erbium":3, "erceldoune":3, "ercilla":3, "erciyas da":5, "ereuthalion":5, "erebus":3, "eremite":3, "eremitic":4, "eremitism":4, "eremophilous":5, "eremophyte":4, "erethism":3, "erethismic":4, "erethistic":4, "erewhon":3, "erfurt":2, "ergastoplasm":4, "ergate":2, "ergane":3, "ergative":3, "ergatocracy":5, "erginus":3, "ergo":2, "ergo sum":3, "ergodic":3, "ergometer":4, "ergosterol":4, "ergosterol":4, "ergot":2, "ergotamine":4, "ergotin":3, "ergotine":3, "ergotism":3, "ergotinine":4, "ergocalciferol":6, "ergodicity":5, "ergograph":3, "ergographic":4, "ergometrine":4, "ergonomic":4, "ergonomics":4, "ergonovine":4, "ergotoxine":4, "ergotrate":3, "erhard":2, "erhardt":2, "eriach":2, "eric":2, "eric":2, "eric the red":4, "erich":2, "erichthonius":5, "ericsson":3, "ericson":3, "erik":2, "erin":2, "eris":2, "eristic":3, "eristical":4, "eristically":5, "eriboea":4, "erica":3, "erica":3, "ericaceous":4, "ericeticolous":6, "ericoid":3, "erika":3, "erimanthus":4, "erina":3, "erinaceous":4, "eriophyllous":5, "eritrea":4, "erivan":3, "erlang":2, "erlanger":3, "erlander":3, "erlangen":3, "erlanger":3, "erlene":2, "erlenmeyer flask":5, "erline":2, "erlina":3, "erma":2, "ermanaric":4, "ermalinda":4, "ermentrude":3, "ermine":2, "ermine":2, "ermined":2, "ermines":2, "ermina":3, "erminois":3, "erna":2, "ernaline":3, "ernest":2, "ernestine":3, "ernesto":3, "ernestyne":3, "ernie":2, "erogenic":4, "erotesis":4, "erotism":3, "errand":2, "errand boy":3, "errant":2, "errantly":3, "errantry":3, "errancy":3, "erratic":3, "erratically":5, "erraticism":4, "errata":3, "erratum":3, "errhephoria":5, "errhine":2, "errol":2, "error":2, "error of closure":5, "errorless":3, "erroneous":4, "erroneously":5, "erroneousness":5, "ersatz":2, "erskine":2, "ertebolle":4, "erubescence":4, "erubescent":4, "erudite":3, "eruditely":4, "eruditeness":4, "erudition":4, "eruditional":5, "erulus":3, "ervil":2, "ervin":2, "ervine":2, "erwin":2, "erwinia":4, "eryx":2, "erycina":4, "erymanthian boar":6, "erymanthos":4, "erymanthus":4, "erysichthon":4, "erysipelas":5, "erysipeloid":5, "erysipelothrix":6, "erysipelatous":6, "erythema":4, "erythematic":5, "erythes":5, "erythraeum":4, "erythrismal":4, "erythropsin":4, "erzerum":3, "erzurum":3, "esb":1, "eschalot":3, "escherichia":5, "esd":1, "ese":1, "eshkol":2, "esn":1, "esp":1, "esp":1, "esq":1, "esr":1, "esro":1, "ess":1, "est":1, "est":1, "esth":1, "esu":1, "esu":1, "esbjerg":2, "escallop":3, "escallonia":5, "escalop":3, "escape":2, "escape clause":3, "escape hatch":3, "escape mechanism":5, "escape pipe":3, "escape road":3, "escape shaft":3, "escape velocity":6, "escape wheel":3, "escaped":2, "escapeless":3, "escapement":3, "escapeway":3, "escapable":4, "escapee":3, "escaper":3, "escaping":3, "escapingly":4, "escapism":3, "escapist":3, "escarp":2, "escarpment":3, "escargot":3, "escargotire":5, "escarteled":3, "escartelly":4, "escartel":5, "escartele":5, "escaut":2, "escadrille":3, "escalade":3, "escaladed":4, "escalader":4, "escalading":4, "escalate":3, "escalated":4, "escalating":4, "escalation":4, "escalator":4, "escalator clause":5, "escalope":3, "escanaba":4, "escapade":3, "escapologist":5, "escarole":3, "eschar":2, "escharotic":4, "eschatologist":5, "eschatology":5, "eschatological":6, "eschatologically":7, "escheat":2, "escheatage":3, "escheatable":4, "escheator":3, "eschew":2, "eschewal":3, "eschewer":3, "escoffier":3, "escondido":4, "esconson":3, "escort":2, "escolar":3, "escorial":4, "escritoire":3, "escrow":2, "escutcheon":3, "escutcheoned":3, "escuage":3, "escudero":4, "escudo":3, "esculapian":5, "esculent":3, "esculin":3, "escurial":4, "esdras":2, "esdraelon":4, "esdud":2, "esemplastic":4, "eserine":3, "esidrix":3, "eskar":2, "esker":2, "eskimo":3, "eskimo dog":4, "eskimo-aleut":5, "eskimoid":3, "eskimologist":5, "eskimology":5, "eskimoan":4, "eskisehir":4, "eskishehir":4, "esky":2, "eslie":2, "eslisor":3, "esme":2, "esmeralda":4, "esmeraldas":4, "esmond":2, "esne":2, "esnecy":3, "esonarthex":4, "esoteric":4, "esoterist":4, "esoterica":5, "esoterically":6, "esotericism":5, "esotericist":5, "esoterism":4, "esotropia":5, "espalier":3, "espantoon":3, "espartero":4, "esparto":3, "esparto grass":4, "espada":3, "espadrille":3, "espagnole":3, "espagnolette":4, "espana":3, "espaa":4, "espaol":4, "espaoles":5, "esperance":3, "especial":3, "especially":4, "especialness":4, "esperantism":4, "esperantist":4, "esperanto":4, "espied":2, "espigle":4, "espiglerie":5, "espial":3, "espionage":4, "esplanade":3, "esplees":2, "espoo":2, "espouse":2, "espoused":2, "espousal":3, "espouser":3, "espousing":3, "espresso":3, "esprit":2, "esprit de corps":4, "espronceda":4, "espy":2, "espying":3, "esprito santo":6, "espritu santo":6, "esquire":2, "esquired":2, "esquiring":3, "esquisse-esquisse":3, "esquiline":3, "esquimau":3, "esquimauan":4, "esrog":2, "esrogim":3, "essay":2, "essayer":3, "essayist":3, "essayistic":4, "essaouira":4, "esse":2, "essen":2, "essence":2, "essene":2, "essential":3, "essential oil":4, "essentialism":4, "essentialist":4, "essentialize":4, "essentialized":4, "essentializing":5, "essentially":4, "essentialness":4, "essentiality":6, "essex":2, "essexville":3, "essenian":4, "essequibo":4, "essie":2, "essive":2, "essonne":2, "essonite":3, "establish":3, "established church":4, "establishable":5, "establisher":4, "establishment":4, "establishment":4, "establishmentarian":7, "establishmentarianism":8, "estaing":2, "estampie":3, "estancia":3, "estanciero":4, "estancieros":4, "estancia":4, "estate":2, "estate agent":4, "estate car":3, "estate duty":4, "estates general":5, "estated":3, "estating":3, "estafette":3, "estamene":3, "estamin":3, "estaminet":4, "este":2, "esteem":2, "estelle":2, "estella":3, "ester":2, "ester":2, "esterase":3, "esterhazy":4, "esterified":4, "esterifiable":6, "esterification":6, "esterify":4, "esterifying":5, "estes":2, "esteban":3, "esther":2, "estherville":3, "esthete":2, "esthetic":3, "esthetics":3, "esthetical":4, "esthetically":5, "estheticism":4, "esthesia":3, "esthesis":3, "esthesia":4, "esthesiometer":6, "esthesiometry":6, "esthetician":4, "esthonia":4, "esthonian":4, "estienne":2, "estipulate":4, "estimate":3, "estimated":4, "estimating":4, "estimatingly":5, "estimable":4, "estimableness":5, "estimably":4, "estimation":4, "estimative":4, "estimator":4, "estival":3, "estivate":3, "estivated":4, "estivating":4, "estivation":4, "estivator":4, "estoc":2, "estocs":2, "estoile":2, "estop":2, "estopped":2, "estoppage":3, "estoppel":3, "estopping":3, "estocada":4, "estonia":4, "estonian":4, "estovers":3, "estrade":2, "estrange":2, "estranged":2, "estrangement":3, "estrangedness":4, "estranger":3, "estranging":3, "estray":2, "estradiol":4, "estragon":3, "estreat":2, "estremadura":5, "estrildine":3, "estrin":2, "estriol":3, "estron":2, "estrone":2, "estrous":2, "estrogen":3, "estrogenic":4, "estrogenically":6, "estrum":2, "estrus":2, "estrual":3, "estuaries":4, "estuarial":5, "estuary":4, "estuarine":4, "et cetera":4, "eta":1, "etc":1, "etch":1, "etchant":2, "etcher":2, "etching":2, "etd":1, "eth":1, "eth":1, "ethnol":1, "ethal":2, "ethane":2, "ethanethiol":4, "ethanim":3, "ethanol":3, "ethchlorvynol":4, "ethel":2, "ethelbert":3, "ethelred ii":4, "ethene":2, "etherege":3, "ethelee":3, "ethelene":3, "ethelette":3, "ethelind":3, "etheline":3, "ethelinda":4, "ethic":2, "ethics":2, "ethine":2, "ethical":3, "ethicality":5, "ethically":4, "ethicalness":4, "ethicise":3, "ethicize":3, "ethicized":3, "ethicizing":4, "ethlyn":2, "ethmoid":2, "ethmoidal":3, "ethnarch":2, "ethnarchy":3, "ethnic":2, "ethnicity":4, "ethnical":3, "ethnically":4, "ethnocracy":4, "ethnogenist":4, "ethnogeny":4, "ethnographer":4, "ethnography":4, "ethnologist":4, "ethnology":4, "ethnos":2, "ethnobotany":5, "ethnocentric":4, "ethnocentricity":6, "ethnocentrism":4, "ethnocentrically":6, "ethnogenic":4, "ethnographic":4, "ethnographically":6, "ethnohistorical":6, "ethnohistorically":7, "ethnohistorian":6, "ethnohistory":5, "ethnolinguist":4, "ethnolinguistic":5, "ethnolinguistics":5, "ethnological":5, "ethnologically":6, "ethnomusicologist":7, "ethnomusicology":7, "ethnomusicological":8, "ethnomusicologically":9, "ethoxide":3, "ethoxyethane":5, "ethological":5, "ethologically":6, "ethonone":3, "ethrog":2, "ethrogs":2, "ethrogim":3, "ethyl":2, "ethyl":2, "ethyle":2, "ethylate":3, "ethylated":4, "ethylating":4, "ethylation":4, "ethylbenzene":4, "ethyldichloroarsine":7, "ethylene":3, "ethylene glycol":5, "ethylene group":4, "ethylene series":5, "ethylenation":5, "ethylenic":4, "ethylthioether":6, "ethyne":2, "ety":1, "etym":1, "etymol":1, "eta":2, "etalon":3, "etamin":3, "etamine":3, "etaoin shrdlu":5, "etcetera":4, "etceteras":4, "eteocretan":5, "etiam":3, "etiquette":3, "etna":2, "etna":2, "etowah":3, "etrog":2, "etrogs":2, "etrogim":3, "etta":2, "ettarre":2, "ettabeth":3, "etymologise":5, "etymologised":5, "etymologist":5, "etymologising":6, "etymologize":5, "etymologized":5, "etymologizable":7, "etymologizing":6, "etymology":5, "etymon":3, "etymological":6, "etymologically":7, "etzel":2, "eucken":2, "eucken":2, "euctemon":3, "eupnea":3, "eupneic":3, "eupnoea":3, "eur":1, "eure":1, "euratom":3, "euramerican":5, "eurasia":3, "eurasian":3, "eustace":2, "eustis":2, "euxenite":3, "euxine":2, "euxine sea":3, "euaechme":3, "eubacteria":5, "eubacterium":5, "euboea":3, "euboean":3, "euboic":3, "eubuleus":4, "eucaine":2, "eucarpic":3, "eucarpous":3, "eucalypt":3, "eucalypteol":5, "eucalyptic":4, "eucalyptol":4, "eucalyptole":4, "eucalyptus":4, "eucharis":3, "eucharist":3, "eucharistic":4, "eucharistical":5, "eucharistically":6, "euchenor":3, "euchite":2, "euchlorin":3, "euchlorine":3, "euchology":4, "euchologia":5, "euchologion":5, "euchre":2, "euchromatic":4, "euchromatin":4, "euchromosome":4, "euclase":2, "euclea":3, "euclid":2, "euclidean":4, "euclidian":4, "euclides":3, "eucrite":2, "eucryptite":3, "eudaemon":3, "eudaemonic":4, "eudaemonics":4, "eudaemonism":4, "eudaemonist":4, "eudaemonistic":5, "eudaemonistical":6, "eudaemonistically":7, "eudaemonia":5, "eudemon":3, "eudemonic":4, "eudemonics":4, "eudemonism":4, "eudemonist":4, "eudemonistic":5, "eudemonistical":6, "eudemonistically":7, "eudemonia":5, "eudist":2, "eudiometer":5, "eudiometry":5, "eudiometric":5, "eudiometrically":7, "eudoxus":3, "eudoxus of cnidus":6, "eudora":3, "eudorus":3, "euemerus":4, "eufaula":3, "euflavine":3, "eug":2, "eugen":2, "eugene":2, "eugenic":3, "eugenics":3, "eugenical":4, "eugenically":5, "eugenicist":4, "eugenie":3, "eugenist":3, "eugenia":4, "eugenol":3, "euglena":3, "euglena":3, "eugonic":3, "eugne":3, "eugnie":4, "eugne":3, "eugnie":3, "euhedral":3, "euhemerise":4, "euhemerised":4, "euhemerism":4, "euhemerist":4, "euhemerising":5, "euhemeristic":5, "euhemeristically":7, "euhemerize":4, "euhemerized":4, "euhemerizing":5, "euhemerus":4, "euippe":3, "eula":2, "eulachan":3, "eulachon":3, "eulalia":3, "eulalie":3, "eulee":2, "euler":2, "euler-chelpin":3, "eulis":2, "eulogise":3, "eulogised":3, "eulogist":3, "eulogiser":4, "eulogising":4, "eulogistic":4, "eulogistical":5, "eulogistically":6, "eulogize":3, "eulogized":3, "eulogizer":4, "eulogizing":4, "eulogia":4, "eulogium":4, "eulogiums":4, "eulogization":5, "eulogy":3, "eumaeus":3, "eumelanin":4, "eumenides":4, "eumedes":3, "eumelus":3, "eumolpus":3, "euneus":3, "eunice":2, "eunomia":4, "eunomus":3, "eunomy":3, "eunuch":2, "eunuchise":3, "eunuchised":3, "eunuchism":3, "eunuchising":4, "eunuchize":3, "eunuchized":3, "eunuchizing":4, "eunuchoid":3, "eunuchoidism":4, "eunuchry":3, "euonymus":4, "eupatrid":3, "eupatridae":4, "eupatorium":5, "eupen and malmdy":6, "eupepsia":3, "eupepsia":4, "eupepsy":3, "eupeptic":3, "euphausiid":4, "euphemie":3, "euphemise":3, "euphemised":3, "euphemism":3, "euphemist":3, "euphemiser":4, "euphemising":4, "euphemistic":4, "euphemistical":5, "euphemistically":6, "euphemize":3, "euphemized":3, "euphemizer":4, "euphemizing":4, "euphemia":4, "euphemious":4, "euphemiously":5, "euphemization":5, "euphemus":3, "euphonise":2, "euphonic":3, "euphonical":4, "euphonically":5, "euphonicalness":5, "euphorbia":4, "euphorbiaceous":5, "euphorbus":3, "euphoric":3, "euphonise":3, "euphonised":3, "euphonising":4, "euphonize":3, "euphonized":3, "euphonizing":4, "euphonia":4, "euphonious":4, "euphoniously":5, "euphoniousness":5, "euphonium":4, "euphony":3, "euphoria":4, "euphoriant":4, "euphorion":4, "euphotic":3, "euphrasy":3, "euphrates":3, "euphratean":4, "euphroe":2, "euphrosyne":4, "euphues":3, "euphuism":3, "euphuist":3, "euphuistic":4, "euphuistical":5, "euphuistically":6, "euplastic":3, "euploid":2, "euplotes":3, "euplotid":3, "eupotamic":4, "eureka":3, "eureka":3, "eureka stockade":5, "eurhythmic":3, "eurhythmics":3, "eurhythmy":3, "euripides":4, "euripidean":5, "eurippa":3, "euripus":3, "eurithermophile":5, "eurithermophilic":6, "euro-american":5, "euroclydon":4, "europe":2, "eurocommunism":5, "eurocrat":3, "eurodollar":4, "eurodollars":4, "euromart":3, "euromarket":4, "europa":3, "european":4, "european economic community":12, "european letter telegram":9, "european plan":5, "europeanise":5, "europeanised":5, "europeanism":5, "europeanising":6, "europeanize":5, "europeanized":5, "europeanizing":6, "europeanization":7, "europeanly":5, "europium":4, "europoort":3, "eurotas":3, "eurovision":4, "eurus":2, "eurybia":4, "eurydamas":4, "eurydice":4, "eurylochus":4, "eurymachus":4, "eurymede":4, "eurymedon":4, "eurynome":4, "euryphagous":4, "eurypterid":4, "eurypylus":4, "eurysaces":4, "eurystheus":3, "eurysthenes":4, "eurystheus":4, "eurythmic":3, "eurythmics":3, "eurythmical":4, "eurythmy":3, "eurytion":4, "euryale":4, "eurybates":4, "eurychoric":4, "euryclea":4, "euryclia":4, "euryganeia":5, "euryhaline":4, "euryphage":3, "eurythermal":4, "eurythermic":4, "eurythermous":4, "eurytopic":4, "eurytopicity":6, "eurytropic":4, "eurytus":3, "eusebius":4, "eusol":2, "eusporangiate":5, "eustatic":3, "eustatically":5, "eustachian tube":4, "eustacia":3, "eustacy":3, "eustatius":4, "eustyle":2, "eutaw":2, "eutaxy":3, "eutectic":3, "eutectoid":3, "euterpe":3, "euthanasia":4, "euthanasic":4, "euthanasia":5, "euthenics":3, "euthenist":3, "euthermic":3, "eutherian":4, "eutic":2, "eutocia":4, "eutopia":4, "eutrophic":3, "eutrophication":5, "eutrophy":3, "eutychian":4, "eutychianus":5, "euvrou":2, "eva":1, "evan":1, "evang":1, "eve":1, "eve":1, "eve's pudding":3, "evelyn":2, "evening":2, "evening class":3, "evening dress":3, "evening primrose":4, "evening star":3, "evenings":2, "every":2, "every one":3, "everybody":4, "everyday":3, "everydayness":4, "everyhow":3, "everyman":3, "everyone":3, "everyplace":3, "everything":3, "everyway":3, "everywhen":3, "everywhere":3, "everywhere-dense":3, "evesham":2, "evan":2, "evans":2, "evansdale":3, "evanston":3, "evansville":3, "evarts":2, "evatt":2, "evanesce":3, "evanesced":3, "evanescing":4, "evanescence":4, "evanescent":4, "evanescently":5, "evanescible":5, "evaristus":4, "ever":2, "evert":2, "everbearing":4, "everdur":3, "everes":3, "everest":3, "everett":3, "everglade":3, "everglades":3, "evergood":3, "evergreen":3, "evergreen":3, "everlasting":4, "everlastingly":5, "everlastingness":5, "evermore":3, "eveleen":3, "eveleth":3, "evelina":4, "evelyn":3, "evelynne":3, "everard":3, "evidence":3, "evidenced":3, "evidencing":4, "evident":3, "evidently":4, "evidential":4, "evidentially":5, "evidentiary":5, "evipal":3, "evitable":4, "evnissyen":3, "evocable":4, "evocation":4, "evocator":4, "evolute":3, "evolution":4, "evolutional":5, "evolutionally":6, "evolutionarily":7, "evolutionary":6, "evolutionism":5, "evolutionist":5, "evolutionistically":8, "evolutionistic":6, "evolutive":4, "evros":2, "evtushenko":4, "evva":2, "evvoia":3, "evyleen":3, "evzone":2, "ewe":1, "ewan":2, "ewell":2, "ewer":2, "eweries":3, "ewery":3, "ewing":2, "ex cathedra":4, "ex dividend":4, "ex gratia":3, "ex hypothesi":5, "ex libris":3, "ex officio":5, "ex parte":3, "ex post facto":4, "ex silentio":5, "ex voto":3, "ex-directory":4, "ex-officio":4, "ex-president":3, "ex-service":2, "ex-serviceman":3, "ex-serviceman":3, "exc":1, "exc":1, "exch":1, "excl":1, "exec":1, "exod":1, "exor":1, "exp":1, "exptl":1, "exr":1, "ext":1, "exact":2, "exactable":4, "exacter":3, "exacting":3, "exactingly":4, "exactingness":4, "exactitude":4, "exactly":3, "exactness":3, "exacerbate":4, "exacerbated":5, "exacerbating":5, "exacerbatingly":6, "exacerbation":5, "exaction":3, "exactor":3, "exaggerate":4, "exaggerated":5, "exaggeratedly":6, "exaggerating":5, "exaggeratingly":6, "exaggeration":5, "exaggerative":5, "exaggeratively":6, "exaggerator":5, "exaggeratory":6, "exalt":2, "exalted":3, "exaltedly":4, "exaltedness":4, "exalter":3, "exaltation":4, "exam":2, "examine":3, "examine-in-chief":3, "examined":3, "examinable":5, "examiner":4, "examining":4, "examiningly":5, "examinant":4, "examination":5, "examinational":6, "examinatorial":7, "examinee":4, "example":3, "exanimate":4, "exanimation":5, "exanthem":3, "exanthema":4, "exanthematic":5, "exanthemata":5, "exarch":2, "exarchal":3, "exarchate":3, "exarchy":3, "exasperate":4, "exasperated":5, "exasperatedly":6, "exasperater":5, "exasperating":5, "exasperatingly":6, "exasperation":5, "examen":3, "exarate":3, "excalibur":4, "excardination":5, "excaudate":3, "excavate":3, "excavated":4, "excavating":4, "excavation":4, "excavator":4, "exceed":2, "exceedable":4, "exceeder":3, "exceeding":3, "exceedingly":4, "excel":2, "excelled":2, "excellence":3, "excellence":3, "excellent":3, "excellently":4, "excellency":4, "excellency":4, "excelling":3, "excelsior":4, "excentric":3, "except":2, "excepting":3, "excepable":4, "exception":3, "exceptional":4, "exceptionality":6, "exceptionally":5, "exceptionalness":5, "exceptionable":5, "exceptionableness":6, "exceptionably":5, "exceptionless":4, "exceptive":3, "exceptively":4, "excerpt":2, "excerpter":3, "excerptible":4, "excerpta":3, "excerption":3, "excerptor":3, "excess":2, "excess demand":4, "excess supply":4, "excessive":3, "excessively":4, "excessiveness":4, "exchange":2, "exchange force":3, "exchange rate":3, "exchanged":2, "exchangeability":6, "exchangeable":4, "exchangeably":4, "exchangee":3, "exchanger":3, "exchanging":3, "exchequer":3, "exchequer":3, "excide":2, "excided":3, "exciding":3, "excipient":4, "excipulum":4, "excircle":3, "excise":2, "excised":2, "exciseman":3, "excisable":4, "excising":3, "excite":2, "excitement":3, "excitant":3, "excitability":6, "excitable":4, "excitableness":5, "excitably":4, "excitative":4, "excitatory":5, "excited":3, "excitedly":4, "excitedness":4, "exciter":3, "exciting":3, "excitingly":4, "exciple":3, "excipule":3, "excision":3, "excitation":4, "exciton":3, "excitor":3, "excitomotor":5, "excitomotory":6, "exclaim":2, "exclaimer":3, "exclamatorily":6, "exclamatory":5, "exclaustration":4, "exclave":2, "exclamation":4, "exclamation mark":5, "exclamational":5, "exclosure":3, "exclude":2, "excludability":6, "excludable":4, "excluded":3, "excluder":3, "excluding":3, "excludible":4, "exclusion":3, "exclusion principle":6, "exclusionary":5, "exclusioner":4, "exclusionism":4, "exclusionist":4, "exclusive":3, "exclusive brethren":5, "exclusive or":4, "exclusively":4, "exclusiveness":4, "exclusivism":4, "exclusivist":4, "exclusivistic":5, "exclusivity":5, "exclusory":4, "excogitate":4, "excogitated":5, "excogitating":5, "excogitable":5, "excogitation":5, "excogitative":5, "excogitator":5, "excommunicate":5, "excommunicate":5, "excommunicated":6, "excommunicating":6, "excommunicable":6, "excommunication":6, "excommunicative":6, "excommunicator":6, "excommunicatory":7, "excorticate":4, "excorticated":5, "excorticating":5, "excoriate":4, "excoriated":5, "excoriating":5, "excoriation":5, "excrescence":3, "excrescent":3, "excrescently":4, "excrescency":4, "excrete":2, "excreted":3, "excreter":3, "excreting":3, "excrement":3, "excremental":4, "excrementally":5, "excrementitious":5, "excrementitiously":6, "excrementous":4, "excreta":3, "excretal":3, "excretion":3, "excretive":3, "excretory":4, "excruciate":4, "excruciated":5, "excruciating":5, "excruciatingly":6, "excruciation":5, "exculpate":3, "exculpated":4, "exculpating":4, "exculpable":4, "exculpation":4, "exculpatory":5, "excurved":2, "excurrent":3, "excursion":3, "excursional":4, "excursionary":5, "excursionist":4, "excursive":3, "excursively":4, "excursiveness":4, "excursus":3, "excursuses":4, "excurvate":3, "excurvation":4, "excurvature":4, "excuse":2, "excuse-me":2, "excused":2, "excuseless":3, "excuss":2, "excusal":3, "excusable":4, "excusableness":5, "excusably":4, "excusatory":5, "excuser":3, "excusing":3, "excusingly":4, "excusive":3, "excusively":4, "excussion":3, "excussio":4, "excubitoria":6, "excubitorium":6, "excudit":3, "executant":4, "executive":4, "executive council":6, "executive officer":7, "executive session":6, "executively":5, "executiveness":5, "executor":4, "executorship":5, "executorial":6, "executory":5, "executrix":4, "executrices":5, "exedra":3, "exedrae":3, "exempt":2, "exemptible":4, "exemption":3, "exemptive":3, "exempla":3, "exemplar":3, "exemplarism":4, "exemplarity":5, "exemplarily":5, "exemplariness":5, "exemplary":4, "exemplary damages":7, "exempli gratia":6, "exemplified":4, "exemplifiable":6, "exemplification":6, "exemplificative":6, "exemplifier":5, "exemplify":4, "exemplifying":5, "exemplum":3, "exenterate":4, "exenterated":5, "exenterating":5, "exenteration":5, "exergue":2, "exergual":3, "exert":2, "exercise":3, "exercised":3, "exercisable":5, "exerciser":4, "exercising":4, "exercitation":5, "exergonic":4, "exertion":3, "exertive":3, "exeat":3, "execrate":3, "execrated":4, "execrating":4, "execrable":4, "execrableness":5, "execrably":4, "execration":4, "execrative":4, "execratively":5, "execrator":4, "execratory":5, "execute":3, "executable":5, "executed":4, "executer":4, "executing":4, "execution":4, "executional":5, "executioner":5, "exedra":3, "exedral":3, "exegete":3, "exegetic":4, "exegetics":4, "exegetical":5, "exegetically":6, "exegesis":4, "exegetist":4, "exequatur":4, "exequies":3, "exequial":4, "exequy":3, "exeter":3, "exeunt":3, "exeunt omnes":5, "exfoliate":4, "exfoliated":5, "exfoliating":5, "exfoliation":5, "exfoliative":5, "exhale":2, "exhaled":2, "exhalant":3, "exhaling":3, "exhaust":2, "exhauster":3, "exhaustingly":4, "exhaustively":4, "exhaustiveness":4, "exhaustibility":6, "exhaustible":4, "exhaustless":3, "exhaustlessly":4, "exhaustlessness":4, "exhaustion":3, "exhaustive":3, "exhalation":4, "exhalent":3, "exhedra":3, "exhibit":3, "exhibitant":4, "exhibitable":5, "exhibiter":4, "exhibitive":4, "exhibitively":5, "exhibitor":4, "exhibitory":5, "exhilarant":4, "exhilarant":4, "exhilarate":4, "exhilarated":5, "exhilarating":5, "exhilaratingly":6, "exhilaration":5, "exhilarative":5, "exhilarator":5, "exhilaratory":6, "exhibition":4, "exhibitioner":5, "exhibitionism":5, "exhibitionist":5, "exhibitionistic":6, "exhort":2, "exhorter":3, "exhortingly":4, "exhortation":4, "exhortative":4, "exhortatively":5, "exhortatory":5, "exhume":2, "exhumed":2, "exhumer":3, "exhuming":3, "exhumation":4, "exiguous":4, "exiguously":5, "exile":2, "exile":2, "exiled":2, "exilable":4, "exiler":3, "exilic":3, "exiling":3, "exilian":4, "eximious":4, "eximiously":5, "exine":2, "exist":2, "existence":3, "existent":3, "exister":3, "existential":4, "existentialism":5, "existentialist":5, "existentialistic":6, "existentialistically":8, "existentially":5, "exit":2, "exigeant":3, "exigeante":3, "exigence":3, "exigent":3, "exigently":4, "exigency":4, "exigible":4, "exiguity":5, "exilarch":3, "exitance":3, "exmoor":2, "exogamous":4, "exogamy":4, "exogenism":4, "exogenous":4, "exogenously":5, "exon":2, "exonerate":4, "exonerated":5, "exonerating":5, "exoneration":5, "exonerative":5, "exonerator":5, "exophthalmic":4, "exophthalmic goitre":6, "exophthalmos":4, "exophthalmus":4, "exopodite":4, "exopoditic":5, "exorbitance":4, "exorbitant":4, "exorbitantly":5, "exorbitancy":5, "exorcise":3, "exorcised":3, "exorcisement":4, "exorcism":3, "exorcist":3, "exorciser":4, "exorcising":4, "exorcismal":4, "exorcize":3, "exorcized":3, "exorcizer":4, "exorcizing":4, "exordia":4, "exordial":4, "exordium":4, "exordiums":4, "exosmose":3, "exosmotic":4, "exosmosis":4, "exostosed":3, "exostotic":4, "exostosis":4, "exotic":3, "exotic dancer":5, "exoticness":4, "exotica":4, "exotically":5, "exoticism":4, "exoticist":4, "exobiologist":6, "exobiology":6, "exocarp":3, "exocentric":4, "exocrine":3, "exocrine gland":4, "exoderm":3, "exodermal":4, "exodermis":4, "exodontia":4, "exodontics":4, "exodontist":4, "exodos":3, "exodus":3, "exodus":3, "exoenzyme":4, "exoergic":4, "exogen":3, "exonarthex":4, "exonym":3, "exopathic":4, "exopeptidase":5, "exoperidium":6, "exophasia":4, "exoplasm":3, "exopod":3, "exopterygote":5, "exorability":6, "exorable":4, "exoskeletal":5, "exoskeleton":5, "exosphere":3, "exospherical":5, "exospore":3, "exosporal":4, "exoteric":4, "exoterica":5, "exoterically":6, "exotericism":5, "exothermal":4, "exothermally":5, "exothermic":4, "exothermicity":6, "exothermically":6, "exotoxic":4, "exotoxin":4, "exotropia":5, "expand":2, "expandability":6, "expandable":4, "expanded":3, "expanded metal":5, "expandedness":4, "expander":3, "expanding universe theory":9, "expandibility":6, "expandible":4, "expanse":2, "expansile":3, "expansion":3, "expansion bolt":4, "expansional":4, "expansionary":5, "expansionism":4, "expansionist":4, "expansionistic":5, "expansive":3, "expansively":4, "expansivity":5, "expansibility":6, "expansible":4, "expatriate":4, "expatiate":4, "expatiated":5, "expatiating":5, "expatiation":5, "expatiator":5, "expatriate":4, "expatriated":5, "expatriating":5, "expatriation":5, "expect":2, "expectance":3, "expectant":3, "expectantly":4, "expectancy":4, "expectable":4, "expectably":4, "expectative":4, "expected value":5, "expecter":3, "expecting":3, "expectingly":4, "expectance":3, "expectant":3, "expectancy":4, "expectation":4, "expectorant":4, "expectorate":4, "expectorated":5, "expectorating":5, "expectoration":5, "expectorator":5, "expeditate":4, "expeditated":5, "expeditating":5, "expeditation":5, "expel":2, "expelled":2, "expellant":3, "expellable":4, "expellee":3, "expellent":3, "expeller":3, "expellers":3, "expelling":3, "expend":2, "expendability":6, "expendable":4, "expender":3, "expenditure":4, "expense":2, "expense account":4, "expenseless":3, "expensive":3, "expensively":4, "expensiveness":4, "expert":2, "expertise":3, "expertised":3, "expertism":3, "expertising":4, "expertize":3, "expertized":3, "expertizing":4, "expertly":3, "expertness":3, "experiment":4, "experimenter":5, "experimenter effect":7, "experimental":5, "experimentalise":6, "experimentalism":6, "experimentalist":6, "experimentalize":6, "experimentally":6, "experimentation":6, "experimentative":6, "experimentator":6, "experimentor":5, "expertise":3, "expedite":3, "expedited":4, "expediter":4, "expediting":4, "expedience":4, "expedient":4, "expediently":5, "expediency":5, "expediential":5, "expedition":4, "expeditionary":6, "expeditious":4, "expeditiously":5, "expeditiousness":5, "expeditor":4, "experience":4, "experience table":6, "experienced":4, "experienceable":6, "experienceless":5, "experiencer":5, "experiencing":5, "experiential":5, "experientialism":6, "experientialist":6, "experientialistic":7, "experientially":6, "expire":2, "expired":2, "expiratory":5, "expiree":3, "expirer":3, "expiring":3, "expiringly":4, "expiscate":3, "expiscated":4, "expiscating":4, "expiscation":4, "expiscatory":5, "expiate":3, "expiated":4, "expiating":4, "expiable":4, "expiation":4, "expiational":5, "expiator":4, "expiatory":5, "expiration":4, "expiry":3, "explain":2, "explain away":4, "explainable":4, "explainer":3, "explant":2, "explanative":4, "explanatively":5, "explanatorily":6, "explanatory":5, "explantation":4, "explanate":3, "explanation":4, "explanator":4, "explement":3, "explemental":4, "expletive":3, "expletively":4, "expletory":4, "explicit":3, "explicitly":4, "explicitness":4, "explicans":3, "explicandum":4, "explicantia":5, "explicate":3, "explicated":4, "explicating":4, "explicable":4, "explication":4, "explication de texte":6, "explicative":4, "explicatively":5, "explicator":4, "explicatory":5, "explode":2, "exploded":3, "exploded view":4, "explodent":3, "exploder":3, "exploding":3, "exploding star":4, "exploit":2, "exploitable":4, "exploitative":4, "exploitatory":5, "exploiter":3, "exploitation":4, "explore":2, "explored":2, "explorable":4, "explorative":4, "exploratively":5, "exploratory":5, "explorer":3, "explorer":3, "exploring":3, "exploringly":4, "exploration":4, "explosimeter":5, "explosion":3, "explosive":3, "explosively":4, "explosiveness":4, "explosibility":6, "explosible":4, "expo":2, "exponible":4, "export":2, "export reject":4, "exportable":4, "exporter":3, "exportation":4, "expose":2, "exposed":2, "exposal":3, "exposable":4, "exposedness":4, "exposer":3, "exposing":3, "expositive":4, "expositively":5, "expositor":4, "expositorial":6, "expositorially":7, "expositorily":6, "expository":5, "expostulate":4, "expostulated":5, "expostulating":5, "expostulatingly":6, "expostulation":5, "expostulative":5, "expostulator":5, "expostulatory":6, "expound":2, "expounder":3, "exponent":3, "exponential":4, "exponential distribution":8, "exponentially":5, "exponible":4, "expos":3, "exposition":4, "expositional":5, "exposure":3, "exposure meter":5, "expos":4, "express":2, "express rifle":4, "expressage":3, "expressable":4, "expresser":3, "expressible":4, "expressless":3, "expressly":3, "expressman":3, "expresso":3, "expressway":3, "expression":3, "expression mark":4, "expressional":4, "expressionism":4, "expressionism":4, "expressionist":4, "expressionistic":5, "expressionistically":7, "expressionless":4, "expressionlessly":5, "expressive":3, "expressively":4, "expressiveness":4, "expressivity":5, "expressionismus":6, "expressor":3, "expropriate":4, "expropriated":5, "expropriating":5, "expropriable":5, "expropriation":5, "expropriator":5, "expugnable":4, "expulsion":3, "expulsive":3, "expunction":3, "expunge":2, "expunged":2, "expunger":3, "expunging":3, "expurgate":3, "expurgated":4, "expurgating":4, "expurgation":4, "expurgator":4, "expurgatorial":6, "expurgatory":5, "exquisite":3, "exquisite":3, "exquisitely":4, "exquisiteness":4, "exsanguine":3, "exsanguinity":5, "exsanguinate":4, "exsanguinated":5, "exsanguinating":5, "exsanguination":5, "exsanguinous":4, "exscind":2, "exsect":2, "exsectile":3, "exsection":3, "exsert":2, "exserted":3, "exsertile":3, "exsertion":3, "exsecant":3, "exsiccate":3, "exsiccated":4, "exsiccating":4, "exsiccation":4, "exsiccative":4, "exsiccator":4, "exsolve":2, "exsolved":2, "exsolving":3, "exsolution":4, "exstipulate":4, "exstrophy":3, "exsufflicate":4, "extant":2, "extasie":3, "extemporal":4, "extemporally":5, "extemporarily":6, "extemporariness":6, "extemporary":5, "extemporaneity":7, "extemporaneous":6, "extemporaneously":7, "extemporaneousness":7, "extempore":4, "extemporise":4, "extemporised":4, "extemporiser":5, "extemporising":5, "extemporize":4, "extemporized":4, "extemporizer":5, "extemporizing":5, "extemporization":6, "extend":2, "extendability":6, "extendable":4, "extended":3, "extended family":6, "extended-play":3, "extendedly":4, "extendedness":4, "extender":3, "extendibility":6, "extendible":4, "extent":2, "extensile":3, "extensimeter":5, "extension":3, "extensional":4, "extensionalism":5, "extensionality":6, "extensionally":5, "extensionless":4, "extensive":3, "extensively":4, "extensiveness":4, "extensivity":5, "extensibility":6, "extensible":4, "extensibleness":5, "extensity":4, "extensometer":5, "extensor":3, "extenuate":4, "extenuated":5, "extenuating":5, "extenuatingly":6, "extenuation":5, "extenuative":5, "extenuator":5, "extenuatory":6, "extern":2, "externe":2, "extermine":3, "extermined":3, "extermining":4, "exterminate":4, "exterminated":5, "exterminating":5, "exterminable":5, "extermination":5, "exterminative":5, "exterminator":5, "exterminatory":6, "external":3, "external ear":4, "external-combustion":5, "external-combustion engine":7, "externalise":4, "externalised":4, "externalism":4, "externalist":4, "externalising":5, "externalize":4, "externalized":4, "externalizing":5, "externalisation":6, "externality":5, "externalization":6, "externally":4, "exteroceptive":5, "exteroceptor":5, "exterritorial":6, "exterritoriality":8, "exterritorially":7, "exterior":4, "exterior angle":6, "exteriorise":5, "exteriorised":5, "exteriorising":6, "exteriorize":5, "exteriorized":5, "exteriorizing":6, "exteriorization":7, "exteriorly":5, "extinct":2, "extinction":3, "extinctive":3, "extine":2, "extinguish":3, "extinguishant":4, "extinguishable":5, "extinguisher":4, "extinguishment":4, "extirpate":3, "extirpated":4, "extirpating":4, "extirpation":4, "extirpative":4, "extirpator":4, "extol":2, "extoll":2, "extolled":2, "extollment":3, "extoller":3, "extolling":3, "extollingly":4, "extolment":3, "extort":2, "extorter":3, "extorsive":3, "extorsively":4, "extortion":3, "extortionary":5, "extortionate":4, "extortionately":5, "extortioner":4, "extortionist":4, "extortive":3, "extra":2, "extra cover":4, "extra time":3, "extra-atmospheric":5, "extra-condensed":3, "extract":2, "extractant":3, "extractability":6, "extractable":4, "extractibility":6, "extractible":4, "extraction":3, "extractions":3, "extractive":3, "extractor":3, "extraordinarily":6, "extraordinariness":6, "extraordinary":5, "extraordinary ray":6, "extrapolate":4, "extrapolated":5, "extrapolating":5, "extrapolation":5, "extrapolative":5, "extrapolator":5, "extrapolatory":6, "extravagance":4, "extravagant":4, "extravagantly":5, "extravagantness":5, "extravagancy":5, "extravaganza":5, "extravagate":4, "extravagated":5, "extravagating":5, "extravasate":4, "extravasated":5, "extravasating":5, "extravasation":5, "extrabold":3, "extracapsular":5, "extracanonical":6, "extracellular":5, "extracellularly":6, "extracorporeal":6, "extracurricular":6, "extradite":3, "extraditable":5, "extradited":4, "extraditing":4, "extradition":4, "extrados":3, "extradosed":3, "extraembryonal":6, "extraembryonic":6, "extrafloral":4, "extragalactic":5, "extragalactic nebula":8, "extrajudicial":5, "extrajudicially":6, "extralegal":4, "extralegally":5, "extramarital":5, "extrametrical":5, "extramundane":4, "extramural":4, "extramurally":5, "extraneous":4, "extraneously":5, "extraneousness":5, "extranuclear":5, "extraphysical":5, "extraposition":5, "extraprofessional":6, "extrapunitive":5, "extrasensorial":6, "extrasensory":5, "extrasensory perception":8, "extrasystolic":5, "extrasystole":5, "extraterrestrial":6, "extraterritorial":7, "extraterritoriality":9, "extraterritorially":8, "extrauterine":5, "extravaginal":5, "extravascular":5, "extravert":3, "extraversion":4, "extraversively":5, "extravertive":4, "extravertively":5, "extravehicular":6, "extreme":2, "extreme unction":4, "extremely":3, "extremely high frequency":7, "extremeness":3, "extremer":3, "extremest":3, "extremism":3, "extremist":3, "extremity":4, "extremal":3, "extremadura":5, "extremum":3, "extrinsic":3, "extrinsical":4, "extrinsically":5, "extricate":3, "extricated":4, "extricating":4, "extricable":4, "extrication":4, "extrorse":2, "extrorsely":3, "extrorsal":3, "extrospection":4, "extrospective":4, "extrovert":3, "extrovertish":4, "extroversion":4, "extroversive":4, "extroversively":5, "extrovertive":4, "extrovertively":5, "extrude":2, "extruded":3, "extruder":3, "extruding":3, "extrusile":3, "extrusion":3, "extrusive":3, "extrusible":4, "exude":2, "exuded":3, "exuding":3, "exult":2, "exultant":3, "exultantly":4, "exultancy":4, "exultingly":4, "exultation":4, "exultet":3, "exurb":2, "exurbanite":4, "exurbia":4, "exuberance":4, "exuberant":4, "exuberantly":5, "exuberancy":5, "exuberate":4, "exuberated":5, "exuberating":5, "exudate":3, "exudation":4, "exudative":4, "exuviae":4, "exuvial":4, "exuviate":4, "exuviated":5, "exuviating":5, "exuviation":5, "eyck":1, "eye":1, "eye shadow":3, "eye socket":3, "eye-catching":2, "eye-filling":2, "eye-minded":2, "eye-mindedness":3, "eye-opener":3, "eye-opening":3, "eye-popper":2, "eye-popping":2, "eyed":1, "eyes":1, "eyeable":3, "eyeball":2, "eyebar":2, "eyebath":2, "eyebeam":2, "eyeblack":2, "eyebolt":2, "eyebright":2, "eyebrow":2, "eyecup":2, "eyedropper":3, "eyeful":2, "eyeglass":2, "eyeglasses":3, "eyeground":2, "eyehole":2, "eyehook":2, "eyeing":2, "eyelash":2, "eyeless":2, "eyelet":2, "eyeleted":3, "eyeleteer":3, "eyeleting":3, "eyeletted":3, "eyeletting":3, "eyelid":2, "eyelike":2, "eyeliner":3, "eyeopener":4, "eyepiece":2, "eyepit":2, "eyeservant":3, "eyeserver":3, "eyeservice":3, "eyeshade":2, "eyeshot":2, "eyesight":2, "eyesome":2, "eyesore":2, "eyespot":2, "eyestalk":2, "eyestone":2, "eyestrain":2, "eyestrings":2, "eyetie":2, "eyetooth":2, "eyewash":2, "eyewater":3, "eyewink":2, "eyewinker":3, "eyewitness":3, "eyne":1, "eyot":1, "eyre":1, "eyre":1, "eyre peninsula":5, "eysk":1, "eyas":2, "eyass":2, "eyen":2, "eyer":2, "eying":2, "eyot":2, "eyra":2, "eyrie":2, "eyrir":2, "eyry":2, "eysenck":2, "ezek":1, "ezr":1, "ezechias":4, "ezra":2, "ezzard":2, "eably":3, "ebert":2, "eberhart":3, "eboracum":4, "ebracteate":4, "ebro":2, "ebullience":3, "ebullient":3, "ebulliently":4, "ebulliency":4, "ebullioscopy":6, "ebullition":4, "eburnation":4, "ecad":2, "ecalcarate":4, "ecarinate":4, "ecart":3, "ecaudate":3, "ecesic":3, "ecesis":3, "ecevit":3, "echelle":2, "echecles":3, "echegaray":4, "echelon":3, "echemus":3, "echetus":3, "echeverra":6, "echidna":3, "echiuroid":3, "echinoid":3, "echinococcus":5, "echinoderm":4, "echinodermata":6, "echinodermatous":6, "echinus":3, "echion":3, "echoic":3, "echoism":3, "eclair":2, "eclat":2, "eclipse":2, "eclipse plumage":4, "eclipsed":2, "eclipser":3, "eclipsing":3, "eclipsing binary":6, "eclipsis":3, "ecliptic":3, "ecliptical":4, "ecliptically":5, "eclosion":3, "ecologist":4, "ecology":4, "econometric":5, "econometrics":5, "econometrical":6, "econometrician":6, "economise":4, "economised":4, "economist":4, "economiser":5, "economising":5, "economize":4, "economized":4, "economizer":5, "economizing":5, "economo's disease":6, "economy":4, "economy":4, "ecorse":2, "ecorch":3, "ecossaise":3, "ecocide":3, "economic":4, "economic determinism":8, "economic geography":8, "economic rent":5, "economics":4, "economical":5, "economically":6, "ecospecies":4, "ecosphere":3, "ecosystem":4, "ecotone":3, "ecotype":3, "ecraseur":3, "ecu":2, "ecumenic":4, "ecumenical":5, "ecumenical council":7, "ecumenicalism":6, "ecumenicism":5, "ecurie":3, "edacity":4, "edam":2, "edaphic":3, "edaphically":5, "edacious":3, "ede":2, "edelweiss":3, "edematous":4, "eden":2, "edenic":3, "edentate":3, "edentata":4, "edenton":3, "edentulate":4, "edentulous":4, "ederle":3, "edessa":3, "edessan":3, "edessene":3, "edema":3, "edemata":4, "edhessa":3, "edict":2, "edict of nantes":4, "edictal":3, "edictally":4, "edie":2, "edificatory":6, "edile":2, "edirne":3, "edith":2, "edithe":2, "edina":3, "edition":3, "editio princeps":6, "edo":2, "edom":2, "edomite":3, "edomitic":4, "edomitish":4, "eduardo":3, "educe":2, "educed":2, "educt":2, "educing":3, "educible":4, "eduction":3, "eductive":3, "eductor":3, "edulcorate":4, "edulcorated":5, "edulcorating":5, "edulcoration":5, "edulcorative":5, "eduard":3, "edyie":2, "edyth":2, "edythe":2, "efah":3, "efahan":3, "egad":2, "egal":2, "egalitarian":6, "egalitarianism":7, "egadi":3, "eger":2, "egest":2, "egesta":3, "egesta":3, "egestion":3, "egestive":3, "egeria":4, "egis":2, "eglomise":4, "ego":2, "ego ideal":4, "egon":2, "egos":2, "egocentric":4, "egocentricity":6, "egocentrism":4, "egoism":3, "egoist":3, "egoistic":4, "egoistical":5, "egoistically":6, "egomania":5, "egomaniac":5, "egomaniacal":6, "egotism":3, "egotist":3, "egotistic":4, "egotistical":5, "egotistically":6, "egress":2, "egression":3, "egret":2, "egregious":3, "egregiously":4, "egregiousness":4, "egypt":2, "egyptian":3, "egyptianise":4, "egyptianised":4, "egyptianism":4, "egyptianising":5, "egyptianize":4, "egyptianized":4, "egyptianizing":5, "egyptianization":6, "egypticity":5, "egyptiac":4, "egyptologist":5, "egyptology":5, "egyptological":6, "eioneus":4, "ejaculate":4, "ejaculated":5, "ejaculating":5, "ejaculation":5, "ejaculative":5, "ejaculator":5, "ejaculatory":6, "eject":2, "ejectment":3, "ejecta":3, "ejection":3, "ejection seat":4, "ejective":3, "ejectively":4, "ejector":3, "ejector seat":4, "ejido":3, "ekaterinburg":5, "ekaterinodar":6, "ekaterinoslav":6, "ekistics":3, "elaborate":4, "elaborately":5, "elaborateness":5, "elaborated":5, "elaborating":5, "elaboration":5, "elaborative":5, "elaboratively":6, "elaborator":5, "elaine":2, "elam":2, "elamite":3, "elamitic":4, "elan":2, "eland":2, "elands":2, "elapse":2, "elapsed":2, "elapsing":3, "elasmobranch":4, "elasmosaur":4, "elastance":3, "elastic":3, "elastic band":4, "elastic limit":5, "elastic modulus":6, "elasticity":5, "elastin":3, "elastically":5, "elasticate":4, "elasticise":4, "elasticize":4, "elasticized":4, "elasticizing":5, "elastomer":4, "elastomeric":5, "elastoplast":4, "elat":2, "elate":2, "elath":2, "elated":3, "elatedly":4, "elatedness":4, "elaterid":4, "elaterin":4, "elaterite":4, "elating":3, "elara":3, "elation":3, "elative":3, "elatus":3, "elazig":3, "elas":4, "elect":2, "election":3, "electioneer":4, "electioneerer":5, "elective":3, "electively":4, "electiveness":4, "elector":3, "electoral":4, "electorally":5, "electorate":4, "electoral college":6, "electra":3, "electra complex":5, "electress":3, "electret":3, "electric":3, "electric blue":4, "electric chair":4, "electric charge":4, "electric constant":5, "electric current":5, "electric eel":4, "electric eye":4, "electric field":4, "electric field strength":5, "electric furnace":5, "electric guitar":5, "electric hare":4, "electric needle":5, "electric organ":5, "electric potential":6, "electric ray":4, "electric shock":4, "electric storm":4, "electricity":5, "electrical":4, "electrical engineering":8, "electrically":5, "electricalness":5, "electrician":4, "electrides":4, "electrified":4, "electrification":6, "electrifier":5, "electrify":4, "electrifying":5, "electro":3, "electro-osmotic":5, "electro-osmotically":7, "electro-osmosis":5, "electrode":3, "electrode potential":6, "electrography":5, "electrologist":5, "electrolysis":5, "electrometer":5, "electrometry":5, "electron":3, "electron affinity":7, "electron camera":6, "electron gun":4, "electron lens":4, "electron microscope":6, "electron multiplier":7, "electron optics":5, "electron probe microanalysis":10, "electron spin resonance":7, "electron telescope":6, "electron tube":4, "electron-volt":3, "electronic":4, "electronic data processing":9, "electronic flash":5, "electronic music":6, "electronic organ":6, "electronics":4, "electronically":6, "electronvolt":4, "electrophori":5, "electrophorus":5, "electrotonus":5, "electroanalytic":7, "electroacoustic":6, "electroacoustics":6, "electroacoustical":7, "electroacoustically":8, "electroanalysis":7, "electroballistic":6, "electroballistics":6, "electroballistically":8, "electroballistician":7, "electrobiologist":7, "electrobiology":7, "electrobiological":8, "electrobiologically":9, "electrocardiography":8, "electrocardiogram":7, "electrocardiograph":7, "electrocardiographic":8, "electrocardiographically":10, "electrocauteries":6, "electrocauterization":8, "electrocautery":6, "electrochemist":5, "electrochemistry":6, "electrochemical":6, "electrochemical series":8, "electrochemically":7, "electroconvulsive therapy":9, "electrocorticogram":7, "electrocoagulation":8, "electrocratic":5, "electrocute":4, "electrocuted":5, "electrocuting":5, "electrocution":5, "electrodeposition":7, "electrodeposit":6, "electrodissolution":7, "electrodiagnostic":7, "electrodiagnostically":9, "electrodiagnosis":7, "electrodialysis":7, "electrodialitic":7, "electrodialitically":9, "electrodynamic":6, "electrodynamics":6, "electrodynamical":7, "electrodynamometer":8, "electroencephalography":9, "electroencephalogram":8, "electroencephalograph":8, "electroencephalographic":9, "electroencephalographically":11, "electroextraction":6, "electroform":4, "electroforming":5, "electrograph":4, "electrographic":5, "electrohemostasis":7, "electrojet":4, "electrokinetic":6, "electrokinetics":6, "electrolier":4, "electroluminescence":7, "electroluminescent":7, "electrolyse":4, "electrolysed":4, "electrolyser":5, "electrolysing":5, "electrolyte":4, "electrolytic":5, "electrolytic cell":6, "electrolytic gas":6, "electrolytical":6, "electrolytically":7, "electrolyze":4, "electrolyzed":4, "electrolyzer":5, "electrolyzing":5, "electrolyzation":6, "electromagnet":5, "electromagnetic":6, "electromagnetic field":7, "electromagnetic interaction":10, "electromagnetic moment":8, "electromagnetic pump":7, "electromagnetic radiation":10, "electromagnetic spectrum":8, "electromagnetic unit":8, "electromagnetic wave":7, "electromagnetics":6, "electromagnetism":6, "electromagnetism":6, "electromagnetist":6, "electromerism":5, "electrometallurgist":7, "electrometallurgical":8, "electrometallurgy":7, "electrometric":5, "electrometrically":7, "electromechanical":7, "electrometeor":6, "electromotive":5, "electromotive force":6, "electromotive series":7, "electromotor":5, "electromyography":7, "electromyogram":6, "electromyographic":7, "electromyographically":9, "electronarcosis":6, "electronegative":6, "electronegativity":8, "electroneutral":5, "electroneutrality":7, "electroosmotic":6, "electroosmotically":8, "electroosmosis":6, "electrophilic":5, "electrophilically":7, "electrophone":4, "electrophonic":5, "electrophonically":7, "electrophoretic":6, "electrophoresis":6, "electrophotography":7, "electrophotographic":7, "electrophysiologist":8, "electrophysiology":8, "electrophysiological":9, "electrophysiologically":10, "electroplaque":4, "electroplate":4, "electroplated":5, "electroplater":5, "electroplating":5, "electroplax":4, "electropolish":5, "electropositive":6, "electropositive":6, "electroreduction":6, "electrorefining":6, "electroscope":4, "electroscopic":5, "electrosensitive":6, "electroshock":4, "electroshock therapy":7, "electrostatic":5, "electrostatic generator":9, "electrostatic lens":6, "electrostatic precipitation":10, "electrostatic unit":7, "electrostatics":5, "electrostatically":7, "electrostriction":5, "electrostrictive":5, "electrosurgery":6, "electrosurgical":6, "electrosurgically":7, "electrosynthetic":6, "electrosynthetically":8, "electrosynthesis":6, "electrotactic":5, "electrotaxis":5, "electrotechnic":5, "electrotechnics":5, "electrotechnical":6, "electrotechnician":6, "electrotechnology":7, "electrotherapeutic":7, "electrotherapeutics":7, "electrotherapeutist":7, "electrotherapeutical":8, "electrotherapist":6, "electrotherapy":6, "electrothermal":5, "electrothermally":6, "electrothermic":5, "electrothermics":5, "electrotonic":5, "electrotropic":5, "electrotropism":5, "electrotype":4, "electrotyped":4, "electrotyper":5, "electrotypic":5, "electrotyping":5, "electrotypist":5, "electrotypy":5, "electrovalence":5, "electrovalent":5, "electrovalent bond":6, "electrovalently":6, "electrovalency":6, "electrowinning":5, "electrum":3, "electryon":4, "electuaries":5, "electuary":5, "eleia":3, "elektra":3, "elenctic":3, "elenchus":3, "eleusis":3, "eleuthera":4, "eleutherois":4, "eleven":3, "eleven-plus":3, "elevens":3, "elevenses":4, "eleventh":3, "eleventh chord":4, "eleventh hour":4, "elevenses":4, "elevs":3, "elea":3, "elegit":3, "eleonora":5, "eli":2, "elias":2, "elicit":3, "elicitable":5, "elicitation":5, "elicitor":4, "elide":2, "elided":3, "eliding":3, "elidible":4, "eliminant":4, "eliminate":4, "eliminated":5, "eliminating":5, "eliminability":7, "eliminable":5, "elimination":5, "eliminative":5, "eliminator":5, "eliminatory":6, "elinguate":3, "elinguated":4, "elinguating":4, "elinguation":4, "elis":2, "elise":2, "elisa":3, "elisabeth":4, "elisabethville":5, "elisor":3, "elissa":3, "elite":2, "elitism":3, "elitist":3, "elixir":3, "elizabeth":4, "elizabeth i":5, "elizabeth ii":5, "elizabethtown":5, "elizabethan":5, "elizabethan sonnet":7, "elia":3, "elias":3, "elicius":3, "elijah":3, "elik":3, "elisavetgrad":5, "elisavetpol":5, "elisha":3, "elisia":3, "elision":3, "eliza":3, "eloign":2, "eloigner":3, "eloignment":3, "eloin":2, "eloiner":3, "eloinment":3, "elongate":3, "elongated":4, "elongating":4, "elongation":4, "elongative":4, "elope":2, "eloped":2, "elopement":3, "eloper":3, "eloping":3, "eloy":2, "elohim":3, "elohism":3, "elohist":3, "elude":2, "eluded":3, "eluder":3, "eluding":3, "elul":2, "elute":2, "eluted":3, "eluting":3, "eluard":3, "elucidate":4, "elucidated":5, "elucidating":5, "elucidation":5, "elucidative":5, "elucidator":5, "elura":3, "elusion":3, "elusive":3, "elusively":4, "elusiveness":4, "elusory":4, "elution":3, "elutriate":4, "elutriated":5, "elutriating":5, "elutriation":5, "elutriator":5, "eluvia":4, "eluvial":4, "eluviate":4, "eluviated":5, "eluviating":5, "eluviation":5, "eluvium":4, "ely":2, "elyria":4, "elyse":2, "elys":3, "elysia":3, "elysian":3, "elysian":4, "elysium":4, "emancipate":4, "emancipated":5, "emancipating":5, "emancipation":5, "emancipationist":6, "emancipative":5, "emancipator":5, "emancipatory":6, "emancipist":4, "emanuel":4, "emarginate":4, "emarginately":5, "emarginated":5, "emargination":5, "emasculate":4, "emasculated":5, "emasculating":5, "emasculation":5, "emasculative":5, "emasculator":5, "emasculatory":6, "emaciate":4, "emaciated":5, "emaciating":5, "emaciation":5, "emanuel":4, "emathion":4, "emeer":2, "emeerate":3, "emelda":3, "emelia":3, "emend":2, "emendable":4, "emendate":3, "emendated":4, "emendating":4, "emendation":4, "emendator":4, "emendatory":5, "emerge":2, "emerged":2, "emerging":3, "emersed":2, "emergence":3, "emergent":3, "emergent evolution":7, "emergently":4, "emergentness":4, "emergency":4, "emeritus":4, "emersion":3, "emetic":3, "emeu":2, "emiction":3, "emil":2, "emir":2, "emirate":3, "emission":3, "emission spectrum":5, "emissive":3, "emissivity":5, "emit":2, "emittance":3, "emitted":3, "emitter":3, "emitting":3, "emigr":3, "emilia-romagna":5, "emiliano":4, "emilio":3, "emilia-romagna":6, "emilio":4, "eminescu":4, "emollience":3, "emollient":3, "emolument":4, "emote":2, "emoted":3, "emoter":3, "emoting":3, "emotion":3, "emotional":4, "emotionalise":5, "emotionalised":5, "emotionalism":5, "emotionalist":5, "emotionalising":6, "emotionalistic":6, "emotionalize":5, "emotionalized":5, "emotionalizing":6, "emotionality":6, "emotionally":5, "emotionable":5, "emotionless":4, "emotive":3, "emotively":4, "emotiveness":4, "emotivity":5, "emotivism":4, "emu":2, "emu bush":3, "emu-wren":2, "emulsion":3, "emulsive":3, "emulsibility":6, "emulsible":4, "emulsified":4, "emulsifiability":8, "emulsifiable":6, "emulsification":6, "emulsifier":5, "emulsify":4, "emulsifying":5, "emulsoid":3, "emulsoidal":4, "emunctory":4, "emulation":4, "ena":2, "enamel":3, "enameled":3, "enamelled":3, "enameler":4, "enameling":4, "enamelist":4, "enameller":4, "enamelling":4, "enamellist":4, "enamelware":4, "enamelwork":4, "enarete":4, "enate":2, "enatic":3, "enaceous":3, "enalus":3, "enesco":3, "eneolithic":5, "enesco":3, "enid":2, "enigma":3, "enigmas":3, "enigmata":4, "enigmatise":4, "enigmatize":4, "eniopeus":4, "enoch":2, "enol":2, "enolic":3, "enology":4, "enorm":2, "enormity":4, "enormous":3, "enormously":4, "enormousness":4, "enos":2, "enough":2, "enounce":2, "enounced":2, "enouncement":3, "enouncing":3, "enow":2, "enola":3, "enolate":3, "enolize":3, "enolized":3, "enolizable":5, "enolizing":4, "enolization":5, "enological":5, "enone":3, "enosis":3, "enumclaw":3, "enunciate":4, "enunciated":5, "enunciating":5, "enunciability":7, "enunciable":5, "enunciation":5, "enunciative":5, "enunciatively":6, "enunciator":5, "enunciatory":6, "enucleate":4, "enucleated":5, "enucleating":5, "enucleation":5, "enucleator":5, "enugu":3, "enumerate":4, "enumerated":5, "enumerating":5, "enumerable":5, "enumerably":5, "enumeration":5, "enumerative":5, "enumerator":5, "enyeus":3, "enyo":3, "eolic":3, "eolipile":4, "eon":2, "eonism":3, "eos":2, "eobiont":4, "eocene":3, "eogene":3, "eohippus":4, "eolande":4, "eoline":3, "eolith":3, "eolithic":4, "eolithic":4, "eolian":4, "eonism":3, "eonian":4, "eosin":3, "eosine":3, "eosinic":4, "eosinlike":4, "eosinophil":5, "eosinophile":5, "eosinophilic":6, "eosinophilia":7, "eosinophilous":6, "eozoic":4, "ep":2, "epact":2, "epaminondas":5, "epanodos":4, "epee":2, "epeiric":3, "epeirogenesis":6, "epeirogenic":5, "epenthesis":4, "epergne":2, "epeans":3, "epeus":3, "epha":2, "ephah":2, "ephebe":2, "ephedra":3, "ephedrin":3, "ephedrine":3, "ephemera":4, "ephemerae":4, "ephemeral":4, "ephemerality":6, "ephemerally":5, "ephemeralness":5, "ephemeras":4, "ephemerid":4, "ephemeris":4, "ephemeris time":5, "ephemeron":4, "ephebic":3, "ephebos":3, "ephebus":3, "ephemerides":5, "ephesian":3, "ephesians":3, "ephippia":4, "ephippial":4, "ephippium":4, "ephod":2, "ephraim":3, "ephraimite":4, "ephraimitic":5, "ephrata":3, "epiboly":4, "epicrisis":4, "epigenes":4, "epigenist":4, "epigenous":4, "epigoni":4, "epigonism":4, "epigonus":4, "epigrapher":4, "epigraphist":4, "epigraphy":4, "epigynous":4, "epigynum":4, "epigyny":4, "epilogist":4, "epimeride":4, "epimerism":4, "epiphanise":4, "epiphanised":4, "epiphanising":5, "epiphanize":4, "epiphanized":4, "epiphanizing":5, "epiphany":4, "epiphany":4, "epiphora":4, "epiphysis":4, "epiploon":4, "episcopal":4, "episcopal":4, "episcopal church":5, "episcopalism":5, "episcopally":5, "episcopally":5, "episcopate":4, "episcopacy":5, "episcopalian":5, "episcopalianism":6, "episcopalian":6, "episcopalian":6, "episcopise":4, "episcopised":4, "episcopising":5, "episcopize":4, "episcopized":4, "episcopizing":5, "episcotister":5, "episkotister":5, "epistasis":4, "epistemologist":6, "epistemology":6, "epistemological":7, "epistemologically":8, "epistle":3, "epistle":3, "epistler":3, "epistolary":5, "epistoler":4, "epistolise":4, "epistolised":4, "epistolist":4, "epistolising":5, "epistolize":4, "epistolized":4, "epistolizing":5, "epistolography":6, "epistrophe":4, "epitasis":4, "epitome":4, "epitomise":4, "epitomised":4, "epitomist":4, "epitomiser":5, "epitomising":5, "epitomize":4, "epitomized":4, "epitomizer":5, "epitomizing":5, "epitomization":6, "epicleses":4, "epiclesis":4, "epicurean":5, "epidural":4, "epikleses":4, "epiklesis":4, "epimysium":5, "epione":4, "epirote":3, "epirus":3, "epistaxis":4, "epistasis":4, "epitrachelia":6, "epitrachelion":6, "epoch":2, "epoch-making":3, "eponymy":4, "epoxide":3, "epoxide resin":5, "epoxy":3, "epyllion":4, "epist":3, "epicentre":5, "equal":2, "equal sign":3, "equal-area":4, "equaled":2, "equalled":2, "equals sign":3, "equaling":3, "equalise":3, "equalised":3, "equaliser":4, "equalising":4, "equalize":3, "equalized":3, "equalizer":4, "equalizing":4, "equalitarian":6, "equalitarianism":7, "equality":4, "equalization":5, "equalling":3, "equally":3, "equanimous":4, "equanimously":5, "equanimousness":5, "equate":2, "equatability":6, "equatable":4, "equated":3, "equating":3, "equanil":3, "equanimity":5, "equation":3, "equation of time":5, "equational":4, "equationally":5, "equator":3, "equatorial":5, "equatorial guinea":7, "equatorial telescope":8, "equatorially":6, "equestrian":4, "equestrianism":5, "equestrienne":4, "equi-np-deletion":4, "equilibrant":4, "equilibrate":4, "equilibrated":5, "equilibrating":5, "equilibratory":6, "equilibrist":4, "equilibristic":5, "equine":2, "equinely":3, "equinity":4, "equip":2, "equipped":2, "equipment":3, "equipper":3, "equipping":3, "equivalence":4, "equivalent":4, "equivalent circuit":6, "equivalent focal length":7, "equivalent weight":5, "equivalently":5, "equivalency":5, "equivocal":4, "equivocality":6, "equivocally":5, "equivocalness":5, "equivocate":4, "equivocated":5, "equivocating":5, "equivocatingly":6, "equivocacy":5, "equivocation":5, "equivocator":5, "equiangular":5, "equiangularity":7, "equicontinuous":6, "equidistance":4, "equidistant":4, "equidistantly":5, "equiform":3, "equiformal":4, "equilateral":5, "equilaterally":6, "equilateral":5, "equilibria":5, "equilibrious":5, "equilibrium":5, "equilibriums":5, "equilibration":5, "equilibrator":5, "equimolecular":6, "equinoctial":4, "equinoctial circle":6, "equinoctial point":5, "equinoctial year":5, "equinox":3, "equipoise":3, "equipoised":3, "equipoising":4, "equipollence":4, "equipollent":4, "equipollently":5, "equipollency":5, "equiponderance":5, "equiponderant":5, "equiponderancy":6, "equiponderate":5, "equiponderated":6, "equiponderating":6, "equiponderation":6, "equipotent":4, "equipotential":5, "equipotentiality":8, "equiprobability":7, "equiprobabilism":6, "equiprobable":5, "equiprobably":5, "equirotal":4, "equivalve":3, "equuleus":4, "equulei":4, "equuleus":4, "era":2, "eradicant":4, "eradicate":4, "eradicated":5, "eradicating":5, "eradicable":5, "eradicably":5, "eradication":5, "eradicative":5, "eradicator":5, "erase":2, "erased":2, "erasability":6, "erasable":4, "eraser":3, "erasing":3, "erasmian":4, "erasmianism":5, "erasmus":3, "erastian":3, "erastianism":4, "erastianism":5, "erastus":3, "erasure":3, "eradiate":4, "eradiated":5, "eradiating":5, "eradiation":5, "erasion":3, "erech":2, "erechtheion":4, "erechtheus":3, "erechtheum":4, "erechtheus":4, "erect":2, "erectable":4, "erecter":3, "erectly":3, "erectness":3, "erectile":3, "erectility":5, "erection":3, "erective":3, "erector":3, "erenburg":3, "erepsin":3, "ereshkigal":4, "ereshkigel":4, "erechim":3, "erevan":3, "erich":2, "eridani":4, "eridanus":4, "erie":2, "erie canal":4, "eries":2, "erigeron":4, "erigena":4, "erigone":4, "erin":2, "eringo":3, "erinys":3, "erinyes":4, "eris":2, "eridu":3, "erivan":3, "erode":2, "erodability":6, "erodable":4, "eroded":3, "erodent":3, "eroding":3, "erodibility":6, "erodible":4, "erogeneity":6, "erogenous":4, "eros":2, "erose":2, "erosely":3, "erotic":3, "erotica":4, "erotical":4, "erotically":5, "eroticism":4, "erotology":5, "erodium":4, "erosion":3, "erosional":4, "erosive":3, "erosiveness":4, "erosivity":5, "erosible":4, "erotes":3, "erotogenesis":6, "erotogenic":5, "erotomania":6, "erotomaniac":6, "eruct":2, "eructate":3, "eructated":4, "eructating":4, "eructation":4, "eructative":4, "erumpent":3, "erupt":2, "eruptible":4, "eruption":3, "eruptional":4, "eruptive":3, "eruptively":4, "eruptiveness":4, "eruptivity":5, "eruciform":4, "eryngo":3, "erythrism":3, "erythrite":3, "erythritol":4, "erythroblast":4, "erythroblastic":5, "erythroblastotic":6, "erythroblastosis":6, "erythrocyte":4, "erythrocytic":5, "erythrocytometer":7, "erythrocytometry":7, "erythromycin":5, "erythrophobia":6, "erythrophyll":4, "erythropoietic":6, "erythropoiesis":6, "esau":2, "esaki diode":5, "escribe":2, "escribed":2, "escribing":3, "esenin":3, "esher":2, "eskilstuna":4, "eskilstuna":4, "esophageal":5, "esophagitis":5, "esophagus":4, "esquamate":3, "estipulate":4, "esurience":4, "esurient":4, "esuriently":5, "esuriency":5, "eta":2, "eta":2, "etaerio":4, "etas":2, "etalon":3, "eterne":2, "eternal":3, "eternal city":5, "eternal triangle":6, "eternalise":4, "eternalised":4, "eternalising":5, "eternalize":4, "eternalized":4, "eternalizing":5, "eternality":5, "eternally":4, "eternise":3, "eternised":3, "eternising":4, "eternize":3, "eternized":3, "eternizing":4, "eternity":4, "eternity ring":5, "eternization":5, "eteocles":4, "etesian":3, "etesian":4, "ethan":2, "ethane":2, "ethanediol":4, "ethanedioic acid":7, "ethanamide":4, "ethelda":3, "ether":2, "etherise":3, "etherize":3, "etherized":3, "etherizer":4, "etherizing":4, "etherified":4, "etherification":6, "etherify":4, "etherifying":5, "etherization":5, "ethereal":4, "etherealise":5, "etherealised":5, "etherealising":6, "etherealize":5, "etherealized":5, "etherealizing":6, "etherealisation":7, "ethereality":6, "etherealization":7, "ethereally":5, "etherealness":5, "ethereous":4, "etheria":4, "etherialise":5, "etherialised":5, "etherialising":6, "etherialize":5, "etherialized":5, "etherializing":6, "etherialization":7, "ethinamate":4, "ethician":3, "ethiop":3, "ethiope":3, "ethiopic":4, "ethiopic":4, "ethiopia":5, "ethiopian":5, "ethologist":4, "ethology":4, "ethos":2, "ethyl":2, "ethyl acetate":5, "ethyl alcohol":5, "ethyl carbamate":5, "ethyl ether":4, "ethylic":3, "ethyne":2, "ethynyl":3, "ethynylation":5, "etienne":2, "etiologist":5, "etiology":5, "etiolate":4, "etiolated":5, "etiolating":5, "etiological":6, "etiologically":7, "eton":2, "eton collar":4, "eton crop":3, "eton jacket":4, "etonian":4, "etrier":3, "etruscan":3, "etruscologist":5, "etruscology":5, "etruria":4, "etrurian":4, "etude":2, "etui":2, "etuis":2, "etwee":2, "eugenio":4, "eustachio":4, "eva":2, "evacuant":4, "evacuate":4, "evacuated":5, "evacuating":5, "evacuation":5, "evacuative":5, "evacuator":5, "evacuee":4, "evade":2, "evadable":4, "evaded":3, "evader":3, "evading":3, "evadingly":4, "evadible":4, "evadne":3, "evaginate":4, "evaginated":5, "evaginating":5, "evaginable":5, "evagination":5, "evaluate":4, "evaluated":5, "evaluating":5, "evaluable":5, "evaluation":5, "evaluative":5, "evaluator":5, "evander":3, "evangel":3, "evangelic":4, "evangeliaries":6, "evangeliary":6, "evangelical":5, "evangelicalism":6, "evangelicality":7, "evangelically":6, "evangelicalness":6, "evangeline":4, "evangelise":4, "evangelised":4, "evangelism":4, "evangelist":4, "evangelist":4, "evangeliser":5, "evangelising":5, "evangelista":5, "evangelistary":6, "evangelistic":5, "evangelistically":7, "evangelize":4, "evangelized":4, "evangelizer":5, "evangelizing":5, "evangelina":5, "evangelization":6, "evanish":3, "evaporate":4, "evaporated":5, "evaporated milk":6, "evaporating":5, "evaporability":7, "evaporable":5, "evaporation":5, "evaporative":5, "evaporatively":6, "evaporator":5, "evaporimeter":6, "evaporite":4, "evaporometer":6, "evapotranspiration":7, "evasion":3, "evasional":4, "evasive":3, "evasively":4, "evasiveness":4, "evection":3, "evectional":4, "even":2, "even out":3, "even up":3, "even-handed":3, "even-handedness":4, "even-minded":3, "even-steven":3, "even-tempered":3, "evens":2, "event":2, "event horizon":5, "eventful":3, "eventfully":4, "eventfulness":4, "eventless":3, "evener":3, "evenfall":3, "evenly":3, "evenness":3, "evensong":3, "eventide":3, "eventration":4, "eventus":3, "eventual":4, "eventuality":6, "eventually":5, "eventuate":4, "eventuated":5, "eventuating":5, "eventuation":5, "evert":2, "evertor":3, "eversion":3, "eversible":4, "evertor":3, "evemerus":4, "evenus":3, "evict":2, "evictee":3, "eviction":3, "evictor":3, "evil":2, "evil eye":3, "evil one":3, "evil-eyed":2, "evil-minded":3, "evil-mindedly":4, "evil-mindedness":4, "evildoer":4, "evildoing":4, "evilly":3, "evilness":3, "evince":2, "evinced":2, "evincing":3, "evincive":3, "evincible":4, "eviscerate":4, "eviscerated":5, "eviscerating":5, "evisceration":5, "eviscerator":5, "evite":2, "evited":3, "eviting":3, "evita":3, "evius":3, "evocative":4, "evocatively":5, "evocativeness":5, "evoke":2, "evoked":2, "evoker":3, "evoking":3, "evolve":2, "evolved":2, "evolvement":3, "evolvable":4, "evolver":3, "evolving":3, "evonymus":4, "evolution":4, "evolutionist":5, "evora":3, "evreux":2, "evulsion":3, "ewa":2, "ewald":2, "ewe":2, "ewig-weibliche":4, "eyalet":3, "ezechiel":4, "ezekiel":4, "etion":5, "f distribution":5, "f number":3, "f region":3, "f's":1, "f-display":2, "f-hole":1, "f-number":2, "fa-la":1, "fab":1, "fabliau":3, "fabliaux":3, "fabric":2, "fabricant":3, "fabricate":3, "fabricated":4, "fabricating":4, "fabrication":4, "fabricative":4, "fabricator":4, "fabrikoid":3, "fabron":2, "faburden":3, "fabulist":3, "fabulous":3, "fabulously":4, "fabulousness":4, "fac":1, "face":1, "face powder":3, "face value":3, "face validity":5, "face-centered":2, "face-centred":2, "face-harden":2, "face-saving":2, "faceable":3, "facebar":2, "faceless":2, "faceplate":2, "fact":1, "fact-finding":2, "facts and figures":4, "factful":2, "facer":2, "facet":2, "faceted":3, "faceting":3, "facetted":3, "facetting":3, "facile":2, "facile princeps":4, "facilely":3, "facileness":3, "facing":2, "facsimile":4, "facsimiled":4, "facsimileing":5, "factice":2, "factice":2, "faction":2, "factional":3, "factionalism":4, "factionalist":4, "factious":2, "factiously":3, "factiousness":3, "factitious":3, "factitiously":4, "factitiousness":4, "factitive":3, "factitively":4, "factor":2, "factor analysis":6, "factor cost":3, "factor of production":6, "factor of safety":5, "factorage":3, "factorability":6, "factorable":4, "factoring":3, "factorise":3, "factorize":3, "factorized":3, "factorizing":4, "factorization":5, "factorship":3, "factorial":4, "factorially":5, "factory":3, "factory farm":4, "factory ship":4, "factorylike":4, "factotum":3, "facture":2, "factual":3, "factualism":4, "factualist":4, "factualistic":5, "factuality":5, "factually":4, "factualness":4, "facultative":4, "facultatively":5, "faculty":3, "faculty of advocates":7, "facula":3, "facular":3, "fad":1, "fad":1, "fade":1, "fade-in":1, "fadeless":2, "fadelessly":3, "fadeometer":4, "fadge":1, "fadging":2, "fadable":3, "fadden":2, "faddish":2, "faddishness":3, "faddism":2, "faddist":2, "faddier":3, "faddiest":3, "faddy":2, "faded":2, "fadedly":3, "fadedness":3, "fader":2, "fading":2, "fadiman":3, "fadlike":2, "fae":1, "faeroes":2, "faeroese":3, "faererne":5, "faecal":2, "faeces":2, "faeroes":2, "faff":1, "fafnir":2, "fag":1, "faggi":2, "fagging":2, "faggot":2, "faggoting":3, "fagot":2, "fagoter":3, "fagoting":3, "fah":1, "fah":1, "fahlband":2, "fahr":1, "fahrenheit":3, "fahrenheit scale":4, "fail":1, "faille":1, "failing":2, "failingly":3, "failingness":3, "failure":2, "fain":1, "faint":1, "faints":1, "fainter":2, "faintheart":2, "fainthearted":3, "faintheartedly":4, "faintheartedness":4, "faintingly":3, "faintish":2, "faintishness":3, "faintly":2, "faintness":2, "fair":1, "fair copy":3, "fair-minded":2, "fair-spoken":2, "fair-spokenness":3, "fair-weather":2, "fairbanks":2, "fairbanks":2, "fairborn":2, "fairbury":3, "fairfax":2, "fairfield":2, "fairground":2, "fairhope":2, "fairies":2, "fairing":2, "fairish":2, "fairily":3, "fairlead":2, "fairleader":3, "fairleigh":2, "fairley":2, "fairly":2, "fairmont":2, "fairmount":2, "fairness":2, "fairport":2, "fairview":2, "fairway":2, "fairway":2, "fairwater":3, "fairweather":3, "fairy":2, "fairy cycle":4, "fairy godmother":5, "fairy penguin":4, "fairy ring":3, "fairy shrimp":3, "fairy swallow":4, "fairy tale":3, "fairyfloss":3, "fairyhood":3, "fairyism":3, "fairyland":3, "fairylike":3, "fait accompli":4, "faith":1, "faith":1, "faithful":2, "faithfully":3, "faithfulness":3, "faithless":2, "faithlessly":3, "faithlessness":3, "faizabad":3, "faial":2, "fainaigue":2, "fainaigued":2, "fainaiguer":3, "fainaiguing":3, "faineance":3, "faineant":3, "fainant":4, "fainant":3, "faisal":2, "faisal i":3, "faisal ii":3, "faitour":2, "faiyum":2, "fake":1, "fakement":2, "faker":2, "fakeries":3, "fakery":3, "faking":2, "fal-lalery":3, "fal-lalishly":2, "faldstool":2, "falkland islands":4, "falkland islands dependencies":8, "falkner":2, "fall":1, "fall":1, "fall about":3, "fall among":3, "fall away":3, "fall behind":3, "fall over":3, "falls":1, "fallen":2, "fallen arch":3, "faller":2, "fallfish":2, "fallfishes":3, "falling":2, "falling band":3, "falling sickness":4, "falling star":3, "falling-out":2, "falling-outs":2, "fallings-out":2, "fallout":2, "false":1, "false bedding":3, "false cirrus":3, "false colors":3, "false imprisonment":5, "false position":4, "false pretences":4, "false relation":4, "false vampire":3, "false-hearted":2, "false-heartedly":3, "false-heartedness":3, "falsehood":2, "falsely":2, "falseness":2, "falsework":2, "falser":2, "falsest":2, "falsie":2, "faltboat":2, "falx":1, "falbala":3, "falbelo":3, "falcate":2, "falcated":3, "falces":2, "falchion":2, "falcial":2, "falciform":3, "falcon":2, "falcon-gentil":3, "falcon-gentle":3, "falconer":3, "falconer":3, "falconet":3, "falconine":3, "falconiform":4, "falconnoid":3, "falconry":3, "falconet":3, "falconine":3, "falda":2, "falda":2, "falderal":3, "falderal":3, "falderol":3, "falfurrias":4, "falkenhayn":3, "falkirk":2, "falla":2, "fallal":2, "fallalery":4, "fallalishly":4, "fallacious":3, "fallaciously":4, "fallaciousness":4, "fallacy":3, "fallibility":5, "fallibilism":4, "fallibilist":4, "fallible":3, "fallibleness":4, "fallibly":3, "fallon":2, "fallow":2, "fallow deer":3, "fallowness":3, "fallopian tube":5, "falmouth":2, "falsetto":3, "falsies":2, "falsified":3, "falsifiability":7, "falsifiable":5, "falsification":5, "falsifier":4, "falsify":3, "falsifying":4, "falsity":3, "falstaff":2, "falstaffian":3, "falstaffian":4, "falster":2, "falter":2, "falterer":3, "falteringly":4, "fam":1, "fam":1, "fame":1, "famed":1, "fameless":2, "famine":2, "faming":2, "famish":2, "famished":2, "familism":3, "familist":3, "familist":3, "familistic":4, "family":3, "family allowance":6, "family bible":5, "family circle":5, "family compact":5, "family division":6, "family doctor":5, "family grouping":5, "family man":4, "family name":4, "family planning":5, "family skeleton":6, "family tree":4, "familyish":4, "famulus":3, "fan":1, "fan heater":3, "fan tracery":4, "fan vaulting":3, "fan-tan":1, "fane":1, "fang":1, "fang":1, "fangless":2, "fanglike":2, "fanagalo":4, "fanakalo":4, "fanback":2, "fanchette":2, "fancia":2, "fancied":2, "fancier":3, "fanciest":3, "fanciful":3, "fancifully":4, "fancifulness":4, "fanciless":3, "fanciness":3, "fancy":2, "fancy dress":3, "fancy goods":3, "fancy man":3, "fancy woman":4, "fancy-free":2, "fancying":3, "fancywork":3, "fandangle":3, "fandango":3, "faneuil":2, "fanfare":2, "fanfani":3, "fanfaron":3, "fanfaronade":4, "fanfaronade":4, "fanfish":2, "fanfishes":3, "fanfold":2, "fangio":3, "fangle":2, "fangled":2, "fango":2, "fanion":2, "fanjet":2, "fankle":2, "fanleaf":2, "fanlight":2, "fanlike":2, "fanner":2, "fannie":2, "fanning":2, "fanny":2, "fanny":2, "fanny adams":4, "fanon":2, "fantail":2, "fantasm":2, "fantast":2, "fantasmagoric":5, "fantasmagoria":6, "fantasmagorically":7, "fantastic":3, "fantastical":4, "fantasticality":6, "fantastically":5, "fantasticalness":5, "fantasia":3, "fantasied":3, "fantasise":3, "fantasist":3, "fantasize":3, "fantasized":3, "fantasizing":4, "fantasia":4, "fantasy":3, "fantasy":3, "fantasying":4, "fanteeg":2, "fanti":2, "fantigue":2, "fantin-latour":3, "fantoccini":4, "fantod":2, "fantom":2, "fanweed":2, "fanwise":2, "fanwort":2, "fao":1, "faq":1, "far":1, "far-off":1, "far-reaching":2, "far-reachingness":3, "far-seeing":2, "far-sighted":2, "farce":1, "farcemeat":2, "farcing":2, "fard":1, "fare":1, "fareham":2, "farewell":2, "farewell":2, "farewell-to-spring":2, "farl":1, "farle":1, "farm":1, "farmable":3, "farmer":2, "farmer-general":4, "farmer-general":4, "farmers-general":4, "farmersville":3, "farmerette":3, "farmeries":3, "farmerlike":3, "farmerville":3, "farmery":3, "farmhouse":2, "farmhouses":3, "farming":2, "farmingdale":3, "farmington":3, "farmland":2, "farmstead":2, "farmville":2, "farmyard":2, "farnsworth":2, "farnborough":3, "farnham":2, "farr":1, "fars":1, "fart":1, "fartlek":2, "farad":2, "faradmeter":4, "farand":2, "farandole":3, "faraday":3, "faraday":3, "faradise":3, "faradised":3, "faradism":3, "faradiser":4, "faradising":4, "faradize":3, "faradized":3, "faradizer":4, "faradizing":4, "faradization":5, "faraway":3, "farawayness":4, "farcetta":3, "farceur":2, "farceuse":2, "farceuses":3, "farci":2, "farcical":3, "farcicality":5, "farcically":4, "farcicalness":4, "farcy":2, "fardel":2, "fardel-bound":2, "farer":2, "farfel":2, "farfetched":2, "farfetchedness":3, "farforthly":3, "fargo":2, "faring":2, "faribault":3, "farinaceous":4, "farinose":3, "farinosely":4, "farkleberry":4, "farley":2, "farmer":2, "farmer-generalship":5, "farness":2, "farnese":3, "farnesol":3, "faro":2, "faroes":2, "faroese":3, "farquhar":2, "farquhar islands":4, "farraginous":4, "farrand":2, "farrandly":3, "farrar":2, "farrago":3, "farragut":3, "farrel":2, "farrell":2, "farrier":3, "farrieries":4, "farriery":4, "farrow":2, "farseeing":3, "farseer":3, "farsighted":3, "farsightedness":4, "farther":2, "farthermost":3, "farthest":2, "farthing":2, "farthingale":3, "fas":1, "fas":1, "fash":1, "fashion":2, "fashion house":3, "fashion plate":3, "fashionability":6, "fashionable":4, "fashionableness":5, "fashionably":4, "fashioner":3, "fashionless":3, "fashionmonger":4, "fassbinder":3, "fast":1, "fast":1, "fast motion":3, "fast neutron":3, "fast reactor":4, "fast-breaking":2, "fast-breeder reactor":5, "fast-moving":2, "fastback":2, "fastness":2, "fasces":2, "fascicular":4, "fasciculate":4, "fasciculately":5, "fasciculated":5, "fasciculation":5, "fasciculus":4, "fascine":2, "fascism":2, "fascism":2, "fascist":2, "fascist":2, "fascia":3, "fasciae":3, "fascial":3, "fasciate":3, "fasciately":4, "fasciated":4, "fasciation":4, "fascicle":3, "fascicule":3, "fasciculus":4, "fascinate":3, "fascinated":4, "fascinatedly":5, "fascinating":4, "fascinatingly":5, "fascination":4, "fascinative":4, "fascinator":4, "fascioliasis":6, "fasten":2, "fastener":3, "fastening":3, "fastidious":4, "fastidiously":5, "fastidiousness":5, "fastigia":4, "fastigiate":4, "fastigiated":5, "fastigium":4, "fastigiums":4, "fastuous":3, "fastuously":4, "fat":1, "fat-soluble":3, "fat-witted":2, "fate":1, "fates":1, "fateful":2, "fatefully":3, "fatefulness":3, "fath":1, "fathom":2, "fathoms":2, "fathomable":4, "fathomer":3, "fathomless":3, "fathomlessly":4, "fathomlessness":4, "fathogram":3, "fats":1, "fatback":2, "fated":2, "fathead":2, "fating":2, "fatigate":3, "fatigated":4, "fatigating":4, "fatigability":6, "fatigable":4, "fatigableness":5, "fatigation":4, "fatima":3, "fatimid":3, "fatimite":3, "fatless":2, "fatlike":2, "fatling":2, "fatly":2, "fatma":2, "fatness":2, "fatshan":2, "fatso":2, "fatted":2, "fatten":2, "fattenable":4, "fattener":3, "fatter":2, "fattest":2, "fatting":2, "fattish":2, "fattishness":3, "fattier":3, "fattiest":3, "fattily":3, "fattiness":3, "fatty":2, "fatty acid":4, "fatty degeneration":7, "fatty oil":3, "fatuous":3, "fatuously":4, "fatuousness":4, "fatwa":2, "faugh":1, "fauld":1, "faulkner":2, "fault":1, "fault-finding":2, "faultfinder":3, "faultfinding":3, "faultier":3, "faultiest":3, "faultily":3, "faultiness":3, "faultless":2, "faultlessly":3, "faultlessness":3, "faulty":2, "faun":1, "faunlike":2, "fauntleroy":3, "faust":1, "faustus":2, "faustian":3, "fausto":2, "faustus":2, "faustulus":3, "fauve":1, "fauvism":2, "fauvist":2, "faux-monnayeurs":3, "fauxbourdon":3, "faubourg":2, "faucal":2, "fauces":2, "faucet":2, "fauchard":2, "faucial":2, "fauna":2, "faunal":2, "faunally":3, "faunus":2, "faur":2, "faur":3, "faustine":2, "faustina":3, "fausto":2, "fauteuil":2, "favellidia":5, "favellidium":5, "favosite":3, "favrile glass":3, "fawn":1, "fawn":1, "fawn lily":3, "fawner":2, "fawningly":3, "fawningness":3, "fawnlike":2, "fawnia":3, "fay":1, "fay":1, "faye":1, "fayme":1, "fayal":2, "fayalite":3, "fayanne":2, "fayette":2, "fayetteville":3, "fayetta":3, "faze":1, "fazing":2, "fabaceous":3, "fabens":2, "faberg":3, "faberg":4, "fabian":3, "fabian society":7, "fabianism":4, "fabius maximus":6, "fable":2, "fabled":2, "fabler":2, "fables":2, "fabre":2, "fabriano":4, "fabricius":3, "fabritius":4, "facade":2, "facete":2, "facetely":3, "faceteness":3, "facetious":3, "facetiously":4, "facetiousness":4, "facetiae":4, "facial":2, "facial angle":4, "facial index":4, "facial nerve":3, "facially":3, "facilitate":4, "facilitated":5, "facilitating":5, "facilitation":5, "facilitative":5, "facilitator":5, "facility":4, "facinorous":4, "facia":3, "faciend":3, "facies":3, "faconne":3, "fadeyev":3, "fado":2, "faence":2, "faenza":3, "faerie":3, "faeries":3, "faery":3, "faena":3, "faerie":3, "faery":3, "fagaceous":3, "fagin":2, "faience":2, "fakeer":2, "fakir":2, "falange":2, "falangist":3, "falasha":3, "falernian":4, "falernum":3, "falerii":4, "falieri":3, "faliscan":3, "falun":2, "famacide":3, "famagusta":4, "famatinite":4, "fameuse":2, "famille":2, "familial":3, "familiar":3, "familiarise":4, "familiarised":4, "familiariser":5, "familiarising":5, "familiarisingly":6, "familiarize":4, "familiarized":4, "familiarizer":5, "familiarizing":5, "familiarization":6, "familiarly":4, "familiarness":4, "familial":4, "familiar":4, "familiarity":6, "famous":2, "famously":3, "famousness":3, "fana":2, "fanatic":3, "fanatical":4, "fanatically":5, "fanaticalness":5, "fanaticise":4, "fanaticised":4, "fanaticism":4, "fanaticising":5, "fanaticize":4, "fanaticized":4, "fanaticizing":5, "fanagalo":4, "fanakalo":4, "fanega":3, "fanegada":4, "fano":2, "faqir":2, "faquir":2, "faradic":3, "faradism":3, "farina":3, "farinelli":4, "faro":2, "faroes":2, "farouche":2, "farouk i":3, "faruk i":3, "fascista":3, "fascisti":3, "fascistic":3, "fascistically":5, "fashoda":3, "fata morgana":5, "fatah":2, "fatal":2, "fatalism":3, "fatalist":3, "fatalistic":4, "fatalistically":6, "fatality":4, "fatally":3, "fatalness":3, "father":2, "father":2, "father christmas":4, "father confessor":5, "father lasher":4, "father time":3, "father's day":3, "father-in-law":2, "fathers-in-law":2, "fatherhood":3, "fatherland":3, "fatherless":3, "fatherlike":3, "fatherliness":4, "fatherly":3, "fathometer":4, "fatidic":3, "fatidical":4, "fatidically":5, "fatigue":2, "fatigued":2, "fatigueless":3, "fatiguing":3, "fatiha":3, "fatuitous":4, "fatuitousness":5, "fatuity":4, "favella":3, "favelvellae":4, "faveolate":4, "faveolus":4, "favi":2, "favilla":3, "favism":2, "favor":2, "favored":2, "favoredly":3, "favoredness":3, "favors":2, "favorable":4, "favorableness":5, "favorably":4, "favorer":3, "favoringly":4, "favorite":3, "favorite son":4, "favoritism":4, "favorless":3, "favour":2, "favoured":2, "favouredness":3, "favours":2, "favourable":4, "favourably":4, "favouringly":4, "favourite":3, "favouritism":4, "favourless":3, "favonia":4, "favonian":4, "favonius":4, "favus":2, "favuses":3, "fayal":2, "fayum":2, "fazenda":3, "faade":3, "farie":4, "fary":4, "faence":3, "fba":1, "fco":1, "feal":1, "fear":1, "fear":1, "fearful":2, "fearfully":3, "fearfulness":3, "fearless":2, "fearlessly":3, "fearlessness":3, "fearnaught":2, "fearnought":2, "fearsome":2, "fearsomely":3, "fearsomeness":3, "feast":1, "feast of dedication":6, "feast of lanterns":4, "feast of tabernacles":6, "feast-or-famine":2, "feaster":2, "feastful":2, "feastfully":3, "feastless":2, "feat":1, "feather":2, "feather bed":3, "feather grass":3, "feather palm":3, "feather star":3, "feather-fleece":2, "feather-veined":2, "feathered":2, "feathers":2, "featherback":3, "featherbedding":4, "featherbone":3, "featherbrain":3, "featherbrained":3, "feathercut":3, "featheredge":3, "featheredged":3, "featherfoil":3, "featherhead":3, "featherheaded":4, "feathering":3, "featheriness":4, "featherless":3, "featherlessness":4, "featherlight":3, "featherlike":3, "featherstitch":3, "featherweight":3, "feathery":3, "featliness":3, "featly":2, "feaze":1, "feazing":2, "feala":2, "feasance":2, "feasibility":5, "feasible":3, "feasibly":3, "feature":2, "feature-length":2, "featured":2, "featureless":3, "featurette":3, "featuring":3, "featurish":3, "feb":1, "febris":2, "febrifacient":4, "febrifuge":3, "februaries":4, "february":4, "february revolution":8, "fec":1, "fechner":2, "feck":1, "fecket":2, "feckless":2, "fecklessly":3, "fecklessness":3, "feckly":2, "fecula":3, "feculence":3, "feculent":3, "fed":1, "fed":1, "feddan":2, "federalist":2, "federal":3, "federal":3, "federal district":5, "federal party":5, "federal reserve note":6, "federal reserve system":7, "federalese":4, "federalise":4, "federalised":4, "federalism":4, "federalism":4, "federalist":4, "federalist party":6, "federalising":5, "federalistic":5, "federalize":4, "federalized":4, "federalizing":5, "federalization":6, "federally":4, "federalness":4, "federate":3, "federated":4, "federated malay states":7, "federating":4, "federacy":4, "federation":4, "federative":4, "federatively":5, "fedelini":4, "fee":1, "fee simple":3, "fee-splitter":2, "fee-splitting":2, "feed":1, "feedable":3, "feedback":2, "feedbag":2, "feedbox":2, "feeder":2, "feeding":2, "feeding bottle":4, "feedingstuff":3, "feedlot":2, "feedstuff":2, "feedwater":3, "feel":1, "feeler":2, "feeler gauge":3, "feeling":2, "feelingful":3, "feelingless":3, "feelinglessly":4, "feelingly":3, "feelingness":3, "feet":1, "feetfirst":2, "feeze":1, "feezing":2, "feeble":2, "feeble-minded":3, "feeble-mindedness":4, "feeble-voiced":2, "feebleness":3, "feeblish":2, "feebly":2, "feeing":2, "feeless":2, "feign":1, "feigned":1, "feignedly":3, "feignedness":3, "feigner":2, "feigningly":3, "feint":1, "feints":1, "feininger":3, "feirie":2, "feist":1, "feisty":2, "feisal":2, "feisal i":3, "feisal ii":3, "feldschar":2, "feldscher":2, "feldsher":2, "feldspar":2, "feldspathic":3, "feldspathoid":3, "feldspathoidal":4, "feldspathose":3, "fell":1, "fellable":3, "feller":2, "fellmonger":3, "fellmongering":4, "fellmongery":4, "fellness":2, "felt":1, "felting":2, "felafel":3, "felda":2, "fellah":2, "fellahs":2, "fellaheen":3, "fellahin":3, "fellation":3, "fellatio":4, "feller":2, "feller":2, "felling":2, "fellini":3, "felloe":2, "fellow":2, "fellow":2, "fellow feeling":4, "fellow traveller":5, "fellow-man":2, "fellowman":3, "fellowship":3, "fellowshiped":3, "fellowshipped":3, "fellowshiping":4, "fellowshipping":4, "felly":2, "felon":2, "felonry":3, "felony":3, "felsic":2, "felsite":2, "felsitic":3, "felspar":2, "felspathic":3, "felspathose":3, "felstone":2, "felwort":2, "fem":1, "feme":1, "feme covert":3, "femme":1, "femme de chambre":4, "femme fatale":3, "femerell":3, "femineity":5, "femicide":3, "feminacy":4, "femineity":5, "feminie":3, "feminine":3, "feminine ending":5, "feminine rhyme":4, "femininely":4, "feminineness":4, "femininity":5, "feminise":3, "feminised":3, "feminism":3, "feminist":3, "feminising":4, "feministic":4, "feminize":3, "feminized":3, "feminizing":4, "feminization":5, "femora":3, "femoral":3, "fen":1, "fence":1, "fence-sitter":2, "fence-sitting":2, "fencelike":2, "fencepost":2, "fencer":2, "fencing":2, "fend":1, "fender":2, "fendered":2, "fengkieh":2, "fengtien":2, "fens":1, "fencible":3, "feneration":4, "fenestella":4, "fenestellae":4, "fenestration":4, "fenland":2, "fenman":2, "fennec":2, "fennel":2, "fennelflower":4, "fenny":2, "fenrir":2, "fenris-wolf":2, "fenton":2, "fenugreek":3, "fenwick":2, "feod":1, "feoff":1, "feoffee":2, "feoffeeship":3, "feoffer":2, "feoffment":2, "feoffor":2, "feodal":2, "feodality":4, "feodary":3, "fer":1, "ferd":1, "fere":1, "fern":1, "fern":1, "fernbrake":2, "ferndale":2, "ferneries":3, "fernery":3, "fernier":3, "ferniest":3, "fernless":2, "fernlike":2, "fernseed":2, "ferny":2, "ferbam":2, "ferber":2, "ferberite":3, "ferde":2, "ferdinand":3, "ferdinand i":4, "ferdinand ii":4, "ferdinand iii":4, "ferdinand v":4, "ferdinanda":4, "ferdus":2, "ferenc":2, "feretory":4, "fergana":3, "ferghana":3, "fergus":2, "ferguson":3, "fergusonite":4, "ferity":3, "fermanagh":3, "fermat":2, "fermat's last theorem":6, "fermat's principle":5, "fermata":3, "ferment":2, "fermentability":6, "fermentable":4, "fermentative":4, "fermentatively":5, "fermentativeness":5, "fermentation":4, "fermentation lock":5, "fermi":2, "fermi":2, "fermi-dirac statistics":6, "fermion":3, "fermium":3, "fernand":2, "fernanda":3, "fernandel":3, "fernando":3, "fernando de noronha":7, "fernando po":4, "fernata":3, "fernelius":4, "fernndez":4, "ferrate":2, "ferrara":3, "ferrari":3, "ferret":2, "ferret badger":4, "ferreter":3, "ferreting":3, "ferrety":3, "ferreous":3, "ferrero":3, "ferric":2, "ferric oxide":4, "ferried":2, "ferriferous":4, "ferris":2, "ferris wheel":3, "ferrite":2, "ferrite-rod aerial":5, "ferriage":3, "ferricyanic acid":7, "ferricyanide":5, "ferriday":3, "ferrihemoglobin":6, "ferrimagnetism":5, "ferritin":3, "ferrol":2, "ferrometer":4, "ferrous":2, "ferrous sulphate":4, "ferroalloy":4, "ferroaluminum":6, "ferrocalcite":4, "ferrocene":3, "ferrocerium":5, "ferrochrome":3, "ferrochromium":5, "ferroconcrete":4, "ferrocyanic acid":7, "ferrocyanide":5, "ferroelectric":5, "ferroelectricity":7, "ferroelectrically":7, "ferromagnet":4, "ferromagnetic":5, "ferromagnetism":5, "ferromagnesian":5, "ferromagnetism":5, "ferromanganese":5, "ferromolybdenum":6, "ferronickel":4, "ferrosilicon":5, "ferrotitanium":6, "ferrotungsten":4, "ferrotype":3, "ferrotyped":3, "ferrotyping":4, "ferrovanadium":6, "ferrule":2, "ferruled":2, "ferruling":3, "ferruginous":4, "ferruginous duck":5, "ferry":2, "ferryboat":3, "ferrying":3, "ferryman":3, "fertile":2, "fertile crescent":4, "fertilely":3, "fertileness":3, "fertility":4, "fertility":4, "fertility cult":5, "fertility symbol":6, "fertilizin":4, "fertilise":3, "fertilised":3, "fertilisable":5, "fertiliser":4, "fertilising":4, "fertilize":3, "fertilized":3, "fertilizability":7, "fertilizable":5, "fertilizer":4, "fertilizing":4, "fertilisation":5, "fertilisational":6, "fertilization":5, "fertilizational":6, "fertrozirconium":6, "ferule":2, "feruled":2, "feruling":3, "ferula":3, "ferulaceous":4, "fervent":2, "fervently":3, "ferventness":3, "fervency":3, "fervid":2, "fervidity":4, "fervidly":3, "fervidness":3, "fervidor":3, "fervor":2, "fervour":2, "fess":1, "fesse":1, "fesswise":2, "festschrift":2, "festschrift":2, "festschriften":3, "fescennine":3, "fescue":2, "fescue grass":3, "fessenden":3, "festa":2, "festal":2, "festally":3, "fester":2, "festive":2, "festively":3, "festiveness":3, "festivity":4, "festinate":3, "festinately":4, "festinated":4, "festinating":4, "festination":4, "festival":3, "festoon":2, "festoonery":4, "festus":2, "fet":1, "fet":1, "fetch":1, "fetcher":2, "fetching":2, "fetchingly":3, "fete":1, "fete champetre":4, "feta":2, "feted":2, "feterita":4, "fetich":2, "fetichism":3, "fetichist":3, "fetichistic":4, "fetichlike":3, "fetid":2, "fetidly":3, "fetidness":3, "feting":2, "fetish":2, "fetishism":3, "fetishist":3, "fetishistic":4, "fetishlike":3, "fetlock":2, "fetter":2, "fetter bone":3, "fetterbush":3, "fetterer":3, "fetterless":3, "fetterlock":3, "fetting":2, "fettle":2, "fettling":2, "fettuccine":4, "fettucine":4, "fettucini":4, "feu":1, "feuchtwanger":3, "feud":1, "feudist":2, "feuillant":2, "feuilleton":3, "feuilletonism":4, "feuilletonist":4, "feuilletonistic":5, "feuille":3, "feuage":2, "feuar":2, "feudal":2, "feudalise":3, "feudalised":3, "feudalism":3, "feudalist":3, "feudalising":4, "feudalistic":4, "feudalize":3, "feudalized":3, "feudalizing":4, "feudality":4, "feudalization":5, "feudally":3, "feudatory":4, "feuerbach":3, "few":1, "fewer":2, "fewness":2, "fewterer":3, "fey":1, "feynman":2, "feydeau":2, "fez":1, "fez":1, "fezzan":2, "fezzes":2, "fezzy":2, "fealty":3, "febe":2, "febricity":4, "febricula":4, "febriferous":4, "febrific":3, "febrifugal":4, "febrile":2, "febrility":4, "fecal":2, "feces":2, "fecit":2, "fecund":2, "fecundate":3, "fecundated":4, "fecundating":4, "fecundation":4, "fecundator":4, "fecundatory":5, "fecunditatis":5, "fecundity":4, "fedayee":3, "federico":4, "fedin":2, "fedora":3, "fedora":3, "felice":2, "felicita":4, "felicitate":4, "felicitated":5, "felicitating":5, "felicitation":5, "felicitator":5, "felicitous":4, "felicitously":5, "felicitousness":5, "felicity":4, "felicity":4, "felid":2, "feline":2, "felinely":3, "felineness":3, "felinity":4, "felippe":3, "felix":2, "felicia":3, "felicific":4, "feliciana":5, "felicidad":4, "felipa":3, "felipe":3, "felo de se":4, "felo-de-se":2, "felones-de-se":3, "felonious":4, "feloniously":5, "feloniousness":5, "felucca":3, "female":2, "female impersonator":7, "female suffrage":4, "femaleness":3, "feminity":4, "femur":2, "femurs":2, "fenagle":3, "fenagler":3, "fenella":3, "fenestra":3, "fenestral":3, "fenestrate":3, "fenestrated":4, "fenian":3, "fenianism":4, "feodor":3, "feodora":4, "feosol":3, "feracity":4, "feral":2, "feracious":3, "ferenc":2, "feria":2, "ferias":2, "ferine":2, "feringhee":3, "feringi":3, "feria":3, "feriae":3, "ferial":3, "ferocity":4, "ferocious":3, "ferociously":4, "ferociousness":4, "fetal":2, "fetal diagnosis":6, "fetation":3, "fetial":2, "fetidity":4, "fetiparous":4, "fetiales":4, "feticide":3, "feticidal":4, "fetor":2, "fetus":2, "fetuses":3, "fever":2, "fever blister":4, "fever pitch":3, "fever therapy":5, "fever tree":3, "feverfew":3, "feverish":3, "feverishly":4, "feverishness":4, "feverless":3, "feverous":3, "feverously":4, "feverroot":3, "feverweed":3, "feverwort":3, "ffa":1, "fib":1, "fibber":2, "fibbing":2, "fibonacci sequence":6, "fibster":2, "fibula":3, "fibular":3, "fice":1, "fiche":1, "fichte":2, "fichtean":3, "fichteanism":4, "fichu":2, "fichus":2, "fickle":2, "fickle-minded":3, "fickleness":3, "fictile":2, "fiction":2, "fictional":3, "fictionalise":4, "fictionalize":4, "fictionalized":4, "fictionalizing":5, "fictionalization":6, "fictionally":4, "fictioneer":3, "fictioneering":4, "fictionise":3, "fictionised":3, "fictionist":3, "fictionising":4, "fictionize":3, "fictionized":3, "fictionizing":4, "fictionization":5, "fictive":2, "fictively":3, "fictitious":3, "fictitiously":4, "fictitiousness":4, "fid":1, "fide":1, "fidge":1, "fidget":2, "fidgeter":3, "fidgetingly":4, "fidgety":3, "fidging":2, "fido":1, "fiddle":2, "fiddle pattern":4, "fiddle-back":2, "fiddle-de-dee":2, "fiddle-faddle":3, "fiddle-faddler":3, "fiddler":2, "fiddler crab":3, "fiddlerfish":3, "fiddlerfishes":4, "fiddleback":3, "fiddledeedee":4, "fiddlededee":4, "fiddlehead":3, "fiddleneck":3, "fiddlestick":3, "fiddlesticks":3, "fiddlewood":3, "fiddling":2, "fiddly":2, "fideicommissary":7, "fideicommissum":6, "fidley":2, "fie":1, "fiedler":2, "fief":1, "field":1, "field":1, "field artillery":5, "field battery":4, "field captain":3, "field emission":4, "field event":3, "field glasses":3, "field guidance":3, "field hockey":3, "field hospital":4, "field magnet":3, "field marshal":3, "field of honor":4, "field officer":4, "field poppy":3, "field spaniel":3, "field trial":3, "field winding":3, "field-effect transistor":5, "field-holler":2, "fields":1, "fieldsman":2, "fielder":2, "fieldfare":2, "fielding":2, "fieldmouse":2, "fieldpiece":2, "fieldstone":2, "fieldwork":2, "fiend":1, "fiend":1, "fiendish":2, "fiendishly":3, "fiendishness":3, "fiendlike":2, "fiendlier":3, "fiendliest":3, "fiendly":2, "fierce":1, "fiercely":2, "fierceness":2, "fiercen":2, "fiercer":2, "fiercest":2, "fierier":3, "fieriest":3, "fierily":3, "fieriness":3, "fiery":2, "fiery cross":3, "fiesole":3, "fifa":1, "fife":1, "fife":1, "fifeshire":2, "fifo":1, "fifth":1, "fifth column":3, "fifth republic":4, "fifthly":2, "fiftyty-fifty":3, "fifer":2, "fifing":2, "fifteen":2, "fifteenth":2, "fiftieth":3, "fifty":2, "fifty-eight":2, "fifty-eighth":2, "fifty-fifth":2, "fifty-fifty":3, "fifty-first":2, "fifty-five":2, "fifty-four":2, "fifty-fourth":2, "fifty-nine":2, "fifty-ninth":2, "fifty-one":2, "fifty-second":3, "fifty-seven":3, "fifty-seventh":3, "fifty-six":2, "fifty-sixth":2, "fifty-third":2, "fifty-three":2, "fifty-two":2, "fiftypenny":4, "fig":1, "fig marigold":4, "figh":1, "fight":1, "fightable":3, "fighter":2, "fighter-bomber":3, "fighter-interceptor":5, "fighting":2, "fighting chance":3, "fighting cock":3, "fighting fish":3, "fighting top":3, "fightingly":3, "figeater":3, "figging":2, "figgier":3, "figgiest":3, "figgy":2, "figment":2, "figure":2, "figure eight":3, "figure of eight":4, "figure of speech":4, "figure on":3, "figure out":3, "figure skating":4, "figure-ground":2, "figured":2, "figured bass":3, "figuredly":3, "figurehead":3, "figureless":3, "figural":3, "figurally":4, "figurate":3, "figurately":4, "figurable":4, "figuration":4, "figurative":4, "figuratively":5, "figurativeness":5, "figurer":3, "figurine":3, "figuring":3, "figuline":3, "figural":3, "figurant":3, "figurine":3, "figwort":2, "fike":1, "fikh":1, "fiking":2, "fil":1, "filch":1, "filcher":2, "filchingly":3, "file":1, "filecard":2, "filefish":2, "filefishes":3, "filename":2, "fill":1, "fill away":3, "fill-in":1, "fillable":3, "fillagree":3, "filler":2, "filler cap":3, "filling":2, "filling station":4, "fillingly":3, "fillingness":3, "fillmore":2, "film":1, "film library":4, "filmable":3, "filmdom":2, "filmgoer":3, "filming":2, "filmier":3, "filmiest":3, "filmily":3, "filminess":3, "filmland":2, "filmlike":2, "filmmaker":3, "filmmaking":3, "filmset":2, "filmsetting":3, "filmstrip":2, "filmy":2, "filmy fern":3, "fils":1, "filth":1, "filthier":3, "filthiest":3, "filthily":3, "filthiness":3, "filthy":2, "filagree":3, "filagreed":3, "filagreeing":4, "filament":3, "filamented":4, "filamentary":5, "filamentous":4, "filariasis":5, "filature":3, "filbert":2, "filer":2, "filial":2, "filing":2, "filing clerk":3, "filings":2, "filip":2, "filister":3, "filial":3, "filially":4, "filialness":4, "filiate":3, "filiated":4, "filiating":4, "filiation":4, "filibeg":3, "filibuster":4, "filibusterer":5, "filibusterism":5, "filibusterous":5, "filicide":3, "filicidal":4, "filiform":3, "filigrain":3, "filigrane":3, "filigree":3, "filigreed":3, "filigreeing":4, "filioque":4, "filipino":4, "fillagree":3, "filler":2, "fillester":3, "fillet":2, "filleting":3, "fillip":2, "fillister":3, "fillibeg":3, "fillipeen":3, "filly":2, "fillr":3, "filmography":4, "filomena":4, "filoplume":3, "filoselle":3, "filter":2, "filter bed":3, "filter out":3, "filter paper":4, "filter press":3, "filter pump":3, "filter tip":3, "filter-tipped":2, "filterability":6, "filterable":4, "filterableness":5, "filterer":3, "filtrable":2, "filtrate":2, "filtratable":4, "filtrated":3, "filtrating":3, "filtrability":5, "filtrable":3, "filtration":3, "filtre":2, "fimble":2, "fimbrillate":3, "fimbria":3, "fimbriae":3, "fimbrial":3, "fimbriate":3, "fimbriated":4, "fimbriating":4, "fimbriation":4, "fin":1, "fin":1, "fin-footed":2, "finance":1, "finch":1, "finchley":2, "find":1, "findable":3, "finder":2, "finding":2, "findlay":2, "fine":1, "fine structure":3, "fine-drawer":2, "fineable":2, "fineable":3, "fineableness":4, "finely":2, "fineness":2, "finespun":2, "fink":1, "finn":1, "finned":1, "finnic":2, "finnish":2, "finnmark":2, "finnmark":2, "financier":3, "finable":3, "finableness":4, "finback":2, "finca":2, "finer":2, "fineries":3, "finery":3, "finest":2, "finfoot":2, "fingal's cave":3, "finger":2, "finger bowl":3, "finger painting":4, "finger post":3, "finger tight":3, "finger wave":3, "finger's breadth":3, "finger-marked":2, "finger-paint":2, "fingered":2, "fingerboard":3, "fingerbreadth":3, "fingerer":3, "fingerflower":4, "fingering":3, "fingerless":3, "fingerling":3, "fingermark":3, "fingernail":3, "fingerprint":3, "fingerstall":3, "fingertip":3, "fingery":3, "fingo":2, "finick":2, "finicking":3, "finicky":3, "fining":2, "finis":2, "finish":2, "finished":2, "finisher":3, "finishing school":4, "finist":3, "finisterre":3, "finistre":4, "finial":3, "finialed":3, "finical":3, "finicality":5, "finically":4, "finicalness":4, "finiking":3, "finitude":3, "finland":2, "finlander":3, "finlandia":4, "finlay":2, "finless":2, "finlet":2, "finletter":3, "finley":2, "finlike":2, "finmark":2, "finnan haddock":4, "finner":2, "finney":2, "finnick":2, "finnicky":3, "finning":2, "finnier":3, "finniest":3, "finno-ugric":3, "finno-ugrian":4, "finny":2, "finsen":2, "finspot":2, "finsteraarhorn":4, "fionn":1, "fiord":1, "fioritura":4, "fioriture":4, "fipple":2, "fipple flute":3, "fir":1, "fire":1, "fire alarm":3, "fire away":3, "fire brigade":3, "fire company":4, "fire control":3, "fire department":4, "fire engine":3, "fire escape":3, "fire hydrant":3, "fire insurance":4, "fire irons":3, "fire marshal":3, "fire opal":3, "fire power":3, "fire raiser":3, "fire station":3, "fire walking":3, "fire watcher":3, "fire-and-brimstone":2, "fire-eater":2, "fire-eating":2, "fire-extinguisher":4, "fire-lillilies":3, "fire-lily":2, "fire-polish":2, "fire-raising":2, "fire-resistant":3, "fire-retardant":3, "firearm":2, "firearmed":2, "fireback":2, "fireball":2, "firebase":2, "firebird":2, "firebird":2, "fireboard":2, "fireboat":2, "firebomb":2, "firebox":2, "firebrand":2, "firebrat":2, "firebreak":2, "firebrick":2, "firebug":2, "firecracker":3, "firecrest":2, "firecured":2, "firecuring":3, "firedamp":2, "firedog":2, "firedragon":3, "firedrake":2, "firefang":2, "fireflaught":2, "firefly":2, "fireguard":2, "firehouse":2, "firehouses":3, "fireless":2, "fireless cooker":4, "firelight":2, "firelock":2, "fireman":2, "firepan":2, "fireplace":2, "fireplug":2, "firepower":3, "fireproof":2, "fireproofing":3, "fireside":2, "firestone":2, "firestone":2, "firestop":2, "firestorm":2, "firethorn":2, "firetrap":2, "firewarden":3, "firewater":3, "fireweed":2, "firewood":2, "firework":2, "fireworks":2, "fireworm":2, "firm":1, "firmly":2, "firmness":2, "firmware":2, "firn":1, "firnification":5, "first":1, "first empire":3, "first estate":3, "first international":6, "first lady":3, "first lieutenant":4, "first mortgage":3, "first offender":4, "first officer":4, "first person":3, "first principle":4, "first quarter":3, "first reading":3, "first refusal":4, "first republic":4, "first water":3, "first-aider":2, "first-day cover":3, "first-degree burn":3, "first-footer":2, "first-generation":4, "first-mortgage":2, "first-nighter":2, "firsts":1, "firstborn":2, "firsthand":2, "firstling":2, "firstly":2, "firstness":2, "firth":1, "firbank":2, "firbolg":2, "fircrest":2, "firdausi":3, "firdousi":3, "firdusi":3, "firer":2, "firing":2, "firing line":3, "firing order":4, "firing party":4, "firing pin":3, "firing squad":3, "firkin":2, "firman":2, "firmament":3, "firmamental":4, "firmer chisel":4, "firmicus":3, "firry":2, "fisc":1, "fischer":2, "fischer-dieskau":3, "fish":1, "fish":1, "fish eagle":3, "fish ladder":3, "fish-bellied":2, "fishable":3, "fishbolt":2, "fishbowl":2, "fisher":2, "fisher":2, "fisheries":3, "fisherman":3, "fisherman's bend":4, "fishery":3, "fishes":2, "fishes":2, "fisheye":2, "fishfinger":3, "fishgig":2, "fishhook":2, "fishing":2, "fishing rod":3, "fishing tackle":4, "fishier":3, "fishiest":3, "fishily":3, "fishiness":3, "fishless":2, "fishline":2, "fishmonger":3, "fishmouth":2, "fishnet":2, "fishplate":2, "fishpond":2, "fishpound":2, "fishskin disease":4, "fishtail":2, "fishwife":2, "fishworm":2, "fishy":2, "fishyback":3, "fishybacking":4, "fiske":1, "fist":1, "fistfight":2, "fistful":2, "fistic":2, "fistiana":4, "fisticuff":3, "fisticuffs":3, "fisticuffer":4, "fistmele":2, "fistnote":2, "fiscal":2, "fiscal year":3, "fiscally":3, "fissile":2, "fission":2, "fission bomb":3, "fission reactor":5, "fission-fusion bomb":4, "fissionability":6, "fissionable":4, "fissiparous":4, "fissiparously":5, "fissiparousness":5, "fissipalmate":4, "fissiped":3, "fissirostral":4, "fissure":2, "fissure of rolando":6, "fissure of sylvius":6, "fissured":2, "fissureless":3, "fissuring":3, "fissural":3, "fistula":3, "fistular":3, "fistulate":3, "fistulize":3, "fistulized":3, "fistulizing":4, "fistulization":5, "fistulous":3, "fit":1, "fitch":1, "fitch":1, "fitchburg":2, "fitcher":2, "fitchet":2, "fitchew":2, "fitchy":2, "fitche":3, "fitz":1, "fitzgerald":3, "fitzgerald":3, "fitzhugh":2, "fitzroy":2, "fitzsimmons":3, "fitful":2, "fitfully":3, "fitfulness":3, "fitly":2, "fitment":2, "fitness":2, "fittable":3, "fitted":2, "fittedness":3, "fitten":2, "fitter":2, "fittest":2, "fitting":2, "fittingly":3, "fittingness":3, "fittipaldi":4, "fiume":2, "five":1, "five hundred":3, "five nations":3, "five-faced bishop":3, "five-finger":2, "five-gaited":2, "five-legged":2, "five-o'clock shadow":3, "fives":1, "fivefold":2, "fivepenny":3, "fivepins":2, "fiver":2, "fix":1, "fixed":1, "fixed assets":3, "fixed idea":4, "fixed satellite":4, "fixed-head coup":3, "fixed-income":2, "fixed-point representation":6, "fixt":1, "fixate":2, "fixated":3, "fixating":3, "fixable":3, "fixatif":3, "fixation":3, "fixative":3, "fixedly":3, "fixedness":3, "fixer":2, "fixin's":2, "fixing":2, "fixings":2, "fixity":3, "fixture":2, "fixtureless":3, "fixure":2, "fizz":1, "fizzer":2, "fizzier":3, "fizziest":3, "fizzwater":3, "fizzy":2, "fizgig":2, "fizzer":2, "fizzle":2, "fiance":3, "fiancee":3, "fianchetti":4, "fianchetto":4, "fianc":4, "fiance":4, "fianna":3, "fianna fail":4, "fiar":2, "fiasco":3, "fiat":2, "fiat money":4, "fiacre":3, "fiacres":3, "fiber":2, "fibered":2, "fiberboard":3, "fiberfill":3, "fiberglas":3, "fiberglass":3, "fiberless":3, "fiberscope":3, "fibiger":3, "fibratus":3, "fibre":2, "fibre optics":4, "fibreboard":3, "fibrefill":3, "fibreglass":3, "fibreless":3, "fibril":2, "fibrilla":3, "fibrillae":3, "fibrillar":3, "fibrillation":4, "fibrilliform":4, "fibrillose":3, "fibrin":2, "fibrinous":3, "fibrinogen":4, "fibrinogenic":5, "fibrinogenically":7, "fibrinokinase":5, "fibriform":3, "fibrinogenous":5, "fibrinolysin":5, "fibrinolysis":5, "fibrinolytic":5, "fibro":2, "fibroid":2, "fibromatous":4, "fibrotic":3, "fibrous":2, "fibrously":3, "fibrousness":3, "fibroblast":3, "fibroblastic":4, "fibrocartilage":5, "fibrocartilaginous":7, "fibrocement":4, "fibroin":3, "fibrolite":3, "fibroma":3, "fibromata":4, "fibroplastic":4, "fibroplasia":4, "fibrosis":3, "fibrositis":4, "fibrovascular":5, "ficino":3, "fico":2, "fidel":2, "fidela":3, "fidelia":3, "fidelism":3, "fidelity":4, "fides":2, "fidei defensor":6, "fideism":3, "fideicommissa":6, "fideicommissaries":7, "fideicommissary":7, "fideicommissum":6, "fidelio":3, "fido":2, "fidus achates":5, "fiducial":3, "fiducially":4, "fiducial":4, "fiduciaries":5, "fiduciarily":6, "fiduciary":5, "fiduciary issue":7, "fieri facias":6, "fiesta":3, "fifi":2, "fifine":2, "figueres":3, "fiji":2, "fijian":3, "filar":2, "filaria":4, "filariae":4, "filarial":4, "filariid":4, "filasse":2, "filate":2, "filaceous":3, "filet":2, "filet mignon":4, "filets":2, "filippino":4, "filippo":3, "filose":2, "filosus":3, "filum":2, "fil":3, "final":2, "final cause":3, "finals":2, "finalise":3, "finalism":3, "finalist":3, "finalize":3, "finality":4, "finally":3, "finance":2, "finance bill":3, "finance company":5, "financed":2, "financing":3, "financial":3, "financial year":4, "financially":4, "financire":4, "financier":4, "finagle":3, "finagler":3, "finale":3, "finalis":3, "finalize":3, "finalized":3, "finalizing":4, "finalization":5, "fine":2, "fine gael":3, "fineen":2, "finella":3, "finesse":2, "finessed":2, "finessing":3, "finestra":3, "finite":2, "finite-dimensional":5, "finitely":3, "finiteness":3, "finial":3, "fino":2, "finochio":4, "finocchio":4, "finochio":4, "finochios":4, "fiona":3, "fiorello":4, "fiorin":3, "firenze":3, "fizeau":2, "fjeld":1, "fjord":1, "fla":1, "flab":1, "flabbergast":3, "flabbier":3, "flabbiest":3, "flabbily":3, "flabbiness":3, "flabby":2, "flack":1, "flaccid":2, "flaccidity":4, "flaccidly":3, "flaccidness":3, "flacon":2, "flacons":2, "flag":1, "flag captain":3, "flag lieutenant":4, "flag of convenience":6, "flag officer":4, "flag-waving":2, "flagg":1, "flags":1, "flagellant":3, "flagellantism":4, "flagellate":3, "flagellated":4, "flagellating":4, "flagellata":4, "flagellation":4, "flagellator":4, "flagellatory":5, "flageolet":3, "flagfish":2, "flagfishes":3, "flagger":2, "flagging":2, "flaggingly":3, "flaggier":3, "flaggiest":3, "flaggy":2, "flagless":2, "flagman":2, "flagon":2, "flagpole":2, "flagship":2, "flagstad":2, "flagstaff":2, "flagstaff":2, "flagstone":2, "flail":1, "flair":1, "flak":1, "flak jacket":3, "flake":1, "flakeboard":2, "flakeless":2, "flakelet":2, "flaker":2, "flaking":2, "flakier":3, "flakiest":3, "flakily":3, "flakiness":3, "flaky":2, "flaky pastry":4, "flam":1, "flame":1, "flame-colored":2, "flame-of-the-forest":2, "flame-thrower":2, "flamefish":2, "flamefishes":3, "flameholder":3, "flamelike":2, "flameout":2, "flameproof":2, "flamethrower":3, "flambeau":2, "flambor flamb":4, "flamborough head":4, "flamboyance":3, "flamboyant":3, "flamboyantly":4, "flamboyancy":4, "flamb":3, "flambed":3, "flamer":2, "flaming":2, "flamingly":3, "flamier":3, "flamiest":3, "flamininus":4, "flamless":2, "flammability":5, "flammable":3, "flammarion":3, "flamming":2, "flamsteed":2, "flamy":2, "flan":1, "flanch":1, "flange":1, "flangeless":2, "flangeway":2, "flanger":2, "flanging":2, "flank":1, "flanker":2, "flanagan":3, "flancard":2, "flanchard":2, "flanders":2, "flanders poppy":4, "flannel":2, "flannel flower":4, "flanneled":2, "flannelled":2, "flannelboard":3, "flannelet":3, "flannelette":3, "flanneling":3, "flannelleaf":3, "flannelling":3, "flannelly":3, "flannelmouth":3, "flannelmouthed":3, "flanning":2, "flap":1, "flaps":1, "flapdoodle":3, "flapdragon":3, "flaperon":3, "flapjack":2, "flapless":2, "flapper":2, "flapperdom":3, "flapperish":3, "flapperism":3, "flapping":2, "flappier":3, "flappiest":3, "flappy":2, "flare":1, "flareback":2, "flaring":2, "flaringly":3, "flash":1, "flash photography":5, "flash photolysis":5, "flashback":2, "flashboard":2, "flashbulb":2, "flashcube":2, "flasher":2, "flashing":2, "flashing point":3, "flashingly":3, "flashier":3, "flashiest":3, "flashily":3, "flashiness":3, "flashlamp":2, "flashlight":2, "flashover":3, "flashtube":2, "flashy":2, "flask":1, "flasket":2, "flat":1, "flat racing":3, "flat-bottomed":2, "flat-footed":2, "flat-woven":2, "flats":1, "flatboat":2, "flatbread":2, "flatbrod":2, "flatcar":2, "flatette":2, "flatfish":2, "flatfishes":3, "flatfoot":2, "flatfooted":3, "flatfootedhatting":5, "flatfootedly":4, "flatfootedness":4, "flathead":2, "flathead":2, "flatiron":3, "flatlet":2, "flatling":2, "flatlings":2, "flatly":2, "flatmate":2, "flatness":2, "flatted":2, "flatten":2, "flattener":3, "flatter":2, "flatterable":4, "flatterer":3, "flatteries":3, "flatteringly":4, "flattery":3, "flattest":2, "flattie":2, "flatting":2, "flattish":2, "flattop":2, "flatulence":3, "flatulent":3, "flatulently":4, "flatulency":4, "flatware":2, "flatways":2, "flatwise":2, "flatwoods":2, "flatwoods":2, "flatwork":2, "flatworm":2, "flaunch":1, "flaunt":1, "flaunter":2, "flauntingly":3, "flauntier":3, "flauntiest":3, "flauntily":3, "flauntiness":3, "flaunty":2, "flaubert":2, "flaubert":2, "flautist":2, "flaw":1, "flawed":1, "flawedness":2, "flawier":3, "flawiest":3, "flawless":2, "flawlessly":3, "flawlessness":3, "flawy":2, "flax":1, "flaxen":2, "flaxman":2, "flaxseed":2, "flaxy":2, "flay":1, "flayer":2, "flabella":3, "flabellate":3, "flabelliform":4, "flabellum":3, "flacon":2, "flagella":3, "flagelliform":4, "flagellum":3, "flageolet":3, "flagitious":3, "flagitiously":4, "flagitiousness":4, "flagrance":2, "flagrant":2, "flagrantly":3, "flagrantness":3, "flagrancy":3, "flagrante delicto":6, "flaherty":3, "flamen":2, "flamens":2, "flamenco":3, "flamingo":3, "flamingo-flower":4, "flaminian way":5, "flaminius":4, "flamines":3, "flanes":2, "flatus":2, "flatuses":3, "flavescent":3, "flavin":2, "flavine":2, "flavia":3, "flavius":3, "flavone":2, "flavor":2, "flavorful":3, "flavorfully":4, "flavoring":3, "flavorless":3, "flavorous":3, "flavorsome":3, "flavory":3, "flavour":2, "flavourful":3, "flavouring":3, "flavoursome":3, "flavoury":3, "flavobacteria":6, "flavobacterium":6, "flavonol":3, "flavoprotein":4, "flavopurpurin":5, "fld":1, "flea":1, "flea beetle":3, "flea market":3, "flea-bitten":2, "fleam":1, "fleabag":2, "fleabane":2, "fleabite":2, "fleapit":2, "fleawort":2, "fleck":1, "flecker":2, "fleckless":2, "flecklessly":3, "flecky":2, "flection":2, "flectional":3, "flectionless":3, "fled":1, "fledge":1, "fledged":1, "fledgeless":2, "fledgeling":2, "fledging":2, "fledgier":3, "fledgiest":3, "fledgling":2, "fledgy":2, "flee":1, "fleece":1, "fleeceable":3, "fleeceless":2, "fleecelike":2, "fleecer":2, "fleecing":2, "fleecier":3, "fleeciest":3, "fleecily":3, "fleeciness":3, "fleecy":2, "fleer":1, "fleeringly":3, "fleet":1, "fleet":1, "fleet admiral":4, "fleet-footed":2, "fleeting":2, "fleetingly":3, "fleetingness":3, "fleetly":2, "fleetness":2, "fleetwood":2, "fleetwood mac":3, "fleeing":2, "flem":1, "fleming":2, "fleming's rules":3, "flemington":3, "flemish":2, "flemish bond":3, "flense":1, "flensburg":2, "flenser":2, "flensing":2, "flesh":1, "flesh-colored":2, "flesher":2, "fleshhook":2, "fleshings":2, "fleshier":3, "fleshiest":3, "fleshiness":3, "fleshless":2, "fleshlier":3, "fleshliest":3, "fleshlily":3, "fleshliness":3, "fleshly":2, "fleshpot":2, "fleshpots":2, "fleshy":2, "fletch":1, "fletcher":2, "fletcher":2, "fletcherise":3, "fletcherised":3, "fletcherism":3, "fletcherising":4, "fletcherize":3, "fletcherized":3, "fletcherizing":4, "fletchings":2, "fleur":1, "fleuron":2, "fleuret":2, "fleurette":2, "fleurette":2, "fleuron":2, "fleury":2, "fleury":2, "flew":1, "flews":1, "flex":1, "flexed":1, "flexile":2, "flexility":4, "flexion":2, "flexional":3, "flexionless":3, "flexibility":5, "flexible":3, "flexibleness":4, "flexibly":3, "flexitime":3, "flexner":2, "flexo":2, "flexography":4, "flexography":4, "flexor":2, "flexure":2, "flexural":3, "flexuose":3, "flexuosely":4, "flexuoseness":4, "flexuosity":5, "flexuous":3, "flexuously":4, "flexuousness":4, "fley":1, "fleyedly":3, "fleyedness":3, "fleying":2, "fleysome":2, "fleda":2, "fledermaus":3, "fleer":2, "fleta":2, "flibbertigibbet":5, "flichter":2, "flick":1, "flicker":2, "flickeringly":4, "flickertail":3, "flickery":3, "flicflac":2, "flied":1, "flight":1, "flight arrow":3, "flight engineer":4, "flight feather":3, "flight formation":4, "flight lieutenant":4, "flight recorder":4, "flight simulator":5, "flight surgeon":3, "flighter":2, "flightier":3, "flightiest":3, "flightily":3, "flightiness":3, "flightless":2, "flighty":2, "flimflam":2, "flimflammed":2, "flimflammer":3, "flimflamming":3, "flimsier":3, "flimsiest":3, "flimsily":3, "flimsiness":3, "flimsy":2, "flinch":1, "flincher":2, "flinchingly":3, "fling":1, "flinger":2, "flinging":2, "flint":1, "flint":1, "flinthead":2, "flintier":3, "flintiest":3, "flintily":3, "flintiness":3, "flintlike":2, "flintlock":2, "flintshire":2, "flinty":2, "flinders":2, "flinders bar":3, "flinders island":4, "flinders range":3, "flip":1, "flipflopped":2, "flipflopping":3, "flippant":2, "flippantly":3, "flippantness":3, "flippancy":3, "flipper":2, "flippest":2, "flipping":2, "flirt":1, "flirter":2, "flirtingly":3, "flirty":2, "flirtation":3, "flirtational":4, "flirtationless":4, "flirtatious":3, "flirtatiously":4, "flirtatiousness":4, "flit":1, "flitch":1, "flitchplate":2, "flite":1, "flited":2, "fliting":2, "flitted":2, "flitter":2, "flittermouse":3, "flitting":2, "flittingly":3, "flivver":2, "flier":2, "flo":1, "float":1, "floats":1, "floatage":2, "floatability":5, "floatable":3, "floatation":3, "floatboard":2, "floater":2, "floating":2, "floating assets":4, "floating charge":3, "floating dock":3, "floating heart":3, "floating island":4, "floating policy":5, "floating rib":3, "floating-point representation":7, "floatingly":3, "floatier":3, "floatiest":3, "floatman":2, "floatplane":2, "floatstone":2, "floaty":2, "floc":1, "flock":1, "flockbed":2, "flockier":3, "flockiest":3, "flockless":2, "flocky":2, "flocci":2, "floccillation":4, "floccose":2, "floccule":2, "floccus":2, "flocculant":3, "flocculate":3, "flocculated":4, "flocculating":4, "flocculable":4, "flocculation":4, "flocculator":4, "flocculence":3, "flocculent":3, "flocculently":4, "flocculency":4, "flocculus":3, "flodden":2, "floe":1, "floeberg":2, "flog":1, "floggable":3, "flogger":2, "flogging":2, "floggingly":3, "flong":1, "flood":1, "flood":1, "flood control":3, "floodable":3, "flooded":2, "flooder":2, "floodgate":2, "floodless":2, "floodlight":2, "floodlighted":3, "floodlighting":3, "floodlike":2, "floodlit":2, "floodwater":3, "floor":1, "floor leader":3, "floor manager":4, "floorage":2, "floorboard":2, "floorcloth":2, "floorer":2, "flooring":2, "flooring saw":3, "floorless":2, "floorman":2, "floorwalker":3, "floosie":2, "floozie":2, "floozy":2, "flop":1, "flophouse":2, "flophouses":3, "flopover":3, "flopper":2, "flopping":2, "floppier":3, "floppiest":3, "floppily":3, "floppiness":3, "floppy":2, "flor":1, "florance":2, "florence":2, "florence flask":3, "florenz":2, "florentine":3, "florid":2, "floridly":3, "florie":2, "florin":2, "florissant":3, "florida":3, "florrie":2, "florry":2, "flory":2, "flos ferri":3, "floss":1, "flosser":2, "flossier":3, "flossiest":3, "flossmoor":2, "flossy":2, "flossie":2, "flotsam":2, "flounce":1, "flouncing":2, "flounder":2, "flounderingly":4, "flour":1, "flourish":2, "flourisher":3, "flourishing":3, "flourishingly":4, "flourless":2, "floury":2, "flout":1, "flouter":2, "floutingly":3, "flow":1, "flow-on":1, "flown":1, "flowage":2, "flowable":3, "flower":2, "flower":2, "flower girl":3, "flower head":3, "flower power":4, "flower-de-luce":2, "flower-of-an-hour":2, "flower-of-jove":2, "flower-pecker":3, "flowered":2, "flowers-of-jove":2, "flowerage":3, "flowerbed":3, "flowerer":3, "floweret":3, "flowering":3, "flowering maple":5, "flowerily":4, "floweriness":4, "flowerless":3, "flowerlessness":4, "flowerlet":3, "flowerlike":3, "flowerpecker":4, "flowerpot":3, "flowery":3, "flowing":2, "flowingly":3, "flowingness":3, "floy":1, "floyce":1, "floyd":1, "floydada":3, "flois":2, "flora":2, "flora":2, "florae":2, "floral":2, "floral envelope":5, "florally":3, "floras":2, "floralia":4, "florella":3, "florencita":4, "florenda":3, "flores":2, "flores":2, "flores sea":3, "florescence":3, "florescent":3, "floret":2, "florette":2, "floretty":3, "florey":2, "floreat":3, "floreated":4, "floriano":3, "florianolis":5, "floridity":4, "floriferous":4, "floriferously":5, "floriferousness":5, "florine":2, "floris":2, "florist":2, "floristic":3, "floristics":3, "floristically":5, "floria":3, "florian":3, "floriated":4, "florianpolis":7, "floribunda":4, "florican":3, "floriculture":4, "floricultural":5, "floriculturally":6, "floriculturist":5, "florigen":3, "florilegium":5, "florina":3, "florio":3, "floruit":3, "flory":2, "floral":4, "floral":3, "flotage":2, "flotation":3, "flotilla":3, "flotow":2, "flu":1, "flub":1, "flubbing":2, "flubdub":2, "fluctuant":3, "fluctuate":3, "fluctuated":4, "fluctuating":4, "fluctuation":4, "flue":1, "fluff":1, "fluffer":2, "fluffier":3, "fluffiest":3, "fluffily":3, "fluffiness":3, "fluffy":2, "fluke":1, "flukeless":2, "flukey":2, "fluking":2, "flukier":3, "flukiest":3, "flukiness":3, "fluky":2, "flume":1, "flump":1, "fluming":2, "flummeries":3, "flummery":3, "flummox":2, "flung":1, "flunk":1, "flunkey":2, "flunky":2, "flunkey":2, "flunkeyism":3, "flunky":2, "flunkyism":3, "fluoridate":3, "fluoridated":4, "fluoridating":4, "fluoridation":4, "fluoridise":3, "fluoridised":3, "fluoridising":4, "fluoridize":3, "fluoridized":3, "fluoridizing":4, "fluoridization":5, "fluorinate":3, "fluorinated":4, "fluorinating":4, "fluorination":4, "fluoroscopy":4, "fluoroscope":3, "fluoroscopic":4, "fluoroscopically":6, "fluorosis":3, "flurried":2, "flurriedly":3, "flurry":2, "flurrying":3, "flush":1, "flusher":2, "flushing":2, "flushingly":3, "flushness":2, "fluster":2, "flusterate":3, "flusterated":4, "flusterating":4, "flustrate":2, "flustrated":3, "flustrating":3, "flustration":3, "flute":1, "flutelike":2, "fluted":2, "fluteor":2, "fluter":2, "flutey":2, "fluting":2, "flutist":2, "flutier":3, "flutiest":3, "flutter":2, "flutter kick":3, "flutterboard":3, "flutterer":3, "flutteringly":4, "fluttery":3, "fluty":2, "flux":1, "flux density":4, "fluxgraph":2, "fluxion":2, "fluxional":3, "fluxionally":4, "fluxionary":4, "fluxmeter":3, "fluyt":1, "flucured":2, "flucuring":3, "fluent":2, "fluently":3, "fluentness":3, "fluency":3, "flugelhorn":3, "flugelman":3, "fluid":2, "fluid dram":3, "fluid drive":3, "fluid mechanics":5, "fluid ounce":3, "fluid pressure":4, "fluidal":3, "fluidally":4, "fluidextract":4, "fluidic":3, "fluidics":3, "fluidise":3, "fluidised":3, "fluidiser":4, "fluidising":4, "fluidize":3, "fluidized":3, "fluidizer":4, "fluidizing":4, "fluidity":4, "fluidization":5, "fluidly":3, "fluidness":3, "fluing":2, "fluor":2, "fluoric":3, "fluorspar":3, "fluoborate":4, "fluoboric":4, "fluophosphate":4, "fluorene":3, "fluoresce":3, "fluoresced":3, "fluorescing":4, "fluorescence":4, "fluorescent":4, "fluorescent lamp":5, "fluorescein":5, "fluoresceine":5, "fluoride":3, "fluorimeter":5, "fluorin":3, "fluorine":3, "fluorite":3, "fluorometer":5, "fluorometry":5, "fluorocarbon":5, "fluorometric":5, "fluorophosphate":5, "fluosilicate":5, "fluvial":3, "fluviatile":4, "fluviomarine":5, "fly":1, "fly agaric":4, "fly river":3, "fly-up":1, "flysch":1, "flyte":1, "flyted":2, "flyting":2, "flyability":5, "flyable":3, "flyaway":3, "flyback":2, "flybelt":2, "flyblew":2, "flyblow":2, "flyblown":2, "flyblowing":3, "flyboat":2, "flybook":2, "flyboy":2, "flyby":2, "flycatcher":3, "flyer":2, "flying":2, "flying boat":3, "flying bridge":3, "flying buttress":4, "flying circus":4, "flying colors":4, "flying doctor":4, "flying dutchman":4, "flying field":3, "flying fish":3, "flying fox":3, "flying frog":3, "flying gurnard":4, "flying jib":3, "flying lemur":4, "flying lizard":4, "flying mare":3, "flying officer":5, "flying phalanger":5, "flying saucer":4, "flying squad":3, "flying squirrel":4, "flying start":3, "flying wing":3, "flyleaf":2, "flyless":2, "flyman":2, "flyoff":2, "flyover":3, "flypaper":3, "flyspeck":2, "flytrap":2, "flyway":2, "flyweight":2, "flywheel":2, "flneur":3, "flnerie":4, "flchette":3, "flchettes":3, "flches":3, "flgelhorn":4, "flchette":2, "flneur":2, "flrie":2, "fmn":1, "foal":1, "foam":1, "foamflower":3, "foamingly":3, "foamier":3, "foamiest":3, "foamily":3, "foaminess":3, "foamless":2, "foamlike":2, "foamy":2, "fob":1, "fob":1, "fobbing":2, "foc":1, "foch":1, "fodgel":2, "fodder":2, "foe":1, "foehn":1, "foetid":2, "foecunditatis":5, "foeman":2, "foetal":2, "foetation":3, "foetiparous":4, "foeticide":3, "foeticidal":4, "foetor":2, "foetus":2, "foetuses":3, "fog":1, "fog level":3, "fog signal":3, "fogged":1, "fogbound":2, "fogbow":2, "fogdog":2, "foggage":2, "foggia":2, "fogging":2, "foggier":3, "foggiest":3, "foggily":3, "fogginess":3, "foggy":2, "foghorn":2, "fogless":2, "foh":1, "foil":1, "foiled":1, "foilsman":2, "foilable":3, "foin":1, "foist":1, "foible":2, "foison":2, "fokker":2, "fol":1, "fold":1, "foldable":3, "foldaway":3, "foldboat":2, "folded dipole":4, "folder":2, "folding door":3, "folding money":4, "folding press":3, "foldout":2, "folk":1, "folk etymology":6, "folk medicine":4, "folk memory":4, "folk music":3, "folk singer":3, "folkestone":2, "folkish":2, "folkishness":3, "folklore":2, "folkloric":3, "folklorist":3, "folkloristic":4, "folkmoot":2, "folkmot":2, "folkmote":2, "folkright":2, "folksay":2, "folksier":3, "folksiest":3, "folksiness":3, "folksy":2, "folkways":2, "foll":1, "folacin":3, "folcroft":2, "folderol":3, "folkething":3, "folketing":3, "follansbee":3, "folles":2, "follicular":4, "folliculate":4, "folliculin":4, "folliculitis":5, "follis":2, "follicle":3, "follicle-stimulating hormone":8, "follow":2, "follow out":3, "follow through":3, "follow up":3, "follow-my-leader":3, "follow-on":2, "follow-through":2, "follow-up":2, "followable":4, "follower":3, "following":3, "folly":2, "folsom":2, "folsom man":3, "fomites":3, "fond":1, "fondly":2, "fondness":2, "fons":1, "fons et origo":5, "font":1, "fontal":2, "fonda":2, "fondant":2, "fondle":2, "fondler":2, "fondlingly":3, "fondu":2, "fondue":2, "fondue bourguignonne":5, "fonseca":3, "fontaine":2, "fontainebleau":3, "fontange":2, "fontanne":2, "fontana":3, "fontanel":3, "fontanelle":3, "fonteyn":2, "fontenelle":3, "food":1, "food poisoning":4, "food-gathering":3, "foodless":2, "foodlessness":3, "foodstuff":2, "fool":1, "fool's errand":3, "fool's paradise":4, "fool's-parsley":2, "foolscap":2, "fooleries":3, "foolery":3, "foolfish":2, "foolfishes":3, "foolhardy":3, "foolhardier":4, "foolhardiest":4, "foolhardily":4, "foolhardiness":4, "foolhardy":3, "foolish":2, "foolishly":3, "foolishness":3, "foolproof":2, "foot":1, "foot":1, "foot soldier":3, "foot-and-mouth disease":3, "foot-binding":2, "foot-candle":2, "foot-lambert":2, "foot-pound-second":2, "foot-poundal":2, "foote":1, "foots":1, "footage":2, "football":2, "footboard":2, "footboy":2, "footbridge":2, "footcloth":2, "footed":2, "footer":2, "footfall":2, "footfault":2, "footgear":2, "foothill":2, "foothold":2, "footie":2, "footing":2, "footle":2, "footless":2, "footlight":2, "footlights":2, "footling":2, "footlocker":3, "footloose":2, "footmaker":3, "footman":2, "footmark":2, "footnote":2, "footnoted":3, "footnoting":3, "footpace":2, "footpad":2, "footpath":2, "footplate":2, "footprint":2, "footrest":2, "footrope":2, "footscraper":3, "footsie":2, "footslog":2, "footsore":2, "footsoreness":3, "footstalk":2, "footstall":2, "footstep":2, "footstock":2, "footstone":2, "footstool":2, "footwall":2, "footway":2, "footwear":2, "footwork":2, "footworn":2, "footy":2, "foochow":2, "foofaraw":3, "footier":3, "footiest":3, "footy":2, "foozle":2, "fop":1, "fopperies":3, "foppery":3, "foppish":2, "foppishly":3, "foppishness":3, "for":1, "for":1, "for ever":3, "for evermore":4, "forb":1, "forbes":1, "forbes-robertson":3, "force":1, "force majeure":3, "forced":1, "forceable":3, "forceful":2, "forcefully":3, "forcefulness":3, "forceless":2, "forcemeat":2, "forcedly":3, "forcedness":3, "forcer":2, "forces":2, "forcing":2, "forcing bid":3, "forcing house":3, "forcingly":3, "ford":1, "ford":1, "fordable":3, "fordize":2, "fordized":2, "fordizing":3, "fordless":2, "fore":1, "fore-and-after":2, "fore-and-after":2, "fore-topgallant":3, "fore-topmast":2, "fore-topsail":2, "forearm":2, "forearm smash":3, "forebear":2, "forebode":2, "foreboded":3, "foreboder":3, "forebodies":3, "foreboding":3, "forebodingly":4, "forebodingness":4, "forebody":3, "forebrain":2, "forecaddie":3, "forecast":2, "forecasted":3, "forecaster":3, "forecasting":3, "forecastle":3, "forechoir":2, "forecited":3, "foreclose":2, "foreclosed":2, "foreclosable":4, "foreclosing":3, "foreclosure":3, "foreconscious":3, "forecourse":2, "forecourt":2, "foredate":2, "foredated":3, "foredating":3, "foredeck":2, "foredid":2, "foredo":2, "foredone":2, "foredoom":2, "foredoing":3, "forefather":3, "forefatherly":4, "forefeel":2, "forefeeling":3, "forefelt":2, "forefend":2, "forefinger":3, "forefoot":2, "forefront":2, "foregather":3, "foregift":2, "foreglimpse":2, "forego":2, "foregone":2, "foregone conclusion":5, "foregoneness":3, "foregoer":3, "foregoing":3, "foreground":2, "foregut":2, "forehand":2, "forehanded":3, "forehandedly":4, "forehandedness":4, "forehead":2, "forehearth":2, "forehock":2, "forejudge":2, "forejudged":2, "forejudger":3, "forejudging":3, "foreknow":2, "foreknowledge":3, "foreknowable":4, "foreknower":3, "foreknowingly":4, "foreland":2, "foreland":2, "forelady":3, "foreleg":2, "forelimb":2, "forelock":2, "foreman":2, "foremanship":3, "foremast":2, "foremost":2, "forename":2, "forenamed":2, "forenoon":2, "foreordain":3, "foreordainment":4, "foreordinate":4, "foreordinated":5, "foreordinating":5, "foreordination":5, "forepart":2, "forepassed":2, "forepast":2, "forepaw":2, "forepeak":2, "foreplay":2, "forepleasure":3, "forepole":2, "forepoled":2, "forepoling":3, "forequarter":3, "forequarters":3, "forerake":2, "foreran":2, "forereach":2, "forerun":2, "forerunner":3, "forerunning":3, "foresaddle":3, "foresaid":2, "foresail":2, "foresaw":2, "foresee":2, "foreseen":2, "foreseeability":6, "foreseeable":4, "foreseeing":3, "foreseer":3, "foreshadow":3, "foreshadower":4, "foreshank":2, "foresheet":2, "foreshock":2, "foreshore":2, "foreshorten":3, "foreshots":2, "foreshow":2, "foreshowed":2, "foreshown":2, "foreside":2, "foresight":2, "foresighted":3, "foresightedly":4, "foresightedness":4, "foreskin":2, "foresleeve":2, "forespake":2, "forespeak":2, "forespeaking":3, "forespent":2, "forespoke":2, "forespoken":3, "forestaff":2, "forestage":2, "forestall":2, "forestaller":3, "forestallment":3, "forestalment":3, "forestay":2, "forestaysail":3, "forestick":2, "foretaste":2, "foretasted":3, "foretasting":3, "foretell":2, "foreteller":3, "foretelling":3, "forethought":2, "forethoughtful":3, "forethoughtfully":4, "forethoughtfulness":4, "foretime":2, "foretold":2, "foretooth":2, "foretop":2, "foretoken":3, "foretriangle":4, "forewarn":2, "forewarner":3, "forewarningly":4, "forewent":2, "forewind":2, "forewing":2, "forewoman":3, "forewomen":3, "foreword":2, "foreworn":2, "foreyard":2, "forge":1, "forgeable":3, "forger":2, "forging":2, "fork":1, "forked":1, "forked lightning":3, "forkedly":3, "forkedness":3, "forkier":3, "forkiest":3, "forkiness":3, "forkless":2, "forklift":2, "forklike":2, "forky":2, "form":1, "form":1, "form genus":3, "form letter":3, "forme":1, "formesoappendix":5, "formesoappendixes":6, "formesoappendices":6, "formaldehyde":4, "formability":5, "formable":3, "formably":3, "formative":3, "formatively":4, "formativeness":4, "formboard":2, "former":2, "formfitting":3, "formless":2, "formlessly":3, "formlessness":3, "formnail":2, "formwork":2, "forssman":2, "fort":1, "fort lauderdale":4, "fort lamy":3, "fort sumter":3, "fort william":3, "fort-lamy":2, "forte":1, "forth":1, "forth":1, "forthcoming":3, "forthcomingness":4, "forthright":2, "forthrightly":3, "forthrightness":3, "forthwith":2, "fortran":1, "fortnight":2, "fortnightly":3, "forage":2, "forage cap":3, "foraged":2, "forager":3, "foraging":3, "foram":2, "forasmuch":3, "forasmuch as":4, "foray":2, "forayer":3, "foraker":3, "foraminifer":5, "forbad":2, "forbade":2, "forbear":2, "forbearance":3, "forbearer":3, "forbearing":3, "forbearingly":4, "forbid":2, "forbiddance":3, "forbidden":3, "forbidden city":5, "forbidden fruit":4, "forbiddenness":4, "forbidder":3, "forbidding":3, "forbiddingly":4, "forbiddingness":4, "forbore":2, "forborne":2, "forby":2, "forbye":2, "forceps":2, "forcepslike":3, "forcipial":4, "forcibility":5, "forcible":3, "forcibleness":4, "forcibly":3, "forcipate":3, "forcipes":3, "forcipressure":4, "fordid":2, "fordo":2, "fordone":2, "fordoing":3, "fordyce":2, "foreign":2, "foreign affairs":4, "foreign aid":3, "foreign bill":3, "foreign correspondent":6, "foreign exchange":4, "foreign legion":4, "foreign minister":5, "foreign mission":4, "foreign office":4, "foreign service":4, "foreign-aid":2, "foreign-born":2, "foreign-flag":2, "foreigner":3, "foreignism":3, "foreignly":3, "foreignness":3, "forel":2, "forest":2, "forest":2, "forest ranger":4, "forestal":3, "forestation":4, "forester":3, "forester":3, "forestless":3, "forestlike":3, "forestry":3, "forever":3, "forevermore":4, "forfar":2, "forfeit":2, "forfeitable":4, "forfeiter":3, "forfeiture":3, "forfend":2, "forficate":3, "forgat":2, "forgather":3, "forgave":2, "forgeries":3, "forgery":3, "forget":2, "forget-me-not":2, "forgetful":3, "forgetfully":4, "forgetfulness":4, "forgettable":4, "forgetter":3, "forgettery":4, "forgetting":3, "forgetive":3, "forgive":2, "forgiveness":3, "forgivable":4, "forgiven":3, "forgiver":3, "forgiving":3, "forgivingly":4, "forgivingness":4, "forgo":2, "forgone":2, "forgot":2, "forgotten":3, "forgoer":3, "forgoing":3, "forint":2, "forjudge":2, "forjudged":2, "forjudging":3, "forjudgment":3, "forl":2, "forlana":3, "forlorn":2, "forlorn hope":3, "forlornly":3, "forlornness":3, "forl":3, "formal":2, "formal language":4, "formal logic":4, "formaldehyde":4, "formalise":3, "formalised":3, "formalism":3, "formalist":3, "formaliser":4, "formalising":4, "formalistic":4, "formalize":3, "formalized":3, "formalizer":4, "formalizing":4, "formality":4, "formalization":5, "formally":3, "formalness":3, "formant":2, "format":2, "formate":2, "formated":3, "formating":3, "formatted":3, "formatting":3, "formalin":3, "formation":3, "formational":4, "former":2, "formeret":3, "formerly":3, "formic":2, "formic acid":4, "formica":3, "formicaries":4, "formicaria":5, "formicarium":5, "formicary":4, "formicate":3, "formication":4, "formidability":6, "formidable":4, "formidableness":5, "formidably":4, "formol":2, "formosa":3, "formosa strait":4, "formosus":3, "formula":3, "formularies":4, "formularise":4, "formularised":4, "formulariser":5, "formularising":5, "formularize":4, "formularized":4, "formularizer":5, "formularizing":5, "formularization":6, "formulary":4, "formulate":3, "formulated":4, "formulating":4, "formulable":4, "formulaic":4, "formulaically":6, "formulation":4, "formulator":4, "formulise":3, "formulised":3, "formulism":3, "formulist":3, "formuliser":4, "formulising":4, "formulistic":4, "formulize":3, "formulized":3, "formulizer":4, "formulizing":4, "formulization":5, "formyl":2, "formylate":3, "formylated":4, "formylating":4, "formylation":4, "forme":3, "fornacis":3, "fornax":2, "fornacalia":5, "fornenst":2, "fornent":2, "forney":2, "forniciform":4, "forninst":2, "fornix":2, "fornical":3, "fornicate":3, "fornicated":4, "fornicating":4, "fornication":4, "fornicator":4, "fornicatory":5, "fornicatrix":4, "fornicatrices":5, "fornices":3, "forrel":2, "forrest":2, "forrestal":3, "forrit":2, "forsake":2, "forsaken":3, "forsakenness":4, "forsaker":3, "forsaking":3, "forsete":3, "forseti":3, "forsook":2, "forsooth":2, "forspeak":2, "forspent":2, "forster":2, "forsterite":3, "forswear":2, "forswearer":3, "forsworn":2, "forswornness":3, "forsyth":2, "forsythia":4, "fortas":2, "fortaleza":4, "fortalice":3, "forte":2, "forte-piano":3, "fortepiano":5, "fortis":2, "fortissimo":4, "fortieth":3, "fortified":3, "fortified wine":4, "fortifiable":5, "fortification":5, "fortifier":4, "fortify":3, "fortifying":4, "fortifyingly":5, "fortitude":3, "fortitudinous":5, "fortress":2, "fortune":2, "fortune":2, "fortune-hunter":3, "fortune-hunting":3, "fortune-teller":3, "fortuned":2, "fortuneless":3, "fortuneteller":4, "fortunetelling":4, "fortuning":3, "fortuitism":4, "fortuitist":4, "fortuitous":4, "fortuitously":5, "fortuitousness":5, "fortuity":4, "fortuna":3, "fortunate":3, "fortunately":4, "fortunateness":4, "forty":2, "forty winks":3, "forty-eight":2, "forty-eighth":2, "forty-eightmo":3, "forty-fifth":2, "forty-first":2, "forty-five":2, "forty-five":2, "forty-four":2, "forty-fourth":2, "forty-nine":2, "forty-ninth":2, "forty-niner":3, "forty-one":2, "forty-second":3, "forty-seven":3, "forty-seventh":3, "forty-six":2, "forty-sixth":2, "forty-third":2, "forty-three":2, "forty-two":2, "fortyish":3, "fortypenny":4, "forward":2, "forward bias":4, "forward delivery":6, "forward pass":3, "forward quotation":5, "forward roll":3, "forward-looking":3, "forwards":2, "forwarder":3, "forwarding":3, "forwarding agent":5, "forwardly":3, "forwardness":3, "forwent":2, "forwhy":2, "forworn":2, "forzando":3, "foshan":2, "foss":1, "foss":1, "fosse":1, "fosbury flop":4, "fosdick":2, "fossa":2, "fossae":2, "fossarian":4, "fossette":2, "fossick":2, "fossicker":3, "fossil":2, "fossil fuel":4, "fossiliferous":5, "fossilise":3, "fossilised":3, "fossilising":4, "fossilize":3, "fossilized":3, "fossilizable":5, "fossilizing":4, "fossilisation":5, "fossilization":5, "fossillike":3, "fossor":2, "fossorial":4, "fossula":3, "foster":2, "foster":2, "foster child":3, "fosterage":3, "fosterer":3, "fosteringly":4, "fosterling":3, "fostoria":4, "fostress":2, "fother":2, "fotheringhay":4, "fotheringhay":4, "fou":1, "foucquet":2, "fouett":2, "fouett":3, "fought":1, "foughten":2, "foul":1, "foul-up":1, "fouls":1, "foulbrood":2, "foully":2, "foulmart":2, "foulmouthed":2, "foulness":2, "foulness":2, "found":1, "foundation":2, "founder":2, "founder's type":3, "founding father":4, "foundling":2, "foundry":2, "foundry proof":3, "fount":1, "fount":1, "foundation":3, "foundation garment":5, "foundation stone":4, "foundational":4, "foundationally":5, "foundationary":5, "founders' shares":3, "founderous":3, "foundrous":2, "fountain":2, "fountain pen":3, "fountained":2, "fountainhead":3, "fountainless":3, "fountainlike":3, "four":1, "four hundred":3, "four-color":2, "four-cycle":2, "four-dimensional":4, "four-footed":2, "four-handed":2, "four-leaf clover":3, "four-leaved clover":3, "four-legged":2, "four-letter word":3, "four-masted":2, "four-poster":2, "four-striper":2, "four-wheeler":2, "fourth":1, "fourth dimension":4, "fourth estate":3, "fourth international":6, "fourth of july":4, "fourth republic":4, "fourth-dimensional":4, "fourthly":2, "fourbagger":3, "fourchette":2, "fourch":3, "fourche":3, "fourdrinier":4, "fourflusher":3, "fourfold":2, "fourgon":2, "fournier":2, "fourpence":2, "fourpenny":3, "fourposter":3, "fourrag":3, "fourragre":4, "fourscore":2, "foursome":2, "foursquare":2, "foursquarely":3, "foursquareness":3, "fourteen":2, "fourteen points":3, "fourteenth":2, "fourteener":3, "foucault":2, "foucault current":4, "foudroyant":3, "foujita":3, "foulard":2, "foumart":2, "fouqu":2, "fouquet":2, "fouquier-tinville":3, "fouqu":3, "fourier":2, "fourier":3, "fourier analysis":7, "fourier series":5, "fourierism":4, "fourierist":4, "fourieristic":5, "fourierite":4, "fouter":2, "foutra":2, "fowey":1, "fowl":1, "fowler":2, "fowling":2, "fowler":2, "fowliang":2, "fox":1, "fox":1, "fox squirrel":3, "fox talbot":3, "fox terrier":4, "fox-hunting":2, "foxe":1, "foxe basin":3, "foxed":1, "foxberry":3, "foxborough":3, "foxes":2, "foxfire":2, "foxglove":2, "foxhole":2, "foxhound":2, "foxie":2, "foxing":2, "foxier":3, "foxiest":3, "foxily":3, "foxiness":3, "foxlike":2, "foxtail":2, "foxtrot":2, "foxtrot":2, "foxy":2, "foy":1, "foyboat":2, "foyer":2, "focal":2, "focal infection":5, "focal length":3, "focal plane":3, "focal point":3, "focal ratio":5, "focalise":3, "focalised":3, "focalising":4, "focalize":3, "focalized":3, "focalizing":4, "focalization":5, "focally":3, "foci":2, "focometer":4, "focus":2, "focused":2, "focussed":2, "focusable":4, "focuser":3, "focuses":3, "focusing":3, "focussing":3, "fogarty":3, "fogey":2, "fogram":2, "fogrum":2, "fogy":2, "fogyish":3, "fogyism":3, "foism":2, "fokine":2, "foley":2, "folic":2, "folic acid":4, "folie":2, "folie de grandeur":5, "folia":3, "foliage":3, "foliaged":3, "foliar":3, "foliate":3, "foliated":4, "foliating":4, "foliaceous":4, "foliaceousness":5, "foliation":4, "foliature":4, "foliicolous":5, "foliiferous":5, "folio":3, "folioed":3, "foliole":3, "folios":3, "foliose":3, "foliot":3, "folious":3, "folioing":4, "foliolate":4, "folium":3, "fomalhaut":3, "foment":2, "fomenter":3, "fomentation":4, "fomes":2, "fomor":2, "fomorian":4, "fora":2, "foramina":4, "foraminal":4, "foraminate":4, "foramination":5, "foraminiferal":6, "foraminous":4, "foramen":3, "foramen magnum":5, "forensic":3, "forensics":3, "forensicality":6, "forensically":5, "forestial":3, "forum":2, "forum":2, "forum romanum":5, "forums":2, "fovea":3, "fovea centralis":6, "foveae":3, "foveal":3, "foveate":3, "foveated":4, "foveole":3, "foveola":4, "foveolar":4, "foveolate":4, "foveolated":5, "foveolet":4, "fozier":3, "foziest":3, "foziness":3, "fozy":2, "fosm":3, "fost":3, "fpa":1, "fps":1, "fps units":3, "fra":1, "frackville":2, "fractable":3, "fraction":2, "fractional":3, "fractional currency":6, "fractional distillation":7, "fractionally":4, "fractionate":3, "fractionated":4, "fractionating":4, "fractionation":4, "fractionator":4, "fractionise":3, "fractionised":3, "fractionising":4, "fractionize":3, "fractionized":3, "fractionizing":4, "fractionization":5, "fractious":2, "fractiously":3, "fractiousness":3, "fractocumulus":5, "fractostratus":4, "fracture":2, "fractured":2, "fractural":3, "fracturable":4, "fracturing":3, "fractus":2, "frae":1, "fraenum":2, "fraenulum":3, "frag":1, "fragging":2, "fragile":2, "fragilely":3, "fragment":2, "fragmented":3, "fragmentise":3, "fragmentised":3, "fragmentising":4, "fragmentize":3, "fragmentized":3, "fragmentizing":4, "fragmentization":5, "fragmental":3, "fragmentally":4, "fragmentarily":5, "fragmentariness":5, "fragmentary":4, "fragmentation":4, "fragmentized":3, "frail":1, "frailly":2, "frailness":2, "frailty":2, "fraise":1, "frailero":3, "fraileros":3, "fraktur":2, "frame":1, "frame aerial":4, "frame of reference":5, "frameable":3, "frameableness":4, "frameless":2, "framework":2, "framable":3, "framableness":4, "frambesia":3, "frambesia":4, "framboesia":3, "framboesia":4, "framboise":2, "framer":2, "framing":2, "framingham":3, "fran":1, "franc":1, "franc-tireur":2, "france":1, "franche-comt":2, "franche-comt":3, "franck":1, "francs-tireurs":2, "franger":2, "franglais":2, "frank":1, "frank":1, "frankalmoign":3, "frankable":3, "frankenstein":3, "franker":2, "frankfort":2, "frankfort":2, "frankforter":3, "frankfurt":2, "frankfurt":2, "frankfurter":3, "frankfurter":3, "frankfurter":3, "frankfurter":3, "frankie":2, "frankincense":3, "frankish":2, "franklin":2, "franklin":2, "franklinite":3, "franklinton":3, "frankly":2, "frankness":2, "frankpledge":2, "franky":2, "franz":1, "franz ferdinand":4, "franz josef i":4, "franz josef land":4, "frances":2, "francesca":3, "francescatti":4, "francesco":3, "francesco":3, "franchise":2, "franchised":2, "franchisement":3, "franchiser":3, "franchising":3, "franchisor":3, "franchot":2, "francie":2, "francine":2, "francis":2, "francis i":3, "francis ii":3, "francis of assisi":6, "francis of sales":4, "francis xavier":5, "francisca":3, "franciscan":3, "francisco":3, "francium":3, "franco":2, "franco-provenal":5, "franco-prussian war":4, "francois":2, "francoism":3, "francoist":3, "francolin":3, "franconia":4, "franconian":4, "francophil":3, "francophile":3, "francophilia":5, "francophobe":3, "francophone":3, "francophobia":5, "francy":2, "francyne":2, "frangibility":5, "frangible":3, "frangibleness":4, "frangipane":3, "frangipani":4, "frangipanis":4, "franglais":2, "franko":2, "frannie":2, "franny":2, "frantic":2, "franticly":3, "franticness":3, "frantically":4, "franaix":3, "franois":3, "frap":1, "frapp":2, "frapping":2, "frapp":3, "frass":1, "frascati":3, "frat":1, "fratch":1, "fratcher":2, "fratching":2, "fratchy":2, "fraternise":3, "fraternised":3, "fraterniser":4, "fraternising":4, "fraternize":3, "fraternized":3, "fraternizer":4, "fraternizing":4, "fraternization":5, "fratricide":3, "fratricidal":4, "frau":1, "fraud":1, "fraudful":2, "fraudfully":3, "fraudulent":3, "fraudulently":4, "fraudulency":4, "fraught":1, "fraunhofer":3, "fraunhofer lines":4, "frauen":2, "frauenfeld":3, "fraxinella":4, "fray":1, "fraze":1, "frazing":2, "frazzle":2, "frazzled":2, "fracas":2, "fracastorius":5, "fragility":4, "fragonard":3, "fragrance":2, "fragrant":2, "fragrantly":3, "fragrantness":3, "fragrancy":3, "fraser":2, "frater":2, "fraternal":3, "fraternalism":4, "fraternally":4, "fraternity":4, "fraternit":5, "fratry":2, "fravashi":3, "frazer":2, "frazier":2, "frazil":2, "freak":1, "freakish":2, "freakishly":3, "freakishness":3, "freakier":3, "freakiest":3, "freakily":3, "freakiness":3, "freakout":2, "freaky":2, "freckle":2, "freckle-faced":2, "frecklier":3, "freckliest":3, "freckly":2, "fred":1, "freddie":2, "freddy":2, "frederic":3, "frederick":3, "frederick i":4, "frederick ii":4, "frederick iii":4, "frederick ix":4, "frederick the great":5, "frederick william":5, "frederick william i":6, "frederick william iii":6, "frederick william iv":6, "fredericksburg":4, "fredericktown":4, "fredericton":4, "frederiksberg":4, "frederica":4, "frederika":4, "fredric":2, "fredrich":2, "fredrik":2, "fredrikstad":3, "free":1, "free association":6, "free agent":3, "free alongside ship":5, "free city":3, "free coinage":3, "free companion":4, "free company":4, "free energy":4, "free enterprise":4, "free labour":3, "free radical":4, "free silver":3, "free soil party":4, "free-associate":4, "free-associated":5, "free-associating":5, "free-floating":2, "free-handed":2, "free-handedly":3, "free-handedness":3, "free-hearted":2, "free-living":2, "free-machining":3, "free-rider":2, "free-select":2, "free-silver":2, "free-soiler":2, "free-soilism":2, "free-spoken":2, "free-spokenly":3, "free-spokenness":3, "free-standing":2, "free-swimmer":2, "free-swimming":2, "free-trader":2, "freedman":2, "freedwoman":3, "freedwomen":3, "freer":1, "freeze":1, "freeze-drying":2, "freezable":3, "freezadried":3, "freezadrying":4, "freezer":2, "freezing":2, "freezing mixture":4, "freezing point":3, "freezing works":3, "freezingly":3, "freebie":2, "freeboard":2, "freeboot":2, "freebooter":3, "freebooty":3, "freeborn":2, "freedom":2, "freedom":2, "freedom fighter":4, "freedom rider":4, "freedomites":3, "freehand":2, "freehold":2, "freehold":2, "freeholder":3, "freeing":2, "freelance":2, "freelanced":2, "freelancer":3, "freelancing":3, "freeland":2, "freeload":2, "freeloader":3, "freeloading":3, "freely":2, "freeman":2, "freeman":2, "freemartin":3, "freemason":3, "freemason":3, "freemasonic":4, "freemasonry":4, "freemasonry":4, "freeness":2, "freeport":2, "freesheet":2, "freesia":3, "freestanding":3, "freestone":2, "freestyle":2, "freethinker":3, "freethinking":3, "freetown":2, "freetrader":3, "freeway":2, "freewheel":2, "freewheeler":3, "freewheeling":3, "freewill":2, "frei":1, "freight":1, "freightage":2, "freighter":2, "freightless":2, "freightliner":3, "freia":2, "freiburg":2, "freischtz":3, "fremd":1, "fremdly":2, "fremdness":2, "fremitus":3, "french":1, "french academy":5, "french bulldog":3, "french cameroons":4, "french canada":4, "french canadian":5, "french community":5, "french cricket":3, "french dressing":3, "french equatorial africa":9, "french foreign legion":5, "french fried potatoes":5, "french guinea":3, "french guiana":4, "french india":4, "french indochina":5, "french knickers":3, "french letter":3, "french lilac":3, "french morocco":4, "french mustard":3, "french navy":3, "french north africa":5, "french oceania":6, "french pastry":3, "french polish":3, "french polynesia":5, "french revolution":5, "french revolutionary calendar":10, "french somaliland":5, "french sudan":3, "french togoland":4, "french union":3, "french vermouth":3, "french west africa":5, "french west indies":4, "french windows":3, "french-polish":2, "frenchies":2, "frenchier":3, "frenchiest":3, "frenchified":3, "frenchification":5, "frenchify":3, "frenchifying":4, "frenchily":3, "frenchiness":3, "frenchly":2, "frenchman":2, "frenchness":2, "frenchweed":2, "frenchwoman":3, "frenchwomen":3, "frenchy":2, "frenular":3, "frenulum":3, "frenzied":2, "frenziedly":3, "frenzily":3, "frenzy":2, "frenzying":3, "freq":1, "fresh":1, "fresh-water":2, "freshen":2, "freshener":3, "fresher":2, "freshet":2, "freshly":2, "freshman":2, "freshmanic":3, "freshmanship":3, "freshness":2, "freshwater":3, "fress":1, "fresser":2, "fresco":2, "frescoed":2, "frescobaldi":4, "frescoer":3, "frescoing":3, "fresnel":2, "fresnel":2, "fresnel lens":3, "fresno":2, "fret":1, "fretful":2, "fretfully":3, "fretfulness":3, "fretless":2, "fretsome":2, "fretted":2, "fretting":2, "frettier":3, "frettiest":3, "fretty":2, "fretwork":2, "freud":1, "freudian":3, "freudian slip":4, "freudianism":4, "frey":1, "freyr":1, "freya":2, "freyja":2, "freyre":2, "freytag":2, "freda":2, "frederiksberg":4, "fredericia":4, "frederigo":4, "fredonia":3, "freer":2, "freest":2, "frelinghuysen":4, "fremantle":3, "fremont":2, "frenate":2, "freneau":2, "frenetic":3, "frenetical":4, "frenetically":5, "frenum":2, "freon":2, "frequence":2, "frequent":2, "frequentable":4, "frequenter":3, "frequently":3, "frequentness":3, "frequency":3, "frequency band":4, "frequency distribution":7, "frequency modulation":7, "frequentation":4, "frequentative":4, "fri":1, "fribble":2, "fribbler":2, "frick":1, "fricandeau":3, "fricando":3, "fricassee":3, "fricasseed":3, "fricasseeing":4, "fricative":3, "fricsawn":2, "fricsawing":3, "friction":2, "friction clutch":3, "friction match":3, "friction tape":3, "friction-saw":2, "frictional":3, "frictionally":4, "frictionless":3, "frictionlessly":4, "fridge":1, "fridtjof":2, "fridley":2, "fried":1, "fried":1, "friedcake":2, "friend":1, "friend":1, "friended":2, "friendless":2, "friendlessness":3, "friendlier":3, "friendliest":3, "friendlily":3, "friendliness":3, "friendly":2, "friendly islands":4, "friendly society":6, "friendship":2, "fries":1, "friesland":2, "frieze":1, "friezing":2, "frieda":2, "friedrich":2, "friesian":2, "frig":1, "frigg":1, "fright":1, "frighten":2, "frightened":2, "frightenedly":3, "frightenable":4, "frightener":3, "frighteningly":4, "frightful":2, "frightfully":3, "frightfulness":3, "frigid":1, "frigate":2, "frigate bird":3, "frigga":2, "frigger":2, "frigging":2, "frigid":2, "frigid zone":3, "frigidaire":3, "frigidly":3, "frigidness":3, "frigidaria":5, "frigidarium":5, "frigidoreceptor":6, "frigorific":4, "frill":1, "frilled lizard":3, "friller":2, "frilling":2, "frilly":2, "friml":1, "fringe":1, "fringe benefit":4, "fringed orchis":3, "fringehead":2, "fringeless":2, "fringelike":2, "fringing":2, "fringing reef":3, "fringillid":3, "fringilline":3, "fripperies":3, "frippery":3, "frippet":2, "fris":1, "frisch":1, "frisches haff":3, "frisk":1, "frisker":2, "frisket":2, "friskingly":3, "friskier":3, "friskiest":3, "friskily":3, "friskiness":3, "frisky":2, "frisbee":2, "frisco":2, "frisket":2, "frisson":2, "frit":1, "frith":1, "frithstool":2, "fritt":1, "fritz":1, "fritz":1, "fritillaries":4, "fritillaria":5, "fritillary":4, "fritted":2, "fritter":2, "fritterer":3, "fritting":2, "fritzie":2, "frivol":2, "frivoled":2, "frivolled":2, "frivoler":3, "frivoling":3, "frivoller":3, "frivolling":3, "frivolous":3, "frivolously":4, "frivolousness":4, "friz":1, "frizz":1, "frizzer":2, "frizer":2, "frizzes":2, "frizzing":2, "frizzier":3, "frizziest":3, "frizzily":3, "frizziness":3, "frizzle":2, "frizzler":2, "frizzlier":3, "frizzliest":3, "frizzly":2, "frizzy":2, "fria":2, "friar":2, "friar minor":4, "friar tuck":3, "friar's balsam":4, "friar's lantern":4, "friarbird":3, "friaries":3, "friary":3, "friability":5, "friable":3, "friableness":4, "fribourg":2, "frication":3, "friday":2, "fridays":2, "frier":2, "frigidity":4, "frigoris":3, "frija":2, "frijol":2, "frijole":3, "frijoles":3, "frimaire":2, "fris":2, "frisette":2, "friseur":2, "frisian":2, "frisian islands":4, "fris":3, "fritillary":4, "friuli":3, "friuli-venezia giulia":8, "friulian":4, "frivolity":4, "frizette":2, "frl":1, "fro":1, "frock":1, "frocking":2, "frockless":2, "froe":1, "froebel":2, "frog":1, "frog":1, "frogged":1, "frogbit":2, "frogeye":2, "frogeyed":2, "frogfish":2, "frogfishes":3, "frogging":2, "froggier":3, "froggiest":3, "froggy":2, "froggy":2, "froghopper":3, "froglike":2, "frogman":2, "frogmarch":2, "frogmouth":2, "frogspawn":2, "frohman":2, "froissart":2, "frolic":2, "frolicked":2, "frolicker":3, "frolicking":3, "frolickly":3, "frolicky":3, "frolicly":3, "frolicsome":3, "frolicsomely":4, "frolicsomeness":4, "from":1, "frome":1, "fromm":1, "frond":1, "fronde":1, "fronded":2, "frondless":2, "frons":1, "front":1, "front matter":3, "frontenac":2, "frontad":2, "frontage":2, "frontal":2, "frontal bone":3, "frontal lobe":3, "frontally":3, "frontlash":2, "frontless":2, "frontlessly":3, "frontlessness":3, "frontlet":2, "frontrunner":3, "frontstall":2, "frontward":2, "frontwards":2, "fronda":2, "frondescence":3, "frondescent":3, "frondeur":2, "frondizi":3, "fronia":2, "frontal":2, "frontality":4, "frontes":2, "frontenac":3, "frontier":2, "frontiersman":3, "frontierless":3, "frontierlike":3, "frontis":2, "frontispiece":3, "frontolysis":4, "fronton":2, "frontogenesis":5, "frontopariepaged":6, "frontopariepaging":7, "frontoparietal":6, "fronya":2, "frore":1, "frosh":1, "frost":1, "frost":1, "frostbit":2, "frostbite":2, "frostbiter":3, "frostbiting":3, "frostbitten":3, "frostburg":2, "frosted":2, "frostfish":2, "frostfishes":3, "frostflower":3, "frosting":2, "frostier":3, "frostiest":3, "frostily":3, "frostiness":3, "frostless":2, "frostlike":2, "frostproof":2, "frostwork":2, "frosty":2, "froth":1, "froth flotation":4, "frother":2, "frothier":3, "frothiest":3, "frothily":3, "frothiness":3, "frothy":2, "frottage":2, "frottage":2, "frotteur":2, "frottola":3, "frottole":3, "froude":1, "frounce":1, "frouncing":2, "frousier":3, "frousiest":3, "frousy":2, "frouzier":3, "frouziest":3, "frouzy":2, "froufrou":2, "frow":1, "frown":1, "frowner":2, "frowningly":3, "frowst":1, "frowstier":3, "frowstiest":3, "frowstily":3, "frowstiness":3, "frowsty":2, "frowsier":3, "frowsiest":3, "frowsily":3, "frowsiness":3, "frowsty":2, "frowsy":2, "frowzier":3, "frowziest":3, "frowzily":3, "frowziness":3, "frowzy":2, "froze":1, "frobisher":3, "frobisher bay":4, "frodine":2, "frodina":3, "froma":2, "fromage":2, "fromental":3, "fromentin":3, "fromenty":3, "frona":2, "froward":2, "frowardly":3, "frowardness":3, "frozen":2, "frozenly":3, "frozenness":3, "frs":1, "frt":1, "fructed":2, "fructiferous":4, "fructiferously":5, "fructidor":3, "fructified":3, "fructification":5, "fructificative":5, "fructifier":4, "fructify":3, "fructifying":4, "fructose":2, "fructosan":3, "fructoside":3, "fructuous":3, "fructuously":4, "fructuousness":4, "frug":1, "frugging":2, "fruit":1, "fruit body":3, "fruit cocktail":3, "fruit machine":3, "fruit salad":3, "fruit sugar":3, "fruitage":2, "fruitarian":4, "fruitcake":2, "fruitdot":2, "fruited":2, "fruiter":2, "fruiterer":3, "fruiteries":3, "fruitery":3, "fruitful":2, "fruitfully":3, "fruitfulness":3, "fruitier":3, "fruitiest":3, "fruitiness":3, "fruitless":2, "fruitlessly":3, "fruitlessness":3, "fruitlike":2, "fruitwood":2, "fruity":2, "fruitarian":4, "frump":1, "frumpish":2, "frumpishly":3, "frumpishness":3, "frumpier":3, "frumpiest":3, "frumpily":3, "frumpiness":3, "frumpy":2, "frunze":2, "frustrate":2, "frustrated":3, "frustrater":3, "frustrating":3, "frustration":3, "frustrative":3, "frustule":2, "frustum":2, "frustulum":3, "frugal":2, "frugality":4, "frugally":3, "frugivorous":4, "frugivorous":4, "fruition":3, "fruitive":3, "frumentaceous":4, "frumentius":4, "frumenty":3, "frutescence":3, "frutescent":3, "fruticose":3, "fry":1, "fry":1, "fry-pan":1, "fryer":2, "frying":2, "frying pan":3, "frypan":2, "frulein":3, "fruleins":3, "frchet":3, "frchette":3, "frdric":5, "frmont":3, "frbel":2, "frlein":2, "fsa":1, "fsh":1, "fsk":1, "ft-lb":1, "fth":1, "fthm":1, "fu-hsi":1, "fub":1, "fubbing":2, "fubsier":3, "fubsiest":3, "fubsy":2, "fuchs":1, "fuchsite":2, "fuchsia":2, "fuchsin":2, "fuchsine":2, "fuck":1, "fuck about":3, "fucking":1, "fucker":2, "fuckwit":2, "fudge":1, "fudging":2, "fuddle":2, "fuddy-duddies":3, "fuddy-duddy":3, "fuehrer":2, "fuel":1, "fuel element":4, "fuel injection":4, "fuertes":2, "fug":1, "fugue":1, "fuguelike":2, "fugger":2, "fuhrer":2, "ful":1, "full":1, "full nelson":3, "full professor":4, "full radiator":5, "full-blooded":2, "full-bodied":2, "full-bottomed":2, "full-fashioned":2, "full-frontal":2, "full-mouthedly":3, "fullback":2, "fuller":2, "fuller's earth":3, "fuller's teasel":4, "fullness":2, "fulbert":2, "fulbright":2, "fulcrum":2, "fulfil":2, "fulfill":2, "fulfilled":2, "fulfiller":3, "fulfillment":3, "fulfilling":3, "fulfilment":3, "fulgent":2, "fulgently":3, "fulgentness":3, "fulgencio":3, "fulgid":2, "fulgor":2, "fulgorous":3, "fulgour":2, "fulgourous":3, "fulgurant":3, "fulgurate":3, "fulgurated":4, "fulgurating":4, "fulguration":4, "fulgurite":3, "fulgurous":3, "fulham":2, "fulham":2, "fullam":2, "fuller":2, "fullerton":3, "fullom":2, "fully":2, "fully fashioned":4, "fully fledged":3, "fulmar":2, "fulmine":2, "fulmined":2, "fulminic":3, "fulminic acid":5, "fulmining":3, "fulminant":3, "fulminate":3, "fulminated":4, "fulminating":4, "fulminating powder":6, "fulmination":4, "fulminator":4, "fulminatory":5, "fulminous":3, "fulness":2, "fulsome":2, "fulsomely":3, "fulsomeness":3, "fulton":2, "fulvia":3, "fulvous":2, "fume":1, "fume cupboard":3, "fumed":1, "fumeless":2, "fumelike":2, "fumble":2, "fumbler":2, "fumblingly":3, "fumblingness":3, "fumer":2, "fuming":2, "fuming sulphuric acid":7, "fumingly":3, "fumier":3, "fumiest":3, "fumy":2, "fun":1, "function":2, "function shift":3, "function word":3, "functional":3, "functional calculus":6, "functional disease":5, "functional group":4, "functional illiterate":7, "functionalism":4, "functionalist":4, "functionalistic":5, "functionally":4, "functionaries":4, "functionary":4, "functionless":3, "functor":2, "fund":1, "funds":1, "funded debt":3, "funk":1, "funk":1, "funked":1, "funker":2, "funkier":3, "funkiest":3, "funky":2, "funchal":2, "fundament":3, "fundamental":4, "fundamental law":5, "fundamental particle":7, "fundamental unit":6, "fundamentalism":5, "fundamentalist":5, "fundamentality":6, "fundamentally":5, "fundi":2, "fundic":2, "fundus":2, "fundy":2, "funfair":2, "funfest":2, "fungal":2, "fungi":2, "fungic":2, "fungivorous":4, "fungibility":5, "fungible":3, "fungicide":3, "fungicidal":4, "fungicidally":5, "fungiform":3, "fungistat":3, "fungistatic":4, "fungistatically":6, "fungitoxic":4, "fungitoxicity":6, "fungo":2, "fungoid":2, "fungosity":4, "fungous":2, "fungus":2, "funguslike":3, "funkia":3, "funnel":2, "funnel cloud":3, "funnel-web":2, "funneled":2, "funnelled":2, "funnelform":3, "funneling":3, "funnellike":3, "funnelling":3, "funnies":2, "funning":2, "funnier":3, "funniest":3, "funnily":3, "funniness":3, "funny":2, "funny bone":3, "funny farm":3, "funny paper":4, "funnyman":3, "funster":2, "funston":2, "fur":1, "fur brigade":3, "fur seal islands":4, "furl":1, "furlable":3, "furler":2, "furred":1, "furtwngler":4, "furtwler":3, "furze":1, "furzier":3, "furziest":3, "furzy":2, "furaldehyde":4, "furbelow":3, "furbish":2, "furbisher":3, "furcate":2, "furcated":3, "furcating":3, "furcation":3, "furcula":3, "furcular":3, "furculum":3, "furfur":2, "furfural":3, "furfuraldehyde":5, "furfuran":3, "furfures":3, "furfuran":3, "furfuraceous":4, "furfuraceously":5, "furfurol":3, "furfurole":3, "furkit":2, "furlana":3, "furless":2, "furlong":2, "furlough":2, "furmenty":3, "furmety":3, "furmint":2, "furnace":2, "furnaced":2, "furnacelike":3, "furnacing":3, "furnerius":4, "furness":2, "furnish":2, "furnisher":3, "furnishing":3, "furnishings":3, "furniture":3, "furnitureless":4, "furnivall":3, "furphy":2, "furring":2, "furring strip":3, "furrier":3, "furrieries":4, "furriery":4, "furriest":3, "furrily":3, "furriness":3, "furrow":2, "furrower":3, "furrowless":3, "furrowlike":3, "furrowy":3, "furry":2, "further":2, "further education":6, "furtherance":3, "furthermore":3, "furthermost":3, "furthest":2, "furtive":2, "furtively":3, "furtiveness":3, "fuse":1, "fuseless":2, "fuselike":2, "fusetron":2, "fuss":1, "fussbudget":3, "fussbudgety":4, "fusser":2, "fussier":3, "fussiest":3, "fussily":3, "fussiness":3, "fusspot":2, "fussy":2, "fuscous":2, "fusing":2, "fustanelle":3, "fustanella":4, "fustet":2, "fustian":2, "fustic":2, "fustian":3, "fustier":3, "fustiest":3, "fustigate":3, "fustigated":4, "fustigating":4, "fustigation":4, "fustigator":4, "fustigatory":5, "fustily":3, "fustinella":4, "fustiness":3, "fusty":2, "fut":1, "futtock":2, "futtock plate":3, "futtock shroud":3, "fuze":1, "fuzz":1, "fuzzball":2, "fuzzes":2, "fuzzier":3, "fuzziest":3, "fuzzily":3, "fuzziness":3, "fuzzy":2, "fuzzy-headed":3, "fuzzy-wuzzy":3, "fuzing":2, "fuad":2, "fuad i":3, "fuage":2, "fuchi":2, "fucoid":2, "fucus":2, "fuegian":4, "fuel":2, "fueled":2, "fuelled":2, "fueler":3, "fueling":3, "fueller":3, "fuelling":3, "fuegian":4, "fugacity":4, "fugal":2, "fugally":3, "fugard":2, "fugate":2, "fugacious":3, "fugaciously":4, "fugaciousness":4, "fugato":3, "fughetta":3, "fugio":3, "fugitive":3, "fugitively":4, "fugitiveness":4, "fugitivity":5, "fugle":2, "fugleman":3, "fugu":2, "fuguist":2, "fuji":2, "fujiwara":4, "fujiyama":4, "fukien":2, "fukuda":3, "fukuoka":4, "fukushima":4, "fula":2, "fulah":2, "fulani":3, "fuliginous":4, "fuliginously":5, "fuliginousness":5, "fumage":2, "fumaric":3, "fumaric acid":5, "fumarole":3, "fumarolic":4, "fumatoria":5, "fumatorium":5, "fumatory":4, "fumet":2, "fumette":2, "fumeuse":2, "fumigant":3, "fumigate":3, "fumigated":4, "fumigating":4, "fumigation":4, "fumigator":4, "fumigatory":5, "fumitory":4, "fumulus":3, "fum":3, "funambulism":4, "funambulist":4, "funer":2, "funeral":3, "funeral director":6, "funeral parlour":5, "funerary":4, "funest":2, "funereal":4, "funereally":5, "funicular":4, "funiculate":4, "funiculus":4, "funicle":3, "furan":2, "furies":2, "furiae":3, "furiant":3, "furibund":3, "furious":3, "furiously":4, "furiousness":4, "furioso":4, "furor":2, "furore":2, "furore":3, "furuncle":3, "furuncular":4, "furunculosis":5, "fury":2, "fusain":2, "fusan":2, "fusarole":3, "fusee":2, "fusel":2, "fusel oil":3, "fuselage":3, "fuseli":3, "fushih":2, "fushun":2, "fusil":2, "fusile":2, "fusilier":3, "fusillade":3, "fusilladed":4, "fusillading":4, "fusilly":3, "fusion":2, "fusion bomb":3, "fusion reactor":5, "fusionism":3, "fusionist":3, "fusibility":5, "fusible":3, "fusible metal":5, "fusibleness":4, "fusibly":3, "fusiform":3, "fusileer":3, "fusilier":3, "fusobacteria":6, "fusobacterium":6, "fusula":3, "fusuma":3, "futabatei":4, "futharc":2, "futhark":2, "futhorc":2, "futhork":2, "futile":2, "futilely":3, "futileness":3, "futilitarian":6, "futilitarianism":7, "futility":4, "future":2, "future life":3, "future perfect":4, "futures":2, "futureless":3, "futurism":3, "futurism":3, "futurist":3, "futuristic":4, "futuristically":6, "futurity":4, "futurology":5, "futurama":4, "futuramic":4, "futurity":4, "fuzee":2, "fwd":1, "fyke":1, "fylde":1, "fylfot":2, "fyn":1, "fyrd":1, "fytte":1, "fyzabad":3, "fyodor":3, "fzs":1, "ftima":4, "fnelon":4, "fvrier":4, "fdor":3, "fhrer":3, "fnfkirchen":4, "fnen":3, "fima":3, "flon":2, "fnen":2, "g-man":1, "g-strophanthin":3, "g-suit":1, "gab":1, "gabe":1, "gabardine":3, "gabaon":3, "gabaonite":4, "gabbai":2, "gabbais":2, "gabbard":2, "gabbart":2, "gabbaim":3, "gabber":2, "gabbing":2, "gabbier":3, "gabbiest":3, "gabble":2, "gabbler":2, "gabbro":2, "gabbroid":2, "gabbroic":3, "gabby":2, "gabby":2, "gaberdine":3, "gaberlunzie":4, "gaberones":4, "gabfest":2, "gabonese":3, "gaborone":4, "gad":1, "gad":1, "gadaea":2, "gadget":2, "gadgetry":3, "gadgety":3, "gadgeteer":3, "gadsbodikins":4, "gadsden":2, "gadsden purchase":4, "gadswoons":2, "gadabout":3, "gadarene":3, "gaddafi":3, "gadded":2, "gadder":2, "gaddi":2, "gaddi":2, "gadding":2, "gaddingly":3, "gadfly":2, "gadhelic":3, "gadite":2, "gadling":2, "gadolinic":4, "gadolinite":4, "gadolinium":5, "gadwall":2, "gadzooks":2, "gadzooks":2, "gaekwar":2, "gael":1, "gaelic":2, "gaelic coffee":4, "gaelic football":4, "gaeltacht":2, "gaea":2, "gaff":1, "gaff-topsail":2, "gaffe":1, "gaffsail":2, "gaffer":2, "gag":1, "gag-bit":1, "gage":1, "gage":1, "gager":2, "gagger":2, "gagging":2, "gaggle":2, "gaging":2, "gagman":2, "gagroot":2, "gagster":2, "gahnite":2, "gaikwar":2, "gail":1, "gaillard":2, "gaillard cut":3, "gaillardia":4, "gain":1, "gaine":1, "gaines":1, "gainesville":2, "gains":1, "gainst":1, "gainsborough":3, "gainable":3, "gainer":2, "gainful":2, "gainfully":3, "gainfulness":3, "gainings":2, "gainless":2, "gainlessness":3, "gainliness":3, "gainly":2, "gainsaid":2, "gainsay":2, "gainsayer":3, "gainsaying":3, "gait":1, "gaited":2, "gaiter":2, "gaitskell":2, "gaia":2, "gaiety":3, "gaily":2, "gaiseric":3, "gaiterless":3, "gaithersburg":3, "gaius":2, "gal":1, "gal":1, "galaxies":2, "gale":1, "gale":1, "galesburg":2, "gall":1, "gall bladder":3, "gall-apple":2, "galle":1, "gallberry":3, "gallbladder":3, "gallfly":2, "galling":2, "gallingly":3, "gallingness":3, "gallnut":2, "gallstone":2, "galsworthy":3, "galt":1, "galv":1, "galactometer":5, "galactometry":5, "galactophorous":5, "galantine":3, "galaxy":3, "galaxy":3, "galahad":3, "galashiels":3, "galatea":4, "galatea":4, "galatine":3, "galavant":3, "galba":2, "galbanum":3, "galbraith":2, "galcha":2, "galchic":2, "galet":2, "galeas":3, "galeass":3, "galgal":2, "galingale":3, "galilee":3, "galilee":3, "galilean":4, "galilean telescope":7, "galileo":4, "galimatias":5, "galiot":3, "galipot":3, "galivant":3, "galla":2, "gallant":2, "gallant soldier":4, "gallantly":3, "gallantness":3, "gallantry":3, "gallate":2, "gallaudet":3, "gallatin":3, "galle":2, "gallen":2, "galleried":3, "galleries":3, "gallery":3, "gallery forest":5, "galleryite":4, "gallerylike":4, "gallet":2, "galleting":3, "galley":2, "galley proof":3, "galley slave":3, "galley-west":2, "galleylike":3, "galleass":3, "gallegos":3, "galleon":3, "galli-curci":3, "galliard":2, "galliardise":3, "galliardly":3, "gallic":2, "gallic":2, "gallic acid":4, "galliccally":4, "gallipoli":4, "gallia":3, "galliambic":4, "galliass":3, "gallican":3, "gallicanism":4, "gallice":3, "gallicise":3, "gallicised":3, "gallicism":3, "gallicism":3, "galliciser":4, "gallicising":4, "gallicize":3, "gallicize":3, "gallicized":3, "gallicizer":4, "gallicizing":4, "gallicization":5, "gallico":3, "gallienus":4, "galligaskins":4, "gallimaufry":4, "gallinacean":4, "gallinaceous":4, "gallinipper":4, "gallinule":3, "gallinulelike":4, "galliot":3, "gallipot":3, "gallipolis":4, "gallium":3, "gallivant":3, "gallivanter":4, "galliwasp":3, "gallo-romance":3, "gallon":2, "gallonage":3, "galloon":2, "gallooned":2, "galloot":2, "gallop":2, "galloper":3, "galloping":3, "gallous":2, "gallow tree":3, "gallows":2, "gallows bird":3, "gallows humour":4, "gallows tree":3, "gallowses":3, "gallowglass":3, "galloglass":3, "gallopade":3, "galloway":3, "gallup":2, "gallup poll":3, "gallus":2, "gallus":2, "gallused":2, "galluses":3, "gallygaskins":4, "gallnt":3, "galois theory":5, "galop":2, "galopade":3, "galton":2, "galtonian":4, "galva":2, "galvanic":3, "galvanic pile":4, "galvanical":4, "galvanically":5, "galvanoplastically":7, "galvani":3, "galvanise":3, "galvanised":3, "galvanism":3, "galvaniser":4, "galvanising":4, "galvanize":3, "galvanized":3, "galvanizer":4, "galvanizing":4, "galvanization":5, "galvanometer":5, "galvanometry":5, "galvanotropism":5, "galvanocauteries":6, "galvanocautery":6, "galvanometric":5, "galvanometrically":7, "galvanoplastic":5, "galvanoplastics":5, "galvanoplasty":5, "galvanoscope":4, "galvanoscopic":5, "galvanotactic":5, "galvanotaxis":5, "galvanothermy":5, "galvanotropic":5, "galveston":3, "galveston plan":4, "galvo":2, "galvvanoscopy":5, "galway":2, "galways":2, "galways":2, "galwegian":3, "galyac":2, "galyak":2, "gam":1, "gamb":1, "game":1, "game warden":3, "games theory":4, "gamesmanship":3, "gamebag":2, "gamecock":2, "gamekeeper":3, "gamekeeping":3, "gameless":2, "gamelike":2, "gamely":2, "gameness":2, "gamesome":2, "gamesomely":3, "gamesomeness":3, "gamester":2, "gamp":1, "gamba":2, "gamba stop":3, "gambade":2, "gambart":2, "gambado":3, "gambetta":3, "gambeson":3, "gambi":2, "gambier":2, "gambier islands":4, "gambir":2, "gambit":2, "gambia":3, "gamble":2, "gamble":2, "gambler":2, "gamboge":2, "gamboised":2, "gambol":2, "gamboled":2, "gambolled":2, "gamboling":3, "gambolling":3, "gambogian":4, "gambrel":2, "gambrel roof":3, "gambrel-roofed":2, "gambrinus":3, "gambusia":3, "gamer":2, "gamest":2, "gamete":2, "gamey":2, "gamelan":3, "gametangia":5, "gametangium":5, "gametogenous":5, "gametogeny":5, "gametogenesis":6, "gametogenic":5, "gamic":2, "gamin":2, "gamine":2, "gamines":2, "gaming":2, "gamins":2, "gamier":3, "gamiest":3, "gamily":3, "gaminess":3, "gamma":2, "gamma":2, "gamma distribution":6, "gamma globulin":5, "gamma iron":4, "gamma rays":3, "gamma radiation":6, "gammadia":4, "gammadion":4, "gammer":2, "gammexane":3, "gamming":2, "gammon":2, "gammoner":3, "gammoning":3, "gammy":2, "gamone":2, "gamogenesis":5, "gamogenetic":5, "gamogenetically":7, "gamopetalous":5, "gamophyllous":4, "gamosepalous":5, "gamut":2, "gamy":2, "gan":1, "gance":1, "gand":1, "gandzha":2, "gang":1, "gangue":1, "gangbang":2, "gangboard":2, "ganger":2, "gangland":2, "gangplank":2, "gangster":2, "gangtok":2, "gangway":2, "gangwayed":2, "gansevoort":2, "gantlet":2, "gantleted":3, "gantline":2, "gantlope":2, "ganda":2, "gander":2, "gander":2, "gandharva":3, "gandhara":3, "gandharan":3, "gandhi":2, "gandhi cap":3, "gandhism":2, "gandhist":2, "gandhian":3, "gandhiism":3, "gandhiist":3, "gandy dancer":4, "gandzha":2, "ganga jal":3, "ganges":2, "gangetic":3, "gangling":2, "ganglia":3, "ganglial":3, "gangliar":3, "gangliate":3, "gangliated":4, "ganglier":3, "gangliest":3, "gangliform":3, "ganglioid":3, "ganglion":3, "ganglionate":4, "ganglionated":5, "ganglionectomy":6, "ganglionic":4, "ganglioside":4, "gangly":2, "gangrel":2, "gangrene":2, "gangrened":2, "gangrening":3, "gangrenous":3, "ganister":3, "ganja":2, "gannet":2, "gannister":3, "ganoid":2, "ganoblast":3, "ganoin":3, "ganoine":3, "gansey":2, "gantelope":3, "gantrisin":3, "gantry":2, "ganymede":3, "ganymedes":4, "gaol":1, "gaolbird":2, "gaolbreak":2, "gaoler":2, "gap":1, "gape":1, "gapes":1, "gapeseed":2, "gapeworm":2, "gaper":2, "gaping":2, "gapingly":3, "gapless":2, "gaposis":3, "gapping":2, "gapy":2, "gar":1, "gar":1, "gar":1, "garb":1, "garbless":2, "gard":1, "garde-manger":2, "garderobe":2, "gardbrace":2, "gardner":2, "gare":1, "garefowl":2, "garm":1, "gart":1, "garth":1, "garth":1, "garthrod":2, "garage":2, "garand rifle":4, "garamas":3, "garamond":3, "garbage":2, "garbage can":3, "garbage truck":3, "garbanzo":3, "garble":2, "garbler":2, "garbleable":4, "garbo":2, "garbo":2, "garboard":2, "garboil":2, "garcon":2, "garca lorca":5, "garda":2, "gardant":2, "garden":2, "garden":2, "garden centre":4, "garden city":4, "garden cress":3, "garden frame":3, "garden of eden":5, "garden party":4, "garden suburb":4, "garden warbler":4, "gardenable":4, "gardendale":3, "gardener":3, "gardening":3, "gardenless":3, "gardenlike":3, "gardena":3, "gardenia":3, "gardenia":3, "gardenia":4, "gardiner":3, "gardyloo":3, "gareth":2, "garey":2, "garfield":2, "garfish":2, "garfishes":3, "gargantua":4, "gargantuan":4, "garganey":3, "gargaphia":4, "garget":2, "gargety":3, "gargle":2, "gargler":2, "gargoyle":2, "gargoyled":2, "gargoylism":3, "gari":2, "garish":2, "garishly":3, "garishness":3, "garibaldi":4, "garibaldi":4, "garifalia":5, "garland":2, "garland":2, "garlandless":3, "garlandlike":3, "garlic":2, "garlic mustard":4, "garlicky":3, "garment":2, "garmentless":3, "garner":2, "garner":2, "garnet":2, "garnet":2, "garnett":2, "garnett":2, "garnetter":3, "garnetlike":3, "garni":2, "garnish":2, "garnishable":4, "garnishee":3, "garnisheed":3, "garnisheeing":4, "garnisher":3, "garnishment":3, "garnierite":4, "garniture":3, "garpike":2, "garret":2, "garrett":2, "garreted":3, "garreteer":3, "garrick":2, "garring":2, "garrison":3, "garrison":3, "garrot":2, "garrote":2, "garrotte":2, "garroted":3, "garroter":3, "garroting":3, "garrotted":3, "garrotter":3, "garrotting":3, "garrulity":4, "garrulous":3, "garrulously":4, "garrulousness":4, "garry":2, "garrya":3, "garson":2, "garter":2, "garter":2, "garter snake":3, "garter stitch":3, "garterless":3, "garvey":2, "garvin":2, "garwood":2, "gary":2, "garon":3, "gas":1, "gas burner":3, "gas chamber":3, "gas chromatography":6, "gas constant":3, "gas engine":3, "gas equation":4, "gas fixture":3, "gas gangrene":3, "gas lighter":3, "gas mantle":3, "gas meter":3, "gas oven":3, "gas poker":3, "gas station":3, "gas thermometer":5, "gas turbine":3, "gas-cooled reactor":4, "gash":1, "gasmetophytic":5, "gasp":1, "gasper":2, "gaspingly":3, "gasthaus":2, "gasthauses":3, "gasbag":2, "gascogne":2, "gascoigne":2, "gascon":2, "gascon":2, "gasconade":3, "gasconaded":4, "gasconader":4, "gasconading":4, "gascoyne-cecil":3, "gascony":3, "gases":2, "gaseity":4, "gaselier":3, "gaseous":3, "gaseousness":4, "gasholder":3, "gasified":3, "gasifiable":5, "gasification":5, "gasifier":4, "gasiform":3, "gasify":3, "gasifying":4, "gaskell":2, "gasket":2, "gaskin":2, "gasking":2, "gasless":2, "gaslight":2, "gaslighted":3, "gaslit":2, "gasman":2, "gasometer":4, "gasometry":4, "gasogene":3, "gasolene":3, "gasolier":3, "gasoline":3, "gasolineless":4, "gasolinic":4, "gasometric":4, "gasometrically":6, "gaspar":2, "gaspard":2, "gasper":2, "gaspereau":3, "gaspergou":3, "gasperi":3, "gaspinsula":5, "gassendi":3, "gasser":2, "gasser":2, "gassing":2, "gassit":2, "gassier":3, "gassiest":3, "gassiness":3, "gassy":2, "gaster":2, "gasterocheires":5, "gasteropod":4, "gastight":2, "gastightness":3, "gaston":2, "gastonia":4, "gastralgic":3, "gastralgia":4, "gastrectasia":4, "gastrectasis":4, "gastrectomy":4, "gastric":2, "gastric juice":3, "gastric ulcer":4, "gastrin":2, "gastritic":3, "gastritis":3, "gastrocnemial":5, "gastrocnemian":5, "gastrocnemii":5, "gastrocnemius":5, "gastrologist":4, "gastrology":4, "gastronomer":4, "gastronomy":4, "gastropoda":4, "gastropodous":4, "gastroschisis":4, "gastroscopy":4, "gastrostomy":4, "gastrotomy":4, "gastrocolic":4, "gastrodermal":4, "gastrodermis":4, "gastroduodenostomy":8, "gastroenteric":5, "gastroenteritic":6, "gastroenteritis":6, "gastroenterology":7, "gastroenterostomy":7, "gastroenterologic":7, "gastroenterologist":7, "gastrohepatic":5, "gastrointestinal":6, "gastrojejunostomy":7, "gastrolith":3, "gastrologically":6, "gastronome":3, "gastronomic":4, "gastronomically":6, "gastropod":3, "gastroscope":3, "gastroscopic":4, "gastrotomic":4, "gastrotomy":4, "gastrotrich":3, "gastrovascular":5, "gastrula":3, "gastrular":3, "gastrulate":3, "gastrulated":4, "gastrulating":4, "gastrulation":4, "gasworks":2, "gat":1, "gate":1, "gate money":3, "gate-crasher":2, "gate-leg table":3, "gate-legged table":3, "gates":1, "gateshead":2, "gatesville":2, "gatefold":2, "gatehouse":2, "gatehouses":3, "gatekeeper":3, "gateless":2, "gatelike":2, "gateman":2, "gatepost":2, "gateway":2, "gath":1, "gather":2, "gatherable":4, "gatherer":3, "gathering":3, "gatt":1, "gated":2, "gating":2, "gatling gun":3, "gattamelata":5, "gauche":1, "gauchely":2, "gaucheness":2, "gaud":1, "gauderies":3, "gaudery":3, "gaudies":2, "gaudier":3, "gaudiest":3, "gaudily":3, "gaudiness":3, "gaudy":2, "gauffer":2, "gauffering":3, "gauge":1, "gaugeable":3, "gaugeably":3, "gauger":2, "gauging":2, "gaul":1, "gaulle":1, "gaullism":2, "gaullist":2, "gaulish":2, "gaultheria":4, "gaumless":2, "gaunt":1, "gaunt":1, "gauntlet":2, "gauntleted":3, "gauntly":2, "gauntness":2, "gauntry":2, "gaup":1, "gaur":1, "gauss":1, "gauss":1, "gaussian":3, "gaussian distribution":7, "gaussmeter":3, "gauze":1, "gauzelike":2, "gauzier":3, "gauziest":3, "gauzily":3, "gauziness":3, "gauzy":2, "gaucherie":3, "gaucho":2, "gaud":2, "gaudeamus":4, "gaudeamuses":5, "gaudier-brzeska":3, "gaudibert":3, "gaugamela":4, "gauguin":2, "gauhati":3, "gauleiter":3, "gauricus":3, "gautama":2, "gautama":3, "gautier":2, "gave":1, "gavel":2, "gavelkind":3, "gavelock":3, "gavin":2, "gaw":1, "gawk":1, "gawkish":2, "gawkishly":3, "gawkishness":3, "gawkier":3, "gawkiest":3, "gawkily":3, "gawkiness":3, "gawky":2, "gawp":1, "gawra":2, "gawsie":2, "gawsy":2, "gay":1, "gay":1, "gay gordons":3, "gay-feather":2, "gay-lussac":2, "gay-lussac's law":3, "gayle":1, "gayety":3, "gaylord":2, "gaylussite":3, "gayly":2, "gayness":2, "gaynor":2, "gaywings":2, "gaz":1, "gaze":1, "gazehound":2, "gazeless":2, "gazankulu":4, "gazer":2, "gazetteer":3, "gazing":2, "gazingly":3, "gazogene":3, "gazpacho":3, "gab":2, "gabar":2, "gabelle":2, "gabelled":2, "gaberloonie":4, "gaberones":4, "gabion":3, "gabionade":4, "gabionnade":4, "gable":2, "gable":2, "gable window":4, "gable-roofed":2, "gabled":2, "gablet":2, "gableended":4, "gablelike":3, "gablewindowed":4, "gabo":2, "gabon":2, "gaboon":2, "gabor":2, "gaboriau":3, "gabriel":3, "gabrielle":3, "gabriela":4, "gabriella":4, "gabriela":4, "gabriele":4, "gabrieli":4, "gabrilowitsch":4, "gabun":2, "gaby":2, "gaby":2, "gabs":3, "gadhelic":3, "gadi":2, "gadid":2, "gadoid":2, "gadroon":2, "gadrooned":2, "gadroonage":3, "gadrooning":3, "gaetano":4, "gaga":2, "gagauzi":3, "gagarin":3, "gahanna":3, "gaius":2, "gal":2, "gala":2, "gala":2, "galactan":3, "galactagogue":4, "galactic":3, "galactic equator":6, "galactic plane":4, "galactic poles":4, "galactin":3, "galactite":3, "galactoid":3, "galactose":3, "galactophore":4, "galactopoietic":6, "galactopoiesis":6, "galactosan":4, "galactoscope":4, "galah":2, "galangal":3, "galanty show":4, "galatz":2, "galax":2, "galax":2, "galago":3, "galata":3, "galati":3, "galatia":3, "galatian":3, "galatians":3, "galeeny":3, "galen":2, "galenic":3, "galenic":3, "galenism":3, "galenist":3, "galenical":4, "galea":3, "galeae":3, "galeate":3, "galeated":4, "galeiform":4, "galena":3, "galena":3, "galenite":3, "galenus":3, "galeus":3, "galinthias":4, "galibi":3, "galician":3, "galicia":4, "galician":4, "gallinas":3, "gallinas point":4, "galoot":2, "galore":2, "galosh":2, "galoshe":2, "galoshes":3, "galoubet":3, "galofalo":4, "galumph":2, "galuppi":3, "galuth":2, "galpagos islands":6, "gama":2, "gama grass":3, "gamaliel":4, "gametic":3, "gametically":5, "gametocyte":4, "gametophore":4, "gametophoric":5, "gametophyte":4, "ganef":2, "ganev":2, "ganesa":3, "ganesha":3, "ganof":2, "ganosis":3, "ganymeda":4, "gao":2, "gaon":2, "gaonic":3, "garage":2, "garaged":2, "garaging":3, "garam masala":5, "garibaldi":4, "garonne":2, "garote":2, "garotte":2, "garoted":3, "garoter":3, "garoting":3, "garotted":3, "garotter":3, "garotting":3, "garofalo":4, "gara":4, "gat":2, "gata":2, "gateau":2, "gater":2, "gatha":2, "gathic":2, "gator":2, "gatun":2, "gavage":2, "gavial":3, "gavialoid":4, "gavot":2, "gavotte":2, "gawain":2, "gaya":2, "gayal":2, "gayatri":3, "gayomart":3, "gaza":2, "gaza strip":3, "gazabo":3, "gazelle":2, "gazelle-boy":2, "gazellelike":3, "gazella":3, "gazette":2, "gazetted":3, "gazetted officer":6, "gazetting":3, "gazebo":3, "gaziantep":4, "gazump":2, "gazh":3, "gba":1, "gbari":2, "gbe":1, "gbg":1, "gbh":1, "gbj":1, "gbm":1, "gbz":1, "gca":1, "gcb":1, "gcf":1, "gcf":1, "gcm":1, "gcm":1, "gcmg":1, "gcvo":1, "gda":1, "gdansk":1, "gdns":1, "gdr":1, "gds":1, "gdynia":2, "ge'ez":1, "gean":1, "gear":1, "gear lever":3, "gearbox":2, "gearing":2, "gearless":2, "gearshift":2, "gearwheel":2, "geb":1, "geck":1, "gecko":2, "geckoes":2, "geckos":2, "ged":1, "gedd":1, "gedaliah":4, "geddes":2, "gee":1, "gee-gee":1, "geek":1, "geese":1, "geest":1, "geegaw":2, "geeing":2, "geelong":2, "geepound":2, "geezer":2, "gehlenite":3, "gehrig":2, "geissler tube":3, "geistown":2, "geiger":2, "geiger counter":4, "geiger-mler counter":5, "geikie":2, "geisel":2, "geisha":2, "geison":2, "geitonogamous":5, "geitonogamy":5, "gel":1, "geld":1, "gelded":2, "gelder":2, "gelding":2, "gelt":1, "gelatin":3, "gelatine":3, "gelatinity":5, "gelderland":3, "gelid":2, "gelidly":3, "gelignite":3, "gelling":2, "gelligaer":3, "gelsenkirchen":4, "gelsemia":4, "gelsemium":4, "gelsemiums":4, "gem":1, "gems":1, "gemsbok":2, "gemsbuck":2, "gemses":2, "gemel":2, "gemeled":2, "geminate":3, "geminately":4, "geminated":4, "geminating":4, "gemination":4, "gemini":3, "gemini":3, "geminiflorous":5, "geminorum":4, "geminus":3, "gemless":2, "gemlike":2, "gemma":2, "gemma":2, "gemmae":2, "gemmate":2, "gemmated":3, "gemmating":3, "gemmaceous":3, "gemmation":3, "gemmiferous":4, "gemming":2, "gemmipara":4, "gemmipares":4, "gemmiparous":4, "gemmier":3, "gemmiest":3, "gemmiform":3, "gemmily":3, "gemminess":3, "gemmiparity":5, "gemmologist":4, "gemmology":4, "gemmological":5, "gemmule":2, "gemmulation":4, "gemmuliferous":5, "gemmy":2, "gemologist":4, "gemology":4, "gemological":5, "gempylid":3, "gemstone":2, "gen":1, "gen":1, "genck":1, "gene":1, "gene":1, "gene frequency":4, "genevive":3, "genf":1, "genfersee":3, "genit":1, "genk":1, "genl":1, "genl":1, "gens":1, "gent":1, "gent":1, "gents":1, "gendarme":2, "gendarmery":4, "gendarmerie":4, "gendarmery":4, "gender":2, "genera":3, "general":3, "general anaesthetic":7, "general assembly":6, "general delivery":7, "general election":6, "general hospital":6, "general officer":6, "general post office":6, "general practitioner":7, "general semantics":6, "general staff":4, "general strike":4, "general synod":5, "general-purpose":4, "generalcy":4, "generalise":4, "generalised":4, "generalist":4, "generaliser":5, "generalising":5, "generalissimo":6, "generalize":4, "generalized":4, "generalized other":6, "generalizable":6, "generalizer":5, "generalizing":5, "generalisation":6, "generality":5, "generalization":6, "generally":4, "generalness":4, "generalship":4, "generate":3, "generated":4, "generating":4, "generability":6, "generable":4, "generableness":5, "generation":4, "generation gap":5, "generative":4, "generative grammar":6, "generative semantics":7, "generatively":5, "generativeness":5, "generator":4, "generatrix":4, "generatrices":5, "generosity":5, "generous":3, "generously":4, "generousness":4, "genet":2, "genethliacally":6, "genearch":3, "genera":3, "genesee":3, "geneseo":4, "genesis":3, "genesis":3, "genetrix":3, "genetyllis":4, "genevese":3, "genevi":3, "genevieve":3, "genghis khan":3, "genial":2, "genially":3, "genialness":3, "genic":2, "genip":2, "genius":2, "geniuses":3, "genii":3, "genipap":3, "genital":3, "genitals":3, "genitalic":4, "genitalia":4, "genitalia":5, "genitive":3, "genitival":4, "genitivally":5, "genitor":3, "genitourinary":7, "genitrix":3, "geniture":3, "gennaro":3, "gennet":2, "genoa":3, "genoa":3, "genoa cake":4, "genocide":3, "genocidal":4, "genoese":3, "genotype":3, "genotypic":4, "genotypically":6, "genovese":3, "genoveva":4, "genre":2, "genro":2, "genseng":2, "genseric":3, "genteel":2, "genteelism":3, "genteelly":3, "genteelness":3, "gentes":2, "gentian":2, "gentian blue":3, "gentian violet":5, "gentianella":4, "gentianin":3, "gentil":2, "gentile":2, "gentile":2, "gentilism":3, "gentility":4, "gentianaceous":5, "gentile":3, "gentilesse":3, "gentisate":3, "gentisin":3, "gentle":2, "gentle breeze":3, "gentle-voiced":2, "gentlefolk":3, "gentlefolks":3, "gentlehood":3, "gentleman":3, "gentleman's agreement":6, "gentleman-at-arms":3, "gentleman-commoner":5, "gentleman-farmer":4, "gentleman-pensioner":5, "gentlemanlike":4, "gentlemanliness":5, "gentlemanly":4, "gentlemen's agreement":6, "gentlemen-at-arms":3, "gentlemen-commoners":5, "gentlemen-farmers":4, "gentlemen-pensioners":5, "gentleness":3, "gentlewoman":4, "gentlewomanly":5, "gentlewomen":4, "gently":2, "gentoo":2, "gentrification":5, "gentry":2, "gentry":2, "genty":2, "genu":2, "genuflect":3, "genuflection":4, "genuflector":4, "genuflexion":4, "genuine":3, "genuinely":4, "genuineness":4, "genupectoral":5, "geod":1, "geoffrey":2, "geoffrey of monmouth":5, "geog":1, "geol":1, "geom":1, "george":1, "georgetown":2, "georgann":2, "geordie":2, "georgene":2, "georgesman":3, "georgette":2, "georgette":2, "georgette crepe":3, "georgia":2, "georgian":2, "georgian bay":3, "georgic":2, "georgics":2, "georgine":2, "georgiana":4, "georgina":3, "georgius":3, "ger":1, "ger":1, "gerd":1, "germ":1, "germ layer":3, "germ theory":4, "germ warfare":3, "germfree":2, "germless":2, "germlike":2, "germproof":2, "gers":1, "gershwin":2, "gersdorffite":3, "gert":1, "gerald":2, "geraldton":3, "geraldine":3, "geratology":5, "geratologic":5, "gerbil":2, "gerbille":2, "gerda":2, "gerdie":2, "gerdye":2, "gerent":2, "gerenuk":3, "gerfalcon":3, "gerhard":2, "gerhart":2, "gerhardus":3, "geriatric":4, "geriatrics":4, "geriatrist":4, "geriatrician":5, "gerlachovka":4, "germain":2, "germaine":2, "german":2, "german":2, "german baptist brethren":6, "german cockroach":4, "german democratic republic":9, "german east africa":6, "german measles":4, "german ocean":4, "german shepherd":4, "german silver":4, "german sixth":3, "germane":2, "germanely":3, "germaneness":3, "germander":3, "germander speedwell":5, "germanic":3, "germanic":3, "germanise":3, "germanised":3, "germanism":3, "germanist":3, "germaniser":4, "germanising":4, "germanite":3, "germanize":3, "germanized":3, "germanizer":4, "germanizing":4, "germanically":5, "germanicus caesar":6, "germanization":5, "germanous":3, "germanophil":4, "germanophile":4, "germanophobe":4, "germanophobia":6, "germantown":3, "germanium":4, "germany":3, "germen":2, "germens":2, "germiston":3, "germicide":3, "germicidal":4, "germina":3, "germinal":3, "germinal":3, "germinal disc":4, "germinal vesicle":6, "germinally":4, "germinance":3, "germinant":3, "germinancy":4, "germinate":3, "germinated":4, "germinating":4, "germinable":4, "germination":4, "germinative":4, "germinatively":5, "germinator":4, "germn":3, "gerontocracy":5, "gerontologist":5, "gerontology":5, "gerodontia":4, "gerodontic":4, "gerodontics":4, "gerrard":2, "gerri":2, "gerry":2, "gerrymander":4, "gerrymanderer":5, "gersam":2, "gershom":2, "gertie":2, "gertrude":2, "gertrude":2, "gerund":2, "gerundive":3, "gerundival":4, "gervais":2, "gerzean":3, "gest":1, "geste":1, "gessen":2, "gesso":2, "gesta romanorum":6, "gestate":2, "gestated":3, "gestating":3, "gestation":3, "gestational":4, "gestative":3, "gestatorial chair":6, "gestic":2, "gesticular":4, "gesticulate":4, "gesticulated":5, "gesticulating":5, "gesticulation":5, "gesticulative":5, "gesticulatively":6, "gesticulator":5, "gesticulatory":6, "gestion":2, "gestical":3, "gesture":2, "gestured":2, "gestureless":3, "gestural":3, "gesturer":3, "gesturing":3, "get":1, "get about":3, "get across":3, "get ahead":3, "get along":3, "get around":3, "get away":3, "get into":3, "get onto":3, "get over":3, "get-at-able":2, "get-together":3, "geth":1, "gethsemane":4, "gethsemanic":4, "getatability":6, "getatable":4, "getatableness":5, "getable":3, "getaway":3, "gettable":3, "getter":2, "gettering":3, "getting":2, "getty":2, "gettysburg":3, "gettysburg address":5, "getup":2, "geulincx":2, "gev":1, "gewgaw":2, "gewgawed":2, "gey":1, "geyser":2, "geyseral":3, "geyseric":3, "geyserite":3, "geanticline":4, "geanticlinal":5, "geber":2, "gebrauchsmusik":4, "gedact":2, "gedeckt":2, "geez":2, "gefilte fish":4, "gefte fish":4, "gegenion":4, "gegenschein":3, "gehenna":3, "gel":2, "gelatification":6, "gelatinate":4, "gelatinated":5, "gelatinating":5, "gelatination":5, "gelatinise":4, "gelatinised":4, "gelatiniser":5, "gelatinising":5, "gelatinize":4, "gelatinized":4, "gelatinizer":5, "gelatinizing":5, "gelatinization":6, "gelatinoid":4, "gelatinous":4, "gelatinously":5, "gelatinousness":5, "gelada":3, "gelanor":3, "gelasia":3, "gelation":3, "gelechiid":4, "gelene":2, "gelett":2, "gelidity":4, "gelibolu":4, "gelonus":3, "gelugpa":3, "gelndelufer":7, "gelndesprung":5, "gele":3, "gelde jump":4, "geldesprung":4, "gemara":3, "gemaric":3, "gemarist":3, "gemeinschaft":3, "gemeinschaften":4, "geminiani":4, "gemot":2, "gemote":2, "gemuetlich":3, "gemuetlichkeit":4, "gemtlich":4, "gemtlichkeit":5, "gemlich":3, "gen":2, "gena":2, "genae":2, "genal":2, "genappe":2, "genapped":2, "genapping":3, "geneina":3, "generic":3, "generical":4, "generically":5, "genericalness":5, "genesic":3, "genet":2, "genethliac":4, "genethlialogy":6, "genethlialogic":6, "genette":2, "genetic":3, "genetic code":4, "genetic engineering":7, "genetics":3, "genetical":4, "genetically":5, "geneticist":4, "genevra":3, "genealogist":5, "genealogy":5, "genealogical":6, "genealogical tree":7, "genealogically":7, "genesiac":4, "geneva":3, "geneva":3, "geneva bands":4, "geneva convention":6, "geneva gown":4, "genevan":3, "geniculate":4, "geniculately":5, "geniculation":5, "genie":2, "genip":2, "genista":3, "genia":3, "genial":3, "geniality":5, "genii":3, "genius":3, "genius loci":5, "genizah":3, "geno":2, "genolla":3, "genom":2, "genome":2, "genouillre":4, "genouillres":4, "genomic":3, "genova":3, "genu":2, "genus":2, "genua":3, "genual":3, "genucius":3, "genve":3, "gent":3, "geo-navigation":5, "geode":2, "geodesist":4, "geodesy":4, "geodic":3, "geognostic":4, "geognostically":6, "geognosy":4, "geographer":4, "geography":4, "geoid":2, "geoidal":3, "geologise":4, "geologised":4, "geologising":5, "geologize":4, "geologized":4, "geologizing":5, "geology":4, "geometer":4, "geometrid":4, "geometrise":4, "geometrised":4, "geometrising":5, "geometrize":4, "geometrized":4, "geometrizing":5, "geometrician":5, "geometry":4, "geonic":3, "geophagism":4, "geophagist":4, "geophagous":4, "geophagy":4, "geophilous":4, "georg":2, "georgi":3, "geotropism":4, "geocentric":4, "geocentric parallax":7, "geocentrically":6, "geochemist":4, "geochemistry":5, "geochemical":5, "geochronologic":6, "geochronologist":6, "geochronology":6, "geodesic":4, "geodesic dome":5, "geodesical":5, "geodetic":4, "geodetic surveying":7, "geodetics":4, "geodetical":5, "geodetically":6, "geodynamic":5, "geodynamics":5, "geodynamical":6, "geodynamicist":6, "geographic":4, "geographical":5, "geographical determinism":9, "geographical mile":6, "geographically":6, "geoisotherm":5, "geologic":4, "geological":5, "geologically":6, "geomagnetic":5, "geomagnetism":5, "geomagnetism":5, "geomagnetician":6, "geomancer":4, "geomancy":4, "geomantic":4, "geomantical":5, "geomantically":6, "geomedical":5, "geomedicine":5, "geometric":4, "geometric mean":5, "geometric pace":5, "geometric progression":7, "geometric series":6, "geometrical":5, "geometrically":6, "geomechanics":5, "geomorphic":4, "geomorphogeny":6, "geomorphologist":6, "geomorphology":6, "geomorphological":7, "geonim":3, "geophagia":4, "geophysics":4, "geophysical":5, "geophysically":6, "geophysicist":5, "geophyte":3, "geophytic":4, "geopolitic":5, "geopolitics":5, "geopolitician":6, "geoponic":4, "geoponics":4, "geopolitical":6, "geopolitically":7, "geopotential":5, "georama":4, "geoscience":4, "geosphere":3, "geostatic":4, "geostatics":4, "geostrategy":5, "geostrophic":4, "geosyncline":4, "geosynclinal":5, "geotactic":4, "geotactically":6, "geotaxis":4, "geotectonic":5, "geothermal":4, "geothermic":4, "geotropic":4, "geotropically":6, "gera":2, "gerah":2, "geraint":2, "geralda":3, "gerar":2, "gerard":2, "geranial":4, "geraniaceous":5, "geraniol":4, "geranium":4, "geranium":4, "gerent":2, "gerefa":3, "geri":2, "gering":2, "geronimo":4, "gerontine":3, "gerontogeous":5, "gerousia":4, "gerona":3, "gerundive":3, "gerundively":4, "gerundial":4, "gerundially":5, "gerusia":4, "geryon":3, "geryones":4, "gesell":2, "gesellschaft":3, "gesellschaften":4, "gesith":2, "gestalt":2, "gestalt psychology":6, "gestalts":2, "gestalten":3, "gestapo":3, "gesundheit":3, "gesualdo":4, "geum":2, "gevaert":2, "gezer":2, "gezira":3, "ghain":1, "ghardaa":4, "gharri":2, "gharry":2, "ghast":1, "ghastful":2, "ghastfully":3, "ghastfulness":3, "ghastily":3, "ghastlier":3, "ghastliest":3, "ghastlily":3, "ghastliness":3, "ghastly":2, "ghat":1, "ghats":1, "ghaut":1, "ghazzah":2, "ghazzali":3, "ghana":2, "ghanian":3, "gharial":3, "ghazal":2, "ghazi":2, "ghee":1, "ghelderode":3, "ghent":1, "gheorghe":2, "gheorghiu-dej":2, "gherkin":2, "ghetto":2, "gheber":2, "ghebre":2, "gherao":2, "ghibelline":3, "ghibellinism":4, "ghibli":2, "ghillie":2, "ghiordes":2, "ghirlandaio":4, "ghirlandajo":4, "ghiberti":3, "ghost":1, "ghost-writer":2, "ghostdom":2, "ghostfish":2, "ghostfishes":3, "ghostily":3, "ghostlike":2, "ghostlier":3, "ghostliest":3, "ghostliness":3, "ghostly":2, "ghostwrite":2, "ghostwritten":3, "ghostwrote":2, "ghoul":1, "ghoulish":2, "ghoulishly":3, "ghoulishness":3, "ghq":1, "ghyll":1, "giambattista":4, "giaour":1, "giacometti":4, "giacomo":3, "giacomuzzo":4, "giaour":2, "gib":1, "gib":1, "gibbed":1, "gibbs":1, "gibbs function":3, "gibbsite":2, "gibe":1, "gibber":2, "gibberellic acid":6, "gibberellin":4, "gibberish":3, "gibbet":2, "gibbeted":3, "gibbeting":3, "gibbing":2, "gibbon":2, "gibbon":2, "gibbons":2, "gibbose":2, "gibbosely":3, "gibboseness":3, "gibbosity":4, "gibbous":2, "gibbously":3, "gibbousness":3, "gibby":2, "giber":2, "gibeon":3, "gibeonite":4, "gibing":2, "gibingly":3, "giblet":2, "giblets":2, "gibli":2, "gibran":2, "gibson":2, "gibson desert":4, "gibson girl":3, "gibsonburg":3, "gid":1, "gide":1, "gidgee":2, "gidjee":2, "giddap":2, "giddied":2, "giddings":2, "giddier":3, "giddiest":3, "giddily":3, "giddiness":3, "giddy":2, "giddy-up":2, "giddying":3, "gideon":3, "gideon bible":5, "gie":1, "gielgud":2, "gier-eagle":2, "giessen":2, "gierek":2, "gieseking":3, "gift":1, "gift-wrapper":2, "gifted":2, "giftedly":3, "giftedness":3, "giftless":2, "giftwrap":2, "giftwrapping":3, "gig":1, "gigsman":2, "gigue":1, "gigging":2, "giggle":2, "giggle house":3, "giggler":2, "gigglier":3, "giggliest":3, "giggly":2, "giglet":2, "giglot":2, "gigot":2, "gigolo":3, "gil":1, "gild":1, "gildsman":2, "gildswoman":3, "gildable":3, "gilded":2, "gilder":2, "gildhall":2, "gilding":2, "giles":1, "giles":1, "gill":1, "gill":1, "gill fungus":3, "gill-netter":2, "gill-over-the-ground":2, "gills":1, "gilling":2, "gillray":2, "gilt":1, "gilthead":2, "gilbert":2, "gilbert":2, "gilbert islands":4, "gilberte":2, "gilberta":3, "gilbertine":3, "gilbertian":4, "gilbertina":4, "gilberto":3, "gilda":2, "gilder":2, "gilead":3, "gileadite":4, "gilgai":2, "gilgal":2, "gilgamesh":3, "gilgie":2, "gilgul":2, "gilguy":2, "gilgulim":3, "gilles":2, "gillespie":3, "gillett":2, "gillette":2, "gillie":2, "gillied":2, "gillingham":3, "gillion":2, "gillian":3, "gilliflower":4, "gilly":2, "gillyflower":4, "gillying":3, "gilman":2, "gilmer":2, "gilroy":2, "gilson":2, "gilsonite":3, "gilsonite":3, "gimp":1, "gimpy":2, "gimbals":2, "gimblet":2, "gimcrack":2, "gimcrackery":4, "gimel":2, "gimlet":2, "gimlet-eyed":2, "gimlety":3, "gimmal":2, "gimme":2, "gimmick":2, "gimmickery":3, "gimmickry":3, "gimmicky":3, "gin":1, "gin palace":3, "gin rummy":3, "gingham":2, "gingko":2, "gink":1, "ginkgo":2, "ginned":1, "ginsberg":2, "ginzberg":2, "gingal":2, "gingall":2, "gingelli":3, "gingelly":3, "ginger":2, "ginger":2, "ginger ale":3, "ginger beer":3, "ginger group":3, "ginger snap":3, "ginger up":3, "ginger wine":3, "gingerbread":3, "gingerbread tree":4, "gingerliness":4, "gingerly":3, "gingersnap":3, "gingery":3, "gingeli":3, "gingili":3, "gingiva":3, "gingival":3, "gingivitis":4, "ginglymoid":3, "ginglymus":3, "ginnel":2, "ginner":2, "ginneries":3, "ginnery":3, "ginning":2, "ginnungagap":4, "ginny":2, "ginseng":2, "ginza":2, "ginzo":2, "giordano":3, "giorgi system":4, "giorgio":2, "giorgione":3, "giotto":2, "gioconda":3, "giocoso":3, "giono":2, "giosue":3, "giovanna":3, "giovanni":3, "giovannida":4, "gip":1, "gippsland":2, "gipper":2, "gipping":2, "gippy":2, "gipseian":3, "gipsy":2, "gipsy":2, "gipsy moth":3, "gipsydom":3, "gipsyesque":3, "gipsyhood":3, "gipsyish":3, "gipsyism":3, "gipsylike":3, "gipsywort":3, "gird":1, "girded":2, "girder":2, "girdering":3, "girderless":3, "girding":2, "girdingly":3, "girl":1, "girl friday":3, "girl-o":1, "girlfriend":2, "girlhood":2, "girlie":2, "girlish":2, "girlishly":3, "girlishness":3, "girly":2, "girn":1, "girt":1, "girth":1, "girthline":2, "girtline":2, "girandole":3, "girasol":3, "girasole":3, "girdle":2, "girdler":2, "girdlecake":3, "girdlelike":3, "girdlingly":3, "girgenti":3, "girosol":3, "girtin":2, "gish":1, "gist":1, "gisborne":2, "giscard d'estaing":4, "gismo":2, "gissing":2, "git":1, "gittern":2, "giuba":2, "giuki":2, "giukung":2, "giulietta":3, "giulio":2, "giulio romano":5, "giulini":3, "giuseppe":3, "giusto":2, "give":1, "give away":3, "give onto":3, "give over":3, "giveable":3, "giveaway":3, "given":2, "given name":3, "giver":2, "giving":2, "gizmo":2, "gizzard":2, "giant":2, "giant killer":4, "giant panda":4, "giant planet":4, "giant powder":4, "giant star":3, "giant tortoise":4, "giant's causeway":4, "giant-like":2, "giantess":3, "giantism":3, "giardia":4, "giauque":2, "gibraltar":3, "gibran":2, "gibus":2, "gibuses":3, "gifu":2, "gigantes":3, "gigantesque":3, "gigantean":4, "gigantic":3, "giganticness":4, "gigantism":3, "gigantically":5, "gigantomachy":5, "gigantomachia":6, "gigantopithecus":6, "gigacycle":4, "gigahertz":3, "gigahertzes":4, "gigameter":4, "gigasecond":4, "gigaton":3, "gigawatt":3, "gigli":2, "gigot":2, "gij":2, "gijon":2, "gila":2, "gila monster":4, "gilels":2, "gilet":2, "gilolo":3, "gina":2, "ginep":2, "ginevra":3, "gino":2, "gipon":2, "giraffe":2, "giraldus cambrensis":6, "girandola":4, "girard":2, "giraud":2, "giraudoux":3, "giro":2, "giron":2, "gironde":2, "girondism":3, "girondist":3, "gironny":3, "girouette":3, "girolamo":4, "gisant":2, "gisarme":2, "giselle":2, "gitana":3, "gitim":2, "giza":2, "gizeh":2, "gjellerup":3, "gjuki":2, "gjukung":2, "glackens":2, "glacis":2, "glacier":3, "glacier milk":4, "glaciology":5, "glad":1, "glad":1, "glad-hander":2, "glade":1, "gladelike":2, "gladewater":3, "gladsheim":2, "gladbach-rheydt":2, "gladbeck":2, "gladded":2, "gladden":2, "gladdener":3, "gladder":2, "gladdest":2, "gladding":2, "gladdon":2, "gladiate":3, "gladiator":4, "gladiatorial":6, "gladiola":4, "gladiolar":4, "gladiolus":4, "gladly":2, "gladness":2, "gladrags":2, "gladsome":2, "gladsomely":3, "gladsomeness":3, "gladstone":2, "gladstone bag":3, "gladwin":2, "gladys":2, "glagolitic":4, "glaiket":2, "glaiketness":3, "glaikit":2, "glaikitness":3, "glair":1, "glaire":1, "glaireous":3, "glairing":2, "glairier":3, "glairiest":3, "glairiness":3, "glairy":2, "glaive":1, "glaisher":2, "glamor":2, "glamorise":3, "glamorize":3, "glamorized":3, "glamorizer":4, "glamorizing":4, "glamorization":5, "glamorous":3, "glamorously":4, "glamorousness":4, "glance":1, "glancing":2, "glancingly":3, "gland":1, "glandless":2, "glandlike":2, "glans":1, "glandered":2, "glanders":2, "glanderous":3, "glandes":2, "glandule":2, "glandular":3, "glandular fever":5, "glandularly":4, "glandulous":3, "glandulousness":4, "glanville-hicks":2, "glare":1, "glareless":2, "glaring":2, "glaringly":3, "glaringness":3, "glarier":3, "glariest":3, "glariness":3, "glary":2, "glass":1, "glass":1, "glass harmonica":5, "glass-blower":2, "glass-blowing":2, "glass-maker":2, "glassblowing":3, "glasses":2, "glassful":2, "glasshouse":2, "glasshouses":3, "glassine":2, "glassier":3, "glassiest":3, "glassily":3, "glassiness":3, "glassless":2, "glasslike":2, "glassmaker":3, "glassmaking":3, "glassman":2, "glassport":2, "glassware":2, "glasswork":2, "glassworks":2, "glassworker":3, "glasswort":2, "glassy":2, "glassy-eyed":2, "glasgow":2, "glaspell":2, "glastonbury":4, "glaswegian":3, "glauber salt":3, "glauber's salt":3, "glauberite":3, "glauce":2, "glaucescence":3, "glaucescent":3, "glaucia":2, "glaucous":2, "glaucous gull":3, "glaucously":3, "glaucodot":3, "glaucodote":3, "glaucoma":3, "glaucomatous":4, "glauconite":3, "glauconitic":4, "glaucophane":3, "glaucus":2, "glave":1, "glaze":1, "glazed":1, "glazement":2, "glazer":2, "glazing":2, "glazing-bar":2, "glazily":3, "glaziness":3, "glabella":3, "glabellae":3, "glabellar":3, "glabellum":3, "glaber":2, "glabrate":2, "glabrescent":3, "glabrous":2, "glace":2, "glacial":2, "glacialist":3, "glacially":3, "glacier":2, "glaciered":2, "glacis":2, "glacial":3, "glacial acetic acid":8, "glacial period":6, "glacialist":4, "glaciate":3, "glaciated":4, "glaciating":4, "glaciation":4, "glaciologist":5, "glaciology":5, "glaciological":6, "glac":3, "glaced":3, "glacing":4, "gladii":3, "gladius":3, "glamorgan":3, "glamorganshire":4, "glarus":2, "glaser":2, "glazier":2, "glaziery":3, "glazier":3, "glazunov":3, "glc":1, "gld":1, "gleam":1, "gleamingly":3, "gleamless":2, "glean":1, "gleanable":3, "gleaner":2, "gleaning":2, "gleanings":2, "glebe":1, "glebeless":2, "gled":1, "glede":1, "glee":1, "glee":1, "gleed":1, "gleek":1, "gleet":1, "gleetier":3, "gleetiest":3, "gleety":2, "gleeful":2, "gleefully":3, "gleefulness":3, "gleeman":2, "gleesome":2, "gleesomely":3, "gleesomeness":3, "gleg":1, "glegly":2, "glegness":2, "gleipnir":2, "gleiwitz":2, "glen":1, "glen":1, "glen albyn":3, "glenn":1, "glennville":2, "glencoe":2, "glenda":2, "glendale":2, "glendive":2, "glendower":3, "glendora":3, "glengarry":3, "glenice":2, "glenis":2, "glenlike":2, "glenolden":3, "glenrothes":3, "glenview":2, "glenwood":2, "glenyss":2, "glessariae":4, "gley":1, "gleba":2, "glebal":2, "glenoid":2, "glenus":2, "glib":1, "glibber":2, "glibbest":2, "glibly":2, "glibness":2, "glide":1, "glidder":2, "gliddery":3, "glided":2, "glider":2, "gliding":2, "glidingly":3, "gliff":1, "glim":1, "glime":1, "glimpse":1, "glimpser":2, "glimpsing":2, "gliming":2, "glimmer":2, "glimmering":3, "glimmeringly":4, "glint":1, "glinka":2, "glisk":1, "glisky":2, "glissade":2, "glissaded":3, "glissader":3, "glissading":3, "glissando":3, "glisten":2, "glisteningly":4, "glister":2, "glisteringly":4, "glitter":2, "glitter ice":3, "glitteringly":4, "glittery":3, "glia":2, "glial":2, "gliadin":3, "gliadine":3, "glioma":3, "gliomas":3, "gliomata":4, "gliomatous":4, "gliwice":3, "gloam":1, "gloaming":2, "gloat":1, "gloater":2, "gloatingly":3, "glob":1, "globe":1, "globe":1, "globe artichoke":4, "globefish":2, "globefishes":3, "globeflower":3, "globelike":2, "globetrotter":3, "globetrotting":3, "global":2, "global rule":3, "globally":3, "globing":2, "globule":2, "globular":3, "globularity":5, "globularly":4, "globularness":4, "globuliferous":5, "globulin":3, "globulous":3, "glockenspiel":3, "glogg":1, "glomera":3, "glomerate":3, "glomeration":4, "glomerule":3, "glomma":2, "glonoin":3, "gloom":1, "glooms":1, "gloomful":2, "gloomfully":3, "glooming":2, "gloomier":3, "gloomiest":3, "gloomily":3, "gloominess":3, "gloomless":2, "gloomy":2, "glooscap":2, "glop":1, "glos":1, "gloss":1, "glosseme":2, "glosser":2, "glossies":2, "glossingly":3, "glossier":3, "glossiest":3, "glossily":3, "glossiness":3, "glossless":2, "glossmeter":3, "glossy":2, "glost":1, "glossa":2, "glossa":2, "glossal":2, "glossarial":4, "glossarially":5, "glossarist":3, "glossary":3, "glossator":3, "glossatorial":5, "glossectomy":4, "glosseme":2, "glossematic":4, "glossematics":4, "glossemic":3, "glossitic":3, "glossitis":3, "glossographer":4, "glossography":4, "glossolalist":4, "glossologist":4, "glossology":4, "glossotomy":4, "glossographical":5, "glossolalia":5, "glossological":5, "glossopharyngeal":6, "glossopharyngeal nerve":7, "glottal":2, "glottal stop":3, "glottalize":3, "glottalized":3, "glottalizing":4, "glottalization":5, "glottic":2, "glottidean":4, "glottis":2, "glottises":3, "glottides":3, "glottogony":4, "glottologist":4, "glottology":4, "glottochronology":6, "glottogonic":4, "glottologic":4, "gloucester":2, "gloucestershire":3, "glove":1, "glove compartment":4, "glove puppet":3, "gloveless":2, "glovelike":2, "gloveman":2, "glover":2, "glover":2, "gloversville":3, "gloving":2, "glow":1, "glow discharge":3, "glower":2, "gloweringly":4, "glowfly":2, "glowing":2, "glowingly":3, "glowworm":2, "gloxinia":4, "gloze":1, "glozing":2, "glozingly":3, "globate":2, "globated":3, "globigerina":5, "globin":2, "globoid":2, "globose":2, "globosely":3, "globosity":4, "globous":2, "glochidia":4, "glochidial":4, "glochidiate":4, "glochidium":4, "glochis":2, "glochines":3, "glomerular":4, "glomerulonephritis":7, "glomerulus":4, "glomus":2, "glori":2, "glorie":2, "gloried":2, "gloria":3, "gloria":3, "gloria patri":5, "gloriane":3, "gloriann":3, "gloriana":4, "glorified":3, "glorifiable":5, "glorification":5, "glorifier":4, "glorify":3, "glorifying":4, "gloriole":3, "glorious":3, "glorious revolution":7, "gloriously":4, "gloriousness":4, "glory":2, "glory":2, "glory box":3, "glory hole":3, "glory-of-the-snow":2, "glory-of-the-sun":2, "glory-pea":2, "glorying":3, "gloryingly":4, "glt":1, "gluck":1, "glue":1, "gluelike":2, "gluepot":2, "gluey":2, "glum":1, "glume":1, "glumelike":2, "glumpier":3, "glumpiest":3, "glumpily":3, "glumpiness":3, "glumpy":2, "glumly":2, "glummer":2, "glummest":2, "glumness":2, "glunch":1, "glut":1, "glutted":2, "glutting":2, "gluttingly":3, "glutton":2, "gluttonise":3, "gluttonised":3, "gluttonising":4, "gluttonize":3, "gluttonized":3, "gluttonizing":4, "gluttonous":3, "gluttonously":4, "gluttonousness":4, "gluttony":3, "glucagon":3, "glucide":2, "glucidic":3, "glucinic":3, "glucinium":4, "glucinum":3, "glucose":2, "glucosic":3, "glucosuria":5, "glucocorticord":5, "glucogenesis":5, "glucogenic":4, "gluconeogenesis":7, "gluconeogenic":6, "gluconokinase":5, "glucoprotein":4, "glucosan":3, "glucoside":3, "glucosidal":4, "glucosidic":4, "glucosulfone":4, "glucosuria":5, "glucuronide":4, "gluer":2, "glueyness":3, "gluing":2, "gluier":3, "gluiest":3, "glumaceous":3, "gluon":2, "gluside":2, "glutaeus":3, "glutamic acid":5, "glutamate":3, "glutamine":3, "glutaminic acid":6, "glutathione":4, "gluten":2, "gluten bread":3, "glutethimide":4, "gluteal":3, "glutei":3, "glutelin":3, "glutenous":3, "gluteus":3, "glutin":2, "glutinant":3, "glutinosity":5, "glutinous":3, "glutinously":4, "glutinousness":4, "glutose":2, "glyceraldehyde":5, "glyceride":3, "glycerin":3, "glycerine":3, "glycerinate":4, "glycerinated":5, "glycerinating":5, "glycerite":3, "glycerol":3, "glycerolysis":5, "glyceryl":3, "glyceryl trinitrate":6, "glyn":1, "glynis":2, "glyph":1, "glyphic":2, "glyphograph":3, "glyphographic":4, "glyptal":2, "glyptic":2, "glyptics":2, "glyptographer":4, "glyptography":4, "glyptodont":3, "glyptograph":3, "glyptographic":4, "glycaemic":3, "glycaemia":4, "glyceric":3, "glyceric acid":5, "glycemic":3, "glycemia":4, "glycine":2, "glycogenous":4, "glycogeny":4, "glycol":2, "glycolic":3, "glycolic acid":5, "glycollic":3, "glycolysis":4, "glycosuric":4, "glycosuria":5, "glycocoll":3, "glycogen":3, "glycogenase":4, "glycogenesis":5, "glycogenic":4, "glycogenolytic":6, "glycogenetic":5, "glycogenolysis":6, "glycogenosis":5, "glycolipid":4, "glycolytic":4, "glycolytically":6, "glyconeogenesis":7, "glyconeogenetic":7, "glycopeptide":4, "glycopexis":4, "glycopexia":5, "glycoprotein":4, "glycoside":3, "glycosidic":4, "glycosuria":5, "glycuronid":4, "glycuronide":4, "glykopectic":4, "glykopexic":4, "glyoxaline":4, "glyphographer":4, "glyphography":4, "gmb":1, "gmc":1, "gmc":1, "gmt":1, "gnamma":2, "gnar":1, "gnarl":1, "gnarled":1, "gnarlier":3, "gnarliest":3, "gnarliness":3, "gnarly":2, "gnarring":2, "gnash":1, "gnashingly":3, "gnat":1, "gnathal":2, "gnathic":2, "gnatcatcher":3, "gnateater":3, "gnatlike":2, "gnattier":3, "gnattiest":3, "gnatty":2, "gnaw":1, "gnawn":1, "gnawable":3, "gnawer":2, "gnawing":2, "gnawingly":3, "gnathite":2, "gnathion":3, "gnathonic":3, "gnathonically":5, "gneiss":1, "gneissic":2, "gneissoid":2, "gnesen":2, "gniezno":2, "gnocchi":2, "gnome":1, "gnomish":2, "gnossian":3, "gnossus":2, "gnostic":2, "gnostic":2, "gnostical":3, "gnostically":4, "gnosticise":3, "gnosticise":3, "gnosticised":3, "gnosticism":3, "gnosticiser":4, "gnosticising":4, "gnosticize":3, "gnosticize":3, "gnosticized":3, "gnosticizer":4, "gnosticizing":4, "gnomic":2, "gnomist":2, "gnomical":3, "gnomically":4, "gnomologist":4, "gnomology":4, "gnomon":2, "gnomonic":3, "gnomonical":4, "gnomologic":4, "gnosis":2, "gnotobiote":4, "gnotobiotic":5, "gnotobiotics":5, "gnotobiosis":5, "gnp":1, "gns":1, "gnu":1, "go about":3, "go against":3, "go ahead":3, "go along":3, "go around":3, "go away":3, "go into":3, "go over":3, "go together":4, "go under":3, "go without":3, "go-ahead":2, "go-away bird":3, "go-between":2, "go-by":1, "go-cart":1, "go-devil":2, "go-getter":2, "go-go dancer":3, "go-kart":1, "go-moku":2, "go-to-meeting":2, "goad":1, "goadlike":2, "goaf":1, "goal":1, "goal area":4, "goalie":2, "goalkeeper":3, "goalkeeping":3, "goalless":2, "goalmouth":2, "goaltender":3, "goat":1, "goat":1, "goat antelope":4, "goatsbeard":2, "goatee":2, "goateed":2, "goatfish":2, "goatfishes":3, "goatherd":2, "goatish":2, "goatishly":3, "goatishness":3, "goatlike":2, "goatpox":2, "goatskin":2, "goatsucker":3, "goaves":1, "gob":1, "gobbet":2, "gobbi":2, "gobbing":2, "gobble":2, "gobbler":2, "gobbledegook":4, "gobbledygook":4, "gobelin":3, "goblet":2, "goblin":2, "gobstopper":3, "goc":1, "god":1, "god":1, "god's acre":3, "god-awful":2, "god-fearing":2, "god-fearing":2, "god-man":1, "godefroy de bouillon":5, "goderich":2, "godthaab":2, "godchild":2, "godchildren":3, "goddam":2, "goddamn":2, "goddamndest":3, "goddamned":2, "goddamnedest":3, "goddamnit":3, "goddammit":3, "goddard":2, "goddaughter":3, "godded":2, "goddess":2, "goddesshood":3, "goddessship":3, "godding":2, "godfather":3, "godforsaken":4, "godforsaken":4, "godfrey":2, "godhead":2, "godhood":2, "godless":2, "godlessly":3, "godlessness":3, "godlike":2, "godlikeness":3, "godling":2, "godlier":3, "godliest":3, "godliness":3, "godly":2, "godmother":3, "godolias":4, "godparent":3, "godsend":2, "godsent":2, "godship":2, "godson":2, "godspeed":2, "godward":2, "godwards":2, "godwin":2, "godwin austen":4, "godwit":2, "godwine":3, "goebbels":2, "goes":1, "goes":1, "goetz":1, "goering":2, "goethals":2, "goethe":2, "goethite":2, "goffer":2, "gofferor gauffer":4, "goffering":3, "gog":1, "gog and magog":4, "gogh":1, "gogga":2, "goggle":2, "goggle-eye":2, "goggle-eyed":2, "goggler":2, "gogglebox":3, "goglet":2, "gogra":2, "goi":1, "goias":2, "goiania":4, "goidel":2, "goidelic":3, "goidhelic":3, "goiter":2, "goitre":2, "goitrous":2, "gois":3, "goinia":5, "gold":1, "gold basis":3, "gold beetle":3, "gold certificate":5, "gold medal":3, "gold reserve":3, "gold standard":3, "gold-beating":2, "gold-digger":2, "gold-exchange standard":4, "gold-of-pleasure":2, "goldsboro":3, "goldbach's conjecture":5, "goldbeater":3, "goldbeater's skin":4, "goldbeating":3, "goldberg":2, "goldbrick":2, "goldbricker":3, "goldbug":2, "goldcrest":2, "goldcup":2, "golden":2, "golden":2, "golden age":3, "golden aster":4, "golden calf":3, "golden chain":3, "golden delicious":5, "golden disc":3, "golden eagle":4, "golden fleece":3, "golden gate":3, "golden goose":3, "golden handshake":4, "golden horde":3, "golden horn":3, "golden mean":3, "golden number":4, "golden oriole":5, "golden pheasant":4, "golden plover":4, "golden retriever":5, "golden rule":3, "golden section":4, "golden syrup":4, "golden wattle":4, "goldendale":3, "goldeneye":3, "goldenly":3, "goldenness":3, "goldenrod":3, "goldenseal":3, "goldeye":2, "goldfields":2, "goldfinch":2, "goldfinny":3, "goldfish":2, "goldfish bowl":3, "goldfishes":3, "golding":2, "goldilocks":3, "goldmark":2, "goldminer":3, "goldschmidt":2, "goldsmith":2, "goldsmith":2, "goldsmith beetle":4, "goldstone":2, "goldthread":2, "goldwasser":3, "goldwater":3, "goldwork":2, "goldwyn":2, "goldwynism":3, "golf":1, "golfer":2, "golp":1, "golschmann":2, "goltz":1, "golconda":3, "golda":2, "goldarn":2, "goldarned":2, "goldarnedest":3, "golding":2, "goldovsky":3, "goldoni":3, "goldurn":2, "goldurned":2, "goldurnedest":3, "golgi":2, "golgi body":4, "golgotha":3, "golgotha":3, "goliard":2, "goliardery":4, "goliardery":4, "goliardic":3, "golliwog":3, "golliwogg":3, "gollop":2, "golly":2, "gollywobbler":4, "gombeen":2, "gombeen-man":2, "gomberg":2, "gombo":2, "gombroon":2, "gomeral":3, "gomerel":3, "gomeril":3, "gompers":2, "gomphiasis":4, "gomphoses":3, "gomphosis":3, "gond":1, "gondwana":3, "gondwanaland":4, "gone":1, "goneness":2, "gong":1, "gonglike":2, "gonk":1, "gonad":2, "gonadotropic hormone":7, "gonadotropin":5, "goncharov":3, "goncourt":2, "gondar":2, "gondi":2, "gondola":3, "gondolet":3, "gondoletta":4, "gondolier":3, "gondomar":3, "goner":2, "goneril":3, "gonfalon":3, "gonfalonier":4, "gonfanon":3, "gongola":3, "gongorism":3, "gongorist":3, "gongoristic":4, "gonif":2, "gonna":2, "gonof":2, "gonoph":2, "gonorrhea":4, "gonorrheal":4, "gonorrheic":4, "gonorrhoea":4, "gonorrhoeal":4, "gonorrhoeic":4, "gonococcal":4, "gonococci":4, "gonococcic":4, "gonococcoid":4, "gonococcus":4, "gonocyte":3, "gonophore":3, "gonophoric":4, "gonopore":3, "gonopodia":5, "gonopodial":5, "gonopodium":5, "gonotheca":4, "gonothecal":4, "gonycampsis":4, "gonzales":3, "gonzales":3, "gonzlez":3, "goo":1, "gooch":1, "good":1, "good afternoon":4, "good arvo":3, "good evening":3, "good friday":3, "good king henry":4, "good morning":3, "good people":3, "good question":3, "good samaritan":5, "good shepherd":3, "good-fellowship":3, "good-for-nothing":2, "good-hearted":2, "good-humoredness":2, "good-humored":2, "good-humoredly":3, "good-humoured":2, "good-humouredly":3, "good-humouredness":3, "good-looker":2, "good-looking":2, "good-natured":2, "good-naturedness":3, "good-neighbor":2, "good-o":1, "good-oh":1, "good-tempered":2, "good-temperedly":3, "good-temperedness":3, "goods":1, "goods and chattels":4, "goodacre":3, "goodby":2, "goodbye":2, "goodhearted":3, "goodheartedly":4, "goodheartedness":4, "goodhue":2, "goodies":2, "gooding":2, "goodish":2, "goodland":2, "goodlettsville":3, "goodlier":3, "goodliest":3, "goodliness":3, "goodly":2, "goodman":2, "goodman":2, "goodness":2, "goodness of fit":4, "goodrich":2, "goodwife":2, "goodwill":2, "goodwillie":3, "goodwily":3, "goodwin sands":3, "goody":2, "goody-goodies":3, "goody-goody":3, "goodyear":2, "goof":1, "goof-up":1, "goofball":2, "goofier":3, "goofiest":3, "goofily":3, "goofiness":3, "goofy":2, "goog":1, "googly":2, "gook":1, "goole":1, "goon":1, "goonda":2, "goop":1, "goose":1, "goose barnacle":4, "gooseberry":3, "gooseberry bush":4, "goosefish":2, "goosefishes":3, "gooseflesh":2, "goosefoot":2, "goosegob":2, "goosegog":2, "goosegrass":2, "gooseherd":2, "gooselike":2, "gooseneck":2, "goosenecked":2, "goosepimply":3, "goosewing":2, "goosewinged":2, "goosander":3, "gooses":2, "goosey":2, "goosing":2, "goosier":3, "goosiest":3, "goossens":2, "goosy":2, "goober":2, "goober pea":3, "gooey":2, "googly":2, "googly-eyed":2, "googol":2, "googolplex":3, "gooier":3, "gooiest":3, "gooney bird":3, "gop":1, "gor":1, "gore":1, "gorge":1, "gorged":1, "gorgeable":3, "gorgedly":3, "gorger":2, "gorging":2, "gormless":2, "gorse":1, "gorsy":2, "gorbals":2, "gorbellied":3, "gorbelly":3, "gorblimey":3, "gorblimy":3, "gorboduc":3, "gorchakov":3, "gorcock":2, "gordian":3, "gordian knot":4, "gordon":2, "gordon setter":4, "goren":2, "gorgas":2, "gorgeous":2, "gorgeously":3, "gorgeousness":3, "gorgerin":3, "gorget":2, "gorgeted":3, "gorgias":3, "gorgon":2, "gorgonise":3, "gorgonised":3, "gorgonising":4, "gorgonize":3, "gorgonized":3, "gorgonizing":4, "gorgonzola":4, "gorgonzola cheese":5, "gorgophone":4, "gorgoneia":4, "gorgoneion":4, "gorgonian":4, "gorgonian":4, "gorgythion":4, "gorhen":2, "goring":2, "gorier":3, "goriest":3, "gorily":3, "goriness":3, "gorki":2, "gorky":2, "gorlovka":3, "gorman":2, "gormand":2, "gormandise":3, "gormandised":3, "gormandism":3, "gormandising":4, "gormandize":3, "gormandized":3, "gormandizer":4, "gormandizing":4, "gormandize":3, "gorno-altai autonomous region":9, "gorno-badakhshan autonomous region":10, "gorsedd":2, "gorton":2, "gortys":2, "gory":2, "gosh":1, "gosse":1, "goshawk":2, "gosling":2, "gosmore":2, "gospel":2, "gospel":2, "gospel oath":3, "gospeler":3, "gospeller":3, "gosplan":2, "gosport":2, "gosport":2, "gospoda":3, "gospodin":3, "gossaert":2, "gossan":2, "gossart":2, "gossamer":3, "gossamery":4, "gossip":2, "gossiped":2, "gossiping":3, "gossipingly":4, "gossipiness":4, "gossipmonger":4, "gossipper":3, "gossipred":3, "gossipry":3, "gossipy":3, "gossoon":2, "gossypose":3, "goster":2, "got":1, "goth":1, "gotham":2, "gothamite":3, "gothenburg":3, "gothic":2, "gothic arch":3, "gothicity":4, "gothicness":3, "gothically":4, "gothicise":3, "gothicised":3, "gothicism":3, "gothicising":4, "gothicize":3, "gothicized":3, "gothicizer":4, "gothicizing":4, "gottschalk":2, "gottfried":2, "gottfried von strassburg":5, "gottland":2, "gottlander":3, "gottlieb":2, "gottwald":2, "gotland":2, "gotlander":3, "gotta":2, "gotten":2, "gotthard":2, "gouache":1, "gouaches":2, "gouge":1, "gouger":2, "gouging":2, "gould":1, "goulds":1, "gourd":1, "gourde":1, "gourdlike":2, "gourmand":2, "gourmandism":3, "gourmandise":3, "gourmet":2, "gourmont":2, "gournia":3, "gout":1, "goutte":1, "goutish":2, "goutier":3, "goutiest":3, "goutily":3, "goutiness":3, "goutt":3, "goutweed":2, "gouty":2, "gouverneur":3, "gouache":2, "gouda":2, "goudy":2, "goujon":2, "goujon":2, "goulash":2, "gounod":2, "gourami":3, "gouvernante":3, "gov":1, "gov":1, "govt":1, "govt":1, "govern":2, "governance":3, "governability":6, "governable":4, "governableness":5, "governess":3, "government":3, "government issue":5, "government-in-exile":4, "governmental":4, "governmentally":5, "governess":3, "governessy":4, "governor":3, "governor general":6, "governor-general":5, "governor-generalship":6, "governorship":4, "gowd":1, "gowk":1, "gown":1, "gownsman":2, "gowan":2, "gowaned":2, "gowany":3, "gower":2, "gowon":2, "goy":1, "goya":2, "goyim":2, "goyish":2, "goa":2, "goa":2, "goa powder":4, "goanna":3, "goban":2, "gobang":2, "gobat":2, "gobelin":3, "gobi":2, "gobian":3, "gobioid":3, "gobo":2, "gobony":3, "gobone":4, "goby":2, "goclenius":4, "godard":2, "godavari":4, "godendag":3, "godesberg":3, "godet":2, "godey":2, "godetia":3, "godin":2, "godiva":3, "godolphin":3, "godown":2, "godowsky":3, "godroon":2, "godunov":3, "goer":2, "gofer":2, "gogetting":3, "gogo":2, "gogol":2, "going":2, "going":2, "going-over":3, "goings-on":2, "goings-over":3, "gola":2, "golem":2, "golilla":3, "goliath":3, "goliath beetle":5, "goliath frog":4, "golosh":2, "goloshes":3, "gomel":2, "gomorrah":3, "gomorrean":4, "gomorrha":3, "gomorrhean":4, "gomoku-zogan":4, "gomulka":3, "gomuti":3, "gomuti palm":4, "gonad":2, "gonadal":3, "gonadotrope":4, "gonadotrophic":5, "gonadotropic":5, "gonadotrophin":5, "gonadotropin":5, "gonangia":4, "gonangial":4, "gonangium":4, "gonave":2, "gonadial":4, "gonaives":3, "gonaves":4, "gonidic":3, "gonidia":4, "gonidial":4, "gonidioid":4, "gonidium":4, "gonia":3, "goniac":3, "gonial":3, "goniatite":4, "goniometer":5, "goniometry":5, "gonion":3, "goniometric":5, "goniometrically":7, "gonium":3, "gonydeal":4, "gonydial":4, "gonys":2, "gonyaulax":4, "gopak":2, "gopher":2, "gopher wood":3, "gopherberry":4, "gopherwood":3, "gorakhpur":3, "goral":2, "gore":2, "goreng pisang":4, "gorilla":3, "gorillalike":4, "gorilline":3, "gorillian":4, "gorilloid":3, "gorica":3, "gorizia":3, "gosala":3, "goshen":2, "goshenite":3, "gotama":3, "gotha":2, "gothard":2, "gotra":2, "gowanda":3, "goya":2, "goyen":2, "gpi":1, "gpo":1, "gpu":1, "graafian follicle":6, "grab":1, "grabbable":3, "grabber":2, "grabbing":2, "grabble":2, "grabbler":2, "grace":1, "grace":1, "grace-and-favor":2, "grace-and-favour":2, "graceful":2, "gracefully":3, "gracefulness":3, "graceless":2, "gracelessly":3, "gracelessness":3, "gracelike":2, "grackle":2, "gracchus":2, "graces":2, "gracile":2, "gracing":2, "gracilis":3, "grad":1, "grade":1, "grade cricket":3, "grade crossing":3, "gradely":2, "grademark":2, "gradable":3, "graded":2, "graded post":3, "grader":2, "grading":2, "gradual":3, "gradualism":4, "gradualist":4, "gradualistic":5, "gradually":4, "gradualness":4, "graduand":3, "graduate":3, "graduated":4, "graduating":4, "graduated":4, "graduation":4, "graduator":4, "graeae":2, "graecise":2, "graecised":2, "graecism":2, "graecising":3, "graecize":2, "graecize":2, "graecized":2, "graecizing":3, "graeco-roman":3, "graf":1, "graft":1, "graft hybrid":3, "graftage":2, "grafter":2, "grafting":2, "grafen":2, "graffito":3, "grafton":2, "grail":1, "grain":1, "grain alcohol":4, "grain elevator":5, "grained":1, "grainedness":2, "grains":1, "grains of paradise":5, "grainer":2, "grainfield":2, "grainger":2, "graining":2, "grainier":3, "grainiest":3, "graininess":3, "grainless":2, "grainy":2, "graiae":2, "grallatorial":5, "gram":1, "gram":1, "gram atom":3, "gram calorie":4, "gram equivalent":5, "gram molecule":4, "gram's method":3, "gram-atomic weight":4, "gram-equivalent weight":5, "gram-molecular":4, "gram-molecular weight":5, "gram-negative":3, "gram-positive":3, "gramme":1, "gramps":1, "gramary":3, "gramarye":3, "grambling":2, "gramicidin":4, "gramicidin d":5, "graminivorous":5, "grammar":2, "grammar school":3, "grammarian":4, "grammarless":3, "grammatical":4, "grammatical meaning":6, "grammaticality":6, "grammatically":5, "grammaticalness":5, "grammaticism":4, "grammalogue":3, "grammatology":5, "gramophone":3, "gramophone":3, "gramophonically":6, "grampian mountains":5, "grampian region":5, "grampians":3, "grampus":2, "grampuses":3, "gran cassa":3, "gran canaria":4, "gran chaco":3, "gran paradiso":5, "gran torismo":4, "grand":1, "grand bahama":4, "grand canyon":3, "grand canal":3, "grand canary":4, "grand coulee":3, "grand duchess":3, "grand duchy":3, "grand final":3, "grand guignol":3, "grand jury":3, "grand larceny":4, "grand lama":3, "grand master":3, "grand manan":3, "grand mufti":3, "grand national":4, "grand old party":4, "grand opera":4, "grand piano":4, "grand rapids":3, "grand remonstrance":4, "grand seigneur":3, "grand sicle":3, "grand vizier":3, "grand-ducal":2, "grand-slammer":2, "grandaunt":2, "grandchild":2, "grandchildren":3, "granddad":2, "granddaddy":3, "granddaughter":3, "grandfather":3, "grandfather clause":4, "grandfather clock":4, "grandfatherly":4, "grandgent":2, "grandly":2, "grandma":2, "grandma moses":4, "grandmamma":3, "grandmaster":3, "grandmother":3, "grandmother clock":4, "grandmotherliness":5, "grandmotherly":4, "grandnephew":3, "grandness":2, "grandniece":2, "grandpa":2, "grandparent":3, "grandpapa":3, "grandparental":4, "grandsire":2, "grandson":2, "grandstand":2, "grandstanded":3, "grandstander":3, "grandstanding":3, "granduncle":3, "grandview":2, "grandville":2, "grange":1, "grange":1, "grangemouth":2, "grangeville":2, "granger":2, "grangerise":3, "grangerised":3, "grangerism":3, "grangeriser":4, "grangerising":4, "grangerize":3, "grangerized":3, "grangerizer":4, "grangerizing":4, "grangerization":5, "grant":1, "grant":1, "grant of probate":4, "grant sahib":3, "granth":1, "grantable":3, "grantedly":3, "grantee":2, "granter":2, "grantland":2, "granadilla":4, "granary":3, "grandam":2, "grandame":2, "grande":2, "grandee":2, "grandeeship":3, "grandeur":2, "grandiloquence":4, "grandiloquent":4, "grandiloquently":5, "grandiose":3, "grandiosely":4, "grandiosity":5, "grandioso":4, "grandrelle":2, "granite":2, "granitelike":3, "graniteware":3, "granitite":3, "granitize":3, "granitized":3, "granitizing":4, "granitization":5, "granitoid":3, "granitification":6, "granivore":3, "granjon":2, "grannie":2, "granny":2, "granny flat":3, "granny knot":3, "granny smith":3, "granny's knot":3, "granodiorite":5, "granolith":3, "granolith":3, "granolithic":4, "granophyre":3, "granophyric":4, "granta":2, "grantee":2, "grantor":2, "granule":2, "granular":3, "granularity":5, "granularly":4, "granulate":3, "granulated":4, "granulated sugar":6, "granulater":4, "granulating":4, "granulation":4, "granulation tissue":6, "granulative":4, "granulator":4, "granulite":3, "granulitic":4, "granulomatous":5, "granulose":3, "granuloblast":4, "granuloblastic":5, "granulocyte":4, "granulocytic":5, "granuloma":4, "granulomas":4, "granulomata":5, "granulomatosis":6, "granville":2, "granville-barker":3, "grape":1, "grape hyacinth":4, "grape sugar":3, "grapes":1, "grapefruit":2, "grapelike":2, "grapeline":2, "grapeshot":2, "grapestone":2, "grapevine":2, "grapevine":2, "graph":1, "graph paper":3, "graphalloy":3, "grapheme":2, "graphic":2, "graphic arts":3, "graphics":2, "graphicly":3, "graphicness":3, "graphite":2, "graphical":3, "graphically":4, "graphicalness":4, "graphitise":3, "graphitize":3, "graphitized":3, "graphitizing":4, "graphitization":5, "graphologist":4, "graphology":4, "graphologic":4, "graphomotor":4, "graphophone":3, "graphotype":3, "graphotypic":4, "graperies":3, "grapery":3, "grapey":2, "grapier":3, "grapiest":3, "graplin":2, "grapline":2, "grapnel":2, "grappa":2, "grappelli":3, "grapple":2, "grapple plant":3, "grappler":2, "grappling":2, "grappling iron":4, "graptolite":3, "graptolitic":4, "grapy":2, "grasp":1, "graspable":3, "grasper":2, "grasping":2, "graspingly":3, "graspingness":3, "graspless":2, "grass":1, "grass":1, "grass hockey":3, "grass widow":3, "grass widower":4, "grass-of-parnassus":3, "grasse":1, "grasscutter":3, "grassfinch":2, "grasshook":2, "grasshopper":3, "grassier":3, "grassiest":3, "grassiness":3, "grassland":2, "grassless":2, "grasslike":2, "grassman":2, "grassplot":2, "grassquit":2, "grasswards":2, "grasswidowhood":4, "grassy":2, "grasmere":2, "grasserie":3, "grate":1, "grateful":2, "gratefully":3, "gratefulness":3, "grateless":2, "gratelike":2, "grated":2, "grater":2, "gratin":2, "grating":2, "gratingly":3, "gratis":2, "graticule":3, "gratified":3, "gratifiable":5, "gratification":5, "gratifiedly":5, "gratifier":4, "gratify":3, "gratifying":4, "gratifyingly":5, "gratinate":3, "gratinated":4, "gratinating":4, "gratitude":3, "grattan":2, "grattoir":2, "gratulant":3, "gratulate":3, "gratulated":4, "gratulating":4, "gratulation":4, "gratulatorily":6, "gratulatory":5, "graubnden":4, "graubden":3, "graupel":2, "graustark":2, "graustarkian":4, "grav":1, "grave":1, "graves":1, "graves' disease":3, "gravesend":2, "graveclothes":2, "gravedigger":3, "graveless":2, "gravelike":2, "gravely":2, "graveness":2, "graverobber":3, "graverobbing":3, "gravestone":2, "graveward":2, "gravewards":2, "graveyard":2, "gravel":2, "gravel-blind":2, "graveled":2, "gravelled":2, "graveldiver":4, "graveling":3, "gravelish":3, "gravelling":3, "gravelly":3, "gravelweed":3, "graven":2, "graven image":4, "graver":2, "gravest":2, "gravid":2, "gravidly":3, "graving":2, "graving dock":3, "gravicembali":5, "gravicembalo":5, "gravimetric":4, "gravimetric analysis":8, "gravimetrical":5, "gravimetrically":6, "gravitate":3, "gravitated":4, "gravitater":4, "gravitating":4, "gravitation":4, "gravitational":5, "gravitational constant":7, "gravitational field":6, "gravitational interaction":9, "gravitational mass":6, "gravitationally":6, "gravitative":4, "graviton":3, "gravity":3, "gravity cell":4, "gravity fault":4, "gray":1, "gray":1, "gray-headed":2, "grayce":1, "graysby":2, "grayslake":2, "graysville":2, "grayback":2, "graybeard":2, "graybearded":3, "graydon":2, "grayfish":2, "grayfishes":3, "grayhound":2, "grayish":2, "graylag":2, "grayling":2, "grayly":2, "grayson":2, "graywacke":2, "graywether":3, "graz":1, "graze":1, "grazeable":3, "grazer":2, "grazing":2, "grazingly":3, "graben":2, "gracia":2, "gracie":2, "gracility":4, "gracious":2, "graciously":3, "graciousness":3, "gracias":3, "graciosity":5, "gracioso":4, "gradate":2, "gradated":3, "gradating":3, "gradatim":3, "gradation":3, "gradational":4, "gradationally":5, "gradin":2, "gradine":2, "gradient":3, "gradienter":4, "gradus":2, "graduses":3, "grady":2, "grager":2, "gragers":2, "graham":2, "graham":2, "graham flour":3, "graham land":3, "grahame":2, "grahamite":3, "graian alps":3, "grama":2, "grama grass":3, "gramercy":3, "gramineous":4, "gramineousness":5, "gramont":2, "grana":2, "granada":3, "granados":3, "granary":3, "grani":2, "graniferous":4, "granitic":3, "granivorous":4, "granicus":3, "granum":2, "graphemically":5, "graphemics":3, "graphitic":3, "graphonomy":4, "gratia":2, "gratis":2, "gratiae":3, "gratian":3, "gratifying":4, "gratuitous":4, "gratuitously":5, "gratuitousness":5, "gratuity":4, "gravamen":3, "gravavamina":5, "grave":2, "gravenhage":4, "gravenstein":3, "gravettian":4, "gravidity":4, "gravimeter":4, "gravimetry":4, "gravure":2, "gravy":2, "gravy boat":3, "gravy train":3, "grazia":2, "grazier":2, "grazier":3, "grease":1, "grease monkey":3, "greaseball":2, "greasebush":2, "greaseless":2, "greaselessness":3, "greasepaint":2, "greaseproof":2, "greasewood":2, "greaser":2, "greasier":3, "greasiest":3, "greasily":3, "greasiness":3, "greasy":2, "greasy spoon":3, "great":1, "great australian bight":6, "great barrier reef":5, "great basin":3, "great britain":3, "great circle":3, "great council":3, "great crested grebe":4, "great dismal swamp":4, "great divide":3, "great dividing range":5, "great indian desert":6, "great karoo":3, "great leap forward":4, "great mogul":3, "great northern diver":5, "great power":3, "great primer":3, "great rebellion":4, "great rift valley":4, "great russian":3, "great sandy desert":5, "great slave river":4, "great smokies":3, "great smoky mountains":5, "great victoria desert":7, "great vowel shift":4, "great white heron":4, "great yarmouth":3, "great-circle":2, "great-grandaunt":2, "great-grandchild":2, "great-granddaughter":3, "great-grandfather":3, "great-grandmother":3, "great-grandnephew":3, "great-grandniece":2, "great-grandparent":3, "great-grandson":2, "great-granduncle":3, "great-hearted":2, "great-nephew":2, "great-power":2, "great-power":2, "great-uncle":2, "greats":1, "greatcoat":2, "greatcoated":3, "greaten":2, "greater":2, "greater antilles":5, "greater celandine":5, "greater london":4, "greater manchester":5, "greater sunda islands":6, "greatest":2, "greatest common divisor":7, "greathearted":3, "greatheartedly":4, "greatheartedness":4, "greatly":2, "greatness":2, "greave":1, "greaves":1, "grebe":1, "greco":2, "gree":1, "greece":1, "greed":1, "greedier":3, "greediest":3, "greedily":3, "greediness":3, "greedless":2, "greedsome":2, "greedy":2, "greedy guts":3, "greek":1, "greek catholic":4, "greek orthodox church":5, "greek revival":4, "greekdom":2, "greekish":2, "green":1, "green":1, "green algae":3, "green beret":3, "green dragon":3, "green fingers":3, "green heron":3, "green manure":3, "green monkey":3, "green mountain boys":4, "green mountains":3, "green paper":3, "green pepper":3, "green plover":3, "green revolution":5, "green river":3, "green turtle":3, "green vitriol":4, "green woodpecker":4, "greene":1, "greensboro":3, "greensburg":2, "greenskeeper":3, "greenth":1, "greenage":2, "greenaway":3, "greenback":2, "greenback party":4, "greenbacker":3, "greenbackism":3, "greenbelt":2, "greenberg":2, "greenboard":2, "greenbottle":3, "greenbrier":3, "greencastle":3, "greendale":2, "greeneries":3, "greenery":3, "greenfield":2, "greenfinch":2, "greenfish":2, "greenfishes":3, "greenfly":2, "greengage":2, "greengrocer":3, "greengroceries":4, "greengrocery":4, "greenhead":2, "greenheart":2, "greenhills":2, "greenhorn":2, "greenhornism":3, "greenhouse":2, "greenhouse effect":4, "greenhouses":3, "greening":2, "greenish":2, "greenkeeper":3, "greenland":2, "greenland sea":3, "greenland whale":3, "greenlander":3, "greenlandish":3, "greenlawn":2, "greenlet":2, "greenling":2, "greenly":2, "greenness":2, "greenock":2, "greenockite":3, "greenough":2, "greenroom":2, "greensand":2, "greenshank":2, "greensick":2, "greensickness":3, "greenstick fracture":4, "greenstone":2, "greenstuff":2, "greensward":2, "greenswarded":3, "greentree":2, "greenville":2, "greenwich":2, "greenwich mean time":4, "greenwich time":3, "greenwich village":4, "greenwood":2, "greenwood":2, "greer":1, "greet":1, "greeter":2, "greeting":2, "greetingless":3, "greetingly":3, "greegree":2, "greeing":2, "greeley":2, "greely":2, "greg":1, "gregg":1, "greggriffin":2, "gregarine":3, "gregor":2, "gregory":3, "gregory i":4, "gregory of tours":5, "gregory vii":4, "gregory xiii":4, "greige":1, "greisen":2, "gremlin":2, "grenadier":3, "grenadierial":5, "grenadierly":4, "grenadiership":4, "grenadine":3, "grenadines":3, "grendel":2, "grenfell":2, "grenville":2, "gresham":2, "gresham's law":3, "gressorial":4, "gressorious":4, "greta":2, "gretchen":2, "gretna":2, "gretna green":3, "gretta":2, "greuze":1, "greville":2, "grew":1, "grewsome":2, "grewsomely":3, "grewsomeness":3, "grex":1, "grey":1, "grey":1, "grey area":4, "grey eminence":4, "grey friar":3, "grey heron":3, "grey market":3, "grey matter":3, "grey mullet":3, "grey squirrel":3, "grey-headed":2, "greynville":2, "greyback":2, "greybeard":2, "greyhen":2, "greyhound":2, "greyhound racing":4, "greyish":2, "greylag":2, "greylag goose":3, "greyly":2, "greyness":2, "greywacke":2, "greywacke":3, "grecale":3, "grecian":2, "grecise":2, "grecised":2, "grecism":2, "grecising":3, "grecize":2, "grecize":2, "grecized":2, "grecizing":3, "greco":2, "greco-roman":3, "gregarious":4, "gregariously":5, "gregariousness":5, "gregale":3, "grego":2, "gregorian":4, "gregorian calendar":7, "gregorian chant":5, "gregorian telescope":7, "gregorian tone":5, "gregorianist":5, "gremial":3, "grenade":2, "grenada":3, "grenadian":4, "grenoble":3, "gribble":2, "grice":1, "grid":1, "grid bias":3, "grid declination":5, "grid variation":5, "gride":1, "gridder":2, "griddle":2, "griddlecake":3, "grided":2, "griding":2, "gridiron":3, "gridley":2, "grief":1, "grief-stricken":2, "griefless":2, "grieflessness":3, "grieg":1, "griege":1, "grierson":2, "grieve":1, "grievance":2, "grievedly":3, "griever":2, "grieving":2, "grievingly":3, "grievous":2, "grievous bodily harm":6, "grievously":3, "grievousness":3, "grieshoch":2, "griff":1, "griffe":1, "grift":1, "grifter":2, "griffes":2, "griffin":2, "griffin":2, "griffinage":3, "griffinesque":3, "griffinhood":3, "griffinish":3, "griffinism":3, "griffith":2, "griffon":2, "grig":1, "grill":1, "grille":1, "grilled":1, "griller":2, "grillparzer":3, "grillroom":2, "grillwork":2, "grilse":1, "grilses":2, "grillade":2, "grillades":2, "grilladed":3, "grillading":3, "grillage":2, "grill":3, "grille":3, "grim":1, "grime":1, "grimm":1, "grimsby":2, "grimace":2, "grimaced":2, "grimacer":3, "grimacing":3, "grimacingly":4, "grimhild":2, "griming":2, "grimier":3, "grimiest":3, "grimily":3, "griminess":3, "grimly":2, "grimmer":2, "grimmest":2, "grimness":2, "grimy":2, "grin":1, "grind":1, "grindable":3, "grinded":2, "grinder":2, "grinderies":3, "grindery":3, "grinding":2, "grinding wheel":3, "grindingly":3, "grindstone":2, "grindelwald":3, "grindelia":4, "grindle":2, "gringo":2, "grinnell":2, "grinner":2, "grinning":2, "grinningly":3, "grip":1, "gripe":1, "gripe water":3, "gripeful":2, "grippe":1, "grippelike":2, "grippal":2, "gript":1, "griper":2, "gripey":2, "griping":2, "gripingly":3, "gripier":3, "gripiest":3, "gripless":2, "gripman":2, "gripper":2, "gripping":2, "grippingly":3, "grippingness":3, "grippier":3, "grippiest":3, "gripple":2, "grippy":2, "gripsack":2, "gripy":2, "gris":1, "grist":1, "grister":2, "gristmill":2, "gristmiller":3, "gristmilling":3, "griseous":3, "griseofulvin":5, "griskin":2, "grislier":3, "grisliest":3, "grisliness":3, "grisly":2, "grissel":2, "gristle":2, "gristlier":3, "gristliest":3, "gristliness":3, "gristly":2, "griswold":2, "grit":1, "grit":1, "grith":1, "grits":1, "gritless":2, "gritted":2, "gritter":2, "gritting":2, "grittier":3, "grittiest":3, "grittily":3, "grittiness":3, "gritty":2, "grivet":2, "grizel":2, "grizzel":2, "grizzle":2, "grizzle":2, "grizzled":2, "grizzler":2, "grizzling":2, "grizzlier":3, "grizzliest":3, "grizzly":2, "grizzly bear":3, "grigioni":3, "grignard":2, "grignard reagent":5, "grigri":2, "grikwa":2, "grimace":2, "grimaldi":3, "grimaldi man":4, "grimaldian":4, "grimalkin":3, "griqua":2, "griqualand east":4, "griqualand west":4, "grisaille":2, "griselda":3, "griseldis":3, "grisette":2, "grisettish":3, "grishun":2, "grison":2, "grisons":2, "grivation":3, "gro":1, "groan":1, "groaner":2, "groaningly":3, "groat":1, "groats":1, "grockle":2, "grodno":2, "groete":1, "groenendael":3, "grog":1, "groggeries":3, "groggery":3, "groggier":3, "groggiest":3, "groggily":3, "grogginess":3, "groggy":2, "grogram":2, "grogshop":2, "groin":1, "groining":2, "grok":1, "grommet":2, "gromwell":2, "gronchi":2, "groom":1, "groomsman":2, "groomer":2, "groomish":2, "groomishly":3, "groot":1, "groote":1, "groove":1, "grooved":1, "grooveless":2, "groovelike":2, "groover":2, "grooving":2, "groovier":3, "grooviest":3, "groovy":2, "grope":1, "groper":2, "groping":2, "gropingly":3, "gropper":2, "gros":1, "gros de londres":4, "gross":1, "gross":1, "gross domestic product":6, "gross national product":6, "gross profit":3, "grosseteste":2, "grosses":2, "grossly":2, "grossness":2, "grosswardein":3, "grosz":1, "grosz":1, "grosbeak":2, "grosgrain":2, "grosgrained":2, "grossularite":4, "grosvenor":3, "grot":1, "grote":1, "grotto":2, "grottoed":2, "grottolike":3, "grotty":2, "grouch":1, "grouchier":3, "grouchiest":3, "grouchily":3, "grouchiness":3, "grouchy":2, "ground":1, "ground beetle":3, "ground cherry":3, "ground control":3, "ground cover":3, "ground elder":3, "ground ivy":3, "ground provisions":4, "ground squirrel":3, "ground water":3, "ground zero":3, "ground-sluicer":2, "groundsman":2, "groundage":2, "groundable":3, "groundably":3, "groundbreaker":3, "groundedly":3, "groundedness":3, "grounder":2, "groundkeeper":3, "groundless":2, "groundlessly":3, "groundlessness":3, "groundling":2, "groundmass":2, "groundnut":2, "groundplot":2, "groundsel":2, "groundsheet":2, "groundsill":2, "groundspeed":2, "groundward":2, "groundwards":2, "groundwave":2, "groundway":2, "groundwood":2, "groundwork":2, "group":1, "group captain":3, "group dynamics":4, "group insurance":4, "group marriage":3, "group practice":3, "group therapy":4, "grouper":2, "groupie":2, "grouping":2, "groupoid":2, "groupwise":2, "grouse":1, "grouseless":2, "grouselike":2, "grouser":2, "grouses":2, "grousing":2, "grout":1, "grouts":1, "grouter":2, "groutier":3, "groutiest":3, "grouty":2, "grouchy":2, "grove":1, "grove":1, "groves":1, "groveless":2, "grovel":2, "groveled":2, "grovelled":2, "groveler":3, "groveling":3, "grovelingly":4, "groveller":3, "grovelling":3, "grovellingly":4, "grovet":2, "grow":1, "grow":1, "grow into":3, "growl":1, "growler":2, "growlingly":3, "grown":1, "grown-upness":2, "grownup":2, "growth":1, "growan":2, "growable":3, "grower":2, "growing":2, "growing pains":3, "growingly":3, "groyne":1, "grozing iron":4, "grozny":2, "grocer":2, "groceries":3, "grocery":3, "groceryman":4, "grof":3, "groland":2, "grolier":3, "groma":2, "gromyko":3, "groningen":3, "gropius":3, "groschen":2, "groszy":2, "grotesk":2, "grotesque":2, "grotesquely":3, "grotesqueness":3, "grotesquerie":4, "grotesqueries":4, "grotesquery":4, "grotian":2, "grotianism":3, "grotius":3, "grover":2, "grub":1, "grubrus":1, "grubber":2, "grubbing":2, "grubbing hoe":3, "grubbier":3, "grubbiest":3, "grubbily":3, "grubbiness":3, "grubby":2, "grubstake":2, "grubstaked":2, "grubstaker":3, "grubstaking":3, "grubstreet":2, "grubworm":2, "grudge":1, "grudgeless":2, "grudger":2, "grudging":2, "grudgingly":3, "gruesome":2, "gruesomely":3, "gruesomeness":3, "gruff":1, "gruffish":2, "gruffier":3, "gruffiest":3, "gruffily":3, "gruffiness":3, "gruffly":2, "gruffness":2, "gruffy":2, "gruithuisen":3, "grum":1, "grume":1, "grump":1, "grumphie":2, "grumphy":2, "grumpish":2, "grumpier":3, "grumpiest":3, "grumpily":3, "grumpiness":3, "grumpy":2, "grumble":2, "grumbler":2, "grumblingly":3, "grumbly":2, "grumly":2, "grummer":2, "grummest":2, "grummet":2, "grumness":2, "grunt":1, "grunth":1, "grunter":2, "gruntingly":3, "grundy":2, "grundyism":3, "grundyist":3, "grundyite":3, "grunion":2, "gruntled":2, "grus":1, "grushie":2, "grutch":1, "gruel":2, "grueling":3, "gruelling":3, "gruemberger":4, "gruenberg":3, "grugru":2, "gruis":2, "grumose":2, "grumous":2, "grumousness":3, "grunitsky":3, "gruyor gruy":4, "gruyre":3, "gryphon":2, "grysbok":2, "grynaeus":3, "grgal":3, "grgoire":3, "grtry":3, "grnewald":4, "grnewald":3, "gtc":1, "gtc":1, "gtd":1, "guaiacol":3, "guaiacum":3, "guaiocum":3, "guaira":2, "guam":1, "guan":1, "guanidin":3, "guanidine":3, "guantnamo":5, "guantnamo":4, "guar":1, "guard":1, "guards":1, "guardsman":2, "guardant":2, "guardable":3, "guarded":2, "guardedly":3, "guardedness":3, "guardee":2, "guarder":2, "guardhouse":2, "guardhouses":3, "guardian":3, "guardianless":4, "guardianship":4, "guardless":2, "guardlike":2, "guardrail":2, "guardroom":2, "guarantee":3, "guaranteed":3, "guaranteeing":4, "guarantied":3, "guarantor":3, "guaranty":3, "guarantying":4, "guardant":2, "guardafui":3, "guardafui":4, "guardi":2, "guarneri":3, "guarnerius":4, "guarneriuses":5, "guat":1, "guayaquil":3, "guaymas":2, "guacamole":4, "guachamole":4, "guacharo":3, "guacin":2, "guaco":2, "guadalcanal":4, "guadalquivir":4, "guadalajara":5, "guadalupe":3, "guadalupe hidalgo":6, "guadeloupe":3, "guadiana":3, "guaguanche":3, "guajira":3, "guajiras":3, "guamachil":3, "guamuchil":3, "guanase":2, "guanay":2, "guanayes":3, "guanabana":4, "guanabara":4, "guanaco":3, "guanajuato":4, "guanine":2, "guano":2, "guanosine":3, "guapor":3, "guapor":4, "guaracha":3, "guarani":3, "guarani":3, "guaran":4, "guarini":3, "guarino":3, "guatemala":4, "guatemala city":6, "guatemalan":4, "guava":2, "guayabera":4, "guayaberas":4, "guayama":3, "guayaquil":3, "guayule":3, "gubbins":2, "guck":1, "gude":1, "gude":1, "gudgeon":2, "gudgeon pin":3, "guddle":2, "gudmundsson":3, "gudrun":2, "guelf":1, "guelfic":2, "guelfism":2, "guelph":1, "guelphic":2, "guelphism":2, "guelder-rose":2, "guelders":2, "guelderland":3, "guenevere":3, "guernsey":2, "guerdon":2, "guerdoner":3, "guerdonless":3, "guergal":2, "guernica":3, "guerrero":3, "guerrilla":3, "guerrillaism":4, "guesde":1, "guesdism":2, "guesdist":2, "guess":1, "guessable":3, "guesser":2, "guessingly":3, "guesstimate":3, "guesstimated":4, "guesstimating":4, "guesswork":2, "guest":1, "guest":1, "guesthouse":2, "guesthouses":3, "guestless":2, "guestimate":3, "guestimated":4, "guestimating":4, "gueux":1, "guedalla":3, "guemal":2, "guenon":2, "guereza":3, "guericke":3, "guerickian":4, "guerilla":3, "guerillaism":4, "gueridon":3, "guevara":3, "guff":1, "guffaw":2, "guggenheim":3, "guggle":2, "guglet":2, "guib":1, "guide":1, "guide":1, "guideboard":2, "guidebook":2, "guidebookish":3, "guidebooky":3, "guideless":2, "guideline":2, "guidepost":2, "guidance":2, "guidable":3, "guided":2, "guided missile":4, "guider":2, "guiding":2, "guidingly":3, "guidwillie":3, "guige":1, "guild":1, "guild socialism":4, "guild-socialistic":4, "guildsman":2, "guildswoman":3, "guildford":2, "guildhall":2, "guildship":2, "guile":1, "guileful":2, "guilefully":3, "guilefulness":3, "guileless":2, "guilelessly":3, "guilelessness":3, "guilt":1, "guiltier":3, "guiltiest":3, "guiltily":3, "guiltiness":3, "guiltless":2, "guiltlessly":3, "guiltlessness":3, "guilty":2, "guilder":2, "guilford":2, "guillaume":2, "guillaume de lorris":5, "guillemot":3, "guilloche":2, "guillotine":3, "guimpe":1, "guin":1, "guinea":2, "guinea":2, "guinea corn":3, "guinea fowl":3, "guinea grains":3, "guinea hen":3, "guinea pepper":4, "guinea pig":3, "guinea worm":3, "guinea-bissau":3, "guineapig":3, "guinevere":3, "guinness":2, "guise":1, "guise":1, "guiscard":2, "guising":2, "guitguit":2, "guiac":2, "guiana":3, "guianan":3, "guianese":3, "guido":2, "guido d'arezzo":5, "guidon":2, "guidonian":4, "guienne":2, "guilln":3, "guipure":2, "guiro":2, "guisarme":2, "guitar":2, "guitarfish":3, "guitarfishes":4, "guitarist":3, "guitarlike":3, "guitry":2, "guizot":2, "gujranwala":4, "gulch":1, "gules":1, "gulf":1, "gulf":1, "gulflike":2, "gulfport":2, "gulfweed":2, "gulfy":2, "gull":1, "gullability":5, "gullable":3, "gullably":3, "gulllike":2, "gullstrand":2, "gulp":1, "gulper eel":3, "gulpingly":3, "gulpy":2, "gulbenkian":4, "gulden":2, "gulgul":2, "gullah":2, "gullable":3, "gullet":2, "gulley":2, "gullied":2, "gullibility":5, "gullible":3, "gullibly":3, "gully":2, "gullying":3, "gum":1, "gum accroides":4, "gum ammoniac":5, "gum arabic":4, "gum benzoin":4, "gum elemi":4, "gum elastic":4, "gum resin":3, "gum-myrtle":2, "gum-resinous":3, "gummed":1, "gump":1, "gumption":2, "gumptionless":3, "gumptious":2, "gumbo":2, "gumbo":2, "gumbo-limbo":3, "gumbo-limbos":3, "gumboil":2, "gumboots":2, "gumbotil":3, "gumdrop":2, "gumless":2, "gumlike":2, "gumly":2, "gumma":2, "gummas":2, "gummata":3, "gummatous":3, "gumming":2, "gummite":2, "gummier":3, "gummiest":3, "gumminess":3, "gummose":2, "gummous":2, "gummosis":3, "gummy":2, "gumshield":2, "gumshoe":2, "gumshoed":2, "gumshoeing":3, "gumtree":2, "gumweed":2, "gumwood":2, "gun":1, "gun carriage":3, "gun-metal":2, "gun-toting":2, "gunge":1, "gunk":1, "gunkhole":2, "gunkholed":2, "gunkholing":3, "gunned":1, "guns":1, "gunut":1, "gunboat":2, "gunboat diplomacy":6, "guncotton":3, "gunda":2, "gundalow":3, "gunfight":2, "gunfighter":3, "gunfighting":3, "gunfire":2, "gunflint":2, "gunfought":2, "gunite":2, "gunless":2, "gunlock":2, "gunmaker":3, "gunmaking":3, "gunman":2, "gunmanship":3, "gunmetal":3, "gunnar":2, "gunnel":2, "gunner":2, "gunnership":3, "gunnery":3, "gunning":2, "gunnison":3, "gunny":2, "gunny-bag":2, "gunnysack":3, "gunpaper":3, "gunplay":2, "gunpoint":2, "gunpowder":3, "gunpowder plot":4, "gunpowder tea":4, "gunpowdery":4, "gunrunner":3, "gunrunning":3, "gunsel":2, "gunshot":2, "gunslinger":3, "gunsmith":2, "gunsmithing":3, "gunstock":2, "gunstocking":3, "gunter":2, "gunter":2, "gunter rig":3, "gunter's chain":3, "guntersville":3, "gunther":2, "gunther":2, "guntur":2, "gunwale":2, "gunyah":2, "guppy":2, "gur":1, "gurdwara":3, "gurge":1, "gurging":2, "gurdwara":3, "gurges":2, "gurgitation":4, "gurgle":2, "gurglet":2, "gurglingly":3, "gurjun":2, "gurkha":2, "gurkhali":3, "gurmukhi":3, "gurnard":2, "gurnet":2, "gurneyite":3, "gursel":2, "gus":1, "gush":1, "gusher":2, "gushingly":3, "gushier":3, "gushiest":3, "gushily":3, "gushiness":3, "gushy":2, "gust":1, "gustable":3, "gustier":3, "gustiest":3, "gustily":3, "gustiness":3, "gustless":2, "gusty":2, "gusset":2, "gussie":2, "gussy":2, "gusta":2, "gustaf":2, "gustav":2, "gustave":2, "gustation":3, "gustative":3, "gustativeness":4, "gustatory":4, "gustavo":3, "gustavo a madero":7, "gustavus":3, "gustavus adolphus":6, "gustavus i":4, "gustavus ii":4, "gustavus vi":4, "gusto":2, "guston":2, "gustoish":3, "gut":1, "guthrie":2, "guthrun":2, "gutsier":3, "gutsiest":3, "gutsily":3, "gutsiness":3, "gutsy":2, "gutbucket":3, "gutless":2, "gutlike":2, "gutser":2, "gutta":2, "gutta-percha":3, "guttae":2, "guttate":2, "guttated":3, "guttatim":3, "guttation":3, "gutted":2, "guttenberg":3, "gutter":2, "gutter press":3, "guttering":3, "gutterlike":3, "guttersnipe":3, "guttersnipish":4, "gutting":2, "guttiform":3, "guttle":2, "guttler":2, "guttural":3, "gutturalise":4, "gutturalised":4, "gutturalism":4, "gutturalising":5, "gutturalize":4, "gutturalized":4, "gutturalizing":5, "gutturality":5, "gutturalization":6, "gutturally":4, "gutturalness":4, "gutturonasal":5, "gutty":2, "gutt":3, "gutte":3, "guv":1, "guy":1, "guy":1, "guyana":3, "guyana":3, "guyenne":2, "guying":2, "guymon":2, "guyon":2, "guyot":2, "guzmn":3, "guzmco":3, "guzzle":2, "guzzler":2, "gurite":3, "gubernacular":5, "gubernaculum":5, "gubernatorial":6, "guberniya":4, "gudermannian":5, "gudea":3, "guglielmo":3, "gujarat":3, "gujarati":4, "gujerat":3, "gujerati":4, "gula":2, "gulag":2, "gular":2, "gulosity":4, "gumi":2, "guna":2, "gunilla":3, "guru":2, "guruship":3, "gustav":2, "gutenberg":3, "gwawl":1, "gwalior":3, "gwari":2, "gwen":1, "gwent":1, "gwenda":2, "gwendolen":3, "gwendolin":3, "gwendolyn":3, "gwendolynne":3, "gwennie":2, "gwelo":2, "gwine":1, "gwinnett":2, "gwydion":2, "gwyn":1, "gwynedd":2, "gwynfa":2, "gwyniad":3, "gyani":2, "gybe":1, "gybing":2, "gyldn":3, "gym":1, "gymel":2, "gymkhana":3, "gymnanthous":3, "gymnast":2, "gymnastic":3, "gymnastics":3, "gymnastical":4, "gymnastically":5, "gymnasia":4, "gymnasial":4, "gymnasiarch":4, "gymnasiarchy":5, "gymnasiast":4, "gymnasium":4, "gymnasiums":4, "gymnogenous":4, "gymnogynous":4, "gymnosophist":4, "gymnosophy":4, "gymnocarpic":4, "gymnocarpous":4, "gymnodinium":5, "gymnoplast":3, "gymnorhinal":4, "gymnosperm":3, "gymnospermal":4, "gymnospermic":4, "gymnospermism":4, "gymnospermous":4, "gymnospore":3, "gymnosporous":4, "gymslip":2, "gyn":1, "gynaecea":4, "gynaeceum":4, "gynaecocracy":5, "gynaecologic":5, "gynaecomastia":6, "gynaecomasty":5, "gynaecothoenas":5, "gynarchy":3, "gynergen":3, "gynecocracy":5, "gynecoid":3, "gynecopathy":5, "gynecologic":5, "gynecomastia":6, "gynecomasty":5, "gynecomorphous":5, "gynecopathic":5, "gynephobia":5, "gyniatrics":4, "gyniatry":4, "gynobase":3, "gynobasic":4, "gynodioecious":5, "gynodioeciously":6, "gynomonoecious":5, "gynomonoeciously":6, "gynomonoecism":5, "gynophore":3, "gynophoric":4, "gynostegia":5, "gynostegium":5, "gynostemia":5, "gynostemium":5, "gyor":1, "gyp":1, "gypper":2, "gypping":2, "gypseian":3, "gypseous":3, "gypsiferous":4, "gypsophila":4, "gypster":2, "gypsum":2, "gypsy":2, "gypsy":2, "gypsy moth":3, "gypsydom":3, "gypsyesque":3, "gypsyhead":3, "gypsyhood":3, "gypsyish":3, "gypsyism":3, "gypsylike":3, "gyre":1, "gyrfalcon":3, "gyttja":2, "gyve":1, "gyving":2, "gyrgy":3, "gyas":2, "gyes":2, "gygaea":3, "gyge":2, "gyges":2, "gynaeceum":4, "gynaecic":3, "gynaecium":4, "gynaecocracy":5, "gynaecoid":3, "gynaecologist":5, "gynaecology":5, "gynaecocrat":4, "gynaecocratic":5, "gynaecomastia":6, "gynaecomorphous":5, "gynandrism":3, "gynandrous":3, "gynandromorph":4, "gynandromorphism":5, "gynandromorphic":5, "gynandromorphous":5, "gynandromorphy":5, "gynandry":3, "gynantherous":4, "gynarchic":3, "gynarchy":3, "gynecic":3, "gynecia":4, "gynecium":4, "gynecocracy":5, "gynecoid":3, "gynecologist":5, "gynecology":5, "gynecocrat":4, "gynecocratic":5, "gynecomastia":6, "gyniatrics":4, "gyniatry":4, "gynoecia":4, "gynoecium":4, "gynodioecism":5, "gynophore":3, "gyral":2, "gyrally":3, "gyrate":2, "gyration":3, "gyrational":4, "gyrator":3, "gyratory":4, "gyrectomy":4, "gyrene":2, "gyri":2, "gyro":2, "gyro horizon":5, "gyroidal":3, "gyroidally":4, "gyron":2, "gyronny":3, "gyrose":2, "gyrocompass":4, "gyrofrequency":5, "gyromagnetic":5, "gyromagnetic ratio":8, "gyropilot":4, "gyroplane":3, "gyroscope":3, "gyroscopic":4, "gyroscopics":4, "gyroscopically":6, "gyrostat":3, "gyrostatic":4, "gyrostatics":4, "gyrostatically":6, "gyrostabiliser":6, "gyrostabilized":5, "gyrostabilizer":6, "gyrovague":3, "gyrus":2, "grtner":3, "gvle":3, "gntrix":5, "grard":3, "gricault":4, "grme":4, "gmez":3, "ga":3, "grlitz":3, "gtterdmmerung":7, "gttingen":4, "gdel":3, "gring":3, "gteborg":4, "gthite":3, "giraldes":4, "gnzian":4, "gdel":2, "ggora y argote":7, "gle":2, "glek bogaz":4, "glichingen":4, "glitz":2, "glivare":4, "gring":2, "gricault":3, "gta":2, "gteau":2, "gtersloh":3, "gterdmerung":5, "gteborg":3, "gthite":2, "gtingen":3, "gza":2, "h'm":1, "h-beam":1, "h-bomb":1, "h-hour":1, "h-stretcher":2, "ha'p'orth":2, "ha'penny":3, "ha-ha":1, "ha-nasi":2, "haa":1, "haaf":1, "haag":1, "haar":1, "haarlem":2, "haakon vii":3, "hab":1, "habsburg":2, "habakkuk":3, "habbub":2, "habdalah":3, "haberdasher":4, "haberdasheries":5, "haberdashery":5, "habergeon":3, "habile":2, "habit":2, "habit-forming":3, "habitant":3, "habitability":6, "habitable":4, "habitableness":5, "habitably":4, "habitacle":4, "habited":3, "habitally":4, "habitancy":4, "habitat":3, "habitation":4, "habitational":5, "habitude":3, "habitus":3, "habitudinal":5, "hac":1, "hack":1, "hack hammer":3, "hackamore":3, "hackberry":3, "hackbut":2, "hackbuteer":3, "hackensack":3, "hacker":2, "hackeries":3, "hackery":3, "hackettstown":3, "hackie":2, "hacking":2, "hacking jacket":4, "hackingly":3, "hackle":2, "hackle fly":3, "hackler":2, "hackles":2, "hackleback":3, "hackly":2, "hackman":2, "hackmatack":3, "hackney":2, "hackney":2, "hackneyed":2, "hackneyism":3, "hacksaw":2, "hacienda":4, "had":1, "hade":1, "hadj":1, "hadjes":2, "hadji":2, "hadjis":2, "hadst":1, "hadar":2, "hadaway":3, "haddest":2, "haddie":2, "haddington":3, "haddock":2, "haddon":2, "haddonfield":3, "haded":2, "hadfield":2, "hading":2, "hadith":2, "hadley":2, "hadn't":2, "hadron":2, "hadrosaur":3, "hae":1, "haeckel":2, "haeckelism":3, "haecceity":4, "haem":1, "haemangioma":2, "haemachrome":3, "haematal":3, "haematin":3, "haematinic":4, "haematite":3, "haematocryal":5, "haematogenous":5, "haematologist":5, "haematology":5, "haematoblast":4, "haematocele":4, "haematocrit":4, "haematocryal":5, "haematocyst":4, "haematocyte":4, "haematogenesis":6, "haematologic":5, "haematoma":4, "haematomas":4, "haematomata":5, "haematophyte":4, "haematopoietic":6, "haematopoiesis":6, "haematosis":4, "haematothermal":5, "haematozoa":5, "haematozoal":5, "haematozoic":5, "haematozoon":5, "haemoptysis":4, "haemorrhage":3, "haemorrhaged":3, "haemorrhagic":4, "haemorrhagic measles":6, "haemorrhaging":4, "haemorrhoid":3, "haemorrhoids":3, "haemorrhoidectomy":6, "haen":1, "haet":1, "haemagglutinate":5, "haemagglutinative":6, "haemagglutinate":5, "haemagglutinated":6, "haemagglutinating":6, "haemagglutination":6, "haemagglutinin":5, "haemal":2, "haemangioma":5, "haemangiomas":5, "haemangiomata":6, "haematic":3, "haematoblast":4, "haemachrome":3, "haemacytometer":6, "haemagogue":3, "haematemesis":5, "haematein":4, "haematoid":3, "haematoidin":4, "haematolysis":5, "haematoxylic":5, "haematoxylin":5, "haematoxylon":5, "haematoma":4, "haematosis":4, "haematozoon":5, "haematuria":5, "haemic":2, "haemin":2, "haemoid":2, "haemolysin":4, "haemolysis":4, "haemon":2, "haemoblast":3, "haemochrome":3, "haemocoel":3, "haemoconcentration":6, "haemocyte":3, "haemocyanin":5, "haemocytometer":6, "haemocytoblast":5, "haemocytoblastic":6, "haemodialysis":6, "haemodynamics":5, "haemoflagellate":5, "haemoglobin":4, "haemoglobinous":5, "haemoglobinuria":7, "haemolytic":4, "haemolysin":4, "haemophile":3, "haemophilic":4, "haemophilia":5, "haemophiliac":5, "haemopoiesis":5, "haemostat":3, "haemostatic":4, "haemostasia":4, "haemostasis":4, "haemothorax":4, "haemotoxic":4, "haemotoxin":4, "haemus":2, "haeres":2, "haeredes":3, "haeremai":3, "haft":1, "hafter":2, "haffat":2, "haffet":2, "haffit":2, "hafnium":3, "haftarah":3, "haftaroth":3, "hag":1, "hag":1, "hag-ridden":2, "hagged":1, "hagiographa":2, "hague":1, "hague tribunal":4, "hagueton":2, "hagberry":3, "hagborn":2, "hagbut":2, "hagdon":2, "hagfish":2, "hagfishes":3, "haggadic":3, "haggard":2, "haggard":2, "haggardly":3, "haggardness":3, "haggada":3, "haggadah":3, "haggadist":3, "haggadistic":4, "haggai":3, "haggis":2, "haggish":2, "haggishly":3, "haggishness":3, "haggle":2, "haggler":2, "hagiarchies":4, "hagiarchy":4, "hagiocracy":5, "hagiographa":5, "hagiographer":5, "hagiographist":5, "hagiography":5, "hagiolater":5, "hagiolatrous":5, "hagiolatry":5, "hagiologist":5, "hagiology":5, "hagiographic":5, "hagiologic":5, "hagioscope":4, "hagioscopic":5, "haglike":2, "hagmane":3, "hagmenay":3, "hagno":2, "hagrid":2, "hagride":2, "hagridden":3, "hagrider":3, "hagriding":3, "hagseed":2, "hah":1, "hahn":1, "hahnemann":3, "hahnemannism":4, "haick":1, "haig":1, "haik":1, "hail":1, "hail mary":3, "hail-fellow":2, "hail-fellow-well-met":2, "hailer":2, "hailstone":2, "hailstoned":2, "hailstorm":2, "hailwood":2, "hain't":1, "hair":1, "hair follicle":4, "hair restorer":4, "hair trigger":3, "hair'sbreadth":2, "hair-raiser":2, "hair-raising":2, "hair-trigger":2, "hairball":2, "hairbrained":2, "hairbreadth":2, "hairbrush":2, "haircloth":2, "haircut":2, "haircutter":3, "haircutting":3, "hairdo":2, "hairdresser":3, "hairdressing":3, "hairgrip":2, "hairif":2, "hairier":3, "hairiest":3, "hairiness":3, "hairless":2, "hairlessness":3, "hairlike":2, "hairline":2, "hairnet":2, "hairpiece":2, "hairpin":2, "hairsplitter":3, "hairsplitting":3, "hairspring":2, "hairstreak":2, "hairstyle":2, "hairtail":2, "hairweaving":3, "hairworm":2, "hairy":2, "hairy frog":3, "hairy willowherb":5, "hairy-faced":2, "haida":2, "haidar ali":4, "haidee":2, "haidinger":3, "haiduk":2, "haifa":2, "haikai":2, "haikal":2, "haiku":2, "haile selassie":5, "hainan":2, "hainan tao":3, "hainault":2, "hainaut":2, "haiphong":2, "haiti":2, "haitian":2, "haitink":2, "hajj":1, "hajjes":2, "haji":2, "hajis":2, "hajji":2, "hajjis":2, "hake":1, "hakluyt":2, "hal":1, "hale":1, "hale":1, "halesowen":3, "haledon":2, "haleness":2, "half":1, "half eagle":3, "half gainer":3, "half holiday":4, "half landing":3, "half measure":3, "half seas over":4, "half volley":3, "half-a-dollar":2, "half-accustomed":3, "half-acquainted":3, "half-acquiescent":4, "half-addressed":2, "half-admiring":3, "half-admitted":3, "half-affianced":3, "half-altered":2, "half-anglicized":3, "half-angrily":3, "half-angry":2, "half-annoyed":2, "half-annoying":3, "half-aristotelian":5, "half-abandoned":3, "half-acre":2, "half-adream":2, "half-afloat":2, "half-afraid":2, "half-agreed":2, "half-alike":2, "half-alive":2, "half-american":4, "half-americanized":5, "half-ashamed":2, "half-ashamedly":4, "half-asian":2, "half-asiatic":4, "half-asleep":2, "half-awake":2, "half-barbarian":4, "half-barrel":2, "half-begging":2, "half-begun":2, "half-believed":2, "half-believing":3, "half-binding":2, "half-blooded":2, "half-boiling":2, "half-brother":2, "half-broken":2, "half-burning":2, "half-buried":2, "half-bushel":2, "half-carried":2, "half-century":3, "half-chanted":2, "half-christian":2, "half-civil":2, "half-civilized":3, "half-climbing":2, "half-closing":2, "half-coaxing":2, "half-colored":2, "half-completed":3, "half-concealed":2, "half-concealing":3, "half-confederate":4, "half-confessed":2, "half-congealed":2, "half-conquered":2, "half-conscious":2, "half-conservative":4, "half-consumed":2, "half-consummated":4, "half-contemptuous":4, "half-contented":3, "half-convicted":3, "half-convinced":2, "half-convincing":3, "half-cordate":2, "half-corrected":3, "half-cotton":2, "half-counted":2, "half-covered":2, "half-crazy":2, "half-creole":2, "half-critical":3, "half-crumbled":2, "half-crumbling":2, "half-dacron":2, "half-deafened":2, "half-deafening":3, "half-decker":2, "half-decade":2, "half-democratic":4, "half-deprecating":4, "half-defiant":3, "half-deified":3, "half-demented":3, "half-demolished":3, "half-denuded":3, "half-deserved":2, "half-deservedly":4, "half-destroyed":2, "half-developed":3, "half-discriminated":5, "half-discriminating":5, "half-disposed":2, "half-digested":3, "half-divine":2, "half-dollar":2, "half-dozen":2, "half-dressedness":3, "half-drowning":2, "half-drunken":2, "half-dying":2, "half-earnest":2, "half-eaten":2, "half-educated":4, "half-embraced":2, "half-embracing":3, "half-english":2, "half-enamored":3, "half-enforced":2, "half-expectant":3, "half-exploited":3, "half-exposed":2, "half-elizabethan":5, "half-erased":2, "half-evaporated":5, "half-evaporating":5, "half-famished":2, "half-farthing":2, "half-fascinated":4, "half-fascinating":4, "half-feminine":3, "half-fertile":2, "half-fictitious":3, "half-finished":2, "half-flattered":2, "half-flattering":3, "half-folded":2, "half-forgiven":3, "half-forgotten":3, "half-forward":2, "half-frowning":2, "half-fulfilled":2, "half-fulfilling":3, "half-furnished":2, "half-gallon":2, "half-german":2, "half-hardy":2, "half-harvested":3, "half-headed":2, "half-hearted":2, "half-heathen":2, "half-hessian":2, "half-hidden":2, "half-holiday":3, "half-hollow":2, "half-hunter":2, "half-hungered":2, "half-human":2, "half-hypnotized":3, "half-important":3, "half-inclined":2, "half-indignant":3, "half-informed":2, "half-informing":3, "half-ingenious":3, "half-ingenuous":4, "half-inherited":4, "half-insinuated":5, "half-insinuating":5, "half-instinctive":3, "half-intellectual":5, "half-intelligible":5, "half-intoned":2, "half-intoxicated":5, "half-invalid":3, "half-irish":2, "half-italian":3, "half-joking":2, "half-justified":3, "half-languaged":2, "half-languishing":3, "half-latinized":3, "half-latticed":2, "half-learnedly":3, "half-leather":2, "half-liberal":3, "half-linen":2, "half-liter":2, "half-lunatic":3, "half-masticated":4, "half-matured":2, "half-mental":2, "half-merited":3, "half-mexican":3, "half-miler":2, "half-minded":2, "half-minute":2, "half-misunderstood":4, "half-monthly":2, "half-moslem":2, "half-mourning":2, "half-mohammedan":4, "half-mumbled":2, "half-mummified":3, "half-muslim":2, "half-muhammadan":4, "half-naked":2, "half-nelson":2, "half-normal":2, "half-nylon":2, "half-obliterated":5, "half-offended":3, "half-orphan":2, "half-oxidized":3, "half-opened":2, "half-oriental":4, "half-oval":2, "half-petrified":3, "half-playful":2, "half-pleasing":2, "half-pounder":2, "half-praising":2, "half-present":2, "half-proven":2, "half-profane":2, "half-professed":2, "half-profile":2, "half-proletarian":5, "half-protested":3, "half-protesting":3, "half-provocative":4, "half-quarter":2, "half-quartern":2, "half-quarterpace":3, "half-questioning":3, "half-quixotic":3, "half-quixotically":5, "half-radical":3, "half-rayon":2, "half-reasonable":4, "half-reasoning":3, "half-retinal":3, "half-reactionary":5, "half-rebellious":3, "half-reclaimed":2, "half-reclined":2, "half-reclining":3, "half-refined":2, "half-regained":2, "half-reluctant":3, "half-remonstrant":3, "half-repentant":3, "half-republican":4, "half-revealed":2, "half-reversed":2, "half-ripened":2, "half-roasted":2, "half-rotted":2, "half-rotten":2, "half-romantic":3, "half-romantically":5, "half-rueful":2, "half-russian":2, "half-ruined":2, "half-sagittate":3, "half-savage":2, "half-scottish":2, "half-second":2, "half-section":2, "half-severed":2, "half-semitic":3, "half-serious":3, "half-shakespearean":4, "half-shoddy":2, "half-shouted":2, "half-sighted":2, "half-sinking":2, "half-sister":2, "half-smiling":2, "half-smothered":2, "half-solid":2, "half-spanish":2, "half-spoonful":2, "half-squadron":2, "half-starving":2, "half-sterile":2, "half-stocking":2, "half-subdued":2, "half-submerged":2, "half-successful":3, "half-sunken":2, "half-syllabled":3, "half-tearful":2, "half-teaspoonful":3, "half-tented":2, "half-theatrical":4, "half-thickness":2, "half-timber":2, "half-timbered":2, "half-title":2, "half-training":2, "half-translated":3, "half-turning":2, "half-understood":3, "half-undone":2, "half-utilized":3, "half-vellum":2, "half-verified":3, "half-volley":2, "half-volleyed":2, "half-volleyer":3, "half-volleying":3, "half-waking":2, "half-whispered":2, "half-whisperingly":4, "half-wicket":2, "half-willful":2, "half-witted":2, "half-wittedly":3, "half-wittedness":3, "half-womanly":3, "half-woolen":2, "half-worsted":2, "half-woven":2, "half-written":2, "halfback":2, "halfbeak":2, "halfhearted":3, "halfheartedness":4, "halfhourly":3, "halflife":2, "halfmoon":2, "halfpace":2, "halfpaced":2, "halfpence":2, "halfpennies":3, "halfpenny":3, "halftone":2, "halftrack":2, "halfway":2, "halfway":2, "halfway house":3, "halfwit":2, "hall":1, "hall":1, "hall effect":3, "hall of residence":5, "hallal":2, "hallmark":2, "hallmarker":3, "hallroom":2, "hallstatt":2, "hallstattan":3, "hallstattian":4, "hallway":2, "halm":1, "halmstad":2, "hals":1, "halt":1, "halter":2, "halting":2, "haltingly":3, "haltingness":3, "haltless":2, "halve":1, "halve together":4, "halves":1, "halving":2, "halal":2, "halbe":2, "halberd":2, "halberdier":3, "halbert":2, "halcyon":3, "halcyone":4, "halcyonian":5, "haldane":2, "haler":2, "halest":2, "halid":2, "halide":2, "haling":2, "halirrhothius":5, "halite":2, "haliver":3, "halibut":3, "halicarnassean":6, "halicarnassian":6, "halicarnassus":5, "halicot":3, "halidom":3, "halidome":3, "halifax":3, "haligonian":5, "halitherses":4, "halitosis":4, "halitus":3, "halituses":4, "hallah":2, "hallahs":2, "hallam":2, "hallan":2, "halle":2, "halleck":2, "hallel":2, "haller":2, "hallettsville":3, "halley":2, "halley's comet":4, "halleluiah":4, "hallelujah":4, "halli":2, "halliard":2, "hallie":2, "halling":2, "halliwell":3, "hallo":2, "halloa":2, "halloaed":2, "halloaing":3, "halloed":2, "halloo":2, "hallooed":2, "hallooing":3, "halloth":2, "hallow":2, "hallowed":2, "hallowedly":3, "hallowedness":3, "hallowe'en":3, "halloween":3, "hallower":3, "hallowmas":3, "hallowmass":3, "halloing":3, "hallowell":3, "hallux":2, "hallux valgus":4, "hallucal":3, "halluces":3, "hallucinogen":5, "hallucinate":4, "hallucinated":5, "hallucinating":5, "hallucination":5, "hallucinational":6, "hallucinative":5, "hallucinator":5, "hallucinatory":6, "hallucinogenic":6, "hallucinosis":5, "hally":2, "halma":2, "halmaheira":4, "halmahera":4, "haloid":2, "halogen":3, "halogenate":4, "halogenated":5, "halogenating":5, "halogenation":5, "halogenoid":4, "halophile":3, "halophilic":4, "halophyte":3, "halophytic":4, "halothane":3, "halsey":2, "haltemprice":3, "halter":2, "haltere":2, "halterlike":3, "halteres":3, "halva":2, "halvah":2, "halyard":2, "halysites":4, "ham":1, "ham":1, "ham-fisted":2, "ham-handed":2, "hame":1, "hamm":1, "hampden":2, "hampshire":2, "hampstead":2, "hampton":2, "hamadan":3, "hamador hamed":6, "hamadryad":4, "hamadryads":4, "hamadryas":4, "hamadryades":5, "hamamelidaceous":6, "hamamelidaceous":6, "hambleton":3, "hambletonian":5, "hambone":2, "hamborn":2, "hambro":2, "hambroline":3, "hamburg":2, "hamburg":2, "hamburger":3, "hamden":2, "hamersley range":4, "hamelin":3, "hamheung":2, "hamhung":2, "hamilton":3, "hamiltonian":5, "hamiltonianism":6, "hamite":2, "hamitic":3, "hamiticized":4, "hamito-semitic":5, "hamlet":2, "hamlet":2, "hamlin":2, "hammal":2, "hammarskj":3, "hammarskjld":4, "hammer":2, "hammer and sickle":5, "hammer beam":3, "hammer drill":3, "hammer out":3, "hammered":2, "hammerable":4, "hammercloth":3, "hammerer":3, "hammerfest":3, "hammerhead":3, "hammerheaded":4, "hammering":3, "hammeringly":4, "hammerkop":3, "hammerless":3, "hammerlike":3, "hammerlock":3, "hammersmith":3, "hammerstein":3, "hammerstein ii":4, "hammertoe":3, "hammett":2, "hamming":2, "hammier":3, "hammiest":3, "hammock":2, "hammocklike":3, "hammond":2, "hammonton":3, "hammurabi":4, "hammurapi":4, "hammy":2, "hamper":2, "hamperedly":3, "hamperedness":3, "hamperer":3, "hamshackle":3, "hamster":2, "hamstring":2, "hamstringed":2, "hamstringing":3, "hamsun":2, "hamtramck":2, "hamular":3, "hamulate":3, "hamulus":3, "hamza":2, "hamzah":2, "han":1, "han cities":3, "han't":1, "hance":1, "hand":1, "hand":1, "hand grenade":3, "hand organ":3, "hand over":3, "hand-tailor":2, "hands":1, "handbag":2, "handball":2, "handballer":3, "handbarrow":3, "handbell":2, "handbill":2, "handbook":2, "handbound":2, "handbrake":2, "handbreadth":2, "handcar":2, "handcart":2, "handclap":2, "handclasp":2, "handcraft":2, "handcrafted":3, "handcuff":2, "handcuffs":2, "handed":2, "handedness":3, "handfast":2, "handfastfed":3, "handfastfeeding":4, "handfasting":3, "handfeed":2, "handful":2, "handgrip":2, "handgun":2, "handhold":2, "handie-talkie":3, "handicap":3, "handicapped":3, "handicapper":4, "handicapping":4, "handicraft":3, "handicraftsman":4, "handicraftsmanship":5, "handicraftship":4, "handier":3, "handiest":3, "handily":3, "handiness":3, "handiwork":3, "handkerchief":3, "handless":2, "handlike":2, "handloader":3, "handloom":2, "handloomed":2, "handmade":2, "handmaid":2, "handmaiden":3, "handout":2, "handpick":2, "handrail":2, "handsaw":2, "handsawfish":3, "handsawfishes":4, "handsel":2, "handseled":2, "handselled":2, "handseling":3, "handselling":3, "handset":2, "handsetting":3, "handsew":2, "handsewed":2, "handsewn":2, "handsewing":3, "handshake":2, "handshaker":3, "handshaking":3, "handsome":2, "handsomeish":3, "handsomely":3, "handsomeness":3, "handsomer":3, "handsomest":3, "handspike":2, "handspring":2, "handstand":2, "handstroke":2, "handweaving":3, "handwheel":2, "handwork":2, "handworked":2, "handwoven":3, "handwrit":2, "handwrite":2, "handwriting":3, "handwritten":3, "handwrought":2, "handy":2, "handy-andy":3, "handybillies":4, "handybilly":4, "handyman":3, "hang":1, "hang about":3, "hang behind":3, "hang together":4, "hang-glider":2, "hang-up":1, "hangar":2, "hangability":5, "hangable":3, "hangbird":2, "hangchow":2, "hangdog":2, "hanger":2, "hanger-on":2, "hangers-on":2, "hangfire":2, "hanging":2, "hanging valley":4, "hanging wall":3, "hangingly":3, "hangman":2, "hangnail":2, "hangout":2, "hangover":3, "hangup":2, "hank":1, "hank":1, "hanker":2, "hankie":2, "hanky":2, "hanky-panky":3, "hans":1, "hanse":1, "hansetown":2, "hant":1, "hants":1, "hanap":2, "hanaper":3, "hancock":2, "handel":2, "handelian":4, "handle":2, "handled":2, "handler":2, "handleable":4, "handlebar":3, "handlebar moustache":5, "handlebars":3, "handleless":3, "handling":2, "handy":2, "hanford":2, "hanker":2, "hankerer":3, "hankering":3, "hankeringly":4, "hankey-pankey":3, "hankie":2, "hankow":2, "hanky":2, "hanky-panky":3, "hanley":2, "hanna":2, "hannah":2, "hannibal":3, "hanno":2, "hannover":3, "hanover":3, "hanoverian":5, "hanratty":3, "hansa":2, "hansard":2, "hansel":2, "hanseled":2, "hanselled":2, "hanseling":3, "hanselling":3, "hansen":2, "hansen's disease":4, "hanseatic":4, "hanseatic league":5, "hansom":2, "hanson":2, "hansteen":2, "hanuman":3, "hanuman":3, "hanya":2, "hanyang":2, "haole":2, "haoma":2, "hap":1, "haphsiba":3, "haphtarah":3, "haphtaroth":3, "hapsburg":2, "haphazard":3, "haphazardly":4, "haphazardness":4, "hapless":2, "haplessly":3, "haplessness":3, "haplite":2, "haplitic":3, "haplography":4, "haploid":2, "haploidic":3, "haplology":4, "haplologic":4, "haplopia":4, "haplosis":3, "haply":2, "happen":2, "happen by":3, "happen on":3, "happening":3, "happenstance":3, "happing":2, "happier":3, "happiest":3, "happily":3, "happiness":3, "happy":2, "happy":2, "happy hunting ground":5, "happy-go-lucky":3, "hapten":2, "haptene":2, "hapteron":3, "haptic":2, "haptics":2, "haptical":3, "haptometer":4, "haptotropism":4, "hard":1, "hard cider":3, "hard copy":3, "hard landing":3, "hard labour":3, "hard palate":3, "hard rubber":3, "hard shoulder":3, "hard-bitten":2, "hard-boiledness":2, "hard-favored":2, "hard-favoredness":3, "hard-favoured":2, "hard-favouredness":3, "hard-featured":2, "hard-featuredness":3, "hard-fisted":2, "hard-fistedness":3, "hard-handed":2, "hard-headed":2, "hard-of-hearing":2, "hard-wearing":2, "hard-working":2, "hardouin-mansard":2, "hards":1, "hardback":2, "hardbake":2, "hardball":2, "hardboard":2, "hardbound":2, "hardcore":2, "hardcover":3, "hardcovered":3, "harden":2, "harden off":3, "harden up":3, "hardened":2, "hardenability":6, "hardenable":4, "hardener":3, "hardening":3, "hardfisted":3, "hardfistedness":4, "hardhack":2, "hardhanded":3, "hardhandedness":4, "hardhat":2, "hardhead":2, "hardheads":2, "hardheaded":3, "hardheadedly":4, "hardheadedness":4, "hardhearted":3, "hardheartedly":4, "hardheartedness":4, "hardly":2, "hardness":2, "hardpan":2, "hardscrabble":3, "hardship":2, "hardtack":2, "hardtail":2, "hardtop":2, "hardwall":2, "hardware":2, "hardwicke":2, "hardwood":2, "hare":1, "hare":1, "harebell":2, "harebrained":2, "harebrainedly":3, "harebrainedness":3, "harelike":2, "harelip":2, "harelipped":2, "harewood":2, "hark":1, "harkee":2, "harken":2, "harkener":3, "harkness":2, "harl":1, "harle":1, "harling":2, "harm":1, "harmsworth":2, "harmer":2, "harmful":2, "harmfully":3, "harmfulness":3, "harmless":2, "harmlessly":3, "harmlessness":3, "harns":1, "harp":1, "harper":2, "harping":2, "harpings":2, "harpins":2, "harpist":2, "harpless":2, "harplike":2, "harpsichord":3, "harpsichordist":4, "harpwise":2, "harpylike":3, "harsh":1, "harshen":2, "harshly":2, "harshness":2, "harst":1, "harslet":2, "hart":1, "hart":1, "harte":1, "hartshorn":2, "hartsville":2, "hartbeest":2, "hartford":2, "hartley":2, "hartmann":2, "hartnell":2, "hartselle":2, "hartwell":2, "harve":1, "harz":1, "harz mountains":3, "harald i":3, "harass":2, "harassed":2, "harassedly":3, "harassable":4, "harasser":3, "harassingly":4, "harassment":3, "harahan":3, "harbin":2, "harbinger":3, "harbinger-of-spring":3, "harbingers-of-spring":3, "harbingership":4, "harbor":2, "harborage":3, "harborer":3, "harborless":3, "harborous":3, "harborside":3, "harborward":3, "harbour":2, "harbour master":4, "harbour seal":3, "harbourage":3, "harbourless":3, "harbourous":3, "harbourside":3, "harbourward":3, "harbona":3, "harden":2, "hardened":2, "hardenberg":3, "hardecanute":4, "hardie":2, "hardie":2, "hardin":2, "harding":2, "hardicanute":4, "hardier":3, "hardiest":3, "hardihood":3, "hardily":3, "hardiment":3, "hardiness":3, "hardouin-mansart":3, "hardy":2, "hardy":2, "hareem":2, "harem":2, "hargeisa":3, "hargreaves":2, "haring":2, "haricot":3, "harijan":3, "harkins":2, "harlan":2, "harland":2, "harlem":2, "harlemite":3, "harlen":2, "harley":2, "harley street":3, "harlequin":3, "harlequin bug":4, "harlequin duck":4, "harlequinade":4, "harlequinesque":4, "harlequinism":4, "harlingen":3, "harlot":2, "harlotry":3, "harlow":2, "harmattan":3, "harmonic":3, "harmonic analysis":7, "harmonic mean":4, "harmonic minor scale":6, "harmonic motion":5, "harmonic progression":6, "harmonic series":5, "harmonics":3, "harmonica":4, "harmonically":5, "harmonicalness":5, "harmonicon":4, "harmost":2, "harmonise":3, "harmonised":3, "harmonist":3, "harmonist":3, "harmoniser":4, "harmonising":4, "harmonistic":4, "harmonistically":6, "harmonite":3, "harmonize":3, "harmonized":3, "harmonizable":5, "harmonizer":4, "harmonizing":4, "harmonia":4, "harmonides":4, "harmonious":4, "harmoniously":5, "harmoniousness":5, "harmonisation":5, "harmonium":4, "harmonization":5, "harmony":3, "harmony":3, "harmotho":5, "harmotome":3, "harmotomic":4, "harnack":2, "harness":2, "harness hitch":3, "harness race":3, "harnessed antelope":5, "harnesser":3, "harnessless":3, "harnesslike":3, "harnett":2, "harney peak":3, "harold":2, "harold i":3, "harold ii":3, "harpalyce":4, "harpalus":3, "harper":2, "harper's ferry":4, "harpin":2, "harpina":3, "harpoon":2, "harpooner":3, "harpoonlike":3, "harpy":2, "harpy":2, "harpy eagle":4, "harquebus":3, "harquebuse":3, "harquebuss":3, "harquebuses":4, "harquebusier":4, "harquebusier":4, "harrar":2, "harried":2, "harris":2, "harris tweed":3, "harrisburg":3, "harridan":3, "harrier":3, "harriet":3, "harriett":3, "harriette":3, "harrietta":4, "harriman":3, "harrison":3, "harrisonville":4, "harrodsburg":3, "harrow":2, "harrow":2, "harrowingly":4, "harrowment":3, "harrogate":3, "harrovian":4, "harrumph":2, "harry":2, "harry":2, "harrying":3, "harstad":2, "hartal":2, "hartebeest":3, "harthacanute":4, "harthacnut":3, "hartlepool":3, "harum-scarum":3, "harum-scarumness":4, "harvard":2, "harvard classification":7, "harvardian":4, "harvest":2, "harvest home":3, "harvest mite":3, "harvest moon":3, "harvest mouse":3, "harvester":3, "harvestfish":3, "harvesting":3, "harvestless":3, "harvestman":3, "harvester":3, "harvey":2, "harveyize":3, "harveyized":3, "harveyizing":4, "harwich":2, "haryana":3, "has":1, "hase":1, "hash":1, "hash-slinger":2, "hashchured":2, "hashchuring":3, "hasheesh":2, "hasher":2, "hashing":2, "hashish":2, "hashimite":3, "hask":1, "hasp":1, "hast":1, "haste":1, "hasteful":2, "hastefully":3, "hasteless":2, "hastelessness":3, "hasted":2, "hasting":2, "hastings":2, "hastier":3, "hastiest":3, "hastily":3, "hastiness":3, "hasty":2, "hasdai":2, "hasdrubal":3, "hasidaean":4, "hasidean":4, "hasidim":3, "hasidism":3, "haskell":2, "haslet":2, "haslock":2, "hasmonaean":4, "hasmonean":4, "hasn't":2, "hassam":2, "hassan":2, "hassan ii":3, "hasselt":2, "hassenpfeffer":4, "hassidim":3, "hassle":2, "hassock":2, "hastate":2, "hastately":3, "hasten":2, "hastener":3, "hastings":2, "hastings-on-hudson":3, "hasty":2, "hasty pudding":4, "hat":1, "hatch":1, "hatchability":5, "hatchable":3, "hatchback":2, "hatchel":2, "hatcheled":2, "hatchelled":2, "hatcheling":3, "hatchelling":3, "hatcher":2, "hatcheries":3, "hatchery":3, "hatchet":2, "hatchet job":3, "hatchet man":3, "hatchettine":3, "hatchettite":3, "hatchetfaced":3, "hatchetfish":3, "hatchetfishes":4, "hatchetlike":3, "hatching":2, "hatchment":2, "hatchway":2, "hate":1, "hateable":3, "hateful":2, "hatefully":3, "hatefulness":3, "hatemonger":3, "hatemongering":4, "hath":1, "hathaway":3, "hathor":2, "hathor-headed":3, "hathpace":2, "hatable":3, "hatband":2, "hatboro":3, "hatbox":2, "hatcheck":2, "hated":2, "hater":2, "hatfield":2, "hating":2, "hatless":2, "hatlessness":3, "hatlike":2, "hatpin":2, "hatrack":2, "hatshepset":3, "hatshepsut":3, "hatta":2, "hatted":2, "hatter":2, "hatteras":3, "hatti":2, "hattic":2, "hattie":2, "hattiesburg":3, "hatting":2, "hattian":3, "hattusas":3, "hatty":2, "haugh":1, "haughtier":3, "haughtiest":3, "haughtily":3, "haughtiness":3, "haughty":2, "haul":1, "haulm":1, "haulage":2, "haulback":2, "hauler":2, "haulier":2, "haunce":1, "haunch":1, "haunchless":2, "haunt":1, "haunted":2, "haunter":2, "haunting":2, "hauntingly":3, "hauptmann":2, "haussmann":2, "haussmannization":5, "hausfrau":2, "hausfraus":2, "hausfrauen":3, "haushofer":3, "haussa":2, "haustecan":3, "haustella":3, "haustellate":3, "haustellum":3, "haustoria":4, "haustorial":4, "haustorium":4, "haute couture":3, "haute cuisine":3, "haute cole":3, "haute-garonne":2, "haute-normandie":3, "haute-savoie":2, "hautes-pyrnes":5, "hautes-pyrn":3, "hautbois":2, "hautboy":2, "hautboyist":3, "hauberk":2, "haubergeon":3, "hauerite":3, "hauraki gulf":4, "hauriant":3, "hausa":2, "hausen":2, "hauteur":2, "have":1, "havelock":2, "havelock":2, "haven't":2, "havant":2, "havdala":3, "haven":2, "haver":2, "haverford":3, "haversack":3, "haversine":3, "haverstraw":3, "havildar":3, "having":2, "havior":2, "havilah":3, "haviland":3, "havoc":2, "havocked":2, "havocker":3, "havocking":3, "haw":1, "hawes water":3, "hawk":1, "hawksbeak":2, "hawksbill":2, "hawksbill turtle":4, "hawksmoor":2, "hawkbill":2, "hawker":2, "hawkey":2, "hawkeye":2, "hawkie":2, "hawking":2, "hawkish":2, "hawklike":2, "hawknose":2, "hawknosed":2, "hawkshaw":2, "hawkweed":2, "hawse":1, "hawse-fallen":2, "hawsehole":2, "hawsepiece":2, "hawsepipe":2, "hawser":2, "hawser bend":3, "hawser-laid":2, "hawsing":2, "hawfinch":2, "hawhaw":2, "hawick":2, "hawkins":2, "hawkinsville":3, "hawkyns":2, "hawser":2, "hawser-laid":2, "hawthorn":2, "hawthorne":2, "hawthornesque":3, "hawthorny":3, "hay":1, "hay":1, "hay fever":3, "hayes":1, "haynes":1, "haynesville":2, "hays":1, "haysville":2, "haybox":2, "haycock":2, "hayden":2, "haydn":2, "hayey":2, "hayfield":2, "hayfork":2, "hayley":2, "haylift":2, "hayloft":2, "haymaker":3, "haymarket":3, "haymow":2, "hayrack":2, "hayrick":2, "hayride":2, "hayseed":2, "haystack":2, "hayti":2, "haytian":2, "hayward":2, "hayward":2, "haywire":2, "haywood":2, "haze":1, "hazeless":2, "hazemeter":3, "hazard":2, "hazard":2, "hazard warning device":6, "hazardable":4, "hazarder":3, "hazardless":3, "hazardous":3, "hazardously":4, "hazardousness":4, "hazer":2, "hazing":2, "hazlitt":2, "hazzan":2, "habacuc":3, "habakkuk":3, "habana":3, "habanera":4, "habanero":4, "habenula":4, "habenular":4, "haber":2, "haber process":4, "habeas corpus":5, "habiliment":4, "habilimented":5, "habilimental":5, "habilitate":4, "habilitated":5, "habilitating":5, "habilitation":5, "habilitator":5, "habitual":4, "habitually":5, "habitualness":5, "habituate":4, "habituated":5, "habituating":5, "habituation":5, "habitue":4, "habitu":5, "habitus":5, "habiri":3, "habiru":3, "habitan":3, "habitant":3, "habitants":3, "haboob":2, "haboub":2, "habu":2, "habub":2, "habutae":3, "habutai":3, "hacek":2, "hachure":2, "hacienda":4, "hadal":2, "hadas":2, "hadassah":3, "hadasseh":3, "hadamard":3, "hadarim":3, "hades":2, "hadhramaut":3, "hadhramautian":4, "hadith":2, "hadramaut":3, "hadrian":3, "hadrian's wall":4, "hadrosaurus":4, "hafiz":2, "hafiz":2, "hagar":2, "hagen":2, "hagerstown":3, "hagecius":4, "hagia":3, "hakai":2, "hakeem":2, "hakenkreuz":3, "hakenkreuzler":4, "hakenkreuze":4, "hakea":3, "hakim":2, "hakodate":4, "halachist":3, "halaf":2, "halafian":4, "halakic":3, "halacha":3, "halachah":3, "halachas":3, "halachot":3, "halafian":4, "halakah":3, "halakahs":3, "halakist":3, "halakoth":3, "halala":3, "halalah":3, "halation":3, "halavah":3, "haleiwa":3, "haler":2, "halers":2, "halette":2, "haleyville":3, "haleakala":5, "haleru":3, "halevi":3, "hali":2, "halituosity":6, "halituous":4, "halo":2, "haloed":2, "halogenous":4, "halophilism":4, "halophilous":4, "halotrichite":4, "haloa":3, "halobiont":4, "haloesque":3, "haloing":3, "halolike":3, "halona":3, "halutz":2, "halutzim":3, "halvy":4, "halvy":3, "hama":2, "hamal":2, "haman":2, "hamantasch":3, "hamantaschen":4, "hamantash":3, "hamantashen":4, "hamartia":4, "hamate":2, "hamath":2, "hamaul":2, "hamamatsu":4, "hamamatsu":4, "hamelin":2, "hameln":2, "hametz":2, "hamilcar barca":5, "hanau":2, "hanasi":3, "hanefiyeh":4, "hanoi":2, "hanotaux":3, "hanukkah":3, "hanukah":3, "haori":3, "hapax legomenon":6, "hapi":2, "hara-kiri":3, "haram":2, "harambee":3, "harangue":2, "harangued":2, "harangueful":3, "haranguer":3, "haranguing":3, "harappa":3, "harappan":3, "harar":2, "harakiri":4, "hareem":2, "hari-kari":3, "harim":2, "haringey":3, "harijan":3, "harikari":4, "haroun-al-raschid":3, "haroset":3, "haroseth":3, "harun al-rashid":4, "haruspex":3, "haruspical":4, "haruspication":5, "haruspices":4, "haruspicy":4, "harunobu":4, "hasa":2, "hasan":2, "hasanlu":3, "hasek":2, "hasenpfeffer":4, "hasid":2, "hasidic":3, "hasidim":3, "haskalah":3, "hatasu":3, "hathoric":3, "hatikvah":3, "hatred":2, "havana":3, "havana cigar":5, "havel":2, "haven":2, "havenless":3, "havenward":3, "haver":2, "havers":2, "haverel":3, "haverhill":3, "havering":3, "haversian canal":5, "havre":2, "hawaii":3, "hawaiian":3, "hawaiian guitar":5, "hawarden":3, "haworth":2, "hayato":3, "hazan":2, "hazans":2, "hazanim":3, "hazel":2, "hazel":2, "hazelbelle":3, "hazelhen":3, "hazelly":3, "hazelnut":3, "hazelwood":3, "hazen":2, "hazier":3, "haziest":3, "hazily":3, "haziness":3, "hazlehurst":3, "hazleton":3, "hazor":2, "hazy":2, "hayne":3, "haynite":4, "hcf":1, "hcf":1, "hdbk":1, "hdqrs":1, "he'd":1, "he'll":1, "he's":1, "he-huckleberry":4, "he-man":1, "head":1, "head arrangement":4, "head collar":3, "head money":3, "head waiter":3, "head-hunting":2, "head-on":1, "heads":1, "headsman":2, "headache":2, "headachy":3, "headband":2, "headboard":2, "headbox":2, "headcheese":2, "headcloth":2, "headdress":2, "headed":2, "header":2, "headfast":2, "headfirst":2, "headfish":2, "headfishes":3, "headforemost":3, "headframe":2, "headgear":2, "headhunt":2, "headhunter":3, "headhunting":3, "heading":2, "headier":3, "headiest":3, "headily":3, "headlamp":2, "headland":2, "headland":2, "headledge":2, "headless":2, "headlessness":3, "headlight":2, "headlike":2, "headline":2, "headlined":2, "headliner":3, "headlining":3, "headlock":2, "headlong":2, "headlongness":3, "headlongwise":3, "headman":2, "headmaster":3, "headmasterly":4, "headmastership":4, "headmistress":3, "headmistress-ship":3, "headmost":2, "headnote":2, "headphone":2, "headphones":2, "headpiece":2, "headpin":2, "headquarter":3, "headquarters":3, "headrace":2, "headrail":2, "headreach":2, "headrest":2, "headrig":2, "headright":2, "headroom":2, "headsail":2, "headsaw":2, "headscarf":2, "headset":2, "headsheet":2, "headship":2, "headshrinker":3, "headspring":2, "headsquare":2, "headstall":2, "headstand":2, "headstay":2, "headstock":2, "headstone":2, "headstream":2, "headstrong":2, "headstrongly":3, "headstrongness":3, "headwaiter":3, "headward":2, "headwards":2, "headway":2, "headwaters":3, "headwind":2, "headword":2, "headwork":2, "headworker":3, "headworking":3, "heady":2, "heaf":1, "heal":1, "heald":1, "healdsburg":2, "healdton":2, "health":1, "health centre":3, "health physics":3, "health visitor":4, "healthful":2, "healthfully":3, "healthfulness":3, "healthier":3, "healthiest":3, "healthily":3, "healthiness":3, "healthward":2, "healthy":2, "healable":3, "healer":2, "healing":2, "healingly":3, "heap":1, "heaper":2, "heaping":2, "heapy":2, "hear":1, "hearken":2, "hearkener":3, "hearn":1, "hearne":1, "hearse":1, "hearselike":2, "hearst":1, "heart":1, "heart attack":3, "heart cherry":3, "heart failure":3, "heart murmur":3, "heart starter":3, "heart urchin":3, "heart-lung machine":3, "heart-rending":2, "heart-searching":2, "heart-stricken":2, "heart-warming":2, "heart-wholeness":2, "hearth":1, "hearthless":2, "hearthside":2, "hearthstead":2, "hearthstone":2, "hearts":1, "heartsease":2, "heartache":2, "heartaching":3, "heartbeat":2, "heartbreak":2, "heartbreaker":3, "heartbreaking":3, "heartbreakingly":4, "heartbroken":3, "heartbrokenly":4, "heartbrokenness":4, "heartburn":2, "heartburning":3, "hearted":2, "heartedly":3, "heartedness":3, "hearten":2, "heartener":3, "hearteningly":4, "heartfelt":2, "hearties":2, "hearting":2, "heartier":3, "heartiest":3, "heartily":3, "heartiness":3, "heartland":2, "heartless":2, "heartlessly":3, "heartlessness":3, "heartrending":3, "heartrendingly":4, "heartshake":2, "heartsick":2, "heartsickening":4, "heartsickness":3, "heartsome":2, "heartsomely":3, "heartsomeness":3, "heartsore":2, "heartstrings":2, "heartthrob":2, "heartwarming":3, "heartwood":2, "heartworm":2, "hearty":2, "hearable":3, "hearer":2, "hearing":2, "hearing aid":3, "hearingless":3, "hearsay":2, "hearsay evidence":5, "heat":1, "heat barrier":4, "heat capacity":5, "heat content":3, "heat engine":3, "heat exchanger":4, "heat exhaustion":4, "heat lightning":3, "heat prostration":4, "heat seeker":3, "heat-island":2, "heath":1, "heath":1, "heath robinson":4, "heathberry":3, "heathbird":2, "heather":2, "heather grass":3, "heathered":2, "heatheriness":4, "heathery":3, "heathfowl":2, "heathier":3, "heathiest":3, "heathless":2, "heathlike":2, "heathy":2, "heatable":3, "heated":2, "heatedly":3, "heatedness":3, "heater":2, "heatful":2, "heating element":5, "heatless":2, "heatlike":2, "heatstroke":2, "heaume":1, "heave":1, "heaves":1, "heaveless":2, "heaven":2, "heaven-born":2, "heaven-sent":2, "heavenless":3, "heavenliness":4, "heavenly":3, "heavenward":3, "heavenwards":3, "heavenwardly":4, "heavenwardness":4, "heaver":2, "heavies":2, "heaving":2, "heavier":3, "heavier-than-air":3, "heaviest":3, "heavily":3, "heaviness":3, "heaviside":3, "heaviside layer":5, "heavy":2, "heavy earth":3, "heavy hydrogen":5, "heavy metal":4, "heavy oil":3, "heavy spar":3, "heavy water":4, "heavy-armed":2, "heavy-bearded":3, "heavy-duty":3, "heavy-footed":3, "heavy-handed":3, "heavy-handedness":4, "heavy-hearted":3, "heavy-heartedly":4, "heavy-heartedness":4, "heavy-laden":3, "heavyset":3, "heavyweight":3, "healey":2, "healy":2, "heathen":2, "heathendom":3, "heathenesse":3, "heathenhood":3, "heathenise":3, "heathenised":3, "heathenish":3, "heathenishly":4, "heathenishness":4, "heathenism":3, "heathenising":4, "heathenize":3, "heathenized":3, "heathenizing":4, "heathenness":3, "heathenry":3, "heathenship":3, "heb":1, "heb-sed":1, "hebe":1, "hebr":1, "hebbel":2, "hebbronville":3, "hebdomadal":4, "hebdomadal council":6, "hebdomadally":5, "hebdomadaries":5, "hebdomadary":5, "hebdomadary":5, "hebdomad":3, "hebetate":3, "hebetated":4, "hebetating":4, "hebetation":4, "hebetative":4, "hebetude":3, "hebetudinous":5, "hebrides":3, "hebridean":4, "hebron":2, "hecht":1, "hecht":1, "hechsher":2, "hechshers":2, "hechsherim":3, "heck":1, "heckelphone":3, "heckle":2, "heckler":2, "hecaleius":4, "hecamede":4, "hecataean":4, "hecate":3, "hecatean":4, "hecatomb":3, "hecatoncheires":5, "hecatonchires":5, "hecatonstylon":5, "hectare":2, "hectic":2, "hecticly":3, "hecticness":3, "hectically":4, "hectography":4, "hector":2, "hector":2, "hectocotyli":5, "hectocotylus":5, "hectogram":3, "hectogramme":3, "hectograph":3, "hectographic":4, "hectoliter":4, "hectolitre":4, "hectometer":4, "hectometre":4, "hectostere":3, "hecuba":3, "heder":1, "hedge":1, "hedge garlic":3, "hedge hyssop":3, "hedge sparrow":3, "hedgehog":2, "hedgehoggy":3, "hedgehop":2, "hedgehopped":2, "hedgehopper":3, "hedgehopping":3, "hedgeless":2, "hedgerow":2, "hedger":2, "hedging":2, "hedgier":3, "hedgiest":3, "hedgy":2, "hedda":2, "heddie":2, "heddle":2, "hedenbergite":4, "hedie":2, "hedone":3, "hedwig":2, "hedy":2, "heed":1, "heeder":2, "heedful":2, "heedfully":3, "heedfulness":3, "heedless":2, "heedlessly":3, "heedlessness":3, "heel":1, "heeled":1, "heelball":2, "heeler":2, "heeling":2, "heelless":2, "heelpiece":2, "heelplate":2, "heelpost":2, "heeltap":2, "heep":1, "heer":1, "heerlen":2, "heeze":1, "heezing":2, "heebie-jeebies":3, "heehaw":2, "heenan":2, "heft":1, "hefter":2, "heftier":3, "heftiest":3, "hefty":2, "heftily":3, "heftiness":3, "hegemonic":4, "hegira":3, "heh":1, "heifer":2, "heigh":1, "height":1, "height-to-paper":2, "heighth":1, "heighten":2, "heightener":3, "heilbronn":2, "heimdal":2, "heimdall":2, "heimdallr":2, "heimish":2, "heinie":2, "heinrich":2, "heir":1, "heir apparent":4, "heir presumptive":4, "heirdom":2, "heiress":2, "heirless":2, "heirloom":2, "heirship":2, "heis":1, "heist":1, "heister":2, "heitler":2, "heize":1, "heizing":2, "heian":2, "heidegger":3, "heidelberg":3, "heidelberg man":4, "heidenstam":3, "heidrun":2, "heiduc":2, "heiduk":2, "heifetz":2, "heijo":2, "heiligenschein":4, "heiligenscheine":5, "heilungkiang":3, "heine":2, "heinie":2, "heinous":2, "heinously":3, "heinousness":3, "heisenberg":3, "heisenberg uncertainty principle":10, "heitiki":3, "hejira":3, "hekhsher":2, "hekhshers":2, "hekhsherim":3, "hekataean":4, "hekate":3, "hekatean":4, "hekla":2, "hektare":2, "hektogram":3, "hektograph":3, "hektoliter":4, "hektometer":4, "hektostere":3, "hel":1, "held":1, "hell":1, "hell":1, "hell's angel":3, "hell-raiser":2, "hellbender":3, "hellbent":2, "hellbox":2, "hellbroth":2, "hellcat":2, "helldiver":3, "heller":2, "hellery":3, "hellfire":2, "hellgrammite":3, "hellhole":2, "hellhound":2, "hellish":2, "hellishly":3, "hellishness":3, "hellkite":2, "hellman":2, "helluva":3, "helm":1, "helmed":1, "helmsman":2, "helmsmanship":3, "helmholtz":2, "helmholtz function":4, "helmholtzian":4, "helmless":2, "help":1, "helpable":3, "helper":2, "helpful":2, "helpfully":3, "helpfulness":3, "helping":2, "helping hand":3, "helpingly":3, "helpless":2, "helplessly":3, "helplessness":3, "helpmann":2, "helpmate":2, "helpmeet":2, "helve":1, "helver":2, "helving":2, "hela":2, "helda":2, "heldentenor":4, "heldentenors":4, "heldententenore":6, "heldentenor":4, "helen":2, "helens":2, "helena":3, "helga":2, "helgoland":3, "helier":2, "helical":3, "helical gear":4, "helically":4, "helicaon":4, "helice":3, "helices":3, "helichrysum":4, "helicline":3, "helicoid":3, "helicoidal":4, "helicoidally":5, "helicon":3, "helicon":3, "helicopter":4, "helicopter gunship":6, "helicograph":4, "heliconian":5, "heligoland":4, "helipad":3, "heliport":3, "helladic":3, "hellas":2, "helladian":4, "helle":2, "helleborin":4, "hellen":2, "hellene":2, "hellenic":3, "hellenise":3, "hellenised":3, "hellenism":3, "hellenist":3, "helleniser":4, "hellenising":4, "hellenistic":4, "hellenistical":5, "hellenistically":6, "hellenize":3, "hellenized":3, "hellenizer":4, "hellenizing":4, "hellenically":5, "hellenization":5, "heller":2, "hellertown":3, "helles":2, "hellespont":3, "hellespontine":4, "hellespontus":4, "hellebore":3, "helleborine":4, "helleborein":5, "hellenian":4, "hellion":2, "hello":2, "helloed":2, "helloing":3, "helmand":2, "helmet":2, "helmeted":3, "helmetlike":3, "helminth":2, "helminthic":3, "helminthiasis":5, "helminthoid":3, "helminthologist":5, "helminthology":5, "helminthological":6, "helmont":2, "helot":2, "helotage":3, "helotism":3, "helotry":3, "helsa":2, "helsingborg":3, "helsingfors":3, "helsingo":3, "helsingr":4, "helsinki":3, "helter-skelter":3, "helterskelteriness":6, "helvellyn":3, "helvetic":3, "helvetia":3, "helvetian":3, "helvetii":4, "helvtius":4, "hem":1, "heme":1, "hemiscotosis":2, "hemoglobin":2, "hemp":1, "hemp agrimony":5, "hemp nettle":3, "hempen":2, "hemplike":2, "hempseed":2, "hempstead":2, "hempy":2, "hemans":2, "hematal":3, "hematein":4, "hemathermal":4, "hematin":3, "hematine":3, "hematinic":4, "hematite":3, "hematitic":4, "hematocryal":5, "hematogenous":5, "hematologist":5, "hematology":5, "hematoblast":4, "hematocele":4, "hematocrit":4, "hematocryal":5, "hematocyst":4, "hematocyte":4, "hematogenesis":6, "hematologic":5, "hematoma":4, "hematomas":4, "hematomata":5, "hematophyte":4, "hematopoietic":6, "hematopoiesis":6, "hematoporphyria":7, "hematosis":4, "hematothermal":5, "hematozoa":5, "hematozoal":5, "hematozoic":5, "hematozoon":5, "hemel hempstead":4, "hemelytral":4, "hemelytron":4, "hemera":3, "hemeralopic":5, "hemeralopia":6, "hemerocallis":5, "hemingway":3, "hemiacetal":5, "hemialgia":5, "hemianopsia":6, "hemianopsia":6, "hemianopia":6, "hemicellulose":5, "hemichordate":4, "hemicranic":4, "hemicrania":5, "hemicyclium":5, "hemicycle":4, "hemicyclic":4, "hemidemisemiquaver":8, "hemielytron":5, "hemiglobin":4, "hemihedral":4, "hemihedrally":5, "hemihydrate":4, "hemihydrated":5, "hemikaryon":5, "hemikaryotic":6, "hemimetabolic":6, "hemimetabolism":6, "hemimetabolous":6, "hemimetaboly":6, "hemimorphic":4, "hemimorphism":4, "hemimorphite":4, "hemimorphy":4, "hemiopic":4, "hemiola":4, "hemiolia":5, "hemiopia":5, "hemiparasite":5, "hemiparetic":5, "hemiparesis":5, "hemiplegic":4, "hemiplegia":5, "hemipod":3, "hemipode":3, "hemiscotosis":5, "hemisphere":3, "hemispheric":4, "hemispherical":5, "hemispherically":6, "hemispheroid":4, "hemispheroidal":5, "hemistich":3, "hemiterpene":4, "hemitrope":3, "hemitropic":4, "hemitropism":4, "hemizygote":4, "hemizygous":4, "hemline":2, "hemlock":2, "hemmer":2, "hemming":2, "hemoptysis":4, "hemorrhage":3, "hemorrhaged":3, "hemorrhagic":4, "hemorrhaging":4, "hemorrhoid":3, "hemorrhoids":3, "hemorrhoidectomy":6, "hemorrhoidal":4, "hemstitch":2, "hemstitcher":3, "hen":1, "hen harrier":4, "hen party":3, "hen-and-chickens":2, "hence":1, "henceforth":2, "henceforward":3, "hench":1, "henchman":2, "henchmanship":3, "henge":1, "hengelo":3, "hensley":2, "henslowe":2, "hent":1, "henting":2, "henbane":2, "henbit":2, "hencoop":2, "hendecagon":4, "hendecahedral":5, "hendecahedron":5, "hendecasyllabic":6, "hendecasyllable":6, "henderson":3, "hendersonville":4, "hendecagonal":5, "hendiadys":4, "hendon":2, "hendrick":2, "hendricks":2, "hendrix":2, "henequen":3, "henequin":3, "hengest":2, "hengist":2, "henhawk":2, "henhouse":2, "henhouses":3, "heniquen":3, "henley":2, "henley-on-thames":2, "henlike":2, "henna":2, "hennaed":2, "hennaing":3, "henneries":3, "hennery":3, "hennepin":3, "hennig":2, "hennin":2, "hennish":2, "henotheism":4, "henotheist":4, "henotheistic":5, "henpeck":2, "henri":2, "henrik":2, "henrietta":4, "henrietta":4, "henrietta maria":7, "henrika":3, "henry":2, "henry":2, "henry i":3, "henry ii":3, "henry iii":3, "henry iv":3, "henry the navigator":7, "henry v":3, "henry vi":3, "henry vii":3, "henry viii":3, "henry's law":3, "henryk":2, "henryetta":4, "henryson":3, "henty":2, "henze":2, "hep":1, "hephzibah":3, "heparin":3, "heparinize":4, "heparinized":4, "heparinizing":5, "heparinization":6, "heparinoid":4, "hepatatrophy":5, "hepatatrophia":6, "hepatectomize":5, "hepatectomized":5, "hepatectomizing":6, "hepatectomy":5, "hepatise":3, "hepatised":3, "hepatising":4, "hepatize":3, "hepatized":3, "hepatizing":4, "hepatitis":4, "hepatization":5, "hepatoscopy":5, "hepatotoxic":5, "hepatotoxin":5, "hepburn":2, "hepcat":2, "hepplewhite":3, "hepsiba":3, "heptad":2, "heptagonal":4, "heptamerous":4, "heptameter":4, "heptane":2, "heptangular":4, "heptarch":2, "heptarchal":3, "heptarchic":3, "heptarchist":3, "heptarchical":4, "heptarchy":3, "heptavalent":4, "heptachlor":3, "heptachord":3, "heptadecanoic acid":8, "heptagon":3, "heptahedral":4, "heptahedrical":5, "heptahedron":4, "heptahydrate":4, "heptahydrated":5, "heptametrical":5, "heptanone":3, "heptastich":3, "heptastyle":3, "heptastylar":4, "heptastylos":4, "heptasyllabic":5, "heptasyllable":5, "heptateuch":3, "heptavalent":4, "heptode":2, "heptose":2, "hepworth":2, "hepzibah":3, "her":1, "her'n":1, "herb":1, "herb":1, "herb bennet":3, "herb christopher":4, "herb gerard":3, "herb paris":3, "herb robert":3, "herbage":2, "herbal":2, "herbalist":3, "herbicide":3, "herbier":3, "herbiest":3, "herbless":2, "herblike":2, "herby":2, "herd":1, "herd instinct":3, "herdsman":2, "herder":2, "herdman":2, "herdwick":2, "here":1, "here's":1, "hereafter":3, "hereat":2, "hereabout":3, "hereabouts":3, "hereby":2, "herein":2, "hereinafter":4, "hereinbefore":4, "hereinto":3, "hereof":2, "hereon":2, "hereto":2, "heretofore":3, "hereunder":3, "hereunto":3, "hereupon":3, "herewith":2, "herl":1, "herm":1, "herm":1, "hern":1, "herne":1, "herndon":2, "hernshaw":2, "herp":1, "herr":1, "herrnhuter":3, "herrmann":2, "hers":1, "hersh":1, "herstmonceux":3, "hertz":1, "hertz":1, "hertzes":2, "hertzian wave":4, "hertzsprung-russell diagram":6, "hertford":2, "hertfordshire":3, "hertzog":2, "herald":2, "heralds' college":4, "heraldist":3, "heraldry":3, "heracleidae":4, "heracles":3, "heraclea":4, "heraclean":4, "heraclid":3, "heraclitic":4, "heraclidae":4, "heraclidan":4, "heraclitean":5, "heracliteanism":6, "heraclitus":4, "heraclius":4, "herakles":3, "heraklean":4, "heraklid":3, "heraklidan":4, "herbaged":2, "herbalistic":4, "herbart":2, "herbaria":4, "herbarial":4, "herbarium":4, "herbariums":4, "herbartian":4, "herbartianism":5, "herbaceous":3, "herbaceous border":5, "herbaceously":4, "herbarize":3, "herbarized":3, "herbarizing":4, "herbert":2, "herbivore":3, "herbivorous":4, "herbicidal":4, "herbivore":3, "herbivority":5, "herblock":2, "herborist":3, "herborize":3, "herborized":3, "herborizing":4, "herceius":3, "hercegovina":5, "herculanensian":5, "herculaneum":5, "hercules":3, "hercules beetle":5, "hercules'-club":3, "herculean":4, "herculis":3, "hercynian":4, "hercyna":3, "herder":2, "herdic":2, "hereditament":5, "hereford":3, "hereford and worcester":6, "herefordshire":4, "heresy":3, "heretic":3, "hergesheimer":4, "herington":3, "heritage":3, "heritance":3, "heritability":6, "heritable":4, "heritably":4, "herigonius":5, "heriot":3, "heritor":3, "heritress":3, "herkimer":3, "herma":2, "herma":2, "herman":2, "hermann":2, "hermannstadt":3, "hermaphrodism":4, "hermaphrodite":4, "hermaphrodite brig":5, "hermaphroditic":5, "hermaphroditism":5, "hermaphroditically":7, "hermaphroditus":5, "hermes":2, "hermes":2, "hermes trismegistus":6, "hermetic":3, "hermetic":3, "hermetical":4, "hermetically":5, "hermeticism":4, "hermeneutic":4, "hermeneutics":4, "hermeneutical":5, "hermeneutically":6, "hermetism":3, "hermetist":3, "hermiston":3, "hermit":2, "hermit crab":3, "hermite":2, "hermitage":3, "hermitage":3, "hermitic":3, "hermitish":3, "hermitian conjugate":7, "hermitian matrix":6, "hermitical":4, "hermitically":5, "hermitlike":3, "hermitry":3, "hermitship":3, "hermia":3, "hermina":3, "hermine":3, "hermione":4, "hermitage":3, "hermod":2, "hermon":2, "hermoupolis":4, "hermosillo":4, "hernando":3, "herne":2, "hernia":3, "herniae":3, "hernial":3, "hernias":3, "herniated":4, "herniorrhaphy":5, "herniotomy":5, "hernioplasty":5, "hernndez":4, "herod":2, "herod antipas":5, "herod agrippa i":6, "heron":2, "heron's-bill":2, "heronry":3, "heronsew":3, "heroin":3, "heroine":3, "heroism":3, "herpangina":4, "herpes":2, "herpes labialis":6, "herpes simplex":4, "herpes zoster":4, "herpetic":3, "herpetologist":5, "herpetology":5, "herpetologic":5, "herpetologically":7, "herquein":3, "herren":2, "herrenvolk":3, "herrenvlker":5, "herrera":3, "herrick":2, "herried":2, "herrin":2, "herring":2, "herring gull":3, "herringbone":3, "herringbone bond":4, "herringbone gear":4, "herringlike":3, "herriot":2, "herriot":3, "herry":2, "herrying":3, "herschel":2, "herse":2, "herself":2, "hersey":2, "hershel":2, "hershey":2, "hersilia":4, "herskowitz":3, "herta":2, "herter":2, "hertha":2, "hertogenbosch":4, "hertzog":2, "hervey":2, "herzegovina":5, "herzegovinian":6, "herzl":2, "herzog":2, "heshvan":2, "hess":1, "hesse":1, "hesse-nassau":2, "hessite":2, "hest":1, "hesiod":3, "hesiodus":4, "hesitance":3, "hesitant":3, "hesitantly":4, "hesitancy":4, "hesitate":3, "hesitated":4, "hesitater":4, "hesitating":4, "hesitatingly":5, "hesitation":4, "hesitative":4, "hesitatively":5, "hesitator":4, "hesper":2, "hespera":3, "hespere":3, "hesperidia":5, "hesperidium":5, "hesperis":3, "hesperia":4, "hesperidate":4, "hesperides":4, "hesperidin":4, "hesperinos":4, "hesperornis":4, "hesperus":3, "hesperian":4, "hesse":2, "hessen":2, "hessen-nassau":2, "hessian":2, "hessite":2, "hessian":3, "hessian":3, "hessian boots":4, "hessian fly":4, "hessonite":3, "hester":2, "hestia":3, "hesychast":3, "hesychastic":4, "het":1, "heth":1, "hetaeristic":4, "hetero":3, "heterochthonous":5, "heteroecious":4, "heteroeciously":5, "heteroecism":4, "heterogamous":5, "heterogamy":5, "heterogenous":5, "heterogeny":5, "heterogonous":5, "heterogonously":6, "heterogony":5, "heterography":5, "heterogynous":5, "heterologous":5, "heterology":5, "heterolysis":5, "heteromerous":5, "heteronomous":5, "heteronomously":6, "heteronomy":5, "heteronymous":5, "heteronymously":6, "heterophony":5, "heteropteran":5, "heteropterous":5, "heteroptics":4, "heterosporous":5, "heterosporous":5, "heterospory":5, "heterostracan":5, "heterotopy":5, "heterotrichous":5, "heteroaromatic":7, "heteroauxin":5, "heterocercal":5, "heterocercality":7, "heterochrome":4, "heterochromatic":6, "heterochromatin":6, "heterochromatism":6, "heterochromous":5, "heterochromosome":6, "heteroclite":4, "heteroclitic":5, "heterocycle":5, "heterocyclic":5, "heterodactyl":5, "heterodactylous":6, "heterodont":4, "heterodox":4, "heterodoxies":5, "heterodoxly":5, "heterodoxy":5, "heterodyne":4, "heterodyned":4, "heterodyning":5, "heterofermentative":7, "heterogamete":5, "heterogenesis":6, "heterogenic":5, "heterogenous":5, "heterogenetic":6, "heterogenetically":8, "heterogeneity":7, "heterogeneous":6, "heterogeneously":7, "heterogeneousness":7, "heterogonic":5, "heterograft":4, "heterographic":5, "heterokinesia":6, "heterolecithal":6, "heterolytic":5, "heteromorphic":5, "heteromorphism":5, "heteromorphous":5, "heteromorphy":5, "heteronym":4, "heteroousian":6, "heterophil":4, "heterophile":4, "heterophilic":5, "heterophonic":5, "heterophoric":5, "heterophoria":6, "heterophyllous":5, "heterophylly":5, "heterophyte":4, "heteroplastic":5, "heteroplasty":5, "heteropolar":5, "heteropolarity":7, "heteroscedasticity":8, "heterosexual":6, "heterosexuality":8, "heterosis":4, "heterosphere":4, "heterostyled":4, "heterostylous":5, "heterostyly":5, "heterotactic":5, "heterotactous":5, "heterotaxic":5, "heterotaxis":5, "heterotaxia":6, "heterotelic":5, "heterotelism":5, "heterothallic":5, "heterothallism":5, "heterotopic":5, "heterotopia":6, "heterotrich":4, "heterotroph":4, "heterotrophic":5, "heterotypic":5, "heterotypical":6, "heterozygosity":7, "heterozygote":5, "heterozygotic":6, "heterozygous":5, "heterozygosis":6, "heterousian":7, "hetman":2, "hetmanate":3, "hetmanship":3, "hettie":2, "hetty":2, "heugh":1, "heulandite":3, "heuneburg":3, "heuristic":3, "heuristically":5, "hew":1, "hew":1, "hewn":1, "hewable":3, "hewer":2, "hewett":2, "hewette":2, "hewing":2, "hewitt":2, "hewlett":2, "hex":1, "hexad":2, "hexadic":3, "hexagonal":4, "hexagonally":5, "hexameral":4, "hexamerism":4, "hexameron":4, "hexamerous":4, "hexameral":4, "hexameter":4, "hexane":2, "hexangular":4, "hexangularly":5, "hexapodous":4, "hexapody":4, "hexarchy":3, "hexastichon":4, "hexabasic":4, "hexachlorethane":5, "hexachloride":4, "hexachlorocyclohexane":8, "hexachloroethane":6, "hexachlorophene":5, "hexachord":3, "hexacosanoic acid":8, "hexadecimal":5, "hexadecimal notation":8, "hexadecane":4, "hexaemeric":5, "hexaemeron":5, "hexafluoride":5, "hexagon":3, "hexagram":3, "hexagrammoid":4, "hexahemeric":5, "hexahemeron":5, "hexahedral":4, "hexahedron":4, "hexahydrate":4, "hexahydrated":5, "hexahydric":4, "hexahydroxy":5, "hexahydroxycyclohexane":9, "hexahydrobenzene":6, "hexahydrothymol":6, "hexamethylene":5, "hexamethylenetetramine":8, "hexametric":4, "hexamethonium":6, "hexamine":3, "hexanaphthene":4, "hexanitrate":4, "hexanoic acid":6, "hexapartite":4, "hexapla":3, "hexaplar":3, "hexaplaric":4, "hexapod":3, "hexapodic":4, "hexastich":3, "hexastichic":4, "hexastyle":3, "hexastylar":4, "hexastylos":4, "hexasyllabic":5, "hexasyllable":5, "hexateuch":3, "hexateuchal":4, "hexavalent":4, "hexer":2, "hexode":2, "hexone":2, "hexose":2, "hexosamine":4, "hexobarbital":5, "hexosan":3, "hexyl":2, "hexylic":3, "hexylresorcinol":6, "hey":1, "heyday":2, "heydey":2, "heyduc":2, "heyduck":2, "heyduke":2, "heyerdahl":3, "heymans":2, "heyse":2, "heysham":2, "heyward":2, "heywood":2, "hezekiah":4, "hebe":2, "heber":2, "hebetic":3, "hebephrenic":4, "hebephrenia":5, "hebraic":3, "hebraise":3, "hebraised":3, "hebraism":3, "hebraist":3, "hebraiser":4, "hebraising":4, "hebraistic":4, "hebraistical":5, "hebraistically":6, "hebraize":3, "hebraized":3, "hebraizer":4, "hebraizing":4, "hebraically":5, "hebraization":5, "hebrew":2, "hebrew calendar":5, "hebrews":2, "hebridian":4, "hebron":2, "hecabe":3, "heder":2, "heders":2, "hedin":2, "hedjaz":2, "hedonic":3, "hedonics":3, "hedonism":3, "hedonist":3, "hedonically":5, "hedonistic":4, "hedonistically":6, "hegari":3, "hegel":2, "hegeleos":4, "hegemone":4, "hegemonist":4, "hegemony":4, "hegelian":4, "hegelian dialectic":8, "hegelianism":5, "hegira":3, "hegumen":3, "hegumenos":4, "hejaz":2, "hejira":3, "helain":2, "helaine":2, "helene":2, "helena":3, "helenor":3, "heli":2, "heliced":2, "helix":2, "heliac":3, "heliaea":4, "heliaean":4, "helianthaceous":5, "helianthus":4, "helianthuses":5, "heliast":3, "heliastic":4, "heliacal":4, "heliacal rising":6, "heliacally":5, "heliadae":4, "heliades":4, "helio":3, "heliographer":5, "heliography":5, "heliolater":5, "heliolatrous":5, "heliolatry":5, "heliometer":5, "heliopolis":5, "helios":3, "helioscopy":5, "heliotropin":5, "heliotropism":5, "heliocentric":5, "heliocentric parallax":8, "heliocentricity":7, "heliocentrically":7, "heliochrome":4, "heliochromy":5, "heliodor":4, "heliogabalus":6, "heliogram":4, "heliograph":4, "heliographic":5, "heliographically":7, "heliogravure":5, "heliolithic":5, "heliometric":5, "heliometrically":7, "helioscope":4, "helioscopic":5, "heliostat":4, "heliostatic":5, "heliotactic":5, "heliotaxis":5, "heliotherapy":6, "heliotrope":4, "heliotropic":5, "heliotropically":7, "heliotropin":5, "heliotype":4, "heliotyped":4, "heliotypic":5, "heliotyping":5, "heliotypically":7, "heliozoan":5, "heliozoic":5, "helium":3, "helius":3, "helonia":4, "helyne":2, "hemagglutinate":5, "hemagglutinative":6, "hemagglutinate":5, "hemagglutinated":6, "hemagglutinating":6, "hemagglutination":6, "hemagglutinin":5, "hemal":2, "hemangioma":5, "hemangiomas":5, "hemangiomata":6, "hematic":3, "hematoblast":4, "hemachrome":3, "hemacytometer":6, "hemagog":3, "hemagogue":3, "hemagogic":4, "hemanalysis":5, "hematemesis":5, "hematein":4, "hematoid":3, "hematolysis":5, "hematoxylic":5, "hematoxylin":5, "hematoma":4, "hematosis":4, "hematozoon":5, "hematuric":4, "hematuria":5, "hemerasia":4, "hemic":2, "hemin":2, "hemipodan":4, "hemiptera":4, "hemipteran":4, "hemipteron":4, "hemipterous":4, "hemistichal":4, "hemithea":4, "hemitropy":4, "hemoid":2, "hemolysin":4, "hemolysis":4, "hemophilus":4, "hemoptysis":4, "hemostasis":4, "hemotrophe":4, "hemoblast":3, "hemochrome":3, "hemochromatotic":6, "hemochromatosis":6, "hemocoel":3, "hemoconcentration":6, "hemocyte":3, "hemocyanin":5, "hemocytometer":6, "hemocytoblast":5, "hemocytoblastic":6, "hemodia":4, "hemodialysis":6, "hemodialyzer":6, "hemodynamic":5, "hemodynamics":5, "hemoflagellate":5, "hemofuscin":4, "hemogenia":5, "hemoglobic":4, "hemoglobin":4, "hemoglobinous":5, "hemoglobinuric":6, "hemoglobinuria":7, "hemogram":3, "hemolytic":4, "hemolysin":4, "hemophile":3, "hemophilic":4, "hemophilia":5, "hemophiliac":5, "hemophilioid":5, "hemophobia":5, "hemopoiesis":5, "hemosiderin":5, "hemosiderotic":6, "hemosiderosis":6, "hemostat":3, "hemostatic":4, "hemostasia":4, "hemotherapeutics":6, "hemotherapy":5, "hemothorax":4, "hemotoxic":4, "hemotoxin":4, "hemotrophic":4, "henie":2, "henioche":4, "henoch":2, "heortology":5, "heortological":6, "hepar":2, "hepatic":3, "hepatica":4, "hepaticoenterostomy":9, "hephaestus":3, "hephaistos":3, "hera":2, "heraea":3, "heraldic":3, "heraldically":5, "herat":2, "herakleion":4, "heraklion":4, "here":2, "hereditarianism":7, "hereditarily":6, "hereditariness":6, "hereditary":5, "hereditability":7, "hereditable":5, "hereditably":5, "hereditist":4, "heredity":4, "herem":2, "heres":2, "heretical":4, "heretically":5, "hereticalness":5, "heredes":3, "heredia":3, "herero":3, "heresiarch":4, "heresimach":4, "heresiographer":6, "heresiography":6, "heresiologist":6, "heresiology":6, "hereward":3, "hering":2, "herisau":3, "hero":2, "hero":2, "hero worship":4, "hero-worship":3, "hero-worshiped":3, "hero-worshipped":3, "hero-worshiping":4, "hero-worshipping":4, "herodotus":4, "heron":2, "herophile":4, "herophilus":4, "heros":2, "herodian":4, "herodias":4, "heroic":3, "heroic age":4, "heroic couplet":5, "heroic stanza":5, "heroic tenor":5, "heroic verse":4, "heroics":3, "heroicity":5, "heroicness":4, "heroical":4, "heroically":5, "heroicalness":5, "herolike":3, "heroworshipper":5, "hesiod":3, "hesiodic":4, "hesione":4, "hetaera":3, "hetaerae":3, "hetaeric":3, "hetaerism":3, "hetaerist":3, "hetaira":3, "hetairai":3, "hetairism":3, "hetairist":3, "hevea":3, "hevelius":3, "hevesy":3, "hgt":1, "hhd":1, "hi-fi":1, "hibbing":2, "hic":1, "hic jacet":3, "hichens":2, "hick":1, "hicks":1, "hicksite":2, "hicksville":2, "hickey":2, "hickok":2, "hickory":3, "hickory":3, "hickwall":2, "hiccup":2, "hiccupped":2, "hiccuping":3, "hiccupping":3, "hicetaon":4, "hid":1, "hide":1, "hideaway":3, "hidebound":2, "hideboundness":3, "hideless":2, "hideout":2, "hidage":2, "hidable":3, "hidden":2, "hiddenite":3, "hiddenly":3, "hiddenness":3, "hided":2, "hider":2, "hidey-hole":2, "hideosity":5, "hideous":3, "hideously":4, "hideousness":4, "hiding":2, "hidropoietic":5, "hidropoiesis":5, "hidy-hole":2, "hie":1, "hieing":2, "hieland":2, "hielamon":3, "high":1, "high altar":3, "high comedy":4, "high command":3, "high commissioner":5, "high explosive":4, "high fashion":3, "high fidelity":5, "high frequency":4, "high german":3, "high places":3, "high relief":3, "high renaissance":4, "high season":3, "high tatra":3, "high table":3, "high treason":3, "high water":3, "high wycombe":3, "high-and-mighty":2, "high-colored":2, "high-explosive":3, "high-flier":2, "high-flyer":2, "high-frequency":3, "high-handed":2, "high-handedly":3, "high-hatter":2, "high-level":2, "high-level language":4, "high-minded":2, "high-mindedness":3, "high-octane":2, "high-pass filter":3, "high-power":2, "high-powered":2, "high-pressure":2, "high-pressured":2, "high-pressuring":3, "high-riser":2, "high-sounding":2, "high-spirited":3, "high-spiritedly":4, "high-spiritedness":4, "high-stepper":2, "high-stepping":2, "high-tension":2, "high-up":1, "high-water mark":3, "hight":1, "hightstown":2, "highball":2, "highbinder":3, "highborn":2, "highboy":2, "highbred":2, "highbrow":2, "highbrowed":2, "highbrowism":3, "highchair":2, "highdaddy":3, "higher criticism":5, "higher education":6, "higher mathematics":6, "higher-up":2, "highest common factor":6, "highet":2, "highfalutin":4, "highfalutin'":4, "highfaluting":4, "highflier":3, "highflyer":3, "highflying":3, "highhanded":3, "highhandedly":4, "highhandedness":4, "highholder":3, "highhole":2, "highjack":2, "highjacker":3, "highland":2, "highland":2, "highland cattle":4, "highland fling":3, "highland region":4, "highlands":2, "highlander":3, "highlife":2, "highlight":2, "highlighted":3, "highlighting":3, "highline":2, "highlow":2, "highly":2, "highly strung":3, "highness":2, "highness":2, "highroad":2, "highspire":2, "hightail":2, "highty-tighty":3, "highveld":2, "highway":2, "highway code":3, "highway robbery":5, "highwayman":3, "highwood":2, "higginsville":3, "higginson":3, "higgle":2, "higgler":2, "higgledy-piggledy":5, "hih":1, "hiiumaa":3, "hijra":2, "hijrah":2, "hike":1, "hiker":2, "hiking":2, "hilch":1, "hill":1, "hill":1, "hill myna":3, "hill station":3, "hills":1, "hillsboro":3, "hillsborough":3, "hillsdale":2, "hillbilly":3, "hiller":2, "hillfort":2, "hillier":3, "hilliest":3, "hilliness":3, "hillman":2, "hillock":2, "hillocked":2, "hillocky":3, "hillside":2, "hillside":2, "hillsite":2, "hilltop":2, "hilltopped":2, "hilltopper":3, "hilltopping":3, "hilly":2, "hillyer":2, "hilt":1, "hiltless":2, "hilaira":4, "hilarus":3, "hilary":3, "hilary of poitiers":6, "hilary term":4, "hilbert":2, "hilda":2, "hildesheim":3, "hildebrand":3, "hildebrandine":4, "hildebrandian":5, "hildegard":3, "hildegarde":3, "hilding":2, "hilla":2, "hillard":2, "hillary":3, "hillel":2, "hillery":3, "hilliard":2, "hillingdon":3, "hillis":2, "hilliard":3, "hillo":2, "hilloa":2, "hilloaed":2, "hilloaing":3, "hilloed":2, "hilloing":3, "hilton":2, "hilversum":3, "him":1, "him":1, "himmler":2, "hims":1, "himalaya":4, "himalayan":4, "himalayas":4, "himself":2, "himyarite":3, "himyaritic":4, "hin":1, "hinckley":2, "hind":1, "hind":1, "hindbrain":2, "hinder":2, "hindermost":3, "hindfell":2, "hindgut":2, "hindmost":2, "hindquarter":3, "hindsight":2, "hindward":2, "hines":1, "hinesville":2, "hinge":1, "hingeless":2, "hingelike":2, "hinging":2, "hint":1, "hinter":2, "hindarfjall":3, "hindenburg":3, "hindenburg line":4, "hinder":2, "hinderer":3, "hinderingly":4, "hindemith":3, "hindi":2, "hindi":2, "hindoo":2, "hindooism":3, "hindoostani":4, "hindostan":3, "hindostani":4, "hindrance":2, "hindu":2, "hindu kush":3, "hindus":2, "hinduism":3, "hinduize":3, "hinduized":3, "hinduizing":4, "hindustan":3, "hindustani":4, "hinnied":2, "hinny":2, "hinnying":3, "hinshelwood":3, "hinterland":3, "hinton":2, "hiordis":2, "hip":1, "hip pocket":3, "hip-huggers":2, "hipped":1, "hipbone":2, "hiphuggers":3, "hiplength":2, "hipless":2, "hiplike":2, "hipparch":2, "hipparchus":3, "hippalectryon":5, "hippalus":3, "hipper":2, "hippest":2, "hippeastrum":4, "hippie":2, "hipping":2, "hippish":2, "hippias":3, "hippiatric":4, "hippiatrics":4, "hippiatrical":5, "hippiatrist":4, "hippier":3, "hippiest":3, "hippo":2, "hippo":2, "hippo regius":5, "hippocrates":4, "hippodamas":4, "hippolochus":4, "hippologist":4, "hippology":4, "hippolyta":4, "hippolyte":4, "hippolytus":4, "hippomedon":4, "hippomenes":4, "hipponous":4, "hippophagism":4, "hippophagist":4, "hippophagous":4, "hippophagy":4, "hippocampal":4, "hippocampus":4, "hippocras":3, "hippocratic":4, "hippocratic oath":5, "hippocrene":3, "hippocrenian":5, "hippocurius":5, "hippodrome":3, "hippodromic":4, "hippogriff":3, "hippogryph":3, "hippological":5, "hippophile":3, "hippopotami":5, "hippopotamus":5, "hippopotamuses":6, "hippopotamic":5, "hippothous":4, "hippus":2, "hippy":2, "hipshot":2, "hipster":2, "hipsters":2, "hire":1, "hire-purchase":2, "hireable":3, "hireling":2, "hirstie":2, "hirable":3, "hircine":2, "hirer":2, "hiring":2, "hirple":2, "hirsel":2, "hirsle":2, "hirsute":2, "hirsuteness":3, "hirsutism":3, "hirtellous":3, "hirudin":3, "hirudinea":5, "hirudinean":5, "his":1, "his'n":1, "hiss":1, "hiss":1, "hisser":2, "hissing":2, "hissingly":3, "hist":1, "histie":2, "hispanic":3, "hispaniola":4, "hispania":4, "hispanically":5, "hispanicise":4, "hispanicised":4, "hispanicism":4, "hispanicising":5, "hispanicize":4, "hispanicized":4, "hispanicizing":5, "hispanicization":6, "hispanism":3, "hispanist":3, "hispania":4, "hispanidad":4, "hispano":3, "hispid":2, "hispidity":4, "hispidulous":4, "hissarlik":3, "hisself":2, "histaminase":4, "histadrut":3, "histamin":3, "histamine":3, "histaminic":4, "histidin":3, "histidine":3, "histioid":3, "histiocyte":4, "histiocytic":5, "histogeny":4, "histographer":4, "histography":4, "histoid":2, "histologist":4, "histology":4, "histolysis":4, "histone":2, "historic":3, "historic episcopate":7, "historical":4, "historical linguistics":7, "historical materialism":9, "historical method":6, "historical present":6, "historical school":5, "historically":5, "historicalness":5, "historicism":4, "historicist":4, "histotomy":4, "histoblast":3, "histochemistry":5, "histochemical":5, "histochemically":6, "histogen":3, "histogenesis":5, "histogenetic":5, "histogenetically":7, "histogram":3, "histographic":4, "histographically":6, "histological":5, "histologically":6, "histolytic":4, "histomorphology":6, "histomorphological":7, "histomorphologically":8, "histopathologic":6, "histopathologist":6, "histopathology":6, "histophysiology":7, "histophysiological":8, "histoplasmosis":5, "historicity":5, "historied":3, "historian":4, "historiated":5, "historiographer":6, "historiographership":7, "historiography":6, "historiographic":6, "historiographically":8, "history":3, "histothrombin":4, "histotome":3, "histrionic":4, "histrionics":4, "histrionical":5, "histrionically":6, "histrionism":4, "hit":1, "hit-run":1, "hitch":1, "hitch-hiker":2, "hitchcock":2, "hitcher":2, "hitchhike":2, "hitchhiked":2, "hitchhiking":3, "hitching post":3, "hitchier":3, "hitchiest":3, "hitchily":3, "hitchiness":3, "hitchy":2, "hither":2, "hithermost":3, "hitherto":3, "hitherward":3, "hitherwards":3, "hitler":2, "hitlerism":3, "hitlerite":3, "hitless":2, "hittable":3, "hitter":2, "hitting":2, "hittite":2, "hittitology":5, "hive":1, "hives":1, "hiveless":2, "hivelike":2, "hiver":2, "hiving":2, "hialeah":4, "hiatal hernia":6, "hiatus":3, "hiatus hernia":6, "hiatuses":4, "hiawatha":4, "hiawatha":4, "hibachi":3, "hibernacle":4, "hibernaculum":5, "hibernal":3, "hibernate":3, "hibernated":4, "hibernating":4, "hibernation":4, "hibernator":4, "hibernia":4, "hibernian":4, "hibernianism":5, "hibernicise":4, "hibernicised":4, "hibernicism":4, "hibernicising":5, "hibernicize":4, "hibernicized":4, "hibernicizing":5, "hiberno-saxon":4, "hibiscus":3, "hibiscuses":4, "hidalgism":3, "hidalgo":3, "hidalgo":3, "hidalgoism":4, "hidatsa":3, "hideki":3, "hideyo":3, "hideyoshi":4, "hideyoshi toyotomi":8, "hidrotic":3, "hidrosis":3, "hiera":3, "hierarch":3, "hierarchal":4, "hierarchic":4, "hierarchise":4, "hierarchised":4, "hierarchism":4, "hierarchist":4, "hierarchising":5, "hierarchize":4, "hierarchized":4, "hierarchizing":5, "hierarchical":5, "hierarchically":6, "hierarchy":4, "hieratic":4, "hieratical":5, "hieratically":6, "hieracosphinx":5, "hieracosphinxes":6, "hieracosphinges":6, "hierocracy":5, "hierolatry":5, "hierologist":5, "hierology":5, "hieron":3, "hieronymus":5, "hierocratic":5, "hierodeacon":5, "hierodule":4, "hierodulic":5, "hieroglyph":4, "hieroglyphic":5, "hieroglyphics":5, "hieroglyphist":5, "hieroglyphical":6, "hieroglyphically":7, "hieroglyphologist":7, "hieroglyphology":7, "hierogram":4, "hierogrammat":5, "hierogrammate":5, "hierogrammatic":6, "hierogrammatist":6, "hierologic":5, "hieromonk":4, "hieronymic":5, "hieronymian":6, "hierophant":4, "hierophantic":5, "hierophantically":7, "hierurgical":5, "hierurgy":4, "hiemal":3, "hiemis":3, "hiera":3, "hieronymus":5, "hifalutin":4, "hijack":2, "hijacker":3, "hijaz":2, "hijinks":2, "hilaire":2, "hilarious":4, "hilariously":5, "hilariousness":5, "hilarity":4, "hilarius":4, "hilara":3, "hilo":2, "hilum":2, "hilus":2, "himatia":4, "himation":4, "himachal pradesh":5, "himeros":3, "himerus":3, "himeji":3, "hinayana":4, "hinayanist":4, "hiram":2, "hiragana":4, "hiranuma":4, "hiri motu":4, "hirohito":4, "hiroshige":4, "hiroshima":4, "hirundine":3, "hirudinoid":4, "hivite":2, "hjordis":2, "hkj":1, "hliod":1, "hmas":1, "hms":1, "hoad":1, "hoangho":2, "hoar":1, "hoard":1, "hoarder":2, "hoarding":2, "hoare":1, "hoarse":1, "hoarsely":2, "hoarseness":2, "hoarsen":2, "hoarser":2, "hoarsest":2, "hoarfrost":2, "hoarhound":2, "hoarier":3, "hoariest":3, "hoarily":3, "hoariness":3, "hoary":2, "hoary cress":3, "hoary-headed":3, "hoatching":2, "hoax":1, "hoaxer":2, "hoagie":2, "hoagy":2, "hob":1, "hobbes":1, "hobbesian":3, "hobbs":1, "hobber":2, "hobbema":3, "hobbing":2, "hobbism":2, "hobbist":2, "hobbistical":4, "hobble":2, "hobble skirt":3, "hobbler":2, "hobblebush":3, "hobbledehoy":4, "hobby":2, "hobby-horse":2, "hobbyhorse":3, "hobbyist":3, "hobbyless":3, "hobgoblin":3, "hoblike":2, "hobnail":2, "hobnailed":2, "hobnob":2, "hobnobbed":2, "hobnobbing":3, "hobson":2, "hobson's choice":3, "hobson-jobson":3, "hochheimer":3, "hochhuth":2, "hock":1, "hocker":2, "hocket":2, "hockey":2, "hocking":2, "hockle":2, "hockney":2, "hockshop":2, "hocktide":2, "hoccleve":2, "hod":1, "hod carrier":4, "hodge":1, "hodge":1, "hodgepodge":2, "hodgenville":3, "hodges":2, "hodgkin":2, "hodgkin's disease":4, "hodden":2, "hoddin":2, "hodding":2, "hodman":2, "hodograph":3, "hodoscope":3, "hoe":1, "hoe":1, "hoe into":3, "hoek van holland":4, "hoeshin":2, "hoecake":2, "hoedown":2, "hoeing":2, "hoelike":2, "hoenir":2, "hoffman":2, "hoffa":2, "hofmann":2, "hofmannsthal":3, "hofstadter":3, "hog":1, "hog badger":3, "hog cholera":4, "hog peanut":3, "hog's fennel":3, "hogg":1, "hogg":1, "hogged":1, "hogshead":2, "hogue":1, "hogback":2, "hogchoker":3, "hogfish":2, "hogfishes":3, "hogger":2, "hoggeries":3, "hoggery":3, "hogget":2, "hoggin":2, "hogging":2, "hoggish":2, "hoggishly":3, "hoggishness":3, "hoghead":2, "hoglike":2, "hogmanay":3, "hogmanay":3, "hogmane":3, "hogmenay":3, "hogmolly":3, "hognose snake":3, "hognosed skunk":3, "hognut":2, "hogtie":2, "hogtied":2, "hogtying":3, "hogwash":2, "hogweed":2, "hoi polloi":3, "hoick":1, "hoicks":1, "hoise":1, "hoist":1, "hoister":2, "hoistway":2, "hoising":2, "hoiden":2, "hoidenish":3, "hoisington":3, "hoity-toity":3, "hoke":1, "hokkaido":3, "hokku":2, "hold":1, "hold over":3, "hold together":4, "hold-up":1, "holdall":2, "holdable":3, "holdback":2, "holden":2, "holder":2, "holdership":3, "holdfast":2, "holding":2, "holding company":5, "holding paddock":4, "holding pattern":4, "holdout":2, "holdover":3, "holdup":2, "hole":1, "hole-and-corner":2, "hole-in-corner":2, "holeless":2, "holeproof":2, "holey":2, "holm":1, "holm":1, "holmes":1, "holp":1, "hols":1, "holst":1, "holt":1, "holt":1, "holtville":2, "holarctic":3, "holbein":2, "holbrook":2, "holden":2, "holdenville":3, "holdredge":2, "holforged":2, "holforging":3, "holgu":2, "holgun":3, "holing":2, "holingshed":3, "holinshed":3, "holinshed":3, "holibut":3, "holiday":3, "holiday":3, "holiday camp":4, "holiday-maker":4, "holidayer":4, "holier-than-thou":3, "holkar state":3, "holla":2, "hollaed":2, "holland":2, "holland":2, "hollands":2, "hollander":3, "hollandaise sauce":4, "hollandale":3, "hollandia":4, "hollaing":3, "holle":2, "holler":2, "hollingshead":3, "hollis":2, "hollister":3, "holliday":3, "hollidaysburg":4, "holliger":3, "hollo":2, "holloa":2, "holloaed":2, "holloaing":3, "holloed":2, "holloo":2, "hollooed":2, "hollooing":3, "hollow":2, "hollow-back":2, "hollow-backed":2, "hollow-eyed":2, "hollow-forge":2, "hollowhearted":4, "hollowheartedness":5, "hollowly":3, "hollowness":3, "hollowware":3, "holloing":3, "holluschick":3, "holluschickie":4, "holly":2, "holly":2, "hollyhock":3, "hollywood":3, "hollywooder":4, "hollywoodish":4, "hollywoodite":4, "hollywoodian":5, "holman-hunt":2, "holmic":2, "holmium":3, "holopneustic":4, "holoblastic":4, "holocaine":3, "holocarpic":4, "holocarpous":4, "holocaust":3, "holocaustal":4, "holocaustic":4, "holocene":3, "holocrine":3, "holoenzyme":4, "holofernes":4, "hologonidia":6, "hologonidium":6, "holograph":3, "holographic":4, "holohedral":4, "holohedrism":4, "holohedry":4, "hololith":3, "holometabolic":6, "holometabolism":6, "holometabolous":6, "holometaboly":6, "holomorphic":4, "holomorphism":4, "holomorphy":4, "holophane":3, "holophote":3, "holophrase":3, "holophrastic":4, "holophyte":3, "holophytic":4, "holoplankton":4, "holosericeous":5, "holothurian":5, "holothurioid":5, "holothuroidea":6, "holotype":3, "holotypic":4, "holozoic":4, "holpen":2, "holstein":2, "holstein-friesian":3, "holster":2, "holstered":2, "holton":2, "holyoke":2, "holyhead":3, "hom":1, "home":1, "home":1, "home counties":3, "home economics":5, "home office":3, "home secretary":5, "home teacher":3, "homebodies":3, "homebody":3, "homebound":2, "homebred":2, "homebrewed":2, "homecomer":3, "homecoming":3, "homeland":2, "homeless":2, "homelessly":3, "homelessness":3, "homelike":2, "homelikeness":3, "homelier":3, "homeliest":3, "homeliness":3, "homely":2, "homemade":2, "homemaker":3, "homemaking":3, "homeplace":2, "homeroom":2, "homesick":2, "homesickness":3, "homesite":2, "homespun":2, "homestall":2, "homestead":2, "homestead":2, "homestead act":3, "homestead law":3, "homesteader":3, "homestretch":2, "hometown":2, "hometown":2, "homeward":2, "homewards":2, "homewood":2, "homework":2, "homeworker":3, "homey":2, "homeyness":3, "homs":1, "homa":2, "homage":2, "homager":3, "homadus":3, "homagyrius":5, "homalographic":5, "hombre":2, "homburg":2, "homer":2, "homing":2, "homing guidance":4, "homing pigeon":4, "homicide":3, "homicidal":4, "homicidally":5, "homier":3, "homiest":3, "homiletic":4, "homiletics":4, "homiletical":5, "homiletically":6, "homilist":3, "homily":3, "hominess":3, "hominid":3, "hominine":3, "hominoid":3, "hominy":3, "hominy grits":4, "hommel":2, "hommock":2, "homograph":3, "homographic":4, "homolog":3, "homologue":3, "homonid":3, "homonym":3, "homonymic":4, "homonymity":5, "homopause":3, "homophone":3, "homophonic":4, "homophonically":6, "homy":2, "hon":1, "hon":1, "hond":1, "hone":1, "honesdale":2, "honewort":2, "hong":1, "honk":1, "honker":2, "honky":2, "honky-tonk":2, "honda":2, "hondo":2, "honduran":3, "honduras":3, "honduranean":5, "honduranian":5, "honegger":3, "honest":2, "honestly":3, "honestness":3, "honesty":3, "honey":2, "honey badger":4, "honey bear":3, "honey buzzard":4, "honey creeper":4, "honey fungus":4, "honey guide":3, "honey locust":4, "honey mesquite":4, "honey mouse":3, "honey plant":3, "honey-bloom":2, "honey-eater":3, "honey-sweet":2, "honeyed":2, "honeyedly":3, "honeyedness":3, "honeys":2, "honeybee":3, "honeybun":3, "honeybunch":3, "honeycomb":3, "honeycomb moth":4, "honeycreeper":4, "honeydew":3, "honeydew melon":5, "honeydewed":3, "honeyful":3, "honeying":3, "honeyless":3, "honeylike":3, "honeymoon":3, "honeymooner":4, "honeysucker":4, "honeysuckle":4, "honeysuckle ornament":7, "honeysuckled":4, "honeywort":3, "honied":2, "honing":2, "honiton":3, "honiton lace":4, "honkey":2, "honkie":2, "honkies":2, "honky":2, "honor":2, "honor":2, "honor moderations":6, "honor school":3, "honors":2, "honors list":3, "honors of war":4, "honorand":3, "honorary":4, "honorable":4, "honorable":4, "honorable discharge":6, "honorableness":5, "honorably":4, "honorer":3, "honorific":4, "honorifical":5, "honorifically":6, "honorless":3, "honolulu":4, "honoraria":5, "honorarium":5, "honorariums":5, "honshu":2, "hoo":1, "hoo-ha":1, "hooch":1, "hooch":1, "hood":1, "hood":1, "hooded":2, "hooded crow":3, "hooded seal":3, "hoodedness":3, "hoodie":2, "hoodless":2, "hoodlike":2, "hoodlum":2, "hoodlumish":3, "hoodlumism":3, "hoodman":2, "hoodman-blind":2, "hoodwink":2, "hoodwinkable":4, "hoodwinker":3, "hoof":1, "hoofed":1, "hoofbeat":2, "hoofbound":2, "hoofer":2, "hoofiness":3, "hoofless":2, "hooflike":2, "hoofprint":2, "hoogh":1, "hooghly":2, "hook":1, "hook of holland":4, "hook-up":1, "hooke":1, "hooked":1, "hooka":2, "hookah":2, "hookedness":3, "hooker":2, "hooker":2, "hookey":2, "hookier":3, "hookiest":3, "hookless":2, "hooklike":2, "hooknose":2, "hookswinging":3, "hookup":2, "hookworm":2, "hookworm disease":4, "hookwormy":3, "hooky":2, "hoop":1, "hoopeston":2, "hooper":2, "hooperating":4, "hoopla":2, "hoopless":2, "hooplike":2, "hoopman":2, "hoopster":2, "hoopwood":2, "hoosegow":2, "hoosgow":2, "hoot":1, "hootch":1, "hootchy-kootchies":3, "hootchy-kootchy":3, "hoots":1, "hootchie-kootchie":3, "hootchy-kootch":2, "hootenanny":4, "hooter":2, "hootingly":3, "hootnanny":3, "hooves":1, "hoodle":2, "hoodoo":2, "hoodooed":2, "hoodooing":3, "hooey":2, "hooligan":3, "hooliganism":4, "hooly":2, "hoopoe":2, "hoorah":2, "hooray":2, "hoosier":2, "hoosierdom":3, "hooton":2, "hoover":2, "hoover dam":3, "hooverville":3, "hop":1, "hop clover":3, "hop into":3, "hop-picker":2, "hope":1, "hope":1, "hopedale":2, "hopeful":2, "hopefully":3, "hopefulness":3, "hopeless":2, "hopelessly":3, "hopelessness":3, "hopestill":2, "hopewell":2, "hops":1, "hoper":2, "hophead":2, "hoping":2, "hopingly":3, "hopkins":2, "hopkinsianism":5, "hopkinsville":3, "hopkinsian":4, "hopkinson":3, "hopkinsonian":5, "hopkinton":3, "hoples":2, "hoplite":2, "hoplitic":3, "hoplology":4, "hoppe":2, "hopper":2, "hopper":2, "hopping":2, "hoppingly":3, "hopple":2, "hoppus foot":3, "hopsack":2, "hopsacking":3, "hopscotch":2, "hoptoad":2, "hoptree":2, "hopvine":2, "hor":1, "horde":1, "horded":2, "hording":2, "horehound":2, "horn":1, "horn":1, "horn of africa":5, "horn of plenty":4, "horn silver":3, "horn-madness":2, "horned":1, "horned poppy":3, "horned viper":3, "hornsby":2, "hornswoggle":3, "hornbeam":2, "hornbill":2, "hornblende":2, "hornblendic":3, "hornbook":2, "hornedness":3, "hornfels":2, "hornie":2, "hornish":2, "hornier":3, "horniest":3, "hornily":3, "horniness":3, "hornless":2, "hornlessness":3, "hornlike":2, "hornpipe":2, "hornpout":2, "hornstone":2, "hornswoggle":3, "horntail":2, "hornworm":2, "hornwort":2, "horny":2, "horol":1, "hors concours":3, "hors d'oeuvre":3, "hors de combat":4, "horse":1, "horse around":3, "horse chestnut":3, "horse gentian":3, "horse latitudes":4, "horse mackerel":3, "horse marine":3, "horse mushroom":3, "horse nettle":3, "horse opera":4, "horse pistol":3, "horse-and-buggy":2, "horse-collar":2, "horse-coper":2, "horseback":2, "horsebox":2, "horsecar":2, "horsecloth":2, "horsefeathers":3, "horsefish":2, "horsefishes":3, "horseflesh":2, "horsefly":2, "horsehair":2, "horsehair worm":3, "horsehaired":2, "horsehead":2, "horseheads":2, "horsehide":2, "horselaugh":2, "horselaughter":3, "horseleech":2, "horselike":2, "horseman":2, "horsemanship":3, "horsemint":2, "horseplay":2, "horseplayer":3, "horseplayful":3, "horsepower":3, "horsepower-hour":3, "horsepox":2, "horseradish":3, "horseshit":2, "horseshoe":2, "horseshoe arch":3, "horseshoe bat":3, "horseshoe crab":3, "horseshoed":2, "horseshoes":2, "horseshoeing":3, "horseshoer":3, "horsetail":2, "horseweed":2, "horsewhip":2, "horsewhipped":2, "horsewhipper":3, "horsewhipping":3, "horsewoman":3, "horsewomanship":4, "horsewomen":3, "horst":1, "horses":2, "horsey":2, "horsing":2, "horsier":3, "horsiest":3, "horsily":3, "horsiness":3, "horsy":2, "hort":1, "horace":2, "horcus":2, "hordein":3, "hordeolum":4, "hordeoolum":4, "horicon":3, "horizontal":4, "horizontal bar":5, "horizontal stabilizer":8, "horizontal union":6, "horizontality":6, "horizontally":5, "horme":2, "hormic":2, "hormisdas":3, "hormone":2, "hormonic":3, "hormonal":3, "hormuz":2, "hornet":2, "horney":2, "hornito":3, "horopteric":4, "horologe":3, "horologic":4, "horological":5, "horologically":6, "horologia":5, "horologium":5, "horologium":5, "horoscope":3, "horoscoper":4, "horoscopic":4, "horotelic":4, "horotely":4, "horowitz":3, "horrent":2, "horrendous":3, "horrendously":4, "horrebow":3, "horrid":2, "horridly":3, "horridness":3, "horrific":3, "horrifically":5, "horripilate":4, "horripilated":5, "horripilating":5, "horripilation":5, "horrible":3, "horribleness":4, "horribly":3, "horrified":3, "horrifiedly":4, "horrification":5, "horrify":3, "horrifying":4, "horrifyingly":5, "horrocks":2, "horror":2, "horror-stricken":3, "horror-struck":2, "horrors":2, "horsa":2, "horsens":2, "horta":2, "hortative":3, "hortatively":4, "hortatorily":5, "hortatory":4, "hortense":2, "hortensia":4, "hortensius":4, "horthy":2, "horticulture":4, "horticultural":5, "horticulturist":5, "hortus siccus":4, "hos":1, "hose":1, "hosecock":2, "hoseless":2, "hoselike":2, "hosp":1, "host":1, "host":1, "hostess":2, "hostess-ship":2, "hostie":2, "hostler":2, "hostless":2, "hostly":2, "hostship":2, "hosen":2, "hoses":2, "hosing":2, "hospice":2, "hospitium":4, "hospital":3, "hospital corner":5, "hospitaler":4, "hospitaler":4, "hospitalise":4, "hospitalism":4, "hospitalize":4, "hospitalized":4, "hospitalizing":5, "hospitalisation":6, "hospitality":5, "hospitalization":6, "hospitaller":4, "hospitaller":4, "hospitalman":4, "hospitable":4, "hospitableness":5, "hospitably":4, "hospitalet":4, "hospitia":4, "hospitium":4, "hospodar":3, "hosta":2, "hostage":2, "hostaged":2, "hostageship":3, "hostaging":3, "hostel":2, "hostel school":3, "hosteler":3, "hosteling":3, "hosteller":3, "hostelling":3, "hostelry":3, "hostile":2, "hostile witness":4, "hostilely":3, "hostility":4, "hostler":2, "hostlership":3, "hot":1, "hot cockles":3, "hot metal":3, "hot money":3, "hot pepper":3, "hot potato":4, "hot-air balloon":3, "hot-blooded":2, "hot-bloodedness":3, "hot-dog":1, "hot-gospeller":3, "hot-headed":2, "hot-presser":2, "hot-shortness":2, "hot-tempered":2, "hot-water bottle":4, "hotch":1, "hotchpot":2, "hotchpotch":2, "hotbed":2, "hotbox":2, "hotcha":2, "hotfoot":2, "hothead":2, "hotheaded":3, "hotheadedly":4, "hotheadedness":4, "hothouse":2, "hothouses":3, "hotline":2, "hotly":2, "hotness":2, "hotplate":2, "hotpot":2, "hotshot":2, "hotspur":2, "hotspur":2, "hotspurred":2, "hotsy-totsy":3, "hotted":2, "hottentot":3, "hottentotic":4, "hotter":2, "hottest":2, "hottie":2, "hotting":2, "hottish":2, "hough":1, "hough":1, "houghton":2, "houghton-le-spring":2, "houlton":2, "hound":1, "hounder":2, "houndfish":2, "houndfishes":3, "hounding":2, "houndish":2, "houndlike":2, "houndy":2, "hounslow":2, "hounskull":2, "houpelande":2, "houppelande":2, "hour":1, "hour angle":3, "hour circle":3, "hours":1, "hours":1, "hourglass":2, "hourless":2, "hourlong":2, "hourly":2, "house":1, "house":1, "house arrest":3, "house agent":3, "house factor":3, "house martin":3, "house of assembly":5, "house of commons":4, "house of correction":5, "house of representatives":7, "house organ":3, "house party":3, "house physician":4, "house sparrow":3, "house-broken":2, "house-raising":2, "house-warming":2, "houseboat":2, "housebound":2, "houseboy":2, "housebreak":2, "housebreaker":3, "housebreaking":3, "housebroke":2, "housebroken":3, "housecarl":2, "houseclean":2, "housecleaner":3, "housecleaning":3, "housecoat":2, "housedress":2, "housefather":3, "housefather":3, "housefly":2, "houseful":2, "houseguest":2, "household":2, "household gods":3, "household name":3, "household troops":3, "householder":3, "householdership":4, "housekeep":2, "housekeeper":3, "housekeeperlike":4, "housekeeping":3, "housekept":2, "houselander":3, "houseleek":2, "houseless":2, "houselessness":3, "houselights":2, "houseline":2, "housemaid":2, "housemaid's knee":3, "housemaidy":3, "houseman":2, "housemaster":3, "housemastership":4, "housemother":3, "housemotherly":4, "houseparent":3, "housephone":2, "houseroom":2, "housetop":2, "housewares":2, "housewarming":3, "housewife":2, "housewifeliness":4, "housewifely":3, "housewifery":4, "housework":2, "houseworker":3, "housewrecker":3, "housey-housey":3, "houses":2, "houses of parliament":6, "housey-housey":3, "housing":2, "housing estate":4, "housing scheme":3, "housman":2, "houssay":2, "houston":2, "houstonia":4, "houting":2, "houbara":3, "houdah":2, "houdan":2, "houdini":3, "houdon":2, "houma":2, "houmous":2, "houmus":2, "houphouet-boigny":3, "houphouet-boigny":4, "houri":2, "housatonic":4, "housel":2, "houseled":2, "houselled":2, "houseling":3, "houselling":3, "houston":2, "houyhnhnm":3, "hove":1, "hove":1, "hovel":2, "hoveled":2, "hovelled":2, "hoveling":3, "hovelling":3, "hover":2, "hover fly":3, "hovercraft":3, "hovercraft":3, "hoverer":3, "hoveringly":4, "hoverport":3, "hovertrain":3, "hovey":2, "how":1, "how-to":1, "howe":1, "howe":1, "howf":1, "howff":1, "howl":1, "howler":2, "howlet":2, "howling":2, "howlingly":3, "howard":2, "howbeit":3, "howdah":2, "howdie":2, "howdy":2, "howe'er":2, "howel":2, "howell":2, "howells":2, "however":3, "howie":2, "howitzer":3, "howland island":4, "howlet":2, "howrah":2, "howsoever":4, "howtowdie":3, "hoxha":2, "hoy":1, "hoyle":1, "hoyt":1, "hoya":2, "hoyden":2, "hoydenish":3, "hoydenishness":4, "hoydenism":3, "hoylake":2, "hoactzin":3, "hoactzin":3, "hoatzin":3, "hobart":2, "hobie":2, "hobo":2, "hoboism":3, "hoboken":3, "hobrecht":2, "hocus":2, "hocus-pocus":3, "hocus-pocused":3, "hocus-pocussed":3, "hocus-pocusing":4, "hocus-pocussing":4, "hocused":2, "hocussed":2, "hocusing":3, "hocussing":3, "hodeida":3, "hoder":2, "hodometer":4, "hodur":2, "hoer":2, "hofei":2, "hofer":2, "hofuf":2, "hogan":2, "hogan":2, "hogansville":3, "hogarth":2, "hogarthian":4, "hohenlinden":4, "hohenlohe":4, "hohenstaufen":4, "hohenzollern":4, "hohokam":3, "hohokus":3, "hojo":2, "hokey":2, "hokey cokey":4, "hokey-pokey":3, "hokiang":2, "hokinson":3, "hokoto":3, "hokum":2, "hokusai":3, "holi":2, "holism":2, "holist":2, "holistic":3, "holistically":5, "holier":3, "holier-than-thou":3, "holiest":3, "holily":3, "holiness":3, "holiness":3, "holography":4, "holophrasis":4, "holoblastically":6, "hologram":3, "holus-bolus":3, "holy":2, "holy alliance":5, "holy bible":4, "holy city":4, "holy communion":5, "holy day":3, "holy family":5, "holy father":4, "holy ghost":3, "holy grail":3, "holy innocents' day":6, "holy island":4, "holy joe":3, "holy land":3, "holy of holies":5, "holy office":4, "holy orders":4, "holy place":3, "holy roller":4, "holy rood":3, "holy roman empire":6, "holy saturday":5, "holy scripture":4, "holy see":3, "holy sepulchre":5, "holy spirit":4, "holy synod":4, "holy thursday":4, "holy water":4, "holy week":3, "holy writ":3, "holy year":3, "holyoake":3, "holystone":3, "holystoned":3, "holystoning":4, "holytide":3, "homalographic":5, "homer":2, "homer":2, "homeric":3, "homeric laughter":5, "homerically":5, "homerville":3, "homeopathist":5, "homeopathy":5, "homeomorph":4, "homeomorphic":5, "homeomorphism":5, "homeomorphous":5, "homeopath":4, "homeopathic":5, "homeopathically":7, "homeoplastic":5, "homeoplasia":5, "homeostatic":5, "homeostatically":7, "homeostasis":5, "homeotherm":4, "homeotherapy":6, "homeothermal":5, "homeothermic":5, "homeothermism":5, "homeothermous":5, "homeothermy":5, "homeotypic":5, "homeotypical":6, "homerian":4, "homiliaries":5, "homiliary":5, "hominian":4, "homo":2, "homo":2, "homo sapiens":5, "homochronous":4, "homoeopathist":5, "homoeopathy":5, "homoeomorph":4, "homoeomorphic":5, "homoeomorphism":5, "homoeomorphous":5, "homoeopath":4, "homoeopathic":5, "homoeopathically":7, "homoeostasis":5, "homogamous":4, "homogamy":4, "homogenate":4, "homogenise":4, "homogenize":4, "homogenized":4, "homogenizer":5, "homogenizing":5, "homogenization":6, "homogenous":4, "homogeny":4, "homogonous":4, "homogonously":5, "homogony":4, "homoiousian":5, "homoiousianism":6, "homoiotherm":4, "homoiothermal":5, "homoiothermic":5, "homoiothermism":5, "homoiothermous":5, "homoiothermy":5, "homologate":4, "homologated":5, "homologating":5, "homologation":5, "homologise":4, "homologised":4, "homologising":5, "homologize":4, "homologized":4, "homologizer":5, "homologizing":5, "homologous":4, "homologous chromosomes":7, "homolographic":5, "homology":4, "homolosine projection":7, "homolysis":4, "homonymous":4, "homonymously":5, "homonymy":4, "homophonous":4, "homophony":4, "homophyly":4, "homoplasy":4, "homoptera":4, "homopteran":4, "homopterous":4, "homorganic":4, "homosporous":4, "homospory":4, "homothety":4, "homobront":3, "homocentric":4, "homocentrical":5, "homocentrically":6, "homocercal":4, "homocercy":4, "homochrome":3, "homochromatic":5, "homochromatism":5, "homochromous":4, "homochromy":4, "homocyclic":4, "homodont":3, "homodyne":3, "homoerotism":5, "homoerotic":5, "homoeroticism":6, "homofermentative":6, "homogenesis":5, "homogenetic":5, "homogenetical":6, "homogenetically":7, "homogeneity":6, "homogeneous":5, "homogeneously":6, "homogeneousness":6, "homograft":3, "homolecithal":5, "homologic":4, "homological":5, "homologically":6, "homologoumena":6, "homologumena":6, "homomorphic":4, "homomorphism":4, "homomorphous":4, "homomorphy":4, "homoousian":5, "homoousianism":6, "homophile":3, "homoplastic":4, "homopolar":4, "homopolarity":6, "homoscedasticity":7, "homosexual":5, "homosexuality":7, "homosphere":3, "homostyled":3, "homostylism":4, "homostylic":4, "homostylous":4, "homostyly":4, "homotaxic":4, "homotaxis":4, "homotaxial":5, "homotaxially":6, "homothallic":4, "homothallism":4, "homotherm":3, "homothermal":4, "homothermic":4, "homothermism":4, "homothermous":4, "homothermy":4, "homothetic":4, "homotype":3, "homotypic":4, "homotypical":5, "homozygote":4, "homozygous":4, "homozygosis":5, "homousian":6, "homuncular":4, "homunculus":4, "honan":2, "honan":2, "honecker":3, "honegger":3, "honiara":4, "honora":3, "honoria":4, "honorius":4, "honor":4, "honus":2, "hopatcong":3, "hopeh":2, "hopei":2, "hopi":2, "hoquiam":3, "hora":2, "horae":2, "horal":2, "horary":3, "horatian":3, "horatian ode":4, "horatius":3, "horatia":4, "horatii":4, "horatio":4, "horatius cocles":6, "horeb":2, "horite":2, "horizon":3, "horizonless":4, "horologer":4, "horologist":4, "horology":4, "horopter":3, "horoscopy":4, "horus":2, "hosanna":3, "hosannaed":3, "hosannaing":4, "hosein":2, "hosel":2, "hosea":3, "hosier":2, "hosiery":3, "hosier":3, "hosiery":4, "hotatian":3, "hotel":2, "hotelier":3, "hotelkeeper":4, "hotelless":3, "hotelman":3, "hotien":2, "hoven":2, "hradec krlov":5, "hre":1, "hreidmar":2, "hrh":1, "hrolf":1, "hrvatska":3, "hsh":1, "hsi":1, "hsia":1, "hsian":1, "hsien":1, "hsingan":2, "hsinking":2, "hsining":2, "hsm":1, "huac":1, "huambo":2, "huasc":2, "huascar":3, "huascaran":3, "huastec":2, "huamuchil":3, "huapango":3, "huarache":3, "huaracho":3, "hub":1, "hubbard":2, "hubbing":2, "hubble":2, "hubble":2, "hubble constant":4, "hubble-bubble":3, "hubbly":2, "hubbob":2, "hubbub":2, "hubby":2, "hubcap":2, "hubli":2, "huckaback":3, "huckle":2, "huckleberry":4, "hucklebone":3, "huckster":2, "hucksterer":3, "hucksteress":3, "hucksterism":3, "hud":1, "hud":1, "huddersfield":3, "huddie":2, "huddle":2, "huddler":2, "huddleston":3, "huddlingly":3, "hudson":2, "hudson bay":3, "hudson river":4, "hudson seal":3, "hudson's bay company":6, "hudsonville":3, "hue":1, "hued":1, "huelva":2, "huerta":2, "huesca":2, "hueless":2, "huemul":2, "huff":1, "huffish":2, "huffishly":3, "huffishness":3, "huffier":3, "huffiest":3, "huffily":3, "huffiness":3, "huffy":2, "hug":1, "huge":1, "hugely":2, "hugeness":2, "hugeous":2, "hugeously":3, "hugeousness":3, "hugh":1, "hugh capet":3, "hughes":1, "hughie":2, "huger":2, "hugest":2, "huggable":3, "hugger":2, "hugger-mugger":3, "hugger-muggery":4, "huggermugger":4, "hugging":2, "huggingly":3, "huggins":2, "hugin":2, "hugli":2, "huh":1, "huic":1, "huichou":2, "huidobro":3, "huila":2, "huisache":3, "huitzilopochtli":5, "hulk":1, "hulking":2, "hulkier":3, "hulkiest":3, "hulky":2, "hull":1, "hull":1, "huller":2, "hulling":2, "hullaballoo":4, "hullabaloo":4, "hullo":2, "hulloa":2, "hulloaed":2, "hulloaing":3, "hulloed":2, "hulloo":2, "hullooed":2, "hullooing":3, "hulloing":3, "hulme":2, "hum":1, "hume":1, "hump":1, "humph":1, "humphrey":2, "humpback":2, "humpbacked":2, "humpier":3, "humpiest":3, "humpiness":3, "humpless":2, "humpty":2, "humpty dumpty":4, "humpy":2, "hums":1, "humber":2, "humbert":2, "humberside":3, "humble":2, "humble pie":3, "humbler":2, "humblebee":3, "humbleness":3, "humblingly":3, "humbly":2, "humboldt":2, "humboldt current":4, "humboldtianum":5, "humbug":2, "humbugged":2, "humbugger":3, "humbuggery":4, "humbugging":3, "humdinger":3, "humdrum":2, "humdrumness":3, "humism":2, "hummel":2, "hummelstown":3, "hummer":2, "humming":2, "humming top":3, "hummingbird":3, "hummingbird moth":4, "hummingly":3, "hummock":2, "hummocky":3, "humperdinck":3, "humphrey":2, "humphreys peak":3, "humpy":2, "hun":1, "hun-tun":1, "hunch":1, "hunchback":2, "hunchbacked":2, "hundred-percenter":4, "hung":1, "hung":1, "hung jury":3, "hungnam":2, "hunk":1, "hunks":1, "hunkers":2, "hunkies":2, "hunky":2, "hunky-dory":3, "hunt":1, "hunt":1, "hunt the slipper":4, "hunts":1, "huntsman":2, "huntsman's-cup":2, "huntsmanship":3, "huntsville":2, "huntable":3, "huntaway":3, "hunted":2, "huntedly":3, "hunter":2, "hunterlike":3, "hunting":2, "hunting cat":3, "hunting ground":3, "hunting horn":3, "hunting knife":3, "hunting spider":4, "huntley":2, "huntress":2, "hundred":2, "hundred days":3, "hundred years' war":4, "hundred-percenter":4, "hundreds and thousands":5, "hundredth":2, "hundredfold":3, "hundredweight":3, "huneker":3, "hungarian":4, "hungarian goulash":6, "hungary":3, "hunger":2, "hunger march":3, "hunger strike":3, "hungeringly":4, "hungerless":3, "hungerly":3, "hungrier":3, "hungriest":3, "hungrily":3, "hungriness":3, "hungry":2, "hunker":2, "hunker":2, "hunkerism":3, "hunkerous":3, "hunkerousness":4, "hunlike":2, "hunnish":2, "hunnishness":3, "hunter":2, "hunter's moon":3, "huntingburg":3, "huntingdon":3, "huntingdonshire":4, "huntington":3, "hunyadi":3, "huppah":2, "huppahs":2, "huppot":2, "huppoth":2, "hurd":1, "hurds":1, "hurl":1, "hurler":2, "hurley":2, "hurleys":2, "hurlies":2, "hurling":2, "hurly":2, "hurly-burlies":3, "hurly-burly":3, "hurst":1, "hurst":1, "hurstmonceux":3, "hurt":1, "hurtable":3, "hurter":2, "hurtful":2, "hurtfully":3, "hurtfulness":3, "hurting":2, "hurtle":2, "hurtless":2, "hurtlessly":3, "hurtlessness":3, "hurcheon":2, "hurdies":2, "hurdle":2, "hurdler":2, "hurdy-gurdies":3, "hurdy-gurdist":3, "hurdy-gurdy":3, "hurdy-gurdyist":4, "hurley":2, "hurrah":2, "hurray":2, "hurri":2, "hurried":2, "hurriedly":3, "hurriedness":3, "hurrian":3, "hurricane":3, "hurricane deck":4, "hurricane lamp":4, "hurricane-decked":3, "hurry":2, "hurry-scurried":3, "hurry-scurry":3, "hurry-scurrying":4, "hurry-skurried":3, "hurry-skurry":3, "hurry-skurrying":4, "hurry-up":2, "hurrying":3, "hurryingly":4, "hursinghar":3, "hurter":2, "hurtle":2, "hurtleberry":4, "hurtling":2, "hurtlingly":3, "hus":1, "hush":1, "hush money":3, "hushaby":3, "hushedly":3, "hushful":2, "hushfully":3, "hushion":2, "husk":1, "husker":2, "huskies":2, "husking":2, "huskier":3, "huskiest":3, "huskily":3, "huskiness":3, "husklike":2, "husky":2, "huss":1, "hussism":2, "hussite":2, "hussitism":3, "husband":2, "husbandage":3, "husbander":3, "husbandless":3, "husbandman":3, "husbandry":3, "huskisson":3, "hussar":2, "hussein":2, "husserl":2, "hussy":2, "hustings":2, "hustle":2, "hustle up":3, "hustler":2, "huston":2, "hut":1, "hut circle":3, "hutch":1, "hutchie":2, "hutchins":2, "hutchinson":3, "hutzpah":2, "hutlike":2, "hutment":2, "hutted":2, "hutting":2, "huxleian":3, "huxley":2, "huxleyan":3, "huysmans":2, "huygens":2, "huzza":2, "huzzah":2, "huscar":3, "hunuco":4, "hubert":2, "hubertusburg":4, "hubris":2, "hucar":2, "hudibrastic":4, "hudibrastic":4, "hudibrastically":6, "huey":2, "hueytown":3, "hufuf":2, "hugi":2, "hugo":2, "hugoton":3, "huguenot":3, "huguenotic":4, "huguenotism":4, "huhehot":3, "huia":2, "hula":2, "hula skirt":3, "hula-hoop":2, "hula-hula":3, "huly":2, "human":2, "human being":4, "human interest":5, "human nature":4, "human rights":3, "humane":2, "humane society":6, "humanely":3, "humaneness":3, "humanics":3, "humanise":3, "humanised":3, "humanism":3, "humanist":3, "humaniser":4, "humanising":4, "humanistic":4, "humanistically":6, "humanize":3, "humanized":3, "humanizer":4, "humanizing":4, "humanitarian":6, "humanitarianism":7, "humanitarianist":7, "humanity":4, "humanization":5, "humankind":3, "humanlike":3, "humanly":3, "humanness":3, "humanoid":3, "humash":2, "humashim":3, "humayun":3, "humectant":3, "humeral":3, "humeral veil":4, "humeri":3, "humerus":3, "humic":2, "humid":2, "humidified":4, "humidification":6, "humidifier":5, "humidify":4, "humidifying":5, "humidistat":4, "humidity":4, "humidly":3, "humidness":3, "humiliate":4, "humiliated":5, "humiliating":5, "humiliatingly":6, "humiliation":5, "humiliator":5, "humiliatory":6, "humility":4, "humidor":3, "humilis":3, "humor":2, "humoral":3, "humoresque":3, "humoresquely":4, "humorful":3, "humorist":3, "humoristic":4, "humoristical":5, "humorless":3, "humorlessness":4, "humorous":3, "humorously":4, "humorousness":4, "humorsome":3, "humour":2, "humourless":3, "humourlessness":4, "humoursome":3, "humorum":3, "humus":2, "humuslike":3, "humuhumunukunukuapuaa":12, "humulon":3, "humulone":3, "hunan":2, "hunyadi":3, "huon pine":3, "hupa":2, "hupeh":2, "hupei":2, "hurok":2, "huron":2, "hus":2, "husain":2, "husein ibn-ali":4, "hutu":2, "hwan":1, "hwm":1, "hwt":1, "hwyl":2, "hyde":1, "hydnocarpate":4, "hydnocarpic acid":6, "hyksos":2, "hyllus":2, "hymn":1, "hymnbook":2, "hymner":2, "hymnless":2, "hymnlike":2, "hymnal":2, "hymnaria":4, "hymnarium":4, "hymnary":3, "hymnist":2, "hymnodical":4, "hymnologist":4, "hymnology":4, "hymnodist":3, "hymnody":3, "hymnologic":4, "hymnologically":6, "hyp":1, "hype":1, "hypoth":1, "hypaesthesia":4, "hypaesthesia":5, "hypalgesic":4, "hypalgesia":5, "hypabyssal":4, "hypacusia":4, "hypacusis":4, "hypanis":3, "hypatie":3, "hypesthesia":4, "hypesthesic":4, "hypesthesia":5, "hypnagogic":4, "hypnagogic image":6, "hypnoid":2, "hypnoidal":3, "hypnologist":4, "hypnology":4, "hypnone":2, "hypnos":2, "hypnotic":3, "hypnotically":5, "hypnoanalytic":6, "hypnoanalysis":6, "hypnogenesis":5, "hypnogenetic":5, "hypnogogic":4, "hypnograph":3, "hypnologic":4, "hypnopaedia":5, "hypnopompic":4, "hypnosis":3, "hypnosperm":3, "hypnospore":3, "hypnosporic":4, "hypnosporangia":6, "hypnosporangium":6, "hypnotherapy":5, "hypnotise":3, "hypnotised":3, "hypnotism":3, "hypnotist":3, "hypnotisable":5, "hypnotiser":4, "hypnotising":4, "hypnotistic":4, "hypnotize":3, "hypnotized":3, "hypnotizability":7, "hypnotizable":5, "hypnotizer":4, "hypnotizing":4, "hypnotisation":5, "hypnotization":5, "hypnotoxin":4, "hypnus":2, "hypocrite":3, "hypocritical":5, "hypocritically":6, "hypseus":3, "hypsipyle":4, "hypsistus":3, "hypsicephaly":5, "hypsicephalic":5, "hypsilantes":4, "hypsilantis":4, "hypsography":4, "hypsometer":4, "hypsometrist":4, "hypsometry":4, "hypsographic":4, "hypsometric":4, "hypsometrically":6, "hyrcania":4, "hyrcanian":4, "hyrmina":3, "hyrnetho":3, "hyrtius":3, "hyssop":2, "hysterectomise":5, "hysterectomize":5, "hysterectomized":5, "hysterectomizing":6, "hysterectomy":5, "hysteretic":4, "hysteretically":6, "hysteresis":4, "hysteric":3, "hysterics":3, "hysterical":4, "hysterically":5, "hysterogeny":5, "hysteroid":3, "hysteroidal":4, "hysteron proteron":6, "hysterotomy":5, "hysterocatalepsy":7, "hysterogenic":5, "hysteresis":4, "hysteresis loop":5, "hysteria":4, "hystricomorph":4, "hystricomorph":4, "hystricomorphic":5, "hyte":1, "hyads":2, "hyaena":3, "hyaenic":3, "hyalogen":4, "hyalomere":4, "hyalophane":4, "hyaloplasm":4, "hyaloplasmic":5, "hyannis":3, "hyatt":2, "hyattsville":3, "hyacinth":3, "hyacinth":3, "hyacinthin":4, "hyacinthine":4, "hyacinthides":5, "hyacinthus":4, "hyades":3, "hyalin":3, "hyaline":3, "hyaline cartilage":6, "hyalinize":4, "hyalinized":4, "hyalinizing":5, "hyalinization":6, "hyalite":3, "hyalographer":5, "hyalography":5, "hyaloid":3, "hyaloid membrane":5, "hyalograph":4, "hyaluronic acid":7, "hyaluronidase":6, "hybrid":2, "hybrid computer":5, "hybrid vigor":4, "hybridise":3, "hybridised":3, "hybridism":3, "hybridist":3, "hybridiser":4, "hybridising":4, "hybridize":3, "hybridized":3, "hybridizable":5, "hybridizer":4, "hybridizing":4, "hybridity":4, "hybris":2, "hybristic":3, "hydantoin":4, "hydathode":3, "hydatid":3, "hydatidinous":5, "hyder ali":4, "hyderabad":4, "hydra":2, "hydra":2, "hydra-headed":3, "hydracid":3, "hydraemia":4, "hydralazine":4, "hydrant":2, "hydranth":2, "hydrangea":3, "hydrarch":2, "hydrargyric":4, "hydrargyria":5, "hydrargyrism":4, "hydrargyrum":4, "hydrase":2, "hydrastine":3, "hydrastis":3, "hydrastinine":4, "hydrate":2, "hydrated":3, "hydrating":3, "hydraulic":3, "hydraulic brake":4, "hydraulic press":4, "hydraulic ram":4, "hydraulic suspension":6, "hydraulicking":4, "hydraulics":3, "hydraulis":3, "hydraulically":5, "hydraulus":3, "hydragog":3, "hydragogue":3, "hydration":3, "hydrator":3, "hydrazine":3, "hydrazo":3, "hydrazone":3, "hydrazoate":4, "hydrazoic":4, "hydrazoic acid":6, "hydremic":3, "hydremia":4, "hydric":2, "hydride":2, "hydria":3, "hydriae":3, "hydriodic":4, "hydriodic acid":6, "hydro":2, "hydrogenous":4, "hydrographer":4, "hydrography":4, "hydroid":2, "hydrologist":4, "hydrology":4, "hydrolysate":4, "hydrolysis":4, "hydrometer":4, "hydrometry":4, "hydrophanous":4, "hydrophilous":4, "hydrophily":4, "hydrops":2, "hydropathist":4, "hydropathy":4, "hydropic":3, "hydropical":4, "hydropically":5, "hydroponist":4, "hydropsy":3, "hydroptic":3, "hydrotropism":4, "hydrous":2, "hydroxide":3, "hydroxonium ion":7, "hydroxy":3, "hydroxy acid":5, "hydroxyl":3, "hydroxylamine":5, "hydroxylic":4, "hydroxybenzene":5, "hydroxyketone":5, "hydroxyproline":5, "hydroxyzine":4, "hydroa":3, "hydroairplane":4, "hydrobomb":3, "hydrobromic":4, "hydrobromic acid":6, "hydrobromide":4, "hydrocarbon":4, "hydrocarbonaceous":6, "hydrocele":3, "hydrocellulose":5, "hydrocephaloid":5, "hydrocephalous":5, "hydrocephalus":5, "hydrocephaly":5, "hydrocephalic":5, "hydrochloric":4, "hydrochloric acid":6, "hydrochloride":4, "hydrochlorothiazide":7, "hydrocinnamoyl":6, "hydrocinnamyl":5, "hydrocinnamaldehyde":7, "hydrocoral":4, "hydrocoralline":5, "hydrocortisone":5, "hydrocortone":4, "hydrocracking":4, "hydrocyanic":5, "hydrocyanic acid":7, "hydrodesulfurization":8, "hydrodesulphurization":8, "hydrodiuril":5, "hydrodynamic":5, "hydrodynamics":5, "hydrodynamical":6, "hydrodynamically":7, "hydroelectric":5, "hydroelectricity":7, "hydrofluoric":5, "hydrofluoric acid":7, "hydrofoil":3, "hydroformylation":6, "hydrogen":3, "hydrogen bomb":4, "hydrogen bond":4, "hydrogen bromide":5, "hydrogen carbonate":6, "hydrogen chloride":5, "hydrogen cyanide":6, "hydrogen fluoride":5, "hydrogen ion":5, "hydrogen iodide":6, "hydrogen peroxide":6, "hydrogen sulphate":5, "hydrogen sulphide":5, "hydrogen sulphite":5, "hydrogen tartrate":5, "hydrogenate":4, "hydrogenated":5, "hydrogenating":5, "hydrogenation":5, "hydrogenise":4, "hydrogenised":4, "hydrogenising":5, "hydrogenize":4, "hydrogenized":4, "hydrogenizing":5, "hydrogenization":6, "hydrogenolysis":6, "hydrogeologist":6, "hydrogeology":6, "hydrogeological":7, "hydrograph":3, "hydrographic":4, "hydrographically":6, "hydrokineter":5, "hydrokinetic":5, "hydrokinetics":5, "hydrokinetical":6, "hydrolant":3, "hydrolase":3, "hydrologic":4, "hydrologic cycle":6, "hydrologically":6, "hydrolyse":3, "hydrolysed":3, "hydrolyst":3, "hydrolyser":4, "hydrolysing":4, "hydrolyte":3, "hydrolytic":4, "hydrolyze":3, "hydrolyzed":3, "hydrolyzable":5, "hydrolyzer":4, "hydrolyzing":4, "hydrolysation":5, "hydrolyzation":5, "hydromagnetics":5, "hydromancer":4, "hydromancy":4, "hydromantic":4, "hydromel":3, "hydrometallurgical":7, "hydrometallurgy":6, "hydrometric":4, "hydromechanics":5, "hydromechanical":6, "hydromedusa":5, "hydromedusan":5, "hydrometeor":5, "hydrometeorology":8, "hydrometeorological":9, "hydronaut":3, "hydronitrogen":5, "hydronium ion":6, "hydropac":3, "hydropath":3, "hydropathic":4, "hydroperoxide":5, "hydrophane":3, "hydrophilic":4, "hydrophobe":3, "hydrophone":3, "hydrophobia":4, "hydrophobic":4, "hydrophobicity":6, "hydrophobia":5, "hydrophyllaceous":5, "hydrophyte":3, "hydrophytic":4, "hydrophytism":4, "hydroplane":3, "hydroplaned":3, "hydroplaning":4, "hydropneumatization":7, "hydroponic":4, "hydroponics":4, "hydroponically":6, "hydropower":4, "hydroquinol":4, "hydroquinone":4, "hydrorhiza":4, "hydrorhizal":4, "hydroscope":3, "hydroscopic":4, "hydroscopicity":6, "hydrosere":3, "hydroski":3, "hydrosol":3, "hydrosome":3, "hydrosoma":4, "hydrosomata":5, "hydrosphere":3, "hydrostat":3, "hydrostatic":4, "hydrostatic balance":6, "hydrostatics":4, "hydrostatical":5, "hydrostatically":6, "hydrosulfate":4, "hydrosulfide":4, "hydrosulfite":4, "hydrosulfurous":5, "hydrosulphate":4, "hydrosulphide":4, "hydrosulphite":4, "hydrosulphurous acid":6, "hydrosulphurous":5, "hydrotactic":4, "hydrotaxis":4, "hydrotherapeutic":6, "hydrotherapeutics":6, "hydrotherapist":5, "hydrotherapy":5, "hydrothermal":4, "hydrothermally":5, "hydrotheca":4, "hydrothecal":4, "hydrothoracic":5, "hydrothorax":4, "hydrotropic":4, "hydrozoa":4, "hydrozoan":4, "hydrus":2, "hyetograph":4, "hyena":3, "hyenic":3, "hyenine":3, "hyeniform":4, "hyenoid":3, "hyetal":3, "hyetography":5, "hyetologist":5, "hyetology":5, "hyetographic":5, "hyetographically":7, "hyetological":6, "hygeia":3, "hygeian":3, "hygeist":3, "hygiene":2, "hygienic":3, "hygienics":3, "hygienist":3, "hygieist":3, "hygienic":4, "hygienics":4, "hygienical":5, "hygienically":6, "hyginus":3, "hygristor":3, "hygrometer":4, "hygrometry":4, "hygrogram":3, "hygrograph":3, "hygrometric":4, "hygrometrically":6, "hygrophilous":4, "hygrophyte":3, "hygrophytic":4, "hygroscope":3, "hygroscopic":4, "hygroscopically":6, "hygroscopicity":6, "hygrostat":3, "hygrothermograph":5, "hying":2, "hyla":2, "hylaeus":3, "hylas":2, "hylophagous":4, "hylomorphism":4, "hylomorphic":4, "hylomorphism":4, "hylomorphist":4, "hylotheism":4, "hylotheist":4, "hylotheistic":5, "hylotheistical":6, "hylotropic":4, "hylozoic":4, "hylozoism":4, "hylozoist":4, "hylozoistic":5, "hylozoistically":7, "hyman":2, "hymen":2, "hymen":2, "hymenopteran":5, "hymenopterous":5, "hymenotomy":5, "hymenotome":4, "hymettic":3, "hymettian":4, "hymettius":4, "hymettus":3, "hymenaeus":4, "hymeneal":4, "hymeneally":5, "hymenia":4, "hymenial":4, "hymenium":4, "hymenopter":4, "hymenoptera":5, "hymenoptera":5, "hymenopteran":5, "hymenopteron":5, "hymenopterous":5, "hyoid":2, "hyoidal":3, "hyoidean":4, "hyolithid":4, "hyoscine":3, "hyoscyamine":5, "hyoscyamus":5, "hypaethral":3, "hypalgia":3, "hypallage":4, "hypanthia":4, "hypanthial":4, "hypanthium":4, "hypaspist":3, "hypatia":3, "hyper-dorian":4, "hypermnestra":4, "hypermnesia":5, "hyperpnea":4, "hyperpnoea":4, "hyperabsorption":5, "hyperaccurate":5, "hyperaccuracy":6, "hyperacid":4, "hyperaction":4, "hyperactive":4, "hyperactivity":6, "hyperadenosis":6, "hyperadipose":5, "hyperadiposity":7, "hyperaesthete":4, "hyperaesthesia":5, "hyperaesthesia":6, "hyperaemia":5, "hyperalgesic":5, "hyperalgesia":6, "hyperalgia":5, "hyperalimentation":7, "hyperalkalinity":7, "hyperaltruism":5, "hyperaltruist":5, "hyperaltruistic":6, "hyperanarchic":5, "hyperanarchy":5, "hyperanabolic":6, "hyperanacinesia":7, "hyperanakinesia":7, "hyperangelic":5, "hyperangelical":6, "hyperaphic":4, "hyperarchaeological":8, "hyperazoturia":7, "hyperacidity":6, "hyperacoustics":5, "hyperacousia":5, "hyperacute":4, "hyperacuity":6, "hyperacusis":5, "hyperadrenalemia":8, "hyperadrenalism":6, "hyperadrenia":6, "hyperanabolism":6, "hyperaphia":5, "hyperbarbarism":5, "hyperbarbarous":5, "hyperbaric":4, "hyperbatic":4, "hyperbatically":6, "hyperbata":4, "hyperbaton":4, "hyperbatons":4, "hyperbolic":4, "hyperbolic function":6, "hyperbolical":5, "hyperbolically":6, "hyperbola":4, "hyperbole":4, "hyperbolise":4, "hyperbolism":4, "hyperbolize":4, "hyperbolized":4, "hyperbolizing":5, "hyperboloid":4, "hyperboloidal":5, "hyperborean":5, "hyperbrachycephaly":7, "hyperbrachycephalic":7, "hyperbranchial":5, "hyperbrutal":4, "hypercalcaemia":6, "hypercalcemia":6, "hypercalcinaemia":7, "hypercalcinemia":7, "hypercalcinuria":7, "hypercalciuria":7, "hypercapnia":5, "hypercarbia":5, "hypercarbureted":6, "hypercarnal":4, "hypercatalectic":6, "hypercatabolism":6, "hypercatharsis":5, "hypercathartic":5, "hypercheiria":5, "hyperchlorhydria":6, "hyperchloraemia":6, "hyperchloremia":6, "hyperchlorination":6, "hypercholesteremia":8, "hypercholesterolemia":9, "hypercholesterolia":8, "hypercholia":5, "hypercivilized":5, "hypercivilization":7, "hyperclassical":5, "hyperclassicality":7, "hyperclimax":4, "hypercomposite":5, "hyperconcentration":6, "hyperconfidence":5, "hyperconfident":5, "hyperconformist":5, "hyperconformity":6, "hyperconscious":4, "hyperconscientious":6, "hyperconservatism":6, "hyperconservative":6, "hyperconstitutional":7, "hyperconstitutionalism":8, "hypercorrect":4, "hypercorrectness":5, "hypercorrection":5, "hypercoagulability":9, "hypercoagulable":7, "hypercrinemia":6, "hypercrinism":4, "hypercritic":4, "hypercritical":5, "hypercritically":6, "hypercriticism":5, "hypercryaesthesia":6, "hypercryalgesia":7, "hypercryesthesia":6, "hypercyanotic":6, "hypercyanosis":6, "hypercythemia":6, "hypercytosis":5, "hyperdactylism":5, "hyperdactylia":6, "hyperdelicate":5, "hyperdelicacy":6, "hyperdemocratic":6, "hyperdeified":5, "hyperdeification":7, "hyperdeify":5, "hyperdeifying":6, "hyperdelicious":5, "hyperdistention":5, "hyperdiastolic":6, "hyperdiabolical":7, "hyperdicrotic":5, "hyperdicrotism":5, "hyperdivision":5, "hyperdolichocephaly":8, "hyperdolichocephalic":8, "hyperdulic":4, "hyperdulia":5, "hyperelegance":5, "hyperelegant":5, "hyperelegancy":6, "hyperemesis":5, "hyperemization":6, "hyperemphasize":5, "hyperemphasized":5, "hyperemphasizing":6, "hyperendocrinism":6, "hyperendocrinia":7, "hyperenergetic":6, "hyperenthusiasm":6, "hyperenthusiastic":7, "hyperenthusiastically":9, "hyperepinephria":7, "hyperepinephrinemia":9, "hyperepinephry":6, "hypererethism":5, "hyperesthete":4, "hyperesthetic":5, "hyperesthesia":5, "hyperesthesia":6, "hyperethical":5, "hypereutectic":5, "hypereutectoid":5, "hyperexaltation":6, "hyperexcitement":5, "hyperexcitability":8, "hyperexcitable":6, "hyperexcitableness":7, "hyperexcursive":5, "hyperextension":5, "hyperemetic":5, "hyperemic":4, "hyperemia":5, "hyperemotional":6, "hyperemotive":5, "hyperemotivity":7, "hyperfastidious":6, "hyperfederalist":6, "hyperfine":3, "hyperfine structure":5, "hyperflexion":4, "hyperflexibility":7, "hyperflexible":5, "hyperflexibleness":6, "hyperform":3, "hyperfocal distance":6, "hyperfunction":4, "hyperfunctional":5, "hypergalactosia":7, "hypergalactia":6, "hypergamous":4, "hypergamy":4, "hypergenesis":5, "hypergeusesthesia":7, "hypergeusia":5, "hypergenetic":5, "hypergenetical":6, "hyperglobulism":5, "hyperglobulia":6, "hyperglycaemic":5, "hyperglycaemia":6, "hyperglycemic":5, "hyperglycemia":6, "hyperglycistia":6, "hypergol":3, "hypergolic":4, "hypergrammatical":6, "hyperhepatia":6, "hyperhidrotic":5, "hyperhidrosis":5, "hyperhilarious":6, "hyperhypocrisy":6, "hyperimmune":4, "hyperimmunize":5, "hyperimmunized":5, "hyperimmunizing":6, "hyperimmunity":6, "hyperimmunization":7, "hyperingenuity":7, "hyperinsulinism":6, "hyperintellectual":7, "hyperintelligence":6, "hyperintelligent":6, "hyperirritability":8, "hyperirritable":6, "hypericum":4, "hyperidealistic":7, "hyperidealistically":9, "hyperidrosis":5, "hyperkaliemia":7, "hyperkalemic":5, "hyperkalemia":6, "hyperkatabolism":6, "hyperkeratotic":6, "hyperkeratosis":6, "hyperkinetic":5, "hyperkinesia":5, "hyperkinesis":5, "hyperkinesia":6, "hyperlactation":5, "hyperlethargy":5, "hyperleucocytotic":7, "hyperleucocytosis":7, "hyperleukocytosis":7, "hyperlethal":4, "hyperlipaemic":5, "hyperlipaemia":6, "hyperlipemic":5, "hyperlipemia":6, "hyperlogical":5, "hyperlogicality":7, "hyperlustrous":4, "hypermagical":5, "hypermarket":4, "hypermedication":6, "hypermegasoma":6, "hypermetamorphic":6, "hypermetamorphosis":7, "hypermetaphoric":6, "hypermetaphorical":7, "hypermetaphysical":7, "hypermetric":4, "hypermetrope":4, "hypermetropy":5, "hypermetabolism":6, "hypermeter":4, "hypermetropic":5, "hypermetropia":6, "hypermicrosoma":6, "hypermiraculous":6, "hypermodest":4, "hypermoral":4, "hypermotile":4, "hypermotility":6, "hypermystical":5, "hypernatronemia":7, "hypernatural":5, "hypernatremia":6, "hyperneurotic":5, "hypernitrogenous":6, "hypernormal":4, "hypernormality":6, "hypernutrition":5, "hypernutritive":5, "hyperobtrusive":5, "hyperon":3, "hyperope":3, "hyperopic":4, "hyperorganic":5, "hyperorganically":7, "hyperorthognathous":6, "hyperorthodox":5, "hyperorthodoxy":6, "hyperosmic":4, "hyperosmia":5, "hyperosteogeny":7, "hyperostotic":5, "hyperostosis":5, "hyperoxemia":6, "hyperoxide":4, "hyperoxygenate":6, "hyperoxygenation":7, "hyperoxygenize":6, "hyperoxygenized":6, "hyperoxygenizing":7, "hyperopia":5, "hyperovaria":6, "hyperovarianism":7, "hyperparasite":5, "hyperparasitic":6, "hyperparasitism":6, "hyperparathyroidism":7, "hyperparoxysm":5, "hyperpathetic":5, "hyperpathetical":6, "hyperpatriotic":6, "hyperpatriotism":6, "hyperpatriotically":8, "hyperperfection":5, "hyperperistalsis":6, "hyperperistaltic":6, "hyperpersonal":5, "hyperphagia":5, "hyperphosphatemia":7, "hyperphospheremia":7, "hyperphysical":5, "hyperphysically":6, "hyperpigmented":5, "hyperpigmentation":6, "hyperpietic":5, "hyperpiesia":5, "hyperpiesis":5, "hyperpituitarism":7, "hyperplane":3, "hyperplasia":5, "hyperplastic":4, "hyperplasia":4, "hyperploid":3, "hyperploidy":4, "hyperpolysyllabic":7, "hyperpolysyllabically":9, "hyperpotassemic":6, "hyperpotassemia":7, "hyperprognathous":5, "hyperprophetic":5, "hyperprophetical":6, "hyperprosexia":6, "hyperpure":3, "hyperpurist":4, "hyperpyretic":5, "hyperpyrexia":6, "hyperrational":5, "hyperresonance":5, "hyperresonant":5, "hyperreactive":5, "hyperrealize":5, "hyperrealized":5, "hyperrealizing":6, "hyperrhythmical":5, "hyperritualism":6, "hyperritualistic":7, "hyperridiculous":6, "hyperromantic":5, "hyperromantically":7, "hyperromanticism":6, "hypersaintly":4, "hypersalivation":6, "hypersceptical":5, "hyperscholastic":5, "hyperscholastically":7, "hyperscrupulosity":7, "hyperscrupulous":5, "hypersensibility":7, "hypersensitise":5, "hypersensitised":5, "hypersensitising":6, "hypersensitive":5, "hypersensitiveness":6, "hypersensitivity":7, "hypersensitize":5, "hypersensitized":5, "hypersensitizing":6, "hypersensitization":7, "hypersensual":5, "hypersensualism":6, "hypersensuous":5, "hypersecretion":5, "hypersomnia":5, "hypersonic":4, "hypersophisticated":7, "hypersophistication":7, "hyperspace":3, "hyperspatial":4, "hyperspeculative":6, "hypersphere":3, "hyperspherical":5, "hyperstatic":4, "hypersthene":3, "hypersthenic":4, "hyperstoical":5, "hypersubtle":4, "hypersubtlety":5, "hypersuggestibility":8, "hypersuggestible":6, "hypersuggestibleness":7, "hypersusceptibility":8, "hypersusceptible":6, "hypersystolic":5, "hypertechnical":5, "hypertelic":4, "hypertely":4, "hypertense":3, "hypertensin":4, "hypertensinase":5, "hypertensinogen":6, "hypertension":4, "hypertensive":4, "hypertherm":3, "hyperthermal":4, "hyperthermia":5, "hyperthermy":4, "hyperthrombinemia":7, "hyperthymia":5, "hyperthyroid":4, "hyperthyroidism":5, "hypertocicity":6, "hypertonic":4, "hypertorrid":4, "hypertoxic":4, "hypertonicity":6, "hypertragic":4, "hypertragical":5, "hypertrophic":4, "hypertropical":5, "hypertrophied":4, "hypertrophy":4, "hypertrophying":5, "hyperurbanism":5, "hypervascular":5, "hypervascularity":7, "hyperventilation":6, "hypervigilant":5, "hyperviscosity":6, "hyperviscous":4, "hypervitaminosis":7, "hypervitalize":5, "hypervitalized":5, "hypervitalization":7, "hypervitaminosis":7, "hypervoluminous":6, "hypervwnosity":6, "hyperenor":4, "hyperion":4, "hypethral":3, "hypha":2, "hyphal":2, "hyphen":2, "hyphenate":3, "hyphenated":4, "hyphenating":4, "hyphenation":4, "hyphenic":3, "hyphenise":3, "hyphenised":3, "hyphenising":4, "hyphenize":3, "hyphenized":3, "hyphenizing":4, "hyphenization":5, "hyphopodia":5, "hyphopodium":5, "hypo":2, "hypocorism":4, "hypocrisy":4, "hypogenous":4, "hypognathism":4, "hypognathous":4, "hypogynous":4, "hypogyny":4, "hypoid gear":3, "hypolite":4, "hypomnesia":4, "hypomnesis":4, "hypophyge":4, "hypophysectomize":6, "hypophysectomized":6, "hypophysectomizing":7, "hypophysectomy":6, "hypophysis":4, "hypophysitis":5, "hypopnea":4, "hypopnoea":4, "hypopselaphesia":7, "hypoptyalism":5, "hyporchema":4, "hyporchematic":5, "hyporchemata":5, "hyposmia":4, "hyposphresia":5, "hypostasis":4, "hypostasise":4, "hypostasised":4, "hypostasising":5, "hypostasize":4, "hypostasized":4, "hypostasizing":5, "hypostatise":4, "hypostatised":4, "hypostatising":5, "hypostatize":4, "hypostatized":4, "hypostatizing":5, "hypostatization":6, "hyposthenic":4, "hyposthenia":5, "hypothec":3, "hypothecary":5, "hypothecate":4, "hypothecated":5, "hypothecater":5, "hypothecating":5, "hypothecation":5, "hypothecator":5, "hypothenar":4, "hypothenuse":4, "hypothesis":4, "hypothesise":4, "hypothesised":4, "hypothesising":5, "hypothesize":4, "hypothesized":4, "hypothesizer":5, "hypothesizing":5, "hypotenuse":4, "hypotrichous":4, "hypoxemia":5, "hypoxic":3, "hypoxia":4, "hypoacid":4, "hypoalbuminemia":8, "hypoalimentation":7, "hypoalonemia":7, "hypoazoturia":7, "hypoacidity":6, "hypoacussis":5, "hypoacusia":5, "hypoadenia":6, "hypobaric":4, "hypobaropathy":6, "hypobasis":4, "hypoblast":3, "hypoblastic":4, "hypobranchial":5, "hypocalcemia":6, "hypocaust":3, "hypocentre":4, "hypochil":3, "hypochilia":5, "hypochilium":5, "hypochlorhydria":6, "hypochlorite":4, "hypochlorous":4, "hypochlorous acid":6, "hypochloremic":5, "hypochloremia":6, "hypochloridemia":7, "hypochondria":5, "hypochondriac":5, "hypochondriacal":6, "hypochondriacally":7, "hypochondriasis":6, "hypochondrium":5, "hypocholesteremia":8, "hypocholesterinemia":9, "hypochromic":4, "hypochromia":5, "hypocotyl":4, "hypocotylous":5, "hypocopy":4, "hypocoristic":5, "hypocoristically":7, "hypocrateriform":6, "hypocrinia":5, "hypocrinism":4, "hypocycloid":4, "hypocycloidal":5, "hypocytosis":5, "hypoderm":3, "hypoderma":4, "hypodermal":4, "hypodermic":4, "hypodermic syringe":6, "hypodermis":4, "hypodermically":6, "hypodorian":5, "hypodynamic":5, "hypodynamia":6, "hypoendocrinism":6, "hypoendocrinia":7, "hypoeutectic":5, "hypoeutectoid":5, "hypofunction":4, "hypogastric":4, "hypogastria":5, "hypogastrium":5, "hypogene":3, "hypogenesis":5, "hypogenic":4, "hypogeusia":5, "hypogea":4, "hypogeal":4, "hypogenetic":5, "hypogeous":4, "hypogeum":4, "hypoglossal":4, "hypoglossal nerve":5, "hypoglossis":4, "hypoglottis":4, "hypoglobulia":6, "hypoglycaemia":6, "hypoglycemic":5, "hypoglycemia":6, "hypogonadism":5, "hypogonadia":6, "hypohepatia":6, "hypohidrosis":5, "hypohydrochloria":7, "hypohypophysism":6, "hypoinosemia":7, "hypoidrosis":5, "hypokaliemia":7, "hypokalemic":5, "hypokalemia":6, "hypokinetic":5, "hypokinemia":6, "hypokinesis":5, "hypokinesia":6, "hypolimnetic":5, "hypolimnia":5, "hypolimnion":5, "hypolithic":4, "hypolydian":5, "hypomanic":4, "hypomania":5, "hypomotility":6, "hypomyotonia":7, "hyponastic":4, "hyponastically":6, "hyponasty":4, "hyponatremia":6, "hyponea":4, "hyponitrite":4, "hyponitrous":4, "hyponitrous acid":6, "hyponoia":4, "hypopharynx":4, "hypopharyngoscopy":7, "hypophalangism":5, "hypopharynges":5, "hypopharyngoscope":6, "hypophloeous":4, "hypophloeodal":5, "hypophloeodic":5, "hypophosphate":4, "hypophosphite":4, "hypophosphoric":5, "hypophosphoric acid":7, "hypophosphorous":5, "hypophosphorous acid":7, "hypophonesis":5, "hypophonia":5, "hypophoria":5, "hypophoriphoria":5, "hypophyllous":4, "hypophyseal":5, "hypopiesia":5, "hypopiesis":5, "hypopituitarism":7, "hypoplasia":5, "hypoplastic":4, "hypoplasty":4, "hypoplasia":5, "hypoploid":3, "hypoploidy":4, "hypopodia":5, "hypopodium":5, "hypopotassemic":6, "hypopotassemia":7, "hypopraxia":5, "hypoprosexia":6, "hypoproteinemia":7, "hypoproteinosis":6, "hypopsychosis":5, "hypopyon":4, "hyporight":3, "hyposalemia":6, "hyposarca":4, "hyposensitise":5, "hyposensitize":5, "hyposensitized":5, "hyposensitizing":6, "hyposensitization":7, "hyposecretion":5, "hypospray":3, "hypostatic":4, "hypostatical":5, "hypostatically":6, "hypostome":3, "hypostomial":5, "hypostyle":3, "hyposulfite":4, "hyposulfurous":5, "hyposulphite":4, "hyposulphurous":5, "hyposulphurous acid":7, "hypotactic":4, "hypotaxis":4, "hypotension":4, "hypotensive":4, "hypothalamus":5, "hypothalli":4, "hypothallus":4, "hypothalamic":5, "hypothermal":4, "hypothermia":5, "hypothetic":4, "hypothetical":5, "hypothetical imperative":9, "hypothetically":6, "hypothecia":5, "hypothecial":5, "hypothecium":5, "hypothyroid":4, "hypothyroidism":5, "hypotonic":4, "hypotonicity":6, "hypotrachelia":6, "hypotrachelium":6, "hypotrich":3, "hypotyposis":5, "hypoxanthic":4, "hypoxanthine":4, "hypozeugma":4, "hypozeuxis":4, "hyrax":2, "hyraxes":3, "hyraces":3, "hyracoid":3, "hyracoidian":5, "hyrie":3, "hyson":2, "hythergraph":3, "hyzone":2, "hba":3, "hlsingborg":4, "hbert":3, "hlose":5, "hmon":3, "hrault":3, "hrold":3, "hdmezovsrhely":9, "hlderlin":4, "hgel":3, "hther":3, "hbert":2, "hderlin":3, "hloise":3, "hpersentimental":6, "hrault":2, "hsingborg":3, "i'd":1, "i'll":1, "i'm":1, "i's":1, "i've":1, "i-beam":1, "i-go":1, "i-spy":1, "i-type semiconductor":6, "i/c":1, "i/o":1, "iaea":1, "iaf":1, "iarovize":3, "iarovized":3, "iarovizing":4, "iarovization":5, "ias":1, "iasters":2, "iata":1, "ibn-batuta":3, "ibn-gabiral":3, "ibn-gabirol":3, "ibn-khaldun":2, "ibn-saud":2, "ibn-sina":2, "ibrd":1, "ibarruri":4, "ibices":3, "iblis":2, "ibrahim pasha":5, "ibsen":2, "ibsenism":3, "ibsenian":4, "ibycus":3, "ica":1, "icaaaa":1, "icao":1, "icbm":1, "ice":1, "ice":1, "ice hockey":3, "ice lolly":3, "ice machine":3, "ice needle":3, "ice water":3, "ice-cream soda":3, "iced":1, "icel":1, "iceberg":2, "iceblink":2, "iceboat":2, "iceboating":3, "icebound":2, "icebox":2, "icebreaker":3, "icecap":2, "icefall":2, "icehouse":2, "icehouses":3, "iceland":2, "iceland moss":3, "iceland poppy":4, "iceland spar":3, "icelander":3, "icelandic":3, "icelandic":3, "iceless":2, "icelike":2, "iceman":2, "icftu":1, "ich":1, "ichth":1, "ichabod":3, "ichneumon":3, "ichneumon fly":4, "ichnite":2, "ichnography":4, "ichnology":4, "ichnographic":4, "ichnographically":6, "ichnolite":3, "ichnological":5, "ichthammol":3, "ichthyic":3, "ichthyographer":5, "ichthyography":5, "ichthyoid":3, "ichthyoidal":4, "ichthyol":3, "ichthyologist":5, "ichthyology":5, "ichthyophagist":5, "ichthyophagous":5, "ichthyophagy":5, "ichthyophthirius":6, "ichthyornis":4, "ichthyornis":4, "ichthyotic":4, "ichthyocentaur":5, "ichthyographic":5, "ichthyolite":4, "ichthyolitic":5, "ichthyologic":5, "ichthyologically":7, "ichthyosaur":4, "ichthyosaurus":5, "ichthyosauruses":6, "ichthyosaurian":6, "ichthyosauroid":5, "ichthyosis":4, "icj":1, "icker":2, "ickes":2, "ickier":3, "ickiest":3, "icky":2, "ics":1, "icsh":1, "icarus":3, "icing":2, "icing sugar":4, "icteric":3, "icterical":4, "icterus":3, "ictic":2, "ictinus":3, "ictus":2, "ictuses":3, "ida":1, "idb":1, "ide":1, "ides":1, "idn":1, "iddhi":2, "ideography":5, "ideogram":4, "ideograph":4, "ideographic":5, "ideographically":7, "idiocrasy":5, "idiom":3, "idiopathy":5, "idiorrhythmic":5, "idiorrhythmism":5, "idiorrhythmy":5, "idiot":3, "idiot board":4, "idiotic":4, "idiotise":4, "idiotised":4, "idiotism":4, "idiotising":5, "idiotize":4, "idiotized":4, "idiotizing":5, "idiotical":5, "idiotically":6, "idioticalness":6, "idioblast":4, "idioblastic":5, "idiochromatic":6, "idiocratic":5, "idiocratically":7, "idiocy":4, "idiodynamic":6, "idiodynamics":6, "idioglossia":6, "idioglottic":5, "idiograph":4, "idiographic":5, "idiolect":4, "idiomatic":5, "idiomatical":6, "idiomatically":7, "idiomaticalness":7, "idiomaticity":7, "idiomorphic":5, "idiomorphism":5, "idiomorphically":7, "idiopathic":5, "idiopathically":7, "idiophone":4, "idiophonic":5, "idioplasm":4, "idioplasmatic":6, "idioplasmic":5, "idiosyncratic":6, "idiosyncratically":8, "idiosyncrasy":6, "idiotropic":5, "idmon":2, "idumaea":4, "idumaean":4, "idumea":4, "idumean":4, "idyl":2, "idyll":2, "iee":1, "ierpetrable":4, "ieper":2, "ifc":1, "ifs":1, "iffy":2, "ifni":2, "igfet":1, "iggdrasil":3, "ighly":2, "igm":1, "ign":1, "igy":1, "igbo":2, "igdrasil":3, "igloo":2, "iglu":2, "ignace":2, "ignacia":3, "ignacio":3, "ignatius":3, "ignatius":4, "ignatius loyola":7, "ignescent":3, "igneous":3, "ignis fatuus":5, "ignite":2, "ignitability":6, "ignitable":4, "ignited":3, "igniter":3, "igniting":3, "ignitibility":6, "ignitible":4, "ignition":3, "ignition key":4, "ignitron":3, "ignore":2, "ignored":2, "ignorable":4, "ignorer":3, "ignoring":3, "ignobility":5, "ignoble":3, "ignobleness":4, "ignobly":3, "ignominies":4, "ignominious":5, "ignominiously":6, "ignominiousness":6, "ignominy":4, "ignorance":3, "ignorant":3, "ignorantly":4, "ignorantness":4, "ignoramus":4, "ignoramuses":5, "ignoratio elenchi":8, "ignotum per ignotius":8, "igorrote":4, "igorot":3, "ihs":1, "ihram":2, "iinger":2, "ijssel":2, "ijsselmeer":3, "ijithad":3, "ijma":2, "ijmaa":3, "ike":1, "ike":1, "ikhnaton":3, "ile du diable":4, "ilea":1, "iles comores":3, "iles du salut":4, "ilk":1, "ill":1, "ill":1, "ill feeling":3, "ill humour":3, "ill temper":3, "ill-advised":2, "ill-affected":3, "ill-assorted":3, "ill-behaved":2, "ill-being":2, "ill-boding":2, "ill-conditioned":3, "ill-conditionedness":4, "ill-considered":3, "ill-defined":2, "ill-disposed":2, "ill-fated":2, "ill-favored":2, "ill-favoredly":3, "ill-favoredness":3, "ill-favoured":2, "ill-favouredly":3, "ill-favouredness":3, "ill-founded":2, "ill-gotten":2, "ill-humoredly":3, "ill-humoredness":3, "ill-humoured":2, "ill-humouredly":3, "ill-humouredness":3, "ill-looking":2, "ill-mannered":2, "ill-manneredly":3, "ill-natured":2, "ill-naturedly":3, "ill-naturedness":3, "ill-omened":2, "ill-sorted":2, "ill-suited":2, "ill-temperedly":3, "ill-temperedness":3, "ill-use":1, "ill-usage":2, "ill-wisher":2, "ille-et-vilaine":2, "illus":1, "illust":1, "illdisposedness":5, "illhumor":3, "illhumored":3, "illmanneredness":4, "illnature":3, "illness":2, "illtempered":3, "illtreatment":3, "ilo":1, "ils":1, "ilth":1, "ileac":3, "ileal":3, "ileitis":4, "ileostomy":5, "ileocecal":5, "ileocolitis":6, "iletin":3, "ileum":3, "ileus":3, "ilford":2, "ilia":3, "ilia":3, "iliac":3, "iliad":3, "iliadic":4, "iliamna":4, "ilion":3, "iliocostales":6, "iliocostalis":6, "ilioneus":5, "ilithyia":4, "ilium":3, "ilium":3, "ilka":2, "ilka":2, "ilkeston":3, "ilkley":2, "illaudable":4, "illaudably":4, "illamon":3, "illation":3, "illative":3, "illatively":4, "illawarra":4, "illegibility":6, "illegible":4, "illegibleness":5, "illegibly":4, "illegal":3, "illegalise":4, "illegalised":4, "illegalising":5, "illegalize":4, "illegalized":4, "illegalizing":5, "illegality":5, "illegalization":6, "illegally":4, "illegitimate":5, "illegitimately":6, "illegitimateness":6, "illegitimated":6, "illegitimating":6, "illegitimacy":6, "illegitimation":6, "illegitimatise":6, "illegitimatised":6, "illegitimatising":7, "illegitimatize":6, "illegitimatized":6, "illegitimatizing":7, "illiberal":4, "illiberalise":5, "illiberalism":5, "illiberalising":6, "illiberalize":5, "illiberalized":5, "illiberalizing":6, "illiberality":6, "illiberally":5, "illiberalness":5, "illich":2, "illicit":3, "illicitly":4, "illicitness":4, "illimitability":7, "illimitable":5, "illimitableness":6, "illimitably":5, "illing":2, "illinium":4, "illiquid":3, "illiquidly":4, "illiterate":4, "illiterately":5, "illiterateness":5, "illiteracy":5, "illinois":3, "illinoisan":4, "illinoisian":5, "illinoian":4, "illocution":4, "illogic":3, "illogical":4, "illogicality":6, "illogically":5, "illogicalness":5, "illude":2, "illume":2, "illumed":2, "illuming":3, "illustrate":3, "illustratable":5, "illustrated":4, "illustrating":4, "illustration":4, "illustrational":5, "illustrative":4, "illustratively":5, "illustrator":4, "illustrious":4, "illustriously":5, "illustriousness":5, "illumine":3, "illumined":3, "illumining":4, "illuminance":4, "illuminant":4, "illuminate":4, "illuminated":5, "illuminating":5, "illuminatingly":6, "illuminability":7, "illuminable":5, "illuminati":5, "illuminati":5, "illumination":5, "illuminations":5, "illuminational":6, "illuminative":5, "illuminator":5, "illuminism":4, "illuminist":4, "illuminometer":6, "illuminomeused":6, "illuminomeusing":7, "illusion":3, "illusioned":3, "illusional":4, "illusionary":5, "illusionism":4, "illusionist":4, "illusionistic":5, "illusive":3, "illusively":4, "illusiveness":4, "illusorily":5, "illusoriness":5, "illusory":4, "illuvia":4, "illuvial":4, "illuviate":4, "illuviated":5, "illuviating":5, "illuviation":5, "illuvium":4, "illuviums":4, "illy":2, "illyria":4, "illyrian":4, "illyricum":4, "illyrius":4, "illa":4, "ilmarinen":4, "ilmen":2, "ilmenite":3, "ilse":2, "ilsedore":3, "ilya":2, "imf":1, "imit":1, "imp":1, "imp":1, "imper":1, "impers":1, "impf":1, "impv":1, "imphal":2, "impish":2, "impishly":3, "impishness":3, "impsonite":3, "ims":1, "image":2, "image converter":5, "image intensifier":7, "image orthicon":5, "imaged":2, "imageable":4, "imagery":3, "imager":3, "imagine":3, "imagined":3, "imaging":3, "imagining":4, "imagism":3, "imagist":3, "imagistic":4, "imagistically":6, "imaginal":4, "imaginary":5, "imaginary number":7, "imaginable":5, "imagination":5, "imaginative":5, "imagerial":5, "imagerially":6, "imagoes":3, "imbalm":2, "imbalmment":3, "imbalance":3, "imbark":2, "imbarkment":3, "imbed":2, "imbedded":3, "imbedding":3, "imbecile":3, "imbecilely":4, "imbecilic":4, "imbecility":5, "imbibe":2, "imbibed":2, "imbiber":3, "imbibing":3, "imbitter":3, "imbitterer":4, "imbitterment":4, "imbibition":4, "imbibitional":5, "imbodiment":4, "imbody":3, "imbolden":3, "imbosom":3, "imbower":3, "imbraceries":4, "imbracery":4, "imbrangle":3, "imbrex":2, "imbricate":3, "imbricately":4, "imbrication":4, "imbricative":4, "imbrices":3, "imbrium":3, "imbrius":3, "imbros":2, "imbrown":2, "imbroglio":3, "imbroglio":4, "imbrue":2, "imbrued":2, "imbruement":3, "imbrute":2, "imbrutement":3, "imbruted":3, "imbruting":3, "imbruing":3, "imbue":2, "imbued":2, "imbuement":3, "imbuing":3, "imide":2, "imidazole":4, "imido":3, "imino":3, "imitate":3, "imitated":4, "imitating":4, "imitability":6, "imitable":4, "imitableness":5, "imitation":4, "imitational":5, "imitative":4, "imitatively":5, "imitativeness":5, "imitator":4, "immaculate":4, "immaculate conception":7, "immaculately":5, "immaculateness":5, "immaculacy":5, "immane":2, "immanely":3, "immaneness":3, "immanuel":4, "immaterialise":2, "immanence":3, "immanent":3, "immanentism":4, "immanently":4, "immanency":4, "immaterial":5, "immaterialise":6, "immaterialised":6, "immaterialism":6, "immaterialist":6, "immaterialising":7, "immaterialize":6, "immaterialized":6, "immaterializing":7, "immateriality":7, "immaterially":6, "immaterialness":6, "immature":3, "immaturely":4, "immatureness":4, "immaturity":5, "immeasurability":7, "immeasurable":5, "immeasurableness":6, "immeasurably":5, "immedicable":5, "immedicableness":6, "immedicably":5, "immelmann":3, "immelmann turn":4, "immense":2, "immensely":3, "immenseness":3, "immensity":4, "immensurability":7, "immensurable":5, "immensurableness":6, "immerge":2, "immerged":2, "immerging":3, "immerse":2, "immersed":2, "immersing":3, "immersible":4, "immergence":3, "immersion":3, "immersion heater":5, "immersionism":4, "immersionist":4, "immesh":2, "immediate":4, "immediate annuity":8, "immediate constituent":8, "immediately":5, "immediateness":5, "immediacy":5, "immediatism":5, "immediatist":5, "immemorial":5, "immemorially":6, "immethodical":5, "immethodically":6, "immethodicalness":6, "immingham":3, "immingle":3, "immiscibility":6, "immiscible":4, "immiscibly":4, "immitigability":7, "immitigable":5, "immitigably":5, "immix":2, "immixture":3, "immigrant":3, "immigrate":3, "immigrated":4, "immigrating":4, "immigration":4, "immigrational":5, "immigrator":4, "immigratory":5, "imminence":3, "imminent":3, "imminently":4, "imminentness":4, "imminency":4, "immoderate":4, "immoderately":5, "immoderateness":5, "immoderacy":5, "immoderation":5, "immodest":3, "immodestly":4, "immodesty":4, "immoral":3, "immoralise":4, "immoralised":4, "immoralism":4, "immoralist":4, "immoralising":5, "immoralize":4, "immoralized":4, "immoralizing":5, "immorally":4, "immortal":3, "immortals":3, "immortalise":4, "immortalised":4, "immortaliser":5, "immortalising":5, "immortalize":4, "immortalized":4, "immortalizer":5, "immortalizing":5, "immortalisation":6, "immortality":5, "immortalization":6, "immortally":4, "immortalizable":6, "immortelle":3, "immoveability":6, "immoveable":4, "immoveables":4, "immoveableness":5, "immoveably":4, "immovability":6, "immovable":4, "immovableness":5, "immovably":4, "immobile":3, "immobilism":4, "immobility":5, "immobilise":4, "immobilised":4, "immobilising":5, "immobilize":4, "immobilized":4, "immobilizing":5, "immobilization":6, "immoderate":4, "immokalee":4, "immolate":3, "immolated":4, "immolating":4, "immolation":4, "immolator":4, "immorality":5, "immotile":3, "immune":2, "immure":2, "immured":2, "immurement":3, "immuring":3, "immunise":3, "immunised":3, "immuniser":4, "immunising":4, "immunize":3, "immunized":3, "immunizer":4, "immunizing":4, "immunity":4, "immunization":5, "immunologist":5, "immunology":5, "immunoassay":5, "immunochemistry":6, "immunogenic":5, "immunogenically":7, "immunogenetic":6, "immunogenetics":6, "immunogenetical":7, "immunogenicity":7, "immunoglobulin":6, "immunologic":5, "immunologically":7, "immunoreaction":6, "immunotherapy":6, "immuration":4, "immusical":4, "immusically":5, "immutability":6, "immutable":4, "immutableness":5, "immutably":4, "imnated":3, "imnating":3, "imogen":3, "imogene":3, "impact":2, "impacted":3, "impactful":3, "impactite":3, "impaction":3, "impactive":3, "impair":2, "impairable":4, "impairer":3, "impairment":3, "impale":2, "impaled":2, "impalement":3, "impala":3, "impalas":3, "impaler":3, "impaling":3, "impalpability":6, "impalpable":4, "impalpably":4, "impanel":3, "impaneled":3, "impanelled":3, "impaneling":4, "impanelling":4, "impanelment":4, "impar":2, "impark":2, "imparl":2, "impart":2, "impartable":4, "imparter":3, "impartibility":6, "impartible":4, "impartibly":4, "impartment":3, "imparadise":4, "imparadised":4, "imparadising":5, "imparipinnate":5, "imparisyllabic":6, "imparisyllabic":6, "imparity":4, "imparkation":4, "imparlance":3, "impartation":4, "impartial":3, "impartially":4, "impartiality":6, "impasse":2, "impassability":6, "impassable":4, "impassableness":5, "impassably":4, "impasses":3, "impaste":2, "impasted":3, "impasting":3, "impassion":3, "impassioned":3, "impassionedly":4, "impassionedness":4, "impassionate":4, "impassionately":5, "impassive":3, "impassively":4, "impassiveness":4, "impassivity":5, "impassibility":6, "impassible":4, "impassibleness":5, "impassibly":4, "impastation":4, "impasto":3, "impavid":3, "impavidly":4, "impawn":2, "impala":3, "impanation":4, "impanator":4, "impatience":3, "impatient":3, "impatiently":4, "impatientness":4, "impatiens":4, "impavidity":5, "impeach":2, "impeachability":6, "impeachable":4, "impeacher":3, "impeachment":3, "impearl":2, "impeccance":3, "impeccant":3, "impeccancy":4, "impeccability":6, "impeccable":4, "impeccably":4, "impeccunious":5, "impede":2, "impedance":3, "impeded":3, "impeder":3, "impeding":3, "impedingly":4, "impedibility":6, "impedible":4, "impediment":4, "impedimenta":5, "impedimental":5, "impeditive":4, "impel":2, "impelled":2, "impellent":3, "impeller":3, "impelling":3, "impend":2, "impendence":3, "impendent":3, "impendency":4, "impending":3, "impenetrability":7, "impenetrable":5, "impenetrableness":6, "impenetrably":5, "impenitence":4, "impenitent":4, "impenitently":5, "impenitentness":5, "impenitency":5, "impennate":3, "imperative":4, "imperatively":5, "imperativeness":5, "imperatival":5, "imperativally":6, "imperatorial":6, "imperatorially":7, "imperception":4, "imperceptive":4, "imperceptiveness":5, "imperceptivity":6, "imperceptibility":7, "imperceptible":5, "imperceptibleness":6, "imperceptibly":5, "impercipience":5, "impercipient":5, "imperfect":3, "imperfect competition":7, "imperfectibility":7, "imperfectible":5, "imperfectly":4, "imperfectness":4, "imperfection":4, "imperfective":4, "imperforate":4, "imperforated":5, "imperforation":5, "imperil":3, "imperiled":3, "imperilled":3, "imperiling":4, "imperilling":4, "imperilment":4, "imperishability":7, "imperishable":5, "imperishableness":6, "imperishably":5, "impermanence":4, "impermanent":4, "impermanently":5, "impermanency":5, "impermeability":7, "impermeable":5, "impermeableness":6, "impermeably":5, "impermissibility":7, "impermissible":5, "imperscriptible":5, "impersonal":4, "impersonalise":5, "impersonalised":5, "impersonalism":5, "impersonalising":6, "impersonalize":5, "impersonalized":5, "impersonalizing":6, "impersonality":6, "impersonalization":7, "impersonally":5, "impersonate":4, "impersonated":5, "impersonating":5, "impersonation":5, "impersonator":5, "impertinence":4, "impertinent":4, "impertinently":5, "impertinentness":5, "impertinency":5, "imperturbability":6, "imperturbable":5, "imperturbableness":6, "imperturbably":5, "imperturbation":5, "imperviable":5, "impervious":4, "imperviously":5, "imperviousness":5, "impetuosity":6, "impetuous":4, "impetuously":5, "impetuousness":5, "impecuniosity":7, "impecunious":5, "impecuniously":6, "impecuniousness":6, "impedient":4, "imperator":4, "imperatorship":5, "imperia":3, "imperia":4, "imperial":4, "imperial":4, "imperial gallon":6, "imperialise":5, "imperialised":5, "imperialism":5, "imperialist":5, "imperialising":6, "imperialistic":6, "imperialistically":8, "imperialize":5, "imperialized":5, "imperializing":6, "imperialization":7, "imperially":5, "imperialness":5, "imperious":4, "imperiously":5, "imperiousness":5, "imperium":4, "impetiginous":5, "impetigo":4, "impetrate":3, "impetrated":4, "impetrating":4, "impetration":4, "impetrative":4, "impetrator":4, "impetratory":5, "impetus":3, "impetuses":4, "imphal":2, "impi":2, "impignorate":4, "impignorated":5, "impignorating":5, "impignoration":5, "impinge":2, "impinged":2, "impingement":3, "impingement attack":5, "impingent":3, "impinger":3, "impinging":3, "impiety":4, "impious":3, "impiously":4, "impiousness":4, "implacability":6, "implacable":4, "implacableness":5, "implacably":4, "implant":2, "implanter":3, "implantation":4, "implausibility":6, "implausible":4, "implausibly":4, "implacental":4, "implacentate":4, "implead":2, "impleadable":4, "impleader":3, "implement":3, "implementer":4, "implemental":4, "implementation":5, "implementor":4, "impletion":3, "implicit":3, "implicitly":4, "implicitness":4, "implicity":4, "implied":2, "implicate":3, "implicated":4, "implicating":4, "implication":4, "implicational":5, "implicative":4, "implicatively":5, "implicatory":5, "impliedly":4, "implode":2, "imploded":3, "imploding":3, "implore":2, "implored":2, "implorable":4, "imploratory":5, "implorer":3, "imploring":3, "imploringly":4, "imploringness":4, "imploration":4, "implosion":3, "implosive":3, "implosively":4, "impluvia":4, "impluvium":4, "imply":2, "implying":3, "impolder":3, "impolicy":4, "impolitic":4, "impoliticly":5, "impoliticness":5, "impone":2, "imponed":2, "imponderabilia":7, "imponderability":7, "imponderable":5, "imponderableness":6, "imponderably":5, "imponderabilia":7, "imponing":3, "import":2, "importability":6, "importable":4, "importer":3, "importance":3, "important":3, "importantly":4, "importation":4, "importee":3, "importune":3, "importuned":3, "importunely":4, "importuner":4, "importuning":4, "importunate":4, "importunately":5, "importunateness":5, "importunacy":5, "importunity":5, "impose":2, "imposed":2, "impost":2, "imposter":3, "imposable":4, "imposer":3, "imposing":3, "imposing stone":4, "imposingly":4, "imposingness":4, "impossibility":6, "impossible":4, "impossibleness":5, "impossibly":4, "imposthume":3, "impostor":3, "impostrous":3, "impostume":3, "imposture":3, "impound":2, "impoundage":3, "impoundable":4, "impounder":3, "impoundment":3, "impoverish":4, "impoverished":4, "impoverisher":5, "impoverishment":5, "impower":3, "impolite":3, "impolitely":4, "impoliteness":4, "imponent":3, "imposition":4, "imposure":3, "impotence":3, "impotent":3, "impotently":4, "impotentness":4, "impotency":4, "impractical":4, "impracticality":6, "impracticalness":5, "impracticability":7, "impracticable":5, "impracticableness":6, "impracticably":5, "impregnate":3, "impregnability":6, "impregnable":4, "impregnableness":5, "impregnably":4, "impregnatable":5, "impregnation":4, "impregnator":4, "impregnatory":5, "imprese":2, "impress":2, "impresser":3, "impressibility":6, "impressible":4, "impressibleness":5, "impressibly":4, "impressment":3, "imprest":2, "impressing":3, "impression":3, "impressional":4, "impressionally":5, "impressionability":7, "impressionable":5, "impressionableness":6, "impressionably":5, "impressionism":4, "impressionist":4, "impressionistic":5, "impressionistically":7, "impressionless":4, "impressive":3, "impressively":4, "impressiveness":4, "impressure":3, "imprecate":3, "imprecated":4, "imprecating":4, "imprecation":4, "imprecator":4, "imprecatorily":6, "imprecatory":5, "imprecise":3, "imprecisely":4, "impreciseness":4, "imprecision":4, "impresa":3, "impresari":4, "impresario":5, "impresarios":5, "imprescriptibility":7, "imprescriptible":5, "imprescriptibly":5, "imprint":2, "imprinter":3, "imprinting":3, "imprison":3, "imprisonable":5, "imprisoner":4, "imprisonment":4, "imprimatur":4, "imprimatura":5, "imprimis":3, "improbability":6, "improbable":4, "improbableness":5, "improbably":4, "impromptu":3, "improper":3, "improper fraction":5, "improper integral":6, "improperly":4, "improperness":4, "improve":2, "improved":2, "improvement":3, "improvability":6, "improvable":4, "improvableness":5, "improvably":4, "improver":3, "improving":3, "improvingly":4, "improvidence":4, "improvident":4, "improvidently":5, "improvisation":5, "improvisational":6, "improvisator":5, "improvisatorial":7, "improvisatorially":8, "improvvisatore":6, "improbity":4, "improperia":5, "impropriate":4, "impropriated":5, "impropriating":5, "impropriation":5, "impropriator":5, "impropriety":5, "improvise":3, "improvised":3, "improvisedly":5, "improviser":4, "improvising":4, "improvisatory":6, "imprudence":3, "imprudent":3, "imprudently":4, "imprudentness":4, "imprudency":4, "impugn":2, "impugnability":6, "impugnable":4, "impugner":3, "impugnment":3, "impulse":2, "impulse buying":4, "impulse turbine":4, "impulsion":3, "impulsive":3, "impulsively":4, "impulsiveness":4, "impure":2, "impurely":3, "impureness":3, "impute":2, "imputability":6, "imputable":4, "imputableness":5, "imputably":4, "imputative":4, "imputatively":5, "imputativeness":5, "imputed":3, "imputedly":4, "imputer":3, "imputting":3, "impudence":3, "impudent":3, "impudently":4, "impudentness":4, "impudency":4, "impudicity":5, "impuissance":4, "impuissant":4, "impunitive":4, "impunity":4, "impurity":4, "imputation":4, "imputrescibility":7, "imputrescible":5, "imre":2, "imroz":2, "in absentia":5, "in aeternum":4, "in camera":4, "in esse":3, "in extenso":4, "in extremis":4, "in flagrante delicto":7, "in loco parentis":6, "in medias res":5, "in memoriam":5, "in nomine":4, "in perpetuum":5, "in personam":4, "in petto":3, "in posse":3, "in propria persona":7, "in rerum natura":6, "in situ":3, "in toto":3, "in utero":5, "in vacuo":4, "in vino veritas":6, "in vitro":3, "in vivo":3, "in-and-outer":2, "in-between":2, "in-car":1, "in-clearer":2, "in-clearing":2, "in-goal":1, "in-law":1, "in-line":1, "in-off":1, "in-service":2, "inbd":1, "inc":1, "inch":1, "inchmeal":2, "inchworm":2, "incl":1, "incog":1, "incor":1, "incorp":1, "incr":1, "ind":1, "ind":1, "ind":1, "indef":1, "indic":1, "indiv":1, "individ":1, "induc":1, "inf":1, "inf":1, "infin":1, "infl":1, "informater":2, "inge":1, "ingemar":3, "ingmar":2, "ingvaeonic":4, "ingveonic":4, "ingwaeonic":4, "ingweonic":4, "init":1, "ink":1, "ink-cap":1, "inkberry":3, "inkblot":2, "inker":2, "inkerman":3, "inkhorn":2, "inkhorn term":3, "inkier":3, "inkiest":3, "inkiness":3, "inkless":2, "inklike":2, "inkling":2, "inkpot":2, "inkstand":2, "inkster":2, "inkwell":2, "inkwood":2, "inky":2, "inn":1, "inn":1, "innsbruck":2, "innage":2, "innholder":3, "innkeeper":3, "innless":2, "inorg":1, "inri":1, "ins":1, "ins":1, "insp":1, "inst":1, "inst":1, "instr":1, "insurance":2, "int":1, "intens":1, "inter":1, "interj":1, "intl":1, "intr":1, "intrans":1, "intro":1, "intuc":1, "inv":1, "invt":1, "invty":1, "inaccessibility":7, "inaccessible":5, "inaccessibleness":6, "inaccessibly":5, "inaccurate":4, "inaccurately":5, "inaccurateness":5, "inaccuracy":5, "inaction":3, "inactive":3, "inactively":4, "inactiveness":4, "inactivity":5, "inactivate":4, "inactivated":5, "inactivating":5, "inactivation":5, "inadequate":4, "inadequately":5, "inadequateness":5, "inadequacy":5, "inadmissibility":7, "inadmissible":5, "inadmissibly":5, "inadvertence":4, "inadvertent":4, "inadvertently":5, "inadvertency":5, "inadvisability":7, "inadvisable":5, "inadvisableness":6, "inadvisably":5, "inalienability":7, "inalienable":5, "inalienableness":6, "inalienably":5, "inalterability":7, "inalterable":5, "inalterableness":6, "inalterably":5, "inamorata":5, "inamorato":5, "inane":2, "inanely":3, "inanimate":4, "inanimately":5, "inanimateness":5, "inanimation":5, "inanity":4, "inapt":2, "inaptly":3, "inaptness":3, "inappeasable":5, "inappellable":5, "inappetence":4, "inappetent":4, "inappetency":5, "inapplicability":7, "inapplicable":5, "inapplicableness":6, "inapplicably":5, "inapposite":4, "inappositely":5, "inappositeness":5, "inappreciable":5, "inappreciative":5, "inappreciable":6, "inappreciably":6, "inappreciative":6, "inappreciatively":7, "inappreciativeness":7, "inapprehension":5, "inapprehensive":5, "inapprehensively":6, "inapprehensiveness":6, "inapprehensible":6, "inapproachability":7, "inapproachable":5, "inapproachably":5, "inappropriate":5, "inappropriately":6, "inappropriateness":6, "inaptitude":4, "inarch":2, "inarm":2, "inarguable":5, "inarguably":5, "inarticulate":5, "inarticulately":6, "inarticulateness":6, "inartistic":4, "inartistical":5, "inartistically":6, "inartificial":5, "inartificially":6, "inartificialness":6, "inartificiality":8, "inasmuch as":4, "inattention":4, "inattentive":4, "inattentively":5, "inattentiveness":5, "inauspicious":4, "inauspiciously":5, "inauspiciousness":5, "inaudibility":6, "inaudible":4, "inaudibleness":5, "inaudibly":4, "inaugural":4, "inaugurate":4, "inaugurated":5, "inaugurating":5, "inauguration":5, "inauguration day":6, "inaugurator":5, "inability":5, "inachus":3, "inadaptability":7, "inadaptable":5, "inanition":4, "inbeing":3, "inbetweener":4, "inboard":2, "inboard-rigged":2, "inbond":2, "inborn":2, "inbound":2, "inbreathe":2, "inbreathed":2, "inbreathing":3, "inbred":2, "inbreed":2, "inbreeding":3, "inburst":2, "inby":2, "inca":2, "incage":2, "incaged":2, "incaging":3, "incalculability":7, "incalculable":5, "incalculableness":6, "incalculably":5, "incan":2, "incandesce":3, "incandesced":3, "incandescing":4, "incandescence":4, "incandescent":4, "incandescent lamp":5, "incandescently":5, "incandescency":5, "incantation":4, "incantational":5, "incantatory":5, "incaparina":5, "incapsulate":4, "incarcerate":4, "incarcerated":5, "incarcerating":5, "incarceration":5, "incarcerative":5, "incarcerator":5, "incardinate":4, "incardinated":5, "incardinating":5, "incardination":5, "incarnalise":4, "incarnalised":4, "incarnalising":5, "incarnalize":4, "incarnalized":4, "incarnalizing":5, "incarnate":3, "incarnated":4, "incarnating":4, "incarnadine":4, "incarnadined":4, "incarnadining":5, "incarnation":4, "incarnation":4, "incarnational":5, "incase":2, "incased":2, "incasement":3, "incasing":3, "incaution":3, "incautious":3, "incautiously":4, "incautiousness":4, "incabloc":3, "incaic":3, "incalescence":4, "incalescent":4, "incapacitate":5, "incapacitated":6, "incapacitating":6, "incapacitation":6, "incapacity":5, "incapability":6, "incapable":4, "incapableness":5, "incapably":4, "incapacious":4, "incapaciousness":5, "incense":2, "incensed":2, "incensement":3, "incensing":3, "incendiaries":5, "incendiary":5, "incendiarism":5, "incensory":4, "incenter":3, "incentive":3, "incentively":4, "incept":2, "inception":3, "inceptive":3, "inceptively":4, "inceptor":3, "incertitude":4, "incest":2, "incessant":3, "incessantly":4, "incessantness":4, "incessancy":4, "incestuous":4, "incestuously":5, "incestuousness":5, "incheon":2, "inchon":2, "inchoate":3, "inchoately":4, "inchoateness":4, "inchoation":4, "inchoative":4, "incinerate":4, "incinerated":5, "incinerating":5, "incineration":5, "incinerator":5, "incipience":4, "incipient":4, "incipiently":5, "incipiency":5, "incise":2, "incised":2, "incising":3, "incisure":3, "incisural":4, "incite":2, "incitement":3, "incitant":3, "incited":3, "inciter":3, "inciting":3, "incitingly":4, "incivil":3, "incidence":3, "incident":3, "incidentless":4, "incidental":4, "incidental music":6, "incidentally":5, "incidentalness":5, "incienso":4, "incipit":3, "incision":3, "incisive":3, "incisively":4, "incisiveness":4, "incisor":3, "incisory":4, "incisure":3, "incitation":4, "incivility":5, "incivism":3, "inclasp":2, "inclement":3, "inclemently":4, "inclementness":4, "inclemency":4, "incline":2, "inclined":2, "inclined plane":3, "inclined railway":4, "inclinable":4, "incliner":3, "inclining":3, "inclination":4, "inclinational":5, "inclinatorily":6, "inclinatory":5, "inclinometer":5, "inclose":2, "inclosed":2, "incloser":3, "inclosing":3, "inclosure":3, "include":2, "include out":3, "includable":4, "included":3, "includedness":4, "including":3, "includible":4, "incluse":2, "inclusion":3, "inclusion body":5, "inclusive":3, "inclusive or":4, "inclusively":4, "inclusiveness":4, "inco-ordinate":4, "inco-ordination":5, "incog":2, "incogitant":4, "incogitantly":5, "incogitability":7, "incogitable":5, "incognita":4, "incognito":4, "incognito":4, "incognizance":4, "incognizant":4, "income":2, "income bond":3, "income group":3, "income tax":3, "incomeless":3, "incombustibility":7, "incombustible":5, "incombustibleness":6, "incombustibly":5, "incomer":3, "incoming":3, "incommensurate":5, "incommensurately":6, "incommensurateness":6, "incommensurability":8, "incommensurable":6, "incommensurableness":7, "incommensurably":6, "incommode":3, "incommoded":4, "incommoding":4, "incommodity":5, "incommodious":5, "incommodiously":6, "incommodiousness":6, "incommutability":7, "incommutable":5, "incommutableness":6, "incommutably":5, "incommunicability":8, "incommunicable":6, "incommunicableness":7, "incommunicably":6, "incommunicado":6, "incommunicative":6, "incommunicatively":7, "incommunicativeness":7, "incompact":3, "incompactly":4, "incompactness":4, "incompatibility":7, "incompatible":5, "incompatibleness":6, "incompatibly":5, "incomparability":7, "incomparable":5, "incomparableness":6, "incomparably":5, "incompetence":4, "incompetent":4, "incompetently":5, "incompetency":5, "incomplete":3, "incompletely":4, "incompleteness":4, "incompletion":4, "incompliance":4, "incompliant":4, "incompliantly":5, "incompliancy":5, "incompressibility":7, "incompressible":5, "incompressibly":5, "incomprehension":5, "incomprehensive":5, "incomprehensively":6, "incomprehensiveness":6, "incomprehensibility":8, "incomprehensible":6, "incomprehensibleness":7, "incomprehensibly":6, "incomputable":5, "incomputably":5, "inconceivability":7, "inconceivable":5, "inconceivableness":6, "inconceivably":5, "inconclusive":4, "inconclusively":5, "inconclusiveness":5, "incondensability":7, "incondensable":5, "incondensibility":7, "incondensible":5, "incondite":3, "inconformity":5, "incongruence":4, "incongruent":4, "incongruently":5, "incongruity":5, "incongruous":4, "incongruously":5, "incongruousness":5, "inconnu":3, "inconsecutive":5, "inconsecutively":6, "inconsecutiveness":6, "inconsequence":4, "inconsequent":4, "inconsequently":5, "inconsequentness":5, "inconsequential":5, "inconsequentially":6, "inconsequentia":6, "inconsequentiality":8, "inconsiderate":5, "inconsiderately":6, "inconsiderateness":6, "inconsiderable":6, "inconsiderableness":7, "inconsiderably":6, "inconsideration":6, "inconsistence":4, "inconsistent":4, "inconsistently":5, "inconsistency":5, "inconsolability":7, "inconsolable":5, "inconsolableness":6, "inconsolably":5, "inconsonance":4, "inconsonant":4, "inconsonantly":5, "inconspicuous":5, "inconspicuously":6, "inconspicuousness":6, "inconstant":3, "inconstantly":4, "inconstancy":4, "inconsumable":5, "inconsumably":5, "incontestability":7, "incontestable":5, "incontestableness":6, "incontestably":5, "incontinuous":5, "incontinence":4, "incontinent":4, "incontinently":5, "incontinency":5, "incontinuity":6, "incontrollable":5, "incontrollably":5, "incontrovertibility":8, "incontrovertible":6, "incontrovertibleness":7, "incontrovertibly":6, "inconvenience":4, "inconvenienced":4, "inconveniencing":5, "inconvenient":4, "inconveniently":5, "inconveniency":5, "inconvertibility":7, "inconvertible":5, "inconvertibleness":6, "inconvertibly":5, "inconvincibility":7, "inconvincible":5, "inconvincibly":5, "incorporate":4, "incorporated":5, "incorporatedness":6, "incorporating":5, "incorporable":5, "incorporation":5, "incorporative":5, "incorporator":5, "incorporeal":5, "incorporeality":7, "incorporeally":6, "incorporeity":6, "incorrect":3, "incorrectly":4, "incorrectness":4, "incorrigibility":7, "incorrigible":5, "incorrigibleness":6, "incorrigibly":5, "incorrupt":3, "incorrupted":4, "incorruptibility":7, "incorruptible":5, "incorruptibleness":6, "incorruptibly":5, "incorruptly":4, "incorruptness":4, "incorruption":4, "incoercible":5, "incoherence":4, "incoherent":4, "incoherently":5, "incoherency":5, "incoordinate":5, "incoordination":6, "incordinate":5, "incordination":7, "incrassate":3, "incrassated":4, "incrassating":4, "incrassation":4, "incrassative":4, "increase":2, "increased":2, "increasable":4, "increasedly":4, "increaser":3, "increasing":3, "increasingly":4, "incredibility":6, "incredible":4, "incredibleness":5, "incredibly":4, "incredulous":4, "incredulously":5, "incredulousness":5, "increscence":3, "increscent":3, "increate":3, "increately":4, "incredulity":5, "increment":3, "incremental":4, "incremental plotter":6, "incremental recorder":7, "incretion":3, "incretionary":5, "incretory":4, "incriminate":4, "incriminated":5, "incriminating":5, "incrimination":5, "incriminator":5, "incriminatory":6, "incross":2, "incrust":2, "incrustant":3, "incrustation":4, "incult":2, "inculcate":3, "inculcated":4, "inculcating":4, "inculcation":4, "inculcative":4, "inculcator":4, "inculpate":3, "inculpated":4, "inculpating":4, "inculpability":6, "inculpable":4, "inculpableness":5, "inculpably":4, "inculpation":4, "inculpatory":5, "incumbent":3, "incumbently":4, "incumbency":4, "incumber":3, "incumbrance":3, "incur":2, "incurred":2, "incurve":2, "incurved":2, "incurving":3, "incurability":6, "incurable":4, "incurableness":5, "incurably":4, "incurrable":4, "incurrence":3, "incurrent":3, "incurring":3, "incursion":3, "incursive":3, "incurvate":3, "incurvature":4, "incus":2, "incuse":2, "incused":2, "incusing":3, "incubate":3, "incubated":4, "incubating":4, "incubation":4, "incubation period":7, "incubational":5, "incubative":4, "incubator":4, "incubatory":5, "incubous":3, "incubus":3, "incudate":3, "incudes":3, "incunabula":5, "incunabular":5, "incuriosity":6, "incurious":4, "incuriously":5, "indanthrene":3, "indaba":3, "indagate":3, "indagated":4, "indagating":4, "indagation":4, "indagative":4, "indagator":4, "indamine":3, "inde":2, "indebt":2, "indebted":3, "indebtedness":4, "indecorous":4, "indecorously":5, "indecorousness":5, "indeed":2, "indefinite":4, "indefinite article":7, "indefinite integral":7, "indefinite pronoun":6, "indefinitely":5, "indefiniteness":5, "indelibility":6, "indelible":4, "indelibleness":5, "indelibly":4, "indelicate":4, "indelicately":5, "indelicateness":5, "indelicacy":5, "indemnificatory":7, "indemnified":4, "indemnification":6, "indemnifier":5, "indemnify":4, "indemnifying":5, "indemnitee":4, "indemnitor":4, "indemnity":4, "indene":2, "indent":2, "indented":3, "indenter":3, "indentation":4, "indention":3, "indentor":3, "indenture":3, "indentured":3, "indentureship":4, "indenturing":4, "index":2, "index finger":4, "index librorum prohibitorum":10, "index number":4, "index of refraction":6, "index-linked":2, "indexer":3, "indexes":3, "indexical":4, "indexically":5, "indexless":3, "indecent":3, "indecent assault":5, "indecent exposure":6, "indecently":4, "indecency":4, "indeciduate":5, "indeciduous":5, "indecipherability":8, "indecipherable":6, "indecipherableness":7, "indecipherably":6, "indecision":4, "indecisive":4, "indecisively":5, "indecisiveness":5, "indeclinable":5, "indeclinableness":6, "indeclinably":5, "indecomposable":6, "indecomposableness":7, "indecorum":4, "indefatigability":8, "indefatigable":6, "indefatigableness":7, "indefatigably":6, "indefeasibility":7, "indefeasible":5, "indefeasibleness":6, "indefeasibly":5, "indefectibility":7, "indefectible":5, "indefectibly":5, "indefective":4, "indefensibility":7, "indefensible":5, "indefensibleness":6, "indefensibly":5, "indefinable":5, "indefinableness":6, "indefinably":5, "indehiscence":4, "indehiscent":4, "indeliberate":5, "indeliberately":6, "indeliberateness":6, "indeliberation":6, "indemonstrability":7, "indemonstrable":5, "indemonstrableness":6, "indemonstrably":5, "independence":4, "independence":4, "independence day":5, "independent":4, "independent":4, "independent clause":5, "independent school":5, "independent variable":8, "independently":5, "independency":5, "independency":5, "indescribability":7, "indescribable":5, "indescribableness":6, "indescribably":5, "indestructibility":7, "indestructible":5, "indestructibleness":6, "indestructibly":5, "indeterminate sentence":7, "indeterminism":5, "indeterminist":5, "indeterministic":6, "indeterminate":5, "indeterminately":6, "indeterminateness":6, "indeterminable":6, "indeterminableness":7, "indeterminably":6, "indeterminacy":6, "indeterminacy principle":9, "indetermination":6, "indevout":3, "indevoutly":4, "indic":2, "indict":2, "indictable":4, "indictably":4, "indicter":3, "indictment":3, "indictor":3, "indicative":4, "indicatively":5, "indicatory":5, "indicolite":4, "indiction":3, "indictional":4, "indienne":2, "indies":2, "indifference":4, "indifferent":4, "indifferentism":5, "indifferentist":5, "indifferently":5, "indifferency":5, "indign":2, "indignly":3, "indigenous":4, "indigenously":5, "indigenousness":5, "indigitation":5, "indigites":4, "indignant":3, "indignantly":4, "indignation":4, "indignity":4, "indigotin":4, "indiscernibility":7, "indiscernible":5, "indiscernibleness":6, "indiscernibly":5, "indiscerptibility":7, "indiscerptible":5, "indiscerptibleness":6, "indiscerptibly":5, "indiscipline":4, "indiscoverable":6, "indiscreet":3, "indiscreetly":4, "indiscreetness":4, "indiscrete":3, "indiscretion":4, "indiscretionary":6, "indiscriminate":5, "indiscriminately":6, "indiscriminateness":6, "indiscriminating":6, "indiscriminatingly":7, "indiscrimination":6, "indiscriminative":6, "indispensability":7, "indispensable":5, "indispensableness":6, "indispensably":5, "indispose":3, "indisposed":3, "indisposedness":5, "indisposing":4, "indisposition":5, "indisputability":7, "indisputable":5, "indisputableness":6, "indisputably":5, "indissolubility":7, "indissoluble":5, "indissolubleness":6, "indissolubly":5, "indistinct":3, "indistinctly":4, "indistinctness":4, "indistinctive":4, "indistinctively":5, "indistinctiveness":5, "indistinguishability":8, "indistinguishable":6, "indistinguishableness":7, "indistinguishably":6, "indite":2, "inditement":3, "indited":3, "inditer":3, "inditing":3, "india":3, "india ink":4, "india paper":5, "india print":4, "india rubber":5, "indian":3, "indian agent":5, "indian bread":4, "indian cholera":6, "indian club":4, "indian corn":4, "indian desert":5, "indian empire":5, "indian file":4, "indian giver":5, "indian hemp":4, "indian ink":4, "indian liquorice":6, "indian list":4, "indian mallow":5, "indian meal":4, "indian millet":5, "indian mulberry":6, "indian mutiny":6, "indian national congress":8, "indian ocean":5, "indian pipe":4, "indian red":4, "indian reserve":5, "indian rice":4, "indian rope-trick":4, "indian summer":5, "indian sweater":5, "indian territory":7, "indian tobacco":6, "indian wrestling":5, "indiana":4, "indianapolis":6, "indianise":4, "indianised":4, "indianising":5, "indianize":4, "indianized":4, "indianizing":5, "indianian":5, "indianization":6, "indiaman":4, "indianola":5, "indican":3, "indicant":3, "indicate":3, "indicatable":5, "indicated":4, "indicating":4, "indication":4, "indicator":4, "indicator diagram":7, "indices":3, "indicial":3, "indicially":4, "indicia":4, "indicias":4, "indicium":4, "indigen":3, "indigence":3, "indigene":3, "indigent":3, "indigently":4, "indigenity":5, "indiges":3, "indigested":4, "indigestibility":7, "indigestible":5, "indigestibleness":6, "indigestibly":5, "indigestion":4, "indigestive":4, "indigo":3, "indigo blue":4, "indigo bunting":5, "indigo snake":4, "indigo-blue":3, "indigoid":3, "indigotic":4, "indio":3, "indira":3, "indirect":3, "indirect discourse":5, "indirect lighting":5, "indirect object":5, "indirect question":5, "indirect speech":4, "indirect tax":4, "indirectly":4, "indirectness":4, "indirection":4, "indium":3, "indivertible":5, "indivertibly":5, "individual":5, "individualise":6, "individualised":6, "individualism":6, "individualist":6, "individualiser":7, "individualising":7, "individualistic":7, "individualistically":9, "individualize":6, "individualized":6, "individualizer":7, "individualizing":7, "individuality":7, "individualization":8, "individually":6, "individuate":5, "individuated":6, "individuating":6, "individuation":6, "individuator":6, "indivisibility":7, "indivisible":5, "indivisibleness":6, "indivisibly":5, "indo-aryan":4, "indo-british":3, "indo-china":3, "indo-european":5, "indo-europeanist":6, "indo-germanic":4, "indo-hittite":3, "indo-iranian":5, "indo-malayan":4, "indo-pacific":4, "indocile":3, "indoctrinate":4, "indoctrinated":5, "indoctrinating":5, "indoctrination":5, "indoctrinator":5, "indoctrinize":4, "indoctrinized":4, "indoctrinizing":5, "indoctrinization":6, "indol":2, "indole":2, "indoleacetic acid":7, "indolebutyric acid":7, "indologist":4, "indomitability":7, "indomitable":5, "indomitableness":6, "indomitably":5, "indoor":2, "indoors":2, "indore":2, "indorse":2, "indorsed":2, "indorsee":2, "indorsement":3, "indorsable":4, "indorser":3, "indorsing":3, "indorsee":3, "indorsor":3, "indoxyl":3, "indochina":4, "indochinese":4, "indocile":3, "indocility":5, "indolence":3, "indolent":3, "indolently":4, "indologenous":5, "indomethacin":5, "indonesia":4, "indonesian":4, "indonesia":5, "indonesian":5, "indophenol":4, "indra":2, "indraft":2, "indraught":2, "indrawn":2, "indrani":3, "indre":2, "indre-et-loire":2, "indri":2, "indris":2, "induce":2, "induced":2, "induced drag":3, "inducement":3, "induct":2, "inductance":3, "inducer":3, "inducing":3, "inducible":4, "inductee":3, "inductile":3, "inductility":5, "induction":3, "induction coil":4, "induction hardening":6, "induction heating":5, "induction motor":5, "inductionless":4, "inductive":3, "inductively":4, "inductiveness":4, "inductor":3, "inductothermy":5, "indue":2, "indued":2, "indulge":2, "indulged":2, "indulger":3, "indulging":3, "indulgingly":4, "indult":2, "indulgence":3, "indulgenced":3, "indulgencing":4, "indulgent":3, "indulgently":4, "indulgency":4, "indus":2, "industrial":4, "industrial action":6, "industrial archaeology":9, "industrial design":6, "industrial estate":6, "industrial revolution":8, "industrial relations":7, "industrial union":6, "industrials":4, "industrialise":5, "industrialised":5, "industrialism":5, "industrialist":5, "industrialising":6, "industrialize":5, "industrialized":5, "industrializing":6, "industrialization":7, "industrially":5, "industrialness":5, "industrious":4, "industriously":5, "industriousness":5, "industry":3, "indubitability":7, "indubitable":5, "indubitableness":6, "indubitably":5, "induing":3, "indulin":3, "induline":3, "indumentum":4, "induna":3, "induplicate":4, "induplicated":5, "induplication":5, "indurate":3, "indurated":4, "indurating":4, "induration":4, "indurative":4, "indusia":4, "indusial":4, "indusiate":4, "indusium":4, "indwell":2, "indweller":3, "indwelling":3, "indwelt":2, "indy":2, "inearth":2, "inedited":4, "inedibility":6, "inedible":4, "inedita":4, "ineducability":7, "ineducable":5, "ineducation":5, "ineffaceability":7, "ineffaceable":5, "ineffaceably":5, "ineffability":6, "ineffable":4, "ineffableness":5, "ineffably":4, "ineffective":4, "ineffectively":5, "ineffectiveness":5, "ineffectual":5, "ineffectuality":7, "ineffectually":6, "ineffectualness":6, "inefficacity":6, "inefficacious":5, "inefficaciously":6, "inefficaciousness":6, "inefficacy":5, "inefficient":4, "inefficiently":5, "inefficiency":5, "inelegance":4, "inelegant":4, "inelegantly":5, "inelegancy":5, "ineligibility":7, "ineligible":5, "ineligibleness":6, "ineligibly":5, "ineloquence":4, "ineloquent":4, "ineloquently":5, "inept":2, "ineptitude":4, "ineptly":3, "ineptness":3, "inequable":4, "inequitable":5, "inequitableness":6, "inequitably":5, "inequity":4, "inert":2, "inert gas":3, "inertance":3, "inertly":3, "inertness":3, "inerrant":3, "inerrantly":4, "inerrancy":4, "inerratic":4, "inerrability":6, "inerrable":4, "inerrableness":5, "inerrably":4, "inertia":3, "inertia selling":5, "inertia-reel seat-belt":4, "inertial":3, "inertial guidance":5, "inertial mass":4, "inertial system":5, "inescapable":5, "inescapableness":6, "inescapably":5, "inescutcheon":4, "inessential":4, "inessentiality":7, "inessive":3, "inestimability":7, "inestimable":5, "inestimableness":6, "inestimably":5, "inevitability":7, "inevitable":5, "inevitableness":6, "inevitably":5, "inexact":3, "inexactitude":5, "inexactly":4, "inexactness":4, "inexcusability":7, "inexcusable":5, "inexcusableness":6, "inexcusably":5, "inexertion":4, "inexecution":5, "inexhaustibility":7, "inexhaustible":5, "inexhaustibleness":6, "inexhaustibly":5, "inexistence":4, "inexistent":4, "inexistency":5, "inexorability":7, "inexorable":5, "inexorableness":6, "inexorably":5, "inexpensive":4, "inexpensively":5, "inexpensiveness":5, "inexpert":3, "inexpertly":4, "inexpertness":4, "inexpedience":5, "inexpedient":5, "inexpediently":6, "inexpediency":6, "inexperience":5, "inexperienced":5, "inexpiate":4, "inexpiable":5, "inexpiableness":6, "inexpiably":5, "inexplainable":5, "inexplicit":4, "inexplicitly":5, "inexplicitness":5, "inexplicability":7, "inexplicable":5, "inexplicableness":6, "inexplicably":5, "inexplosive":4, "inexpressibility":7, "inexpressible":5, "inexpressibleness":6, "inexpressibly":5, "inexpressive":4, "inexpressively":5, "inexpressiveness":5, "inexpugnability":7, "inexpugnable":5, "inexpugnableness":6, "inexpugnably":5, "inexpungeable":5, "inexpungibility":7, "inexpungible":5, "inextensibility":7, "inextensible":5, "inextinguishable":6, "inextinguishably":6, "inextirpable":5, "inextirpableness":6, "inextricability":7, "inextricable":5, "inextricableness":6, "inextricably":5, "inebriant":4, "inebriate":4, "inebriated":5, "inebriating":5, "inebriation":5, "inebriety":5, "inelastic":4, "inelasticity":6, "ineluctability":7, "ineluctable":5, "ineluctably":5, "ineludible":5, "ineludibly":5, "inenarrable":5, "inequality":5, "inequilateral":6, "inequilaterally":7, "inequivalve":4, "ineradicable":6, "ineradicableness":7, "ineradicably":6, "inerasable":5, "inerasableness":6, "inerasably":5, "inevasible":5, "infallibilism":5, "infallibility":6, "infallible":4, "infallibleness":5, "infallibly":4, "infamise":3, "infamize":3, "infant":2, "infant prodigy":5, "infant school":3, "infanthood":3, "infantlike":3, "infancy":3, "infanta":3, "infante":3, "infantile":3, "infantile paralysis":7, "infantility":5, "infantine":3, "infanticide":4, "infanticidal":5, "infantilism":4, "infantry":3, "infantryman":4, "infarct":2, "infarcted":3, "infarction":3, "infare":2, "infatuate":4, "infatuated":5, "infatuatedly":6, "infatuating":5, "infatuation":5, "infatuator":5, "infamous":3, "infamously":4, "infamousness":4, "infamy":3, "infeasibility":6, "infeasible":4, "infeasibleness":5, "infect":2, "infectant":3, "infectedness":4, "infecter":3, "infection":3, "infectious":3, "infectious hepatitis":7, "infectious mononucleosis":9, "infectiously":4, "infectiousness":4, "infective":3, "infectiveness":4, "infectivity":5, "infector":3, "infelt":2, "infeoff":2, "infer":2, "inferred":2, "inferable":4, "inferably":4, "inference":3, "inferential":4, "inferentially":5, "inferi":3, "inferible":4, "infernal":3, "infernal machine":5, "infernality":5, "infernally":4, "inferno":3, "inferrer":3, "inferring":3, "inferrible":4, "infertile":3, "infertilely":4, "infertileness":4, "infertility":5, "infest":2, "infester":3, "infestation":4, "infeudation":4, "infecund":3, "infecundity":5, "infelicitous":5, "infelicitously":6, "infelicity":5, "inferior":4, "inferior court":5, "inferior planet":6, "inferiority":6, "inferiority complex":8, "inferiorly":5, "inferoanterior":7, "infibulate":4, "infield":2, "infieldsman":3, "infielder":3, "infighter":3, "infighting":3, "infill":2, "infilling":3, "infiltrate":3, "infiltrated":4, "infiltrating":4, "infiltration":4, "infiltrative":4, "infiltrator":4, "infinitesimal":6, "infinitesimal calculus":9, "infinitesimality":8, "infinitesimally":7, "infinitesimalness":7, "infinitive":4, "infinitive marker":6, "infinitively":5, "infinitize":4, "infinitized":4, "infinitizing":5, "infinitival":5, "infinitivally":6, "infinitude":4, "infinity":4, "infirm":2, "infirmly":3, "infirmness":3, "infirmarian":5, "infirmary":4, "infirmity":4, "infix":2, "infixion":3, "infidel":3, "infidelic":4, "infidelity":5, "infimum":3, "infinite":3, "infinitely":4, "infiniteness":4, "inflame":2, "inflamed":2, "inflamedness":4, "inflamer":3, "inflaming":3, "inflamingly":4, "inflammability":6, "inflammable":4, "inflammableness":5, "inflammably":4, "inflammation":4, "inflammatorily":6, "inflammatory":5, "inflate":2, "inflatable":4, "inflated":3, "inflatedly":4, "inflatedness":4, "inflater":3, "inflating":3, "inflation":3, "inflationary":5, "inflationary spiral":7, "inflationism":4, "inflationist":4, "inflator":3, "inflect":2, "inflectedness":4, "inflection":3, "inflectional":4, "inflectionally":5, "inflectionless":4, "inflective":3, "inflector":3, "inflexed":2, "inflexion":3, "inflexionally":5, "inflexionless":4, "inflexibility":6, "inflexible":4, "inflexibleness":5, "inflexibly":4, "inflict":2, "inflictable":4, "inflicter":3, "infliction":3, "inflictive":3, "inflictor":3, "inflight":2, "inflow":2, "inflorescence":4, "inflorescent":4, "influx":2, "influence":3, "influenced":3, "influenceable":5, "influencer":4, "influencing":4, "influent":3, "influential":4, "influentially":5, "influenza":4, "influenzal":4, "influenzalike":5, "info":2, "infold":2, "infolder":3, "infoldment":3, "inform":2, "informed":2, "informant":3, "informable":4, "informative":4, "informatively":5, "informativeness":5, "informatory":5, "informedly":4, "informer":3, "informingly":4, "informal":3, "informal vote":4, "informality":5, "informally":4, "information":4, "information retrieval":7, "information science":6, "information theory":7, "informational":5, "infortune":3, "infortunate":4, "infortunately":5, "infortunateness":5, "infra":2, "infra dig":3, "infra-red":2, "infract":2, "infraction":3, "infractor":3, "infrangibility":6, "infrangible":4, "infrangibleness":5, "infrangibly":4, "infracostal":4, "infrahuman":4, "infralapsarian":6, "infralapsarianism":7, "inframarginal":5, "infrared":3, "infrasonic":4, "infrasonics":4, "infrastructure":4, "infrequence":3, "infrequent":3, "infrequently":4, "infrequency":4, "infringe":2, "infringed":2, "infringement":3, "infringer":3, "infringing":3, "infundibular":5, "infundibulate":5, "infundibuliform":6, "infundibulum":5, "infuriate":4, "infuse":2, "infused":2, "infuscate":3, "infuscated":4, "infuser":3, "infusing":3, "infula":3, "infulae":3, "infuriate":4, "infuriately":5, "infuriated":5, "infuriating":5, "infuriatingly":6, "infuriation":5, "infusion":3, "infusionism":4, "infusionist":4, "infusive":3, "infusibility":6, "infusible":4, "infusibleness":5, "infusoria":5, "infusorial":5, "infusorial earth":6, "infusorian":5, "inga":2, "ingate":2, "ingather":3, "ingatherer":4, "ingathering":4, "ingeminate":4, "ingeminated":5, "ingeminating":5, "ingemination":5, "ingenerate":4, "ingenerately":5, "ingenerated":5, "ingenerating":5, "ingeneration":5, "ingenious":3, "ingeniously":4, "ingeniousness":4, "ingenuous":4, "ingenuously":5, "ingenuousness":5, "ingersoll":3, "ingest":2, "ingestible":4, "ingesta":3, "ingestion":3, "ingestive":3, "ingelow":3, "ingenue":3, "ingenuity":5, "inghirami":4, "ingine":2, "ingle":2, "ingleborough":4, "inglenook":3, "ingleside":3, "ingleside":3, "inglewood":3, "inglorious":4, "ingloriously":5, "ingloriousness":5, "ingolstadt":3, "ingot":2, "ingot iron":4, "ingoing":3, "ingraft":2, "ingrafter":3, "ingraftment":3, "ingraftation":4, "ingrain":2, "ingrained":2, "ingrainedly":4, "ingrainedness":4, "ingram":2, "ingrate":2, "ingrately":3, "ingratitude":4, "ingratiate":4, "ingratiated":5, "ingratiating":5, "ingratiatingly":6, "ingratiation":5, "ingratiatory":6, "ingravescence":4, "ingravescent":4, "ingres":2, "ingress":2, "ingression":3, "ingressive":3, "ingressiveness":4, "ingredient":4, "ingrid":2, "ingroup":2, "ingrown":2, "ingrowth":2, "ingrowing":3, "inguinal":3, "ingulf":2, "ingulfment":3, "ingurgitate":4, "ingurgitated":5, "ingurgitating":5, "ingurgitation":5, "ingush":2, "ingnue":4, "ingnue":3, "inhabit":3, "inhabitance":4, "inhabitant":4, "inhabitancy":5, "inhabitability":7, "inhabitable":5, "inhabited":4, "inhabitedness":5, "inhabiter":4, "inhabitation":5, "inhale":2, "inhaled":2, "inhalant":3, "inhaler":3, "inhaling":3, "inhambane":4, "inharmonic":4, "inharmonious":5, "inharmoniously":6, "inharmoniousness":6, "inharmony":4, "inhaul":2, "inhauler":3, "inhalant":3, "inhalation":4, "inhalator":4, "inhere":2, "inhered":2, "inherence":3, "inherent":3, "inherently":4, "inherency":4, "inhering":3, "inherit":3, "inheritance":4, "inheritance tax":5, "inheritability":7, "inheritable":5, "inheritableness":6, "inheritably":5, "inherited":4, "inheritor":4, "inheritrix":4, "inheritrices":5, "inhesion":3, "inhibit":3, "inhibitable":5, "inhibiter":4, "inhibitive":4, "inhibitor":4, "inhibitory":5, "inhibition":4, "inhospitality":6, "inhospitable":5, "inhospitableness":6, "inhospitably":5, "inhomogeneity":7, "inhomogeneous":6, "inhomogeneously":7, "inhume":2, "inhumed":2, "inhumer":3, "inhuming":3, "inhuman":3, "inhumane":3, "inhumanely":4, "inhumanity":5, "inhumanly":4, "inhumanness":4, "inhumation":4, "inimical":4, "inimicality":6, "inimically":5, "inimicalness":5, "inimicable":5, "inimitability":7, "inimitable":5, "inimitableness":6, "inimitably":5, "iniquitous":4, "iniquitously":5, "iniquitousness":5, "iniquity":4, "inigo":3, "inion":3, "initial":3, "initialed":3, "initialled":3, "initialer":4, "initialing":4, "initialise":4, "initialize":4, "initialler":4, "initialling":4, "initially":4, "initiate":4, "initiated":5, "initiating":5, "initiation":5, "initiative":5, "initiatively":6, "initiator":5, "initiatorily":7, "initiatory":6, "initiatress":5, "initiatrix":5, "initiatrices":6, "inject":2, "injectable":4, "injection":3, "injector":3, "injun":2, "injunction":3, "injunctive":3, "injunctively":4, "injure":2, "injured":2, "injuredly":3, "injuredness":3, "injurable":4, "injurer":3, "injuring":3, "injustice":3, "injudicious":4, "injudiciously":5, "injudiciousness":5, "injuries":3, "injurious":4, "injuriously":5, "injuriousness":5, "injury":3, "injury benefit":6, "injury time":4, "inkerman":3, "inkie":2, "inkle":2, "inky":2, "inlace":2, "inlaid":2, "inland":2, "inland bill":3, "inland revenue":5, "inland sea":3, "inlander":3, "inlaw":2, "inlawry":3, "inlay":2, "inlayer":3, "inlet":2, "inline":2, "inlit":2, "inlier":3, "inly":2, "inlying":3, "inmate":2, "inmesh":2, "inmigrant":3, "inmost":2, "innards":2, "innate":2, "innately":3, "innateness":3, "inner":2, "inner bar":3, "inner ear":3, "inner light":3, "inner man":3, "inner mongolia":6, "inner planet":4, "inner space":3, "inner temple":4, "inner tube":3, "inner woman":3, "inner-directed":4, "inner-direction":4, "innerve":2, "innerved":2, "innerving":3, "innerly":3, "innermost":3, "innermostly":4, "innerness":3, "innerspring":3, "innervate":3, "innervated":4, "innervating":4, "innervation":4, "innervational":5, "inness":2, "inning":2, "innings":2, "inniskilling":4, "innocuous":4, "innocuously":5, "innocuousness":5, "innominate":4, "innominate bone":5, "innomine":4, "innoxious":3, "innoxiously":4, "innoxiousness":4, "innocence":3, "innocent":3, "innocent ii":4, "innocent iii":4, "innocent iv":4, "innocently":4, "innocency":4, "innocuity":5, "innovate":3, "innovated":4, "innovating":4, "innovation":4, "innovational":5, "innovative":4, "innovator":4, "innovatory":5, "innuendo":4, "innuit":3, "innumerate":4, "innumerability":7, "innumerable":5, "innumerableness":6, "innumerably":5, "innumerous":4, "innutrition":4, "innutritious":4, "inobservance":4, "inobservant":4, "inobservantly":5, "inoculant":4, "inoculate":4, "inoculated":5, "inoculating":5, "inoculability":7, "inoculable":5, "inoculation":5, "inoculative":5, "inoculator":5, "inoculum":4, "inoffensive":4, "inoffensively":5, "inoffensiveness":5, "inofficious":4, "inofficiousness":5, "inofficiosity":7, "inoperable":5, "inoperative":5, "inoperativeness":6, "inopportune":4, "inopportunely":5, "inopportuneness":5, "inopportunity":6, "inordinate":4, "inordinately":5, "inordinateness":5, "inordinacy":5, "inorganic":4, "inorganic chemistry":7, "inorganically":6, "inorganization":6, "inosculate":4, "inosculated":5, "inosculating":5, "inosculation":5, "inoxidize":4, "inoxidized":4, "inoxidizable":6, "inoxidizing":5, "inodorous":4, "inodorously":5, "inodorousness":5, "inosilicate":5, "inositol":4, "inotropic":4, "inower":3, "inpatient":3, "inphase":2, "inpour":2, "input":2, "input-output analysis":7, "input/output":3, "inputted":3, "inputting":3, "inqilab":3, "inquartation":4, "inquest":2, "inquire":2, "inquired":2, "inquirable":4, "inquirer":3, "inquiries":3, "inquiring":3, "inquiringly":4, "inquiry":3, "inquisitive":4, "inquisitively":5, "inquisitiveness":5, "inquisitor":4, "inquisitor-general":6, "inquisitorial":6, "inquisitorially":7, "inquisitorialness":7, "inquisitress":4, "inquiet":3, "inquietly":4, "inquietness":4, "inquietude":4, "inquiline":3, "inquilinity":5, "inquilinous":4, "inquisition":4, "inquisition":4, "inquisitional":5, "inquisitionist":5, "inradii":4, "inradius":4, "inrigger":3, "inroad":2, "inrush":2, "inrushing":3, "insalivate":4, "insalivated":5, "insalivating":5, "insalivation":5, "insane":2, "insanely":3, "insaneness":3, "insanitariness":6, "insanitary":5, "insanitation":5, "insanity":4, "insalubrious":5, "insalubriously":6, "insalubrity":5, "insatiability":6, "insatiable":4, "insatiableness":5, "insatiably":4, "insatiate":4, "insatiately":5, "insatiateness":5, "insatiety":5, "inscape":2, "inscribe":2, "inscribed":2, "inscribable":4, "inscribableness":5, "inscriber":3, "inscribing":3, "inscription":3, "inscriptional":4, "inscriptionless":4, "inscriptive":3, "inscriptively":4, "inscroll":2, "inscrutability":6, "inscrutable":4, "inscrutableness":5, "inscrutably":4, "insculp":2, "insect":2, "insectlike":3, "insecta":3, "insectan":3, "insectaries":4, "insectaria":5, "insectarium":5, "insectariums":5, "insectary":4, "insectean":4, "insectile":3, "insectivora":5, "insectivorous":5, "insectivorous bat":6, "insecticide":4, "insecticidal":5, "insectifuge":4, "insectival":4, "insectivore":4, "insectologer":5, "insectology":5, "inselberg":3, "inseminate":4, "inseminated":5, "inseminating":5, "insemination":5, "insensate":3, "insensately":4, "insensateness":4, "insensibility":6, "insensible":4, "insensibly":4, "insensitive":4, "insensitiveness":5, "insensitivity":6, "insentience":4, "insentient":4, "insentiency":5, "inseparability":7, "inseparable":5, "inseparableness":6, "inseparably":5, "insert":2, "insertable":4, "inserted":3, "inserter":3, "insertion":3, "insertional":4, "insessorial":5, "inset":2, "insetter":3, "insetting":3, "inseverable":5, "inseverably":5, "insecure":3, "insecurely":4, "insecureness":4, "insecurity":5, "insheath":2, "insheathe":2, "insheathed":2, "insheathing":3, "inshoot":2, "inshore":2, "inshrine":2, "inshrined":2, "inshrining":3, "inside":2, "inside forward":4, "inside job":3, "insides":2, "insider":3, "insidious":4, "insidiously":5, "insidiousness":5, "insight":2, "insightful":3, "insigne":3, "insignificance":5, "insignificant":5, "insignificantly":6, "insignificancy":6, "insignia":4, "insignias":4, "insincere":3, "insincerely":4, "insincerity":5, "insinuate":4, "insinuated":5, "insinuating":5, "insinuatingly":6, "insinuation":5, "insinuative":5, "insinuatively":6, "insinuator":5, "insipid":3, "insipidly":4, "insipidness":4, "insipience":4, "insipient":4, "insipiently":5, "insist":2, "insistence":3, "insistent":3, "insistently":4, "insistency":4, "insister":3, "insistingly":4, "insipidity":5, "insnare":2, "insnared":2, "insnarement":3, "insnarer":3, "insnaring":3, "insole":2, "insolvability":6, "insolvable":4, "insolvably":4, "insolubilize":5, "insolubilized":5, "insolubilizing":6, "insolubility":6, "insolubilization":7, "insoluble":4, "insolubleness":5, "insolubly":4, "insolvent":3, "insolvency":4, "insomnia":4, "insomniac":4, "insomnious":4, "insomnolence":4, "insomnolent":4, "insomnolently":5, "insomnolency":5, "insoul":2, "insouciance":4, "insouciant":4, "insouciantly":5, "insobriety":5, "insociability":6, "insociable":4, "insociably":4, "insofar":3, "insolate":3, "insolated":4, "insolating":4, "insolation":4, "insolence":3, "insolent":3, "insolently":4, "insomuch":3, "inspan":2, "inspanned":2, "inspanning":3, "inspect":2, "inspectability":6, "inspectable":4, "inspectingly":4, "inspection":3, "inspection chamber":5, "inspectional":4, "inspective":3, "inspector":3, "inspector general":6, "inspector of taxes":6, "inspector-general":5, "inspectorate":4, "inspectorship":4, "inspectoral":4, "inspectorial":5, "insphere":2, "insphered":2, "insphering":3, "inspire":2, "inspired":2, "inspirable":4, "inspirative":4, "inspiratory":5, "inspiredly":4, "inspirer":3, "inspiring":3, "inspiringly":4, "inspirit":3, "inspiriter":4, "inspiritingly":5, "inspiritment":4, "inspissate":3, "inspissated":4, "inspissating":4, "inspissation":4, "inspissator":4, "inspiration":4, "inspirational":5, "inspirationally":6, "instal":2, "install":2, "installed":2, "installant":3, "installer":3, "installment":3, "installment plan":4, "installation":4, "installing":3, "instalment":3, "instance":2, "instanced":2, "instancing":3, "instant":2, "instant replay":4, "instantly":3, "instancy":3, "instantaneity":6, "instantaneous":5, "instantaneously":6, "instantaneousness":6, "instanter":3, "instantiate":4, "instar":2, "instarred":2, "instarring":3, "instate":2, "instatement":3, "instated":3, "instating":3, "instauration":4, "instaurator":4, "instability":5, "instable":3, "instead":2, "instep":2, "instil":2, "instill":2, "instilled":2, "instiller":3, "instillment":3, "instillation":4, "instillator":4, "instilling":3, "instilment":3, "instinct":2, "instinctive":3, "instinctively":4, "instinctual":4, "instinctually":5, "instigant":3, "instigate":3, "instigated":4, "instigating":4, "instigatingly":5, "instigation":4, "instigative":4, "instigator":4, "institute":3, "institutes":3, "institutes":3, "instituted":4, "instituter":4, "instituting":4, "institution":4, "institutional":5, "institutionalise":6, "institutionalised":6, "institutionalism":6, "institutionalist":6, "institutionalising":7, "institutionalize":6, "institutionalized":6, "institutionalizing":7, "institutionalization":8, "institutionally":6, "institutionary":6, "institutive":4, "institutively":5, "institutor":4, "instroke":2, "instruct":2, "instructedly":4, "instructedness":4, "instructible":4, "instruction":3, "instructions":3, "instructional":4, "instructive":3, "instructively":4, "instructiveness":4, "instructor":3, "instructorless":4, "instructorship":4, "instructorial":5, "instructress":3, "instrument":3, "instrument flying":5, "instrument landing":5, "instrument panel":5, "instrumental":4, "instrumental conditioning":8, "instrumentalism":5, "instrumentalist":5, "instrumentality":6, "instrumentally":5, "instrumentation":5, "insubordinate":5, "insubordinately":6, "insubordination":6, "insubstantial":4, "insubstantially":5, "insubstantiality":7, "insufferable":5, "insufferableness":6, "insufferably":5, "insufficience":4, "insufficient":4, "insufficiently":5, "insufficiency":5, "insufflate":3, "insufflated":4, "insufflating":4, "insufflation":4, "insufflator":4, "insull":2, "insult":2, "insultable":4, "insulter":3, "insulting":3, "insultingly":4, "insultation":4, "insupportable":5, "insupportableness":6, "insupportably":5, "insuppressible":5, "insuppressibly":5, "insure":2, "insured":2, "insurance":3, "insurant":3, "insurability":6, "insurable":4, "insurer":3, "insurgence":3, "insurgent":3, "insurgency":4, "insuring":3, "insurmountability":7, "insurmountable":5, "insurmountableness":6, "insurmountably":5, "insurrection":4, "insurrectional":5, "insurrectionally":6, "insurrectionaries":6, "insurrectionary":6, "insurrectionise":5, "insurrectionised":5, "insurrectionism":5, "insurrectionist":5, "insurrectionising":6, "insurrectionize":5, "insurrectionized":5, "insurrectionizing":6, "insusceptibility":7, "insusceptible":5, "insusceptibly":5, "insula":3, "insular":3, "insularism":4, "insularize":4, "insularized":4, "insularizing":5, "insularity":5, "insularly":4, "insulate":3, "insulated":4, "insulating":4, "insulating tape":5, "insulation":4, "insulator":4, "insulin":3, "insulin reaction":6, "insulinize":4, "insulinized":4, "insulinizing":5, "insulination":5, "insuperability":7, "insuperable":5, "insuperableness":6, "insuperably":5, "inswathe":2, "inswathed":2, "inswathing":3, "inswept":2, "inswing":2, "inswinger":3, "intact":2, "intactly":3, "intactness":3, "intaglio":3, "intaglios":3, "intaglio":4, "intake":2, "intangibility":6, "intangible":4, "intangibleness":5, "intangibly":4, "intarsist":3, "intarsia":4, "intarsiate":4, "intagli":3, "integrity":4, "integument":4, "integumentary":6, "intellect":3, "intellection":4, "intellective":4, "intellectively":5, "intellectual":5, "intellectualise":6, "intellectualised":6, "intellectualism":6, "intellectualist":6, "intellectualiser":7, "intellectualising":7, "intellectualistic":7, "intellectualistically":9, "intellectualize":6, "intellectualized":6, "intellectualizer":7, "intellectualizing":7, "intellectuality":7, "intellectualization":8, "intellectually":6, "intellectualness":6, "intelligence":4, "intelligence quotient":6, "intelligence test":5, "intelligencer":5, "intelligent":4, "intelligently":5, "intelligentsia":6, "intelligential":5, "intelligibility":7, "intelligible":5, "intelligibleness":6, "intelligibly":5, "intelsat":3, "intemerate":4, "intemerately":5, "intemerateness":5, "intemperance":4, "intemperate":4, "intemperately":5, "intemperateness":5, "intend":2, "intendance":3, "intendant":3, "intendancy":4, "intended":3, "intendedly":4, "intendedness":4, "intendency":4, "intender":3, "intendment":3, "intense":2, "intensely":3, "intenseness":3, "intent":2, "intently":3, "intentness":3, "intenerate":4, "intenerated":5, "intenerating":5, "inteneration":5, "intension":3, "intensional":4, "intensionally":5, "intensive":3, "intensive care":4, "intensively":4, "intensiveness":4, "intensified":4, "intensification":6, "intensifier":5, "intensify":4, "intensifying":5, "intensitometer":6, "intensity":4, "intention":3, "intentioned":3, "intentional":4, "intentionality":6, "intentionally":5, "intentionless":4, "inter":2, "inter alia":5, "inter alios":5, "inter se":3, "inter-allied":3, "inter-andean":4, "inter-american":5, "inter-european":5, "interaxes":3, "intern":2, "interne":2, "interneship":3, "internee":3, "internist":3, "internment":3, "internship":3, "interred":2, "interabsorption":5, "interact":3, "interacademic":6, "interacademically":8, "interaccessory":6, "interaccuse":4, "interaccused":4, "interaccusing":5, "interacinous":5, "interaction":4, "interactional":5, "interactionism":5, "interactionist":5, "interactive":4, "interadditive":5, "interaffiliation":7, "interagglutinate":6, "interagglutinated":7, "interagglutinating":7, "interagglutination":7, "interalveolar":6, "interambulacrum":6, "interangular":5, "interanimate":5, "interanimated":6, "interanimating":6, "interannular":5, "interantagonism":6, "interapophyseal":7, "interapplication":6, "interarch":3, "interarboration":6, "interarticular":6, "interartistic":5, "interarytenoid":6, "interassociation":7, "interassure":4, "interassured":4, "interassuring":5, "interasteroidal":6, "interastral":4, "interattrition":5, "interaulic":4, "interaural":4, "interauricular":6, "interaxillary":6, "interaxis":4, "interaxial":5, "interabang":4, "interadaption":5, "interagent":4, "interagency":5, "interagree":4, "interagreed":4, "interagreeing":5, "interagreement":5, "interalar":4, "interapophysal":6, "interatomic":5, "interatrial":5, "interavailability":8, "interavailable":6, "interbalance":4, "interbalanced":4, "interbalancing":5, "interbanded":4, "interbank":3, "interbedded":4, "interbelligerent":6, "interblend":3, "interblended":4, "interblending":4, "interblent":3, "interborough":4, "interbrain":3, "interbranch":3, "interbranchial":5, "interbrachial":5, "interbreath":3, "interbred":3, "interbreed":3, "interbreeding":4, "interbrigade":4, "interbronchial":5, "intercapillary":6, "intercardinal":5, "intercarpal":4, "intercarpellary":6, "intercarrier":5, "intercartilaginous":7, "intercaste":3, "intercatenated":6, "intercausative":5, "intercavernous":5, "intercalarily":6, "intercalary":5, "intercalate":4, "intercalated":5, "intercalating":5, "intercalation":5, "intercalative":5, "intercarotid":5, "intercede":3, "interceded":4, "interceder":4, "interceding":4, "intercellular":5, "intercentral":4, "intercept":3, "intercepter":4, "interception":4, "interceptive":4, "interceptor":4, "intercerebral":5, "intercession":4, "intercessional":5, "intercessor":4, "intercessorial":6, "intercessory":5, "interchaff":3, "interchain":3, "interchange":3, "interchanged":3, "interchangeability":7, "interchangeable":5, "interchangeableness":6, "interchangeably":5, "interchanger":4, "interchanging":4, "intercharge":3, "intercharged":3, "intercharging":4, "interchase":3, "interchased":3, "interchasing":4, "intercheck":3, "interchoke":3, "interchoked":3, "interchoking":4, "interchondral":4, "interchurch":3, "interciliary":6, "intercircle":4, "intercirculate":5, "intercirculated":6, "intercirculating":6, "intercirculation":6, "intercity":4, "intercivic":4, "intercivilization":7, "interclash":3, "interclasp":3, "interclass":3, "interclavicle":5, "interclavicular":6, "interclerical":5, "intercloud":3, "interclub":3, "intercoccygeal":6, "intercollege":4, "intercollegiate":5, "intercolonize":5, "intercolonized":5, "intercolonizing":6, "intercolonization":7, "intercom":3, "intercombat":4, "intercombine":4, "intercombined":4, "intercombining":5, "intercombination":6, "intercommission":5, "intercommissural":6, "intercommon":4, "intercommonage":5, "intercommoner":5, "intercommunion":5, "intercommunal":5, "intercommunicate":6, "intercommunicated":7, "intercommunicating":7, "intercommunicability":9, "intercommunicable":7, "intercommunication":7, "intercommunicative":7, "intercommunicator":7, "intercommunity":6, "intercompare":4, "intercompared":4, "intercomparing":5, "intercomparison":6, "intercompany":5, "intercomparable":6, "intercomplexity":6, "intercomplimentary":7, "interconciliary":7, "intercondenser":5, "intercondylic":5, "intercondylar":5, "intercondyloid":5, "interconfessional":6, "interconfound":4, "interconnectedness":6, "interconnection":5, "interconsonantal":6, "intercontinental":6, "intercontinental ballistic missile":11, "intercontorted":5, "intercontradiction":6, "intercontradictory":7, "interconvert":4, "interconvertibility":8, "interconvertible":6, "interconvertibly":6, "interconversion":5, "intercooler":4, "intercoracoid":5, "intercorporate":5, "intercorpuscular":6, "intercorrelate":5, "intercorrelated":6, "intercorrelating":6, "intercorrelation":6, "intercortical":5, "intercosmic":4, "intercostal":4, "intercostally":5, "intercotylar":5, "intercounty":4, "intercourse":3, "intercohesion":5, "intercolonial":6, "intercolonially":7, "intercolumnal":5, "intercolumnar":5, "intercolumniation":7, "intercranial":5, "intercreate":4, "intercreated":5, "intercreating":5, "intercrinal":4, "intercrop":3, "intercropped":3, "intercropping":4, "intercross":3, "intercrust":3, "intercrural":4, "intercrystalline":5, "intercurl":3, "intercurrence":4, "intercurrent":4, "intercurrently":5, "intercuspidal":5, "intercut":3, "intercupola":5, "intercystic":4, "interdental":4, "interdentally":5, "interdentil":4, "interdebate":4, "interdebated":5, "interdebating":5, "interdenominational":8, "interdenominationalism":9, "interdepartmental":6, "interdepartmentally":7, "interdependable":6, "interdependence":5, "interdependent":5, "interdependently":6, "interdependency":6, "interdependability":8, "interdestructive":5, "interdetermine":5, "interdetermined":5, "interdetermining":6, "interdetermination":7, "interdevour":4, "interdict":3, "interdict list":4, "interdiction":4, "interdictor":4, "interdictory":5, "interdifferentiate":7, "interdifferentiated":8, "interdifferentiating":8, "interdifferentiation":8, "interdiffuse":4, "interdiffused":4, "interdiffusing":5, "interdiffusion":5, "interdiffusive":5, "interdigital":5, "interdigitate":5, "interdigitated":6, "interdigitating":6, "interdigitation":6, "interdisciplinary":7, "interdistinguish":5, "interdistrict":4, "interdivision":5, "interdome":3, "interdorsal":4, "interembrace":4, "interembraced":4, "interembracing":5, "interempire":4, "interentangle":5, "interentanglement":6, "interepidemic":6, "interepithelial":7, "interest":3, "interested":4, "interestedly":5, "interestedness":5, "interesting":4, "interestingly":5, "interestingness":5, "interesterification":8, "interestuarine":6, "interelectrode":5, "interequinoctial":6, "interface":3, "interfaced":3, "interfacing":4, "interfactional":5, "interfaith":3, "interfamily":5, "interfascicular":6, "interfacial":4, "interfederation":6, "interfemoral":5, "interfenestration":6, "interfere":3, "interfered":3, "interference":4, "interferer":4, "interfering":4, "interferingly":5, "interferometer":6, "interferometry":6, "interferon":4, "interferometric":6, "interferometrically":8, "interfertile":4, "interfertility":6, "interfenestral":5, "interferential":5, "interfile":3, "interfiled":3, "interfilling":4, "interfilamentary":7, "interfilamentous":6, "interfiling":4, "interfiltrate":4, "interfiltrated":5, "interfiltrating":5, "interfiltration":5, "interfibrillar":5, "interfibrillary":6, "interfibrous":4, "interfilar":4, "interflashing":4, "interflow":3, "interfluve":3, "interfluence":4, "interfluent":4, "interfluvial":5, "interfold":3, "interforce":3, "interfoliar":5, "interfoliaceous":6, "interfraternal":5, "interfriction":4, "interfrontal":4, "interfulgent":4, "interfuse":3, "interfused":3, "interfusing":4, "interfusion":4, "interganglionic":6, "intergalactic":5, "intergenerating":6, "intergeneration":6, "intergenerative":6, "intergilt":3, "interglandular":5, "interglacial":4, "interglacial":5, "interglobular":5, "interglyph":3, "intergossip":4, "intergossiped":4, "intergossiping":5, "intergovernmental":6, "intergonial":5, "intergrade":3, "intergraded":4, "intergrading":4, "intergraft":3, "intergranular":5, "intergrapple":4, "intergradation":5, "intergradational":6, "intergroup":3, "intergrowth":3, "intergular":4, "intergyral":4, "interhabitation":6, "interhaemal":4, "interhemispheric":6, "interhemal":4, "interhostile":4, "interhuman":4, "interhybridize":5, "interhybridized":5, "interhybridizing":6, "interim":3, "interim":3, "interimperial":6, "interincorporation":7, "interindependence":6, "interindicate":5, "interindicated":6, "interindicating":6, "interindividual":7, "interinfluence":5, "interinfluenced":5, "interinfluencing":6, "interinhibitive":6, "interinhibition":6, "interinsert":4, "interinsurance":5, "interinsular":5, "interinvolve":4, "interinvolved":4, "interinvolving":5, "interisland":4, "interionic":5, "interjaculate":5, "interjaculateded":6, "interjaculating":6, "interjaculatory":7, "interjacence":4, "interjacent":4, "interject":3, "interjection":4, "interjectional":5, "interjectionalise":6, "interjectionalised":6, "interjectionalising":7, "interjectionalize":6, "interjectionalized":6, "interjectionalizing":7, "interjectionally":6, "interjector":4, "interjectorily":6, "interjectory":5, "interjectural":5, "interjoin":3, "interjoist":3, "interjudgment":4, "interjugular":5, "interjunction":4, "interjugal":4, "interkinetic":5, "interkinesis":5, "interknit":3, "interknitted":4, "interknitting":4, "interknot":3, "interknotted":4, "interknotting":4, "interlaboratory":7, "interlace":3, "interlaced":3, "interlaced scanning":5, "interlacement":4, "interlacedly":5, "interlacing":4, "interlaid":3, "interlain":3, "interlamellation":6, "interlaminar":5, "interlaminate":5, "interlaminated":6, "interlaminating":6, "interlamination":6, "interlanguage":4, "interlap":3, "interlapped":3, "interlapping":4, "interlard":3, "interlardment":4, "interlardation":5, "interlatitudinal":7, "interlaudation":5, "interlay":3, "interlaying":4, "interlabial":5, "interlacustrine":5, "interlaken":4, "interlamellar":5, "interleaf":3, "interleave":3, "interleaved":3, "interleaving":4, "interlie":3, "interlight":3, "interligamentary":7, "interligamentous":6, "interline":3, "interlined":3, "interlink":3, "interliner":4, "interlineal":5, "interlineally":6, "interlinear":5, "interlinearly":6, "interlineate":5, "interlineated":6, "interlineating":6, "interlineation":6, "interlingua":4, "interlingua":4, "interlining":4, "interlibel":4, "interlibeled":4, "interlibelled":4, "interlibelling":5, "interlibrary":5, "interlibrary loan":6, "interloan":3, "interlobular":5, "interlock":3, "interlocker":4, "interlocking directorates":8, "interlocular":5, "interloculus":5, "interlocutor":5, "interlocutorily":7, "interlocutory":6, "interlocutress":5, "interlocutrice":5, "interlocutrix":5, "interlocutrices":6, "interloop":3, "interlope":3, "interloped":3, "interloper":4, "interloping":4, "interlot":3, "interlotted":4, "interlotting":4, "interlobar":4, "interlobate":4, "interlocal":4, "interlocate":4, "interlocated":5, "interlocating":5, "interlocation":5, "interlocution":5, "interlude":3, "interlucent":4, "interludial":5, "interlunar":4, "interlunation":5, "interlying":4, "intermalleolar":6, "intermammary":5, "intermammillary":6, "intermandibular":6, "intermarginal":5, "intermarriage":4, "intermarried":4, "intermarry":4, "intermarrying":5, "intermastoid":4, "intermat":3, "intermatch":3, "intermatted":4, "intermatting":4, "intermaxillary":6, "intermaze":3, "intermazed":3, "intermazing":4, "intermalar":4, "intermanorial":6, "intermarine":4, "intermean":3, "intermeasure":4, "intermeasured":4, "intermeasurable":6, "intermeasuring":5, "intermeddle":4, "intermeddler":4, "intermeet":3, "intermeeting":4, "intermelt":3, "intermembral":4, "intermembranous":5, "interment":3, "intermenstrual":5, "intermention":4, "intermesh":3, "intermesenteric":6, "intermessage":4, "intermet":3, "intermetacarpal":6, "intermetameric":6, "intermetatarsal":6, "intermezzo":4, "intermediaries":6, "intermediary":6, "intermediate":5, "intermediate frequency":8, "intermediate host":6, "intermediately":6, "intermediateness":6, "intermediated":6, "intermediating":6, "intermediacy":6, "intermediation":6, "intermediator":6, "intermediatory":7, "intermeningeal":6, "intermetallic":5, "intermingle":4, "interminglement":5, "interministerial":7, "intermission":4, "intermissive":4, "intermit":3, "intermitted":4, "intermittence":4, "intermittent":4, "intermittent claudication":8, "intermittent fever":6, "intermittently":5, "intermittency":5, "intermitter":4, "intermitting":4, "intermittingly":5, "intermittor":4, "intermix":3, "intermixable":5, "intermixedly":5, "intermixture":4, "intermigrate":4, "intermigrated":5, "intermigrating":5, "intermigration":5, "interminability":7, "interminable":5, "interminableness":6, "interminably":5, "intermodification":7, "intermodulation":6, "intermontane":4, "intermountain":4, "intermobility":6, "intermodillion":5, "intermolar":4, "intermolecular":6, "intermomentary":5, "intermotion":4, "intermundane":4, "intermuscular":5, "intermuscularity":7, "intermunicipal":6, "intermunicipality":8, "intermural":4, "intermutule":4, "internal":3, "internal ear":4, "internal energy":6, "internal medicine":6, "internal rhyme":4, "internal secretion":6, "internal-combustion":5, "internal-combustion engine":7, "internalise":4, "internalize":4, "internalized":4, "internalizing":5, "internality":5, "internalization":6, "internally":4, "internalness":4, "internarial":5, "internasal":4, "internation":4, "international":5, "international":5, "international candle":7, "international date line":7, "international development association":14, "international finance corporation":11, "international geophysical year":11, "international gothic":7, "international grandmaster":8, "international master":7, "international monetary fund":10, "international morse code":7, "international phonetic alphabet":11, "international pitch":6, "international standards organization":12, "internationalise":6, "internationalised":6, "internationalism":6, "internationalist":6, "internationalising":7, "internationalize":6, "internationalized":6, "internationalizing":7, "internationality":7, "internationalization":8, "internationally":6, "internationale":5, "internegative":5, "internetted":4, "interneural":4, "interneuron":4, "interneuronic":5, "internecine":4, "internecive":4, "internidal":4, "internode":3, "internodal":4, "internuncial":4, "internuncio":5, "internuncios":5, "internuclear":5, "interocular":5, "interoffice":4, "interolivary":6, "interoptic":4, "interorbital":5, "interoscillate":5, "interoscillated":6, "interoscillating":6, "interosculate":5, "interosculated":6, "interosculating":6, "interosculation":6, "interosseous":5, "interownership":5, "interoceptive":5, "interoceptor":5, "interoceanic":6, "interpage":3, "interpalatine":5, "interpalpebral":5, "interpapillary":6, "interparental":5, "interparenthetic":6, "interparenthetical":7, "interparliament":5, "interparliamentary":7, "interparoxysmal":6, "interparty":4, "interpave":3, "interpaved":3, "interpaving":4, "interparenchymal":6, "interparietal":6, "interpeal":3, "interpectoral":5, "interpellant":4, "interpellate":4, "interpellated":5, "interpellating":5, "interpellation":5, "interpellator":5, "interpenetrant":5, "interpenetrate":5, "interpenetrated":6, "interpenetrating":6, "interpenetrable":6, "interpenetration":6, "interpenetrative":6, "interpenetratively":7, "interpermeate":5, "interpermeated":6, "interpermeating":6, "interpersonal":5, "interpersonally":6, "interpervade":4, "interpervaded":5, "interpervading":5, "interpervasive":5, "interpetaloid":5, "interpetalous":5, "interpetiolar":6, "interpeduncular":6, "interphase":3, "interphalangeal":6, "interphone":3, "interplait":3, "interplant":3, "interplanetary":6, "interplay":3, "interplacental":5, "interplead":3, "interpleaded":4, "interpleader":4, "interpleading":4, "interpled":3, "interpledge":3, "interpledged":3, "interpledging":4, "interpleural":4, "interplight":3, "interpol":3, "interpolish":4, "interpollinate":5, "interpollinated":6, "interpollinating":6, "interportal":4, "interpose":3, "interposed":3, "interposal":4, "interposable":5, "interposer":4, "interposing":4, "interposingly":5, "interpour":3, "interpolar":4, "interpolate":4, "interpolated":5, "interpolater":5, "interpolating":5, "interpolable":5, "interpolation":5, "interpolative":5, "interpolatively":6, "interpolator":5, "interposition":5, "interpressure":4, "interpret":3, "interpretability":7, "interpretable":5, "interpretableness":6, "interpretably":5, "interpreter":4, "interpretership":5, "interpretation":5, "interpretational":6, "interpretative":5, "interpretatively":6, "interpretive":4, "interpretive semantics":7, "interpretively":5, "interprismatic":5, "interproximal":5, "interproduce":4, "interproduced":4, "interproducing":5, "interprofessional":6, "interproglottidal":6, "interproportional":6, "interprotoplasmic":6, "interprovincial":5, "interpterygoid":5, "interpulmonary":6, "interpubic":4, "interpupillary":6, "interquarrel":4, "interquarreled":4, "interquarrelled":4, "interquarreling":5, "interquarrelling":5, "interquarter":4, "interrace":3, "interrailway":4, "interran":3, "interracial":4, "interradial":5, "interradially":6, "interradiate":5, "interradiated":6, "interradiating":6, "interradiation":6, "interramal":4, "interregimental":6, "interregnal":4, "interregnum":4, "interreign":3, "interrex":3, "interreceive":4, "interreceived":4, "interreceiving":5, "interreflect":4, "interreflection":5, "interreges":4, "interregional":5, "interrelate":4, "interrelated":5, "interrelatedly":6, "interrelatedness":6, "interrelating":5, "interrelation":5, "interrelationship":6, "interreligious":5, "interrenal":4, "interrepellent":5, "interrepulsion":5, "interresist":4, "interresistance":5, "interresistibility":8, "interresponsible":6, "interreticular":6, "interreticulation":7, "interrhyme":3, "interrhymed":3, "interrhyming":4, "interring":3, "interroad":3, "interrogative":5, "interrogatively":6, "interrogatories":6, "interrogatorily":7, "interrogatory":6, "interrobang":4, "interrogate":4, "interrogated":5, "interrogating":5, "interrogatingly":6, "interrogable":5, "interrogation":5, "interrogation mark":6, "interrogational":6, "interrogator":5, "interrogator-responsor":7, "interrule":3, "interruled":3, "interruling":4, "interrun":3, "interrunning":4, "interrupt":3, "interrupted":4, "interrupted screw":5, "interruptedly":5, "interruptedness":5, "interrupter":4, "interruptible":5, "interruption":4, "interruptive":4, "interruptor":4, "intersale":3, "intersalute":4, "intersaluted":5, "intersaluting":5, "interscapular":5, "interscene":3, "interschool":3, "interscholastic":5, "interscience":4, "interscribe":3, "interscribed":3, "interscribing":4, "interseaboard":4, "intersect":3, "intersectant":4, "intersection":4, "intersectional":5, "intersegmental":5, "interseminal":5, "interseminate":5, "interseminated":6, "interseminating":6, "intersentimental":6, "interseptal":4, "intersesamoid":5, "intersession":4, "interset":3, "intersetting":4, "intersex":3, "intersexual":5, "intersexualism":6, "intersexuality":7, "intersexually":6, "intershade":3, "intershaded":4, "intershading":4, "intershifting":4, "intershock":3, "intershoot":3, "intershooting":4, "intershop":3, "intershot":3, "intersituate":5, "intersituated":6, "intersituating":6, "intersidereal":6, "intersoil":3, "intersole":3, "intersoled":3, "intersoling":4, "intersolubility":7, "intersoluble":5, "intersocial":4, "intersocietal":6, "intersociety":6, "intersonant":4, "interspace":3, "interspaced":3, "interspacing":4, "interspatial":4, "interspatially":5, "intersperse":3, "interspersed":3, "interspersedly":5, "interspersing":4, "interspersion":4, "interspecial":4, "interspheral":4, "interspicular":5, "interspinal":4, "interspinous":4, "intersporal":4, "intersprinkle":4, "intersqueeze":3, "intersqueezed":3, "intersqueezing":4, "interstade":3, "interstaminal":5, "interstate":3, "interstadial":5, "interstation":4, "interstellar":4, "interstice":3, "intersticed":3, "interstimulate":5, "interstimulated":6, "interstimulating":6, "interstimulation":6, "interstitial":4, "interstitial-cell-stimulating hormone":9, "interstitially":5, "interstratified":5, "interstratification":7, "interstratify":5, "interstratifying":6, "interstreak":3, "interstream":3, "interstreet":3, "interstrive":3, "interstriven":4, "interstriving":4, "interstrial":4, "interstriation":5, "interstrove":3, "interstructure":4, "intersubjective":5, "intersubsistence":5, "intersubstitution":6, "intersystem":4, "intersystematical":7, "intersystematic":6, "intertalk":3, "intertangle":4, "intertarsal":4, "interteam":3, "intertentacular":6, "intertergal":4, "interterminal":5, "interterritorial":7, "intertexture":4, "interthreaded":4, "interthronging":4, "intertidal":4, "intertinge":3, "intertinged":3, "intertinging":4, "intertissued":4, "intertouch":3, "intertown":3, "intertrace":3, "intertraced":3, "intertracing":4, "intertrade":3, "intertraded":4, "intertrading":4, "intertraffic":4, "intertrafficked":4, "intertrafficking":5, "intertransformability":8, "intertransformable":6, "intertransversal":5, "intertrabecular":6, "intertribal":4, "intertriglyph":4, "intertrigo":4, "intertropical":5, "intertropical convergence zone":9, "intertuberal":5, "intertubercular":6, "intertubular":5, "intertwine":3, "intertwined":3, "intertwinement":4, "intertwining":4, "intertwiningly":5, "intertwist":3, "intertwistingly":5, "intertype":3, "interungular":5, "interungulate":5, "interunion":4, "interurban":4, "interuniversity":7, "intervaginal":5, "interval":3, "interval training":5, "intervale":3, "intervalic":4, "intervalley":4, "intervalometer":6, "intervalvular":5, "intervaried":4, "intervarsity":5, "intervary":4, "intervarying":5, "intervascular":5, "intervariation":6, "intervarietal":6, "intervein":3, "interveinal":4, "interveinous":4, "intervene":3, "intervened":3, "intervener":4, "intervenient":4, "intervening":4, "intervention":4, "interventional":5, "interventionism":5, "interventionist":5, "interventral":4, "interventricular":6, "intervenular":5, "interverbal":4, "intervertebral":5, "intervertebral disc":6, "intervertebrally":6, "intervenor":4, "intervesicular":6, "interview":3, "interviewable":5, "interviewee":4, "interviewer":4, "intervillous":4, "intervisit":4, "intervisitation":6, "intervolve":3, "intervolved":3, "intervolving":4, "intervocalic":5, "intervocalically":7, "intervolute":4, "intervolution":5, "interwar":3, "interwarred":3, "interwarring":4, "interweave":3, "interweaved":3, "interweavement":4, "interweaver":4, "interweaving":4, "interweavingly":5, "interwed":3, "interwedded":4, "interwedding":4, "interweld":3, "interwhiff":3, "interwhistle":4, "interwind":3, "interwinded":4, "interwinding":4, "interwish":3, "interword":3, "interwork":3, "interworking":4, "interworld":3, "interwound":3, "interwoven":4, "interwrap":3, "interwrapped":3, "interwrapping":4, "interwreathe":3, "interwreathed":3, "interwreathing":4, "interwrought":3, "interxylary":5, "interzonal":4, "interzooecial":5, "intestate":3, "intestable":4, "intestacy":4, "intestine":3, "intestinal":4, "intestinal flora":6, "intestinally":5, "integer":3, "integral":3, "integral calculus":6, "integrality":5, "integrally":4, "integrand":3, "integrant":3, "integraph":3, "integrate":3, "integrated":4, "integrated circuit":6, "integrating":4, "integrability":6, "integrable":4, "integration":4, "integrationist":5, "integrative":4, "integrator":4, "interior":4, "interior":4, "interior angle":6, "interior decoration":8, "interior decorator":8, "interior monologue":7, "interior-sprung":4, "interiorise":5, "interiorism":5, "interiorist":5, "interiorize":5, "interiority":6, "interiorly":5, "inthral":2, "inthrall":2, "inthralled":2, "inthrallment":3, "inthralling":3, "inthralment":3, "inthrone":2, "inthroned":2, "inthroning":3, "intime":2, "intimidate":4, "intimidated":5, "intimidating":5, "intimidation":5, "intimidator":5, "intimidatory":6, "intinction":3, "intine":2, "intitule":3, "intituled":3, "intituling":4, "intitulation":5, "intima":3, "intimal":3, "intimate":3, "intimately":4, "intimateness":4, "intimated":4, "intimater":4, "intimating":4, "intimacy":4, "intimation":4, "intimism":3, "intimist":3, "intimiste":3, "intitle":3, "into":2, "intoed":2, "intolerance":4, "intolerant":4, "intolerantly":5, "intolerability":7, "intolerable":5, "intolerableness":6, "intolerably":5, "intomb":2, "intombment":3, "intone":2, "intoned":2, "intoner":3, "intoning":3, "intort":2, "intorsion":3, "intortus":3, "intown":2, "intoxicant":4, "intoxicate":4, "intoxicated":5, "intoxicatedly":6, "intoxicating":5, "intoxicatingly":6, "intoxicable":5, "intoxication":5, "intoxicative":5, "intoxicatively":6, "intoxicator":5, "intonate":3, "intonated":4, "intonating":4, "intonaco":4, "intonation":4, "intonation pattern":6, "intonational":5, "intra-abdominally":6, "intra-atomic":4, "intractability":6, "intractable":4, "intractableness":5, "intractably":4, "intrant":2, "intransigeance":4, "intransigeant":4, "intransigeantly":5, "intransigeancy":5, "intransigence":4, "intransigent":4, "intransigently":5, "intransigency":5, "intransitive":4, "intransitively":5, "intransitiveness":5, "intravasation":5, "intraabdominal":6, "intracardiac":5, "intracellular":5, "intracellularly":6, "intracoastal waterway":7, "intracranial":5, "intracutaneous":6, "intracutaneously":7, "intradermal":4, "intradermally":5, "intradermic":4, "intradermically":6, "intrados":3, "intramarginal":5, "intramolecular":6, "intramundane":4, "intramuscular":5, "intramuscularly":6, "intramural":4, "intranational":5, "intranuclear":5, "intrapsychic":4, "intrapsychically":6, "intraspinal":4, "intraspinally":5, "intrastate":3, "intratelluric":5, "intrauterine":5, "intrauterine device":7, "intravascular":5, "intravenous":4, "intravenously":5, "intravital":4, "intrazonal soil":5, "intreat":2, "intrench":2, "intrencher":3, "intrenchment":3, "intrepid":3, "intrepidly":4, "intrepidness":4, "intrepidity":5, "intrigue":2, "intrigued":2, "intrinsic":3, "intrinsic semiconductor":8, "intrinsical":4, "intrinsically":5, "intricate":3, "intricately":4, "intricateness":4, "intricacy":4, "intrigant":3, "intrigante":3, "intriguant":3, "intriguante":3, "intriguer":3, "intriguing":3, "intriguingly":4, "intro":2, "introit":2, "introrse":2, "introrsely":3, "introduce":3, "introduced":3, "introducer":4, "introducing":4, "introducible":5, "introduction":4, "introductive":4, "introductorily":6, "introductoriness":6, "introductory":5, "introgression":4, "introit":3, "introject":3, "introjection":4, "intromission":4, "intromissive":4, "intromissibility":7, "intromissible":5, "intromit":3, "intromitted":4, "intromittent":4, "intromitter":4, "intromitting":4, "intropunitive":5, "introscope":3, "introspect":3, "introspectable":5, "introspectible":5, "introspection":4, "introspectional":5, "introspectionist":5, "introspective":4, "introspectively":5, "introspectiveness":5, "introspector":4, "introsusception":5, "introvert":3, "introversion":4, "introversive":4, "intrude":2, "intruded":3, "intruder":3, "intruding":3, "intrudingly":4, "intrust":2, "intrusion":3, "intrusional":4, "intrusive":3, "intrusively":4, "intrusiveness":4, "inturn":2, "inturned":2, "intussuscept":4, "intussusception":5, "intussusceptive":5, "intubate":3, "intubated":4, "intubatting":4, "intubation":4, "intuit":3, "intuitable":5, "intuition":4, "intuitional":5, "intuitionalism":6, "intuitionalist":6, "intuitionally":6, "intuitionism":5, "intuitionist":5, "intuitionless":5, "intuitive":4, "intuitively":5, "intuitiveness":5, "intuitivism":5, "intuitivist":5, "intumesce":3, "intumesced":3, "intumescing":4, "intumescence":4, "intumescent":4, "intumescency":5, "intwine":2, "intwined":2, "intwinement":3, "intwining":3, "intwist":2, "inunction":3, "inundant":3, "inundate":3, "inundated":4, "inundating":4, "inundation":4, "inundator":4, "inundatory":5, "inure":2, "inured":2, "inurement":3, "inurn":2, "inurnment":3, "inurbane":3, "inurbanely":4, "inurbanity":5, "inuredness":4, "inuring":3, "inuit":3, "inulase":3, "inulin":3, "inutile":3, "inutilely":4, "inutility":5, "invade":2, "invadable":4, "invaded":3, "invader":3, "invading":3, "invaginate":4, "invaginated":5, "invaginating":5, "invaginable":5, "invagination":5, "invalid":3, "invalidly":4, "invalidness":4, "invalidate":4, "invalidated":5, "invalidating":5, "invalidation":5, "invalidator":5, "invaluable":5, "invaluableness":6, "invaluably":5, "invar":2, "invariant":4, "invariantly":5, "invariability":7, "invariable":5, "invariableness":6, "invariably":5, "invalid":3, "invalidism":4, "invalidity":5, "invalidity benefit":8, "invasion":3, "invasive":3, "invected":3, "invective":3, "invectively":4, "invectiveness":4, "inveigh":2, "inveigher":3, "inveigle":3, "inveigler":3, "inveiglement":4, "invent":2, "inventable":4, "inventer":3, "inventible":4, "invention":3, "inventional":4, "inventionless":4, "inventive":3, "inventively":4, "inventiveness":4, "inventor":3, "inventoried":4, "inventories":4, "inventorial":5, "inventorially":6, "inventoriable":6, "inventory":4, "inventorying":5, "inverse":2, "inverse function":4, "inversed":2, "inversely":3, "inversing":3, "invert":2, "invert sugar":4, "invertase":3, "inverted comma":5, "inverted mordent":5, "inverted pleat":4, "inverted snob":4, "inverter":3, "invertibility":6, "invertible":4, "invercargill":4, "inverness":3, "invernessshire":4, "inversion":3, "inversive":3, "inversor":3, "invertebrate":4, "invertebracy":5, "invertin":3, "invertor":3, "invest":2, "investable":4, "investible":4, "investment":3, "investment trust":4, "investigate":4, "investigated":5, "investigating":5, "investigable":5, "investigation":5, "investigational":6, "investigative":5, "investigator":5, "investigatory":6, "investitive":4, "investiture":4, "investor":3, "inveterate":4, "inveterately":5, "inveterateness":5, "inveteracy":5, "invenit":3, "inveracity":5, "invidious":4, "invidiously":5, "invidiousness":5, "invigilate":4, "invigilated":5, "invigilating":5, "invigilation":5, "invigilator":5, "invigorant":4, "invigorate":4, "invigorated":5, "invigorating":5, "invigoratingly":6, "invigoration":5, "invigorative":5, "invigoratively":6, "invigorator":5, "invincibility":6, "invincible":4, "invincibleness":5, "invincibly":4, "invisibility":6, "invisible":4, "invisible balance":6, "invisible ink":5, "invisibleness":5, "invisibly":4, "invite":2, "invited":3, "inviter":3, "inviting":3, "invitingly":4, "invitingness":4, "inviable":4, "inviolate":4, "inviolately":5, "inviolability":7, "inviolable":5, "inviolableness":6, "inviolably":5, "inviolacy":5, "invitation":4, "invitational":5, "invitatory":5, "invitatory":5, "invocative":4, "invocatory":5, "invoice":2, "invoiced":2, "invoicing":3, "invoke":2, "invoked":2, "invoker":3, "invoking":3, "involve":2, "involved":2, "involvement":3, "involvedly":4, "involvedness":4, "involver":3, "involving":3, "involuntarily":6, "involuntariness":6, "involuntary":5, "involucel":4, "involucelate":5, "involucellum":5, "invocate":3, "invocated":4, "invocating":4, "invocable":4, "invocation":4, "invocator":4, "involute":3, "involutely":4, "involuted":4, "involucral":4, "involucrate":4, "involucre":4, "involucrum":4, "involution":4, "involutional":5, "invulnerability":7, "invulnerable":5, "invulnerableness":6, "invulnerably":5, "invultuation":5, "invrs":3, "inwale":2, "inwall":2, "inward":2, "inwards":2, "inwardly":3, "inwardness":3, "inweave":2, "inweaved":2, "inweaving":3, "inwind":2, "inwinding":3, "inwound":2, "inwoven":3, "inwrap":2, "inwrapped":2, "inwrapping":3, "inwreathe":2, "inwreathed":2, "inwreathing":3, "inwrought":2, "inyala":3, "iom":1, "ioof":1, "iormungandr":3, "ioshkar-ola":3, "iou":1, "iow":1, "ioannina":4, "ionesco":3, "ipa":1, "iphianassa":5, "iphicles":3, "iphigenia":5, "iphimedia":5, "iphitus":3, "iphthime":3, "ipswich":2, "ipecac":3, "ipecacuanha":6, "ipiutak":4, "ipomoea":4, "ipsambul":3, "ipse dixit":4, "ipsissima verba":6, "ipsilateral":5, "ipso facto":4, "ipso jure":4, "ipsus":2, "iqbal":2, "ira":1, "iran":1, "irbm":1, "ire":1, "ire":1, "iredell":2, "ireful":2, "irefully":3, "irefulness":3, "ireland":2, "irelander":3, "ireless":2, "ireton":2, "irk":1, "irksome":2, "irksomely":3, "irksomeness":3, "irl":1, "irl":1, "iro":1, "irq":1, "irreg":1, "irbid":2, "irbil":2, "irgun":2, "irgunist":3, "irian barat":5, "irian jaya":5, "iridaceous":4, "iridectome":4, "iridectomise":5, "iridectomised":5, "iridectomising":6, "iridectomize":5, "iridectomized":5, "iridectomizing":6, "iridectomy":5, "irides":3, "iridescence":4, "iridescent":4, "iridescently":5, "iridize":3, "iridized":3, "iridizing":4, "iridization":5, "irido":3, "iridosmine":4, "iridosmium":5, "iridotomy":5, "iridous":3, "iridocapsulitis":7, "iridochoroiditis":7, "iridocyclitis":6, "iridopupillary":7, "iridum":3, "irja":2, "irkutsk":2, "irma":2, "irmina":3, "iroquois":3, "iroquoian":4, "irra":2, "irradiance":4, "irradiant":4, "irradiate":4, "irradiated":5, "irradiating":5, "irradiatingly":6, "irradiation":5, "irradiative":5, "irradiator":5, "irrational":4, "irrational number":6, "irrationalise":5, "irrationalised":5, "irrationalism":5, "irrationalist":5, "irrationalising":6, "irrationalistic":6, "irrationalize":5, "irrationalized":5, "irrationalizing":6, "irrationality":6, "irrationally":5, "irrationalness":5, "irrawaddy":4, "irreconcilability":8, "irreconcilable":6, "irreconcilableness":7, "irreconcilably":6, "irrefragability":7, "irrefragable":5, "irrefragableness":6, "irrefragably":5, "irrefutability":7, "irrefutable":5, "irrefutableness":6, "irrefutably":5, "irregular":4, "irregularity":6, "irregularly":5, "irrelative":4, "irrelatively":5, "irrelativeness":5, "irrelevance":4, "irrelevant":4, "irrelevantly":5, "irrelevancy":5, "irremeable":5, "irremeably":5, "irreparability":7, "irreparable":5, "irreparableness":6, "irreparably":5, "irresolute":4, "irresolutely":5, "irresoluteness":5, "irresoluble":5, "irresolution":5, "irreverence":4, "irreverent":4, "irreverently":5, "irrevocability":7, "irrevocable":5, "irrevocableness":6, "irrevocably":5, "irrebuttable":5, "irreclaimability":7, "irreclaimable":5, "irreclaimableness":6, "irreclaimably":5, "irrecoverable":6, "irrecoverableness":7, "irrecoverably":6, "irrecusable":5, "irrecusably":5, "irredeemability":7, "irredeemable":5, "irredeemableness":6, "irredeemably":5, "irredenta":4, "irredentism":4, "irredentist":4, "irredentist":4, "irreducibility":7, "irreducible":5, "irreducibleness":6, "irreducibly":5, "irreformable":5, "irrefrangibility":7, "irrefrangible":5, "irrefrangibleness":6, "irrefrangibly":5, "irregardless":4, "irrelievable":5, "irreligiosity":7, "irreligion":4, "irreligionist":5, "irreligious":4, "irreligiously":5, "irreligiousness":5, "irremediable":6, "irremediableness":7, "irremediably":6, "irremissibility":7, "irremissible":5, "irremissibleness":6, "irremissibly":5, "irremovability":7, "irremovable":5, "irremovableness":6, "irremovably":5, "irrepealability":7, "irrepealable":5, "irrepealableness":6, "irrepealably":5, "irreplaceable":5, "irreplacably":5, "irrepleviable":6, "irreplevisable":6, "irrepressibility":7, "irrepressible":5, "irrepressibleness":6, "irrepressibly":5, "irreproachability":7, "irreproachable":5, "irreproachableness":6, "irreproachably":5, "irresistibility":7, "irresistible":5, "irresistibleness":6, "irresistibly":5, "irresolvability":7, "irresolvable":5, "irresolvableness":6, "irresolubility":7, "irrespective":4, "irrespectively":5, "irrespirable":5, "irresponsive":4, "irresponsiveness":5, "irresponsibility":7, "irresponsible":5, "irresponsibleness":6, "irresponsibly":5, "irretention":4, "irretentive":4, "irretentiveness":5, "irretraceable":5, "irretraceably":5, "irretrievability":7, "irretrievable":5, "irretrievableness":6, "irretrievably":5, "irreversibility":7, "irreversible":5, "irreversibleness":6, "irreversibly":5, "irriguous":4, "irrigate":3, "irrigated":4, "irrigating":4, "irrigable":4, "irrigably":4, "irrigation":4, "irrigational":5, "irrigative":4, "irrigator":4, "irritant":3, "irritancy":4, "irritate":3, "irritated":4, "irritatedly":5, "irritating":4, "irritatingly":5, "irritability":6, "irritable":4, "irritableness":5, "irritably":4, "irritation":4, "irritative":4, "irritativeness":5, "irritator":4, "irrorate":3, "irrorated":4, "irroration":4, "irrotational":5, "irrotationally":6, "irrupt":2, "irruption":3, "irruptive":3, "irruptively":4, "irtish":2, "irtysh":2, "irvin":2, "irvine":2, "irving":2, "irvington":3, "irwin":2, "isbn":1, "ish-bosheth":2, "isherwood":3, "ishmael":3, "ishmaelite":4, "ishmaelitish":5, "ishpeming":3, "ishtar":2, "ishvara":3, "isl":1, "isle":1, "isle royale":3, "isleless":2, "isling":2, "ism":1, "isn't":1, "iso":1, "isth":1, "isth":1, "isthmectomy":4, "isthmi":2, "isthmian":3, "isthmian":3, "isthmian games":4, "isthmoid":2, "isthmus":2, "isthmuses":3, "isabnormal":4, "isallobar":4, "isallotherm":4, "isandrous":3, "isanthous":3, "isauxetic":4, "isauxesis":4, "isabel":3, "isabelle":3, "isabella":4, "isabella i":5, "isacoustic":4, "isadore":3, "isadora":4, "isagoge":4, "isanomal":4, "isanomalous":5, "isba":2, "iscariot":4, "iscariotic":5, "iscariotism":5, "ischaemic":3, "ischaemia":4, "ischepolis":4, "ischemic":3, "ischemia":4, "ischia":2, "ischia":3, "ischiadic":4, "ischiatic":4, "ischium":3, "ischys":2, "isenthalpic":4, "isentrope":3, "isentropic":4, "isfahan":3, "isin":2, "ising":2, "isiac":3, "isidor":3, "isidore":3, "isidore of seville":6, "isidora":4, "isidorean":5, "isidorian":5, "isidorus":4, "iskander bey":4, "iskenderun":4, "islam":2, "islamabad":4, "islamic":3, "islamise":3, "islamised":3, "islamism":3, "islamising":4, "islamite":3, "islamize":3, "islamized":3, "islamizing":4, "islamization":5, "island":2, "island of reil":4, "island universe":5, "islands of langerhans":6, "islander":3, "islandish":3, "islandless":3, "islandlike":3, "islated":3, "islating":3, "islay":2, "islet":2, "islets of langerhans":6, "isleted":3, "islington":3, "isma'ili":4, "ismailia":4, "ismael":3, "ismail pasha":5, "ismaili":4, "ismailian":4, "ismaili":4, "ismailiya":5, "ismarus":3, "ismet":2, "ismene":3, "ismenus":3, "isn't":2, "isnad":2, "isosmotic":4, "isolative":4, "ispahan":3, "israeli":3, "israel":3, "israelite":4, "israelitic":5, "israelitish":5, "israfil":3, "issachar":3, "issacharite":4, "issei":2, "issei":2, "issue":2, "issued":2, "issueless":3, "issus":2, "issuance":3, "issuant":3, "issuable":4, "issuably":4, "issuer":3, "issuing":3, "issyk-kul":2, "istanbul":3, "istle":2, "istria":3, "istrian":3, "it'll":1, "it's":1, "ita":1, "ita":1, "ital":1, "ital":1, "itch":1, "itching":2, "itchingly":3, "itchier":3, "itchiest":3, "itchiness":3, "itchy":2, "ithaca":3, "ithacan":3, "ither":2, "ithiel":3, "ithyphallic":4, "ito":1, "its":1, "itu":1, "itzhak":2, "ita":2, "itacolumite":5, "itaconic acid":6, "italy":3, "iter":2, "iterance":3, "iterant":3, "iterate":3, "iterated":4, "iterating":4, "iteration":4, "iterative":4, "iteratively":5, "iterativeness":5, "itself":2, "itsy-bitsy":3, "itty-bitty":3, "itylus":3, "ivb":1, "ives":1, "iww":1, "ixelles":2, "ixia":3, "ixion":3, "ixodid":3, "ixtaccihuatl":4, "ixtacihuatl":4, "ixtle":2, "iyyar":2, "izard":2, "izard":2, "izba":2, "izing":2, "izmir":2, "izmit":2, "iznik":2, "iztaccihuatl":4, "izvestia":4, "izzak":2, "izzard":2, "izzat":2, "iacchus":3, "ialmenus":4, "ialysos":4, "ialysus":4, "iamb":2, "iambe":3, "iambic":3, "iambically":5, "iambus":3, "ian":2, "ianthe":3, "iapetus":4, "iarbas":3, "iardanus":4, "iatric":3, "iatrical":4, "iatrochemist":5, "iatrochemistry":6, "iatrochemical":6, "iatrochemically":7, "iatrogenic":5, "iatrogenicity":7, "iache":3, "iago":3, "iamus":3, "iapigia":5, "iapyx":3, "iasion":4, "iaso":3, "iasus":3, "ibada":3, "ibadan":3, "ibadhi":3, "ibagu":3, "ibanez":3, "ibert":2, "iberville":3, "ibex":2, "ibexes":3, "iberia":4, "iberian":4, "iberian peninsula":8, "ibibio":4, "ibis":2, "ibises":3, "ibidem":3, "ibiza":3, "ibo":2, "ibos":2, "ibez":5, "ic":2, "icaria":4, "icarian":4, "icarian sea":5, "icarius":4, "icel":2, "icelus":3, "iceni":3, "ichang":2, "ichinomiya":5, "ichor":2, "ichorous":3, "icicle":3, "icicled":3, "icier":3, "iciest":3, "icily":3, "iciness":3, "icon":2, "icons":2, "iconic":3, "iconic memory":6, "iconical":4, "iconically":5, "iconoclasm":4, "iconoclast":4, "iconoclastic":5, "iconoclastically":7, "iconodule":4, "iconodulic":5, "iconodulist":5, "iconoduly":5, "iconograph":4, "iconographic":5, "iconographical":6, "iconological":6, "iconomatic":5, "iconoscope":4, "iconostas":4, "iconicity":5, "iconium":4, "iconographer":5, "iconography":5, "iconolater":5, "iconolatrous":5, "iconolatry":5, "iconologist":5, "iconology":5, "iconostasis":5, "icosahedral":5, "icosahedron":5, "icositetrahedron":7, "icy":2, "icy pole":3, "id":2, "ida":2, "idaea":3, "idaean":3, "idalia":3, "idas":2, "idabel":3, "idaho":3, "idahoan":4, "idaline":3, "idalina":4, "idem":2, "idemfactor":4, "idempotent":4, "identic":3, "identical":4, "identical proposition":8, "identically":5, "identicalness":5, "identified":4, "identifiable":6, "identifiableness":7, "identification":6, "identification parade":8, "identifier":5, "identify":4, "identifying":5, "identikit":4, "identity":4, "idea":3, "idea":3, "ideal":3, "ideal element":6, "ideal gas":4, "idealise":4, "idealised":4, "idealism":4, "idealist":4, "idealiser":5, "idealistic":5, "idealistical":6, "idealistically":7, "idealize":4, "idealized":4, "idealizer":5, "idealizing":5, "ideality":5, "idealization":6, "ideally":4, "idealness":4, "ideate":3, "ideaful":4, "ideaistic":5, "idealess":4, "ideamonger":5, "ideation":4, "ideational":5, "ideationally":6, "ideative":4, "ideatum":4, "ideler":3, "ideologise":5, "ideologised":5, "ideologist":5, "ideologising":6, "ideologize":5, "ideologized":5, "ideologizing":6, "ideology":5, "ideologue":4, "ideologic":5, "ideological":6, "ideomotion":5, "ideomotor":5, "idhi":2, "idle":2, "idle pulley":4, "idle wheel":3, "idled":2, "idler":2, "idler pulley":4, "idlesse":2, "idlest":2, "idleness":3, "idlewild":3, "idling":2, "idly":2, "ido":2, "idol":2, "idolater":4, "idolatress":4, "idolatrise":4, "idolatrised":4, "idolatrising":5, "idolatrize":4, "idolatrized":4, "idolatrizer":5, "idolatrizing":5, "idolatrous":4, "idolatrously":5, "idolatrousness":5, "idolatry":4, "idolise":3, "idolised":3, "idolism":3, "idolist":3, "idoliser":4, "idolising":4, "idolize":3, "idolized":3, "idolizer":4, "idolizing":4, "idolization":5, "idomeneus":4, "idocrase":3, "idoism":3, "idoist":3, "idoistic":4, "idola":3, "idolum":3, "idomeneo":5, "idona":3, "idonea":4, "idoneity":5, "idoneous":4, "idothea":4, "idun":2, "iduna":3, "idyl":2, "idyll":2, "idylist":3, "idyllic":3, "idyllist":3, "idyllically":5, "idcue":3, "ieda":3, "ielene":3, "ieyasu":4, "ife":2, "ifugao":3, "igerne":2, "iglau":2, "ignace":2, "igor":2, "igraine":2, "iguanodon":4, "iguass":4, "iguac":3, "iguacor iguass":6, "iguana":3, "iguanid":3, "ikan":2, "ikaria":4, "ikara":4, "ikebana":4, "ikeda":3, "ikeja":3, "ikeya-seki":4, "ikon":2, "ila":2, "ilang-ilang":3, "ilene":2, "ilex":2, "ilesha":3, "ilhus":4, "ilisa":3, "iligan":3, "ilione":4, "illampu":3, "illimani":4, "ilorin":3, "ilocano":4, "iloilo":4, "ilokano":4, "ilona":3, "ilone":3, "ilotycin":4, "ila":3, "ima":2, "imaginer":4, "imaginarily":6, "imaginariness":6, "imaginably":5, "imaginational":6, "imaginatively":6, "imaginativeness":6, "imagnableness":5, "imam":2, "imamate":3, "imambarah":4, "imamite":3, "imamship":3, "iman":2, "imaum":2, "imagines":4, "imago":3, "imaret":3, "imidic":3, "imidogen":4, "imine":2, "imitt":3, "iminourea":6, "imo":2, "ina":2, "inanna":3, "ines":2, "inez":2, "ino":2, "inyl":2, "inn":5, "inn":3, "io":2, "io moth":3, "iobates":4, "iodama":4, "iodic":3, "iodic acid":5, "ion":2, "ion":2, "ion engine":4, "ion exchange":4, "ion rocket":4, "ionic":3, "ionic":3, "ionic bond":4, "ionise":3, "ionised":3, "ioniser":4, "ionising":4, "ionize":3, "ionized":3, "ionizable":5, "ionizer":4, "ionizing":4, "ionizing radiation":8, "ionisation":5, "ionization":5, "ionization chamber":7, "ionization potential":8, "ionogen":4, "ionogenic":5, "ionomer":4, "ionopause":4, "ionosphere":4, "ionospheric":5, "ionospheric wave":6, "iontophoresis":6, "ios":2, "ioxus":3, "iodate":3, "iodated":4, "iodating":4, "iodation":4, "iodide":3, "iodimetry":5, "iodin":3, "iodine":3, "iodise":3, "iodism":3, "iodize":3, "iodized":3, "iodizer":4, "iodizing":4, "iodization":5, "iodol":3, "iodometry":5, "iodopsin":4, "iodous":3, "iodoform":4, "iodometric":5, "iodometrically":7, "iola":3, "iolanthe":4, "iolaus":4, "iole":3, "iolite":3, "iona":3, "ionia":4, "ionian":4, "ionian islands":6, "ionian sea":5, "ionium":4, "ionone":3, "iota":3, "iotacism":4, "iowa":3, "iphidamas":4, "iphino":5, "iphis":2, "iphition":4, "ipiales":3, "ipoctonus":4, "ipoh":2, "iproniazid":5, "iquique":3, "iquitos":3, "ira":2, "irak":2, "iran":2, "iraq":2, "irascibility":6, "irascible":4, "irascibleness":5, "irascibly":4, "irate":2, "irately":3, "iracund":3, "iracundity":5, "irade":3, "iraki":3, "irani":3, "iranian":4, "iraqi":3, "irazu":3, "irenic":3, "irenics":3, "irenical":4, "irenically":5, "irena":3, "irene":3, "irenicon":4, "iridic":3, "iridium":4, "iris":2, "iris":2, "iris diaphragm":5, "iris-in":2, "iris-out":2, "irish":2, "irish bull":3, "irish coffee":4, "irish elk":3, "irish free state":4, "irish gaelic":4, "irish moss":3, "irish potato":5, "irish republican army":8, "irish sea":3, "irish setter":4, "irish stew":3, "irish terrier":5, "irish whiskey":4, "irish wolfhound":4, "irishise":3, "irishised":3, "irishism":3, "irishising":4, "irishize":3, "irishized":3, "irishizing":4, "irishly":3, "irishman":3, "irishwoman":4, "irishwomen":4, "irisation":4, "irises":3, "iritic":3, "iricise":3, "iricised":3, "iricism":3, "iricising":4, "iricize":3, "iricized":3, "iricizing":4, "irina":3, "iritis":3, "iron":2, "iron age":3, "iron age":3, "iron chancellor":5, "iron cross":3, "iron curtain":4, "iron gate":3, "iron gates":3, "iron glance":3, "iron grey":3, "iron guard":3, "iron hand":3, "iron horse":3, "iron lung":3, "iron maiden":4, "iron man":3, "iron out":3, "iron pyrites":5, "iron rations":4, "iron-gray":2, "iron-guard":2, "iron-hearted":3, "iron-heartedness":4, "iron-jawed":2, "iron-sick":2, "irone":2, "irons":2, "ironbark":3, "ironbound":3, "ironclad":3, "irondale":3, "ironer":3, "ironfisted":4, "ironhanded":4, "ironhandedly":5, "ironhandedness":5, "ironic":3, "ironing":3, "ironing board":4, "ironical":4, "ironically":5, "ironicalness":5, "ironless":3, "ironlike":3, "ironmaster":4, "ironmonger":4, "ironmongeries":5, "ironmongery":5, "ironside":3, "ironside":3, "ironsides":3, "ironsmith":3, "ironstone":3, "ironton":3, "ironware":3, "ironweed":3, "ironwood":3, "ironwork":3, "ironworks":3, "ironworker":4, "ironworking":4, "irony":3, "ironise":3, "ironist":3, "ironize":3, "irony":3, "irus":2, "irne":3, "irklion":4, "is":2, "isaac":2, "isaacs":2, "isai":2, "isaiah":3, "isak":2, "isander":3, "isar":2, "isauria":4, "isaac":3, "isagogic":4, "isagogics":4, "isagogically":6, "isagoge":4, "isaiah":3, "isaian":3, "isaianic":4, "isaias":3, "isamu":3, "isarithm":3, "isatin":3, "isatine":3, "isenland":3, "isenstein":3, "iseult":2, "ishime":3, "ishum":2, "isidia":4, "isidioid":4, "isidium":4, "isinglass":3, "isis":2, "isiacal":4, "iso-osmotic":4, "isochronal":4, "isochronally":5, "isochronise":4, "isochronism":4, "isochronize":4, "isochronized":4, "isochronizing":5, "isochronous":4, "isochronously":5, "isochrony":4, "isochroous":4, "isochrous":5, "isocracy":4, "isocrates":4, "isodomum":4, "isogamous":4, "isogamy":4, "isogenous":4, "isogeny":4, "isogonal":4, "isogonally":5, "isolde":2, "isolda":3, "isolde":3, "isologous":4, "isomerise":4, "isomerism":4, "isomerize":4, "isomerized":4, "isomerizing":5, "isomerization":6, "isomerous":4, "isometry":4, "isonomy":4, "isonzo":3, "isopedin":4, "isopedine":4, "isopodan":4, "isopodous":4, "isosceles":4, "isostacy":4, "isostasy":4, "isosterism":4, "isotheral":4, "isotopy":4, "isotropous":4, "isotropy":4, "isoabnormal":5, "isoagglutination":7, "isoagglutinative":7, "isoagglutinin":6, "isoamyl":4, "isoamyl acetate":7, "isoantigen":5, "isobar":3, "isobare":3, "isobaric":4, "isobarism":4, "isobath":3, "isobathic":4, "isobathytherm":5, "isobathythermal":6, "isobathythermic":6, "isobront":3, "isobutane":4, "isobutene":4, "isobutylene":5, "isocarpic":4, "isocephalous":5, "isocephaly":5, "isocephalic":5, "isoceraunic":5, "isochasm":3, "isochasmic":4, "isocheim":3, "isocheimal":4, "isocheimenal":5, "isochime":3, "isochor":3, "isochore":3, "isochoric":4, "isochrone":3, "isochromatic":5, "isocline":3, "isoclinic":4, "isoclinal":4, "isocrat":3, "isocratic":4, "isocyanic acid":7, "isocyanate":5, "isocyanide":5, "isocyanine":5, "isocyano":5, "isodef":3, "isodiametric":6, "isodiaphere":5, "isodimorphic":5, "isodimorphism":5, "isodimorphous":5, "isodomic":4, "isodose":3, "isodrosotherm":5, "isodynamic":5, "isodynamical":6, "isoelastic":5, "isoelectric":5, "isoelectric point":6, "isoelectronic":6, "isogamete":4, "isogeotherm":5, "isogeothermal":6, "isogeothermic":6, "isogloss":3, "isoglossal":4, "isogon":3, "isogone":3, "isogonic":4, "isogonality":6, "isograft":3, "isogram":3, "isograph":3, "isographic":4, "isographically":6, "isogradient":5, "isogriv":3, "isohalsine":4, "isohaline":4, "isohel":3, "isohume":3, "isohyet":4, "isohyetal":5, "isokeraunic":5, "isolate":3, "isolatable":5, "isolated":4, "isolatedly":5, "isolating":4, "isolability":6, "isolable":4, "isolation":4, "isolationism":5, "isolationist":5, "isolative":4, "isolator":4, "isolecithal":5, "isoleucine":4, "isolex":3, "isoline":3, "isolog":3, "isologue":3, "isomagnetic":5, "isomer":3, "isomeric":4, "isomerically":6, "isometric":4, "isometrics":4, "isometrical":5, "isometrically":6, "isometropia":6, "isomorph":3, "isomorphic":4, "isomorphism":4, "isomorphous":4, "isoneph":3, "isonephelic":5, "isoniazid":5, "isonomic":4, "isooctane":4, "isopach":3, "isopachous":4, "isopag":3, "isopectic":4, "isopentyl":4, "isoperimetric":6, "isopetalous":5, "isoperimeter":6, "isoperimetry":6, "isophone":3, "isopiestic":5, "isopiestically":7, "isopleth":3, "isopod":3, "isopolity":5, "isopor":3, "isoporic":4, "isopolitical":6, "isoprene":3, "isopropanol":5, "isopropyl":4, "isopropylideneacetone":9, "isopycnal":4, "isopycnic":4, "isopyre":3, "isorhythm":3, "isorhythmic":4, "isorhythmically":6, "isoseismal":4, "isoseismic":4, "isospondylous":5, "isostatic":4, "isostatically":6, "isostere":3, "isosteric":4, "isostemonous":5, "isostemony":5, "isostructural":5, "isotac":3, "isotach":3, "isotactic":4, "isoteniscope":5, "isothere":3, "isotherm":3, "isothermal":4, "isothermally":5, "isothermobath":5, "isothermobathic":6, "isothiocyano":7, "isotimic":4, "isotone":3, "isotonic":4, "isotope":3, "isotopic":4, "isotonicity":6, "isotron":3, "isotropic":4, "isotype":3, "isotypic":4, "isotypical":5, "istana":3, "isus":2, "isre":3, "italian":3, "italian east africa":7, "italian sixth":4, "italian sonnet":5, "italian somaliland":7, "italian vermouth":5, "italianate":4, "italianately":5, "italianated":5, "italianating":5, "italianation":5, "italianesque":4, "italianise":4, "italianised":4, "italianism":4, "italianist":4, "italianising":5, "italianize":4, "italianized":4, "italianizer":5, "italianizing":5, "italianization":6, "italiannit":4, "italic":3, "italic":3, "italicise":4, "italicism":4, "italicize":4, "italicized":4, "italicizing":5, "italicization":6, "italophil":4, "italophile":4, "itasca":3, "itabuna":4, "itaja":5, "italia":3, "italia irredenta":7, "italo":3, "itapetininga":6, "item":2, "item veto":4, "itemise":3, "itemize":3, "itemized":3, "itemizer":4, "itemizing":4, "itemization":5, "ithomatas":4, "ithome":3, "ithun":2, "ithunn":2, "ithuriel's-spear":4, "itinerant":4, "itinerantly":5, "itinerancy":5, "itineraries":5, "itineraria":6, "itinerarium":6, "itinerary":5, "itinerate":4, "itinerated":5, "itinerating":5, "itineracy":5, "itineration":5, "ito":2, "itonia":4, "itonius":4, "iturbi":3, "iturbide":4, "itys":2, "itnez":3, "iulus":3, "ivan":2, "ivan iii":3, "ivan iv":3, "ivanhoe":3, "ivar":2, "ivanov":3, "ivanovo":4, "ivied":2, "ivies":2, "ivis":2, "iviza":3, "ivor":2, "ivories":3, "ivory":3, "ivory black":4, "ivory coast":4, "ivory gull":4, "ivory nut":4, "ivory palm":4, "ivory tower":5, "ivory-towered":4, "ivory-towerishness":6, "ivory-towerism":5, "ivory-towerite":5, "ivory-white":3, "ivorylike":4, "ivorytype":4, "ivy":2, "ivy":2, "ivy league":3, "ivyberry":4, "ivylike":3, "iwao":3, "iwis":2, "iwo":2, "iwo jima":4, "iyar":2, "iyeyasu":4, "iynx":2, "izanagi":4, "izanami":4, "izhevsk":2, "ia":3, "j'adoube":2, "j'ouvert":2, "jaap":1, "jab":1, "jabalpur":3, "jabber":2, "jabberer":3, "jabberingly":4, "jabberwock":3, "jabberwockies":4, "jabberwocky":4, "jabberwocky":4, "jabbing":2, "jabbingly":3, "jabiru":3, "jaborandi":4, "jac":1, "jacht":1, "jack":1, "jack":1, "jack ladder":3, "jack rabbit":3, "jack rafter":3, "jack the ripper":4, "jack-a-dandy":2, "jack-a-dandyism":3, "jack-in-office":2, "jack-in-the-pulpit":2, "jack-in-the-pulpulpits":3, "jack-o'-lantern":2, "jack-spaniard":2, "jacks":1, "jacksboro":3, "jackal":2, "jackass":2, "jackassery":4, "jackassism":3, "jackassness":3, "jackanapes":3, "jackaroo":3, "jackboot":2, "jackbooted":3, "jackboxes":3, "jackdaw":2, "jacket":2, "jacketed":3, "jacketless":3, "jacketlike":3, "jackey":2, "jackelyn":3, "jackeroo":3, "jackfish":2, "jackfishes":3, "jackfruit":2, "jackhammer":3, "jackie":2, "jackies":2, "jackknife":2, "jackknife-fish":2, "jackleg":2, "jacklight":2, "jacklighter":3, "jackpile":2, "jackpiling":3, "jackpot":2, "jackscrew":2, "jackshaft":2, "jacksmelt":2, "jacksnipe":2, "jackson":2, "jacksonism":3, "jacksonville":3, "jacksonian":4, "jackstay":2, "jackstone":2, "jackstraw":2, "jackstraws":2, "jacky":2, "jackyard":2, "jackyarder":3, "jacques":1, "jacquemart":2, "jacquerie":2, "jacalin":3, "jacalinne":3, "jacalyn":3, "jacamar":3, "jacaranda":4, "jacmel":2, "jacobean":4, "jacobethan":4, "jacobin":3, "jacobinic":4, "jacobinise":4, "jacobinised":4, "jacobinism":4, "jacobinising":5, "jacobinize":4, "jacobinized":4, "jacobinizing":5, "jacobinical":5, "jacobinically":6, "jacobinization":6, "jacobite":3, "jacobite rebellion":6, "jacobitely":4, "jacobitic":4, "jacobitish":4, "jacobitishly":5, "jacobitism":4, "jacobitically":6, "jaconet":3, "jacquard":2, "jacquard":2, "jacquette":2, "jacquetta":3, "jacqueline":3, "jacquelyn":3, "jacquelynne":3, "jacquerie":3, "jactation":3, "jacteleg":3, "jactitation":4, "jaculate":3, "jaculated":4, "jaculating":4, "jaculation":4, "jaculator":4, "jaculatory":5, "jaculiferous":5, "jad":1, "jade":1, "jadeite":2, "jadelike":2, "jadder":2, "jaded":2, "jadedly":3, "jadedness":3, "jading":2, "jadish":2, "jadishly":3, "jadishness":3, "jaeger":2, "jaffna":2, "jaffa":2, "jag":1, "jag":1, "jagg":1, "jagannath":3, "jagannatha":4, "jagatai":3, "jagataic":4, "jaggary":3, "jagganath":3, "jagged":2, "jaggedly":3, "jaggedness":3, "jagger":2, "jaggery":3, "jagghery":3, "jagging":2, "jaggier":3, "jaggiest":3, "jaggy":2, "jaghatai":3, "jagless":2, "jaguar":2, "jaguar":3, "jahrzeit":2, "jahve":2, "jahveh":2, "jahvism":2, "jahvist":2, "jahvistic":3, "jahwe":2, "jahweh":2, "jahwism":2, "jahwist":2, "jahwistic":3, "jai":1, "jai alai":3, "jail":1, "jail delivery":5, "jailbait":2, "jailbird":2, "jailbreak":2, "jailer":2, "jailhouse":2, "jailhouses":3, "jailless":2, "jaillike":2, "jailor":2, "jain":1, "jainism":2, "jaina":2, "jaipur":2, "jak":1, "jake":1, "jake":1, "jakes":1, "jal":1, "jalap":2, "jalapin":3, "jalop":2, "jalousie":3, "jalousied":3, "jam":1, "jam":1, "jam session":3, "jamb":1, "jambe":1, "jambstone":2, "james":1, "jamesburg":2, "jamesean":3, "jamesian":3, "jamestown":2, "jameson":2, "jamesonite":3, "jambart":2, "jambalaya":4, "jambeau":2, "jambi":2, "jambiya":3, "jambo":2, "jambos":2, "jamboy":2, "jamboree":3, "jamlike":2, "jamming":2, "jammu":2, "jammu and kashmir":5, "jammy":2, "jamnagar":3, "jampan":2, "jamshedpur":3, "jamshid":2, "jamshyd":2, "jan":1, "jan mayen":3, "jane":1, "jane":1, "janesville":2, "janssen":2, "janys":1, "jangle":2, "jangler":2, "jangly":2, "janice":2, "janis":2, "janissarian":4, "janissaries":4, "janissary":4, "janissary":4, "janiform":3, "janitor":3, "janitorship":4, "janitorial":5, "janitress":3, "janizaries":4, "janizary":4, "janizary":4, "jannock":2, "jansen":2, "jansenism":3, "jansenist":3, "jansenistic":4, "jansenistical":5, "januaries":4, "januarius":5, "january":4, "jap":1, "jape":1, "japan wax":3, "japanese":3, "japanese andromeda":7, "japanese beetle":5, "japanese cedar":5, "japanese ivy":5, "japanese lantern":5, "japanese persimmon":6, "japanese river fever":7, "japanese slippers":5, "japanese stranglehold":6, "japanesque":3, "japer":2, "japery":3, "japing":2, "japingly":3, "japonism":3, "jaques-dalcroze":2, "jaquelee":2, "jar":1, "jarl":1, "jarldom":2, "jarp":1, "jardini":3, "jardiniere":3, "jared":2, "jargon":2, "jargonal":3, "jargoneer":3, "jargonesque":3, "jargonise":3, "jargonised":3, "jargonish":3, "jargonist":3, "jargonising":4, "jargonistic":4, "jargonize":3, "jargonized":3, "jargonizing":4, "jargonization":5, "jargoon":2, "jarless":2, "jarosite":3, "jarovize":3, "jarovized":3, "jarovizing":4, "jarovization":5, "jarrah":2, "jarrell":2, "jarring":2, "jarringly":3, "jarrow":2, "jarry":2, "jarvey":2, "jarvie":2, "jarvy":2, "jas":1, "jass":1, "jasmin":2, "jasmine":2, "jasmine":2, "jasmined":2, "jasminelike":3, "jasmina":3, "jasp":2, "jasper":2, "jasper":2, "jasper national park":6, "jaspered":2, "jaspers":2, "jasperated":4, "jasperoid":3, "jasperware":3, "jaspery":3, "jasp":3, "jassy":2, "jat":1, "jauk":1, "jaunt":1, "jaunting car":3, "jauntingly":3, "jaundice":2, "jaundiced":2, "jaundicing":3, "jauntier":3, "jauntiest":3, "jauntily":3, "jauntiness":3, "jaunty":2, "jaunty car":3, "jaup":1, "jaur":2, "jaurs":3, "jav":1, "javelin":2, "javanese":3, "javanine":3, "javel water":4, "javelle water":4, "jaw":1, "jawp":1, "jaws":1, "jawbone":2, "jawboned":2, "jawboning":3, "jawbreaker":3, "jawbreaking":3, "jawbreakingly":4, "jawfish":2, "jawfishes":3, "jawlensky":3, "jawless":2, "jawlike":2, "jawrope":2, "jaxartes":3, "jay":1, "jay":1, "jayne":1, "jayawardena":5, "jaybird":2, "jaycee":2, "jayhawker":3, "jayvee":2, "jaywalk":2, "jaywalker":3, "jazz":1, "jazzer":2, "jazzier":3, "jazziest":3, "jazzily":3, "jazziness":3, "jazzman":2, "jazzy":2, "jabal":2, "jabez":2, "jabir":2, "jabir ibn hayyan":5, "jabot":2, "jabrud":2, "jaburan":3, "jacal":2, "jacarta":3, "jacana":3, "jacinth":2, "jacinth":2, "jacob":2, "jacob's ladder":4, "jacob's staff":3, "jacob's-ladder":3, "jacobsite":3, "jacobsen":3, "jacoba":3, "jacobi":3, "jacobine":3, "jacobian":4, "jacobian determinant":8, "jacobina":4, "jacobus":3, "jacobus":3, "jacobuses":4, "jacopo":3, "jadotville":3, "jael":2, "jaen":2, "jaga":2, "jagamohan":4, "jagello":3, "jagellon":3, "jager":2, "jagiello":3, "jagielon":3, "jaguarondi":4, "jaguarundi":4, "jahangir":3, "jahel":2, "jakarta":3, "jakob":2, "jakobson":3, "jakop":2, "jakoba":3, "jalapic":3, "jalapa":3, "jalee":2, "jalisco":3, "jalopies":3, "jaloppy":3, "jalopy":3, "jalor":2, "jalur":2, "jamaica":3, "jamaica rum":4, "jamaican":3, "jamalpur":3, "jamie":2, "jana sangh":3, "janacek":3, "janata":3, "janet":2, "janetta":3, "janey":2, "janiculan":4, "janiculum":4, "janie":2, "janina":3, "janos":2, "janus":2, "janus-faced":2, "jany":2, "janye":2, "jancek":4, "japan":2, "japan":2, "japan current":4, "japanned":2, "japanism":3, "japanner":3, "japanning":3, "japheth":2, "japhetic":3, "japonica":4, "japur":3, "japur":4, "japygid":3, "jaques":2, "jarash":2, "jaromir":3, "jascha":2, "jasey":2, "jaseyed":2, "jason":2, "jasy":2, "jataka":3, "jato":2, "java":2, "java man":3, "java sparrow":4, "javari":3, "javary":3, "jawan":2, "jawan":2, "jawaharlal":4, "jawara":3, "jazey":2, "jazy":2, "jaana":4, "jan":3, "jcd":1, "jcl":1, "jcr":1, "jcs":1, "jct":1, "jctn":1, "jealous":2, "jealousies":3, "jealously":3, "jealousness":3, "jealousy":3, "jean":1, "jean":1, "jean-christophe":2, "jeans":1, "jeans":1, "jeanerette":3, "jeanie":2, "jeannette":2, "jeannetta":3, "jeannie":2, "jebb":1, "jebel":2, "jebel musa":4, "jebusite":3, "jebusitic":4, "jedburgh":2, "jedda":2, "jee":1, "jeep":1, "jeeps":1, "jeer":1, "jeerer":2, "jeeringly":3, "jeez":1, "jeeing":2, "jeepers":2, "jeepers creepers":4, "jeff":1, "jeffers":2, "jefferson":3, "jefferson city":5, "jeffersontown":4, "jeffersonville":4, "jeffersonian":5, "jeffersonianism":6, "jeffrey":2, "jeffreys":2, "jeffries":2, "jeh":1, "jekyll and hyde":4, "jell":1, "jell-o":1, "jello":2, "jellab":2, "jellaba":3, "jellabah":3, "jellaba":3, "jellib":2, "jellied":2, "jelliedness":3, "jellicoe":3, "jellified":3, "jellification":5, "jellify":3, "jellifying":4, "jelly":2, "jelly baby":4, "jellybean":3, "jellyfish":3, "jellyfishes":4, "jellying":3, "jellylike":3, "jemadar":3, "jembe":2, "jemmied":2, "jemmy":2, "jemmying":3, "jen":1, "jenghis khan":3, "jenice":2, "jenkins":2, "jenkinson":3, "jenkintown":3, "jenne":2, "jenner":2, "jennet":2, "jennie":2, "jennie":2, "jennings":2, "jennifer":3, "jenny":2, "jenny":2, "jensen":2, "jeopard":2, "jeopardise":3, "jeopardised":3, "jeopardising":4, "jeopardize":3, "jeopardized":3, "jeopardizing":4, "jeopardous":3, "jeopardously":4, "jeopardousness":4, "jeopardy":3, "jephte":2, "jephthah":2, "jer":1, "jer":1, "jerk":1, "jerker":2, "jerkingly":3, "jerkier":3, "jerkiest":3, "jerkily":3, "jerkiness":3, "jerkwater":3, "jerky":2, "jerba":2, "jerbil":2, "jerboa":3, "jerbuilding":3, "jerbuilt":2, "jeremiad":4, "jeremiah":4, "jeremias":4, "jeremy":3, "jeri":2, "jeris":2, "jericho":3, "jerkin":2, "jerkinhead":3, "jermyn":2, "jerold":2, "jeroboam":4, "jeroboam":4, "jeronima":4, "jerre":2, "jerreed":2, "jerri":2, "jerrid":2, "jerrie":2, "jerrold":2, "jerry":2, "jerry":2, "jerry can":3, "jerry-build":2, "jerry-builder":3, "jerry-built":2, "jerrycan":3, "jersey":2, "jersey":2, "jersey city":4, "jerseyed":2, "jerseyan":3, "jerseyite":3, "jerseyville":3, "jerubbaal":3, "jervis":2, "jervis bay":3, "jess":1, "jess":1, "jesse":1, "jessing":2, "jest":1, "jestbook":2, "jester":2, "jestful":2, "jesting":2, "jestingly":3, "jesmine":2, "jespersen":3, "jessant":2, "jessamine":3, "jessamyn":3, "jesse":2, "jesselton":3, "jessie":2, "jessica":3, "jessy":2, "jesup":2, "jesuit":3, "jesuitic":4, "jesuitise":4, "jesuitised":4, "jesuitism":4, "jesuitist":4, "jesuitising":5, "jesuitize":4, "jesuitized":4, "jesuitizing":5, "jesuitical":5, "jesuitically":6, "jesuitization":6, "jesuitry":4, "jet":1, "jet":1, "jet engine":3, "jet propulsion":4, "jet-propelled":2, "jet-propulsion":3, "jet-setter":2, "jethra":2, "jethro":2, "jetavator":4, "jetliner":3, "jetport":2, "jetsam":2, "jetsom":2, "jetted":2, "jettie":2, "jettied":2, "jetting":2, "jettingly":3, "jettiness":3, "jettison":3, "jettisonable":5, "jetton":2, "jetty":2, "jettying":3, "jeu d'esprit":3, "jeunesse dor":4, "jevons":2, "jew":1, "jew-baiter":2, "jew-baiting":2, "jews'harp":2, "jewel":2, "jewel":2, "jeweled":2, "jewelled":2, "jeweler":3, "jewelfish":3, "jewelfishes":4, "jeweling":3, "jeweller":3, "jeweller's rouge":4, "jewellery":4, "jewellike":3, "jewelling":3, "jewelry":3, "jewelweed":3, "jewess":2, "jewett":2, "jewfish":2, "jewfishes":3, "jewish":2, "jewish autonomous region":8, "jewish calendar":5, "jewishly":3, "jewishness":3, "jewry":2, "jezabel":3, "jezebel":3, "jezebelian":5, "jezreel":3, "jezreelite":4, "jebus":2, "jefe":2, "jehad":2, "jehan":2, "jehangir":3, "jehoiada":4, "jehol":2, "jehoshaphat":4, "jehovah":3, "jehovah's witness":5, "jehovic":3, "jehovism":3, "jehovist":3, "jehovistic":4, "jehu":2, "jehudah":3, "jejune":2, "jejunely":3, "jejuneness":3, "jejunal":3, "jejunectomy":5, "jejunity":4, "jejunostomy":5, "jejunum":3, "jelab":2, "jelib":2, "jemappes":2, "jemima":3, "jena":2, "jenufa":3, "jequerity":4, "jequirity":4, "jequi":3, "jerash":2, "jereed":2, "jerez":2, "jerid":2, "jeritza":3, "jerome":2, "jerusalem":4, "jerusalem artichoke":7, "jerusalem cherry":6, "jerusalem cross":5, "jerusalem oak":5, "jesu":2, "jesus":2, "jesus freak":3, "jess":3, "jet":2, "jet":3, "jhansi":2, "jhelum":2, "jhvh":1, "jhwh":1, "jiao":1, "jib":1, "jib-headed":2, "jibe":1, "jibba":2, "jibbah":2, "jibber":2, "jibbing":2, "jibbons":2, "jibboom":2, "jiber":2, "jibing":2, "jibingly":3, "jidda":2, "jiff":1, "jiffy":2, "jig":1, "jigaboo":3, "jigger":2, "jigger flea":3, "jiggered":2, "jiggers":2, "jiggermast":3, "jiggery-pokery":5, "jigging":2, "jiggish":2, "jiggle":2, "jiggly":2, "jiglike":2, "jigsaw":2, "jigsaw puzzle":4, "jigsawn":2, "jigsawing":3, "jill":1, "jill":1, "jillaroo":3, "jillet":2, "jilt":1, "jilter":2, "jillion":2, "jim":1, "jim-dandy":2, "jimp":1, "jimply":2, "jimpness":2, "jiminy":3, "jimjams":2, "jimmie":2, "jimmied":2, "jimminy":3, "jimmy":2, "jimmy":2, "jimmy woodser":4, "jimmying":3, "jimson weed":3, "jin":1, "jink":1, "jinks":1, "jinn":1, "jinx":1, "jinx":1, "jingal":2, "jinghis khan":3, "jingle":2, "jingler":2, "jinglingly":3, "jingly":2, "jingo":2, "jingoish":3, "jingoism":3, "jingoist":3, "jingoistic":4, "jingoistically":6, "jingu":2, "jinja":2, "jinja":2, "jinker":2, "jinnah":2, "jinnee":2, "jinni":2, "jinricksha":3, "jinrickshaw":3, "jinrikisha":4, "jinriksha":3, "jinsen":2, "jissom":2, "jitney":2, "jitneyed":2, "jitneying":3, "jitter":2, "jitterbug":3, "jitterbugged":3, "jitterbugging":4, "jittery":3, "jiujitsu":3, "jiujutsu":3, "jive":1, "jiving":2, "jizya":2, "jizyah":2, "jibouti":3, "jibuti":3, "jihad":2, "jilolo":3, "jimigaki":4, "jimnez":4, "jimnez":3, "jimnez de cisneros":7, "jipijapa":4, "jiva":2, "jivatma":3, "jivaro":3, "jnana":2, "jnana-marga":3, "jnd":1, "jnr":1, "joan":1, "joaquin":2, "joaqun":3, "job":1, "job":1, "job's comforter":4, "jobber":2, "jobbery":3, "jobbing":2, "jobbing printer":4, "jobcentre":3, "jobholder":3, "jobless":2, "joblessness":3, "jochabed":3, "jochebed":3, "jock":1, "jock":1, "jockey":2, "jockey cap":3, "jockey club":3, "jockeyed":2, "jockeying":3, "jockeyish":3, "jockeylike":3, "jockeyship":3, "jocko":2, "jocko":2, "jockos":2, "jockstrap":2, "jockteleg":3, "jocelin":3, "joceline":3, "jocelyn":3, "jocelynne":3, "jocund":2, "jocundly":3, "jocular":3, "jocularity":5, "jocularly":4, "jodhpur":2, "jodhpur":2, "jodhpurs":2, "jodhpuri coat":4, "jodl":1, "jodrell bank":3, "joe":1, "joe":1, "joffre":2, "jog":1, "jogger":2, "jogging":2, "joggle":2, "joggle post":3, "joggler":2, "jogjakarta":4, "jogjakarta":4, "john":1, "john":1, "john barleycorn":4, "john birch society":6, "john chrysostom":4, "john dory":3, "john hancock":3, "john of austria":5, "john of damascus":5, "john of leyden":4, "john of salisbury":5, "john the baptist":4, "johns":1, "johnsbury":3, "johnstown":2, "johnna":2, "johnnie":2, "johnnie-come-lately":3, "johnnies-come-lately":3, "johnny":2, "johnny":2, "johnny cake":3, "johnny canuck":4, "johnny reb":3, "johnny-come-latelies":3, "johnny-come-lately":3, "johnny-jump-up":2, "johnny-on-the-spot":2, "johnnycake":3, "johnson":2, "johnson grass":3, "johnsonburg":3, "johnsonese":3, "johnsonian":4, "johnsonianism":5, "johnsonianly":5, "johnston":2, "johnin":2, "joie de vivre":4, "join":1, "joint":1, "joint account":3, "joint density function":6, "joint resolution":5, "joint-stock company":4, "jointed":2, "jointedly":3, "jointedness":3, "jointer":2, "jointless":2, "jointly":2, "jointress":2, "jointweed":2, "jointworm":2, "joinable":3, "joinder":2, "joiner":2, "joinery":3, "jointure":2, "jointured":2, "jointureless":3, "joinville":2, "joinvile":3, "joist":1, "joistless":2, "joiada":3, "joke":1, "jokebook":2, "jokeless":2, "jokester":2, "joker":2, "joking":2, "jokingly":3, "jokjakarta":4, "joktaleg":3, "jole":1, "jolt":1, "jolter":2, "joltingly":3, "joltier":3, "joltiest":3, "joltiness":3, "joltless":2, "jolty":2, "jollied":2, "jollier":3, "jolliest":3, "jollified":3, "jollification":5, "jollify":3, "jollifying":4, "jollily":3, "jolliness":3, "jollities":3, "jollity":3, "jolly":2, "jolly boat":3, "jolly roger":4, "jollying":3, "jolson":2, "jon":1, "jones":1, "jonesboro":3, "joneses":2, "jonathan":3, "jongleur":2, "jonnick":2, "jonnock":2, "jonquil":2, "jonquil":2, "jonson":2, "jonsonian":4, "jook":1, "jooss":1, "joplin":2, "joppa":2, "jordaens":2, "jordan":2, "jordan":2, "jordan almond":4, "jorge":2, "jormungandr":3, "jornada":3, "jos":1, "josh":1, "josh":1, "josher":2, "joshua":3, "joshua tree":4, "joss":1, "joselyn":3, "joskin":2, "josquin des pr":4, "josser":2, "jostle":2, "jostler":2, "jostlement":3, "josue":3, "jot":1, "jotted":2, "jotter":2, "jotting":2, "jotty":2, "joual":1, "jouk":1, "joule":1, "joule":1, "joule-thomson effect":4, "jounce":1, "jouncing":2, "jour":1, "journo":2, "jourdan":2, "journal":2, "journal box":3, "journalary":4, "journalese":3, "journalise":3, "journalised":3, "journalish":3, "journalism":3, "journalist":3, "journalising":4, "journalistic":4, "journalistically":6, "journalize":3, "journalized":3, "journalizer":4, "journalizing":4, "journalization":5, "journey":2, "journeyed":2, "journeyer":3, "journeying":3, "journeyman":3, "journeywork":3, "joust":1, "jouster":2, "jouve":1, "joubert":2, "jouhaux":2, "joukahainen":4, "jove":1, "jow":1, "jowl":1, "jowlier":3, "jowliest":3, "jowly":2, "jowett":2, "joy":1, "joy":1, "joyce":1, "joycean":3, "joyance":2, "joyful":2, "joyfully":3, "joyfulness":3, "joyless":2, "joylessly":3, "joylessness":3, "joyous":2, "joyously":3, "joyousness":3, "joypop":2, "joyride":2, "joab":2, "joan":2, "joann":2, "joanne":2, "joanna":3, "joannes":3, "joannes":3, "joao pessoa":5, "joas":2, "joash":2, "joachim":3, "jobina":3, "jobyna":3, "jocasta":3, "jocaste":3, "jochum":2, "jocose":2, "jocosely":3, "jocoseness":3, "jocosity":4, "jocundity":4, "jodean":2, "jodeen":2, "jodene":2, "jodi":2, "jodine":2, "jodo":2, "jody":2, "jodyn":2, "jodynne":2, "joel":2, "joensuu":3, "joey":2, "joey":2, "joey hooker":4, "joeys":2, "johan":2, "johann":2, "johanna":3, "johannes":3, "johannes":3, "johannesburg":4, "johannine":3, "johannisberger":5, "johor":2, "johore":2, "johore bahru":4, "jojoba":3, "jokai":2, "joliot-curie":3, "joliet":3, "jolivet":3, "jolo":2, "jomo":2, "jonah":2, "jonas":2, "jonel":2, "joropo":3, "jorum":2, "josef":2, "josep":2, "joseph":2, "joseph":2, "joseph bonaparte gulf":6, "joseph ii":3, "joseph of arimathea":8, "joseph's-coat":2, "joser":2, "josephine":3, "josephine's-lily":4, "josephus":3, "josie":2, "josip":2, "josiah":3, "josias":3, "jos":3, "jota":2, "jotun":2, "jotunn":2, "jotunnheim":3, "jotunheim":3, "jovial":3, "joviality":5, "jovially":4, "jovialness":4, "jovian":3, "jovianly":4, "jowett":2, "jsd":1, "juan":1, "juan carlos i":4, "juantorena":4, "juana":2, "juanita":3, "jube":1, "jubbah":2, "jubbulpore":3, "jud":1, "jud":1, "judd":1, "jude":1, "judge":1, "judge advocate":4, "judge advocate general":7, "judgeable":3, "judgeless":2, "judgelike":2, "judgement":2, "judgemental":3, "judgeship":2, "judger":2, "judges":2, "judges' rules":3, "judging":2, "judgingly":3, "judgmatic":3, "judgmatical":4, "judgmatically":5, "judgment":2, "judgment":2, "judgment day":3, "judgmental":3, "judder":2, "jug":1, "jugfet":1, "jugful":2, "juggernaut":3, "juggernaut":3, "juggernautish":4, "jugggleries":3, "jugging":2, "juggins":2, "jugginses":3, "juggle":2, "juggler":2, "jugglery":3, "jugglingly":3, "jughead":2, "jugular":3, "jugular vein":4, "jugulate":3, "juice":1, "juice extractor":4, "juiceless":2, "juicer":2, "juicing":2, "juicier":3, "juiciest":3, "juicily":3, "juiciness":3, "juicy":2, "juiz de fora":4, "jukes":1, "jukebox":2, "jul":1, "jules":1, "julia":2, "julian":2, "julian alps":3, "julian calendar":5, "julius":2, "julius caesar":4, "julius ii":3, "jullundur":3, "jump":1, "jump-up":1, "jumpable":3, "jumper":2, "jumping bean":3, "jumping jack":3, "jumping mouse":3, "jumping-off place":3, "jumpingly":3, "jumpier":3, "jumpiest":3, "jumpily":3, "jumpiness":3, "jumpmaster":3, "jumprock":2, "jumpy":2, "jumbal":2, "jumble":2, "jumble sale":3, "jumbled":2, "jumbler":2, "jumblement":3, "jumblingly":3, "jumbo":2, "jumbo jet":3, "jumbuck":2, "jumna":2, "jun":1, "junc":1, "junction":2, "junction box":3, "junction transistor":5, "junctional":3, "juncture":2, "june":1, "juneberry":3, "juneteenth":2, "jung":1, "jungfrau":2, "junggrammatiker":5, "jungian":3, "junk":1, "junkie":2, "junkman":2, "junky":2, "junkyard":2, "junr":1, "junr":1, "juncaceous":3, "junco":2, "jundiai":3, "jundied":2, "jundy":2, "jundying":3, "jungle":2, "jungle fever":4, "jungle fowl":3, "jungle juice":3, "jungled":2, "junglegym":3, "jungly":2, "junior":2, "junior":2, "junior college":4, "junior common room":5, "junior lightweight":4, "junior middleweight":5, "junior school":3, "junior welterweight":5, "juniorate":3, "juniority":4, "junius":2, "junker":2, "junkers":2, "junkerdom":3, "junkerism":3, "junket":2, "junketter":3, "junketeer":3, "junta":2, "junto":2, "jupe":1, "jurisp":1, "jus":1, "jus canonicum":5, "jus civile":4, "jus divinum":4, "jus gentium":4, "jus naturale":5, "jus sanguinis":4, "jus soli":3, "just":1, "just intonation":5, "just noticeable difference":8, "juste-milieu":2, "juste-milieux":2, "justaucorps":3, "juster":2, "justly":2, "justness":2, "jusserand":3, "jussi":2, "jussive":2, "justa":2, "justen":2, "justice":2, "justice":2, "justice court":3, "justiceless":3, "justicelike":3, "justiceship":3, "justicer":3, "justificatory":6, "justin":2, "justin martyr":4, "justine":2, "justinian code":5, "justinian i":5, "justinianean":6, "justinianian":6, "justiciar":4, "justiciaries":5, "justiciarship":5, "justiciary":5, "justiciability":7, "justiciable":5, "justicoat":3, "justified":3, "justifiability":7, "justifiable":5, "justifiable homicide":8, "justifiableness":6, "justifiably":5, "justification":5, "justificative":5, "justificatory":6, "justifier":4, "justify":3, "justifying":4, "justifyingly":5, "justina":3, "justitia":4, "justle":2, "justus":2, "jut":1, "jute":1, "jute":1, "jutelike":2, "jutish":2, "jutland":2, "jutlander":3, "jutlandish":3, "jutted":2, "juttied":2, "jutting":2, "juttingly":3, "jutty":2, "juttying":3, "juxtapose":3, "juxtaposed":3, "juxtaposing":4, "juxtaposition":5, "juxtapositional":6, "jurez":3, "juan de fuca":5, "juan ferndez islands":7, "juba":2, "juba":2, "jubal":2, "jubate":2, "jube":2, "jubilance":3, "jubilant":3, "jubilantly":4, "jubilancy":4, "jubilate":3, "jubilated":4, "jubilating":4, "jubilate":4, "jubilation":4, "jubilatio":5, "jubilatory":5, "jubile":3, "jubilee":3, "jubilus":3, "juda":2, "judaea":3, "judaean":3, "judaeo-german":4, "judaeo-spanish":4, "judah":2, "judah ha-nasi":4, "judahite":3, "judas":2, "judas":2, "judas maccabaeus":6, "judas tree":3, "judaic":3, "judaise":3, "judaised":3, "judaism":3, "judaist":3, "judaiser":4, "judaising":4, "judaistic":4, "judaistically":6, "judaize":3, "judaized":3, "judaizer":4, "judaizing":4, "judaica":4, "judaical":4, "judaically":5, "judaization":5, "judette":2, "judezmo":3, "judea":3, "judean":3, "judie":2, "judith":2, "judicable":4, "judicative":4, "judicator":4, "judicatories":5, "judicatorial":6, "judicatory":5, "judicature":4, "judicial":3, "judicial separation":7, "judicially":4, "judicialness":4, "judicious":3, "judiciously":4, "judiciousness":4, "judiciaries":5, "judiciarily":6, "judiciary":5, "judiciable":5, "judo":2, "judogi":3, "judoist":3, "judoka":3, "judy":2, "jugal":2, "jugate":2, "jugendstil":3, "juglandaceous":4, "jugoslav":3, "jugoslav":3, "jugoslavic":4, "jugoslavia":5, "jugoslavian":5, "jugum":2, "jugurtha":3, "jugurthine":3, "jugulate":3, "jugulated":4, "jugulating":4, "jugulation":4, "jujitsu":3, "juju":2, "jujube":2, "jujutsu":3, "jujuy":2, "jujuism":3, "jujuist":3, "julep":2, "julie":2, "julien":2, "julio":2, "julianne":3, "juliana":4, "julianna":4, "julienne":3, "juliet":3, "juliet cap":4, "juliette":3, "julius":3, "july":2, "jumada":3, "juneau":2, "juniper":3, "juno":2, "junot":2, "junoesque":3, "jupiter":3, "jupiter's-beard":3, "jupon":2, "jura":2, "jura":2, "jural":2, "jurally":3, "jurant":2, "jurassic":3, "jurat":2, "juramentado":5, "juration":3, "juratory":4, "jurel":2, "jurez":2, "juridic":3, "juridical":4, "juridical days":5, "juridically":5, "jurigged":2, "jurigging":3, "jurist":2, "jurisconsult":4, "jurisdiction":4, "jurisdictionally":6, "jurisdictive":4, "jurisprudence":4, "jurisprudent":4, "jurisprudential":5, "jurisprudentially":6, "juristic":3, "juristic act":4, "juristical":4, "juristically":5, "juror":2, "juru":2, "juru":4, "jury":2, "jury box":3, "jury process":4, "jury-packing":3, "jury-rig":2, "jury-rigged":2, "juryless":3, "juryman":3, "juryrigged":3, "jurywoman":4, "jurywomen":4, "juturna":3, "juvarra":3, "juventas":3, "juvenal":3, "juvenal":3, "juvenalian":5, "juvenescence":4, "juvenescent":4, "juvenile":3, "juvenile court":4, "juvenile delinquent":6, "juvenile delinquency":7, "juvenile hormone":5, "juvenilely":4, "juvenileness":4, "juvenilia":5, "juvenility":5, "jwv":1, "jylland":2, "jymmye":2, "jyvskyl":6, "jnos":3, "jger":3, "jrmie":5, "jrme":4, "jzef":3, "jnkping":5, "jtunnheim":4, "jtunheim":4, "jnger":3, "jger":2, "jkping":3, "k ration":3, "k-meson":2, "k-meson":2, "k-radiation":4, "k-series":2, "kaapstad":2, "kaaba":2, "kab":1, "kabala":3, "kabbala":3, "kachcha":2, "kaddish":2, "kaddishim":3, "kaffir":2, "kaffir beer":3, "kaffir corn":3, "kaffirs":2, "kaffiyeh":3, "kaffraria":4, "kaffrarian":4, "kafir":2, "kafir corn":3, "kafka":2, "kafre":2, "kaftan":2, "kahn":1, "kahlil":2, "kahla":4, "kaif":1, "kail":1, "kailyard":2, "kailyarder":3, "kailyardism":3, "kain":1, "kain":1, "kaingang":2, "kairouan":2, "kairwan":2, "kaiak":2, "kaieteur":3, "kaieteur falls":4, "kaifeng":2, "kailasa":3, "kailua":3, "kainite":2, "kainogenesis":5, "kaiser":2, "kaiser":2, "kaiserslautern":4, "kaiserdom":3, "kaiserism":3, "kaisership":3, "kajeput":3, "kakistocracy":5, "kalb":1, "kale":1, "kaleyard":2, "kaleyard school":3, "kaltemail":3, "kalanchoe":4, "kalamazoo":4, "kalathos":3, "kalends":2, "kalendar":3, "kalendarial":5, "kalgan":2, "kalgoorlie":3, "kali":2, "kalian":2, "kalis":2, "kalifate":3, "kalinite":3, "kalispel":3, "kalispell":3, "kallikak":3, "kalman":2, "kalmar":2, "kalmarian":4, "kalmia":3, "kalmuck":2, "kalmuk":2, "kalmyk":2, "kalpa":2, "kalpak":2, "kalpis":2, "kalsomine":3, "kalsomined":3, "kalsominer":4, "kalsomining":4, "kame":1, "kamacite":3, "kamakura":4, "kambal":2, "kamchatka":3, "kamchatkan":3, "kamloops":2, "kampala":3, "kampong":2, "kampuchea":4, "kampylite":3, "kamseen":2, "kamsin":2, "kane":1, "kane":1, "kang":1, "kangchenjunga":4, "kans":1, "kans":1, "kant":1, "kantist":2, "kantian":3, "kantianism":4, "kanu":1, "kanamycin":4, "kanazawa":4, "kanchanjanga":4, "kanchenjunga":4, "kanchipuram":4, "kandahar":3, "kandinsky":3, "kandy":2, "kanga":2, "kangaroo":3, "kangaroo closure":5, "kangaroo court":4, "kangaroo grass":4, "kangaroo island":5, "kangaroo paw":4, "kangaroo rat":4, "kangarooing":4, "kangaroolike":4, "kanji":2, "kankan":2, "kankakee":3, "kannapolis":4, "kannada":3, "kanpur":2, "kansa":2, "kansan":2, "kansas":2, "kansas city":4, "kansu":2, "kantar":2, "kantele":3, "kantharoi":3, "kantharos":3, "kantor":2, "kanzu":2, "kaohsiung":2, "kaph":1, "kapfenberg":3, "kaplan":2, "kappa":2, "karl":1, "karlsbad":2, "karlsruhe":3, "karlfeldt":2, "karlstad":2, "kars":1, "karst":1, "karstic":2, "kart":1, "karttikeya":4, "karat":2, "karabiner":4, "karaism":3, "karaite":3, "karaitic":4, "karakul":3, "karbala":3, "karin":2, "karla":2, "karloff":2, "karlovy vary":5, "karma":2, "karma":2, "karma-marga":3, "karmadharaya":5, "karmic":2, "karnak":2, "karnatak music":5, "karnataka":4, "karol":2, "karoline":3, "karpas":2, "karpov":2, "karrer":2, "karri":2, "karri-tree":2, "karroo":2, "karroo":2, "karrusel":3, "karyn":2, "karynne":2, "karyogamy":5, "karyolysis":5, "karyomitome":5, "karyogamic":5, "karyokinetic":6, "karyokinesis":6, "karyolitic":5, "karyolymph":4, "karyoplasm":4, "karyoplasmatic":6, "karyoplasmic":5, "karyosome":4, "karyotin":4, "karyotype":4, "karyotypic":5, "kas":1, "kasha":2, "kashgar":2, "kashmir":2, "kashmir":2, "kashmir goat":3, "kashmiri":3, "kashmiris":3, "kashmirian":4, "kashrut":2, "kashruth":2, "kashruth":2, "kasavubu":4, "kasbah":2, "kasbah":2, "kasbek":2, "kasper":2, "kassa":2, "kassala":3, "kassapa":3, "kassel":2, "kassem":2, "kassite":2, "kastro":2, "kasyapa":3, "kat":1, "katakana":2, "kate":1, "katharine":3, "katherine":3, "kathie":2, "kathlee":2, "kathleen":2, "kathlene":2, "kathlyn":2, "kathlynne":2, "kathmandu":3, "kathode":2, "kathryn":2, "kathrynne":2, "kathy":2, "katzenjammer":4, "katangese":3, "katabatic":4, "katabolic":4, "katabolically":6, "katalase":3, "katalyst":3, "katalyze":3, "katalyzed":3, "katalyzing":4, "katamorphic":4, "katamorphism":4, "kataplasia":4, "katatonia":5, "kateri":3, "kation":3, "katmai":2, "katmandu":3, "katrine":2, "katsina":3, "kattegat":3, "kattowitz":3, "katzenjammer":4, "kauch":1, "kaufman":2, "kautsky":2, "kaunas":2, "kauravas":3, "kauri":2, "kaury":2, "kaver":2, "kay":1, "kayes":1, "kayne":1, "kaysville":2, "kayak":2, "kayo":2, "kayoed":2, "kayos":2, "kayoing":3, "kayseri":3, "kazbek":2, "kabab":2, "kabardian":4, "kabaka":3, "kabala":3, "kabalevsky":4, "kabalega falls":5, "kabaragoya":5, "kabeiri":3, "kabir":2, "kabinettwein":4, "kabob":2, "kabul":2, "kabuki":3, "kabuzuchi":4, "kabyle":2, "kacha":2, "kachang puteh":4, "kachina":3, "kadai":2, "kadar":2, "kadi":2, "kadiyevka":4, "kaduna":3, "kafiristan":4, "kagawa":3, "kagera":3, "kagi":2, "kago":2, "kagoshima":4, "kagu":2, "kahoolawe":4, "kahului":4, "kahuna":3, "kajaani":3, "kajar":2, "kaka":2, "kakapo":3, "kakemono":4, "kaki":2, "kakistocratical":6, "kala-azar":3, "kalakh":2, "kalam":2, "kalamist":3, "kalat":2, "kalahari":4, "kaleidoscope":4, "kaleidoscopic":5, "kaleidoscopical":6, "kaleidoscopically":7, "kalema":3, "kaleva":3, "kalevala":4, "kali":2, "kalif":2, "kaliph":2, "kalisch":2, "kalisz":2, "kalidasa":4, "kalifate":3, "kalimantan":4, "kalinin":3, "kaliningrad":4, "kaliyuga":4, "kalong":2, "kaluga":3, "kama":2, "kama-mara":3, "kamadhenu":4, "kamakura":4, "kamala":3, "kamaloka":4, "kamasutra":4, "kamensk-uralski":4, "kamet":2, "kamelaukion":5, "kamerad":3, "kamerun":3, "kami":2, "kamikaze":4, "kamina":3, "kana":2, "kana-majiri":4, "kanaka":3, "kananga":3, "kanamono":4, "kananur":3, "kanara":3, "kanarak":3, "kanarese":3, "kanazawa":4, "kaneelhart":3, "kaneohe":4, "kangwane":3, "kano":2, "kanone":3, "kaon":2, "kaolack":3, "kaolak":3, "kaolin":3, "kaoline":3, "kaolinic":4, "kaolinise":4, "kaolinised":4, "kaolinising":5, "kaolinite":4, "kaolinize":4, "kaolinized":4, "kaolinizing":5, "kaolinization":6, "kaoliang":4, "kapaa":3, "kapell":2, "kapellmeister":4, "kapellmeister":4, "kapila":3, "kapital":3, "kapok":2, "kapote":3, "kaput":2, "kapuka":3, "kara kum":3, "kara sea":3, "kara-kalpak":3, "karanda":3, "karaburan":4, "karachai-cherkess autonomous region":10, "karachi":3, "karafuto":4, "karaganda":4, "karajan":3, "karakoram":4, "karakorum":4, "karamanlis":4, "karami":3, "karate":3, "karen":2, "karelia":3, "karelia":4, "karelian":4, "karelian isthmus":6, "kariba":3, "karo":2, "karol":2, "karoo":2, "karoo":2, "kaross":2, "karuna":3, "kasai":2, "kasha":2, "kasher":2, "kashira":3, "kastrop-rauxel":3, "katabasis":4, "katabolism":4, "katahdin":3, "katalysis":4, "katanga":3, "katar":2, "katakana":4, "katana":3, "katayev":3, "katchina":3, "katcina":3, "kateri":3, "kathak":2, "katharsis":3, "kathartic":3, "katharevousa":5, "katharevusa":5, "kathisma":3, "kathismata":4, "kathiawar":4, "kathodic":3, "katholikoi":4, "katholikos":4, "katholikoses":5, "katowice":4, "katrina":3, "katryna":3, "katsushika":4, "katydid":3, "katr":3, "kaunda":3, "kauai":4, "kava":2, "kavaic":3, "kavaphis":3, "kaveri":3, "kavlla":4, "kavla":3, "kawaguchi":4, "kawasaki":4, "kayibanda":4, "kazak":2, "kazakh":2, "kazakstan":3, "kazan":2, "kazan retto":4, "kazantzakis":4, "kazantzakis":4, "kazatske":3, "kazatsky":3, "kazachok":3, "kazazachki":4, "kazoo":2, "kbe":1, "kbp":1, "kcal":1, "kcb":1, "kcmg":1, "kcvo":1, "kean":1, "keansburg":2, "keap":1, "kearns":1, "kearney":2, "kearny":2, "keat":1, "keats":1, "keatsian":3, "keaton":2, "keb":1, "kebbuck":2, "keblah":2, "kechua":2, "kechuan":2, "keck":1, "keckling":2, "kecksy":2, "kecskem":3, "kecskemt":4, "ked":1, "kedge":1, "kedging":2, "kedah":2, "keddah":2, "kedgeree":3, "kedron":2, "keef":1, "keek":1, "keel":1, "keel over":3, "keelage":2, "keelboat":2, "keelboatman":3, "keelhale":2, "keelhaul":2, "keeling islands":4, "keelless":2, "keelson":2, "keen":1, "keen":1, "keene":1, "keener":2, "keening":2, "keenly":2, "keenness":2, "keep":1, "keep away":3, "keep under":3, "keepable":3, "keeper":2, "keeper ring":3, "keeperless":3, "keepership":3, "keeping":2, "keepnet":2, "keepsake":2, "keeshond":2, "keeshonden":3, "keester":2, "keet":1, "keegan":2, "keeler":2, "keeley":2, "keelie":2, "keelung":2, "keely":2, "keeno":2, "keewatin":3, "kef":1, "keffiyeh":3, "keg":1, "kegeler":3, "kegeler":3, "kegler":2, "kei-apple":2, "keighley":2, "keir":1, "keister":2, "keith":1, "keitloa":3, "keifer":2, "keijo":2, "keita":2, "keitel":2, "keizer":2, "kekkonen":3, "kelly":2, "kelp":1, "kelpfish":2, "kelpfishes":3, "kelt":1, "kelt":1, "keltic":2, "kelcey":2, "kelek":2, "kelep":2, "kelebe":3, "kelleg":2, "keller":2, "kellet":2, "kellick":2, "kellie":2, "kellia":3, "kellion":3, "kellock":2, "kellogg":2, "kelly":2, "kelly":2, "kelpie":2, "kelpy":2, "kelsey":2, "kelso":2, "kelson":2, "kelter":2, "keltic":2, "keltically":4, "kelvin":2, "kelvin":2, "kelvin scale":3, "kelwin":2, "kemp":1, "kemp":1, "kempt":1, "kempy":2, "kemble":2, "kempe":2, "kempis":2, "ken":1, "ken":1, "kench":1, "kenn":1, "kent":1, "kent":1, "kentish":2, "kentishman":3, "kentledge":2, "kentwood":2, "kendal":2, "kendal green":3, "kendall":2, "kendallville":3, "kendo":2, "kendoist":3, "kendra":2, "kendrew":2, "kenedy":3, "kenhorst":2, "kenilworth":3, "kenley":2, "kenmore":2, "kennan":2, "kennel":2, "kenneled":2, "kennelled":2, "kenneling":3, "kennelling":3, "kennelly":3, "kennelly-heaviside layer":7, "kenner":2, "kenneth":2, "kennett":2, "kenney":2, "kennebec":3, "kennebunk":3, "kennedy":3, "kennewick":3, "kennie":2, "kenning":2, "kenny":2, "kenny method":4, "kensington":3, "kensington and chelsea":6, "kenspeckle":3, "kenspeckled":3, "kente":2, "kenton":2, "kentuckian":4, "kentucky":3, "kentucky bluegrass":5, "kentucky coffee tree":6, "kentucky derby":5, "kenya":2, "kenyan":2, "kenyatta":3, "kenyon":2, "kep":1, "kephalin":3, "kept":1, "kepi":2, "kepis":2, "kepler":2, "kepler's laws":3, "keplerian":4, "keppen":2, "ker":1, "kerb":1, "kerb market":3, "kerbing":2, "kerbstone":2, "kerch":1, "kerf":1, "kerkrade":3, "kern":1, "kern":1, "kerne":1, "kernite":2, "kerr":1, "kerr effect":3, "kerrville":2, "kerst":1, "kerak":2, "kerala":3, "keratalgia":4, "keratectasia":5, "keratectomy":5, "keratin":3, "keratinize":4, "keratinized":4, "keratinizing":5, "keratinization":6, "keratitis":4, "keratode":3, "keratogenous":5, "keratoid":3, "keratometer":5, "keratometry":5, "keratose":3, "keratoscopy":5, "keratotic":4, "keratotomy":5, "keratoconus":5, "keratoderma":5, "keratodermia":6, "keratoma":4, "keratomas":4, "keratomata":5, "keratometric":5, "keratoplastic":5, "keratoplasty":5, "keratoscope":4, "keratosic":4, "keratosis":4, "kerbaya":3, "kerbela":3, "kerby":2, "kerchief":2, "kerchiefed":2, "kerchieft":2, "keresan":3, "kerflop":2, "kerfuffle":3, "kerguelen":3, "kergulen":4, "kerki":2, "kerkyra":3, "kerman":2, "kermanshah":3, "kermes":2, "kermess":2, "kermesite":3, "kermis":2, "kermit":2, "kernel":2, "kerneled":2, "kernelled":2, "kerneling":3, "kernelless":3, "kernelling":3, "kernelly":3, "kernersville":3, "kernite":2, "kernos":2, "kero":2, "keros":2, "kerouac":3, "kerogen":3, "kerosene":3, "kerosine":3, "kerplunk":2, "kerry":2, "kerry":2, "kerry blue terrier":6, "kersey":2, "kerseymere":3, "kerwin":2, "kerygmatic":4, "kesselring":3, "kesteven":3, "kestrel":2, "keswick":2, "ketch":1, "ketchikan":3, "ketchup":2, "kettering":3, "kettle":2, "kettle hole":3, "kettle of fish":4, "kettle-bottom":3, "kettledrum":3, "kettledrummer":4, "kevel":2, "kevil":2, "kevin":2, "kew":1, "kewpie":2, "kewpie":2, "kewpie doll":3, "kex":1, "key":1, "key":1, "key money":3, "key signature":4, "keyed":1, "keynes":1, "keynesian":3, "keynesianism":4, "keyboard":2, "keyhole":2, "keying":2, "keyless":2, "keyman":2, "keynote":2, "keynoted":3, "keynoter":3, "keynoting":3, "keyport":2, "keypunch":2, "keypuncher":3, "keyser":2, "keyserling":3, "keyslot":2, "keystone":2, "keystoner":3, "keystroke":2, "keyway":2, "keyword":2, "kea":2, "kea":2, "kebab":2, "kebar":2, "keble":2, "kebob":2, "kedah":2, "kedar":2, "kedarite":3, "kediri":3, "kedron":2, "kedushah":3, "kedushoth":3, "keef":2, "kefauver":3, "kehillah":3, "kehilloth":3, "kekulmula":5, "kelantan":3, "keloid":2, "keloidal":3, "kelotomy":4, "kemal atat":5, "kemalism":3, "kemalist":3, "kemerovo":4, "kemi":2, "kenaf":2, "keno":2, "kenotic":3, "kenogenesis":5, "kenogenetic":5, "kenogenetically":7, "kenosha":3, "kenosis":3, "kenova":3, "keos":2, "keokuk":3, "kephallenia":5, "kephallina":5, "keramic":3, "keramics":3, "keratinise":4, "keratinize":4, "keratinous":4, "kerala":3, "kerenski":3, "kerensky":3, "keres":2, "kerouac":3, "kerugma":3, "kerugmata":4, "kerygma":3, "kerygmata":4, "ketene":2, "keto":2, "keto form":3, "keto-enol tautomerism":7, "ketolysis":4, "ketone":2, "ketone body":4, "ketone group":3, "ketonic":3, "ketose":2, "ketoxime":3, "ketogenesis":5, "ketogenetic":5, "ketohexose":4, "ketolytic":4, "ketonemia":5, "ketonuria":5, "ketosis":3, "keturah":3, "ketubah":3, "ketubim":3, "ketuvim":3, "kevalin":3, "kewaunee":3, "kewanee":3, "kgb":1, "khaddar":2, "khafre":2, "khaki":2, "khakis":2, "khakilike":3, "khalifate":3, "khalk":2, "khalkha":2, "khalkis":2, "khalkidike":4, "khalkidiki":4, "khalsa":2, "khamsin":2, "khan":1, "khanate":2, "khanda":2, "khanga":2, "khansamah":3, "kharkov":2, "khartoum":2, "khartum":2, "khaskovo":3, "khat":1, "khatti":2, "khattish":2, "khattusas":3, "khayy":2, "khayym":3, "khabarovsk":3, "khabur":2, "khachaturian":5, "khachaturian":5, "khadi":2, "khafaje":3, "khafajeh":3, "khakass autonomous region":8, "khaki":2, "khalif":2, "khalifa":3, "khama":2, "khania":2, "kharif":2, "kharijite":3, "khasi":2, "khatri":2, "khayal":2, "kheda":2, "khedah":2, "kherson":2, "khedive":2, "khedival":3, "khedivial":4, "khediviate":4, "khelat":2, "khidmatgar":3, "khidmutgar":3, "khieu":1, "khingan mountains":4, "khirbet qumran":4, "khitmatgar":3, "khitmutgar":3, "khios":2, "khiva":2, "khlyst":1, "khlysty":2, "khmer":1, "khmer republic":4, "khnum":1, "khoikhoi":2, "khoisan":2, "khond":1, "khodzhent":2, "khoja":2, "khojent":2, "khotan":2, "khrushchev":2, "khrushchev":2, "khulna":2, "khuskhus":2, "khutbah":2, "khufu":2, "khuzistan":3, "khyber pass":3, "khz":1, "khos":2, "kiangling":2, "kiangsi":2, "kiangsu":2, "kiaochow":2, "kiaugh":1, "kibe":1, "kibble":2, "kibbutz":2, "kibbutznik":3, "kibbutzim":3, "kibitz":2, "kibitzer":3, "kibla":2, "kiblah":2, "kick":1, "kick about":3, "kick upstairs":3, "kickable":3, "kickapoo":3, "kickback":2, "kickball":2, "kickboard":2, "kickdown":2, "kicker":2, "kickless":2, "kickoff":2, "kickplate":2, "kickshaw":2, "kickshaws":2, "kicksorter":3, "kickstand":2, "kicktail":2, "kickup":2, "kickwheel":2, "kicva":2, "kid":1, "kid":1, "kidd":1, "kidded":2, "kidder":2, "kidderminster":4, "kiddie":2, "kidding":2, "kiddingly":3, "kiddishness":3, "kiddle":2, "kiddo":2, "kiddush":2, "kiddy":2, "kidlike":2, "kidnap":2, "kidnaped":2, "kidnapped":2, "kidnaper":3, "kidnaping":3, "kidnapper":3, "kidnapping":3, "kidney":2, "kidney bean":3, "kidney machine":4, "kidney stone":3, "kidney vetch":3, "kidney-shaped":2, "kidneylike":2, "kidneywort":3, "kidskin":2, "kief":1, "kieffer":2, "kiel":1, "kielbasa":3, "kielce":2, "kier":1, "kierkegaard":3, "kierkegaardian":5, "kierkegaardianism":6, "kies":1, "kiepura":3, "kieselguhr":3, "kieserite":3, "kif":1, "kike":1, "kikumon":3, "kill":1, "killable":3, "killdee":2, "killdeer":2, "killer":2, "killer whale":3, "killer-diller":3, "killing":2, "killingly":3, "kiln":1, "kilndare":2, "kilndried":2, "kilndrying":3, "kilt":1, "kilted":2, "kiltie":2, "kilting":2, "kiltlike":2, "kildare":2, "kilderkin":3, "kilerg":2, "kilij":2, "kilimanjaro":5, "kilkenny":3, "killarney":3, "killeen":2, "killick":2, "killickinnic":4, "killickinnick":4, "killiecrankie":4, "killifish":3, "killifishes":4, "killikinic":4, "killikinick":4, "killoch":2, "killock":2, "kilmarnock":3, "kilmer":2, "kilo":2, "kilo-oersted":3, "kilohm":2, "kilos":2, "kiloampere":4, "kilobar":3, "kilobaud":3, "kilocalorie":5, "kilocurie":4, "kilocycle":4, "kilodyne":3, "kilogauss":3, "kilograin":3, "kilogram":3, "kilogram calorie":6, "kilogram-force":3, "kilogram-meter":4, "kilogramme":3, "kilogramme-metre":4, "kilohertz":3, "kilojoule":3, "kiloline":3, "kiloliter":4, "kilolitre":4, "kilolumen":4, "kilomegacycle":6, "kilometric":4, "kilometer":4, "kilometre":4, "kilomole":3, "kiloparsec":4, "kilopoise":3, "kilopound":3, "kilostere":3, "kiloton":3, "kilovar":3, "kilovar-hour":3, "kilovolt":3, "kilovolt-ampere":4, "kilovolt-ampere-hour":4, "kilowatt":3, "kilowatt-hour":3, "kilpatrick":3, "kilroy":2, "kilter":2, "kilwich":2, "kim":1, "kimball":2, "kimberley":3, "kimberlite":3, "kimberly":3, "kimchee":2, "kimchi":2, "kimmer":2, "kimmochi":3, "kin":1, "kind":1, "kind-hearted":2, "kindertotenlieder":6, "kindhearted":3, "kindheartedly":4, "kindheartedness":4, "kindjal":2, "kindless":2, "kindlessly":3, "kindlier":3, "kindliest":3, "kindliness":3, "kindly":2, "kindness":2, "kine":1, "king":1, "king":1, "king charles spaniel":4, "king cobra":3, "king james version":4, "king salmon":3, "king's counsel":3, "king's english":3, "king's evidence":4, "king's evil":3, "king's highway":3, "king's proctor":3, "king's regulations":5, "king's shilling":3, "king-of-the-herrings":2, "king-of-the-salmon":2, "king-whiting":2, "kings":1, "kingsburg":2, "kingsford":2, "kingsley":2, "kingsport":2, "kingston":2, "kingston upon hull":5, "kingston-upon-hull":3, "kingstown":2, "kingstree":2, "kingsville":2, "kingbird":2, "kingbolt":2, "kingchow":2, "kingcraft":2, "kingcup":2, "kingdom":2, "kingdom come":3, "kingdomless":3, "kingfish":2, "kingfisher":3, "kingfisher":3, "kingfishes":3, "kinghood":2, "kinglake":2, "kingless":2, "kinglessness":3, "kinglet":2, "kinglike":2, "kinglier":3, "kingliest":3, "kingliness":3, "kingly":2, "kingmaker":3, "kingmaking":3, "kingman":2, "kingpin":2, "kingpost":2, "kingship":2, "kingsnake":2, "kingston":2, "kingston upon thames":5, "kingtehchen":3, "kingwana":3, "kingwood":2, "kingwood":2, "kink":1, "kinkier":3, "kinkiest":3, "kinkily":3, "kinkiness":3, "kinkly":2, "kinky":2, "kinsfolk":2, "kinsman":2, "kinswoman":3, "kinswomen":3, "kinaesthetic":4, "kinaesthesia":4, "kinaesthesis":4, "kinaesthesia":5, "kinabalu":4, "kinabulu":4, "kincardine":3, "kincardineshire":4, "kinchin":2, "kinchinjunga":4, "kincob":2, "kindergartner":4, "kindergarten":4, "kindergartener":5, "kindle":2, "kindler":2, "kindling":2, "kindred":2, "kindredless":3, "kindredly":3, "kindredness":3, "kindredship":3, "kindu":2, "kine":2, "kinesthetic":4, "kinesthesia":4, "kinesthesis":4, "kinesthesia":5, "kinema":3, "kinematic":4, "kinematic viscosity":8, "kinematics":4, "kinematical":5, "kinematically":6, "kinematograph":5, "kinematographic":6, "kinematographically":8, "kinematographer":6, "kinematography":6, "kinescope":3, "kinescoped":3, "kinescoping":4, "kinetographer":5, "kinetography":5, "kinetosis":4, "kinfolk":2, "kinfolks":2, "kingu":2, "kinkaid":2, "kinkaider":3, "kinkajou":3, "kinkle":2, "kinkled":2, "kinless":2, "kinloch":2, "kinnelon":3, "kinnikinnic":4, "kinnikinnick":4, "kinnikinnik":4, "kinnikinic":4, "kinnikinick":4, "kinross":2, "kinrossshire":3, "kinsey":2, "kinshasa":3, "kinship":2, "kinston":2, "kioga":2, "kioto":2, "kip":1, "kipp's apparatus":5, "kipling":2, "kipnis":2, "kippen":2, "kipper":2, "kipskin":2, "kirch":1, "kircher":2, "kirchhoff":2, "kirchhoff's laws":3, "kirk":1, "kirk":1, "kirk session":3, "kirkby":2, "kirkcaldy":3, "kirkcudbright":3, "kirkcudbrightshire":4, "kirkland":2, "kirklike":2, "kirkman":2, "kirkpatrick":3, "kirkwall":2, "kirkwood":2, "kirn":1, "kirsch":1, "kirschwasser":3, "kirschwasser":3, "kirby":2, "kirby-smith":2, "kirghiz":2, "kirghiz steppe":3, "kirghizes":3, "kirghizia":3, "kirgiz":2, "kirigami":3, "kirkenes":3, "kirkuk":2, "kirman":2, "kirmanshah":3, "kirmess":2, "kirpan":2, "kirsten":2, "kirtle":2, "kirtled":2, "kish":1, "kish":1, "kishke":2, "kiss":1, "kissability":5, "kissable":3, "kissableness":4, "kissably":3, "kisser":2, "kissing bug":3, "kissing gate":3, "kissingly":3, "kist":1, "kistna":2, "kistvaen":2, "kisangani":4, "kislev":2, "kismat":2, "kismayu":3, "kismet":2, "kissel":2, "kissimmee":3, "kissinger":3, "kiswah":2, "kit":1, "kit":1, "kitchen":2, "kitchen garden":4, "kitchen kaffir":4, "kitchen midden":4, "kitchen police":4, "kitchen sink":3, "kitchen tea":3, "kitchener":3, "kitchenet":3, "kitchenette":3, "kitchenless":3, "kitchenmaid":3, "kitchenware":3, "kitcheny":3, "kitchener":3, "kite":1, "kite fighting":3, "kitelike":2, "kith":1, "kithe":1, "kithara":3, "kithing":2, "kitsch":1, "kitts-nevis-anguilla":4, "kitambilla":4, "kitbag":2, "kited":2, "kiter":2, "kiting":2, "kitling":2, "kittanning":3, "kitted":2, "kittel":2, "kitten":2, "kittenish":3, "kittenishly":4, "kittenishness":4, "kittenlike":3, "kittery":3, "kittie":2, "kitting":2, "kittikachorn":4, "kittiwake":3, "kittle":2, "kittredge":2, "kitty":2, "kitty":2, "kitty hawk":3, "kitty-corner":3, "kitty-cornered":3, "kittyhawk":3, "kitwe":2, "kiungchow":2, "kiungshan":2, "kiushu":2, "kiaat":2, "kiang":2, "kibei":2, "kibitka":3, "kibosh":2, "kichisaburo":5, "kidron":2, "kiev":2, "kievan":3, "kigali":3, "kiirun":3, "kikldhes":3, "kikoi":2, "kikuyu":3, "kikwit":2, "kilauea":4, "kilauea":5, "kiley":2, "kilo":2, "kilung":2, "kimono":3, "kimonoed":3, "kina":2, "kinase":2, "kinau":2, "kinetic":3, "kinetic art":4, "kinetic energy":6, "kinetic theory":6, "kinetics":3, "kinetically":5, "kinetoplast":4, "kinesic":3, "kinesics":3, "kinesically":5, "kinesiology":6, "kinetograph":4, "kinetographic":5, "kinetoscope":4, "kinetoscopic":5, "kinin":2, "kino":2, "kinoo":2, "kiosk":2, "kiotomy":4, "kionectomy":5, "kionotomy":5, "kioto":3, "kiowa":3, "kipuka":3, "kirin":2, "kirilenko":4, "kirov":2, "kirovabad":4, "kirovograd":4, "kirundi":3, "kiruna":3, "kisan":2, "kisangani":4, "kiselevsk":3, "kishi":2, "kishinev":3, "kisumu":3, "kitakyushu":4, "kitasato":4, "kitenge":3, "kitwe":2, "kiva":2, "kivu":2, "kiwanis":3, "kiwanian":4, "kiwi":2, "kiyas":2, "kiyi":2, "kizil irmak":4, "kjlen":3, "kkk":1, "kkt":1, "kktp":1, "klaipeda":3, "klamath":2, "klan":1, "klangfarbe":3, "klansman":2, "klanism":2, "klappvisier":3, "klaproth":2, "klausenburg":3, "klavern":2, "klaxon":2, "klaberjass":3, "klabund":2, "klagenfurt":3, "klavier":2, "kleagle":2, "klebs":1, "klebs-lfler bacillus":5, "klebsiella":4, "klee":1, "kleenex":2, "klein":1, "klein bottle":3, "kleist":1, "kleiber":2, "klemperer":3, "klepht":1, "klephtic":2, "kleptomania":5, "kleptomaniac":5, "klesha":2, "klement":2, "kleve":2, "klimt":1, "kline":1, "klippe":2, "klipspringer":3, "klismos":2, "klister":2, "kloesse":2, "klong":1, "klondike":2, "kloof":1, "klootchman":2, "klopstock":2, "kluck":1, "kluck":1, "kluckhohn":2, "klutz":1, "klutzy":2, "klystron":2, "klystron":2, "klydonograph":4, "klber":3, "klsse":3, "klber":2, "knack":1, "knacker":2, "knackery":3, "knackwurst":2, "knag":1, "knaggier":3, "knaggiest":3, "knaggy":2, "knaidel":2, "knaidlach":2, "knap":1, "knapper":2, "knapping":2, "knapsack":2, "knapsacked":2, "knapweed":2, "knar":1, "knarry":2, "knave":1, "knaveries":3, "knavery":3, "knavish":2, "knavishly":3, "knavishness":3, "knawel":2, "knead":1, "kneadability":5, "kneadable":3, "kneader":2, "kneadingly":3, "knee":1, "kneel":1, "kneeler":2, "kneeling":2, "kneelingly":3, "kneecap":2, "kneehole":2, "kneeing":2, "kneepad":2, "kneepan":2, "kneepiece":2, "knell":1, "knelt":1, "kneller":2, "knesset":2, "knesseth":2, "knew":1, "knickered":2, "knickers":2, "knickerbocker":4, "knickerbockered":4, "knickerbockers":4, "knickknack":2, "knickknacked":2, "knickknacky":3, "knickpoint":2, "knies":1, "knife":1, "knife grinder":3, "knifeless":2, "knifelike":2, "kniferest":2, "knifer":2, "knifing":2, "knight":1, "knight":1, "knight bachelor":4, "knight banneret":4, "knight errant":3, "knight errantry":4, "knight marshal":3, "knight templar":3, "knight-errant":2, "knight-errantries":3, "knight-errantry":3, "knights hospitallers":5, "knights-errant":2, "knighthead":2, "knighthood":2, "knightless":2, "knightliness":3, "knightly":2, "knish":1, "knit":1, "knittable":3, "knitted":2, "knitter":2, "knitting":2, "knitwear":2, "knives":1, "knob":1, "knobbing":2, "knobbier":3, "knobbiest":3, "knobbiness":3, "knobble":2, "knobbler":2, "knobby":2, "knobkerrie":3, "knoblike":2, "knobstick":2, "knock":1, "knock about":3, "knockabout":3, "knockdown":2, "knocker":2, "knocking-shop":2, "knockless":2, "knockout":2, "knockout drops":3, "knockwurst":2, "knoll":1, "knoller":2, "knolly":2, "knop":1, "knorr":1, "knosp":1, "knossian":3, "knossos":2, "knot":1, "knot garden":3, "knotgrass":2, "knothole":2, "knotless":2, "knotlike":2, "knotroot":2, "knotted":2, "knotter":2, "knotting":2, "knottier":3, "knottiest":3, "knottily":3, "knottiness":3, "knotty":2, "knotweed":2, "knotwork":2, "knout":1, "know":1, "know-nothing":2, "knowe":1, "knowledge":2, "knowledgeable":4, "knowledgeableness":5, "knowledgeably":4, "knowledgable":4, "knowledgableness":5, "knowledgably":4, "known":1, "known quantity":4, "knowability":5, "knowable":3, "knowableness":4, "knower":2, "knowing":2, "knowingly":3, "knowingness":3, "knowledgeless":3, "knownothingism":4, "knox":1, "knoxville":2, "knp":1, "knt":1, "knuckle":2, "knuckle down":3, "knuckle joint":3, "knuckle under":4, "knuckle-duster":3, "knuckler":2, "knucklebone":3, "knucklebones":3, "knucklehead":3, "knuckleheaded":4, "knuckly":2, "knudsen":2, "knulling":2, "knur":1, "knurl":1, "knurled":1, "knurling":2, "knurlier":3, "knurliest":3, "knurly":2, "knurr":1, "knut":1, "knute":1, "knckebrd":5, "ko-katana":3, "kob":1, "kobold":2, "koch":1, "koestler":2, "koestler":2, "koffka":2, "koftgar":2, "kofta":2, "kohl":1, "kohlrabi":3, "kohinoor":3, "kohinor":3, "kohinur":3, "koilonychia":5, "koine":2, "koine":2, "kok-saghyz":2, "kokka":2, "kokkola":3, "kol nidre":3, "kollwitz":2, "kolbe":2, "kolchak":2, "koldewey":3, "kolding":2, "kolhapur":3, "kolkhos":2, "kolkhoz":2, "kolkoz":2, "kolmar":2, "kolwezi":3, "komintern":3, "kommunarsk":3, "kommunizma peak":5, "kompleks":2, "komsomol":3, "komsomolsk":3, "koncaved":2, "koncaving":3, "kondo":2, "kongo":2, "kongoni":3, "konia":2, "konmated":3, "konmating":3, "konrad":2, "konstanz":2, "konstantin":3, "kontakia":4, "kontakion":4, "konvrs":3, "konya":2, "koo":1, "kook":1, "kookaburra":4, "kookie":2, "kookier":3, "kookiest":3, "kooky":2, "koord":1, "koodoo":2, "kooning":2, "koorajong":3, "kootenai":3, "kootenay":3, "kop":1, "kopfring":2, "koph":1, "kopje":2, "koppa":2, "koppie":2, "kor":1, "korchnoi":2, "korfball":2, "kornberg":2, "korngold":2, "kortrijk":2, "korbut":2, "korc":2, "kordestan":3, "kordofan":3, "kordofanian":5, "korma":2, "koroseal":3, "korzybski":3, "kos":1, "kos":1, "kosciusko":4, "kossel":2, "kossuth":2, "kostelanetz":4, "kosti":2, "kottabos":3, "kotwal":2, "kotwalee":3, "kotwali":3, "kotzebue":3, "kourbash":2, "koussevitzky":4, "kousso":2, "koulibiaca":4, "koumis":2, "koumiss":2, "koumyss":2, "kouprey":2, "kouroi":2, "kouros":2, "kovno":2, "kovrov":2, "kowhai":2, "kowloon":2, "kowtow":2, "kowtower":3, "kozlov":2, "koa":2, "koan":2, "koala":3, "koala bear":4, "kobarid":3, "kobe":2, "koblenz":2, "kobold":2, "kocher":2, "kochi":2, "kodak":2, "kodaked":2, "kodaking":3, "kodachrome":3, "kodaly":3, "kodiak":3, "kodiak bear":4, "kodok":2, "kodogu":3, "kodly":4, "koel":2, "kofu":2, "kogai":2, "kohanim":3, "koheleth":3, "kohen":2, "kohens":2, "kohima":3, "kohoutek":3, "kojiri":3, "kokand":2, "kokanee":3, "koko":2, "koko nor":3, "kokoschka":3, "kokobeh":3, "kokomo":3, "koku":2, "kokura":3, "kola":2, "kola":2, "kola nut":3, "kola peninsula":6, "kolach":2, "kolacky":3, "kolar":2, "kolar gold fields":4, "koli":2, "kolinsky":3, "kolima":3, "kolo":2, "kolomna":3, "kolozsv":3, "kolozsvr":4, "kolyma":3, "kolyma range":4, "komatik":3, "komati":3, "komi":2, "komondor":3, "komondors":3, "komondorok":4, "komodo dragon":5, "komura":3, "kona":2, "konak":2, "konakri":3, "konakry":3, "konarak":3, "koner":2, "konev":2, "konig":2, "konimeter":4, "koniology":5, "konoye":3, "kopeck":2, "kopeisk":2, "kopek":2, "kopeysk":2, "kopis":2, "koradji":3, "korah":2, "korai":2, "koran":2, "koranic":3, "kore":2, "koren":2, "korea":3, "korea strait":4, "korean":3, "korean war":4, "koridethianus":6, "korona":3, "koruna":3, "koruny":3, "korzybski":3, "kosha":2, "kosher":2, "koshu":2, "kosice":3, "koso":2, "kosovo-metohija":6, "kostroma":3, "kosygin":3, "kota":2, "kota bharu":4, "kota kinabalu":6, "kotah":2, "kotabaru":4, "koto":2, "kotow":2, "kotower":3, "kovalevsky":4, "koweit":2, "kozani":3, "kozhikode":3, "kozuka":3, "kozne":4, "kra":1, "kraal":1, "kraepelin":3, "krafft":1, "krafft-ebing":2, "kraft":1, "krait":1, "krak":1, "kran":1, "krans":1, "krasnodar":3, "krasnoyarsk":3, "krasny":2, "kraus":1, "krauss":1, "kraut":1, "kraurotic":3, "kraurosis":3, "kragujevac":4, "krak":2, "krakau":2, "krakatao":3, "krakatau":3, "krakatoa":4, "kraken":2, "krakowiak":4, "krakw":3, "kramatorsk":3, "kramer":2, "krameria":4, "kranach":2, "kranj":2, "krater":2, "krebs":1, "krebs cycle":3, "kreisky":2, "kreisler":2, "krems":1, "kremenchug":3, "kremlin":2, "kremlin":2, "kremlinologist":5, "kremlinology":5, "kreplach":2, "kreutzer":2, "kreutzer":2, "kreuzer":2, "kreymborg":2, "krefeld":2, "kremenchug":3, "krepis":2, "kriegspiel":2, "kriemhild":2, "kriemhilde":3, "kriege":2, "krieger":2, "krill":1, "krim":1, "krimmer":2, "krips":1, "kris":1, "krishna":2, "krishna menon":4, "kriss kringle":3, "kristmann":2, "kristiansand":3, "kristianstad":3, "kristin":2, "krio":2, "krivoy rog":3, "krivu":2, "kroeber":2, "krogh":1, "kronstadt":2, "kroon":1, "krooni":2, "kromesky":3, "krona":2, "kronach":2, "krone":2, "kronecker":3, "kronos":2, "kropotkin":3, "krp":1, "kru":1, "kruller":2, "krummholz":2, "krummhorn":2, "krumhorn":2, "krupp":1, "krupskaya":3, "krutch":1, "kruger":2, "kruger national park":6, "krugersdorp":3, "krugerite":3, "krusenstern":3, "krym":1, "krypton":2, "krylon":2, "krna":3, "krnur":3, "krna":2, "krti":2, "kshatriya":3, "kuangchou":2, "kuantan":2, "kuala lumpur":4, "kuch bihar":3, "kudrun":2, "kudzu":2, "kueichou":2, "kuenlun":2, "kuffieh":3, "kuhn":1, "kuhnau":2, "kuibyshev":3, "kukri":2, "kuksu":2, "kulpmont":2, "kulla":2, "kullervo":3, "kultur":2, "kulturkampf":3, "kulturkreis":3, "kulturkreise":4, "kum":1, "kumbaloi":3, "kummer":2, "kummerbund":3, "kumquat":2, "kun":1, "kung":1, "kunstlied":2, "kunstlieder":3, "kunzite":2, "kundalini":4, "kungur":2, "kunlun":2, "kunming":2, "kuntsevo":3, "kuomintang":3, "kuopio":2, "kuopio":3, "kur":1, "kurd":1, "kurdish":2, "kurg":1, "kurn":1, "kursk":1, "kurt":1, "kurbash":2, "kurchatovium":5, "kurdestan":3, "kurdistan":3, "kurfuffle":3, "kurgan":2, "kurland":2, "kurrajong":3, "kursaal":2, "kursaal":2, "kursle":4, "kurta":2, "kurtosis":3, "kurzeme":3, "kusch":1, "kush":1, "kuskokwim":3, "kusso":2, "kutch":1, "kutztown":2, "kutcha":2, "kuyp":1, "kuybyshev":3, "kuzbass":2, "kuznetsk basin":4, "kuban":2, "kubango":3, "kubelik":3, "kubelk":4, "kublai khan":3, "kubrick":2, "kuchen":2, "kuching":2, "kudos":2, "kudu":2, "kueh":2, "kufa":2, "kufic":2, "kufiyeh":3, "kugel":2, "kuku nor":3, "kula":2, "kulak":2, "kulun":2, "kumasi":3, "kumamoto":4, "kumiss":2, "kuniyoshi":4, "kunowsky":3, "kuprin":2, "kura":2, "kure":2, "kuril islands":4, "kurile islands":4, "kurikata":4, "kuroki":3, "kuropatkin":4, "kurosawa":4, "kuroshio":4, "kurus":2, "kurus":2, "kurusu":3, "kustanai":3, "kutais":3, "kutaisi":4, "kutenai":3, "kutenay":3, "kutuzov":3, "kuvasz":2, "kuvaszok":3, "kuwait":2, "kuwaiti":3, "kvas":1, "kvass":1, "kval":2, "kw-h":1, "kwa":1, "kwaiken":2, "kwangchow":2, "kwangchowan":3, "kwangchowan":3, "kwangju":2, "kwangsi-chuang":2, "kwangsi-chuang autonomous region":8, "kwangtung":2, "kwantung":2, "kwantung leased territory":7, "kwanza":2, "kwartje":2, "kwashiorkor":4, "kwacha":2, "kwajalein":3, "kwakiutl":4, "kwame":2, "kwara":2, "kwazulu":3, "kweichow":2, "kweihwating":3, "kweilin":2, "kweisui":2, "kweiyang":2, "kwenlun":2, "kwela":2, "kwh":1, "kwh":1, "kwic":1, "kwoc":1, "kwt":1, "kyat":1, "kyd":1, "kyle":1, "kyle":1, "kymric":2, "kymry":2, "kynewulf":3, "kyongsong":2, "kyoga":2, "kyoto":2, "kyprianou":4, "kyriale":4, "kyrie":3, "kyrie eleison":6, "kyte":1, "kythe":1, "kything":2, "kyu":1, "kyushu":2, "kyack":2, "kyack":2, "kyak":2, "kyanise":3, "kyanised":3, "kyanising":4, "kyanize":3, "kyanized":3, "kyanizing":4, "kyat":2, "kyanite":3, "kyathos":3, "kylie":2, "kylin":2, "kylix":2, "kylikes":3, "kyloe":2, "kymograph":3, "kymographic":4, "kyoodle":3, "kyphotic":3, "kyphoscoliotic":6, "kyphoscoliosis":6, "kyphosis":3, "kyra":2, "kythera":3, "kytoon":2, "kyzyl":2, "kyzyl kum":3, "kmkia":4, "kstner":3, "kse":3, "kthe":3, "khler":3, "kbenhavn":4, "knigsberg":4, "knigshtte":6, "kniggrtz":5, "krveted":4, "krveting":4, "krvetted":4, "krvetting":4, "kmmel":3, "ka":2, "kdar":2, "kel":2, "kkyra":3, "kler":2, "kmel":2, "knigsberg":3, "knigshte":4, "kniggr":3, "knitra":3, "krinthos":3, "kten":2, "kthira":3, "l'allegro":3, "l'aquila":3, "l'aquila":3, "l'avare":2, "l'enfant":2, "l'etranger":3, "l'hospital":3, "l'immoraliste":4, "l'ouverture":3, "l'otage":2, "l'tat":3, "l-arterenol":4, "l-d converter":4, "l-dopa":2, "l-glucose":2, "l-noradrenaline":5, "l-norepinephrine":5, "l-radiation":4, "l-series":2, "l/c":1, "la bruy":3, "la coruna":4, "la cumbre":3, "la fayette":3, "la fontaine":3, "la granja":3, "la guaira":3, "la guardia":4, "la guayra":3, "la lnea":4, "la mancha":3, "la palma":3, "la plata":3, "la rochefoucauld":4, "la rochelle":3, "la spezia":3, "laager":2, "laaland":2, "lab":1, "lab":1, "labara":3, "labarum":3, "labdacus":3, "labdanum":3, "labefactation":5, "labefaction":4, "lablab":2, "laboratorial":6, "laboratorially":7, "laboratorian":6, "laboratory":5, "labrador":3, "labrador current":5, "labrador retriever":6, "labrador tea":4, "labradorean":5, "labradorite":4, "labradoritic":5, "labradorian":5, "labrid":2, "labroid":2, "labyrinth":3, "labyrinth":3, "labyrinth fish":4, "labyrinthodont":5, "labyrinthine":4, "labyrinthian":5, "labyrinthically":6, "labyrinthitis":5, "lac":1, "lac":1, "lac insect":3, "lace":1, "lace into":3, "lacebark":2, "laceless":2, "lacelike":2, "lacemaking":3, "lacewing":2, "lacewood":2, "lacework":2, "laches":2, "lachesis":3, "lachlan":2, "lachryma christi":5, "lachrymal":3, "lachrymator":4, "lachrymatory":5, "lachrymatous":5, "lachrymose":3, "lachrymosely":4, "lachrymosity":5, "lack":1, "lackadaisical":5, "lackadaisically":6, "lackadaisicalness":6, "lackaday":3, "lackawanna":4, "lacker":2, "lackerer":3, "lackey":2, "lackeyed":2, "lackeying":3, "lacking":2, "lackluster":3, "lacklustre":3, "lacw":1, "laccadive":3, "laccolite":3, "laccolith":3, "laccolithic":4, "lacer":2, "lacerant":3, "lacerate":3, "lacerated":4, "lacerating":4, "lacerability":6, "lacerable":4, "laceration":4, "lacerative":4, "lacertilian":5, "lacertilian":5, "lacey":2, "lacedaemon":4, "lacedaemonian":6, "lacing":2, "lacier":3, "laciest":3, "lacily":3, "laciness":3, "laconism":3, "lacquer":2, "lacquerer":3, "lacquey":2, "lacqueyed":2, "lacqueying":3, "lacrimal":3, "lacrimal duct":4, "lacrimal gland":4, "lacrimation":4, "lacrimator":4, "lacrimatory":5, "lacrymal":3, "lacrymator":4, "lacrymatory":5, "lactalbumin":4, "lactam":2, "lactase":2, "lactate":2, "lactated":3, "lactating":3, "lactary":3, "lactation":3, "lactational":4, "lactationally":5, "lactescense":3, "lactescent":3, "lactescency":4, "lacteal":3, "lacteally":4, "lacteous":3, "lactic":2, "lactic acid":4, "lactiferous":4, "lactiferousness":5, "lactometer":4, "lactone":2, "lactonic":3, "lactose":2, "lactobacilli":5, "lactobacillus":5, "lactoflavin":4, "lactogen":3, "lactogenic":4, "lactonize":3, "lactonized":3, "lactonizing":4, "lactonization":5, "lactoprotein":4, "lactoscope":3, "lacunaris":4, "lacunaria":5, "lacunary":4, "lacunosity":5, "lacunosis":4, "lacy":2, "lad":1, "ladd":1, "lade":1, "ladanum":3, "ladder":2, "ladder back":3, "ladder tournament":5, "ladderless":3, "ladderlike":3, "ladderman":3, "ladderway":3, "laddery":3, "laddie":2, "laddish":2, "laded":2, "laden":2, "lader":2, "ladhood":2, "lading":2, "ladislas":3, "ladislaus":3, "ladislaus i":4, "laemmle":2, "laestrygones":4, "laestrygon":3, "laestrygonians":5, "laevulin":3, "laevulose":3, "laelaps":2, "laelius":3, "laetitia":3, "laevo":2, "laevogyrate":4, "laevorotary":5, "laevorotation":5, "laevorotatory":6, "lafcadio":4, "lag":1, "lag b'omer":3, "lagan":2, "lagen":2, "laggard":2, "laggardly":3, "laggardness":3, "laggen":2, "laggen-gird":2, "lagger":2, "laggin":2, "lagging":2, "laggingly":3, "lagomorph":3, "lagomorpha":4, "lagomorphic":4, "lagomorphous":4, "lagthing":2, "lagting":2, "lah":1, "lahnda":2, "lahti":2, "lai":1, "laid":1, "laid paper":3, "laigh":1, "laik":1, "lain":1, "laing":1, "lair":1, "laird":1, "laird":1, "lairdship":2, "lairy":2, "laisser-aller":3, "laisser-faire":2, "laissez aller":4, "laissez faire":3, "laissez passer":4, "laissez-aller":3, "laissez-faire":2, "laissez-faireism":3, "laissez-passer":3, "laith":1, "laibach":2, "laitance":2, "lajoie":3, "lake":1, "lake":1, "lake district":3, "lake dwelling":3, "lake herring":3, "lake poets":3, "lake success":3, "lakefront":2, "lakehurst":2, "lakeland":2, "lakeland terrier":5, "lakemore":2, "lakeport":2, "lakeshore":2, "lakeview":2, "lakewood":2, "lakh":1, "lakshmi":2, "laker":2, "laking":2, "lakier":3, "lakiest":3, "lakm":3, "laksa":2, "lakshadweep islands":5, "laky":2, "lall":1, "lalapalooza":5, "lallan":2, "lallans":2, "lallapalooza":5, "lallation":3, "lally":2, "lallygag":3, "lallygagged":3, "lallygagging":4, "lalophobia":5, "laloplegia":5, "lam":1, "lam":1, "lamb":1, "lamb":1, "lamb's lettuce":3, "lamb's-quarters":2, "lambda":2, "lambdacism":3, "lambdoid":2, "lambdoidal":3, "lambie":2, "lambkill":2, "lambkin":2, "lamblike":2, "lambskin":2, "lamda":1, "lame":1, "lamebrain":2, "lamely":2, "lameness":2, "lamp":1, "lamp chimney":3, "lamp standart":3, "lampblack":2, "lampless":2, "lamplight":2, "lamplighter":3, "lamppost":2, "lampshade":2, "lampworker":3, "lampworking":3, "lambast":2, "lambaste":2, "lambasted":3, "lambasting":3, "lambarn":4, "lambent":2, "lambently":3, "lambency":3, "lambert":2, "lambert":2, "lambertville":3, "lambeth":2, "lambeth conference":5, "lambeth quadrilateral":7, "lambeth walk":3, "lamboy":2, "lambrequin":3, "lamellate":3, "lamellately":4, "lamellated":4, "lamellosity":5, "lamentable":4, "lamentableness":5, "lamentably":4, "lamentation":4, "lamentations":4, "lamer":2, "lamest":2, "laming":2, "lamington":3, "lamister":3, "lamina":3, "laminar":3, "laminar flow":4, "laminaria":5, "laminary":4, "laminate":3, "laminated":4, "laminating":4, "laminable":4, "laminariaceous":6, "lamination":4, "laminator":4, "laminitis":4, "laminose":3, "laminous":3, "lammas":2, "lammastide":3, "lammergeier":4, "lammergeyer":4, "lammergeir":4, "lamming":2, "lampad":2, "lampang":2, "lampas":2, "lampasas":3, "lampadaire":3, "lamper eel":3, "lampern":2, "lampers":2, "lampedusa":4, "lampetia":4, "lampion":3, "lampoon":2, "lampooner":3, "lampoonery":4, "lampoonist":3, "lamprey":2, "lamprophony":4, "lamprophonic":4, "lamprophonia":5, "lamprophyre":3, "lamprophyric":4, "lampyrid":3, "lamster":2, "lance":1, "lance":1, "lance corporal":4, "lance sergeant":3, "lancejack":2, "lancelet":2, "lancelike":2, "lancelot":2, "lancepod":2, "lancewood":2, "lancs":1, "lancer":2, "lancers":2, "lancing":2, "land":1, "land":1, "land agent":3, "land forces":3, "land office":3, "land reform":3, "land-grabber":2, "land-holder":2, "land-office business":4, "landes":1, "lands":1, "landshut":2, "landsknecht":2, "landsm'":2, "landsmaal":2, "landsmaal":2, "landsmal":2, "landsman":2, "landsmanshaft":3, "landsmanshaften":4, "landsthing":2, "landsting":2, "landammann":3, "landed":2, "landfall":2, "landform":2, "landgrave":2, "landgravate":3, "landgravine":3, "landgraviate":4, "landholder":3, "landholding":3, "landing":2, "landing beam":3, "landing craft":3, "landing field":3, "landing gear":3, "landing net":3, "landing stage":3, "landing strip":3, "landing-waiter":3, "landlady":3, "landless":2, "landlessness":3, "landlike":2, "landlocked":2, "landloper":3, "landlord":2, "landlordism":3, "landlordly":3, "landlordry":3, "landlordship":3, "landlouper":3, "landlubber":3, "landlubberish":4, "landlubberly":4, "landlubbing":3, "landman":2, "landmark":2, "landmass":2, "landowner":3, "landownership":4, "landowning":3, "landowner":3, "landrace":2, "landscape":2, "landscape gardening":5, "landscaped":2, "landscaper":3, "landscaping":3, "landscapist":3, "landseer":2, "landshark":2, "landside":2, "landskip":2, "landslide":2, "landslidden":3, "landsliding":3, "landslip":2, "landsteiner":3, "landsturm":2, "landtag":2, "landwaiter":3, "landward":2, "landwards":2, "landwehr":2, "lane":1, "lane":1, "lang":1, "lang":1, "langres plateau":3, "langston":2, "langue":1, "langued":1, "languedoc":2, "languedoc-roussillon":4, "langdon":2, "lange":2, "langer":2, "langland":2, "langlauf":2, "langlaufer":3, "langley":2, "langlufer":4, "langlufers":4, "langmuir":2, "langsat":2, "langset":2, "langsyne":2, "langton":2, "langtry":2, "lank":1, "lankier":3, "lankiest":3, "lankily":3, "lankiness":3, "lankly":2, "lankness":2, "lanky":2, "lansberg":2, "lansford":2, "lansquenet":3, "lanthorn":2, "lana":2, "lanark":2, "lanarkshire":3, "lancaster":3, "lancaster'":3, "lancastrian":4, "lancashire":3, "lancers":2, "lancet":2, "lancet arch":3, "lancet fish":3, "lancet window":4, "lanceted":3, "lancetfish":3, "lancetfishes":4, "lancelot":3, "lanceolate":4, "lanceolately":5, "lanchow":2, "lanciers":2, "lancinate":3, "lanciform":3, "lancinate":3, "lancinated":4, "lancinating":4, "lancination":4, "landau":2, "landau":2, "landaulet":3, "landaulette":3, "lander":2, "landeshauptmann":4, "landis":2, "landini":3, "lando":2, "landon":2, "landor":2, "landowska":3, "landus":2, "lanfranc":2, "langeel":2, "langiel":2, "langouste":2, "langobard":3, "langobardic":4, "langrage":2, "langrenus":3, "langreo":3, "langridge":2, "language":2, "language laboratory":7, "languet":2, "languette":2, "languid":2, "languidly":3, "languidness":3, "languish":2, "languisher":3, "languishing":3, "languishingly":4, "languishment":3, "languor":2, "languorous":3, "languorously":4, "langur":2, "laniard":2, "lanital":3, "lankester":3, "lanner":2, "lanneret":3, "lanny":2, "lanolated":4, "lanolin":3, "lanoline":3, "lansa":2, "lansat":2, "lansing":2, "lantana":3, "lantana":3, "lantern":2, "lantern fish":3, "lantern fly":3, "lantern jaw":3, "lantern pinion":4, "lantern slide":3, "lantern-jawed":2, "lanternfish":3, "lanternfishes":4, "lanthanide":3, "lanthanide series":5, "lanthanon":3, "lanthanum":3, "lantsang":2, "lanyard":2, "lao":1, "lao":1, "laoighis":2, "laon":1, "laos":1, "laotian":3, "laotze":2, "lap":1, "lap dissolve":3, "lap of honor":4, "lap-jointed":2, "laphria":3, "lapp":1, "lapse":1, "lapsable":3, "lapser":2, "lapsing":2, "laparotome":4, "laparectomy":5, "laparotomist":5, "laparotomize":5, "laparotomized":5, "laparotomizing":6, "laparotomy":5, "lapboard":2, "lapeyrouse":3, "lapful":2, "lapin":2, "lapins":2, "lapis":2, "lapis lazuli":5, "lapith":2, "lapidaries":4, "lapidary":4, "lapidate":3, "lapidated":4, "lapidating":4, "lapidation":4, "lapides":3, "lapidific":4, "lapidist":3, "lapithae":3, "lapland":2, "laplander":3, "lappage":2, "lappeenranta":4, "lapper":2, "lappet":2, "lappeted":3, "lappic":2, "lapping":2, "lappish":2, "lapsey":2, "lapsible":3, "lapstrake":2, "lapstreak":2, "lapsus":2, "laptev sea":3, "lapwing":2, "lar":1, "larch":1, "larcher":2, "larchmont":2, "lard":1, "lardier":3, "lardiest":3, "lardlike":2, "lardner":2, "lardy":2, "lardy cake":3, "large":1, "large calorie":4, "large intestine":4, "large-handed":2, "large-hearted":2, "large-heartedness":3, "large-minded":2, "large-mindedly":3, "large-mindedness":3, "largely":2, "largemouth bass":3, "largeness":2, "largen":2, "larger":2, "largest":2, "largish":2, "lark":1, "larksville":2, "larker":2, "larkingly":3, "larkish":2, "larkishly":3, "larkishness":3, "larkiness":3, "larksome":2, "larkspur":2, "larkspur":2, "larky":2, "larn":1, "lars":1, "laramie":3, "larbaud":2, "larboard":2, "larcener":3, "larcenist":3, "larcenous":3, "larcenously":4, "larceny":3, "lardaceous":3, "larder":2, "larder beetle":4, "lardon":2, "lardoon":2, "lardy-dardy":3, "larentalia":5, "lares":2, "lares and penates":6, "largando":3, "largess":2, "largesse":2, "larghetto":3, "larghettos":3, "largo":2, "largo":2, "larine":2, "lariat":3, "larkin":2, "larmor precession":5, "larnax":2, "larned":2, "larrigan":3, "larrikin":3, "larrikinism":4, "larrup":2, "larruped":2, "larruper":3, "larruping":3, "larry":2, "larry":2, "larsa":2, "larum":2, "larva":2, "larval":2, "larvate":2, "larviparous":4, "larvivorous":4, "larvicide":3, "larvicidal":4, "larwood":2, "larynx":2, "laryngectomee":5, "laryngectomize":5, "laryngectomized":5, "laryngectomizing":6, "laryngectomy":5, "laryngeal":4, "laryngitic":4, "laryngitis":4, "laryngologist":5, "laryngology":5, "laryngoscopy":5, "laryngotomy":5, "las palmas":3, "las vegas":3, "lase":1, "lash":1, "lash-up":1, "lashed":1, "lasher":2, "lashing":2, "lashings":2, "lashingly":3, "lashio":2, "lashio":3, "lashkar":2, "lashkar":2, "lashless":2, "lass":1, "last":1, "last judgment":3, "last quarter":3, "last supper":3, "last-cyclic":2, "last-ditcher":2, "last-minute":2, "laster":2, "lasting":2, "lastingly":3, "lastingness":3, "lastly":2, "lascar":2, "lascaux":2, "lascivious":4, "lasciviously":5, "lasciviousness":5, "lasing":2, "lasker":2, "lasket":2, "laski":2, "lassa":2, "lassa fever":4, "lassalle":2, "lasse":2, "lassell":2, "lassen peak":3, "lassie":2, "lassie":2, "lassitude":3, "lasso":2, "lassoed":2, "lassoer":3, "lassoing":3, "lassus":2, "lastex":2, "lat":1, "lat":1, "latch":1, "latchet":2, "latching":2, "latchkey":2, "latchkey child":3, "latchstring":2, "late":1, "late latin":3, "latecomer":3, "lately":2, "lateness":2, "lath":1, "lathe":1, "lather":2, "latherer":3, "lathery":3, "lathing":2, "lathier":3, "lathiest":3, "lathlike":2, "lathwork":2, "lathy":2, "latakia":4, "lated":2, "later":2, "lateral":3, "lateral line system":6, "lateral thinking":5, "laterally":4, "lateran":3, "lateran":3, "laterite":3, "lateritic":4, "latericeous":4, "laterigrade":4, "lateritious":4, "lateroversion":5, "latest":2, "laterality":5, "latin":2, "latin alphabet":5, "latin america":6, "latin church":3, "latin cross":3, "latin quarter":4, "latin square":3, "latin-american":5, "latinate":3, "latinise":3, "latinised":3, "latinism":3, "latinist":3, "latinising":4, "latinize":3, "latinized":3, "latinizing":4, "latinization":5, "latish":2, "latices":3, "laticiferous":5, "latifundia":5, "latifundium":5, "latimer":3, "latimeria":5, "latitude":3, "latitudinal":5, "latitudinally":6, "latitudinarian":7, "latitudinarianism":8, "latitudinous":5, "latke":2, "lattakia":4, "latten":2, "latter":2, "latter-day":2, "latter-day saint":3, "latterly":3, "lattermost":3, "lattice":2, "lattice-leaf":2, "latticed":2, "latticelike":3, "latticework":3, "latticing":3, "latticini":4, "latticinio":4, "latvia":3, "latvian":3, "latviia":3, "laud":1, "laud":1, "lauds":1, "laudability":5, "laudable":3, "laudableness":4, "laudably":3, "laudative":3, "laudatorily":5, "laudatory":4, "lauder":2, "laudian":3, "laudianism":4, "laudianus":4, "laugh":1, "laugh away":3, "laughable":3, "laughableness":4, "laughably":3, "laugher":2, "laughing":2, "laughing gas":3, "laughing hyena":5, "laughing jackass":4, "laughing stock":3, "laughingly":3, "laughingstock":3, "laughter":2, "laughterless":3, "laughton":2, "launce":1, "launch":1, "launch vehicle":4, "launch window":3, "launchable":3, "launcher":2, "launching pad":3, "launching shoe":3, "launching vehicle":5, "launchplex":2, "launceston":3, "launcelot":3, "launder":2, "launderability":6, "launderette":3, "launderette":3, "laundress":2, "laundromat":3, "laundry":2, "laundryman":3, "laundrywoman":4, "laundrywomen":4, "lauraldehyde":4, "laurasia":3, "lautenclavicymbal":6, "lauda":2, "laudanum":3, "laudation":3, "laudator":3, "lauder":2, "laue":2, "lauenburg":3, "laulau":2, "laumontite":3, "laura":2, "laura":2, "laurate":2, "lauraceous":3, "lauralee":3, "laureen":2, "laurel":2, "laurel":2, "laurel and hardy":5, "laureled":2, "laurelled":2, "laureling":3, "laurelling":3, "laurence":2, "laurence":2, "laurens":2, "laurent":2, "laurencin":3, "laurentian":3, "laurentian mountains":5, "laurentian shield":4, "laurentians":3, "laurentius":4, "laurette":2, "lauretta":3, "laureate":3, "laureateship":4, "laurena":3, "lauric":2, "lauric acid":4, "laurie":2, "laurinburg":3, "laurissa":3, "laurite":2, "laurier":3, "laurium":3, "lauroyl":3, "laurustinus":4, "lauryl alcohol":5, "lausanne":2, "lautrec":2, "lautramont":5, "lauwine":2, "lav":1, "lave":1, "lavage":2, "lavages":3, "lavalier":3, "lavaliere":3, "lavaret":3, "lavatory":4, "lavatory paper":6, "lavender":3, "laverock":3, "laving":2, "lavish":2, "lavisher":3, "lavishly":3, "lavishment":3, "lavishness":3, "lavrock":2, "law":1, "law":1, "law agent":3, "law centre":3, "law merchant":3, "law of moses":4, "law of nations":4, "law of thermodynamics":7, "law society":5, "law stationer":4, "law-abiding":3, "lawes":1, "lawks":1, "lawn":1, "lawn mower":3, "lawn tennis":3, "lawndale":2, "lawny":2, "lawbook":2, "lawbreaker":3, "lawbreaking":3, "lawful":2, "lawfully":3, "lawfulness":3, "lawgiver":3, "lawgiving":3, "lawing":2, "lawless":2, "lawlessly":3, "lawlessness":3, "lawlike":2, "lawmaker":3, "lawmaking":3, "lawman":2, "lawman":2, "lawrence":2, "lawrenceburg":3, "lawrenceville":3, "lawrencian":3, "lawrencium":4, "lawrentian":3, "lawson":2, "lawsuit":2, "lawton":2, "lawyer":2, "lawyerlike":3, "lawyerly":3, "lax":1, "laxation":3, "laxative":3, "laxatively":4, "laxativeness":4, "laxity":3, "laxly":2, "laxness":2, "laxness":2, "lay":1, "lay analyst":4, "lay aside":3, "lay away":3, "lay brother":3, "lay figure":3, "lay into":3, "lay over":3, "lay reader":3, "lay-by":1, "lay-up":1, "layard":1, "layabout":3, "layamon":3, "laydown":2, "layer":2, "layer cake":3, "layer-out":2, "layers-out":2, "layerage":3, "layering":3, "layette":2, "laying":2, "layman":2, "layoff":2, "layout":2, "layover":3, "layshaft":2, "laystall":2, "layton":2, "layup":2, "laywoman":3, "laywomen":3, "laze":1, "lazar":2, "lazarlike":3, "lazaret":3, "lazarette":3, "lazaretto":4, "lazarist":3, "lazarus":3, "lazing":2, "lazuli":3, "lazuline":3, "lazulite":3, "lazulitic":4, "lazurite":3, "lazzaro":3, "lannec":3, "laban":2, "labe":2, "label":2, "labeled":2, "labelled":2, "labeler":3, "labeling":3, "labella":3, "labeller":3, "labelling":3, "labelloid":3, "labellum":3, "labiche":2, "labile":2, "lability":4, "labia":3, "labia majora":6, "labia minora":6, "labial":3, "labialise":4, "labialised":4, "labialism":4, "labialising":5, "labialize":4, "labialized":4, "labializing":5, "labiality":5, "labialization":6, "labially":4, "labiate":3, "labilize":3, "labilized":3, "labilizing":4, "labilization":5, "labiodental":5, "labiogression":5, "labionasal":5, "labiovelar":5, "labiovelarise":6, "labiovelarised":6, "labiovelarising":7, "labiovelarize":6, "labiovelarized":6, "labiovelarizing":7, "labiovelarization":8, "labium":3, "labor":2, "labor party":4, "labor union":4, "labor-saving":3, "labored":2, "laboredly":3, "laboredness":3, "laboratory":5, "laborer":3, "laboringly":4, "laborism":3, "laborism":3, "laborist":3, "laboristic":4, "laborite":3, "laborless":3, "labour":2, "labour camp":3, "labour day":3, "labour exchange":4, "labour party":4, "labour-saving":3, "laboured":2, "labouredness":3, "labourer":3, "labourism":3, "labourism":3, "labourist":3, "labourist":3, "labourite":3, "labourless":3, "laborious":4, "laboriously":5, "laboriousness":5, "labra":2, "labret":2, "labrid":2, "labrum":2, "laburnum":3, "labuan":3, "lacaille":2, "lacerna":3, "lacerta":3, "lacertian":3, "lacertid":3, "lachaise":2, "lachish":2, "laciniate":4, "laciniated":5, "laclos":2, "laconic":3, "laconical":4, "laconically":5, "laconicism":4, "laconicum":4, "laconia":4, "lacretelle":3, "lacroix":2, "lacrosse":2, "lacustrine":3, "lacuna":3, "lacunal":3, "lacunar":3, "lacunars":3, "lacunose":3, "lacunule":3, "lacy":2, "ladanum":3, "ladies":2, "ladies' fingers":4, "ladies' gallery":5, "ladies' man":3, "ladies' room":3, "ladies'-tobacco":4, "ladies'-tresses":3, "ladies-in-waiting":3, "ladies-of-the-night":2, "ladies-tresses":3, "ladin":2, "ladify":3, "ladino":3, "ladino":3, "ladle":2, "ladle out":3, "ladler":2, "ladleful":3, "ladon":2, "ladoga":3, "ladron":2, "ladrone":2, "ladrone islands":4, "ladrones":2, "ladue":2, "lady":2, "lady":2, "lady bountiful":5, "lady chapel":4, "lady day":3, "lady mayoress":5, "lady's bedstraw":4, "lady's finger":4, "lady's maid":3, "lady's man":3, "lady's mantle":4, "lady's-mantle":3, "lady's-slipper":3, "lady's-smock":2, "lady's-thistle":3, "lady's-thumb":2, "lady's-tresses":3, "lady'sfinger":4, "lady-in-waiting":3, "lady-killer":3, "lady-killing":3, "lady-of-the-night":2, "lady-slipper":3, "ladybird":3, "ladybug":3, "ladyfinger":4, "ladyfish":3, "ladyfishes":4, "ladyfy":3, "ladyhood":3, "ladyish":3, "ladyishly":4, "ladyishness":4, "ladykin":3, "ladyless":3, "ladylike":3, "ladylikeness":4, "ladylove":3, "ladyship":3, "ladyship":3, "ladysmith":3, "ladysnow":3, "lae":2, "laennec":3, "laertes":3, "laertiades":5, "lafayette":3, "lafitte":2, "laforgue":2, "lagash":2, "lageniform":4, "lager":2, "lagerkvist":3, "lagerl":3, "lagerlf":4, "lagena":3, "laghouat":3, "lagnappe":2, "lagniappe":2, "lagoon":2, "lagoon islands":4, "lagoonal":3, "lagos":2, "lagrange":2, "laguerre":2, "lagune":2, "lahaina":3, "lahar":2, "lahore":2, "lahoma":3, "laic":2, "laius":2, "laical":3, "laically":4, "laicise":3, "laicised":3, "laicism":3, "laicize":3, "laicized":3, "laicizing":4, "laicization":5, "laity":3, "lajos":2, "lakin":2, "lala":2, "lalande":2, "lalang":2, "lalapalooza":5, "lalita":3, "lalo":2, "lalopathy":4, "lalu":2, "lam":2, "lama":2, "lamar":2, "lamarck":2, "lamarckism":3, "lamarckian":4, "lamartine":3, "lamas":2, "lamaism":3, "lamaist":3, "lamaistic":4, "lamaseries":4, "lamasery":4, "lamech":2, "lamed":2, "lamella":3, "lamellae":3, "lamellar":3, "lamellarly":4, "lamellibranch":4, "lamellibranchiate":6, "lamellicorn":4, "lamelliform":4, "lamellirostral":5, "lamellirostrate":5, "lamellose":3, "lament":2, "lamented":3, "lamentedly":4, "lamenter":3, "lamentingly":4, "lamentation":4, "lamia":3, "lamias":3, "lamiaceous":4, "lamont":2, "lamoureux":3, "lamus":2, "lam":3, "lan":2, "lanate":2, "lanai":3, "lanai":3, "lanais":3, "lanett":2, "lanier":2, "laniferous":4, "lanigerous":4, "laniary":4, "lanikai":3, "lanose":2, "lanosity":4, "lanuginose":4, "lanuginous":4, "lanuginousness":5, "lanugo":3, "laoag":2, "laocoon":4, "laocon":5, "laodamas":4, "laodamia":5, "laodice":4, "laodicea":5, "laodicean":5, "laodicean":5, "laodocus":4, "laomedon":4, "laos":2, "laotho":5, "lapactic":3, "lapeer":2, "lapel":2, "lapelled":2, "laphystius":4, "lapidarist":4, "lapidified":4, "lapidification":6, "lapidify":4, "lapidifying":5, "lapilli":3, "lapillus":3, "lapis":2, "laplace":2, "laplace operator":6, "laplacian":4, "laputa":3, "laquei":3, "laqueus":3, "laraine":2, "lararia":4, "lararium":4, "laredo":3, "larine":2, "larissa":3, "larithmic":3, "larithmics":3, "larina":3, "larisa":3, "larousse":2, "laryngal":3, "larynges":3, "laryngeal":4, "laryngeally":5, "laryngoscopist":5, "laryngological":6, "laryngopharynx":5, "laryngopharynges":6, "laryngopharyngeal":7, "laryngoscope":4, "laryngoscopic":5, "laryngoscopically":7, "laryngotracheal":6, "lasagna":3, "lasagne":3, "laser":2, "lata":2, "latah":2, "lateen":2, "lateen-rigged":2, "lateenrigged":3, "latent":2, "latent heat":3, "latent image":4, "latent learning":4, "latent period":5, "latently":3, "latency":3, "latency period":6, "latensified":4, "latensification":6, "latensify":4, "latensifying":5, "latex":2, "lathee":2, "lathi":2, "lati":2, "latinic":3, "latinity":4, "latina":3, "latino":3, "latinus":3, "latitia":3, "latium":3, "latour":2, "latona":3, "latreutic":3, "latreutical":4, "latrine":2, "latria":3, "latrobe":2, "latus rectum":4, "lava":2, "lava-lava":3, "laval":2, "lavallire":4, "lavabo":3, "lavada":3, "lavater":3, "lavation":3, "lavational":4, "laveer":2, "laver":2, "laver":2, "laver bread":3, "lavern":2, "lavern":2, "laverne":2, "laverna":3, "laveche":3, "laveran":3, "lavinia":4, "lavoisier":3, "lavolta":3, "lavonne":2, "lawine":2, "lazear":2, "lazio":2, "lazier":3, "laziest":3, "lazily":3, "laziness":3, "lazy":2, "lazy daisy stitch":5, "lazy susan":4, "lazy tongs":3, "lazybones":3, "lazyish":3, "lbw":1, "lcc":1, "lcd":1, "lcd":1, "lcj":1, "lcl":1, "lcl":1, "lcm":1, "lcm":1, "ldg":1, "lds":1, "le carr":3, "le chatelier's principle":7, "le corbusier":4, "le creusot":3, "le havre":3, "lea":1, "leach":1, "leachability":5, "leachable":3, "leacher":2, "leachier":3, "leachiest":3, "leachy":2, "lead":1, "lead":1, "lead acetate":4, "lead arsenate":4, "lead colic":3, "lead monoxide":4, "lead pencil":3, "lead poisoning":4, "lead tetraethyl":5, "lead-in":1, "leadsman":2, "leadbelly":3, "leaden":2, "leadenly":3, "leadenness":3, "leader":2, "leaderless":3, "leadership":3, "leading":2, "leading aircraftman":5, "leading article":5, "leading edge":3, "leading light":3, "leading man":3, "leading note":3, "leading question":4, "leading reins":3, "leading strings":3, "leadingly":3, "leadier":3, "leadiest":3, "leadless":2, "leadoff":2, "leadplant":2, "leadville":2, "leadwort":2, "leady":2, "leaf":1, "leaf":1, "leaf insect":3, "leaf miner":3, "leaf monkey":3, "leaf-climber":2, "leaf-hopper":2, "leafed":1, "leafage":2, "leafbird":2, "leafcutter ant":4, "leafcutter bee":4, "leafhopper":3, "leafier":3, "leafiest":3, "leafiness":3, "leafless":2, "leaflessness":3, "leaflet":2, "leaflike":2, "leafstalk":2, "leafy":2, "league":1, "league of nations":4, "leaguer":2, "leah":1, "leak":1, "leakage":2, "leakance":2, "leaker":2, "leakier":3, "leakiest":3, "leakiness":3, "leakless":2, "leaky":2, "leal":1, "leally":2, "leamington spa":4, "lean":1, "lean-to":1, "leant":1, "leaner":2, "leangle":2, "leaning":2, "leanly":2, "leanness":2, "leap":1, "leapt":1, "leaper":2, "leapfrog":2, "leapfrogged":2, "leapfrogger":3, "leapfrogging":3, "leaping":2, "lear":1, "lear":1, "learn":1, "learnt":1, "learnable":3, "learned":2, "learnedly":3, "learnedness":3, "learner":2, "learning":2, "learned":2, "leary":2, "lease":1, "lease-purchase":2, "leaseback":2, "leasehold":2, "leaseholder":3, "leaseless":2, "leaseman":2, "leash":1, "least":1, "least common denominator":8, "least common multiple":6, "leastways":2, "leastwise":2, "leasable":3, "leaser":2, "leasing":2, "leat":1, "leather":2, "leather-hard":2, "leather-lunged":2, "leathern":2, "leatherback":3, "leatherette":3, "leatherfish":3, "leatherfishes":4, "leatherflower":4, "leatherhead":3, "leatherhead":3, "leatheriness":4, "leatherjacket":4, "leatherleaf":3, "leatherneck":3, "leatheroid":3, "leatherwood":3, "leatherwork":3, "leatherworker":4, "leathery":3, "leave":1, "leave behind":3, "leave-taking":2, "leaved":1, "leaves":1, "leaven":2, "leavening":3, "leavenless":3, "leavenworth":3, "leaver":2, "leaving":2, "leavings":2, "leavier":3, "leaviest":3, "leavy":2, "leacock":2, "leaguer":2, "leaguing":2, "leahy":2, "leakey":2, "leao":2, "learoy":2, "leavis":2, "leawood":2, "lebanese":3, "lebanon":3, "lebanon mountains":5, "lebbek":2, "leben":2, "lebkuchen":3, "lech":1, "lech":1, "lecher":2, "lecheries":3, "lecherous":3, "lecherously":4, "lecherousness":4, "lechery":3, "lecheates":4, "lechuguilla":4, "lechuguillas":4, "lecky":2, "lect":1, "lecce":2, "lecithal":3, "lecithality":5, "lecithic":3, "lecithin":3, "lecithoid":3, "lectern":2, "lection":2, "lectionaries":4, "lectionary":4, "lector":2, "lectorate":3, "lecture":2, "lectured":2, "lectureship":3, "lecturer":3, "lecturing":3, "lecythus":3, "led":1, "led":1, "led zeppelin":4, "ledge":1, "ledgeless":2, "ledger":2, "ledger board":3, "ledger line":3, "ledging":2, "ledgier":3, "ledgiest":3, "ledgy":2, "ledbetter":3, "lee":1, "lee":1, "leech":1, "leechburg":2, "leechlike":2, "leeds":1, "leek":1, "leer":1, "leeringly":3, "leerier":3, "leeriest":3, "leerily":3, "leeriness":3, "leery":2, "lees":1, "leesburg":2, "leesville":2, "leet":1, "leeuwarden":3, "leeuwenhoek":3, "leeboard":2, "leefang":2, "leefange":2, "leegrant":2, "leeroy":2, "leetonia":4, "leeuwarden":4, "leeuwenhoek":4, "leeward":2, "leeward islands":4, "leewardly":3, "leeway":2, "left":1, "left-footer":2, "left-handed":2, "left-handedly":3, "left-handedness":3, "left-hander":2, "left-luggage office":4, "lefties":2, "leftism":2, "leftist":2, "leftist":2, "leftover":3, "leftward":2, "leftwards":2, "leftwardly":3, "leftwing":2, "leftwinger":3, "lefty":2, "leg":1, "leg before wicket":5, "leg-o'-mutton":2, "leg-of-mutton":2, "legis":1, "legate":2, "legateship":3, "legacy":3, "legatee":3, "legatine":3, "legator":3, "legatorial":5, "legend":2, "legendaries":4, "legendarily":5, "legendary":4, "legendist":3, "legendize":3, "legendized":3, "legendizing":4, "legendry":3, "leger":2, "leger line":3, "legerdemain":4, "legerdemainist":5, "legged":2, "leggin":2, "legging":2, "legginged":2, "leggings":2, "leggier":3, "leggiest":3, "legginess":3, "leggy":2, "legharness":3, "leghorn":2, "leghorn":2, "legislate":3, "legislated":4, "legislating":4, "legislation":4, "legislative":4, "legislative assembly":7, "legislative council":6, "legislatively":5, "legislator":4, "legislatorship":5, "legislatorial":6, "legislatress":4, "legislatrix":4, "legislatrixes":5, "legislatrices":5, "legislature":4, "legibility":5, "legible":3, "legibleness":4, "legibly":3, "legitim":3, "leglen":2, "legless":2, "leglike":2, "legman":2, "legnica":3, "legroom":2, "legume":2, "legwork":2, "lehmbruck":2, "lehr":1, "lehman":2, "lehmann":2, "lei":1, "leibnitz":2, "leibnitz mountains":4, "leibnitzian":4, "leibnitzianism":5, "leibniz":2, "leibnizian":4, "leibnizianism":5, "leicester":2, "leicestershire":3, "leichhardt":2, "leics":1, "leif":1, "leif ericson":4, "leigh":1, "leigh-mallory":3, "leighton":2, "leinsdorf":2, "leinster":2, "leipsic":2, "leipzig":2, "leishmanic":3, "leishmaniasis":5, "leishmania":4, "leishmanial":4, "leishmaniosis":5, "leister":2, "leitchfield":2, "leith":1, "leitmotif":3, "leitmotiv":3, "leix":1, "leiden":2, "leila":2, "leiomyomatous":6, "leiomyoma":5, "leiomyomas":5, "leiomyomata":6, "leiria":3, "leisure":2, "leisured":2, "leisureless":3, "leisureliness":4, "leisurely":3, "leisureness":3, "leisurable":4, "leitrim":2, "lek":1, "lek":1, "lekane":3, "lekker":2, "lekythos":3, "lekythus":3, "lem":1, "leman":2, "lemberg":2, "lemma":2, "lemmas":2, "lemmata":3, "lemming":2, "lemminkinen":5, "lemniscate":3, "lemnisci":3, "lemniscus":3, "lemnitzer":3, "lemnos":2, "lemon":2, "lemon balm":3, "lemon cheese":3, "lemon drop":3, "lemon geranium":6, "lemon sole":3, "lemon squash":3, "lemon squeezer":4, "lemon verbena":5, "lemonade":3, "lemonfish":3, "lemonfishes":4, "lemonish":3, "lemonlike":3, "lemony":3, "lempira":3, "lemuel":3, "lemures":3, "lemurine":3, "lemuroid":3, "len":1, "lend":1, "lendable":3, "lender":2, "lending":2, "lending library":5, "length":1, "lengthen":2, "lengthener":3, "lengthier":3, "lengthiest":3, "lengthily":3, "lengthiness":3, "lengthman":2, "lengthways":2, "lengthwise":2, "lengthy":2, "lenglen":2, "lens":1, "lenses":2, "lensless":2, "lenslike":2, "lensman":2, "lent":1, "lent":1, "lent lily":3, "lenten":2, "lenten":2, "lenape":3, "lenca":2, "lenclos":2, "lenin":2, "lenin peak":3, "leninsk-kuznetski":4, "leningrad":3, "leninism":3, "leninist":3, "leninite":3, "lenitive":3, "lenity":3, "lennie":2, "lennon":2, "lennox":2, "lenny":2, "lenox":2, "lentando":3, "lentamente":4, "lenten":2, "lenthiel":3, "lentic":2, "lenticular":4, "lenticularis":5, "lenticularly":5, "lenticulate":4, "lenticulated":5, "lenticulating":5, "lentigines":4, "lentiginose":4, "lentiginous":4, "lentil":2, "lentissimo":4, "lenticel":3, "lenticellate":4, "lenticle":3, "lentiform":3, "lentigo":3, "lento":2, "lentoid":2, "leominster":3, "leonard":2, "leopard":2, "leopard lily":4, "leopard moth":3, "leopard's-bane":2, "leopardess":3, "leopard":2, "leper":2, "lepidoptera":5, "lepidoptera":5, "lepidopteral":5, "lepidopteran":5, "lepidopterist":5, "lepidopterology":7, "lepidopteron":5, "lepidopterous":5, "lepidopterological":8, "lepidote":3, "lepidosiren":5, "lepidus":3, "leporid":3, "leporide":3, "leporine":3, "leporis":3, "leprechaun":3, "leprologist":4, "leprology":4, "leprose":2, "leprotic":3, "leprous":2, "leprously":3, "leprousness":3, "leprosaria":5, "leprosarium":5, "leprosy":3, "lepsius":3, "lepton":2, "lepton number":4, "leptorrhine":3, "leptorrhiny":4, "leptocephalus":5, "leptodactylous":5, "leptokurtic":4, "leptokurtosis":5, "leptophyllous":4, "leptoprosopy":5, "leptoprosopic":5, "leptosome":3, "leptosomatic":5, "leptosomic":4, "leptospira":4, "leptospiral":4, "leptospirosis":5, "leptotene":3, "lepus":2, "ler":1, "lermontov":3, "lerna":2, "lernaea":3, "lernaean":3, "lerne":2, "lerner":2, "lernean":3, "lerwick":2, "lese-majesty":3, "less":1, "lessen":2, "lesser":2, "lesser antilles":5, "lesser celandine":5, "lesser panda":4, "lesser sunda islands":6, "lest":1, "lesbian":3, "lesbian":3, "lesbianism":4, "lesbos":2, "lesche":2, "lesley":2, "leslie":2, "lespedeza":4, "lessee":2, "lesseeship":3, "lesseps":2, "lessing":2, "lesson":2, "lessor":2, "leste":2, "lester":2, "lestobiotic":5, "lestobiosis":5, "lesya":2, "let":1, "let into":3, "let's":1, "letch":1, "letchworth":2, "lethargise":3, "lethargised":3, "lethargising":4, "lethargize":3, "lethargized":3, "lethargizing":4, "lethargy":3, "lethbridge":2, "lett":1, "letdown":2, "letted":2, "letter":2, "letter bomb":3, "letter box":3, "letter card":3, "letter of advice":5, "letter of credit":5, "letter of introduction":7, "letter of marque":4, "letter-card":2, "letter-high":2, "letter-perfect":3, "lettered":2, "letters":2, "letters of marque":4, "letterer":3, "lettergram":3, "letterhead":3, "lettering":3, "letterless":3, "letterman":3, "letterpress":3, "letterset":3, "letterspace":3, "letterspaced":3, "letterspacing":4, "lettic":2, "lettice":2, "lettie":2, "letting":2, "lettish":2, "lettuce":2, "letty":2, "letup":2, "leuctra":2, "leud":1, "leucaeus":3, "leucas":2, "leuce":2, "leucemia":4, "leucin":2, "leucine":2, "leucippe":3, "leucippides":4, "leucippus":3, "leucite":2, "leucitic":3, "leucitite":3, "leuco base":3, "leucon":2, "leucon":2, "leucorrhea":4, "leucorrheal":4, "leucorrhoea":4, "leucorrhoeal":4, "leucothea":4, "leucotho":5, "leucotomy":4, "leucoblast":3, "leucocidin":4, "leucocratic":4, "leucocyte":3, "leucocytic":4, "leucocythaemic":5, "leucocythaemia":6, "leucocythemic":5, "leucocythemia":6, "leucocytosis":5, "leucoderma":4, "leucoline":3, "leucoma":3, "leucomaine":3, "leucomaine":4, "leuconoid":3, "leuconostoc":4, "leucopenia":5, "leucophryne":4, "leucoplast":3, "leucoplastid":4, "leucopoietic":5, "leucopoiesis":5, "leucosis":3, "leucosticte":4, "leucotaxin":4, "leucotaxine":4, "leucotome":3, "leucus":2, "leudes":2, "leukaemic":3, "leukaemia":4, "leukas":2, "leukemic":3, "leukemid":3, "leukemia":4, "leukemoid":3, "leukocytotic":4, "leukorrhea":4, "leukorrheal":4, "leukorrhoea":4, "leukorrhoeal":4, "leukothea":4, "leukotomy":4, "leukoblast":3, "leukoblastic":4, "leukocidin":4, "leukocyte":3, "leukocytic":4, "leukocythemia":6, "leukocytopenia":7, "leukocytosis":5, "leukoderma":4, "leukoma":3, "leukopedesis":5, "leukopenic":4, "leukopenia":5, "leukopoietic":5, "leukopoiesis":5, "leukosis":3, "leukotaxin":4, "leukotaxine":4, "leuricus":3, "leutze":2, "leuven":2, "lev":1, "lev":1, "levit":1, "leva":2, "levantinism":4, "levarterenol":5, "levatores":4, "levee":2, "leveed":2, "leveeing":3, "level":2, "level crossing":4, "level pegging":4, "level-headed":3, "level-headedness":4, "level-off":2, "leveled":2, "levelled":2, "leveler":3, "leveling":3, "leveller":3, "leveller":3, "levelling":3, "levelling screw":4, "levelly":3, "levelness":3, "lever":2, "lever-action":3, "leverage":3, "leveret":3, "leverett":3, "leverlike":3, "levied":2, "levies":2, "levin":2, "levittown":3, "leviable":4, "levier":3, "levigate":3, "levigated":4, "levigating":4, "levigation":4, "levigator":4, "levirate":3, "leviratic":4, "levitate":3, "levitated":4, "levitating":4, "levitation":4, "levitational":5, "levitative":4, "levitator":4, "leviter":3, "levity":3, "levkas":2, "levophed":3, "levulose":3, "levy":2, "levy en masse":4, "levying":3, "lew":1, "lewd":1, "lewdly":2, "lewdness":2, "lewes":2, "lewis":2, "lewis":2, "lewis acid":4, "lewis and harris":5, "lewis base":3, "lewis gun":3, "lewis with harris":5, "lewisburg":3, "lewisite":3, "lewisson":3, "lewiston":3, "lewisville":3, "lewisham":3, "lewisohn":3, "lex":1, "lex loci":3, "lex non scripta":4, "lex scripta":3, "lex talionis":5, "lexicog":1, "lexell":2, "lexeme":2, "lexington":3, "lexis":2, "lexica":3, "lexical":3, "lexical insertion":6, "lexical meaning":5, "lexicality":5, "lexically":4, "lexicographer":5, "lexicography":5, "lexicologist":5, "lexicology":5, "lexicon":3, "lexicographic":5, "lexicographically":7, "lexicological":6, "lexicostatistic":6, "lexicostatistics":6, "lexicostatistical":7, "lexigraphy":4, "ley":1, "leyden":2, "leyden jar":3, "leyte":2, "leyte gulf":3, "leyton":2, "lea":2, "leah":2, "lealty":3, "leander":3, "leanna":3, "learchus":3, "lebensraum":3, "lebes":2, "lebesgue":2, "leblanc":2, "lebowa":3, "lebrun":2, "lechatelierite":5, "lechayim":3, "lechwe":2, "lecithinase":4, "leconte de lisle":4, "lecuona":3, "leda":2, "lederberg":3, "lederhosen":4, "ledoux":2, "legal":2, "legal aid":3, "legal cap":3, "legal holiday":5, "legal medicine":5, "legal separation":6, "legal tender":4, "legalese":3, "legalise":3, "legalised":3, "legalism":3, "legalist":3, "legalising":4, "legalistic":4, "legalistically":6, "legalize":3, "legalized":3, "legalizing":4, "legalisation":5, "legality":4, "legalization":5, "legally":3, "legaspi":3, "legazpi":3, "legation":3, "legationary":5, "legato":3, "legator":3, "legendre":3, "legerity":4, "leges":2, "legion":2, "legion of honor":5, "legionaries":4, "legionary":4, "legionary ant":5, "legionnaire":3, "legist":2, "legit":2, "legitimate":4, "legitimately":5, "legitimateness":5, "legitimated":5, "legitimating":5, "legitimacy":5, "legitimation":5, "legitimatise":5, "legitimatised":5, "legitimatising":6, "legitimatize":5, "legitimatized":5, "legitimatizing":6, "legitimise":4, "legitimised":4, "legitimism":4, "legitimist":4, "legitimising":5, "legitimistic":5, "legitimize":4, "legitimized":4, "legitimizing":5, "legitimization":6, "legrand":2, "legree":2, "legua":4, "legumin":3, "leguminous":4, "lehar":2, "lehayim":3, "lehi":2, "lehigh":2, "lehighton":3, "lehua":3, "lehr":3, "lei":2, "leis":2, "lejeune":2, "lela":2, "leland":2, "lely":2, "leman":2, "lemass":2, "lematre":4, "lemessus":3, "lemont":2, "lemonnier":3, "lemoore":2, "lemoyne":2, "lemur":2, "lemurlike":3, "lemuralia":5, "lemuria":4, "lena":2, "lenaea":3, "lenaeus":3, "lenard":2, "lenes":2, "leningrad":3, "lenis":2, "lenitic":3, "lenience":3, "lenient":3, "leniently":4, "leniency":4, "leninabad":4, "leninakan":4, "lenition":3, "leno":2, "lenoir":2, "lenore":2, "lenora":3, "lentre":4, "leo":2, "leo i":3, "leo iii":3, "leo minor":4, "leo x":3, "leo xiii":3, "leofric":3, "leon":2, "leoncavallo":5, "leonhard":3, "leonidas":4, "leonides":4, "leonteus":4, "leontyne":3, "leos":2, "leoben":3, "leodis":3, "leonardesque":4, "leonardo da vinci":7, "leone":3, "leoni":3, "leonid":3, "leonids":3, "leonie":3, "leonine":3, "leonine":3, "leonis":3, "leonia":4, "leonore":3, "leonov":3, "leonora":4, "leopardi":4, "leopold":3, "leopold i":4, "leopold ii":4, "leopold iii":4, "leopoldville":4, "leopoldo":4, "leotard":3, "leotine":3, "leotyne":3, "lepanto":3, "lepaute":2, "lepaya":3, "lepidolite":4, "lepontine alps":4, "leporidae":4, "lequear":2, "leros":2, "leroy":2, "lesage":2, "leschetizky":4, "lesion":2, "lesotho":3, "leta":2, "letha":2, "lethal":2, "lethal dose":3, "lethality":4, "lethally":3, "lethargic":3, "lethargical":4, "lethargically":5, "lethe":2, "lethean":3, "lethiferous":4, "letitia":3, "leto":2, "leu":2, "levade":2, "levallois":3, "levallois-perret":4, "levalloisian":5, "levant":2, "levant":2, "levanter":3, "levantera":4, "levantine":3, "levantine":3, "levanto":3, "levator":3, "leven":2, "lever":2, "leverhulme":3, "leverkusen":4, "leverrier":4, "leveche":3, "levi":2, "levi-strauss":2, "levine":2, "levis":2, "levite":2, "levitic":3, "levitical":4, "levitically":5, "leviticus":4, "leviathan":4, "levina":3, "levo":2, "levoglucose":4, "levogyre":3, "levogyrate":4, "levorotary":5, "levorotation":5, "levorotatory":6, "levy":2, "letus":4, "len":3, "lge":1, "lgth":1, "lhasa":2, "lhd":1, "lhevinne":2, "liang":1, "liao":1, "liaoning":2, "liaopeh":2, "liaotung":2, "liaoyang":2, "liakoura":3, "lib":1, "lib":1, "libby":2, "libera":3, "liberal":3, "liberal":3, "liberal arts":4, "liberal party":5, "liberal studies":5, "liberal unionist":6, "liberalise":4, "liberalised":4, "liberalism":4, "liberalist":4, "liberaliser":5, "liberalising":5, "liberalistic":5, "liberalize":4, "liberalized":4, "liberalizer":5, "liberalizing":5, "liberality":5, "liberalization":6, "liberally":4, "liberalness":4, "liberate":3, "liberated":4, "liberating":4, "liberation":4, "liberative":4, "liberator":4, "liberator":4, "liberatory":5, "libertarian":5, "libertarianism":6, "libertine":3, "libertinage":4, "libertinism":4, "liberty":3, "liberty":3, "liberty bodice":5, "liberty cap":4, "liberty hall":4, "liberty horse":4, "liberty island":5, "liberty ship":4, "libertyville":4, "librium":3, "libya":3, "libyan":3, "libyan desert":5, "lice":1, "lich":1, "licht":1, "lichtly":2, "lichfield":2, "lichtenberg":3, "lichtenstein":3, "lick":1, "lick":1, "licker":2, "licker-in":2, "lickerish":3, "lickerishly":4, "lickerishness":4, "lickety-split":3, "lickety-split":3, "licking":2, "lickspit":2, "lickspittle":3, "licit":2, "licitly":3, "licorice":3, "lictor":2, "lictorian":4, "lid":1, "lidded":2, "liddell hart":3, "liddie":2, "liddiard":3, "lidie":2, "lidless":2, "lie":1, "lie":1, "lie detector":4, "lie-abed":2, "lie-by":1, "liebermann":3, "liebfrauenmilch":4, "liebfraumilch":3, "liebfraumilch":3, "liebknecht":2, "liechtenstein":3, "lied":1, "lieder":2, "lief":1, "liefly":2, "liege":1, "liegeman":2, "liegnitz":2, "lien":1, "lienable":3, "liestal":2, "lieu":1, "lieut":1, "lieutenant":3, "lieutenant colonel":5, "lieutenant commander":6, "lieutenant general":6, "lieutenant governor":6, "lieutenancy":4, "lieve":1, "liebig":2, "liederkranz":3, "liepor lepaya":5, "life":1, "life assurance":4, "life cycle":3, "life estate":3, "life expectancy":5, "life history":4, "life instinct":3, "life interest":4, "life jacket":3, "life preserver":4, "life science":3, "life table":3, "life-giving":2, "life-saver":2, "life-support system":4, "lifeblood":2, "lifeboat":2, "lifeboatman":3, "lifeful":2, "lifeguard":2, "lifeless":2, "lifelessly":3, "lifelessness":3, "lifelike":2, "lifelikeness":3, "lifeline":2, "lifelong":2, "lifesaver":3, "lifesaving":3, "lifetime":2, "lifework":2, "lifo":1, "lift":1, "liftable":3, "liftboy":2, "lifter":2, "lifting body":4, "liftman":2, "liftoff":2, "lifer":2, "liffey":2, "light":1, "light":1, "light engine":3, "light flyweight":3, "light heavyweight":4, "light into":3, "light meter":3, "light middleweight":4, "light music":3, "light opera":4, "light reaction":4, "light welterweight":4, "light-bearded":2, "light-fingered":2, "light-footed":2, "light-footedly":3, "light-footedness":3, "light-handed":2, "light-handedly":3, "light-handedness":3, "light-headed":2, "light-headedness":3, "light-hearted":2, "light-heartedly":3, "light-heartedness":3, "light-horseman":2, "light-minded":2, "light-mindedness":3, "lights":1, "lightboat":2, "lighted":2, "lighten":2, "lightener":3, "lightening":3, "lighter":2, "lighter than air":4, "lighter-than-air":2, "lighterage":3, "lighterman":3, "lightface":2, "lightfast":2, "lightfastness":3, "lightful":2, "lightfully":3, "lighthead":2, "lighthearted":3, "lightheartedly":4, "lightheartedness":4, "lighthouse":2, "lighthouses":3, "lighting":2, "lighting-up time":3, "lightish":2, "lightless":2, "lightlessness":3, "lightly":2, "lightness":2, "lightning":2, "lightning arrester":5, "lightning bug":3, "lightning conductor":5, "lightship":2, "lightsome":2, "lightsomely":3, "lightsomeness":3, "lightweight":2, "lightwood":2, "ligne":1, "lignaloes":3, "ligand":2, "ligament":3, "ligamental":4, "ligamentous":4, "ligamentously":5, "ligamentum":4, "ligative":3, "ligature":3, "ligatured":3, "ligaturing":4, "ligneous":3, "lignicolous":4, "lignin":2, "lignite":2, "lignitic":3, "lignivorous":4, "lignified":3, "lignification":5, "ligniform":3, "lignify":3, "lignifying":4, "lignocaine":3, "lignocellulose":5, "lignocellulosic":6, "lignum vitae":4, "ligonier":3, "ligroin":3, "ligroine":3, "ligule":2, "ligure":2, "ligula":3, "ligular":3, "ligulate":3, "ligulated":4, "liguloid":3, "like":1, "like-minded":2, "like-mindedly":3, "like-mindedness":3, "likeability":5, "likeable":3, "likeableness":4, "likelier":3, "likeliest":3, "likelihood":3, "likeliness":3, "likely":2, "likeness":2, "likewise":2, "likability":5, "likable":3, "likableness":4, "liken":2, "liker":2, "likest":2, "liking":2, "likker":2, "lille":1, "lilt":1, "lilburne":2, "lili":2, "lilied":2, "lilies":2, "lilith":2, "lilian":3, "liliaceous":4, "lilibel":3, "lilibell":3, "lilibelle":3, "lilienthal":4, "lilius":3, "lille b":3, "lilli":2, "lillie":2, "lillian":3, "lillibullero":5, "lilliput":3, "lilliputian":4, "lilliputian":5, "lillo":2, "lilly":2, "lilly-pilly":3, "lily":2, "lily":2, "lily iron":4, "lily pad":3, "lily-livered":3, "lily-trotter":3, "lily-white":2, "lilyan":2, "lilybelle":3, "lilylike":3, "limb":1, "limbed":1, "limbless":2, "lime":1, "lime burner":3, "limeade":2, "limehouse":2, "limekiln":2, "limeless":2, "limelight":2, "limelighter":3, "limelike":2, "limequat":2, "limestone":2, "limesulfur":3, "limesulphur":3, "limewater":3, "limewood":2, "limn":1, "limp":1, "limper":2, "limpingly":3, "limpkin":2, "limply":2, "limpness":2, "limpsey":2, "limpsy":2, "limacine":3, "limaon":4, "limbate":2, "limber":2, "limber up":3, "limberly":3, "limberneck":3, "limberness":3, "limbic":2, "limbic system":4, "limbo":2, "limbourg":2, "limburg":2, "limburger":3, "limbus":2, "limerick":3, "limerick":3, "limey":2, "limenia":4, "liming":2, "limit":2, "limit man":3, "limit point":3, "limitable":4, "limitableness":5, "limited":3, "limited company":6, "limited edition":6, "limited liability":8, "limited monarchy":6, "limitedly":4, "limitedness":4, "limiter":3, "limiting":3, "limitless":3, "limitlessly":4, "limitlessness":4, "limier":3, "limiest":3, "limina":3, "liminal":3, "liminess":3, "limitarian":5, "limitary":4, "limitation":4, "limitative":4, "limites":3, "limitrophe":3, "limmasol":3, "limmer":2, "limnaea":3, "limner":2, "limnetic":3, "limnologist":4, "limnology":4, "limnological":5, "limnologically":6, "limnoria":4, "limousine":3, "limonene":3, "limpet":2, "limpid":2, "limpidity":4, "limpidly":3, "limpidness":3, "limpopo":3, "limsy":2, "limuloid":3, "limulus":3, "limy":2, "lin":1, "lin":1, "lin piao":3, "linc":1, "linch":1, "linchpin":2, "lincs":1, "linctus":2, "lind":1, "lindsborg":2, "lindbergh":2, "lindesnes":3, "lindley":2, "lindsay":2, "lindsey":2, "lindwall":2, "line":1, "line breeding":3, "line drawing":3, "line islands":3, "line of battle":4, "line of credit":4, "line of scrimmage":4, "line of vision":4, "line printer":3, "line-casting":2, "line-engraving":3, "line-up":1, "lines":1, "linesman":2, "lineage":2, "lineable":3, "linebacker":3, "linebred":2, "linebreeding":3, "linecaster":3, "lineless":2, "linelike":2, "lineman":2, "lineup":2, "liney":2, "ling":1, "lingcod":2, "lingonberry":4, "link":1, "link motion":3, "link trainer":3, "linked":1, "links":1, "linkage":2, "linkboy":2, "linkman":2, "linkwork":2, "linn":1, "lins":1, "lint":1, "linter":2, "lintier":3, "lintiest":3, "lintless":2, "lintwhite":2, "linty":2, "linz":1, "linac":2, "linage":2, "linalol":3, "linalool":4, "linable":3, "linacre":3, "linalol":3, "lincoln":2, "lincoln green":3, "lincoln's inn":3, "lincolnesque":3, "lincolnian":4, "lincolniana":5, "lincolnshire":3, "lincolnton":3, "lincrusta":3, "linda":2, "lindane":2, "linden":2, "linden":2, "lindenhurst":3, "lindenwold":3, "lindelf":4, "lindenau":3, "lindi":2, "lindied":2, "lindisfarne":3, "lindon":2, "lindy":2, "lindy":2, "lindybeth":3, "lindying":3, "lindylou":3, "linen":2, "linen paper":4, "linenfold":3, "lineny":3, "liner":2, "lineage":3, "lineal":3, "lineally":4, "linear":3, "linear a":4, "linear accelerator":8, "linear b":4, "linear equation":6, "linear measure":5, "linear motor":5, "linear perspective":6, "linear programming":6, "linearise":4, "linearised":4, "linearising":5, "linearize":4, "linearized":4, "linearizing":5, "linearity":5, "linearization":6, "linearly":4, "lineate":3, "lineated":4, "lineament":4, "lineamental":5, "lineamentation":6, "lineation":4, "lineolate":4, "lineolated":5, "linga":2, "lingam":2, "lingayat":3, "lingayata":4, "lingayen gulf":4, "linger":2, "lingerer":3, "lingeringly":4, "lingerie":3, "lingo":2, "lingoe":2, "lingua":2, "lingua franca":4, "lingua franca":4, "lingual":2, "lingually":3, "linguist":2, "linguistic":3, "linguistic atlas":5, "linguistic borrowing":6, "linguistic geography":7, "linguistics":3, "linguistical":4, "linguistically":5, "linguistician":4, "linguiform":3, "linguini":3, "lingulate":3, "lingulated":4, "linhay":2, "lining":2, "linier":3, "liniest":3, "liniment":3, "linkping":4, "linkping":3, "linlithgow":3, "linnaean":3, "linnaeus":3, "linnet":2, "linnet":2, "linnete":2, "linnean":3, "linnhe":2, "linn":3, "linolenic acid":6, "linoleic":4, "linoleic acid":6, "linotype":3, "linotyped":3, "linotyping":4, "linotypist":4, "linsang":2, "linseed":2, "linseed oil":3, "linsey":2, "linsey-woolsey":3, "linstock":2, "lintel":2, "lintol":2, "linton":2, "linwood":2, "liny":2, "linyu":2, "liod":1, "liouville":2, "lip":1, "lip service":3, "lip-reading":2, "lipped":1, "lippmann":2, "lipscomb":2, "lipari islands":5, "lipchitz":2, "lipectomy":4, "lipizzaner":4, "lipless":2, "liplike":2, "lipmann":2, "lipoid":2, "lipoidal":3, "lipocaic":4, "lipochrome":3, "lipochromic":4, "lipocyte":3, "lipogram":3, "lipogrammatic":5, "lipogrammatism":5, "lipogrammatist":5, "lipographic":4, "lipolitic":4, "lipopectic":4, "lipopexia":5, "lipophilic":4, "lipoprotein":4, "lipotropic":4, "lippe":2, "lippen":2, "lipper":2, "lippershey":3, "lippi":2, "lippie":2, "lipping":2, "lippizzana":4, "lippizaner":4, "lippold":2, "lippy":2, "lipstick":2, "lipton":2, "liq":1, "liquefaction":4, "liquefactive":4, "liquefacient":4, "liquefied":3, "liquefied petroleum gas":8, "liquefiable":5, "liquefier":4, "liquefy":3, "liquefying":4, "liquid":2, "liquid air":3, "liquid crystal":4, "liquid crystal display":6, "liquid fire":3, "liquid glass":3, "liquid measure":4, "liquid oxygen":5, "liquid paraffin":5, "liquidambar":4, "liquidise":3, "liquidised":3, "liquidiser":4, "liquidising":4, "liquidize":3, "liquidized":3, "liquidizer":4, "liquidizing":4, "liquidly":3, "liquidness":3, "liquidate":3, "liquidated":4, "liquidating":4, "liquidation":4, "liquidator":4, "liquidus":3, "liquify":3, "liquor":2, "liquor up":3, "liquorish":3, "liquory":3, "liquorice":3, "lir":1, "liriodendron":5, "liripipe":3, "liripoop":3, "lis pendens":3, "lisle":1, "lisle":1, "lisp":1, "lisper":2, "lispingly":3, "list":1, "list":1, "lists":1, "listed":2, "listed building":4, "lister":2, "listing":2, "listless":2, "listlessly":3, "listlessness":3, "liszt":1, "lisbon":2, "lisboa":3, "lissajous figure":5, "lissom":2, "lissome":2, "lissomely":3, "lissomeness":3, "lissomly":3, "lissomness":3, "lissotrichous":4, "listel":2, "listen":2, "listen in":3, "listener":3, "listening post":4, "lister":2, "lister":2, "listerellosis":5, "listerise":3, "listerised":3, "listerism":3, "listerising":4, "listerize":3, "listerized":3, "listerizing":4, "listeria":4, "listeriasis":5, "listeriosis":5, "lit":1, "litb":1, "litchfield":2, "litd":1, "lith":1, "lith":1, "lithe":1, "lithely":2, "litheness":2, "lithesome":2, "litho":1, "lithog":1, "lithol":1, "litharge":2, "lither":2, "lithest":2, "lithic":2, "lithia":3, "lithia water":5, "lithically":4, "lithium":3, "lithium oxide":5, "litho":2, "lithoed":2, "lithoid":2, "lithos":2, "lithograph":3, "lithographic":4, "lithographically":6, "lithoing":3, "lithologic":4, "lithologically":6, "lithomarge":3, "lithometeor":5, "lithonephrotomy":6, "lithophane":3, "lithophile":3, "lithophone":3, "lithophyte":3, "lithophytic":4, "lithopone":3, "lithoprint":3, "lithoprinter":4, "lithosere":3, "lithosol":3, "lithosphere":3, "lithotomic":4, "lithotrite":3, "lithuanic":4, "lithuania":5, "lithuanian":5, "lithuresis":4, "lithy":2, "littb":1, "litany":3, "literal":3, "literal-minded":4, "literalise":4, "literalised":4, "literalism":4, "literalist":4, "literaliser":5, "literalising":5, "literalistic":5, "literalistically":7, "literalize":4, "literalized":4, "literalizer":5, "literalizing":5, "literality":5, "literalization":6, "literally":4, "literalness":4, "literarily":5, "literariness":5, "literary":4, "literary agent":6, "literate":3, "literately":4, "literated":4, "literating":4, "literacy":4, "literation":4, "literator":4, "literature":4, "literae humaniores":8, "literati":4, "literatim":4, "lititz":2, "litigant":3, "litigate":3, "litigated":4, "litigating":4, "litigable":4, "litigation":4, "litigator":4, "litmus":2, "litoral":3, "litten":2, "litter":2, "litter lout":3, "litterbug":3, "littery":3, "litteratim":4, "little":2, "little america":6, "little bear":3, "little belt":3, "little bighorn":4, "little corporal":5, "little dipper":4, "little diomede":5, "little dog":3, "little end":3, "little grebe":3, "little hours":3, "little john":3, "little magazine":5, "little man":3, "little office":4, "little owl":3, "little people":4, "little rock":3, "little russia":4, "little russian":4, "little slam":3, "little theatre":5, "little woman":4, "littler":2, "littlest":2, "littlestown":3, "littlefield":3, "littleneck":3, "littleness":3, "littleton":3, "littlish":2, "littoral":3, "littoria":3, "littrow":2, "littr":3, "littrateur":5, "littrateur":4, "liturgism":3, "liturgist":3, "liturgistic":4, "liturgy":3, "litui":3, "lituus":3, "litvinov":3, "lityerses":4, "live":1, "live centre":3, "live together":4, "live-bearer":2, "live-forever":3, "lived":1, "lives":1, "liveability":5, "liveable":3, "liveableness":4, "livebearer":3, "livelier":3, "liveliest":3, "livelihood":3, "livelily":3, "liveliness":3, "livelong":2, "lively":2, "liveness":2, "livestock":2, "liveware":2, "livability":5, "livable":3, "livableness":4, "liven":2, "livener":3, "liver":2, "liver extract":4, "liver fluke":3, "liver of sulphur":5, "liver salts":3, "liver sausage":4, "liver-rot":2, "liverberry":4, "liveried":3, "liveries":3, "liverish":3, "liverishness":4, "liverleaf":3, "liverless":3, "livermore":3, "liverpool":3, "liverpudlian":5, "liverwort":3, "liverwurst":3, "livery":3, "livery company":6, "livery stable":5, "liveryman":4, "livest":2, "livid":2, "lividly":3, "lividness":3, "living":2, "living death":3, "living fossil":4, "living picture":4, "living room":3, "living wage":3, "livingly":3, "livingness":3, "livingston":3, "livingstone":3, "livia":3, "livy":2, "lixivia":4, "lixiviate":4, "lixiviated":5, "lixiviating":5, "lixiviation":5, "lixivium":4, "lixiviums":4, "liz":1, "lizard":2, "lizard":2, "lizard fish":3, "lizard's-tail":2, "lizardfish":3, "lizardfishes":4, "lizbeth":2, "lizzie":2, "lizzie":2, "lizzy":2, "lia":2, "liaise":2, "liaison":3, "liam":2, "liane":2, "liar":2, "liard":2, "liard":2, "liards":2, "lias":2, "liassic":3, "liabilities":5, "liability":5, "liable":3, "liableness":4, "liana":3, "lianoid":3, "libau":2, "libation":3, "libation-bearers":4, "libational":4, "libationary":5, "libava":3, "libecchio":4, "libeccio":3, "libeccio":4, "libel":2, "libeled":2, "libelled":2, "libelant":3, "libelee":3, "libeler":3, "libeling":3, "libellant":3, "libellee":3, "libeller":3, "libelling":3, "libellous":3, "libellously":4, "libelous":3, "libelously":4, "liber":2, "liber":2, "liberalia":5, "libertas":3, "liberticide":4, "liberticidal":5, "libert":4, "liberec":3, "liberia":4, "liberius":4, "libia":2, "libidinal":4, "libidinally":5, "libidinous":4, "libidinously":5, "libidinousness":5, "libido":3, "libra":2, "libra":2, "libraries":3, "librarian":4, "librarianship":5, "library":3, "library edition":6, "library science":5, "librate":2, "librated":3, "librating":3, "libration":3, "librational":4, "libratory":4, "libretti":3, "librettist":3, "libretto":3, "librettos":3, "libreville":3, "libri":2, "libriform":3, "libral":4, "licence":2, "licenced":2, "licenceable":4, "licencing":3, "license":2, "license plate":3, "licensed":2, "licenseless":3, "licenser":3, "licensing":3, "licencee":3, "licensee":3, "licensor":3, "licentious":3, "licentiously":4, "licentiousness":4, "licentiate":4, "licentiateship":5, "licentiation":5, "licet":2, "licetus":3, "lichas":2, "lichee":2, "lichen":2, "lichenin":3, "lichenise":3, "lichenised":3, "lichenism":3, "lichenising":4, "lichenize":3, "lichenized":3, "lichenizing":4, "lichenification":6, "lichenlike":3, "lichenoid":3, "lichenologist":5, "lichenology":5, "lichenose":3, "lichenous":3, "lichenologic":5, "lichi":2, "licia":2, "licymnius":4, "lidias":2, "lidia":3, "lidice":3, "lido":2, "lido":2, "lidocaine":3, "liege":2, "lien":2, "lienal":3, "lienectomy":5, "lienitis":4, "lienteric":4, "lientery":4, "lier":2, "lierne":2, "liest":2, "lienal":3, "lietuva":4, "lifar":2, "ligan":2, "ligand":2, "ligate":2, "ligated":3, "ligating":3, "ligation":3, "ligeance":2, "liger":2, "ligeia":3, "ligeti":3, "liguria":4, "ligurian":4, "lihue":3, "likasi":3, "likin":2, "likoura":3, "likuta":3, "lila":2, "lila":2, "lilac":2, "lilac":2, "lilaceous":3, "lilienthal":3, "liliuokalani":7, "lilo":2, "lilongwe":3, "lima":2, "lima bean":3, "limassol":3, "limacon":3, "limen":2, "limens":2, "limes":2, "limicoline":4, "limicolous":4, "limoges":2, "limon":2, "limousin":3, "limonite":3, "limonitic":4, "limn":3, "lina":2, "linares":3, "linarite":3, "linetta":3, "linin":2, "lino":2, "lino tile":3, "linocut":3, "linoleate":4, "linoleum":4, "linotype":3, "linus":2, "linyphiid":4, "lion":2, "lion":2, "lion-hearted":3, "lions":2, "lioncel":3, "lionesque":3, "lioness":3, "lionet":3, "lionfish":3, "lionfishes":4, "lionheart":3, "lionhearted":4, "lionheartedly":5, "lionheartedness":5, "lionise":3, "lionised":3, "lioniser":4, "lionising":4, "lionize":3, "lionized":3, "lionizer":4, "lionizing":4, "lionization":5, "lionlike":3, "lionly":3, "liou":2, "lionel":3, "lipaemic":3, "lipaemia":4, "lipase":2, "lipetsk":2, "lipemic":3, "lipemia":4, "lipid":2, "lipide":2, "lipography":4, "lipolysis":4, "lipomatous":4, "lipotropism":4, "lipoma":3, "lipomas":3, "lipomata":4, "liquate":2, "liquated":3, "liquating":3, "liquation":3, "liquer":2, "liquesce":2, "liquescence":3, "liquescent":3, "liqueur":2, "liquidity":4, "liquidity preference":7, "liquidity ratio":7, "lira":2, "lire":2, "lirella":3, "lirellate":3, "lisa":2, "lise":2, "liselotte":4, "lisieux":2, "litae":2, "litas":2, "litchi":2, "liter":2, "lithaemic":3, "lithaemia":4, "lithemic":3, "lithemia":4, "lithiasis":4, "litho":2, "lithographer":4, "lithography":4, "lithoidal":3, "litholapaxy":5, "lithology":4, "lithotomist":4, "lithotomy":4, "lithotritist":4, "lithotrity":4, "lithuria":4, "litigious":3, "litigiously":4, "litigiousness":4, "litigiosity":6, "litotes":3, "litre":2, "litu":2, "liturgic":3, "liturgics":3, "liturgical":4, "liturgically":5, "liturgiologist":6, "liturgiology":6, "liturgiological":7, "livenza":3, "lividity":4, "livorno":3, "livonia":4, "livonian":4, "livraison":3, "livre":2, "liwn":3, "liza":2, "liza":2, "lige":3, "ljod":1, "ljubljana":3, "llandaf":2, "llandaff":2, "llandudno":3, "llanelli":3, "llanelly":3, "llanelly":3, "llanfairpwllgwyngyll":5, "llangollen":3, "llano":2, "llama":2, "llano":2, "llano estacado":6, "llb":1, "lld":1, "llewellyn":3, "lleyn peninsula":5, "llm":1, "lloyd":1, "lloyd's":1, "llud":1, "llyr":1, "lm/m":1, "loach":1, "load":1, "load displacement":4, "load factor":3, "load shedding":3, "loads":1, "loaded":2, "loader":2, "loading":2, "loading coil":3, "loadless":2, "loadstar":2, "loadstone":2, "loaf":1, "loafer":2, "loaferish":3, "loafishness":3, "loam":1, "loaminess":3, "loamless":2, "loamy":2, "loan":1, "loan collection":4, "loan translation":4, "loanable":3, "loanblend":2, "loaner":2, "loanin":2, "loaning":2, "loanshift":2, "loath":1, "loathe":1, "loather":2, "loathful":2, "loathing":2, "loathingly":3, "loathly":2, "loathness":2, "loathsome":2, "loathsomely":3, "loathsomeness":3, "loaves":1, "lob":1, "lobe":1, "lobed":1, "lobber":2, "lobbied":2, "lobbing":2, "lobby":2, "lobbyer":3, "lobbying":3, "lobbyism":3, "lobbyist":3, "loblolly":3, "loblolly boy":4, "lobscourse":2, "lobscouse":2, "lobster":2, "lobster newburg":4, "lobster pot":3, "lobster thermidor":5, "lobstering":3, "lobstick":2, "lobule":2, "lobular":3, "lobulate":3, "lobulated":4, "lobulation":4, "lobulus":3, "lobworm":2, "loch":1, "loche":1, "lochi":2, "lochinvar":3, "lochia":3, "lochus":2, "lock":1, "lock":1, "locke":1, "lockage":2, "lockable":3, "lockbox":2, "locker":2, "locker-lampson":3, "locket":2, "lockett":2, "lockean":3, "lockeanism":4, "lockhart":2, "lockie":2, "lockianism":4, "lockjaw":2, "lockland":2, "lockless":2, "locknut":2, "lockout":2, "lockport":2, "locksmith":2, "locksmithery":4, "locksmithing":3, "lockup":2, "locky":2, "lockyer":2, "locative":3, "locule":2, "locular":3, "loculate":3, "loculated":4, "loculation":4, "loculicidal":5, "loculicidally":6, "loculus":3, "locutory":4, "lod":1, "lode":1, "lodestar":2, "lodestone":2, "lodge":1, "lodge":1, "lodged":1, "lodgeable":3, "lodgement":2, "lodger":2, "lodging":2, "lodging house":3, "lodging turn":3, "lodgings":2, "lodgment":2, "lodicule":3, "loe":1, "loeb":1, "loeffler":2, "loellingite":3, "loewe":1, "loeing":2, "loewe":2, "loewi":2, "loewy":2, "lofn":1, "loft":1, "loftsman":2, "lofter":2, "lofting":2, "loftier":3, "loftiest":3, "loftily":3, "loftiness":3, "loftless":2, "lofty":2, "log":1, "log-log":1, "loge":1, "logaoedic":4, "logarithm":3, "logarithmic":4, "logarithmic function":6, "logarithmical":5, "logarithmically":6, "logbook":2, "logchip":2, "logger":2, "loggerhead":3, "loggerheaded":4, "loggia":2, "logging":2, "loggish":2, "logginess":3, "logic":2, "logic circuit":4, "logicless":3, "logia":3, "logical":3, "logical operation":7, "logical positivism":7, "logicality":5, "logically":4, "logicise":3, "logicised":3, "logicism":3, "logicising":4, "logicize":3, "logicized":3, "logicizing":4, "logion":3, "logjam":2, "loglog":2, "logo":2, "logorrhea":4, "logorrheic":4, "logorrhoea":4, "logos":2, "logos":2, "logogram":3, "logogrammatic":5, "logogrammatically":7, "logograph":3, "logographic":4, "logographically":6, "logogriph":3, "logogriphic":4, "logomach":3, "logomachic":4, "logopaedics":4, "logopedic":4, "logopedics":4, "logopedia":5, "logotype":3, "logotypy":4, "logperch":2, "logperches":3, "logroll":2, "logroller":3, "logrolling":3, "logship":2, "logway":2, "logwood":2, "lohrmann":2, "lohse":2, "loin":1, "loins":1, "loincloth":2, "loire":1, "loire-atlantique":3, "loire-infrieure":4, "loiret":2, "loiter":2, "loiterer":3, "loiteringly":4, "lok sabha":3, "loll":1, "loller":2, "lollingly":3, "lolland":2, "lollard":2, "lollardism":3, "lollardry":3, "lollardy":3, "lollapaloosa":5, "lollapalooza":5, "lollingite":3, "lollipop":3, "lollop":2, "lolly":2, "lolly water":4, "lollygag":3, "lollygagged":3, "lollygagging":4, "lollypop":3, "lombard":2, "lombard street":3, "lombardy":3, "lombardy poplar":5, "lombardic":3, "lombok":2, "lombrosian":4, "lombroso":3, "lone":1, "lonelier":3, "loneliest":3, "lonelihood":3, "lonelily":3, "loneliness":3, "lonely":2, "lonely heart":3, "loneness":2, "lonesome":2, "lonesomely":3, "lonesomeness":3, "long":1, "long":1, "long eaton":3, "long hundredweight":4, "long island":3, "long jenny":3, "long measure":3, "long metre":3, "long parliament":4, "long primer":3, "long vacation":4, "long-dated":2, "long-distance":2, "long-headed":2, "long-headedness":3, "long-horned beetle":3, "long-livedness":2, "long-playing":2, "long-sighted":2, "long-sightedness":3, "long-standing":2, "long-sufferance":3, "long-suffering":3, "long-term memory":4, "long-waisted":2, "long-winded":2, "long-windedly":3, "long-windedness":3, "long-wire aerial":4, "longe":1, "longeing":2, "longs":1, "longbeard":2, "longbenton":3, "longboat":2, "longbow":2, "longcase clock":3, "longcloth":2, "longer":2, "longfellow":3, "longford":2, "longhair":2, "longhand":2, "longhead":2, "longheaded":3, "longheadedly":4, "longheadedness":4, "longhorn":2, "longhorn":2, "longies":2, "longing":2, "longingly":3, "longingness":3, "longish":2, "longleaf pine":3, "longly":2, "longness":2, "longship":2, "longshore":2, "longshore drift":3, "longshoreman":3, "longsleever":3, "longsome":2, "longsomely":3, "longsomeness":3, "longspur":2, "longstanding":3, "longstreet":2, "longtime":2, "longview":2, "longwall":2, "longways":2, "longwise":2, "longworth":2, "longyearbyen":3, "lons-le-saunier":2, "london":2, "london pride":3, "londonderry":4, "londoner":3, "londonesque":3, "londonish":3, "londony":3, "londres":2, "londrina":3, "loner":2, "longa":2, "longan":2, "longanamous":4, "longanimity":5, "longevity":4, "longeron":3, "longevous":3, "longinean":4, "longicaudal":4, "longicaudate":4, "longicorn":3, "longinus":3, "longitude":3, "longitudinal":5, "longitudinal wave":6, "longitudinally":6, "longobard":3, "longomontanus":5, "longueuil":2, "longueur":2, "longus":2, "loni":2, "lonie":2, "lonnie":2, "lonny":2, "lonzie":2, "lonzo":2, "loo":1, "loof":1, "look":1, "look after":3, "look forward to":4, "look over":3, "look-alike":2, "look-in":1, "look-up":1, "lookdown":2, "lookee":2, "looker":2, "looker-on":2, "lookers-on":2, "looking glass":3, "looking-glass":2, "lookout":2, "looky":2, "loom":1, "looming":2, "loon":1, "looney":2, "loonies":2, "loonier":3, "looniest":3, "looniness":3, "loony":2, "loony bin":3, "loop":1, "loop aerial":4, "looped":1, "looper":2, "loophole":2, "loopholed":2, "loopholing":3, "loopier":3, "loopiest":3, "loopy":2, "loos":1, "loose":1, "loose cover":3, "loose order":3, "loose-fitting":2, "loose-footed":2, "loose-jointed":2, "loosebox":2, "loosely":2, "looseness":2, "loosestrife":2, "loosen":2, "loosener":3, "looser":2, "loosest":2, "loosing":2, "loot":1, "looter":2, "looby":2, "looey":2, "loofa":2, "loofah":2, "loogootee":3, "looie":2, "looing":2, "lookum":2, "lop":1, "lope":1, "lophobranch":3, "lophobranchiate":5, "lophodont":3, "lophophore":3, "loper":2, "loping":2, "lopolith":3, "lopper":2, "lopping":2, "loppier":3, "loppy":2, "lopseed":2, "lopsided":3, "lopsidedly":4, "lopsidedness":4, "lopstick":2, "loq":1, "lor":1, "lord":1, "lord":1, "lord advocate":4, "lord chamberlain":4, "lord chancellor":4, "lord chief justice":4, "lord high chancellor":5, "lord lieutenant":4, "lord mayor":3, "lord of appeal":4, "lord of misrule":4, "lord privy seal":4, "lord protector":4, "lord provost":3, "lord's":1, "lord's supper":3, "lord's table":3, "lord-in-waiting":2, "lords":1, "lords spiritual":5, "lords temporal":4, "lords-and-ladies":2, "lords-and-laladies":3, "lords-in-waiting":2, "lordsburg":2, "lording":2, "lordless":2, "lordlike":2, "lordlily":2, "lordling":2, "lordlier":3, "lordliest":3, "lordliness":3, "lordly":2, "lordship":2, "lordship":2, "lordy":2, "lore":1, "loreless":2, "lorn":1, "lornness":2, "lorca":2, "lordotic":3, "lordosis":3, "loren":2, "lorelei":3, "lorgnette":2, "lorgnon":2, "loricate":3, "loricated":4, "lorication":4, "lorikeet":3, "lorimer":3, "loriner":3, "lorna":2, "lorrain":2, "lorraine":2, "lorraine cross":3, "lorrie":2, "lorris":2, "lorry":2, "los angeles":4, "lose":1, "loss":1, "loss leader":3, "loss ratio":4, "lost":1, "lost generation":5, "losable":3, "losableness":4, "loser":2, "losing":2, "losings":2, "losingly":3, "lossy":2, "lot":1, "lot":1, "lot-et-garonne":2, "lote":1, "loth":1, "lothly":2, "lothsome":2, "lots":1, "lotta":2, "lotte":2, "lotted":2, "lotter":2, "lotteries":3, "lottery":3, "lottie":2, "lotting":2, "lotto":2, "lou":1, "louche":1, "loud":1, "loud-hailer":2, "louden":2, "loudish":2, "loudly":2, "loudmouth":2, "loudmouthed":2, "loudness":2, "loudspeaker":3, "loudspeaker van":4, "lough":1, "loughborough":3, "louis-ferdinand":3, "loun":1, "lounge":1, "lounge lizard":3, "lounger":2, "lounging":2, "loungingly":3, "loungy":2, "lounsbury":3, "loup":1, "loup-garou":2, "loupe":1, "loups-garous":2, "loupcervier":3, "louping ill":3, "lour":1, "lourdes":1, "louring":2, "louringly":3, "louringness":3, "loury":2, "louse":1, "lousewort":2, "lousier":3, "lousiest":3, "lousily":3, "lousiness":3, "lousy":2, "lout":1, "louth":1, "loutish":2, "loutishly":3, "loutishness":3, "louys":1, "loudon":2, "loudonville":3, "louella":3, "louhi":2, "louie":2, "louie":2, "louis":2, "louis":2, "louis d'or":3, "louis i":3, "louis ii":3, "louis iv":3, "louis ix":3, "louis napoleon":6, "louis philippe":4, "louis quatorze":4, "louis quinze":3, "louis seize":3, "louis treize":3, "louis v":3, "louis xi":3, "louis xii":3, "louis xiii":3, "louis xiv":3, "louis xvi":3, "louis xvii":3, "louis xviii":3, "louise":2, "louisbourg":3, "louisburg":3, "louisville":3, "louisvillian":4, "louisa":3, "louisette":3, "louisiana":5, "louisiana purchase":7, "louisianan":5, "louisianian":6, "lourenco marques":5, "loutrophoros":4, "louvain":2, "louvar":2, "louver":2, "louvered":2, "louvertie":3, "louvre":2, "louvre":2, "louvred":2, "love":1, "love":1, "love affair":3, "love apple":3, "love letter":3, "love potion":3, "love-entangle":3, "love-entangled":3, "love-in-idleness":3, "love-lies-bleeding":2, "love-making":2, "loveability":5, "loveable":3, "loveableness":4, "loveably":3, "lovebird":2, "lovegrass":2, "lovelace":2, "loveland":2, "loveless":2, "lovelessly":3, "lovelessness":3, "lovelier":3, "loveliest":3, "lovelily":3, "loveliness":3, "lovelock":2, "lovelorn":2, "lovelornness":3, "lovely":2, "lovemaking":3, "lovesick":2, "lovesickness":3, "lovesome":2, "lovage":2, "lovat":2, "lovability":5, "lovable":3, "lovableness":4, "lovably":3, "lovell":2, "lover":2, "lover":2, "loverless":3, "loverlike":3, "loverly":3, "lovey":2, "lovey-dovey":3, "lovie":2, "loving":2, "loving cup":3, "loving-kindness":3, "lovingly":3, "lovingness":3, "lovington":3, "low":1, "low":1, "low archipelago":6, "low comedy":4, "low countries":3, "low explosive":4, "low frequency":4, "low german":3, "low latin":3, "low profile":3, "low relief":3, "low sunday":3, "low water":3, "low-level language":4, "low-minded":2, "low-mindedly":3, "low-mindedness":3, "low-pass filter":3, "low-pressure":2, "low-spirited":3, "low-spiritedness":4, "low-tension":2, "low-voltage":2, "low-water":2, "low-water mark":3, "lowe":1, "lowes":1, "lowestoft":2, "lowl":1, "lown":1, "lowndes":1, "lowse":1, "lowser":2, "lowsest":2, "lowsing":2, "lowan":2, "lowball":2, "lowborn":2, "lowboy":2, "lowbred":2, "lowbrow":2, "lowbrowism":3, "lowcased":2, "lowcasing":3, "lowdown":2, "lowell":2, "lower":2, "lower":2, "lower austria":5, "lower burma":4, "lower california":6, "lower canada":5, "lower case":3, "lower chamber":4, "lower class":3, "lower criticism":5, "lower deck":3, "lower egypt":4, "lower house":3, "lower hutt":3, "lower lakes":3, "lower mordent":4, "lower palaeolithic":7, "lower palatinate":6, "lower regions":4, "lower saxony":5, "lower world":3, "lower-case":2, "lowerable":4, "lowerclassman":4, "lowering":3, "loweringly":4, "lowermost":3, "lowery":3, "lowest common denominator":9, "lowest common multiple":7, "lowing":2, "lowish":2, "lowland":2, "lowland":2, "lowlands":2, "lowlander":3, "lowlife":2, "lowlier":3, "lowliest":3, "lowlihead":3, "lowlily":3, "lowliness":3, "lowly":2, "lowness":2, "lowry":2, "lowsening":3, "lowveld":2, "lowville":2, "lox":1, "loxias":3, "loxodromy":4, "loxodont":3, "loxodrome":3, "loxodromic":4, "loxodromics":4, "loxodromical":5, "loxodromically":6, "loy":1, "loyce":1, "loyde":1, "loyal":2, "loyalism":3, "loyalist":3, "loyalist":3, "loyally":3, "loyalness":3, "loyalty":3, "loyola":3, "lozenge":2, "lozenged":2, "lozengy":3, "loanda":3, "loaiasis":5, "lobar":2, "lobate":2, "lobately":3, "lobated":3, "lobachevsky":4, "lobation":3, "lobectomy":4, "lobelia":3, "lobengula":4, "lobeline":3, "lobelia":4, "lobeliaceous":5, "lobito":3, "lobo":2, "lobose":2, "lobotomy":4, "lobola":3, "lobolo":3, "lobus":2, "loca":2, "local":2, "local anaesthetic":6, "local authority":6, "local color":4, "local examinations":7, "local government":5, "local option":4, "local oscillator":6, "local time":3, "locale":2, "localise":3, "localised":3, "localism":3, "localist":3, "localiser":4, "localising":4, "localistic":4, "localize":3, "localized":3, "localizable":5, "localizer":4, "localizing":4, "localisation":5, "locality":4, "localization":5, "locally":3, "localness":3, "locarno":3, "locate":2, "locatable":4, "located":3, "locater":3, "locating":3, "location":3, "locator":3, "lochia":3, "lochia":3, "lochial":3, "loci":2, "loco":2, "loco disease":4, "locoed":2, "locofoco":4, "locofocoism":5, "locoing":3, "locoism":3, "locoman":3, "locomobile":4, "locomobility":6, "locomotion":4, "locomotive":4, "locomotively":5, "locomotiveness":5, "locomotivity":6, "locomotor":4, "locomotor ataxia":8, "locomotory":5, "locoweed":3, "locris":2, "locrian":3, "locrus":2, "locum":2, "locum tenens":4, "locum-tenency":4, "locus":2, "locus classicus":5, "locus sigilli":5, "locus standi":4, "locust":2, "locust bird":3, "locustlike":3, "locusta":3, "locustal":3, "locution":3, "locutoria":5, "locutorium":5, "loden":2, "lodi":2, "lodovico":4, "loess":2, "loessal":3, "loessial":4, "lofoten and vester'":7, "logan":2, "logan":2, "logansport":3, "loganberry":4, "loganiaceous":5, "logi":2, "logistic":3, "logistics":3, "logistical":4, "logistically":5, "logistician":4, "logia":3, "logician":3, "logier":3, "logiest":3, "logily":3, "loginess":3, "logion":3, "logo":2, "logographer":4, "logography":4, "logomachist":4, "logomachy":4, "logos":2, "logrono":3, "logroo":4, "logy":2, "lohengrin":3, "lois":2, "loiasis":4, "loja":2, "lokacara":4, "lokayata":4, "lokayatika":5, "loki":2, "lokris":2, "lola":2, "loleta":3, "lolita":3, "lom":2, "loma":2, "lomax":2, "loment":2, "lomentlike":3, "lomentaceous":4, "lomentum":3, "lomond":2, "lom":3, "loney":2, "lonicera":4, "lopatnikov":4, "lope":2, "lope de vega":5, "lophophoral":4, "lophobranch":3, "lophophore":3, "loquacity":4, "loquat":2, "loquacious":3, "loquaciously":4, "loquaciousness":4, "loquitur":3, "lora":2, "lorain":2, "loraine":2, "loral":2, "loral":2, "loran":2, "lorado":3, "lore":2, "lorelle":2, "lorella":3, "loren":2, "lorence":2, "lorentz":2, "lorenz":2, "lorenzetti":4, "lorenzo":3, "lorette":2, "loretta":3, "lorelei":3, "lorena":3, "lorestan":3, "lorient":2, "lorin":2, "loring":2, "loris":2, "lorica":3, "lorus":2, "lory":2, "losel":2, "losey":2, "lota":2, "lotah":2, "lotha":2, "lothair i":3, "lothair ii":3, "lothar":2, "lothario":4, "lotharios":4, "lothian region":5, "lothians":3, "lothringen":3, "loti":2, "lotic":2, "lotion":2, "lotis":2, "lotophagi":4, "lotos":2, "lotus":2, "lotus":2, "lotus position":5, "lotus-eater":3, "lotuses":3, "lotze":2, "loyang":2, "loz":2, "lozi":2, "lozre":3, "lpg":1, "lsd":1, "lsd":1, "lsd":1, "lsi":1, "ltd":1, "lube":1, "lubber":2, "lubber line":3, "lubber's hole":3, "lubberliness":4, "lubberly":3, "lubbock":2, "lubricant":3, "luce":1, "luce":1, "luck":1, "luckie":2, "luckies":2, "luckier":3, "luckiest":3, "luckily":3, "luckiness":3, "luckless":2, "lucklessly":3, "lucklessness":3, "lucknow":2, "lucky":2, "lucky":2, "lucky dip":3, "lucca":2, "lucrative":3, "lud":1, "ludd":1, "luddism":2, "luddite":2, "ludditism":3, "ludington":3, "ludlow":2, "ludwig":2, "ludwigsburg":3, "ludwigshafen":4, "luebke":2, "luening":2, "luff":1, "luftwaffe":3, "luffa":2, "lufkin":2, "lug":1, "lug":1, "luge":1, "luggage":2, "luggage van":3, "luggageless":3, "lugger":2, "luggie":2, "lugging":2, "lugnasad":3, "lugsail":2, "lugworm":2, "luik":1, "luichow peninsula":6, "luke":1, "lukewarm":2, "lukewarmth":2, "lukewarmly":3, "lukewarmness":3, "luks":1, "lull":1, "lullabied":3, "lullaby":3, "lullaby":3, "lullabying":4, "luller":2, "lullingly":3, "lulli":2, "lully":2, "lump":1, "lumpen":2, "lumper":2, "lumpfish":2, "lumpfishes":3, "lumpingly":3, "lumpish":2, "lumpishly":3, "lumpishness":3, "lumpier":3, "lumpiest":3, "lumpily":3, "lumpiness":3, "lumpsucker":3, "lumpy":2, "lumpy jaw":3, "lumbar":2, "lumbar puncture":4, "lumbago":3, "lumber":2, "lumberer":3, "lumbering":3, "lumberingly":4, "lumberingness":4, "lumberjack":3, "lumberjacket":4, "lumberless":3, "lumberly":3, "lumberman":3, "lumbermill":3, "lumberton":3, "lumberyard":3, "lumbosacral":4, "lumbrical":3, "lumbricalis":4, "lumbricoid":3, "lumme":2, "lummox":2, "lummy":2, "lumpen":2, "lumpenproletariat":7, "lumper":2, "lunch":1, "luncheon":2, "luncheon meat":3, "luncheon voucher":4, "luncheonette":3, "luncheonless":3, "luncher":2, "lunchhook":2, "lunchless":2, "lunchroom":2, "lunchtime":2, "lund":1, "lundberg":2, "lune":1, "lunes":1, "lung":1, "lunge":1, "lunger":2, "lungfish":2, "lungfishes":3, "lunging":2, "lungki":2, "lungworm":2, "lungwort":2, "lunkhead":2, "lunkheaded":3, "luns":1, "lunt":1, "lunt":1, "lundy":2, "lundy's lane":3, "lungan":2, "lungee":2, "lungeous":2, "lungi":2, "lungyi":2, "lunies":2, "lunier":3, "luniest":3, "luny":2, "lupe":1, "lur":1, "lurch":1, "lurcher":2, "lurchingly":3, "lure":1, "lurement":2, "lurk":1, "lurker":2, "lurkingly":3, "lurdan":2, "lurer":2, "luring":2, "luringly":3, "lurlei":2, "lurline":2, "lurton":2, "lurat":3, "lush":1, "lushier":3, "lushiest":3, "lushly":2, "lushness":2, "lushy":2, "lust":1, "lustful":2, "lustfully":3, "lustfulness":3, "lustier":3, "lustiest":3, "lustihood":3, "lustily":3, "lustiness":3, "lusty":2, "luscious":2, "lusciously":3, "lusciousness":3, "luster":2, "lustered":2, "lusterer":3, "lustering":3, "lusterless":3, "lusterware":3, "lustral":2, "lustrate":2, "lustrated":3, "lustrating":3, "lustration":3, "lustrative":3, "lustre":2, "lustred":2, "lustreless":3, "lustreware":3, "lustring":2, "lustrous":2, "lustrously":3, "lustrousness":3, "lustrum":2, "lutcher":2, "lute":1, "lutestring":2, "luth":1, "luted":2, "luting":2, "lutist":2, "lutyens":2, "lux":1, "lux":1, "luxe":1, "luxate":2, "luxated":3, "luxating":3, "luxation":3, "luxembourg":3, "luxemburg":3, "luxor":2, "luxulianite":4, "luxullianite":4, "luxuriance":4, "luxuriant":4, "luxuriantly":5, "luxuriate":4, "luxuriated":5, "luxuriating":5, "luxuriation":5, "luxurious":4, "luxuriously":5, "luxuriousness":5, "luxury":3, "luang prabang":4, "luanne":2, "luanda":3, "luau":2, "lualaba":4, "luba":2, "lubiniezky":4, "lubitsch":2, "lublin":2, "lubra":2, "lubric":2, "lubricity":4, "lubricant":3, "lubricate":3, "lubricated":4, "lubricating":4, "lubrication":4, "lubricational":5, "lubricative":4, "lubricator":4, "lubricatory":5, "lubricious":3, "lubriciously":4, "lubricous":3, "lubritorium":5, "lubumbashi":4, "luca":2, "lucan":2, "lucarne":2, "lucas":2, "lucas van leyden":5, "lucania":4, "lucelle":2, "lucence":2, "lucent":2, "lucently":3, "lucency":3, "lucern":2, "lucerne":2, "lucerne":2, "luces":2, "lucia":2, "lucian":2, "lucid":2, "lucidity":4, "lucidly":3, "lucidness":3, "lucien":2, "luciferase":4, "luciferin":4, "luciferous":4, "lucile":2, "lucille":2, "lucilius":4, "lucinda":3, "lucite":2, "lucius":2, "lucia":3, "lucian":3, "lucianne":3, "lucida":3, "lucifer":3, "lucifer":3, "lucila":3, "lucina":3, "lucrative":3, "lucratively":4, "lucrativeness":4, "lucre":2, "lucretia":3, "lucretian":3, "lucretius":3, "lucretia":4, "lucretius":4, "lucrezia":3, "lucullan":3, "lucullean":4, "lucullus":3, "lucubrate":3, "lucubrated":4, "lucubrating":4, "lucubration":4, "lucubrator":4, "lucubratory":5, "luculent":3, "luculently":4, "lucy":2, "ludendorff":3, "ludhiana":4, "ludie":2, "ludicrous":3, "ludicrously":4, "ludicrousness":4, "ludo":2, "ludovico":4, "luella":3, "lues":2, "luetic":3, "luetically":5, "lugansk":2, "luganda":3, "luger":2, "lugo":2, "lugones":3, "lugubriosity":6, "lugubrious":4, "lugubriously":5, "lugubriousness":5, "luis":2, "luigi":3, "luk":2, "lukacs":2, "lukan":2, "lukas":2, "lula":2, "lulab":2, "lulav":2, "lulavim":3, "lulabim":3, "lulea":3, "luli":2, "lulie":2, "luling":2, "lulu":2, "luluabourg":3, "luluabourg":4, "lumen":2, "lumen":2, "lumen-hour":2, "lumens":2, "lumiere":2, "lumine":2, "lumined":2, "lumining":3, "lumisterol":4, "lumisterol":4, "lumire":3, "lumina":3, "luminal":3, "luminance":3, "luminaries":4, "luminary":4, "luminesce":3, "luminesced":3, "luminescing":4, "luminescence":4, "luminescent":4, "luminiferous":5, "luminosity":5, "luminous":3, "luminous efficacy":7, "luminous efficiency":7, "luminous energy":6, "luminous exitance":6, "luminous flux":4, "luminous intensity":7, "luminously":4, "luminousness":4, "luminophor":4, "luminophore":4, "lumumba":3, "luna":2, "luna moth":3, "lunar":2, "lunar caustic":4, "lunar eclipse":4, "lunar module":4, "lunar month":3, "lunar year":3, "lunarian":4, "lunate":2, "lunately":3, "lunated":3, "lunatical":4, "lunatically":5, "lunacy":3, "lunatic":3, "lunatic asylum":6, "lunatic fringe":4, "lunation":3, "lunette":2, "lunetta":3, "lunik":2, "lunisolar":4, "lunitidal":4, "lunitidal interval":7, "lunule":2, "lunula":3, "lunular":3, "lunulate":3, "lunulated":4, "lunville":4, "lunville":3, "luo":2, "lupercalia":5, "lupercalian":5, "lupercalias":5, "lupercus":3, "lupin":2, "lupine":2, "lupous":2, "lupoma":3, "lupus":2, "lupus":2, "lupus erythematosus":8, "lupus vulgaris":5, "lupulin":3, "lupulone":3, "lura":2, "luray":2, "lurex":2, "lurid":2, "luridly":3, "luridness":3, "luristan":3, "lusaka":3, "lusatian":3, "lusatia":4, "lusatian":4, "lusia":3, "lusitania":5, "lusitanian":5, "lusus naturae":5, "lutanist":3, "lutanist":3, "luteal":3, "lutecium":4, "lutein":3, "luteinize":4, "luteinized":4, "luteinizing":5, "luteinizing hormone":7, "luteinization":6, "lutenist":3, "lutenist":3, "luteous":3, "luteolin":4, "luteotrophic":5, "luteotropic":5, "luteotrophin":5, "luteotropin":5, "lutetia":3, "lutetia parisiorum":8, "lutetium":4, "luther":2, "luthern":2, "lutheran":3, "lutheranism":4, "lutherism":3, "luthuli":3, "lutine bell":3, "luton":2, "lutose":2, "lutoslawski":4, "lutuamian":5, "lutyens":2, "luverne":2, "luwian":3, "luzern":2, "luzerne":2, "luzon":2, "lvov":1, "lwl":1, "lwl":1, "lwm":1, "lwm":1, "lwoff":1, "lxx":1, "lyautey":2, "lych":1, "lychnis":2, "lychnoscope":3, "lychnoscopic":4, "lycaonia":5, "lycidas":3, "lyddite":2, "lydda":2, "lydgate":2, "lydia":3, "lydian":3, "lye":1, "lyle":1, "lyly":2, "lymph":1, "lymington":3, "lymphad":2, "lymphadenitis":5, "lymphadenoma":5, "lymphadenomas":5, "lymphadenomata":6, "lymphangitides":5, "lymphangial":4, "lymphangiitis":5, "lymphangiomatous":6, "lymphangioma":5, "lymphangiomas":5, "lymphangiomata":6, "lymphangitis":4, "lymphatic":3, "lymphatic system":5, "lymphatically":5, "lymphatolysis":5, "lymphatolytic":5, "lymphoid":2, "lymphoidocyte":4, "lymphoadenoma":6, "lymphoblast":3, "lymphoblastic":4, "lymphocyte":3, "lymphocytic":4, "lymphocytotic":5, "lymphocytosis":5, "lymphogranuloma":6, "lymphogranulomas":6, "lymphogranulomata":7, "lymphogranulomatosis":8, "lymphoma":3, "lymphomatoid":4, "lymphopenia":5, "lymphopoiesis":5, "lymphosarcoma":5, "lynch":1, "lynch":1, "lynchburg":2, "lyncher":2, "lynchet":2, "lynching":2, "lyndhurst":2, "lynn":1, "lynx":1, "lynx":1, "lynxes":2, "lynxlike":2, "lynbrook":2, "lyncean":3, "lynchet":2, "lynda":2, "lynden":2, "lyndon":2, "lyndora":3, "lynette":2, "lyngi":2, "lynwood":2, "lyon":1, "lyonnais":2, "lyre":1, "lyrebird":2, "lyric":2, "lyrism":2, "lyrist":2, "lyrical":3, "lyrically":4, "lyricalness":4, "lyricise":3, "lyricised":3, "lyricism":3, "lyricist":3, "lyricising":4, "lyricize":3, "lyricized":3, "lyricizing":4, "lyricization":5, "lys":1, "lyse":1, "lysing":2, "lysias":3, "lyssa":2, "lyssophobia":5, "lytham saint anne's":4, "lythraceous":3, "lytic":2, "lytta":2, "lyttae":2, "lyttas":2, "lytton":2, "lyubertsy":3, "lyublin":2, "lyaeus":3, "lyall":2, "lyallpur":3, "lyam-hound":2, "lyard":2, "lyart":2, "lyc":2, "lycaeus":3, "lycanthrope":3, "lycanthropic":4, "lycanthropy":4, "lycaon":3, "lyceum":3, "lyceum":3, "lychee":2, "lycine":2, "lycia":3, "lycian":3, "lycon":2, "lycomedes":4, "lycophron":3, "lycopod":3, "lycopodium":5, "lycosid":3, "lycotherses":4, "lycurgus":3, "lycus":2, "lyce":3, "lyell":2, "lygaeid":3, "lygodesma":4, "lying":2, "lying-in":2, "lyingly":3, "lyman":2, "lynen":2, "lyolysis":4, "lyon":2, "lyons":2, "lyonnais":3, "lyonnaise":3, "lyonnesse":3, "lyophilise":4, "lyophilize":4, "lyophilized":4, "lyophilizing":5, "lyophilization":6, "lyocratic":4, "lyolytic":4, "lyonais":3, "lyophilic":4, "lyophobic":4, "lyotropic":4, "lyra":2, "lyra viol":4, "lyrate":2, "lyrately":3, "lyrated":3, "lyriform":3, "lyrus":2, "lysander":3, "lysandra":3, "lysenko":3, "lysenkoism":4, "lysergic acid":5, "lysergic acid diethylamide":10, "lysimachus":4, "lysimeter":4, "lysin":2, "lysine":2, "lysippe":3, "lysippus":3, "lysis":2, "lysistrata":4, "lysol":2, "lysosome":3, "lysozyme":3, "lytle":2, "lszl":4, "lzaro":4, "lndler":3, "lger":3, "lon":3, "locadia":5, "lopoldville":5, "lrida":4, "lpez":3, "lffler":3, "lllingite":4, "lnnrot":3, "lbke":3, "ltzen":3, "lbeck":3, "lderitz":4, "lbeck":2, "ldenscheid":3, "lderitz":3, "lger":2, "ller":2, "lman":2, "lneburg":3, "lnos":2, "lopoldville":4, "lrida":3, "lvos":2, "lwe":2, "lzen":2, "lzow-holm bay":3, "m'naghten rules":3, "m-1 rifle":3, "m-16":1, "m-day":1, "m-line":1, "m-rna":1, "m-series":2, "ma'am":1, "maar":1, "maas":1, "maastricht":2, "maarianhamina":6, "mab":1, "mabinogion":5, "mac":1, "mac":1, "macc":1, "mace":1, "mace":1, "maced":1, "macebearer":3, "mach":1, "mach":1, "mach number":3, "machtpolitik":4, "machabees":3, "machen":2, "machiavelian":6, "machiavelli":5, "machiavellism":5, "machiavellian":6, "machiavellianism":7, "machiavellianly":7, "machinate":3, "machinated":4, "machinating":4, "machination":4, "machinator":4, "machmeter":3, "machzor":2, "machzors":2, "machzorim":3, "machzr":3, "mack":1, "mackerel":2, "mackerel breeze":3, "mackerel shark":3, "mackerel sky":3, "mackensen":3, "mackerel":3, "mackintosh":3, "mackintosh":3, "mackintoshed":3, "mackinac":3, "mackinaw":3, "mackinaw coat":4, "mackinawed":3, "mackle":2, "macroclimate":2, "macadam":3, "macadamise":4, "macadamize":4, "macarthur":3, "macadamia":5, "macareus":3, "macaronic":4, "macaronically":6, "macaroon":3, "macaroni":4, "macaroni cheese":5, "macbeth":2, "maccabaeus":4, "maccabaw":3, "maccabees":3, "maccabean":4, "maccaboy":3, "maccaroni":4, "macclesfield":3, "maccoboy":3, "macdonald":3, "macdonald":3, "macdonnell ranges":4, "macdonough":3, "macdowell":3, "macer":2, "macerate":3, "macerater":4, "maceration":4, "macerative":4, "macerator":4, "macedon":3, "macedonia":5, "macedonian":5, "macfarlane":3, "macfarlane":3, "macintosh":3, "macintosh":3, "maciver":3, "mackay":2, "mackenzie":3, "mackerras":3, "mackinlay":3, "maclaurin's series":5, "maclean":2, "maclear":2, "macleish":2, "macleod":2, "macmahon":3, "macmahon":3, "macmillan":3, "macmonnies":3, "macneice":2, "macpherson":3, "macquarie'":3, "macram":3, "macready":3, "macrencephaly":5, "macrencephalia":6, "macro":2, "macro instruction":5, "macropodous":4, "macropterous":4, "macroptery":4, "macroptic":3, "macrobiotic":5, "macrobiotics":5, "macrobiotically":7, "macrocarpous":4, "macrocephalus":5, "macrocephaly":5, "macrocephalia":6, "macroclimate":4, "macroclimatic":5, "macroclimatically":7, "macroclimatology":7, "macrocosm":3, "macrocyst":3, "macrocyte":3, "macrocytic":4, "macrocytosis":5, "macrodome":3, "macrodont":3, "macrodontism":4, "macrodontia":4, "macrodontic":4, "macroevolution":6, "macroeconomics":6, "macrogamete":4, "macrograph":3, "macrographic":4, "macrolecithal":5, "macrolinguistic":5, "macrolinguistics":5, "macrolinguistically":7, "macrolith":3, "macrometeorological":9, "macromole":3, "macromolecule":5, "macromolecular":6, "macronuclear":5, "macronucleate":5, "macronucleus":5, "macronutrient":5, "macrophage":3, "macrophysics":4, "macroscopic":4, "macroscopically":6, "macrospore":3, "macrosporic":4, "macrosporangium":6, "macrostomatous":5, "macrostomia":5, "macrostructure":4, "macrostylous":4, "macule":2, "maculed":2, "maculing":3, "macula":3, "macula lutea":6, "macular":3, "maculate":3, "maculated":4, "maculating":4, "maculation":4, "macdoine":4, "macdoines":4, "mad":1, "madag":1, "made":1, "made-to-measure":2, "made-to-order":2, "made-up":1, "madge":1, "madhya bharat":4, "madhya pradesh":4, "madhyamika":4, "madam":2, "madame":2, "madagascan":4, "madagascar":4, "madalyn":3, "madalynne":3, "madawaska":4, "madcap":2, "madden":2, "maddening":3, "maddeningness":4, "madder":2, "maddest":2, "madding":2, "maddish":2, "madelaine":3, "madeleine":3, "madeleine":3, "madelene":3, "madeline":3, "mademoiselle":4, "mademoiselles":4, "madhouse":2, "madison":3, "madison avenue":6, "madly":2, "madlyn":2, "madman":2, "madness":2, "madras":2, "madrepore":3, "madreporite":4, "madrigal":3, "madrigalesque":4, "madrigalist":4, "madrigalian":5, "madril":3, "madrilenian":5, "madrilne":4, "madtom":2, "madwoman":3, "madwort":2, "madwoman":3, "madwowomen":4, "madzoon":2, "mae":1, "mael":1, "maelstrom":2, "maelstrom":2, "maenalus":3, "maestoso":3, "maestricht":2, "maestro":2, "maestro di cappella":6, "maeander":3, "maebelle":2, "maecenas":3, "maeing":2, "maely":2, "maenad":2, "maenadic":3, "maenadism":3, "maeon":2, "maera":2, "maeterlinck":3, "mafeking":3, "maffick":2, "mafficker":3, "maffia":3, "maftir":2, "mag":1, "mag":1, "mage":1, "magaz":3, "magazine":3, "magazinish":4, "magazinism":4, "magazinist":4, "magaziny":4, "magda":2, "magdala":3, "magdalen":3, "magdalene":3, "magdalene":3, "magdalena":4, "magdalena bay":5, "magdalenian":5, "magdeburg":3, "magelhanz":3, "magellanic cloud":5, "maggie":2, "maggie":2, "magging":2, "maggiore":3, "maggiore":4, "maggot":2, "maggoty":3, "magic":2, "magic carpet":4, "magic eye":3, "magic lantern":4, "magic number":4, "magic square":3, "magisteries":4, "magistery":4, "magisterial":5, "magisterially":6, "magistral":3, "magistrality":5, "magistrally":4, "magistrate":3, "magistrates' court":4, "magistrateship":4, "magistratically":6, "magistracy":4, "magistrature":4, "magical":3, "magically":4, "maginus":3, "maglemosean":5, "maglemosian":5, "magma":2, "magmas":2, "magmatic":3, "magmata":3, "magmatism":3, "magna":2, "magna carta":4, "magna charta":4, "magna cum laude":5, "magna graecia":5, "magnanimous":4, "magnanimously":5, "magnate":2, "magnateship":3, "magnalium":4, "magnanimity":5, "magnet":2, "magnetic":3, "magnetic bottle":5, "magnetic character reader":8, "magnetic circuit":5, "magnetic compass":5, "magnetic constant":5, "magnetic course":4, "magnetic declination":7, "magnetic dip":4, "magnetic disk":4, "magnetic dipole moment":7, "magnetic drum":4, "magnetic equator":6, "magnetic field":4, "magnetic flux":4, "magnetic flux density":7, "magnetic ink":4, "magnetic induction":6, "magnetic lens":4, "magnetic meridian":7, "magnetic mine":4, "magnetic moment":5, "magnetic needle":5, "magnetic north":4, "magnetic pickup":5, "magnetic pole":4, "magnetic storm":4, "magnetic tape":4, "magnetic tape unit":6, "magnetic variation":7, "magnetics":3, "magnetise":3, "magnetised":3, "magnetism":3, "magnetiser":4, "magnetising":4, "magnetite":3, "magnetize":3, "magnetized":3, "magnetizer":4, "magnetizing":4, "magnetical":4, "magnetically":5, "magnetization":5, "magnesia":3, "magnesian":3, "magnesic":3, "magnesite":3, "magnesia":4, "magnesium":4, "magnesium oxide":6, "magnetizability":7, "magneto":3, "magnetometer":5, "magnetometry":5, "magneton":3, "magnetochemistry":6, "magnetoelectricity":8, "magnetogenerator":7, "magnetograph":4, "magnetographic":5, "magnetohydrodynamic":8, "magnetohydrodynamics":8, "magnetohydrodynamically":10, "magnetometric":5, "magnetomotive":5, "magnetomotive force":6, "magnetooptic":5, "magnetooptics":5, "magnetooptically":7, "magnetosphere":4, "magnetostriction":5, "magnetostrictive":5, "magnetothermoelectricity":10, "magnetron":3, "magnific":3, "magnifical":4, "magnificat":4, "magnificence":4, "magnificent":4, "magnificently":5, "magnifico":4, "magniloquence":4, "magniloquent":4, "magniloquently":5, "magnipotence":4, "magnipotent":4, "magnisonant":4, "magnific":3, "magnified":3, "magnification":5, "magnifier":4, "magnify":3, "magnifying":4, "magnifying glass":5, "magnitogorsk":4, "magnitude":3, "magnitudinous":5, "magnolia":3, "magnolia":3, "magnolia":4, "magnoliaceous":5, "magnum":2, "magnum opus":4, "magnus hitch":3, "magpie":2, "maguey":2, "magyar":2, "magyarize":3, "magyarized":3, "magyarizing":4, "magyarization":5, "mahlstick":2, "mahdi":2, "mahdism":2, "mahdist":2, "mahjong":2, "mahler":2, "mahlon":2, "mahratta":3, "mahratti":3, "mahseer":2, "mahzor":2, "mahzors":2, "mahzorim":3, "mai":1, "maid":1, "maid marian":4, "maid of honor":4, "maid of orlans":5, "maid-in-waiting":2, "maidenhairtree":2, "maids-in-waiting":2, "maiden":2, "maiden name":3, "maiden over":4, "maiden voyage":4, "maiden's-tears":2, "maiden's-wreath":2, "maidenhair":3, "maidenhair fern":4, "maidenhair tree":4, "maidenhair-tree":3, "maidenhair-vine":3, "maidenhead":3, "maidenhead":3, "maidenhood":3, "maidenish":3, "maidenly":3, "maidenship":3, "maidhood":2, "maidish":2, "maidishness":3, "maidservant":3, "maidstone":2, "mail":1, "mail order":3, "mailed":1, "maill":1, "mailability":5, "mailable":3, "mailbag":2, "mailbox":2, "mailcar":2, "mailcatcher":3, "mailcoach":2, "mailer":2, "mailer":2, "mailing list":3, "maillart":2, "mailless":2, "maillol":2, "maillot":2, "maillots":2, "mailman":2, "mailsack":2, "maim":1, "maimedness":2, "maimer":2, "main":1, "main":1, "main sequence":3, "main-frame computer":4, "main-topgallant":3, "main-topgallantmast":4, "main-topmast":2, "maine":1, "mains":1, "maintenon":2, "mainz":1, "mainbrace":2, "mainer":2, "mainland":2, "mainland":2, "mainlander":3, "mainline":2, "mainlined":2, "mainliner":3, "mainlining":3, "mainly":2, "mainmast":2, "mainsail":2, "mainsheet":2, "mainspring":2, "mainstay":2, "mainstream":2, "maintain":2, "maintained school":3, "maintainable":4, "maintainer":3, "maintainor":3, "maintenance":3, "maintenon":3, "maintop":2, "maintopsail":3, "mair":1, "maist":1, "maitland":2, "maize":1, "maidan":2, "maidanek":3, "maiduguri":4, "maier":2, "maigre":2, "maihem":2, "maikop":2, "mailer":2, "maimonides":4, "maimonidean":5, "maisie":2, "maisonette":3, "maisonnette":3, "maithuna":3, "maj":1, "majesty":3, "majesty":3, "majlis":2, "make":1, "make away":3, "make believe":3, "make over":3, "make-believe":2, "make-ready":2, "make-up":1, "makefast":2, "makeless":2, "makeshift":2, "makeshiftness":3, "makeshifty":3, "makeup":2, "makeweight":2, "makah":2, "makable":3, "maker":2, "maker":2, "makedhonia":5, "making":2, "makkah":2, "makluk":2, "maksoorah":3, "mal":1, "mal":1, "malatya":2, "male":1, "male chauvinism":4, "male chauvinist pig":5, "malebranche":2, "maleness":2, "mall":1, "malm":1, "malmesbury":3, "malmo":2, "malmsey":2, "malm":3, "malt":1, "malt extract":3, "malt liquor":3, "maltase":2, "malted milk":3, "malting":2, "maltier":3, "maltiest":3, "maltiness":3, "maltol":2, "maltose":2, "maltster":2, "malty":2, "mala fide":4, "malabsorption":4, "maladaptation":5, "maladdress":3, "maladjusted":4, "maladjustment":4, "maladminister":5, "maladministrator":6, "malam":2, "malanders":3, "malapportioned":4, "malapportionment":5, "malapropos":4, "malassimilation":6, "malate":2, "malabar":3, "malabar coast":4, "malachi":3, "malachite":3, "malacoid":3, "malacologist":5, "malacology":5, "malacophilous":5, "malacophyllous":5, "malacopterygian":7, "malacostracan":5, "malacotic":4, "malacological":6, "maladapted":4, "maladaptive":4, "maladroit":3, "maladroitly":4, "maladroitness":4, "malady":3, "malaga":3, "malagasy":4, "malagasy republic":7, "malamud":3, "malamute":3, "malapert":3, "malapertly":4, "malapertness":4, "malaprop":3, "malaprop":3, "malapropism":4, "malathion":4, "malayalaam":4, "malayalam":4, "malcolm":2, "malcolm iii":3, "malcolm x":3, "malcom":2, "malcontent":3, "malcontentedly":5, "malcontentedness":5, "malden":2, "maldives":2, "maldon":2, "maledict":3, "malediction":4, "maledictive":4, "maledictory":5, "malefaction":4, "malefactor":4, "malefactress":4, "malemute":3, "malfeasance":3, "malformation":4, "malfunction":3, "malgr":2, "malgr":3, "malherbe":2, "malic acid":4, "malice":2, "malice aforethought":5, "malimprinted":4, "malison":3, "malkin":2, "mallam":2, "mallanders":3, "mallard":2, "mallarme":3, "mallarm":4, "mallee":2, "mallee fowl":3, "mallee root":3, "mallenders":3, "mallet":2, "mallet":2, "malleate":3, "malleated":4, "malleating":4, "malleability":6, "malleable":4, "malleable iron":6, "malleableness":5, "malleablize":4, "malleablized":4, "malleablizing":5, "malleation":4, "mallei":3, "mallemuck":3, "malleolus":4, "malleus":3, "mallia":2, "mallow":2, "malmdy":4, "malmdy":3, "malnourished":3, "malnutrition":4, "malocclusion":4, "malodorous":4, "malodorously":5, "malodorousness":5, "malonyl":3, "malonylurea":6, "malory":3, "malpert":2, "malpighian corpuscle":7, "malpighian layer":6, "malpighian tubules":6, "malpighiaceous":5, "malpighi":3, "malposition":4, "malpractice":3, "malpractitioner":5, "malraux":2, "malta":2, "malta fever":4, "maltese":2, "maltese cross":3, "maltese dog":3, "maltha":2, "malthene":2, "malthus":2, "malthusian":4, "malthusianism":5, "maltobiose":4, "maltreat":2, "malva":2, "malvaceous":3, "malvasia":4, "malvasian":4, "malvern":2, "malversation":4, "malvine":2, "malvina":3, "malvoisie":3, "malwa":2, "mam":1, "mamaluke":3, "mamba":2, "mambo":2, "mamelon":3, "mameluke":3, "mamma":2, "mammae":2, "mammal":2, "mammality":4, "mammalogist":4, "mammalogy":4, "mammalian":4, "mammalogical":5, "mammary":3, "mammary gland":4, "mammato-cumulus":5, "mammee":2, "mammee apple":4, "mammer":2, "mammet":2, "mammie":2, "mammiferous":4, "mammilla":3, "mammillae":3, "mammillary":4, "mammillate":3, "mammillated":4, "mammock":2, "mammon":2, "mammon":2, "mammonish":3, "mammonism":3, "mammonist":3, "mammonistic":4, "mammonite":3, "mammoth":2, "mammotropin":4, "mammula":3, "mammy":2, "mammy wagon":4, "mampara":3, "mamzer":2, "man":1, "man":1, "man about town":4, "man friday":3, "man-eater":2, "man-eating":2, "man-tailored":2, "manche":1, "manche":1, "mane":1, "maned":1, "maneless":2, "mange":1, "mangrum":2, "manila":2, "manky":2, "mann":1, "manned":1, "mannheim":2, "mannheim school":3, "manse":1, "mansfield":2, "mansholt":2, "mantlet":2, "manuf":1, "manx":1, "manx shearwater":4, "manxman":2, "mana":2, "manage":2, "managed":2, "managed currency":5, "manageable":4, "management":3, "management accounting":6, "managemental":4, "manager":3, "manageress":4, "managership":4, "managing":3, "manak":2, "manas":2, "manabozho":4, "manacle":3, "managerial":5, "managerially":6, "manakin":3, "manasquan":3, "manatee":3, "manatoid":3, "manawyddan":4, "manbote":2, "manchester":3, "manchester terrier":6, "manchet":2, "manchette":2, "manchineel":3, "manchoukuo":3, "manchu":2, "manchukuo":3, "manchuria":4, "manciple":3, "mancunian":4, "mandaean":3, "mandan":2, "mandate":2, "mandated":3, "mandating":3, "mandacaru":4, "mandala":3, "mandalay":3, "mandamus":3, "mandamuses":4, "mandarin":3, "mandarin":3, "mandarin chinese":5, "mandarin collar":5, "mandarin duck":4, "mandataries":4, "mandatary":4, "mandatorily":5, "mandatory":4, "mande":2, "mandel":2, "mandean":3, "mandeville":3, "mandi":2, "mandibular":4, "mandibulate":4, "mandilion":3, "mandingo":3, "mandir":2, "mandit":2, "mandible":3, "mandioca":4, "mandorla":3, "mandola":3, "mandolin":3, "mandoline":3, "mandolinist":4, "mandragora":4, "mandrake":2, "mandrel":2, "mandril":2, "mandrill":2, "manducate":3, "manducable":4, "manducation":4, "manducatory":5, "mandyai":3, "mandyas":3, "mandyases":4, "manetho":3, "manfred":2, "manful":2, "manfully":3, "manfulness":3, "manganic":3, "manganic acid":5, "manganin":3, "mangabey":3, "mangalore":3, "manganate":3, "manganese":3, "manganese bronze":4, "manganese steel":4, "manganin":3, "manganite":3, "manganous":3, "manganophyllite":5, "mangel":2, "mangelwurzel":4, "manger":2, "mangey":2, "mangier":3, "mangiest":3, "mangle":2, "mangler":2, "mango":2, "mango-squash":2, "mangold":2, "mangold-wurzel":3, "mangoldwurzel":4, "mangonel":3, "mangosteen":3, "mangrove":2, "mangum":2, "mangy":2, "manhandle":3, "manhattan":3, "manhattan district":5, "manhattanite":4, "manheim":2, "manhole":2, "manhood":2, "manhood suffrage":4, "manhunt":2, "manic":2, "manic-depressive":4, "manistee":3, "manistique":3, "manit":2, "manichaean":4, "manichaeanism":5, "manichaeism":4, "manichaeus":4, "manichee":3, "manichean":4, "manicheanism":5, "manicheism":4, "manicheus":4, "manicure":3, "manicurist":4, "manifer":3, "manifest":3, "manifest destiny":6, "manifestant":4, "manifestation":5, "manifestative":5, "manifestatively":6, "manifesto":4, "manifold":3, "manifolder":4, "manifoldly":4, "manifoldness":4, "maniform":3, "manikin":3, "manioc":3, "manioca":4, "maniple":3, "manito":3, "manitou":3, "manitoulin":4, "manitoulin island":6, "manitoba":4, "manitowoc":4, "manitu":3, "manizales":4, "manjack":2, "manjak":2, "manjusri":3, "mankato":3, "mankiewicz":3, "mankind":2, "manless":2, "manlessly":3, "manlessness":3, "manley":2, "manlike":2, "manlikely":3, "manlikeness":3, "manlier":3, "manliest":3, "manliness":3, "manly":2, "manly":2, "manminit":3, "manna":2, "mannaean":3, "mannan":2, "mannar":2, "manner":2, "mannered":2, "manners":2, "manners":2, "mannerheim":3, "mannerism":3, "mannerist":3, "manneristic":4, "manneristically":6, "mannerless":3, "mannerlessness":4, "mannerliness":4, "mannerly":3, "mannes":2, "manness":2, "mannequin":3, "mannie":2, "manning":2, "mannington":3, "mannish":2, "mannishly":3, "mannishness":3, "mannite":2, "mannikin":3, "mannitol":3, "mannose":2, "manny":2, "manor":2, "manor house":3, "manorhaven":4, "manometric":4, "manpower":3, "manqu":2, "manqu":3, "manresa":3, "manroot":2, "manrope":2, "mansard":2, "mansart":2, "manservant":3, "manservant":3, "mansion":2, "mansion house":3, "manslaughter":3, "manslayer":3, "manslaying":3, "manson":2, "manstealing":3, "manstopper":3, "mansuetude":3, "mansur":2, "mansra":4, "mansra":3, "manta":2, "manta":2, "mantappeaux":3, "mantapa":3, "manteau":2, "mantel":2, "mantell":2, "mantelet":3, "mantelletta":4, "mantellone":4, "mantelpiece":3, "manteltree":3, "manteca":3, "mantegna":3, "mantic":2, "mantid":2, "mantilla":3, "mantis":2, "mantis shrimp":3, "mantispid":3, "mantissa":3, "mantius":2, "mantically":4, "mantineia":4, "mantinea":4, "mantle":2, "mantle":2, "mantle rock":3, "mantlet":2, "mantlepiece":3, "mantletree":3, "mantling":2, "manto":2, "mantoux test":3, "mantova":3, "mantra":2, "mantram":2, "mantrap":2, "mantric":2, "mantua":3, "mantua":3, "manu":2, "manual":3, "manually":4, "manucode":3, "manuel":3, "manufactory":5, "manufacture":4, "manufactured":4, "manufactural":5, "manufacturable":6, "manufacturer":5, "manufacturing":5, "manumission":4, "manumit":3, "manumitted":4, "manumitter":4, "manumitting":4, "manuscript":3, "manuscriptal":4, "manward":2, "manwards":2, "manway":2, "many":2, "many-one":2, "many-sided":3, "many-valued":3, "many-valued logic":5, "manyplies":3, "manzanilla":4, "manzoni":3, "maoism":2, "maori":2, "map":1, "map":1, "map projection":4, "mapes":1, "mappah":2, "mappable":3, "mapping":2, "mar":1, "mar":1, "mar del plata":4, "maracanda":2, "marc":1, "marc":1, "march":1, "march":1, "marche":1, "marcher":2, "marches":2, "marching orders":4, "marchland":2, "marchpane":2, "marcantonio":4, "mardy":2, "mare":1, "marg":1, "marge":1, "marge":1, "margrethe ii":4, "mariigold":2, "mark":1, "mark":1, "mark antony":4, "mark-up":1, "marked":1, "marksman":2, "marksville":2, "markswoman":3, "markswomen":3, "markdown":2, "markedly":3, "markedness":3, "marker":2, "marker-off":2, "markham":2, "marking":2, "marking ink":3, "markka":2, "markup":2, "marl":1, "marled":1, "marlboro":3, "marlborough":3, "marlite":2, "marlstone":2, "marne":1, "marq":1, "marque":1, "mars":1, "marse":1, "marsh":1, "marsh":1, "marsh andromeda":5, "marsh elder":3, "marsh fever":3, "marsh harrier":4, "marsh mallow":3, "marsh marigold":4, "marshier":3, "marshiest":3, "marshiness":3, "marshland":2, "marshlike":2, "marshmallow":3, "marshy":2, "marsden":2, "marston":2, "marston moor":3, "mart":1, "martello":2, "martello":2, "marth":1, "martlet":2, "martnet":2, "marv":1, "marx":1, "marx brothers":3, "marxism":2, "marxism-leninism":4, "marxist":2, "marxian":3, "marxianism":4, "marage":2, "maraged":2, "maraging":3, "maraging steel":4, "marabou":3, "marabout":3, "maraboutism":4, "maracaibo":4, "maracanda":4, "maranatha":4, "maraschino":4, "maraschino cherry":6, "marathon":3, "marathon":3, "marathoner":4, "marathonian":5, "maravedi":4, "marbelize":3, "marbelized":3, "marbelizing":4, "marbelization":5, "marble":2, "marble":2, "marble cake":3, "marbler":2, "marbles":2, "marblehead":3, "marbleize":3, "marbleized":3, "marbleizing":4, "marbleization":5, "marbling":2, "marburg":2, "marcan":2, "marcasite":3, "marceau":2, "marcel":2, "marcel":2, "marcelle":2, "marcelled":2, "marcella":3, "marcella":3, "marceller":3, "marcelling":3, "marcellinus":4, "marcello":3, "marcellus":3, "marcescence":3, "marcescent":3, "marceline":3, "marche":2, "marcheshvan":3, "marchette":2, "marchesa":3, "marchese":3, "marchioness":3, "marcia":2, "marcian":2, "marcie":2, "marcile":2, "marcille":2, "marcion":2, "marcionism":3, "marcionite":3, "marcionism":3, "marciano":4, "marciano":4, "marcianus":4, "marcius":3, "marco":2, "marco polo":4, "marcos":2, "marconi":3, "marconi rig":4, "marconigram":4, "marconigraph":4, "marcus":2, "marcus aurelius antoninus":10, "marcuse":3, "marcy":2, "mardi gras":3, "mardochai":3, "marduk":2, "marekanite":4, "mareograph":4, "marfa":2, "marga":2, "margaric":3, "margaric acid":5, "margaritic":4, "margate":2, "margaux":2, "margay":2, "margaret":3, "margaret of anjou":6, "margaret of navarre":6, "margaret of valois":6, "margareta":4, "margarin":3, "margarine":3, "margarite":3, "margarita":4, "margarita":4, "margaritaceous":5, "margent":2, "margery":3, "margherita":4, "margin":2, "marginal":3, "marginate":3, "marginated":4, "marginating":4, "margination":4, "marginalia":5, "marginis":3, "margrave":2, "margravate":3, "margravine":3, "margravial":4, "margraviate":4, "marguerite":3, "marguerite":3, "marheshvan":3, "maries":2, "marin":2, "marish":2, "marist":2, "maritage":3, "mariachi":4, "mariam":3, "marian":3, "marianne":3, "marianna":4, "mariana islands":6, "mariculture":4, "mariett":3, "marietta":4, "marifrances":4, "marigene":3, "marigold":3, "marigraph":3, "marigraphic":4, "marilee":3, "marilyn":3, "marilynne":3, "marinade":3, "marinate":3, "marinated":4, "marinating":4, "marination":4, "mariner":3, "mariner":3, "marinus":3, "mariolater":5, "mariolatrous":5, "mariolatry":5, "mariologist":5, "mariology":5, "marion":3, "marionette":4, "mariposa":4, "marisol":3, "marital":3, "maritally":4, "maritime":3, "maritime alps":4, "maritime provinces":6, "maritimes":3, "maritimer":4, "marius":3, "marjoram":3, "markan":2, "markers-off":2, "market":2, "market garden":4, "market gardening":5, "market mammy":4, "market order":4, "market price":3, "market research":4, "market town":3, "market value":4, "marketability":6, "marketable":4, "marketableness":5, "marketably":4, "marketer":3, "marketing":3, "marketplace":3, "marketwise":3, "markevich":3, "markhoor":2, "markhor":2, "markos":2, "markov chain":3, "markova":3, "marla":2, "marlacious":3, "marleen":2, "marleene":2, "marleigh":2, "marlene":2, "marley":2, "marlene":3, "marlin":2, "marlin":2, "marline":2, "marlinespike":3, "marling":2, "marlingspike":3, "marlinspike":3, "marlinsucker":4, "marlite":2, "marlitic":3, "marlon":2, "marlow":2, "marlowe":2, "marlovian":4, "marmax":2, "marmalade":3, "marmalade tree":4, "marmara":3, "marmet":2, "marmite":2, "marmite":2, "marmot":2, "marmolada":4, "marmora":3, "marmoreal":4, "marmorean":4, "marmoset":3, "maron":2, "marocain":3, "maronite":3, "maroquin":3, "marpessa":3, "marprelate":3, "marquand":2, "marquee":2, "marquess":2, "marquessate":3, "marquette":2, "marquesan":3, "marquesas islands":4, "marqueterie":4, "marquetry":3, "marquis":2, "marquis":2, "marquise":2, "marquisate":3, "marquises":3, "marquisette":3, "marram":2, "marram grass":3, "marranism":3, "marrakech":3, "marrakesh":3, "marrano":3, "marranoism":4, "marriage":2, "marriage guidance":4, "marriage of convenience":7, "marriageability":6, "marriageable":4, "marriageableness":5, "married":2, "marriedly":3, "marring":2, "marron":2, "marrons glac":4, "marrow":2, "marrow pea":3, "marrow squash":3, "marrowbone":3, "marrowbones":3, "marrowfat":3, "marrowish":3, "marruecos":3, "marry":2, "marry into":4, "marry off":3, "marryat":3, "marrying":3, "marsala":3, "marseille":2, "marseille":2, "marseilles":2, "marseillaise":3, "marsha":2, "marshal":2, "marshal":2, "marshaled":2, "marshall":2, "marshall":2, "marshall islands":4, "marshall plan":3, "marshalled":2, "marshallese":3, "marshalling yard":4, "marshalltown":3, "marshaling":3, "marshalling":3, "marshalsea":3, "marsilius of padua":8, "marsilid":3, "marsipobranch":4, "marsupial":4, "marsupial mole":5, "marsupial mouse":5, "marsupialise":5, "marsupialised":5, "marsupialising":6, "marsupialize":5, "marsupialized":5, "marsupializing":6, "marsupialization":7, "marsupialia":6, "marsupium":4, "marsyas":3, "marta":2, "martaban":3, "martagon":3, "martagon lily":5, "martel":2, "martellando":4, "martellato":4, "martello":3, "martello tower":5, "martemper":3, "marten":2, "martensite":3, "martensite":3, "martensitic":4, "martel":4, "martha":2, "martial":2, "martial":2, "martial law":3, "martialism":3, "martialist":3, "martially":3, "martialness":3, "martian":2, "martin":2, "martin":2, "martin du gard":4, "martine":2, "martinsburg":3, "martinsville":3, "martingale":3, "martinmas":3, "martinville":3, "martin'":3, "martina":3, "martineau":3, "martinelli":4, "martinet":3, "martini":3, "martini":3, "martinique":3, "martinon":3, "martyr":2, "martyrdom":3, "martyries":3, "martyrise":3, "martyrised":3, "martyrish":3, "martyrising":4, "martyrize":3, "martyrized":3, "martyrizing":4, "martyria":4, "martyrium":4, "martyrly":3, "martyrologist":5, "martyrology":5, "martyrological":6, "martyry":3, "mart":3, "marvel":2, "marvel-of-peru":3, "marveled":2, "marvell":2, "marvelled":2, "marveling":3, "marvella":3, "marvelling":3, "marvellous":3, "marvellously":4, "marvellousness":4, "marvelous":3, "marvelously":4, "marver":2, "marvin":2, "mary":2, "mary":2, "mary i":3, "mary ii":3, "mary jane":3, "mary magdalene":5, "marys":2, "marys":2, "marysville":3, "maryann":3, "maryanne":3, "marybelle":3, "marybeth":3, "marybob":3, "maryborough":4, "maryellen":4, "maryfrances":4, "maryjo":3, "marykay":3, "maryland":3, "marylyn":3, "marylynne":3, "maryolatry":5, "maryology":5, "maryruth":3, "maryville":3, "marzipan":3, "masc":1, "masefield":2, "mash":1, "masharbrum":3, "masherbrum":3, "mashgiach":3, "mashgiah":3, "mashgichim":3, "mashgihim":3, "mashhad":2, "mashie":2, "mashy":2, "mask":1, "masked":1, "masker":2, "masking tape":3, "masklike":2, "masque":1, "mass":1, "mass":1, "mass defect":3, "mass media":4, "mass number":3, "mass observation":5, "mass ratio":4, "mass spectrometer":5, "mass spectrograph":4, "mass-energy":3, "mass-produce":2, "massedly":3, "masses":2, "massier":3, "massiest":3, "massiness":3, "massless":2, "masslessness":3, "massy":2, "mast":1, "masthead":2, "mastless":2, "mastlike":2, "masbate":3, "mascara":3, "mascagni":3, "mascarene islands":5, "mascle":2, "mascon":2, "mascot":2, "masculine":3, "masculine ending":5, "masculine rhyme":4, "masculinely":4, "masculineness":4, "masculinize":4, "masculinized":4, "masculinizing":5, "masculinity":5, "masculinization":6, "maseru":3, "masinissa":4, "masjid":2, "maskalonge":3, "maskalonges":4, "maskanonge":3, "maskanonges":4, "maskelyne":3, "maskinonge":3, "maskinonges":4, "maslin":2, "masochism":3, "masochist":3, "masochistic":4, "masochistically":6, "masochism":3, "masorete":3, "masoretic":4, "masoretical":5, "masorite":3, "maspero":3, "masqat":2, "masquer":2, "masquerade":3, "masqueraded":4, "masquerader":4, "masquerading":4, "massa":2, "massage":2, "massaged":2, "massager":3, "massaging":3, "massagist":3, "massachuset":4, "massachusetts":4, "massachusetts bay":5, "massacre":3, "massapequa":4, "massasauga":4, "massasoit":3, "massaua":3, "massawa":3, "masseur":2, "masseuse":2, "massey":2, "massena":3, "massenet":3, "masseter":3, "massif":2, "massif central":4, "massine":2, "massinger":3, "massive":2, "massively":3, "massiveness":3, "massivity":4, "massicot":3, "massicotite":4, "massimo":3, "massinisa":4, "massinissa":4, "massor mass":4, "massora":3, "massorah":3, "massorete":3, "massoretic":4, "massoretical":5, "massotherapy":5, "massys":2, "massna":4, "massna":3, "mastax":2, "mastaba":3, "mastabah":3, "mastectomy":4, "master":2, "master":2, "master builder":4, "master cylinder":5, "master key":3, "master of arts":4, "master of ceremonies":7, "master of foxhounds":5, "master of science":5, "master race":3, "master sergeant":4, "master's":2, "master-at-arms":2, "masters-at-arms":2, "masterdom":3, "masterful":3, "masterfully":4, "masterfulness":4, "masterhood":3, "masteries":3, "masterless":3, "masterliness":4, "masterly":3, "mastermind":3, "masterpiece":3, "mastership":3, "mastersinger":4, "masterstroke":3, "masterwork":3, "masterwort":3, "mastery":3, "mastic":2, "mastiff":2, "mastigia":4, "mastigium":4, "mastix":2, "masticate":3, "masticated":4, "masticating":4, "masticable":4, "mastication":4, "masticatory":5, "mastiche":3, "mastigophora":5, "mastigophoran":5, "mastigophore":4, "mastitis":3, "mastoid":2, "mastoidectomy":5, "mastoiditis":4, "mastopathy":4, "mastocarcinoma":6, "mastocarcinomas":6, "mastocarcinomata":7, "mastodon":3, "mastoparietal":6, "mastopexy":4, "masturbate":3, "masturbatic":4, "masturbation":4, "masturbational":5, "masturbatory":5, "mat":1, "match":1, "matchable":3, "matchboard":2, "matchboarding":3, "matchbook":2, "matchbox":2, "matcher":2, "matchless":2, "matchlessly":3, "matchlessness":3, "matchlock":2, "matchmaker":3, "matchmaking":3, "matchmark":2, "matchstick":2, "matchwood":2, "mate":1, "matelass":3, "matelot":2, "matelow":2, "matey":2, "mateyness":3, "math":1, "maths":1, "mather":2, "mathewson":3, "mathematic":4, "mathematics":4, "mathematical":5, "mathematical expectation":9, "mathematical logic":7, "mathematically":6, "mathematician":5, "mathis":2, "matholwych":4, "mats":1, "matt":1, "matt":1, "matte":1, "matteson":2, "matabele":4, "matabeleland":5, "matador":3, "matamoros":4, "matanuska":4, "matapan":3, "matawan":3, "mated":2, "matellasse":4, "matelasse":4, "matelass":5, "matelote":3, "matelotte":3, "matin":2, "mating":2, "matins":2, "matinal":3, "matin":3, "matinee":3, "matiness":3, "matine":4, "matindol":4, "matless":2, "matlo":2, "matlock":2, "matlow":2, "matrass":2, "matricide":3, "matriclinous":4, "matrilateral":5, "matrilaterally":6, "matrilineage":5, "matrilineal":5, "matrilinies":4, "matrilocal":4, "matrilocality":6, "matrimonial":5, "matrimonially":6, "matrimony":4, "matrimony vine":5, "matripotestal":5, "matroclinous":4, "matronymic":4, "matsu":2, "matsys":2, "mattamore":3, "mattathias":4, "matted":2, "matter":2, "matter of course":4, "matter of fact":4, "matter-of-fact":2, "matter-of-factness":3, "matterful":3, "matterhorn":3, "matterless":3, "mattery":3, "matteo":3, "matteotti":4, "matthew":2, "matthew paris":4, "matthew walker":4, "matthews":2, "matthias":3, "matthyas":3, "mattie":2, "mattin":2, "matting":2, "mattins":2, "matto grosso":4, "mattock":2, "mattoid":2, "mattrass":2, "mattress":2, "matty":2, "maturate":3, "maturated":4, "maturating":4, "maturation":4, "matza":2, "matzah":2, "matzo":2, "matzoh":2, "matzoon":2, "matzoth":2, "maud":1, "maud":1, "maudslay":2, "maudie":2, "maudlin":2, "maudlinism":3, "maudlinly":3, "maudlinness":3, "maudy":2, "maudye":2, "maugham":1, "maul":1, "mauldin":2, "mauler":2, "maulers":2, "maulmain":2, "maulstick":2, "maulvi":2, "maun":1, "maunche":1, "maund":1, "maundy":2, "maunder":2, "maunderer":3, "maundy":2, "maundy money":4, "maundy thursday":4, "maungy":2, "mauston":2, "mauve":1, "maubeuge":2, "mauby":2, "mauger":2, "maugre":2, "maui":2, "maulana":3, "maumet":2, "maumetry":3, "mauna kea":4, "mauna loa":4, "maupassant":3, "maupertuis":3, "maura":2, "maureen":2, "maurene":2, "mauretania":5, "mauretanian":5, "mauriac":2, "maurice":2, "maurine":2, "maurist":2, "mauritania":5, "mauritanian":5, "mauritian":3, "mauritius":3, "mauro":2, "maurois":2, "maurus":2, "maury":2, "maurya":2, "maurya":3, "mauser":2, "mausolean":4, "mausoleum":4, "mauvais quart d'heure":4, "maverick":3, "maw":1, "mawkish":2, "mawkishly":3, "mawkishness":3, "mawger":2, "mawkin":2, "mawsie":2, "mawson":2, "max":1, "max":1, "max mler":3, "maxi":2, "maxilla":3, "maxillaries":4, "maxillary":4, "maxilliped":4, "maxillipedary":6, "maxim":2, "maxim":2, "maxim gun":3, "maximes":2, "maximise":3, "maximite":3, "maximize":3, "maxine":2, "maxima":3, "maximal":3, "maximalist":4, "maximalist":4, "maximally":4, "maximation":4, "maximilian":4, "maximilian":5, "maximilian i":6, "maximin":3, "maximize":3, "maximized":3, "maximizer":4, "maximizing":4, "maximization":5, "maximum":3, "maximum likelihood":6, "maximumly":4, "maximus":3, "maxisingle":4, "maxiskirt":3, "maxwell":2, "maxwell":2, "maxy":2, "may":1, "may":1, "may apple":3, "may beetle":3, "mayor":1, "mayoralty":3, "mayoress":2, "mays":1, "mayst":1, "maysville":2, "maybe":2, "mayday":2, "mayer":2, "mayest":2, "mayfair":2, "mayfield":2, "mayflower":3, "mayflower":3, "mayfly":2, "mayfly":2, "mayhap":2, "mayhappen":3, "mayhem":2, "maying":2, "mayn't":2, "maynet":2, "mayo":2, "mayonnaise":3, "mayor":2, "mayoral":3, "mayoralty":4, "mayorship":3, "maypole":2, "maypole":2, "maypop":2, "maytide":2, "maytime":2, "mayweed":2, "maywood":2, "maze":1, "mazedly":2, "mazedness":2, "mazelike":2, "mazard":2, "mazarin":3, "mazarine":3, "mazda":2, "mazdaism":3, "mazdeism":3, "mazdoor":2, "mazdur":2, "mazing":2, "mazzard":2, "mazzini":3, "maat":2, "maarib":3, "mabel":2, "mabelle":2, "mabela":3, "mableton":3, "mabuse":2, "mac":2, "macao":2, "macaque":2, "macassar":3, "macassar oil":4, "macaulay":3, "macaw":2, "macaber":3, "macabre":3, "macaco":3, "macap":3, "macapagal":4, "macap":4, "maceio":3, "macei":4, "macedoine":3, "machaerus":3, "machaira":3, "machan":2, "machault":2, "machaut":2, "machado":3, "machaon":3, "machel":2, "machete":3, "machetes":3, "machera":3, "machicolate":4, "machicolated":5, "machicolating":5, "machicolation":5, "machine":2, "machine bolt":3, "machine gun":3, "machine language":4, "machine readable":5, "machine screw":3, "machine shop":3, "machine tool":3, "machine-gun":2, "machine-tooled":2, "machined":2, "machineable":4, "machineless":3, "machinelike":3, "machinely":3, "machinability":6, "machinable":4, "machinery":4, "machining":3, "machinist":3, "machismo":3, "machree":2, "machu picchu":4, "macke":2, "macle":2, "macled":2, "maco":2, "macon":2, "macoma":3, "macrography":4, "macron":2, "macropsia":4, "macrobius":4, "macropia":4, "macruran":3, "macrurous":3, "macumba":3, "macumba":3, "macu":3, "macas nguema":6, "madang":2, "madafu":3, "madariaga":4, "madeira":3, "madeira cake":4, "madeiravine":4, "maderno":3, "madero":3, "madill":2, "madian":3, "madina do boe":6, "madoera":3, "madonna":3, "madonna lily":5, "madras":2, "madre":2, "madre de dios":4, "madrid":2, "madrona":3, "madroa":4, "madura":3, "madurai":3, "maduro":3, "maestoso":4, "maebashi":4, "maewo":3, "mafia":3, "mafioso":4, "magangu":4, "magallanes":4, "magellan":3, "magen david":4, "magenta":3, "magenta":3, "maghreb":2, "maghrib":2, "magi":2, "magi":2, "magilp":2, "magindanao":5, "magindanaos":5, "magian":3, "magician":3, "maginot line":4, "magog":2, "magot":2, "magritte":2, "magunned":2, "magunning":3, "magus":2, "magus":2, "magyarorsz":4, "magyarorszg":5, "mah":2, "mahalia":3, "mahalla el kubra":6, "mahatma":3, "mahabalipuram":6, "mahabharata":5, "mahadeva":4, "mahala":3, "mahaleb":3, "mahalie":3, "mahamaya":4, "mahanadi":4, "maharashtra":4, "maharaja":4, "maharajah":4, "maharanee":4, "maharani":4, "maharishi":4, "mahasamadhi":5, "mahayana":4, "mahayanist":4, "mahendra":3, "mahewu":3, "mahican":3, "mahogany":4, "mahomet":3, "mahometan":4, "mahon":2, "mahound":2, "mahout":2, "mahonia":4, "mahua":2, "mahn":3, "maia":2, "maieutic":3, "maieutical":4, "maiolica":4, "majesta":3, "majestic":3, "majestical":4, "majestically":5, "majolica":4, "major":2, "major":2, "major axis":4, "major general":5, "major league":3, "major mitchell":4, "major orders":4, "major planet":4, "major premiss":4, "major seventh chord":5, "major suit":3, "major term":3, "major-domo":3, "major-generalship":5, "major-leaguer":3, "majorca":3, "majorcan":3, "majorette":3, "majority":4, "majority carrier":7, "majunga":3, "majuscule":3, "majuscular":4, "makarios iii":5, "makasar":3, "makassar":3, "makalu":3, "makeevka":4, "makeyevka":4, "makhachkala":4, "makings":2, "makimono":4, "mako":2, "makurdi":3, "makuta":3, "malacca":3, "malacca":3, "malacca cane":4, "malaccan":3, "malaise":2, "malan":2, "malang":2, "malanga":3, "malange":3, "malanje":3, "malar":2, "malaria":4, "malarial":4, "malarian":4, "malarious":4, "malarkey":3, "malarky":3, "malay":2, "malay archipelago":7, "malay peninsula":6, "malay states":3, "malaya":3, "malayan":3, "malayo-indonesian":6, "malayo-polynesian":6, "malaysia":3, "malaysia":4, "malabo":3, "malaceous":3, "malacia":3, "malaguena":4, "malaguenas":4, "malakal":3, "malatesta":4, "malatya":3, "malawi":3, "male":2, "malee":2, "maleficence":4, "maleficent":4, "malenkov":3, "malevolent":4, "malevolently":5, "maleate":3, "maleic acid":5, "malevich":3, "mali":2, "mali":2, "malie":2, "malign":2, "malignly":3, "malignance":3, "malignant":3, "malignantly":4, "malignancy":4, "malignity":4, "maline":2, "malines":2, "malines":2, "malinda":3, "malinger":3, "malingerer":4, "malinke":3, "malibran":3, "malicious":3, "maliciously":4, "maliciousness":4, "malihini":4, "malinovsky":4, "malinowski":4, "malipiero":4, "mallorca":3, "malo":2, "malone":2, "malonic":3, "malonic acid":5, "maluku":3, "mal":3, "mama":2, "mamallapuram":5, "mamaroneck":4, "mamaguy":3, "mamers":2, "mamey":2, "mamie":2, "mamilla":3, "mamillate":3, "mamoncillo":4, "mamoncillos":4, "mamou":2, "mamor":3, "mamor":4, "mamurius":4, "man":2, "mana":2, "manasic":3, "manassas":3, "manasseh":3, "manasses":3, "manassite":3, "manat":2, "manaus":2, "manavelins":4, "manavilins":4, "manado":3, "managua":3, "manala":3, "manama":3, "manana":3, "manent":2, "manes":2, "manes":2, "manet":2, "manet":2, "maneuver":3, "maneuverability":7, "maneuverable":5, "maneuverer":4, "mani":2, "manille":2, "manila":3, "manila bay":4, "manila hemp":4, "manila paper":5, "manila rope":4, "manilius":4, "manilla":3, "manilla hemp":4, "manilla paper":5, "manilla rope":4, "maninke":3, "manipular":4, "manipulate":4, "manipulatable":6, "manipulated":5, "manipulating":5, "manipulable":5, "manipulative":5, "manipulator":5, "manism":2, "manistic":3, "mania":3, "mania":3, "maniac":3, "maniacal":4, "maniacally":5, "manicotti":4, "manipur":3, "manisa":3, "manizales":4, "manoeuvre":3, "manometer":4, "manor manege":4, "manoah":3, "manolete":4, "manorial":4, "manorialism":5, "manuel":2, "manure":2, "manured":2, "manurer":3, "manuring":3, "manus":2, "manus":2, "manubria":4, "manubrial":4, "manubrium":4, "manue":3, "manuka":3, "manukau":3, "manutius":4, "maori":3, "maple":2, "maple sugar":4, "maple syrup":4, "maplelike":3, "maplewood":3, "maputo":3, "maquette":2, "maqui":2, "maquillage":3, "maquis":2, "mar":2, "mara":2, "mara":2, "maraca":3, "marasca":3, "marasmus":3, "marat":2, "maraud":2, "marauder":3, "marauding":3, "marabunta":4, "maracay":3, "maraj":3, "maraline":3, "maralina":4, "maranh":3, "maranho":4, "maranon":3, "maratha":3, "marathi":3, "maran":5, "mare":2, "mare clausum":4, "mare liberum":5, "mare nostrum":4, "marelda":3, "maremma":3, "maremme":3, "marengo":3, "marenzio":3, "marette":2, "maretta":3, "marezzo":3, "mari":2, "mariage de convenance":6, "marianao":4, "mariano":3, "marie":2, "marie antoinette":5, "marie byrd land":4, "marie galante":4, "marie louise":4, "mariette":2, "marimba":3, "marin":2, "marine":2, "marine insurance":5, "marine railway":4, "marinduque":4, "mario":2, "maris":2, "maritsa":3, "maria":3, "maria":3, "maria de' medici":7, "maria theresa":6, "marianne":3, "marianskn":5, "marialite":4, "marianao":5, "maribor":3, "marica":3, "marienbad":4, "mariehamn":4, "marihuana":4, "marijuana":4, "marijuana":5, "marina":3, "marinaded":4, "marinading":4, "marinara":4, "marinetti":4, "marini":3, "marino":3, "maritain":3, "maritsa":3, "mariupol":4, "marivaux":3, "maro":2, "maroc":2, "maroon":2, "maror":2, "maros":2, "marouflage":3, "masaccio":3, "masai":2, "masan":2, "masaryk":3, "maser":2, "maseru":3, "mashona":3, "mason":2, "mason":2, "mason bee":3, "mason-dixon line":4, "masonic":3, "masonite":3, "masonically":5, "masonry":3, "masora":3, "masorah":3, "mastitic":3, "masuren":3, "masuria":4, "masurium":4, "masury":3, "mata hari":4, "mata-mata":3, "matane":2, "matanzas":3, "matadi":3, "mater":2, "mater dolorosa":6, "materfamilias":6, "maternal":3, "maternalise":4, "maternalised":4, "maternalism":4, "maternalising":5, "maternalistic":5, "maternalize":4, "maternalized":4, "maternalizing":5, "maternally":4, "maternity":4, "maternity benefit":7, "mateo":3, "materia medica":7, "material":4, "materials":4, "materialise":5, "materialised":5, "materialism":5, "materialist":5, "materialiser":6, "materialising":6, "materialize":5, "materialized":5, "materializer":6, "materializing":6, "materiality":6, "materialization":7, "materially":5, "materialness":5, "materiel":4, "matha":2, "mathieu":2, "mathilde":3, "mathias":3, "mathura":3, "mathusala":4, "matilda":3, "matilda":3, "matilde":3, "matisse":2, "matina":3, "mato grosso":4, "mator mate":4, "matoke":3, "matopo hills":4, "matopos":3, "matozinhos":4, "matre d'htel":4, "matre d'htel butter":6, "matric":2, "matriculate":4, "matriculated":5, "matriculating":5, "matriculation":5, "matriculator":5, "matrix":2, "matriarch":3, "matriarchal":4, "matriarchalism":5, "matriarchate":4, "matriarchic":4, "matriarchy":4, "matrices":3, "matron":2, "matron of honor":5, "matronage":3, "matronal":3, "matronhood":3, "matronize":3, "matronized":3, "matronizing":4, "matronliness":4, "matronly":3, "matronship":3, "matsu":2, "matsuyama":4, "mature":2, "maturely":3, "maturement":3, "matureness":3, "maturative":4, "maturer":3, "maturity":4, "matuta":3, "matutinal":4, "matutinally":5, "mat":3, "matriel":4, "mauman":3, "maven":2, "mavin":2, "mavis":2, "mavis":2, "mavourneen":3, "mavournin":3, "maxime":2, "maxixe":2, "maya":2, "maya":2, "mayan":2, "mayan":2, "mayag":3, "mayagez":4, "mayakovski":4, "mayakovsky":4, "mayence":2, "mayenne":2, "mayer":2, "mayon":2, "mayotte":2, "mazaedia":4, "mazaedium":4, "mazard":2, "mazatl":3, "mazatln":4, "maze-gane":3, "mazer":2, "mazier":3, "maziest":3, "mazily":3, "maziness":3, "mazopathy":4, "mazourka":3, "mazopathia":5, "mazurka":3, "mazuma":3, "mazy":2, "maana":4, "mba":1, "mbandaka":3, "mbabane":3, "mbe":1, "mboya":2, "mbomu":2, "mbujimayi":4, "mch":1, "mcallen":3, "mcbride":2, "mccartney":3, "mccarthy":3, "mccarthyism":4, "mccamey":3, "mcclellan":3, "mccloy":2, "mccook":2, "mccormack":3, "mccormick":3, "mccoy":2, "mccrae":2, "mccullers":3, "mcdiarmid":3, "mcdonald":3, "mcdougall":3, "mcfarland":3, "mcfee":2, "mcgehee":2, "mcgonagall":4, "mcgraw":2, "mcgregor":3, "mcguffey":3, "mchenry":3, "mcintire":3, "mcintosh":3, "mckeesport":3, "mckenna":3, "mckenzie":3, "mckim":2, "mckinley":3, "mckissick":3, "mckuen":3, "mcluhan":3, "mcmahon":3, "mcmaster":3, "mcmechen":3, "mcmillan":3, "mcminnville":3, "mcmurdo sound":4, "mcnaghten rules":4, "mcnair":2, "mcnaughten rules":4, "mcnaughton":3, "mcnamara":4, "mcnutt":2, "mcqueen":2, "mcreynolds":3, "mcsherrystown":4, "mcteague":2, "mds":1, "mdse":1, "me-too":1, "me-tooism":2, "mead":1, "mead":1, "meade":1, "meads":1, "meadow":2, "meadow fescue":4, "meadow grass":3, "meadow lily":4, "meadow mouse":3, "meadow mushroom":4, "meadow pipit":4, "meadow rue":3, "meadow saffron":4, "meadow-brown":2, "meadowlark":3, "meadowless":3, "meadowsweet":3, "meal":1, "meal ticket":3, "mealie":2, "mealie meal":3, "mealies":2, "mealier":3, "mealiest":3, "mealiness":3, "mealless":2, "mealtime":2, "mealworm":2, "mealy":2, "mealy bug":3, "mealy-mouthed":2, "mealy-mouthedness":4, "mealymouthedly":5, "mean":1, "mean deviation":5, "mean distance":3, "mean solar day":4, "mean solar time":4, "mean-tone tuning":3, "means":1, "means of production":5, "meant":1, "meanie":2, "meanies":2, "meaning":2, "meaningful":3, "meaningfully":4, "meaningfulness":4, "meaningless":3, "meaninglessly":4, "meaninglessness":4, "meaningly":3, "meaningness":3, "meanly":2, "meanspirited":4, "meanspiritedly":5, "meanspiritedness":5, "meantime":2, "meanwhile":2, "meany":2, "meany":2, "mear":1, "meas":1, "measure":2, "measure off":3, "measure out":3, "measure up":3, "measured":2, "measures":2, "measureless":3, "measurelessly":4, "measurelessness":4, "measurement":3, "measurement ton":4, "measurability":6, "measurable":4, "measurableness":5, "measurably":4, "measurer":3, "measuring":3, "measuring cup":4, "measuring worm":4, "measuringworm":4, "meat":1, "meath":1, "meatball":2, "meathead":2, "meatier":3, "meatiest":3, "meatiness":3, "meatman":2, "meaty":2, "meacon":2, "meager":2, "meagerly":3, "meagerness":3, "meagre":2, "meagrely":3, "meagreness":3, "measled":2, "measles":2, "measlier":3, "measliest":3, "measly":2, "mech":1, "mechanism":3, "mechanisma":3, "mechanise":3, "mechanism":3, "mechanist":3, "mechanismic":4, "mechanistic":4, "mechanize":3, "mechanizer":4, "mechanician":4, "mechanization":5, "mechanomorphic":5, "mechanomorphism":5, "mechanomorphically":7, "mechanotherapist":6, "mechanotherapy":6, "mechelen":3, "mechitarist":4, "mechlin":2, "mechlin lace":3, "meck":1, "mecklenburg":3, "mecklenburg-schwerin":4, "mecklenburg-strelitz":4, "mecamylamine":5, "mecca":2, "meccano":3, "meclizine":3, "med":1, "med":1, "med":1, "mede":1, "medit":1, "medal":2, "medal of honor":5, "medal play":3, "medaled":2, "medalled":2, "medaling":3, "medalist":3, "medalling":3, "medallist":3, "medawar":3, "meddle":2, "meddler":2, "meddlesome":3, "meddlesomely":4, "meddlesomeness":4, "meddlingly":3, "medford":2, "medic":2, "medick":2, "medicaid":3, "medicaid":3, "medical":3, "medical certificate":7, "medical examiner":7, "medical examination":8, "medical jurisprudence":7, "medicare":3, "medicare":3, "medicate":3, "medicated":4, "medicating":4, "medicable":4, "medicably":4, "medicamental":5, "medication":4, "medicator":4, "medicean":4, "medici":3, "medicine":3, "medicine ball":4, "medicine chest":4, "medicine lodge":4, "medicine man":4, "medicine shop":4, "medico":3, "medicochirurgical":7, "medicolegal":5, "meditate":3, "meditated":4, "meditating":4, "meditatingly":5, "meditation":4, "meditatively":5, "meditativeness":5, "meditator":4, "mediterranean":6, "mediterranean fever":8, "mediterranean sea":7, "medlar":2, "medley":2, "medullary":4, "medullated":4, "medullation":4, "medullization":5, "medway":2, "mee":1, "mee":1, "meed":1, "meek":1, "meekly":2, "meekness":2, "meer":1, "meerkat":2, "meerschaum":2, "meet":1, "meeter":2, "meeting":2, "meeting house":3, "meetly":2, "meetness":2, "meerut":2, "meg":1, "megabit":3, "megabuck":3, "megacephalous":5, "megacephaly":5, "megacephalic":5, "megacity":4, "megacycle":4, "megadeath":3, "megadont":3, "megadontism":4, "megadontia":4, "megadontic":4, "megadonty":4, "megagamete":4, "megahertz":3, "megahertzes":4, "megajoule":3, "megakaryoblast":6, "megalecithal":5, "megalesia":4, "megalith":3, "megalithic":4, "megalithic tomb":5, "megalopia":5, "megalopolis":5, "megalopsia":5, "megaloblast":4, "megaloblastic anaemia":9, "megalocardia":6, "megalocephaly":6, "megalomania":6, "megalomaniac":6, "megalomaniacal":7, "megalopolitan":6, "megalopolitanism":7, "megalosaur":4, "megamede":4, "megameter":4, "megametre":4, "megapenthes":4, "megaphone":3, "megaphonic":4, "megaphonically":6, "megapod":3, "megapode":3, "megara":3, "megara":3, "megarad":3, "megaris":3, "megaron":3, "megarus":3, "megascope":3, "megascopic":4, "megaspore":3, "megasporic":4, "megasporangium":6, "megasporophyll":5, "megathere":3, "megatherm":3, "megathermal":4, "megathermic":4, "megaton":3, "megavolt":3, "megavolt-ampere":4, "megawatt":3, "megawatt-hour":3, "megger":2, "megger":2, "megohm":2, "meilhac":2, "meindert":2, "meinie":2, "meinies":2, "meiny":2, "meissen":2, "meissonier":3, "meistersinger":4, "meistersingers":4, "meitner":2, "meiji":2, "meilichius":4, "meiotic":3, "meionite":3, "meiophylly":4, "meiosis":3, "mekhitarist":4, "mekka":2, "mekn":2, "mekns":3, "mel":1, "mel":1, "meld":1, "melder":2, "mell":1, "melt":1, "meltage":2, "meltability":5, "meltable":3, "melter":2, "melting point":3, "melting pot":3, "meltingly":3, "meltingness":3, "meltwater":3, "melancholic":4, "melancholies":4, "melancholically":6, "melancholily":5, "melancholiness":5, "melancholy":4, "melancholia":5, "melancholiac":5, "melanoderm":4, "melas":2, "melamine":3, "melamine resin":5, "melanesian":4, "melanesia":5, "melanesian":5, "melanie":3, "melaniferous":5, "melanin":3, "melanippus":4, "melanism":3, "melanistic":4, "melanite":3, "melanitic":4, "melanochroi":5, "melanochroi":5, "melanoid":3, "melanous":3, "melanocyte":4, "melanoma":4, "melanomas":4, "melanomata":5, "melanosis":4, "melanospermous":5, "melaphyre":3, "melatonin":4, "melba":2, "melba sauce":3, "melba toast":3, "melbourne":2, "melburnian":4, "melchers":2, "melchior":2, "melchisedech":4, "melchite":2, "melchizedek":4, "melchiades":4, "melchior":3, "meleager":4, "melete":3, "meletin":3, "melic":2, "meliority":4, "meliorate":3, "meliorated":4, "meliorating":4, "meliorable":4, "melioration":4, "meliorative":4, "meliorator":4, "meliorist":3, "melioristic":4, "melismatic":4, "meliboea":4, "melicertes":4, "melilot":3, "melinite":3, "melitene":4, "meli":4, "melkite":2, "meller":2, "mellers":2, "melliferous":4, "mellific":3, "mellifluent":4, "mellifluous":4, "mellifluously":5, "mellifluousness":5, "mellite":2, "mellita":3, "mellitum":3, "mellon":2, "mellow":2, "mellowly":3, "mellowness":3, "mellophone":3, "meloid":2, "melon":2, "melon-bulb":2, "melos":2, "melodie":3, "melodise":3, "melodist":3, "melodize":3, "melodized":3, "melodizer":4, "melodizing":4, "melodramatise":5, "melodramatised":5, "melodramatist":5, "melodramatising":6, "melodramatize":5, "melodrama":4, "melodramatic":5, "melodramatically":7, "melody":3, "melody":3, "melodye":3, "melodyless":4, "melolonthine":4, "melpomene":4, "melrose":2, "melton":2, "melvil":2, "melville":2, "melville island":4, "melville peninsula":6, "melvin":2, "melvyn":2, "mem":1, "member":2, "member":2, "member of parliament":6, "memberless":3, "membership":3, "membrane":2, "membrane bone":3, "membraneless":3, "membraneous":3, "membranaceous":4, "membranous":3, "membranophone":4, "membranophonic":5, "memlinc":2, "memling":2, "memnon":2, "memnonia":4, "memo":2, "memoir":2, "memoirs":2, "memorandum":4, "memorabilia":6, "memorabiliorabile":9, "memorability":6, "memorable":4, "memorableness":5, "memorably":4, "memoried":3, "memorise":3, "memorize":3, "memorized":3, "memorizable":5, "memorizer":4, "memorizing":4, "memorization":5, "memory":3, "memory bank":4, "memory span":4, "memory trace":4, "memphis":2, "memphite":2, "memphitic":3, "memphian":3, "memphremagog":4, "memsahib":3, "men":1, "men-children":2, "mencken":2, "menckenian":4, "mend":1, "mendable":3, "mender":2, "mending":2, "mengtsu":2, "mengtze":2, "mens rea":3, "mense":1, "menseful":2, "menseless":2, "mensing":2, "menswear":2, "menace":2, "menaced":2, "menacer":3, "menacing":3, "menacingly":4, "menacme":3, "menai strait":3, "menarche":3, "menarcheal":4, "menarchial":4, "menadione":4, "menaquinone":4, "mencius":3, "mend":2, "mendacity":4, "mendaciously":4, "mendaciousness":4, "mendel":2, "mendel's laws":3, "mendelssohn":3, "mendelism":3, "mendelsohn":3, "mendeleev":4, "mendelevium":5, "mendeleyev":4, "mendelian":4, "mendelianism":5, "menderes":3, "mendicity":4, "mendips":2, "mendicant":3, "mendicancy":4, "mendocino":4, "mendota":3, "mendoza":3, "menelaus":4, "menelik ii":4, "menfolk":2, "menfolks":2, "mengelberg":3, "mengistu haile mariam":8, "menhaden":3, "menhir":2, "meningitic":4, "meningitis":4, "menispermaceous":5, "menkure":3, "menninger":3, "mennonite":3, "mennonitism":4, "menon":2, "menorrhagic":4, "menorrhagia":5, "menopause":3, "menopausal":4, "menopausic":4, "menophania":5, "menostaxis":4, "mensa":2, "mensa":2, "mensal":2, "menservants":3, "menses":2, "menshevik":3, "menshevik":3, "menshevism":3, "menshevism":3, "menshevist":3, "menshevist":3, "menstrua":3, "menstrual":3, "menstruate":3, "menstruated":4, "menstruating":4, "menstruation":4, "menstruum":3, "menstruums":3, "mensurability":6, "mensurable":4, "mensural":3, "mensuration":4, "mental":2, "mental age":3, "mental block":3, "mental cruelty":5, "mental deficiency":6, "mental healing":4, "mental hospital":5, "mental reservation":6, "mentalism":3, "mentalist":3, "mentalistic":4, "mentalistically":6, "mentality":4, "mentally":3, "mentes":2, "menthaceous":4, "menthene":2, "menthol":2, "mentholated":4, "mentholated":4, "mention":2, "mentionable":4, "mentioner":3, "menticide":3, "menton":2, "mentonnire":4, "mentonnires":4, "mentor":2, "mentor":2, "mentor-on-the-lake-village":3, "mentone":3, "menu":2, "menyie":2, "menzies":2, "mephistopheles":5, "mepacrine":3, "mequon":2, "mer":1, "mercator's":2, "mere":1, "merely":2, "merge":1, "merger":2, "merging":2, "merk":1, "merl":1, "merle":1, "merle":1, "meroblastic":2, "merse":1, "merbromin":3, "merca":2, "mercantile":3, "mercantile agency":6, "mercantile paper":5, "mercantilism":4, "mercaptan":3, "mercaptide":3, "mercapto":3, "mercaptopurine":5, "mercast":2, "mercator":3, "mercator projection":6, "merced":2, "mercer":2, "merceries":3, "mercerise":3, "mercerize":3, "mercerized":3, "mercerizer":4, "mercerizing":4, "mercerization":5, "mercery":3, "mercedes":3, "mercenaries":4, "mercenarily":5, "mercenariness":5, "mercenary":4, "merchant":2, "merchant bank":3, "merchant navy":4, "merchant prince":3, "merchantable":4, "merchantableness":5, "merchantlike":3, "merchantman":3, "merchandise":3, "merchandised":3, "merchandiser":4, "merchandising":4, "merchet":2, "mercier":2, "mercia":3, "mercian":3, "merciful":3, "mercifully":4, "mercifulness":4, "merciless":3, "mercilessly":4, "mercilessness":4, "mercouri":3, "mercurate":3, "mercuric":3, "mercuric chloride":5, "mercuric oxide":5, "mercuric sulphide":5, "mercurial":4, "mercurialise":5, "mercurialised":5, "mercurialism":5, "mercurialising":6, "mercurialize":5, "mercuriality":6, "mercurially":5, "mercurialness":5, "mercurified":4, "mercurify":4, "mercurifying":5, "mercurius":4, "mercurous":3, "mercurous chloride":5, "mercurochrome":4, "mercury":3, "mercury":3, "mercury arc":4, "mercury chloride":5, "mercury-vapour lamp":5, "mercy":2, "mercy":2, "mercy flight":3, "mercy killing":4, "mercy seat":3, "merdivorous":4, "mere":2, "merest":2, "meredith":3, "meredyth":3, "meretricious":4, "meretriciously":5, "meretriciousness":5, "merganser":3, "merger":2, "mergui":2, "mergui archipelago":7, "meris":2, "merit":2, "merit system":4, "merits":2, "meritedly":4, "meritless":3, "mericarp":3, "merida":3, "meriden":3, "meridianii":6, "merilee":3, "merioneth":4, "merionethshire":5, "merisis":3, "meristem":3, "meristematic":5, "meristematically":7, "merited":3, "meritocracy":5, "meritorious":5, "meritoriously":6, "meritoriousness":6, "meriwether":4, "merkin":2, "merleau-ponty":3, "merlin":2, "merlin":2, "merlon":2, "mermaid":2, "mermaid's purse":3, "merman":2, "mermerus":3, "merneptah":3, "meroblastic":4, "meroblastically":6, "merocrine":3, "merodach":3, "meroe":3, "meroplankton":4, "merovingian":5, "merozoite":4, "mero":4, "merrier":3, "merriest":3, "merrily":3, "merrilyn":3, "merrimack":3, "merrimack":3, "merrimarauders":4, "merriment":3, "merry":2, "merry":2, "merry dancers":4, "merry men":3, "merry-andrew":3, "merry-go-round":2, "merrymaker":4, "merrymaking":4, "merrythought":3, "mersenne":2, "mersey":2, "mersey sound":3, "merseyside":3, "merseburg":3, "mersin":2, "merthiolate":4, "merthyr tydfil":4, "merton":2, "mervin":2, "mervyn":2, "merwin":2, "merwyn":2, "meryl":2, "mesh":1, "mesh connection":4, "meshrebeeyeh":4, "meshwork":2, "mesne":1, "mesnalty":3, "mess":1, "mess about":3, "mess jacket":3, "messrs":1, "messier":3, "messiest":3, "messily":3, "messiness":3, "messmate":2, "messroom":2, "messy":2, "mesarch":2, "mescal":2, "mescalin":3, "mescaline":3, "mesdames":2, "mesdemoiselles":4, "mesembryanthemum":6, "mesencephalon":5, "mesencephalic":5, "mesenchyme":3, "mesenchymal":4, "mesenchytera":5, "mesenteric":4, "mesenteries":4, "mesenteritis":5, "mesenteron":4, "mesenteronic":5, "mesentery":4, "mesically":4, "meslin":2, "mesmer":2, "mesmerise":3, "mesmerism":3, "mesmerist":3, "mesmeriser":4, "mesmerize":3, "mesmerized":3, "mesmerizer":4, "mesmerizing":4, "mesmerization":5, "mesnalty":3, "mesognathic":4, "mesorrhine":3, "mesorrhiny":4, "mesoappendiceal":6, "mesobenthos":4, "mesoblast":3, "mesoblastic":4, "mesocarp":3, "mesocardia":5, "mesocardium":5, "mesocephal":4, "mesocephaly":5, "mesocephalic":5, "mesocolon":4, "mesocratic":4, "mesocranic":4, "mesoderm":3, "mesodermal":4, "mesodermic":4, "mesodont":3, "mesodontic":4, "mesogastric":4, "mesogastrium":5, "mesoglea":4, "mesogleal":4, "mesogloea":4, "mesogloeal":4, "mesolecithal":5, "mesolite":3, "mesolithic":4, "mesometeorology":8, "mesometeorological":9, "mesomorph":3, "mesomorphic":4, "mesomorphism":4, "mesomorphy":4, "mesonephric":4, "mesonephros":4, "mesopause":3, "mesopeak":3, "mesophile":3, "mesophilic":4, "mesophyll":3, "mesophyte":3, "mesophytic":4, "mesopotamia":6, "mesopotamian":6, "mesorectum":4, "mesosphere":3, "mesothelia":5, "mesothelial":5, "mesothelioma":6, "mesothelium":5, "mesothoracic":5, "mesothorax":4, "mesothoraxes":5, "mesothoraces":5, "mesothorium":5, "mesotron":3, "mesozoic":4, "mesquit":2, "mesquite":2, "mesquite":2, "message":2, "message stick":3, "messan":2, "messaline":3, "messalina":4, "messapic":3, "messapian":4, "messeigneurs":3, "messenger":3, "messenger rna":4, "messerschmitt":3, "messene":3, "messenia":4, "messiaen":2, "messier":2, "messieurs":2, "messin":2, "messines":2, "messiah":3, "messianic":4, "messianically":6, "messidor":3, "messina":3, "messuage":2, "mestee":2, "mester":2, "mesthles":2, "mestizo":3, "mestor":2, "mestranol":3, "met":1, "metal":1, "metaph":1, "metchnikoff":3, "mete":1, "meteor":1, "meth":1, "meths":1, "methacrylate":4, "methacrylate resin":6, "methane":2, "methantheline":4, "methacetin":4, "methacrylic acid":6, "methadon":3, "methadone":3, "methanol":3, "methedrine":3, "methenyl":3, "metho":2, "method":2, "method":2, "methodise":3, "methodised":3, "methodism":3, "methodist":3, "methodising":4, "methodistic":4, "methodistical":5, "methodistically":6, "methodize":3, "methodized":3, "methodizer":4, "methodizing":4, "methodology":5, "methoxide":3, "methoxyl":3, "methodius":4, "methotrexate":4, "methylal":3, "methylate":3, "methylated spirits":6, "methylamine":4, "methylation":4, "methylator":4, "methylbenzene":4, "methylcatechol":5, "methylene":3, "methylene blue":4, "methylheptenone":5, "methylnaphthalene":5, "methylparaben":5, "methyltrinitrobenzene":7, "methyprylon":4, "metz":1, "meta":2, "metage":2, "metal":2, "metal spraying":4, "metaled":2, "metalled":2, "metaling":3, "metalist":3, "metalize":3, "metalization":5, "metallicity":5, "metalliferous":5, "metalline":3, "metalling":3, "metallise":3, "metallised":3, "metallist":3, "metallising":4, "metallize":3, "metallized":3, "metallizing":4, "metallization":5, "metallographer":5, "metallographist":5, "metallography":5, "metalloid":3, "metallographic":5, "metallophone":4, "metallurgy":4, "metalsmith":3, "metalware":3, "metalwork":3, "metalworking":4, "metamorphosis":3, "metapneustic":4, "metabiotic":5, "metabiotically":7, "metabiosis":5, "metabolic":4, "metabolic pathway":6, "metabolically":6, "metabus":3, "metacarpal":4, "metacarpus":4, "metacenter":4, "metacentre":4, "metachromatic":5, "metachromatism":5, "metacinnabarite":6, "metacinnabar":5, "metacomet":4, "metacryst":3, "metafemale":4, "metagalaxies":5, "metagalaxy":5, "metagalactic":5, "metagenesis":5, "metagenetic":5, "metagenetically":7, "metainfective":5, "metalanguage":4, "metalepsis":4, "metaleptic":4, "metaleptical":5, "metaleptically":6, "metalinguistic":5, "metalinguistics":5, "metalinguistically":7, "metamale":3, "metamathematics":6, "metamathematical":7, "metamathematician":7, "metamer":3, "metamere":3, "metameric":4, "metamerically":6, "metamorphic":4, "metamorphism":4, "metamorphose":4, "metamorphous":4, "metamorphoses":5, "metamorphosis":5, "metanephros":4, "metanira":4, "metanitrophenol":6, "metaphase":3, "metaphen":3, "metaphor":3, "metaphorical":5, "metaphorically":6, "metaphoricalness":6, "metaphosphate":4, "metaphosphoric acid":7, "metaphosphrased":4, "metaphosphrasing":5, "metaphrase":3, "metaphrast":3, "metaphrastic":4, "metaphrastical":5, "metaphrastically":6, "metaphysic":4, "metaphysics":4, "metaphysical":5, "metaphysical":5, "metaphysicise":5, "metaphysicist":5, "metaphysicize":5, "metaphyte":3, "metaphytic":4, "metaplasm":3, "metaplasia":4, "metaplasia":5, "metapolitics":5, "metaprotein":4, "metapsychology":6, "metapsychological":7, "metascope":3, "metasomatism":5, "metasomatosis":6, "metastatic":4, "metastability":6, "metastable":4, "metatarsal":4, "metatarsally":5, "metatarsus":4, "metathetic":4, "metatheory":5, "metatherian":5, "metathoracic":5, "metathorax":4, "metatoluidine":6, "metatroph":3, "metatrophic":4, "metaxylem":4, "metazoa":4, "metazoal":4, "metazoan":4, "metazoic":4, "meted":2, "metempiric":4, "metempirics":4, "metempirical":5, "metempirically":6, "metempiricism":5, "metempiricist":5, "metempsychic":4, "metencephalon":5, "metencephalic":5, "metestrus":3, "methaemoglobin":5, "metic":2, "meting":2, "metoestrus":3, "metope":2, "metonym":3, "metonymic":4, "metonymical":5, "metonymically":6, "metope":3, "metrazol":3, "metric":2, "metric hundredweight":5, "metric system":4, "metric ton":3, "metrics":2, "metrise":2, "metrist":2, "metrize":2, "metrizable":3, "metrical":3, "metrical psalm":4, "metrically":4, "metricate":3, "metricise":3, "metricised":3, "metricism":3, "metricising":4, "metricize":3, "metricized":3, "metricizing":4, "metrified":3, "metrification":5, "metrifier":4, "metrify":3, "metrifying":4, "metrization":4, "metro":2, "metrological":5, "metronidazole":5, "metronome":3, "metronomic":4, "metronomically":6, "metronymic":4, "metropolitan":5, "metropolitan county":7, "metropolitan district":7, "metropolitanism":6, "metsys":2, "metternich":3, "mettie":2, "mettle":2, "mettled":2, "mettlesome":3, "metty":2, "meu":1, "meung":1, "meurthe-et-moselle":2, "meuse":1, "meuni":2, "meunire":3, "mev":1, "mew":1, "mewl":1, "mews":1, "mex":1, "mex":1, "mexicali":4, "mexican":3, "mexican hairless":5, "mexican war":4, "mexicano":4, "mexico":3, "mexico city":5, "meyer":2, "meyerbeer":3, "meyerhof":3, "mez":1, "mezail":2, "mezcal":2, "mezcaline":3, "mezza voce":4, "mezzanine":3, "mezzo":2, "mezzo-relievo":4, "mezzo-rilieprani":5, "mezzo-riliepranos":5, "mezzo-rilievo":4, "mezzo-soprano":4, "mezzotint":3, "mezzotinter":4, "mea culpa":4, "meander":3, "meander":3, "meanderer":4, "meandrous":3, "meatal":3, "meatus":3, "meatuses":4, "mechanic":3, "mechanics":3, "mechanicsburg":4, "mechanicsville":4, "mechanical":4, "mechanical advantage":7, "mechanical drawing":6, "mechanical engineering":8, "mechanical instrument":7, "mechanicality":6, "mechanically":5, "mechanicalness":5, "mechaneus":4, "mechitzah":3, "mechitzoth":3, "mecisteus":4, "mecometer":4, "meconium":4, "meda":2, "medaillon":3, "medallic":3, "medallion":3, "medan":2, "medaka":3, "medell":3, "medelln":4, "medea":3, "medeus":3, "medicament":4, "medicinal":4, "medicinal leech":5, "medicinable":5, "medill":2, "media":3, "media":3, "mediad":3, "mediae":3, "mediaeval":4, "mediaevalism":5, "mediaevalist":5, "medial":3, "medially":4, "median":3, "median":3, "median strip":4, "mediant":3, "medianly":4, "mediastinal":5, "mediastinum":5, "mediate":3, "mediately":4, "mediateness":4, "mediated":4, "mediating":4, "mediacy":4, "mediation":4, "mediatise":4, "mediatised":4, "mediatising":5, "mediative":4, "mediatize":4, "mediatized":4, "mediatizing":5, "mediatization":6, "mediator":4, "mediatorship":5, "mediatorial":6, "mediatory":5, "mediatrix":4, "mediatrices":5, "medieval":4, "medieval greek":5, "medieval latin":6, "medievalism":5, "medievalist":5, "medii":3, "medii":3, "medina":3, "medina":3, "mediocrity":5, "mediocre":4, "mediocris":4, "medium":3, "medium frequency":6, "medium of exchange":6, "medium wave":4, "medium-dated":4, "medium-sized":3, "mediums":3, "medius":3, "medon":2, "medulla":3, "medulla oblongata":7, "medullae":3, "medullary ray":5, "medullary sheath":5, "medullas":3, "medusa":3, "medusa":3, "medusoid":3, "mefitis":3, "megaera":3, "meganthropus":4, "megarean":4, "megarian":4, "megass":2, "megasse":2, "meges":2, "meghalaya":4, "megiddo":3, "megilp":2, "megillah":3, "megillahs":3, "megilloth":3, "megrim":2, "megrims":2, "mehemet ali":5, "mehetabel":4, "mehitabel":4, "mehitzoth":3, "mehitzah":3, "mehuman":3, "meir":2, "mekong":2, "mela":2, "melammdim":3, "melamdim":3, "melammed":3, "melampus":3, "melanchthon":3, "melanic":3, "melanthius":4, "melantho":3, "melanthus":3, "melaleuca":4, "melamed":3, "melee":2, "melezitose":4, "melena":3, "melilla":3, "melinda":3, "melisma":3, "melismas":3, "melismata":4, "melissa":3, "melisseus":4, "melissie":3, "melissy":3, "melitta":3, "meliad":3, "meliae":3, "melian":3, "meliaceous":5, "meliorate":4, "melioration":5, "meliorism":4, "melitopol":4, "melodic":3, "melodic minor scale":6, "melodics":3, "melodically":5, "melos":2, "melodeon":4, "melodia":4, "melodion":4, "melodious":4, "melodiously":5, "melun":2, "melungeon":3, "melungeon":3, "memel":2, "memento":3, "memento mori":5, "memo":2, "memoria technica":7, "memorial":4, "memorial day":5, "memorialise":5, "memorialised":5, "memorialist":5, "memorialiser":6, "memorialising":6, "memorialize":5, "memorializer":6, "memorialization":7, "memorially":5, "memoriter":4, "mena":2, "menad":2, "menadic":3, "menaechmi":3, "menagerie":4, "menam":2, "menander":3, "menasha":3, "menat":2, "menado":3, "mene":2, "menes":2, "menestheus":4, "menesthius":4, "meneptah":3, "meninx":2, "meninges":3, "meningeal":4, "meningocele":4, "meningococcal":5, "meningococci":5, "meningococcic":5, "meningococcus":5, "menippe":3, "meniscoid":3, "meniscocytosis":6, "meniscus":3, "menial":3, "menially":4, "meno":2, "meno mosso":4, "menodice":4, "menoeceus":4, "menoetes":3, "menoetius":4, "menology":4, "menominee":4, "menomini":4, "menomonie":4, "menorah":3, "menorca":3, "menoschesis":4, "menotti":3, "menorah":3, "menuiserie":4, "menuisier":3, "menuhin":3, "menuki":3, "meow":2, "meperidine":4, "mephisto":3, "mephitic":3, "mephitical":4, "mephitically":5, "mephitis":3, "meprobamate":4, "merano":3, "merengue":3, "merengued":3, "merenguing":4, "meri":2, "meridian":4, "meridian":4, "meridian circle":6, "meridional":5, "meringue":2, "merise":2, "meristic":3, "merima":3, "merino":3, "meristem":3, "merogony":4, "merops":2, "meros":2, "mesa":2, "mesa verde":3, "mesally":3, "meseemed":2, "meseems":2, "meshach":2, "meshed":2, "meshugga":3, "meshuggaas":3, "meshuggana":4, "meshuga":3, "meshugaas":3, "meshugana":4, "mesic":2, "mesitylene":4, "mesial":3, "mesially":4, "mesognathism":4, "mesognathous":4, "mesognathy":4, "meson":2, "mesophilous":4, "mesolonghi":4, "mesolgion":5, "meta":2, "meta":2, "metabolise":4, "metabolised":4, "metabolism":4, "metabolising":5, "metabolite":4, "metabolize":4, "metabolizable":6, "metabolous":4, "metachronal":4, "metagnathism":4, "metagnathous":4, "metallic":3, "metallic bond":4, "metallic soap":4, "metallically":5, "metallicize":4, "metallocene":4, "metallophone":4, "metallotherapy":6, "metamerism":4, "metastasis":4, "metastasise":4, "metastasize":4, "metathesis":4, "metathesise":4, "metathesize":4, "metathethoraxes":6, "metathethoraces":6, "metatrophy":4, "metaxa":3, "metastable":4, "metastasio":4, "metaxas":3, "metempsychosis":5, "meter":2, "meter":2, "meter maid":3, "meter-candle":3, "meter-candle-second":4, "meter-kilogram-second":5, "metered mail":3, "meterage":3, "meteor":3, "meteor shower":5, "meteoric":4, "meteorite":4, "meteoritic":5, "meteoritics":5, "meteorically":6, "meteorlike":4, "meteoroid":4, "meteorology":6, "meteorograph":5, "meteorographic":6, "meteorologic":6, "meteorological":7, "meteorologically":8, "meteoropathologic":8, "meteorography":6, "methane":2, "methane series":4, "metheglin":3, "methenamine":4, "methinks":2, "methionine":4, "methodic":3, "methodical":4, "methodically":5, "methodicalness":5, "methought":2, "methoxy":3, "methoxybenzene":5, "methoxychlor":4, "methodius":4, "methuen":3, "methuselah":4, "methyl":2, "methyl acetate":5, "methyl alcohol":5, "methyl bromide":4, "methyl chloride":4, "methyl ethyl ketone":6, "methyl isobutyl ketone":8, "methyl methacrylate":6, "methylamine":4, "methyldopa":4, "methylic":3, "methylidyne":4, "methylnaphthalene":5, "methylthionine chloride":7, "meticulosity":6, "meticulous":4, "meticulously":5, "meticulousness":5, "metis":2, "metiscus":3, "metion":3, "metioche":4, "metius":3, "metol":2, "metol":2, "metonic cycle":5, "metonymy":4, "metopic":3, "metralgia":4, "metre":2, "metre-kilogram-second":5, "metridium":4, "metrician":3, "metritis":3, "metrology":4, "metropolis":4, "metropolis":4, "metropolises":5, "metrorrhagic":4, "metrorrhagia":5, "metronymic":4, "metroscope":3, "metrotome":3, "metuchen":3, "mewar":2, "mexia":3, "mezentius":3, "mezereon":4, "mezereum":4, "mezuza":3, "mezuzah":3, "mezuzoth":3, "mfd":1, "mfg":1, "mfh":1, "mfr":1, "mgb":1, "mgr":1, "mhd":1, "mhg":1, "mho":1, "mhz":1, "mi5":1, "mi6":1, "mia":1, "mib":1, "mic":1, "mice":1, "mich":1, "mich":1, "miche":1, "michaelmas":3, "michaelmas daisy":5, "michaelmas term":4, "micher":2, "michener":3, "miching":2, "michigan":3, "michigan":3, "michiganian":5, "mick":1, "mickey":2, "mickey":2, "mickey finn":3, "mickey mouse":3, "mickery":3, "mickies":2, "mickle":2, "micky":2, "mickiewicz":3, "micmac":2, "micturate":3, "micturition":4, "mid":1, "mid":1, "mid glamorgan":4, "mid-off":1, "mid-on":1, "mid-victorian":4, "mid-victorianism":5, "mid-wicket":2, "midas":1, "midge":1, "midget":2, "midst":1, "midafternoon":4, "midair":2, "midband":2, "midbrain":2, "midcourse":2, "midday":2, "middelburg":3, "midden":2, "middle":2, "middle age":3, "middle ages":4, "middle atlantic states":6, "middle america":6, "middle c":3, "middle class":3, "middle common room":5, "middle congo":4, "middle dutch":3, "middle ear":3, "middle east":3, "middle eight":3, "middle english":4, "middle game":3, "middle greek":3, "middle high german":5, "middle irish":4, "middle kingdom":4, "middle low german":5, "middle palaeolithic":7, "middle passage":4, "middle persian":4, "middle school":3, "middle states":3, "middle temple":4, "middle term":3, "middle watch":3, "middle west":3, "middle-aged":2, "middle-agedly":4, "middle-agedness":4, "middle-class":2, "middle-distance":3, "middle-of-the-road":2, "middle-of-the-roader":3, "middlesbrough":3, "middlebreaker":4, "middlebrow":3, "middlebrowism":4, "middlebury":4, "middlebuster":4, "middleman":3, "middlemarch":3, "middlemost":3, "middleport":3, "middlesail":3, "middlesex":3, "middleton":3, "middletone":3, "middletown":3, "middleweight":3, "middling":2, "middlings":2, "middlingly":3, "middy":2, "middy blouse":3, "mideast":2, "mideastern":3, "midfield":2, "midfield":2, "midgard":2, "midgarth":2, "midgut":2, "midheaven":3, "midi":2, "midian":3, "midianite":4, "midinette":3, "midiron":3, "midland":2, "midland":2, "midlands":2, "midleg":2, "midline":2, "midlothian":4, "midmost":2, "midnight":2, "midnight blue":3, "midnight sun":3, "midnightly":3, "midnoon":2, "midpoint":2, "midrash":2, "midrashic":3, "midrashim":3, "midrib":2, "midriff":2, "midsection":3, "midship":2, "midships":2, "midshipman":3, "midshipmite":3, "midstream":2, "midsummer":3, "midsummer day":4, "midsummer madness":5, "midsummer's day":4, "midsummer-men":3, "midsummery":4, "midterm":2, "midtown":2, "midvale":2, "midway":2, "midway":2, "midway islands":4, "midweek":2, "midweekly":3, "midwest":2, "midwestern":3, "midwesterner":4, "midwife":2, "midwife toad":3, "midwifery":3, "midwinter":3, "midwinterly":4, "midwintry":3, "midyear":2, "mielziner":3, "mien":1, "mieres":2, "miff":1, "miffed":1, "miffier":3, "miffiest":3, "miffy":2, "miffy":2, "mig":1, "mig":1, "might":1, "mightier":3, "mightiest":3, "mightily":3, "mightiness":3, "mighty":2, "miggle":2, "mihrab":2, "mike":1, "mike":1, "miking":2, "mikvah":2, "mikveh":2, "mil":1, "milch":1, "mild":1, "milden":2, "mildly":2, "mildness":2, "mile":1, "miles":1, "mileage":2, "mileometer":4, "milepost":2, "milestone":2, "milit":1, "milk":1, "milk chocolate":4, "milk fever":3, "milk of magnesia":5, "milk pudding":3, "milk sickness":3, "milk sugar":3, "milk thistle":3, "milk-and-water":2, "milk-livered":2, "milker":2, "milkfish":2, "milkfishes":3, "milking machine":4, "milking stool":3, "milkier":3, "milkiest":3, "milkily":3, "milkiness":3, "milkless":2, "milkmaid":2, "milkman":2, "milko":2, "milksop":2, "milksopism":3, "milksopping":3, "milksoppy":3, "milkweed":2, "milkwood":2, "milkwort":2, "milky":2, "milky way":3, "mill":1, "mill":1, "milled":1, "millefeuille":2, "millefleur":2, "millefleurs":2, "millerand":2, "mills":1, "millboard":2, "millbrae":2, "millburn":2, "millcake":2, "milldam":2, "miller":2, "millerite":3, "millerite":3, "milling":2, "milling machine":4, "millpond":2, "millrace":2, "millrind":2, "millrun":2, "millstone":2, "millstream":2, "milltown":2, "millvale":2, "millville":2, "millwheel":2, "millwork":2, "millwright":2, "milne":1, "milne-edwards":2, "milquetoast":2, "milt":1, "milter":2, "milage":2, "milanese":3, "milanaise":3, "mildew":2, "mildewproof":3, "mildewy":3, "mildred":2, "miler":2, "milfoil":2, "milford haven":4, "miliary":3, "miliary fever":5, "miliarensis":4, "milia":3, "miliaria":5, "miliary":4, "militant":3, "militantly":4, "militantness":4, "militancy":4, "militaries":4, "militarily":5, "militariness":5, "military":4, "military academy":8, "military engineering":8, "military honors":6, "military law":5, "military pace":5, "military police":6, "militate":3, "militated":4, "militating":4, "militarise":4, "militarised":4, "militarism":4, "militarist":4, "militarising":5, "militarize":4, "militarized":4, "militarizing":5, "militarization":6, "milium":3, "millais":2, "millard":2, "millay":2, "milledgeville":3, "millen":2, "millennia":4, "millennial":4, "millennially":5, "millennium":4, "millenniums":4, "miller":2, "miller":2, "miller's thumb":3, "millersville":3, "millerite":3, "millesimal":4, "millesimally":5, "millet":2, "millet":2, "millecent":3, "millefio":4, "millefiori":5, "millenarian":5, "millenarianism":6, "millenary":4, "milleped":3, "millepede":3, "millepore":3, "milliard":2, "milliary":3, "millie":2, "millieme":2, "millier":2, "millime":2, "milline":2, "millington":3, "million":2, "millionth":2, "millionaire":3, "millionnaire":3, "milliangstrom":4, "milliard":3, "milliare":3, "milliary":4, "millibar":3, "millibarn":3, "millicent":3, "millifarad":4, "millifold":3, "milligal":3, "milligan":3, "milligram":3, "milligramme":3, "millihenry":4, "millikan":3, "millilambert":4, "milliliter":4, "millilitre":4, "millilux":3, "millimeter":4, "millimetre":4, "millimho":3, "millimicron":4, "millimole":3, "milliner":3, "millinery":4, "millinocket":4, "milliohm":3, "millipede":3, "milliphot":3, "millipoise":3, "millirem":3, "milliroentgen":4, "millisecond":4, "millisiemens":4, "millivolt":3, "milner":2, "milreis":2, "milstein":2, "milter":2, "miltiades":4, "milton":2, "milton keynes":3, "milton work count":4, "miltonic":3, "miltonian":4, "milwaukee":3, "milwaukeean":4, "milwaukie":3, "mim":1, "mime":1, "mims":1, "mimbar":2, "mimer":2, "mimeograph":4, "mimeograph":4, "mimetite":3, "mimi":2, "mimic":2, "mimicked":2, "mimicker":3, "mimicking":3, "mimicry":3, "miming":2, "mimical":3, "mimically":4, "miminy-piminy":5, "mimosaceous":4, "min":1, "min":1, "mince":1, "mincemeat":2, "minch":1, "mincer":2, "mincing":2, "mincingly":3, "mind":1, "mind-expanding":3, "mind-reader":2, "mind-your-own-business":2, "minded":2, "minder":2, "mindful":2, "mindfully":3, "mindfulness":3, "mindless":2, "mindlessly":3, "mindlessness":3, "mindszenty":3, "mine":1, "mine detector":4, "mineable":3, "minefield":2, "minelayer":3, "minesweeper":3, "ming":1, "minge":1, "mink":1, "minkfish":2, "minkfishes":3, "minn":1, "minsk":1, "mint":1, "mint julep":3, "mintage":2, "minter":2, "minx":1, "minxish":2, "mina":2, "minable":3, "minaret":3, "minareted":4, "minatorial":5, "minatory":4, "minchah":2, "mindanao":3, "mindanao":4, "mindel":2, "mindoro":3, "miner":2, "mineral":3, "mineral jelly":5, "mineral kingdom":5, "mineral oil":4, "mineral pitch":4, "mineral spring":4, "mineral tar":4, "mineral wax":4, "mineral water":5, "mineral wool":4, "mineralise":4, "mineralised":4, "mineraliser":5, "mineralising":5, "mineralize":4, "mineralized":4, "mineralizer":5, "mineralizing":5, "mineralogical":6, "mineralogically":7, "mineraloid":4, "mineralocorticoid":7, "mineralogist":5, "mineralogy":5, "mineola":4, "minestrone":4, "minever":3, "mingle":2, "mingler":2, "minglement":3, "mingrel":2, "mingrelian":4, "mingus":2, "mingy":2, "minhag":2, "minhah":2, "minhagic":3, "minhagim":3, "minhow":2, "mini":2, "miniature":3, "miniature camera":6, "miniaturise":4, "miniaturist":4, "miniaturize":4, "minim":2, "mining":2, "minion":2, "minister":3, "minister of state":5, "minister plenipotentiary":9, "ministerial":5, "ministerialist":6, "ministerium":5, "ministrant":3, "ministration":4, "ministrative":4, "ministry":3, "miniature":4, "miniaturize":5, "miniaturized":5, "miniaturizing":6, "miniaturization":7, "minibus":3, "minicab":3, "minicam":3, "minicamera":5, "minicomputer":5, "minicoy":3, "minidress":3, "minie ball":4, "minify":3, "minikin":3, "minima":3, "minimal":3, "minimal pair":4, "minimalist":4, "minimalist":4, "minimally":4, "minimax":3, "minimise":3, "minimised":3, "minimiser":4, "minimising":4, "minimize":3, "minimized":3, "minimizer":4, "minimizing":4, "minimization":5, "minimum":3, "minimum lending rate":6, "minimum wage":4, "minimus":3, "minipill":3, "miniskirt":3, "miniskirted":4, "ministration":4, "minitrack":3, "minium":3, "miniver":3, "minivet":3, "minkowski world":4, "minna":2, "minneapolis":5, "minneapolitan":6, "minnesinger":4, "minnesota":4, "minnesotan":4, "minnetonka":4, "minnewit":3, "minni":2, "minnie":2, "minnow":2, "minny":2, "minotaur":3, "minster":2, "minstrel":2, "minstrel show":3, "minstrelsy":3, "minta":2, "minthe":2, "mintoff":2, "minton":2, "minute":2, "minute gun":3, "minute hand":3, "minute mark":3, "minute steak":3, "minutes":2, "minutely":3, "minuteman":3, "minuted":3, "minuting":3, "minuend":3, "minuet":3, "minuit":3, "minya":2, "minyan":2, "minyas":3, "miollnir":2, "miquelon":3, "mir":1, "mire":1, "mirepois":2, "mirepoix":2, "mirk":1, "mirkier":3, "mirkiest":3, "mirky":2, "mirth":1, "mirthful":2, "mirthfully":3, "mirthfulness":3, "mirthless":2, "mirthlessly":3, "mirthlessness":3, "mirv":1, "mirabeau":3, "mirabelle":3, "miracle":3, "miracle play":4, "mirador":3, "miramar":3, "miring":2, "miriam":3, "mirier":3, "miriest":3, "miriness":3, "mirliton":3, "mirlitons":3, "mirror":2, "mirror carp":3, "mirror image":4, "mirror symmetry":5, "mirror writing":4, "mirror-writing":3, "mirrorlike":3, "miry":2, "miryam":2, "mirza":2, "misc":1, "misch metal":3, "mise":1, "mishawaka":4, "mishmash":2, "mishna":2, "mishnah":2, "mishnaic":3, "mishnayoth":3, "miss":1, "miss":1, "misses":2, "missies":2, "missy":2, "mist":1, "mistbow":2, "mistcoat":2, "mistier":3, "mistiest":3, "misty":2, "misact":2, "misaccused":3, "misadd":2, "misadapt":3, "misadaptation":5, "misaddress":3, "misaddressing":4, "misaddrest":3, "misadjust":3, "misadjusted":4, "misadjustment":4, "misadjudicated":6, "misadministration":6, "misadventure":4, "misadvice":3, "misadvise":3, "misadvised":3, "misadvising":4, "misaim":2, "misallege":3, "misalleged":3, "misalleging":4, "misallegation":5, "misallied":3, "misalliance":4, "misallot":3, "misallotment":4, "misallotted":4, "misallotting":4, "misally":3, "misallying":4, "misalphabetize":5, "misalphabetized":5, "misalphabetizing":6, "misanalyze":4, "misanalyzed":4, "misanalyzing":5, "misanthrope":3, "misanthropic":4, "misanthropical":5, "misanthropically":6, "misanthropist":4, "misanthropy":4, "misappellation":5, "misappended":4, "misapplied":3, "misapplier":4, "misapply":3, "misapplying":4, "misappoint":3, "misappraise":3, "misappraised":3, "misappraising":4, "misapprehend":4, "misapprehendingly":6, "misapprehension":5, "misapprehensive":5, "misapprehensively":6, "misapprehensiveness":6, "misapprehensiveranged":6, "misapprehensiveranging":7, "misappropriate":5, "misarrangement":4, "misarticulate":5, "misarticulated":6, "misarticulating":6, "misarticulation":6, "misassert":3, "misassertion":4, "misassign":3, "misassignment":4, "misauthorize":4, "misauthorized":4, "misauthorizing":5, "misauthorization":6, "misalignment":4, "misanalysis":5, "misaver":3, "misaverred":3, "misaverring":4, "misaward":3, "misbecame":3, "misbecome":3, "misbecoming":4, "misbegot":3, "misbegotten":4, "misbehave":3, "misbehaved":3, "misbehaver":4, "misbehaving":4, "misbehaviour":4, "misbehavior":4, "misbelief":3, "misbelievingly":5, "misbestow":3, "misbill":2, "misbind":2, "misbinding":3, "misbound":2, "misbrand":2, "misbrew":2, "misbuild":2, "misbuilding":3, "misbuilt":2, "misbuttoned":3, "miscall":2, "miscaller":3, "miscalculate":4, "miscalculated":5, "miscalculating":5, "miscalculation":5, "miscalculator":5, "miscarriage":3, "miscarry":3, "miscast":2, "miscasting":3, "miscategorize":5, "miscategorized":5, "miscategorizing":6, "misce":2, "miscellanea":5, "miscellaneous":5, "miscellanist":4, "miscellany":4, "miscensure":3, "miscensured":3, "miscensuring":4, "miscegenation":5, "miscegenetic":5, "mischance":2, "mischanter":3, "mischarge":2, "mischarged":2, "mischarging":3, "mischaracterize":5, "mischaracterized":5, "mischaracterizing":6, "mischief":2, "mischief-maker":3, "mischief-making":3, "mischievous":3, "mischievously":4, "mischievousness":4, "mischoose":2, "mischoosing":3, "mischose":2, "mischosen":3, "miscible":3, "misclaim":2, "misclass":2, "misclassified":4, "misclassification":6, "misclassify":4, "misclassifying":5, "miscoin":2, "miscoinage":3, "miscolor":3, "miscompute":3, "miscomputed":4, "miscomputing":4, "miscomputation":5, "misconceive":3, "misconceived":3, "misconceiver":4, "misconceiving":4, "misconception":4, "misconduct":3, "misconjecture":4, "misconjectured":4, "misconjecturing":5, "misconjugate":4, "misconjugated":5, "misconjugating":5, "misconstruction":4, "misconstrue":3, "misconstrued":3, "misconstruing":4, "miscount":2, "miscounsel":3, "miscounseled":3, "miscounselled":3, "miscounseling":4, "miscounselling":4, "miscreance":3, "miscreant":3, "miscreancy":4, "miscreate":3, "miscreated":4, "miscreative":4, "miscreator":4, "miscue":2, "miscued":2, "miscultivated":5, "miscut":2, "miscutting":3, "miscuing":3, "misdate":2, "misdated":3, "misdating":3, "misdeal":2, "misdealt":2, "misdealing":3, "misdeed":2, "misdeem":2, "misdefine":3, "misdefined":3, "misdefining":4, "misdeliver":4, "misdeliveries":5, "misdelivery":5, "misdemean":3, "misdemeanant":4, "misdemeanor":4, "misderive":3, "misderived":3, "misderiving":4, "misdescribe":3, "misdescribed":3, "misdescribing":4, "misdictated":4, "misdid":2, "misdiagrammed":4, "misdidived":4, "misdirect":3, "misdirection":4, "misdivide":3, "misdividing":4, "misdo":2, "misdone":2, "misdoubt":2, "misdoer":3, "misdoing":3, "misdraw":2, "misdrawn":2, "misdrawing":3, "misdrew":2, "misease":2, "misedit":3, "miseducate":4, "miseducated":5, "miseducating":5, "miseducation":5, "misemphasis":4, "misemphasize":4, "misemphasized":4, "misemphasizing":5, "miserable":4, "miserableness":5, "miserably":4, "miseries":3, "misericord":4, "misericorde":4, "misericordia":6, "misery":3, "misesteem":3, "misestimate":4, "misestimated":5, "misestimating":5, "misestimation":5, "misexplained":3, "miserere":4, "miserere":4, "misfashion":3, "misfashioned":3, "misfeasance":3, "misfeasor":3, "misfeature":3, "misfeatured":3, "misfield":2, "misfile":2, "misfire":2, "misfit":2, "misfitted":3, "misfitting":3, "misform":2, "misformed":2, "misformation":4, "misfortune":3, "misfocus":3, "misfocused":3, "misfocussed":3, "misfocusing":4, "misfocussing":4, "misframe":2, "misframed":2, "misframing":3, "misgauged":2, "misgauging":3, "misgave":2, "misgive":2, "misgiven":3, "misgiving":3, "misgivingly":4, "misgovern":3, "misgrade":2, "misgraded":3, "misgrading":3, "misgraft":2, "misguage":2, "misguide":2, "misguidance":3, "misguided":3, "misguidedly":4, "misguidedness":4, "misguider":3, "misguidguiding":4, "mishandle":3, "mishap":2, "mishear":2, "misheard":2, "mishearing":3, "mishit":2, "misinfer":3, "misinferred":3, "misinference":4, "misinferring":4, "misinform":3, "misinformant":4, "misinformative":5, "misinformer":4, "misinformation":5, "misinstruct":3, "misinstruction":4, "misintend":3, "misintention":4, "misinterpret":4, "misinterpretable":6, "misinterpreter":5, "misinterpretation":6, "misidentified":5, "misidentification":7, "misidentify":5, "misidentifying":6, "misitemized":4, "misjoin":2, "misjoinder":3, "misjudge":2, "misjudgment":3, "misknew":2, "misknow":2, "misknowledge":3, "misknown":2, "misknowing":3, "miskolc":2, "mislaid":2, "mislay":2, "mislayer":3, "mislaying":3, "mislabel":3, "mislabeled":3, "mislabelled":3, "mislabeling":4, "mislabelling":4, "mislead":2, "misleader":3, "misleading":3, "mislearn":2, "misled":2, "mislike":2, "misliked":2, "misliker":3, "misliking":3, "mislocate":3, "mislocated":4, "mislocating":4, "mislocation":4, "mismade":2, "mismake":2, "mismaking":3, "mismanage":3, "mismanaged":3, "mismanagement":4, "mismanager":4, "mismanaging":4, "mismarriage":3, "mismatch":2, "mismate":2, "mismated":3, "mismating":3, "mismeasure":3, "mismeasured":3, "mismeasuring":4, "mismount":2, "misnarrate":3, "misnarrated":4, "misnarrating":4, "misnavigate":4, "misnavigated":5, "misnavigating":5, "misnavigation":5, "misnomer":3, "misnumber":3, "misoccupied":4, "misoccupy":4, "misoccupying":5, "misorganize":4, "misorganized":4, "misorganizing":5, "misorganization":6, "misocainea":5, "misogamic":4, "misoneism":4, "misopaedist":4, "misopaedia":5, "misopedist":4, "mispacked":2, "mispackaged":3, "mispage":2, "mispaged":2, "mispaging":3, "mispagination":5, "misparse":2, "misparsed":2, "misparsing":3, "mispatch":2, "misperceive":3, "misperceived":3, "misperceiving":4, "misperception":4, "misperform":3, "misperformance":4, "misphrase":2, "misphrased":2, "misphrasing":3, "mispick":2, "mispickel":3, "misplace":2, "misplaced":2, "misplaced modifier":6, "misplacement":3, "misplacing":3, "misplant":2, "misplay":2, "misplead":2, "mispleading":3, "mispractice":3, "mispracticed":3, "mispracticing":4, "mispractise":3, "mispractised":3, "mispractising":4, "mispresent":3, "misprint":2, "misprincipled":4, "misprise":2, "misprised":2, "mispriser":3, "misprising":3, "misprize":2, "misprision":3, "misproud":2, "misproduce":3, "misproduced":3, "misproducing":4, "mispronounce":3, "mispronouncer":4, "mispronunciation":6, "misproportion":4, "mispropose":3, "misproposed":3, "misproposal":4, "misproposing":4, "misprovoke":3, "misprovoked":3, "misprovoking":4, "mispublished":3, "mispublicized":4, "mispunctuate":4, "mispunctuated":5, "mispunctuating":5, "mispunctuation":5, "mispurchase":3, "mispurchased":3, "mispurchasing":4, "misqualified":4, "misqualify":4, "misqualifying":5, "misquote":2, "misquoted":3, "misquoter":3, "misquoting":3, "misquotation":4, "misrate":2, "misrated":3, "misrating":3, "misread":2, "misreader":3, "misrecollect":4, "misreference":4, "misregulate":4, "misregulated":5, "misregulating":5, "misrender":3, "misrepresent":4, "misrepresenter":5, "misrepresentation":6, "misrepresentative":6, "misrefer":3, "misreferred":3, "misreferring":4, "misreflect":3, "misreform":3, "misrehearse":3, "misrehearsed":3, "misrehearsing":4, "misrelate":3, "misrelated":4, "misrelating":4, "misrelied":3, "misreliance":4, "misrely":3, "misrelying":4, "misreport":3, "misreporter":4, "misreprint":3, "misreward":3, "misrhymed":2, "misrt":2, "misrule":2, "misruled":2, "misruler":3, "misruling":3, "misrun":2, "missa":2, "missal":2, "missample":3, "missayer":3, "misseat":2, "misseem":2, "missel thrush":3, "missend":2, "missending":3, "missent":2, "misshape":2, "misshapen":3, "misshapenly":4, "misshapenness":4, "misship":2, "misshipped":2, "misshipment":3, "misshipping":3, "missile":2, "missilery":3, "missilry":3, "missing":2, "missing link":3, "mission":2, "mission":2, "missionaries":4, "missionary":4, "missionary ridge":5, "missioner":3, "missis":2, "mississauga":4, "mississippi":4, "mississippian":5, "missive":2, "missort":2, "missound":2, "missouri":3, "missouris":3, "missolonghi":4, "misspace":2, "misspaced":2, "misspacing":3, "misspeak":2, "misspeaking":3, "misspell":2, "misspelling":3, "misspelt":2, "misspend":2, "misspoke":2, "misspoken":3, "misstart":2, "misstate":2, "misstatement":3, "misstater":3, "misstating":3, "missteer":2, "misstep":2, "misstyle":2, "misstyled":2, "misstyling":3, "missuppose":3, "missupposed":3, "missupposing":4, "missus":2, "missyllabified":5, "missyllabification":7, "missyllabify":5, "missyllabifying":6, "mistake":2, "mistakeable":4, "mistakable":4, "mistakableness":5, "mistakably":4, "mistaken":3, "mistakenly":4, "mistakenness":4, "mistaker":3, "mistaking":3, "mistakingly":4, "mistal":2, "mistassini":4, "mistaught":2, "misteach":2, "misteacher":3, "misteaching":3, "mister":2, "mister":2, "misterm":2, "misthread":2, "misthrew":2, "misthrow":2, "misthrown":2, "misthrowing":3, "misti":2, "mistilled":2, "mistime":2, "mistimed":2, "mistiming":3, "mistigris":3, "mistitle":3, "mistle thrush":3, "mistletoe":3, "mistook":2, "mistrace":2, "mistraced":2, "mistracing":3, "mistral":2, "mistral":2, "mistranslate":3, "mistranslated":4, "mistranslating":4, "mistranslation":4, "mistranscribe":3, "mistranscribed":3, "mistranscribing":4, "mistranscription":4, "mistreat":2, "mistreatment":3, "mistress":2, "mistress":2, "mistrial":3, "mistrust":2, "mistruster":3, "mistrustful":3, "mistrustfully":4, "mistrustfulness":4, "mistrustingly":4, "mistryst":2, "mistune":2, "mistutor":3, "mistype":2, "mistyped":2, "misunderstand":4, "misunderstander":5, "misunderstanding":5, "misunderstandingly":6, "misunderstood":4, "misunion":3, "misuse":2, "misused":2, "misusage":3, "misuser":3, "misusing":3, "misvalue":3, "misvalued":3, "misvaluing":4, "misventure":3, "miswire":2, "misword":2, "misworship":3, "misworshipped":3, "misworshiping":4, "misworshipping":4, "miswrite":2, "miswriting":3, "miswritten":3, "miswrote":2, "miszone":2, "mit":1, "mitch":1, "mitchell":2, "mite":1, "mithan":2, "mither":2, "mithgarth":2, "mithgarthr":3, "mithra":2, "mithraea":3, "mithraeum":3, "mithras":2, "mithradates vi":5, "mithraism":3, "mithraicism":4, "mithridate":3, "mithridatic":4, "mithridates vi":5, "mithridatise":4, "mithridatised":4, "mithridatism":4, "mithridatising":5, "mithridatize":4, "mithridatized":4, "mithridatizing":5, "mitsvah":2, "mitt":1, "mitzvah":2, "mitford":2, "miticide":3, "mitigate":3, "mitigatedly":5, "mitigating circumstances":8, "mitigable":4, "mitigation":4, "mitigative":4, "mitigator":4, "mitigatory":5, "mitnagdim":3, "mitnagged":3, "mitrephorus":4, "mitscher":2, "mittag-leffler":3, "mittatur":3, "mitteleuropa":5, "mittelland canal":5, "mitten":2, "mittenlike":3, "mitterrand":3, "mittimus":3, "mittimuses":4, "mitzi":2, "mitzie":2, "mix":1, "mix-up":1, "mixed":1, "mixed blessing":3, "mixed crystal":3, "mixed doubles":3, "mixed farming":3, "mixed language":3, "mixed marriage":3, "mixed metaphor":4, "mixt":1, "mixability":5, "mixable":3, "mixableness":4, "mixedly":3, "mixedness":3, "mixer":2, "mixing":2, "mixible":3, "mixologist":4, "mixolydian":5, "mixoploid":3, "mixoploidy":4, "mixtec":2, "mixtecan":3, "mixteco":3, "mixture":2, "mizen":2, "mizenmast":3, "mizrah":2, "mizrachi":3, "mizrahi":3, "mizzen":2, "mizzenmast":3, "mizzle":2, "milnir":3, "mia":2, "mia mia":4, "miae":2, "mial":2, "miami":3, "miami beach":4, "miamis":3, "miamisburg":4, "miaou":2, "miaow":2, "miass":2, "miasma":3, "miasmal":3, "miasmatic":4, "miasmata":4, "miaul":2, "miazine":3, "mica":2, "micah":2, "micawber":3, "micawberish":4, "micawberism":4, "micajah":3, "micell":2, "micelle":2, "micella":3, "micellar":3, "micellarly":4, "michael":2, "michal":2, "michaux":2, "michel":2, "michelangelo":5, "michelson":3, "michelson-morley experiment":8, "micheas":3, "michele":3, "michelozzo":4, "michol":2, "michoac":4, "michoacn":5, "micra":2, "micrified":3, "micrify":3, "micrifying":4, "microbe":2, "microbeless":3, "microgamy":4, "microglia":4, "microglial":4, "micrographer":4, "micrography":4, "microhm":2, "micrologist":4, "micrometer":4, "micrometer screw":5, "micrometry":4, "micron":2, "micropsia":4, "microptic":3, "microscopist":4, "microscopy":4, "microstomous":4, "microtomist":4, "microtomy":4, "microaerophile":5, "microaerophilic":6, "microampere":4, "microangstrom":4, "microanalyst":5, "microanalytical":7, "microanalysis":6, "microbacteria":6, "microbacterium":6, "microbalance":4, "microbarogram":5, "microbarograph":5, "microbic":3, "microbial":4, "microbian":4, "microbicide":4, "microbicidal":5, "microbiologist":6, "microbiology":6, "microbiological":7, "microbiologically":8, "microcephalous":5, "microcephaly":5, "microcephalia":6, "microchemistry":5, "microchemical":5, "microcircuit":4, "microciona":5, "microcline":3, "microclimate":4, "microclimatic":5, "microclimatically":7, "microclimatologist":7, "microclimatology":7, "microclimatologic":7, "micrococcal":4, "micrococci":4, "micrococcic":4, "micrococcus":4, "microconstituent":6, "microcopies":4, "microcopy":4, "microcosm":3, "microcosmic":4, "microcosmic salt":5, "microcosmical":5, "microcosmos":4, "microcoulomb":4, "microcrystal":4, "microcrystalline":5, "microcrystallinity":7, "microcurie":4, "microcyte":3, "microdetector":5, "microdissection":5, "microdistillation":6, "microdont":3, "microdontism":4, "microdontia":4, "microdontic":4, "microdontous":4, "microdot":3, "microdyne":3, "microelement":5, "microenvironment":6, "microenvironmental":7, "microeconomics":6, "microelectronic":6, "microelectronics":6, "microelectrophoretic":8, "microelectrophoresis":8, "microfarad":4, "microfiche":3, "microfilm":3, "microfilm plotter":5, "microfossil":4, "microgamete":4, "microgram":3, "microgramme":3, "micrograph":3, "micrographic":4, "micrographically":6, "microgroove":3, "microhabitat":5, "microhardness":4, "microhenry":4, "microinjection":5, "microlambert":4, "microlecithal":5, "microlite":3, "microlith":3, "microliter":4, "microlitre":4, "micrological":5, "microlux":3, "micrometrical":5, "micrometrically":6, "micrometeorite":6, "micrometeorology":8, "micrometeorogram":7, "micrometeorograph":7, "micromho":3, "micromillimeter":6, "micromillimetre":6, "microminiaturisation":8, "microminiaturization":8, "microminiature":6, "microminiaturize":7, "microminiaturized":7, "microminiaturizing":8, "microminiaturization":9, "micromicrocurie":6, "micromotion":4, "micronemous":4, "micronesia":4, "micronesian":4, "micronesia":5, "micronesian":5, "micronucleate":5, "micronuclei":5, "micronucleus":5, "micronutrient":5, "microorganism":5, "micropalaeontology":8, "microparasite":5, "microparasitic":6, "micropaleontologist":8, "micropaleontology":8, "micropaleontological":9, "micropathology":6, "microphage":3, "microphone":3, "microphonism":4, "microphot":3, "microphotography":6, "microphotometer":6, "microphotograph":5, "microphotographic":6, "microphotometric":6, "microphysics":4, "microphysical":5, "microphyte":3, "microphytic":4, "micropia":4, "microporous":4, "microprint":3, "microprocessor":5, "micropyle":3, "micropyrometer":6, "microreader":4, "microreproduction":6, "microscope":3, "microscopic":4, "microscopical":5, "microscopopy":4, "microscopium":5, "microsecond":4, "microsegment":4, "microseism":3, "microseismic":4, "microsiemens":4, "microsome":3, "microspectrophotometry":8, "microspectrophotometric":8, "microspore":3, "microsporic":4, "microsporophyll":5, "microsporangia":6, "microsporangium":6, "microsporophyll":5, "microstat":3, "microstethoscope":5, "microstomatous":5, "microstress":3, "microstructure":4, "microstylous":4, "microsurgery":5, "microswitch":3, "microtherm":3, "microthermic":4, "microtome":3, "microtone":3, "microtonal":4, "microtonally":5, "microtonality":6, "microvolt":3, "microwatt":3, "microwave":3, "microwave oven":5, "microwave spectroscopy":7, "microrganismal":7, "micrurgy":3, "midas":2, "midi":2, "midi-pyrn":4, "mignon":2, "mignon":2, "mignonne":2, "mignonne":2, "mignonette":3, "mignonette":3, "mignonette-vine":3, "migonitis":4, "migraine":2, "migrainoid":3, "migrainous":3, "migrant":2, "migrate":2, "migrated":3, "migrating":3, "migration":3, "migrational":4, "migrative":3, "migratory":4, "miguel":2, "mihail":3, "mihly":3, "mikan":2, "mikado":3, "mikhail":3, "mikron":2, "milan":2, "milazzo":3, "miladi":3, "milady":3, "milano":3, "milanov":3, "miles gloriosus":6, "milesian":3, "milesian":4, "miletus":3, "milhaud":2, "milieu":2, "militia":3, "militiaman":4, "milo":2, "milo":2, "milometer":4, "milord":2, "milos":2, "milovan":3, "milyukov":3, "mimamsa":3, "mimas":2, "mimetic":3, "mimesis":3, "mimir":2, "mimosa":3, "mimosis":3, "mina":2, "mina hassan tani":6, "minah":2, "minas basin":4, "minas gerais":4, "minacious":3, "minamoto":4, "minersville":3, "minerva":3, "minho":2, "minicoy":3, "mino":2, "minor":2, "minor":2, "minor axis":4, "minor canon":4, "minor key":3, "minor league":3, "minor mode":3, "minor orders":4, "minor planet":4, "minor premiss":4, "minor seventh chord":5, "minor suit":3, "minor term":3, "minor-league":2, "minor-leaguer":3, "minorca":3, "minorite":3, "minority":4, "minority carrier":7, "minos":2, "minot":2, "minoan":3, "minorite":3, "minus":2, "minus sign":3, "minuscule":3, "minuscular":4, "minute":2, "minutely":3, "minuteness":3, "minuter":3, "minutest":3, "minutia":4, "minutiae":4, "minutial":4, "minyades":4, "miombo":3, "miotic":3, "miocene":3, "miosis":3, "miquelon":3, "mir":2, "mira":2, "mira ceti":4, "miraculous":4, "miraculously":5, "miraculousness":5, "mirage":2, "miranda":3, "mirabile dictu":6, "miracidia":5, "miracidial":5, "miracidium":5, "miraflores":4, "miri":2, "mir":3, "mis":2, "mischa":2, "miser":2, "miserliness":4, "miserly":3, "miseno":3, "misenus":3, "mishanter":3, "mishima":3, "miso":2, "misogamist":4, "misogamy":4, "misogynic":4, "misogynist":4, "misogynistic":5, "misogynous":4, "misogyny":4, "misologist":4, "misology":4, "mitanni":3, "mitannian":4, "miter":2, "mitered":2, "miterer":3, "mitergate":3, "miterwort":3, "mitis":2, "mitis metal":4, "mitilni":4, "mitotic":3, "mitotically":5, "mitochondrial":5, "mitochondrion":5, "mitokoromono":6, "mitosis":3, "mitra":2, "mitra":2, "mitrailleur":3, "mitrailleuse":3, "mitral":2, "mitral valve":3, "mitre":2, "mitre":2, "mitre block":3, "mitre box":3, "mitre joint":3, "mitre square":3, "mitrewort":3, "mizar":2, "mizoguchi":4, "mizoram":3, "mio":3, "mjollnir":2, "mjllnir":3, "mjlnir":3, "mks units":3, "mksa system":3, "mkt":1, "mla":1, "mld":1, "mlf":1, "mlg":1, "mlle":1, "mlr":1, "mme":1, "mmf":1, "mmhg":1, "mmus":1, "mnesicles":3, "mneme":2, "mnemic":2, "mnemon":2, "mnemonic":3, "mnemonics":3, "mnemonically":5, "mnemosyne":4, "mnemotechnics":4, "mo-tse":1, "mo-tze":1, "moan":1, "moanful":2, "moanfully":3, "moaningly":3, "moat":1, "mob":1, "mobs":1, "mobber":2, "mobbish":2, "mobbishly":3, "mobbishness":3, "mobbism":2, "mobbist":2, "mobcap":2, "mobocracy":4, "mobocrat":3, "mobocratic":4, "mobocratical":5, "mobster":2, "moc":1, "mock":1, "mock orange":3, "mock turtle soup":4, "mock-heroic":3, "mock-up":1, "mockers":2, "mockeries":3, "mockernut":3, "mockery":3, "mockingbird":3, "moccasin":3, "moccasin flower":5, "moccasin telegraph":6, "moche":2, "moctezuma":4, "mod":1, "mode":1, "modge":1, "mods":1, "modal":2, "modal logic":4, "modally":3, "modated":3, "modating":3, "model":2, "modeled":2, "modelled":2, "modeler":3, "modeling":3, "modeller":3, "modelling":3, "modern":2, "modern dance":3, "modern english":4, "modern greats":3, "modern greek":3, "modern hebrew":4, "modern jazz":3, "modernise":3, "modernised":3, "modernism":3, "modernistic":4, "moderniser":4, "modernising":4, "modernize":3, "modernized":3, "modernizer":4, "modernizing":4, "modernization":5, "modernly":3, "modernness":3, "moderate":3, "moderate breeze":4, "moderate gale":4, "moderately":4, "moderateness":4, "moderation":4, "moderations":4, "moderator":4, "moderatorship":5, "moderatorial":6, "modest":2, "modestly":3, "modesty":3, "moderato":4, "modish":2, "modishly":3, "modishness":3, "modicum":3, "modified":3, "modifiability":7, "modifiable":5, "modifiableness":6, "modificand":4, "modification":5, "modifier":4, "modify":3, "modifying":4, "modrit":2, "module":2, "modular":3, "modularity":5, "modulate":3, "modulated":4, "modulating":4, "modulation":4, "modulator":4, "modulo":3, "modulus":3, "modulus of elasticity":9, "modulus of rigidity":8, "moebius":3, "moerae":2, "moeragetes":4, "moesia":3, "moesogoth":3, "moesogothic":4, "moffette":2, "mog":1, "mogadiscio":5, "mogadishu":4, "mogador":3, "mogadore":3, "mogadore":3, "mogging":2, "moggy":2, "mogilalia":5, "moham":1, "mohism":2, "mohist":2, "mohwa":2, "moi":1, "moil":1, "moiler":2, "moilingly":3, "moire":1, "moist":1, "moistener":3, "moistful":2, "moistless":2, "moistly":2, "moistness":2, "moissan":2, "moisten":2, "moisture":2, "moistureless":3, "moisturise":3, "moisturize":3, "moisturizer":4, "moit":1, "moitier":3, "moitiest":3, "moity":2, "moider":2, "moidore":2, "moiety":3, "moigno":2, "moina":2, "moir":2, "moira":2, "moirai":2, "moir":3, "moiseyev":3, "moither":2, "moke":1, "mokpo":2, "mol":1, "mold":1, "moldy":1, "moldable":3, "moldboard":2, "molder":2, "molding":2, "moldiness":3, "moldwarp":2, "moldy":2, "mole":1, "mole cricket":3, "molehill":2, "moleskin":2, "moleskins":2, "moll":1, "moll":1, "mollweide projection":6, "molt":1, "molter":2, "moltke":2, "moldau":2, "moldavite":3, "moldavia":4, "moldavian":4, "molecule":3, "molilalia":5, "mollah":2, "mollah":2, "mollendo":3, "mollescence":3, "mollescent":3, "mollet":2, "mollie":2, "mollifiable":5, "mollification":5, "mollifier":4, "mollify":3, "mollifyingly":5, "mollusc":2, "mollusk":2, "mollusklike":3, "mollusca":3, "molluscoid":3, "molluscoidal":4, "molluscous":3, "molluscum":3, "molly":2, "molly":2, "molly maguire":4, "mollycoddle":4, "mollycoddler":4, "moln":2, "molokan":3, "molotov":3, "molotov cocktail":5, "molten":2, "moltenly":3, "molto":2, "molvi":2, "mom":1, "mome":1, "mommsen":2, "mombasa":3, "momism":2, "mommy":2, "momps":3, "momser":2, "momzer":2, "mon":1, "mon":1, "monck":1, "moncton":2, "mond process":3, "mondial":3, "mong":1, "monge":1, "monk":1, "monk":1, "monkshood":2, "monkery":3, "monkfish":2, "monkfishes":3, "monkhood":2, "monkish":2, "mons":1, "mons":1, "mons pubis":3, "mons veneris":4, "mont":1, "mont cervin":3, "mont cenis":3, "mont-de-marsan":2, "mont-de-pit":4, "mont-de-pit":2, "mont-saint-michel":2, "month":1, "monthly":2, "monts-de-pit":4, "montbretia":3, "montbliard":3, "montcalm":2, "montclair":2, "montfort":2, "montgolfier":3, "montgolfier":3, "montgolfier":4, "montgolfier":4, "montgolfiers":4, "montgomery":4, "montgomeryshire":5, "montlucon":3, "montluon":4, "montmartre":3, "montmorillonitic":6, "montparnasse":3, "montpelier":3, "montpellier":3, "montreal":3, "montrose":2, "montral":4, "montserrat":3, "monacid":3, "monad":2, "monadism":3, "monadistic":4, "monadology":5, "monal":2, "monarch":2, "monarchism":3, "monarchist":3, "monarchistic":4, "monarchy":3, "monas":2, "monastery":4, "monasterial":5, "monaul":2, "monaural":3, "monaxial":4, "monaca":3, "monachal":3, "monachism":3, "monachist":3, "monaco":3, "monadelphous":4, "monades":3, "monaghan":3, "monahans":3, "monatomic":4, "monazite":3, "monbacker":2, "monclova":3, "mondale":2, "monday":2, "monday club":3, "mondays":2, "mondo":2, "mondrian":3, "monergism":3, "money":2, "money cowry":4, "money market":4, "money of account":5, "money order":4, "money spider":4, "money wages":4, "money-grubbing":3, "money-spinner":3, "moneyed":2, "moneys":2, "moneybag":3, "moneybags":3, "moneychanger":4, "moneyer":3, "moneylender":4, "moneyless":3, "moneymaker":4, "moneywort":3, "monegasque":3, "monetarist":4, "monetarily":5, "monetary":4, "monetary unit":6, "monetise":3, "monetize":3, "monetization":5, "monger":2, "mongo":2, "mongoe":2, "mongol":2, "mongol":2, "mongolic":3, "mongolism":3, "mongoloid":3, "mongoloid":3, "mongoose":2, "mongooses":3, "mongolism":3, "mongolia":4, "mongolian":4, "mongolian":4, "mongolian idiocy":8, "mongolian people's republic":9, "mongolianism":5, "mongrel":2, "mongrelise":3, "mongrelised":3, "mongrelism":3, "mongreliser":4, "mongrelising":4, "mongrelize":3, "mongrelized":3, "mongrelizing":4, "mongrelly":3, "mongrelness":3, "monic":2, "monicker":3, "monied":2, "monies":2, "monism":2, "monist":2, "monica":3, "moniker":3, "monitor":3, "monitorship":4, "monitorial":5, "monitory":4, "monitress":3, "monkey":2, "monkey bread":3, "monkey business":4, "monkey flower":4, "monkey jacket":4, "monkey nut":3, "monkey puzzle":4, "monkey shines":3, "monkey suit":3, "monkey tricks":3, "monkey wrench":3, "monkey-rigged":2, "monkeyed":2, "monkeying":3, "monkeyish":3, "monkeyishly":4, "monkeyishness":4, "monkeypot":3, "monmouth":2, "monmouthshire":3, "monnet":2, "monnion":3, "mono":2, "monoid":2, "monophthong":3, "monophthongize":4, "monophthongized":4, "monophthongizing":5, "monophthongization":6, "monophthongal":4, "monopteron":4, "monopteros":4, "monoxide":3, "monoacid":4, "monoatomic":5, "monobath":3, "monobasic":4, "monobasicity":6, "monoblastic":4, "monocarp":3, "monocarpellary":6, "monocarpic":4, "monocarpous":4, "monochasia":5, "monochasial":5, "monochasium":5, "monochloride":4, "monochord":3, "monochrome":3, "monochromist":4, "monochroic":4, "monochromat":4, "monochromate":4, "monochromatic":5, "monochromatically":7, "monochromaticity":7, "monochromatism":5, "monochromator":5, "monochromic":4, "monochromical":5, "monochromically":6, "monochromy":4, "monocle":3, "monocled":3, "monocline":3, "monoclinic":4, "monoclinal":4, "monoclinism":4, "monoclinous":4, "monocoque":3, "monocot":3, "monocotyl":4, "monocotyledon":6, "monocotyledonous":7, "monoculture":4, "monocultural":5, "monocyte":3, "monocytic":4, "monocycle":4, "monocyclic":4, "monocycly":4, "monodactylism":5, "monodactyly":5, "monodia":4, "monodimetric":5, "monodramatist":5, "monodrama":4, "monodramatic":5, "monody":3, "monofil":3, "monofilament":5, "monogamic":4, "monogenesis":5, "monogenic":4, "monogenically":6, "monogenetic":5, "monogram":3, "monogrammatic":5, "monograph":3, "monographic":4, "monographically":6, "monogynoecial":5, "monohull":3, "monohybrid":4, "monohydrate":4, "monohydrated":5, "monohydric":4, "monohydroxy":5, "monokini":4, "monolayer":4, "monolingual":4, "monolith":3, "monolithic":4, "monolithism":4, "monolithically":6, "monolog":3, "monologue":3, "monologic":4, "monomark":3, "monomania":5, "monomaniac":5, "monomaniacal":6, "monomer":3, "monomeric":4, "monomethylamine":6, "monometallism":5, "monometrical":5, "monometallic":5, "monomorphic":4, "monomorphous":4, "monomolecular":6, "monomolecularly":7, "mononuclear":5, "mononucleosis":6, "monopetalous":5, "monophagia":4, "monophonic":4, "monophobia":5, "monophyllous":4, "monophyletic":5, "monophysitic":5, "monoplane":3, "monoplanist":4, "monoplegic":4, "monoplegia":5, "monoploid":3, "monopode":3, "monopodic":4, "monopolylogue":5, "monopodial":5, "monopodially":6, "monopodium":5, "monoprotic":4, "monopropellant":5, "monorail":3, "monorhine":3, "monorhinal":4, "monorhinous":4, "monorhyme":3, "monosacch":4, "monosaccharide":5, "monoscope":3, "monosepalous":5, "monosepalous":5, "monosemy":4, "monosome":3, "monosodium":5, "monosodium glutamate":8, "monosomic":4, "monospermal":4, "monospermous":4, "monostich":3, "monostichic":4, "monostichous":4, "monostome":3, "monostrophic":4, "monostylous":4, "monosyllabic":5, "monosyllabically":7, "monosyllabicity":7, "monosyllabism":5, "monosyllable":5, "monosyllogism":5, "monosymptomatic":6, "monosymmetric":5, "monosymmetrical":6, "monosymmetrically":7, "monosymmetry":5, "monotheism":4, "monotheistic":5, "monotheistical":6, "monotheistically":7, "monotint":3, "monotone":3, "monotonic":4, "monotonically":6, "monotonal":4, "monotreme":3, "monotremata":5, "monotrichic":4, "monotriglyph":4, "monotriglyphic":5, "monotron":3, "monotropic":4, "monotropically":6, "monotype":3, "monotype":3, "monotypic":4, "monovalence":4, "monovalent":4, "monovalency":5, "monozygotic":5, "monozygous":4, "monroe":2, "monroe doctrine":4, "monrovia":4, "monsarrat":3, "monseigneur":3, "monseigneur":3, "monsieur":2, "monsignor":3, "monsignor":3, "monsignori":4, "monsoon":2, "monsoonal":3, "monster":2, "monstrance":2, "monstrosity":4, "monstrous":2, "monstrously":3, "monstrousness":3, "montage":2, "montaigne":2, "montalvo":3, "montan wax":3, "montane":2, "montana":3, "montanan":3, "montauban":3, "montagnac":3, "montagnard":3, "montagu":3, "montagu's harrier":6, "montale":3, "montanari":4, "monte":2, "monte":2, "monte carlo":4, "monte carlo method":6, "monte cassino":5, "monte corno":4, "monteith":2, "monterrey":3, "montes":2, "montespan":3, "montesquieu":3, "montessori":4, "montessori method":6, "monteux":2, "montefiascone":5, "montefiore":4, "montego bay":4, "montenegro":4, "monterey":3, "montero":3, "montera":5, "montevallo":4, "monteverdi":4, "montevideo":5, "montezuma ii":5, "montherlant":3, "monticulate":4, "montilla":3, "monticello":4, "monticule":3, "montoursville":3, "montrachet":3, "montreuil":2, "montreux":2, "montreal":3, "monty":2, "monument":3, "monumentless":4, "monumental":4, "monumentalise":5, "monumentalised":5, "monumentalism":5, "monumentalising":6, "monumentalize":5, "monumentalized":5, "monumentalizing":6, "monumentality":6, "monumentally":5, "mony":2, "monza":2, "monzaemon":4, "monzonite":3, "monzonitic":4, "moo":1, "mooch":1, "moocher":2, "mood":1, "moodier":3, "moodiest":3, "moodily":3, "moodiness":3, "moody":2, "moog synthesizer":5, "moolvee":2, "moolvi":2, "moolvie":2, "moon":1, "moon blindness":3, "mooned":1, "moonbeam":2, "moonbow":2, "mooncalf":2, "mooneye":2, "moonfish":2, "moonflower":3, "moonish":2, "moonishly":3, "moonier":3, "mooniest":3, "moonily":3, "mooniness":3, "moonless":2, "moonlight":2, "moonlight flit":3, "moonlighted":3, "moonlighting":3, "moonlit":2, "moonquake":2, "moonraker":3, "moonrise":2, "moonscape":2, "moonseed":2, "moonset":2, "moonshine":2, "moonshiner":3, "moonshiny":3, "moonshot":2, "moonsif":2, "moonstone":2, "moonstricken":3, "moonstruck":2, "moonwort":2, "moony":2, "moor":1, "moor":1, "moore":1, "mooresville":2, "moorage":2, "moorcock":2, "moorfowl":2, "moorhen":2, "mooring":2, "mooring mast":3, "moorings":2, "moorish":2, "moorish idol":4, "moorland":2, "moorwort":2, "moory":2, "moose":1, "moosemilk":2, "moosewood":2, "moot":1, "mooter":2, "mootness":2, "moody":2, "mooing":2, "moolah":2, "moonachie":3, "moosic":2, "mop":1, "mop-up":1, "mope":1, "mopes":1, "mopboard":2, "moper":2, "mopey":2, "moping":2, "mopingly":3, "mopier":3, "mopiest":3, "moppers-up":2, "moppet":2, "mopping":2, "mopping-up":2, "moppo":2, "mopsus":2, "mopy":2, "mor":1, "mor":1, "mordvin":2, "mordvinian":4, "more":1, "more":1, "morecambe":2, "moreish":2, "moreness":2, "moreover":3, "morepork":2, "moreton bay fig":4, "morgue":1, "morn":1, "morning":2, "morning coat":3, "morning dress":3, "morning sickness":4, "morning star":3, "morning watch":3, "morning-glory":3, "mornings":2, "morph":1, "mors":1, "morse":1, "morse":1, "mort":1, "mort":1, "mortgage":2, "mortgager":3, "mortgagor":3, "mortgagee":3, "mortgagor":3, "mortling":2, "mortmain":2, "moral":2, "moral hazard":4, "moral philosophy":6, "moral rearmament":6, "moral theology":6, "moralise":3, "moralised":3, "moralism":3, "moralist":3, "moralising":4, "moralistic":4, "moralistically":6, "moralize":3, "moralized":3, "moralizing":4, "moralless":3, "morar":2, "moraxella":4, "moray":2, "moray firth":3, "moratoria":5, "moratorium":5, "morbid":2, "morbid anatomy":6, "morbidity":4, "morbific":3, "morbifical":4, "morbifically":5, "morbilli":3, "morbidezza":4, "morbihan":3, "morceau":2, "morcha":2, "mordacity":4, "mordant":2, "mordantly":3, "mordancy":3, "mordacious":3, "mordaciously":4, "mordent":2, "mordecai":3, "mordecai":4, "mordred":2, "mordvinian":4, "mordy":2, "morgain le fay":4, "morgan":2, "morgan le fay":4, "morgana":3, "morganfield":3, "morganic":3, "morganite":3, "morgagni":3, "morganatic":4, "morganatically":6, "morgen":2, "morgenthau":3, "morish":2, "moribund":3, "moribundly":4, "moribundity":5, "morison":3, "morley":2, "mormon":2, "mormonism":3, "mormyrid":3, "mornay":2, "mornay":2, "moro":2, "moron":2, "morphallaxis":4, "morpheme":2, "morphemic":3, "morphemically":5, "morphean":3, "morpheus":3, "morphine":2, "morphinism":3, "morphinize":3, "morphinized":3, "morphinizing":4, "morphia":3, "morpho":2, "morphologist":4, "morphology":4, "morphotic":3, "morphogenesis":5, "morphogenetic":5, "morpholine":3, "morphologic":4, "morphologically":6, "morphoneme":3, "morphonemic":4, "morphonemics":4, "morphophoneme":4, "morphophonemics":5, "morphosis":3, "morphotonemic":5, "morphotonemics":5, "morphy":2, "morrie":2, "morrilton":3, "morris":2, "morris chair":3, "morris dance":3, "morrison":3, "morro":2, "morrow":2, "morrow":2, "morsel":2, "mortal":2, "mortal sin":3, "mortality":4, "mortality rate":5, "mortality table":6, "mortally":3, "mortar":2, "mortarboard":3, "mortarless":3, "mortary":3, "mortadella":4, "mortice":2, "morticed":2, "morticing":3, "mortie":2, "mortiferous":4, "mortise":2, "mortise lock":3, "mortiser":3, "mortician":3, "mortified":3, "mortifiedly":4, "mortification":5, "mortifier":4, "mortify":3, "mortifying":4, "mortifyingly":5, "mortimer":3, "morton":2, "mortuaries":4, "mortuary":4, "morty":2, "morula":3, "morwong":2, "mos":1, "moseley":2, "mosque":1, "moss":1, "moss":1, "moss agate":3, "mossback":2, "mossbunker":3, "mossier":3, "mossiest":3, "mossiness":3, "mosstrooper":3, "mosstroopery":4, "mosstrooping":3, "mossy":2, "most":1, "most honorable":5, "most reverend":4, "mostly":2, "moszkowski":3, "mosby":2, "moschate":2, "moschatel":3, "moscow":2, "moskva":2, "moslem":2, "moslemic":3, "moslemism":3, "mosley":2, "mosocecum":4, "mosquito":3, "mosquito boat":4, "mosquito hawk":4, "mosquito net":4, "mosquitofish":4, "mosquitofishes":5, "mossi":2, "mossie":2, "mosso":2, "mossor":4, "mot":1, "mote":1, "motey":2, "moth":1, "moth-eaten":2, "mothball":2, "mother":2, "mother carey's chicken":6, "mother country":4, "mother goose":3, "mother hubbard":4, "mother of god":4, "mother of parliaments":6, "mother ship":3, "mother superior":6, "mother tongue":3, "mother wit":3, "mother's day":3, "mother-in-law":2, "mother-naked":3, "mother-of-pearl":2, "mother-of-thousands":3, "mother-of-thyme":2, "mothers-in-law":2, "motherfucker":4, "motherhood":3, "mothering":3, "mothering sunday":5, "motherland":3, "motherless":3, "motherlessness":4, "motherliness":4, "motherly":3, "motherwell":3, "motherwell and wishaw":6, "motherwort":3, "mothier":3, "mothiest":3, "mothproof":2, "mothy":2, "mott":1, "motte":1, "mottle":2, "motley":2, "motley":2, "motmot":2, "mottled":2, "mottler":2, "mottlement":3, "motto":2, "mottramite":3, "moue":1, "moufflon":2, "mouflon":2, "mouill":2, "mouill":3, "moukden":2, "mould":1, "mouldboard":2, "moulder":2, "mouldies":2, "moulding":2, "moulding board":3, "mouldier":3, "mouldiest":3, "mouldwarp":2, "mouldy":2, "mouldy fig":3, "mouldywarp":3, "moult":1, "moulmein":2, "moultrie":2, "mound":1, "mound":1, "mound builder":3, "mound-builder":2, "moundsman":2, "mounding":2, "mount":1, "mount desert island":5, "mount isa":3, "mountbatten":3, "mounted":2, "mounter":2, "mountie":2, "mounties":2, "mounting":2, "mounting-block":2, "mounty":2, "mountain":2, "mountain":2, "mountain ash":3, "mountain avens":4, "mountain cat":3, "mountain chain":3, "mountain devil":4, "mountain goat":3, "mountain laurel":4, "mountain lion":4, "mountain range":3, "mountain sheep":3, "mountain sickness":4, "mountain standard time":5, "mountains":2, "mountaineer":3, "mountaineering":4, "mountainless":3, "mountainous":3, "mountainously":4, "mountainousness":4, "mountainside":3, "mountainside":3, "mountaintop":3, "mountebank":3, "mountie":2, "mourn":1, "mourner":2, "mournful":2, "mourning":2, "mourning band":3, "mourning cloak":3, "mourning dove":3, "mourningly":3, "mouse":1, "mousebird":2, "mouselike":2, "mousepox":2, "mousetail":2, "mousetrap":2, "mousetrapped":2, "mousetrapping":3, "mousse":1, "mousseline":2, "mousseline de laine":4, "mousseline de soie":4, "mousseline sauce":3, "mouser":2, "mousey":2, "mousing":2, "mousier":3, "mousiest":3, "mousily":3, "mousiness":3, "moussaka":3, "moussorgsky":3, "moustache":2, "moustache cup":3, "mousterian":4, "moustierian":4, "mousy":2, "mouth":1, "mouth organ":3, "mouth-watering":3, "mouthbreeder":3, "mouthbrooder":3, "mouthful":2, "mouthier":3, "mouthiest":3, "mouthily":3, "mouthiness":3, "mouthless":2, "mouthpart":2, "mouthpiece":2, "mouthwash":2, "mouthwatering":4, "mouthy":2, "moujik":2, "moulage":2, "moulin":2, "moulins":2, "mousaka":3, "moutarde":2, "mouton":2, "moutonne":4, "moutonned":4, "move":1, "moveability":5, "moveable":3, "moveableness":4, "moveably":3, "moveless":2, "movelessly":3, "movelessness":3, "movement":2, "movability":5, "movable":3, "movableness":4, "movably":3, "mover":2, "movie":2, "movie camera":5, "movie film":3, "movieland":3, "moviemaker":4, "movietone":3, "moving":2, "moving average":5, "moving picture":4, "moving staircase":4, "mow":1, "mowe":1, "mown":1, "mowburnt":2, "mower":2, "mowing":2, "mowra":2, "mowrah":2, "moxa":2, "moxie":2, "moxieberry":4, "mozarab":3, "mozarabic":4, "mozzarella":4, "mozzetta":3, "mozzette":3, "moa":2, "moab":2, "moabitess":4, "moabitic":4, "mobile":2, "mobile":2, "mobile home":3, "mobile library":5, "mobility":4, "mobilise":3, "mobilised":3, "mobiliser":4, "mobilising":4, "mobilize":3, "mobilizable":5, "mobilizer":4, "mobilisation":5, "mobilization":5, "mobridge":2, "mobutu":3, "mocambique":3, "mocambique":4, "mocha":2, "mocha":2, "mocha stone":3, "mochica":3, "mochila":3, "modality":4, "modem":2, "moderne":2, "modernity":4, "modesta":3, "modesto":3, "modena":3, "modillion":3, "modiste":2, "modibo":3, "modigliani":4, "modiolar":4, "modiolus":4, "modjeska":3, "modoc":2, "modred":2, "modus operandi":6, "modus vivendi":5, "mofette":2, "mogadiscio":4, "mogen david":4, "mogilev":3, "mogo":2, "mogote":3, "mogul":2, "mogul":2, "mohair":2, "mohalim":3, "mohammed":3, "mohammed ahmed":5, "mohammed ali":5, "mohammed ii":4, "mohammed riza pahlavi":8, "mohammedan":4, "mohammedanise":5, "mohammedanism":5, "mohammedanize":5, "mohammedizing":5, "moharram":3, "mohawk":2, "mohawk":2, "mohave":3, "mohave desert":5, "mohel":2, "mohels":2, "mohenjo-daro":4, "mohican":3, "mohilev":3, "moho":2, "mohock":2, "mohole":2, "moholy-nagy":2, "mohur":2, "mojarra":3, "mojave":3, "mojave desert":5, "moji":2, "mokha":2, "mokkha":2, "moksha":2, "mola":2, "molal":2, "molality":4, "molar":2, "molarity":4, "molasses":3, "molech":2, "molecular":4, "molecular beam":5, "molecular biology":8, "molecular distillation":8, "molecular film":5, "molecular formula":7, "molecular sieve":5, "molecular volume":6, "molecular weight":5, "molecularity":6, "molecularly":5, "molest":2, "molester":3, "molestation":4, "moli":2, "moline":2, "moline":2, "molina":3, "molinism":3, "molinist":3, "molinos":3, "molise":3, "moloch":2, "moloch":2, "molorchus":3, "molossus":3, "molokai":4, "molopo":3, "molotov":3, "molucca islands":5, "moluccas":3, "molus":2, "moly":2, "molybdate":3, "molybdenite":4, "molybdenous":4, "molybdenum":4, "molybdic":3, "molybdous":3, "momence":2, "moment":2, "moment of inertia":6, "moment of truth":4, "momently":3, "momentarily":5, "momentariness":5, "momentary":4, "momentous":3, "momentously":4, "momentousness":4, "momentum":3, "momi":2, "momos":2, "momus":2, "momuses":3, "mona":2, "mona":2, "mona lisa":4, "mona passage":4, "monadal":3, "monadically":5, "monadnock":3, "monandrous":3, "monandry":3, "monanthous":3, "monarchal":3, "monarchally":4, "monarchic":3, "monarchial":4, "monarchian":4, "monarchianist":5, "monarchical":4, "monarchically":5, "monarda":3, "monastic":3, "monastical":4, "monastically":5, "monasticism":4, "monacan":3, "monacillo":4, "monacillos":4, "monastir":3, "monel metal":4, "monell metal":4, "moneme":2, "monessen":3, "monet":2, "monett":2, "monecious":3, "moneta":3, "monilia":4, "monilial":4, "moniliform":4, "monistic":3, "monistically":5, "moniz":2, "monial":3, "monition":3, "monoceros":4, "monocerotis":5, "monocracy":4, "monocular":4, "monocularly":5, "monodic":3, "monodically":5, "monodomous":4, "monoecious":3, "monoeciously":4, "monoecism":3, "monogamist":4, "monogamistic":5, "monogamous":4, "monogamy":4, "monogenism":4, "monogenist":4, "monogenistic":5, "monogenous":4, "monogeny":4, "monographer":4, "monogyny":4, "monoicous":3, "monolater":4, "monolatrous":4, "monolatry":4, "monomerous":4, "monometer":4, "monongahela":5, "monophagous":4, "monophony":4, "monophysism":4, "monophysite":4, "monophysitism":5, "monopody":4, "monopolise":4, "monopolised":4, "monopolism":4, "monopolist":4, "monopoliser":5, "monopolising":5, "monopolistic":5, "monopolistic competition":9, "monopolistically":7, "monopolize":4, "monopoloid":4, "monopoly":4, "monopoly":4, "monopsony":4, "monopteral":4, "monoptera":4, "monopteroi":4, "monopteron":4, "monopteros":4, "monostomous":4, "monostrophe":4, "monothelite":4, "monothelitic":5, "monothelitism":5, "monotonise":4, "monotonize":4, "monotonous":4, "monotonously":5, "monotonousness":5, "monotony":4, "monotrichate":4, "monotrichous":4, "monotropy":4, "monomial":4, "monona":3, "monotrichous":4, "moped":2, "mopoke":2, "moquette":2, "mora":2, "moraine":2, "morainal":3, "morainic":3, "morale":2, "morality":4, "morality play":5, "morandi":3, "morass":2, "moray":2, "moraceous":3, "moradabad":4, "moratuwa":4, "morava":3, "moravia":3, "moravia":4, "moravian":4, "moravian church":5, "moravian gate":5, "morazn":4, "moreau":2, "moreen":2, "morel":2, "morel":2, "morelle":2, "morello":3, "mores":2, "moresque":2, "moresco":3, "morea":3, "morelia":3, "morelos":3, "moretus":3, "morisco":3, "moritz":2, "moria":3, "moriah":3, "morini":3, "morion":3, "moro":2, "moroccan":3, "morocco":3, "morocco":3, "moron":2, "moronic":3, "moronism":3, "moronically":5, "moronity":4, "moror":2, "moros":2, "morose":2, "morosely":3, "moroseness":3, "morosity":4, "morogoro":4, "moroni":3, "mosaic":3, "mosaic":3, "mosaic gold":4, "mosaic law":4, "mosaical":4, "mosaically":5, "mosaicism":4, "mosaicist":4, "mosasaur":3, "mosasaurus":4, "mosel":2, "moselle":2, "moser":2, "moses":2, "mosey":2, "moseyed":2, "moseying":3, "moshav":2, "moshe":2, "moshesh":2, "moshi":2, "moshoeshoe":3, "mosotho":3, "mosul":2, "motel":2, "motet":2, "motif":2, "motile":2, "motility":4, "motion":2, "motion picture":4, "motion sickness":4, "motion study":4, "motion-picture":3, "motional":3, "motioner":3, "motionless":3, "motive":2, "motive power":4, "motiveless":3, "motivelessly":4, "motivelessness":4, "motivity":4, "motilal":3, "motivate":3, "motivated":4, "motivating":4, "motivation":4, "motivational":5, "motivational research":7, "motivative":4, "moton":2, "motor":2, "motor caravan":5, "motor generator":6, "motor park":3, "motor scooter":4, "motor vessel":4, "motor vehicle":5, "motor-driven":3, "motor-ship":2, "motored":2, "motorable":4, "motorbike":3, "motorbicycle":5, "motorboat":3, "motorboating":4, "motorbus":3, "motorcade":3, "motorcar":3, "motorcoach":3, "motorcycle":4, "motorcyclist":4, "motordrome":3, "motoring":3, "motorise":3, "motorised":3, "motorist":3, "motorising":4, "motorize":3, "motorized":3, "motorizing":4, "motorization":5, "motorman":3, "motorway":3, "motown":2, "motocross":3, "motoneuron":4, "motu":2, "motu proprio":5, "movieola":4, "moviola":4, "moyobamba":4, "mozambique":3, "mozambique channel":5, "mozart":2, "mozetta":3, "moambique":5, "mpg":1, "mph":1, "mph":1, "mphil":1, "mps":1, "mra":1, "mrc":1, "mridang":2, "mrs":1, "ms-th":1, "msc":1, "msg":1, "msgr":1, "msi":1, "msl":1, "msl":1, "mst":1, "mtb":1, "mtg":1, "mu meson":3, "mu'min":2, "much":1, "muchness":2, "muck":1, "muck about":3, "muckamuck":3, "mucker":2, "muckerish":3, "muckerism":3, "mucking":2, "muckier":3, "muckiest":3, "muckle":2, "muckrake":2, "muckraked":2, "muckraker":3, "muckraking":3, "mucksweat":2, "muckworm":2, "mucky":2, "mucluc":2, "mud":1, "mud dauber":3, "mud puppy":3, "mud turtle":3, "mudcap":2, "mudcapped":2, "mudcapping":3, "mudcat":2, "mudded":2, "mudding":2, "muddier":3, "muddiest":3, "muddily":3, "muddiness":3, "muddle":2, "muddle along":4, "muddle through":3, "muddledness":3, "muddler":2, "muddlehead":3, "muddleheaded":4, "muddlement":3, "muddlingly":3, "muddy":2, "mudfat":2, "mudfish":2, "mudfishes":3, "mudguard":2, "mudlark":2, "mudminnow":3, "mudpack":2, "mudpuppy":3, "mudskipper":3, "mudslinger":3, "mudslinging":3, "mudspringer":3, "mudstone":2, "mudsucker":3, "muenster":2, "muesli":2, "muff":1, "muffy":2, "muffin":2, "muffin man":3, "muffineer":3, "muffle":2, "muffler":2, "mufti":2, "mufti":2, "mug":1, "muggar":2, "mugger":2, "muggins":2, "muggier":3, "muggiest":3, "muggur":2, "muggy":2, "mugwort":2, "mugwump":2, "mugwumpery":4, "mugwumpish":3, "mugwumpism":3, "mugwumpian":4, "muhlenberg":3, "muir":1, "muir glacier":3, "mujtahid":3, "mukden":2, "mukluk":2, "mulch":1, "mulct":1, "mule":1, "mule skinner":3, "muleshoe":2, "mull":1, "mull":1, "muller":2, "mullite":2, "mulloway":3, "mulberry":3, "mulberry":3, "mulciber":3, "muldoon":2, "muley":2, "mulga":2, "mulhac":3, "mulhacn":4, "mulhouse":2, "mulish":2, "mulishly":3, "mulishness":3, "mulki":2, "mulla":2, "mullah":2, "mullein":2, "mullen":2, "mullens":2, "muller":2, "muller":2, "mullet":2, "mulley":2, "mullins":2, "mullion":2, "mullite":2, "mulligan":3, "mulligatawny":5, "mulligrubs":3, "mulliken":3, "mullion":3, "mullock":2, "mullocky":3, "multan":2, "multangular":4, "multangulum":4, "multeity":4, "multifidous":4, "multimeter":4, "multipara":4, "multiparae":4, "multiparous":4, "multivocal":4, "multiangular":5, "multiarticular":6, "multiarticulate":6, "multiarticulated":7, "multiaxial":5, "multiareolate":6, "multibirth":3, "multiblade":3, "multibladed":4, "multibranched":3, "multibranchiate":5, "multicapitate":5, "multicapsular":5, "multicarinate":5, "multicarinated":6, "multicasting":4, "multicellular":5, "multicentral":4, "multicentric":4, "multichannel":4, "multichannel analyser":8, "multichanneled":4, "multichannelled":4, "multicharge":3, "multichord":3, "multichrome":3, "multicide":3, "multiciliate":5, "multiciliated":6, "multicircuit":4, "multicircuited":5, "multicoil":3, "multicollinearity":8, "multicolor":4, "multicolored":4, "multiconductor":5, "multicore":3, "multicordate":4, "multicorneal":5, "multicostate":4, "multicourse":3, "multicrystalline":5, "multicuspid":4, "multicuspidate":5, "multicuspidated":6, "multicylindered":5, "multidentate":4, "multidenticulate":6, "multidenticulated":7, "multidigitate":5, "multidiscipline":5, "multidisciplinary":7, "multidisciplinary":7, "multidimensional":6, "multidirectional":6, "multiengine":4, "multiengined":4, "multiexhaust":4, "multifaced":3, "multifaceted":5, "multifactorial":6, "multifarious":5, "multifariously":6, "multifariousness":6, "multifamilial":5, "multifetation":5, "multifid":3, "multifil":3, "multifistular":5, "multifistulous":5, "multifibered":4, "multifibrous":4, "multiflagellate":5, "multiflagellated":6, "multiflora":4, "multiflora rose":5, "multiflorous":4, "multifoil":3, "multifold":3, "multiform":3, "multifocal":4, "multifoliate":5, "multifurcate":4, "multiganglionic":6, "multigranular":5, "multigranulated":6, "multigravida":5, "multigyrate":4, "multihead":3, "multihearth":3, "multihued":3, "multihull":3, "multijet":3, "multijugate":4, "multilamellate":5, "multilaminar":5, "multilaminate":5, "multilaminated":6, "multilane":3, "multilateral":5, "multilaterally":6, "multilayer":4, "multilaciniate":6, "multilamellar":5, "multilighted":4, "multilineal":5, "multilinear":5, "multilingual":4, "multilith":3, "multilobe":3, "multilobed":3, "multilocular":5, "multilomultilocular":3, "multilobar":4, "multilobate":4, "multimacular":5, "multimegaton":5, "multimedia":5, "multimedial":5, "multimetallic":5, "multimillion":4, "multimillionaire":5, "multimolecular":6, "multimotor":4, "multimotored":4, "multinational":5, "multinervate":4, "multinodal":4, "multinodular":5, "multinominal":5, "multinodous":4, "multinomial":5, "multinuclear":5, "multinucleate":5, "multinucleolar":6, "multinucleolate":6, "multinucleolated":7, "multiovular":5, "multiovulate":5, "multiovulated":6, "multipartite":4, "multipartisan":5, "multipath":3, "multiped":3, "multipede":3, "multiperforate":5, "multiperforated":6, "multipersonal":5, "multiphase":3, "multiphasic":4, "multiphotography":6, "multipinnate":4, "multiplane":3, "multiplated":4, "multiple":3, "multiple alleles":5, "multiple factors":5, "multiple fruit":4, "multiple personality":8, "multiple sclerosis":6, "multiple star":4, "multiple store":4, "multiple voting":5, "multiple-choice":3, "multiple-valued":4, "multiplet":3, "multiplex":3, "multiplepoinding":5, "multiplicity":5, "multiplied":3, "multiplicand":4, "multiplicate":4, "multiplication":5, "multiplication sign":6, "multiplication table":7, "multiplicational":6, "multiplicative":5, "multiplicatively":6, "multiplier":4, "multiply":3, "multiplying":4, "multipointed":4, "multiported":4, "multipolar":4, "multiprogramming":5, "multipurpose":4, "multiracial":3, "multiradical":5, "multiramified":5, "multiracial":4, "multiracialism":5, "multiradial":5, "multiradiate":5, "multiradiated":6, "multiramose":4, "multiramous":4, "multireflex":4, "multirole":3, "multirooted":4, "multisaccate":4, "multisacculate":5, "multisacculated":6, "multiscreen":3, "multisegmented":5, "multisegmental":5, "multiseptate":4, "multiseriate":5, "multishot":3, "multisonic":4, "multisonorous":5, "multisonous":4, "multispeed":3, "multispermous":4, "multispicular":5, "multispiculate":5, "multispindled":4, "multispired":3, "multispinous":4, "multispiral":4, "multistage":3, "multistaminate":5, "multistorey":4, "multistoried":4, "multistory":4, "multistratified":5, "multistriate":4, "multisulcate":4, "multisulcated":5, "multitentaculate":6, "multitentacled":5, "multitester":4, "multithreaded":4, "multititular":5, "multitoed":3, "multitoned":3, "multitube":3, "multitude":3, "multituberculate":6, "multitubular":5, "multitudinous":5, "multitudinously":6, "multitudinousness":6, "multivalve":3, "multivalued":4, "multivalvular":5, "multivane":3, "multivariate":5, "multivalence":4, "multivalent":4, "multiversity":5, "multiview":3, "multiviewing":4, "multivibrator":5, "multivoiced":3, "multivoltine":4, "multivolume":4, "multivolumed":4, "multivocal":4, "multiwall":3, "multum in parvo":5, "multure":2, "mulvane":2, "mum":1, "mumm":1, "mump":1, "mumps":1, "mumble":2, "mumbler":2, "mumblingly":3, "mumbo jumbo":4, "mumchance":2, "mumford":2, "mummer":2, "mummery":3, "mummied":2, "mummichog":3, "mummified":3, "mummification":5, "mummify":3, "mummifying":4, "mummy":2, "mummying":3, "mun":1, "munch":1, "munch":1, "muncher":2, "munga":2, "munt":1, "muntjac":2, "muntjak":2, "muncie":2, "muncy":2, "munda":2, "mundane":2, "mundanely":3, "mundified":3, "mundify":3, "mundifying":4, "mundungus":3, "mundugumor":4, "mungo":2, "mungo":2, "munhall":2, "munnion":2, "munro":2, "munroe":2, "munsell scale":3, "munsey":2, "munshi":2, "munsif":2, "munster":2, "muntin":2, "mure":1, "murjite":2, "murk":1, "murky":2, "murre":1, "murrelet":2, "murchison":3, "murcia":2, "murdabad":3, "murder":2, "murderer":3, "murderous":3, "murderously":4, "murderousness":4, "murdoch":2, "murdrum":2, "murfreesboro":4, "murgeon":2, "muring":2, "murman coast":3, "murmansk":2, "murmansk coast":3, "murmur":2, "murmuration":4, "murmurer":3, "murmurless":3, "murmurlessly":4, "murmurous":3, "murmurously":4, "murphied":2, "murphy":2, "murphy":2, "murphy bed":3, "murphying":3, "murra":2, "murrain":2, "murray":2, "murrey":2, "murrhine":2, "murrhine glass":3, "murrine":2, "murrow":2, "murrumbidgee":4, "murry":2, "murther":2, "mus":1, "musb":1, "musd":1, "muse":1, "muse":1, "museful":2, "mush":1, "musher":2, "mushier":3, "mushiest":3, "mushily":3, "mushiness":3, "mushroom":2, "mushroom cloud":3, "mushroomlike":3, "mushroomy":3, "mushy":2, "musk":1, "musk mallow":3, "musk orchid":3, "musk turtle":3, "muskier":3, "muskiest":3, "muskiness":3, "muskmelon":3, "muskrat":2, "musky":2, "musm":1, "muss":1, "mussier":3, "mussiest":3, "mussy":2, "must":1, "musth":1, "mustn't":2, "musca":2, "muscae":2, "muscae volitantes":6, "muscat":2, "muscat":2, "muscat and oman":5, "muscadel":3, "muscadelle":3, "muscadine":3, "muscarine":3, "muscatel":3, "muscatine":3, "muscavado":4, "muscicolous":4, "muscid":2, "muscle":2, "muscle fibre":4, "muscle sense":3, "muscle-bound":2, "musclebound":3, "muscleless":3, "muscleman":3, "muscly":2, "muscovado":4, "muscovite":3, "muscovite":3, "muscovitic":4, "muscovy":3, "muscovy duck":4, "musculamine":4, "muscular":3, "muscular dystrophy":6, "muscularity":5, "muscularly":4, "musculature":4, "muser":2, "museology":5, "musing":2, "musingly":3, "musjid":2, "muskallonge":3, "muskeg":2, "muskellunge":3, "musket":2, "musketeer":3, "musketry":3, "muskegon":3, "muskhogean":4, "muskie":2, "muskone":2, "muskogee":3, "muskogean":4, "musky":2, "muslem":2, "muslim":2, "muslin":2, "muso":2, "muspellsheim":3, "muspelsheim":3, "muspelheim":3, "musquash":2, "mussalman":3, "mussel":2, "musset":2, "mussitation":4, "mussorgski":3, "mussorgsky":3, "mussolini":4, "mussuck":2, "mussulman":3, "mustache":2, "mustached":2, "mustagh":2, "mustang":2, "mustard":2, "mustard and cress":4, "mustard gas":3, "mustard oil":3, "mustard plaster":4, "mustachio":3, "mustachioed":3, "mustachio":4, "mustafa kemal":5, "mustee":2, "muster":2, "muster roll":3, "musteline":3, "mustier":3, "mustiest":3, "mustily":3, "mustiness":3, "musty":2, "mut":1, "mutch":1, "mutchkin":2, "mute":1, "mutt":1, "muted":2, "mutedly":3, "muting":2, "mutism":2, "mutsuhito":4, "mutter":2, "mutterer":3, "mutteringly":4, "mutton":2, "mutton bird":3, "mutton chop":3, "mutton-head":2, "muttonchops":3, "muttonhead":3, "muttonheaded":4, "muttony":3, "muttra":2, "muumuu":2, "muzz":1, "muzzily":3, "muzziness":3, "muzzle":2, "muzzle velocity":6, "muzzle-loader":3, "muzzler":2, "muzzleloader":4, "muzzleloading":4, "muzzy":2, "mucic":2, "mucic acid":4, "mucid":2, "mucidness":3, "muciferous":4, "mucigenous":4, "mucin":2, "muciparous":4, "mucigen":3, "mucigenous":4, "mucilage":3, "mucilaginous":5, "mucilaginously":6, "mucoid":2, "mucoidal":3, "mucor":2, "mucose":2, "mucosity":4, "mucous":2, "mucous membrane":4, "mucopolysaccharide":7, "mucoprotein":4, "mucopurulent":5, "mucosa":3, "mucosal":3, "mucoviscidosis":6, "mucoviscoidosis":6, "mucro":2, "mucronate":3, "mucronated":4, "mucronation":4, "mucrones":3, "mucus":2, "mudir":2, "mudra":2, "mudjar":4, "mudjares":5, "mudjar":3, "muezzin":3, "mufulira":4, "mugabe":3, "muhammad":3, "muhammad ali":5, "muhammadan":4, "muhammedan":4, "muharram":3, "muhajir":3, "muhajirun":4, "mujik":2, "mukade":3, "mulatto":3, "muleta":3, "muleteer":3, "muliebrity":5, "mulier":3, "mulierty":4, "mulius":3, "mulock":2, "mumetal":3, "muni":2, "munich":2, "munich pact":3, "municipal":4, "municipalise":5, "municipalize":5, "municipalized":5, "municipalizing":6, "municipality":6, "municipalization":7, "municipally":5, "munificence":4, "munificent":4, "munificently":5, "munificentness":5, "munin":2, "munippus":3, "munite":2, "munited":3, "muniting":3, "muniment":3, "muniments":3, "munising":3, "munition":3, "munitions":3, "munitus":3, "muon":2, "mura":2, "murage":2, "mural":2, "muralist":3, "murally":3, "murat":2, "murasaki shikibu":7, "mure":2, "mures":2, "murex":2, "murillo":3, "murine":2, "muriate":3, "muriatic":4, "muriatic acid":6, "muricate":3, "muricated":4, "musaceous":3, "musagetes":4, "musette":2, "musette bag":3, "museologist":5, "museum":3, "museum piece":4, "music":2, "music box":3, "music centre":4, "music drama":4, "music hall":3, "music paper":4, "music roll":3, "music stand":3, "musil":2, "musique concr":4, "musial":3, "musical":3, "musical box":4, "musical chairs":4, "musical comedy":6, "musical glasses":5, "musicale":3, "musicality":5, "musically":4, "musicalness":4, "musician":3, "musicianly":4, "musicianship":4, "musicologist":5, "musicology":5, "musicological":6, "musicologically":7, "mutant":2, "mutase":2, "mutate":2, "mutated":3, "mutating":3, "mutability":5, "mutable":3, "mutableness":4, "mutably":3, "mutagen":3, "mutagenic":4, "mutagenically":6, "mutagenetic":5, "mutarotation":5, "mutation":3, "mutation stop":4, "mutational":4, "mutationally":5, "mutatis mutandis":6, "mutazila":4, "mutazilite":4, "mutic":2, "muticate":3, "muticous":3, "mutilate":3, "mutilated":4, "mutilating":4, "mutilation":4, "mutilative":4, "mutilator":4, "mutilatory":5, "mutineer":3, "mutinied":3, "mutinous":3, "mutinously":4, "mutinousness":4, "mutinus":3, "mutiny":3, "mutiny":3, "mutinying":4, "mutoscope":3, "mutule":2, "mutus":2, "mutual":3, "mutual fund":4, "mutual inductance":6, "mutual induction":6, "mutual insurance":6, "mutual savings bank":6, "mutualise":4, "mutualised":4, "mutualism":4, "mutualising":5, "mutualize":4, "mutualized":4, "mutualizing":5, "mutualization":6, "mutually":4, "mutuel":3, "mutular":3, "mutunus":3, "muzak":2, "muzhik":2, "muzio":2, "muzorewa":4, "mvd":1, "mvo":1, "mvs":1, "mvsc":1, "mwanza":2, "mwalimu":3, "mweru":2, "mycol":1, "mycerinus":4, "mydriatic":4, "mygdon":2, "myingyan":2, "mynheer":2, "myrrh":1, "myriad":3, "myriad-leaf":3, "myriadly":4, "myriapoda":5, "myriare":3, "myriagram":4, "myrialiter":5, "myriameter":5, "myriapod":4, "myriopod":4, "myrmecologist":5, "myrmecology":5, "myrmecophagous":5, "myrmecophilism":5, "myrmecophilous":5, "myrmecophily":5, "myrmecological":6, "myrmecophile":4, "myrmidones":4, "myrmidon":3, "myrmidons":3, "myrtaceous":3, "myrtice":2, "myrtilus":3, "myrtle":2, "mystagogue":3, "mystagogic":4, "mystagogically":6, "mystagogy":4, "mysteries":3, "mystery":3, "mystery play":4, "mystery tour":4, "mysterious":4, "mysteriously":5, "mysteriousness":5, "mystic":2, "mystic":2, "mysticity":4, "mysticly":3, "mystique":2, "mystical":3, "mysticality":5, "mystically":4, "mysticalness":4, "mysticise":3, "mysticism":3, "mysticize":3, "mysticized":3, "mysticizing":4, "mystified":3, "mystifiedly":4, "mystification":5, "mystifier":4, "mystify":3, "mystifying":4, "mystifyingly":5, "myth":1, "mythic":2, "mythical":3, "mythically":4, "mythicalness":4, "mythicise":3, "mythicised":3, "mythicising":4, "mythicize":3, "mythicized":3, "mythicizer":4, "mythicizing":4, "mythified":3, "mythify":3, "mythifying":4, "mythoclast":3, "mythoclastic":4, "mythogenesis":5, "mythologic":4, "mythological":5, "mythologically":6, "mythomania":5, "mythomaniac":5, "mythopoeia":4, "mythopoeic":4, "mythopoeism":4, "mythopoeist":4, "mythopoetise":5, "mythopoetised":5, "mythopoetising":6, "mythopoetize":5, "mythopoetized":5, "mythopoetizing":6, "mythopoesis":5, "mytilene":4, "myxasthenia":5, "myxedema":4, "myxoedema":4, "myxoid":2, "myxomatous":4, "myxoma":3, "myxomas":3, "myxomata":4, "myxomatosis":5, "myxomycete":4, "myxomycetous":5, "myxovirus":4, "myall":2, "myalgic":3, "myalgia":4, "myasthenic":4, "myasthenia":5, "myasthenia gravis":7, "myatrolia":5, "myatrophy":4, "myalism":3, "myatonia":5, "mycelial":4, "mycelium":4, "mycenae":3, "mycenaean":4, "mycetoma":4, "mycetozoan":5, "mycologist":4, "mycology":4, "mycorrhiza":4, "mycobacteria":6, "mycobacterium":6, "mycocecidium":6, "mycological":5, "mycologically":6, "mycorhiza":4, "mycosis":3, "mycosozin":4, "mycostat":3, "mycostatic":4, "mycostatin":4, "mydriasis":4, "myerstown":3, "myelencephalon":6, "myelin":3, "myeline":3, "myelinic":4, "myelinization":6, "myelinated":5, "myelination":5, "myelitis":4, "myelography":5, "myeloid":3, "myeloblast":4, "myelographic":5, "myelographically":7, "myeloma":4, "myiasis":3, "mylitta":3, "mylohyoid":4, "mylohyoidean":6, "mylohyoidei":6, "mylohyoideus":6, "mylonite":3, "myna":2, "mynah":2, "myoclonus":4, "myography":4, "myologisral":5, "myology":4, "myope":2, "myopathy":4, "myopic":3, "myotic":3, "myotomy":4, "myoatrophy":5, "myocardia":5, "myocardial":5, "myocardial infarction":8, "myocardiogram":6, "myocardiograph":6, "myocarditis":5, "myocardium":5, "myoclonic":4, "myocoel":3, "myocoele":3, "myocyte":3, "myoedema":5, "myogenic":4, "myogenicity":6, "myoglobin":4, "myograph":3, "myographic":4, "myographically":6, "myohemoglobin":6, "myohemoglobinuria":9, "myokymia":5, "myologic":4, "myoma":3, "myoneuralgia":5, "myoneurasthenia":7, "myopathic":4, "myopia":4, "myosin":3, "myosis":3, "myosote":3, "myosotis":4, "myotome":3, "myotonia":5, "myrica":3, "myrina":3, "myrobalan":4, "myron":2, "myron":2, "myself":2, "mysia":3, "mysian":3, "mysore":2, "mysophilia":5, "mythographer":4, "mythographist":4, "mythography":4, "mythologise":4, "mythologist":4, "mythologize":4, "mythologized":4, "mythologizer":5, "mythologizing":5, "mythologization":6, "mythology":4, "mythos":2, "mytishchi":3, "mzee":1, "mzungu":2, "mcon":3, "mhren":3, "mhrisch-ostrau":4, "mrchen":3, "mlar":3, "mlaren":4, "mdaillon":4, "mdoc":3, "mhul":3, "mlange":3, "mringue":3, "mringued":3, "mringuing":4, "mrida":4, "mridienne":5, "mridiennes":5, "mrime":5, "msalliance":5, "msalliances":6, "mtif":3, "mtis":3, "mtisse":3, "mtro":3, "mxico":4, "mzair":3, "mle":4, "mnchengladbach":5, "mssbauer":4, "msting":3, "mbius":4, "mrike":4, "mlhausen":4, "mnchen":3, "mnchen-gladbach":4, "mbauer effect":5, "mbius strip":4, "mchen":2, "mchen-gladbach":3, "mcon":2, "mdoc":2, "mhausen":3, "mheim":2, "mjico":3, "ml":2, "mlange":2, "mlar":2, "mlaga":3, "mler":2, "mli":2, "mlos":2, "mnage":2, "mnidrome":3, "mren":2, "mrida":3, "mrike":3, "mro":2, "msalliance":4, "mster":2, "mster":2, "msterberg":3, "mtif":2, "mtis":2, "mtier":3, "mtwara":3, "mzi":2, "n-bomb":1, "n-shell":1, "n-tuple":2, "n-type":1, "n/f":1, "n/s/f":1, "na-dene":2, "na-dn":2, "naafi":1, "nab":1, "nabataean":4, "nabatean":4, "nabber":2, "nabbing":2, "nabokov":3, "nabonassar":4, "nabonidus":4, "nachised":2, "nachising":3, "nad":1, "nadh":1, "nadp":1, "nadja":2, "nae":1, "naething":2, "naevus":2, "nag":1, "nagy":1, "nagyszeben":3, "nagyvrad":3, "nagger":2, "nagging":2, "naggingness":3, "naggish":2, "naggier":3, "naggiest":3, "naggy":2, "naging":2, "nagpur":2, "nah":1, "nail":1, "nail polish":3, "nail-biting":2, "nailbrush":2, "nailer":2, "nailfile":2, "nailhead":2, "nailless":2, "naillike":2, "nainsook":2, "nairn":1, "nairnshire":2, "naissant":2, "naiad":2, "naida":2, "nairobi":3, "naismith":2, "nalgo":1, "nalchik":2, "nalline":2, "nalorphine":3, "nam":1, "name":1, "name-caller":2, "name-calling":2, "name-dropper":2, "name-dropping":2, "nameability":5, "nameless":2, "namely":2, "nameplate":2, "namesake":2, "nametape":2, "namaycush":3, "namability":5, "namban":2, "namby-pambiness":4, "namby-pamby":3, "namby-pambyish":4, "namby-pambyism":4, "namer":2, "namhoi":2, "naming":2, "namma":2, "nammu":2, "nampa":2, "nampula":3, "namtar":2, "nan":1, "nance":1, "nand circuit":3, "nane":1, "nantes":1, "nanchang":2, "nancy":2, "nancy":2, "nancy boy":3, "nanda devi":4, "nandin":2, "nanga parbat":4, "nanhai":2, "nankeen":2, "nankin":2, "nanking":2, "nanna":2, "nanning":2, "nannoplankton":4, "nanny":2, "nanny":2, "nanny goat":3, "nannyberry":4, "nansen":2, "nansen bottle":4, "nansen passport":4, "nanterre":2, "nanticoke":3, "nantucket":3, "nantung":2, "nanty-glo":2, "naoise":2, "nap":1, "nap":1, "nape":1, "naphtali":3, "naphtha":2, "naphthalic":3, "naphthalene":3, "naphthalin":3, "naphthaline":3, "naphthalise":3, "naphthalised":3, "naphthalising":4, "naphthalize":3, "naphthalized":3, "naphthalizing":4, "naphthene":2, "naphthol":2, "naphthous":2, "naphthyl":2, "nappe":1, "napa":2, "napkin":2, "napless":2, "naplessness":3, "nappa":2, "nappanee":3, "napper":2, "nappie":2, "napping":2, "nappier":3, "nappiest":3, "nappy":2, "naprapath":3, "nard":1, "nark":1, "naraka":3, "narbada":3, "narberth":2, "narbonne":2, "narcaeus":3, "narceen":2, "narceine":2, "narceine":3, "narcism":2, "narcist":2, "narcissi":3, "narcissism":3, "narcissist":3, "narcissistic":4, "narcissus":3, "narcissus":3, "narcissuses":4, "narcistic":3, "narcomatous":4, "narcose":2, "narcotic":3, "narcoticness":4, "narcotically":5, "narcoticalness":5, "narcoanalysis":6, "narcolepsy":4, "narcoleptic":4, "narcoma":3, "narcomas":3, "narcomania":5, "narcomaniac":5, "narcomaniacal":6, "narcomata":4, "narcosis":3, "narcosynthesis":5, "narcotise":3, "narcotised":3, "narcotism":3, "narcotist":3, "narcotising":4, "narcotize":3, "nardine":2, "nardoo":2, "nares":2, "narghile":3, "nargile":3, "nargileh":3, "narine":2, "naris":2, "narial":3, "narmada":3, "narrate":2, "narratable":4, "narrated":3, "narrater":3, "narrating":3, "narraganset":4, "narragansett":4, "narragansett bay":5, "narration":3, "narrative":3, "narratively":4, "narrator":3, "narrow":2, "narrow boat":3, "narrow gauge":3, "narrow-fisted":3, "narrow-gage":2, "narrow-gauge":2, "narrow-gauged":2, "narrow-minded":3, "narrows":2, "narrows":2, "narrowly":3, "narrowness":3, "narthex":2, "narthecal":3, "narva":2, "narvik":2, "narvez":4, "narwal":2, "narwhal":2, "narwhale":2, "nary":2, "nas":1, "nasa":1, "naseberry":3, "naseby":2, "nash":1, "nashe":1, "nasho":2, "nashua":3, "nashville":2, "nast":1, "nasby":2, "nasca":2, "nascence":2, "nascent":2, "nascency":3, "nasireddin":4, "naskhi":2, "nassau":2, "nasser":2, "nastase":3, "nastic":2, "nastic movement":4, "nastier":3, "nastiest":3, "nastily":3, "nastiness":3, "nasty":2, "nat":1, "natch":1, "natchez":2, "natheless":2, "nathless":2, "natl":1, "nato":1, "natalie":3, "natrolite":3, "natta":2, "natter":2, "natterjack":3, "nattier":3, "nattiest":3, "nattily":3, "nattiness":3, "natty":2, "natural":3, "natural childbirth":5, "natural classification":8, "natural gas":4, "natural gender":5, "natural history":6, "natural language":5, "natural law":4, "natural logarithm":6, "natural number":5, "natural philosophy":7, "natural resources":6, "natural science":5, "natural selection":6, "natural theology":7, "natural virtues":5, "natural-born":3, "naturalise":4, "naturalism":4, "naturalist":4, "naturaliser":5, "naturalistic":5, "naturalistically":7, "naturalize":4, "naturalized":4, "naturalizer":5, "naturalizing":5, "naturalization":6, "naturally":4, "nauch":1, "naught":1, "naughtier":3, "naughtiest":3, "naughtily":3, "naughtiness":3, "naughty":2, "naut":1, "nautch":1, "naucratis":3, "naumann":2, "naumachia":4, "naumachiae":4, "naumachy":3, "nauplial":3, "naupliform":3, "nauplii":3, "nauplioid":3, "nauplius":3, "nauplius":3, "nauseous":2, "nauseously":3, "nauseousness":3, "nausea":3, "nauseate":3, "nauseated":4, "nauseating":4, "nauseatingly":5, "nauseation":4, "nauseous":3, "nausicaa":4, "nausithous":4, "nause":3, "nautes":2, "nautical":3, "nautical mile":4, "nauticality":5, "nautically":4, "nautiloid":3, "nautilus":3, "nautophone":3, "nav":1, "nave":1, "navig":1, "navar":2, "navaho":3, "navajo":3, "navarin":3, "navarino":4, "navasota":4, "navicert":3, "navigate":3, "navigated":4, "navigating":4, "navigability":6, "navigable":4, "navigableness":5, "navigably":4, "navigation":4, "navigation acts":5, "navigational":5, "navigator":4, "navratilova":5, "navvy":2, "naxalite":3, "naxos":2, "nay":1, "naze":1, "nazarene":3, "nazareth":3, "nazarite":3, "nazirite":3, "nabal":2, "nabalism":3, "nabalite":3, "nabalitic":4, "nabis":2, "nablus":2, "nabob":2, "nabobery":4, "nabobish":3, "nabobishly":4, "nabobical":4, "nabobically":5, "nabobship":3, "naboth":2, "nabokov":3, "nabonidus":4, "nacelle":2, "nacre":2, "nacred":2, "nacreous":3, "nadab":2, "nadir":2, "nadiral":3, "nafl":2, "nafud":2, "naga":2, "nagaland":3, "nagana":3, "nagano":3, "nagari":3, "nagasaki":4, "nagor":2, "nagorno-karabakh autonomous region":11, "nagoya":3, "nagual":2, "nagy":2, "nagyvrad":5, "naha":2, "nahant":2, "nahua":2, "nahuatl":3, "nahuatlan":3, "nahuatls":3, "nahum":2, "naiant":2, "naif":2, "naive":2, "naively":3, "naivety":3, "naivet":4, "naivetivet":5, "naira":3, "naked":2, "naked ladies":4, "naked singularity":7, "nakedly":3, "nakedness":3, "naker":2, "nakhichevan":4, "nakuru":3, "nama":2, "namangan":3, "namas kar":3, "namaland":3, "namaqua":3, "namaqualand":4, "namaste":3, "namen":2, "namibia":4, "namur":2, "nana":2, "nana":2, "nanak":2, "nananne":2, "nanako":3, "nanakuli":4, "nanette":2, "nanism":2, "nanoid":2, "nanook":2, "nanocurie":4, "nanometer":4, "nanometre":4, "nanoplankton":4, "nanosecond":4, "nanowatt":3, "naos":2, "naomi":3, "napaeae":3, "napalm":2, "naperian":4, "napery":3, "napier":2, "napier":2, "napier's bones":3, "napierian":4, "napierian logarithm":8, "napiform":3, "naples":2, "naples yellow":4, "napoleon":4, "napoleon":4, "napoleon i":5, "napoleon ii":5, "napoleonic":5, "napoleonic code":6, "napoleonic wars":6, "napoleonically":7, "napoli":3, "naprapathy":4, "nara":2, "narayanganj":4, "narev":2, "narew":2, "nasal":2, "nasal index":4, "nasalise":3, "nasalize":3, "nasalized":3, "nasalizing":4, "nasality":4, "nasalization":5, "nasally":3, "nasi":2, "nasial":3, "nasion":3, "nasmyth":2, "nasologist":4, "nasology":4, "nasofrontal":4, "nasolachrymal":5, "nasolacrimal":5, "nasological":5, "nasopalatal":5, "nasopalatine":5, "nasopharynx":4, "nasopharynges":5, "nasopharyngeal":6, "nasturtium":3, "nasute":2, "nasuteness":3, "natal":2, "natal":2, "natalia":3, "natalian":4, "natality":4, "natant":2, "natation":3, "natational":4, "natator":3, "natatoria":5, "natatorial":5, "natatorium":5, "natatoriums":5, "natatory":4, "nates":2, "nathan":2, "nathanael":3, "nathanael":4, "nathaniel":3, "nathalie":3, "natick":2, "nation":2, "nation-state":2, "national":3, "national":3, "national accounting":6, "national anthem":5, "national assembly":6, "national assistance":6, "national bank":4, "national code":4, "national convention":6, "national country party":7, "national covenant":6, "national debt":4, "national enterprise board":7, "national front":4, "national guard":4, "national health service":6, "national income":5, "national insurance":6, "national liberation front":8, "national park":4, "national service":5, "national socialism":6, "national trust":4, "nationalise":4, "nationalism":4, "nationalist":4, "nationalist china":6, "nationalist party":6, "nationaliser":5, "nationalistic":5, "nationalistically":7, "nationalize":4, "nationalized":4, "nationalizer":5, "nationalizing":5, "nationality":5, "nationalization":6, "nationally":4, "nationhood":3, "nationwide":3, "native":2, "native bear":3, "native oak":3, "native speaker":4, "native states":3, "native-born":2, "natively":3, "nativeness":3, "nativism":3, "nativist":3, "nativistic":4, "nativity":4, "nativity":4, "natrium":3, "natron":2, "nature":2, "nature strip":3, "nature study":4, "nature trail":3, "naturelike":3, "naturism":3, "naturopathy":5, "naturopath":4, "naturopathic":5, "nauru":3, "nauruan":4, "naval":2, "naval architecture":6, "navally":3, "navarre":2, "navarra":3, "navel":2, "navel orange":4, "navelwort":3, "navette":2, "navew":2, "navicula":4, "navicular":4, "navy":2, "navy blue":3, "navy cut":3, "navy list":3, "navy yard":3, "nawab":2, "nawabship":3, "nayarit":3, "nazaire":2, "nazi":2, "nazir":2, "nazified":3, "nazification":5, "nazify":3, "nazify":3, "nazifying":4, "nazimova":4, "naf":3, "naskos":4, "nave":3, "navely":4, "naveness":4, "navete":4, "navety":4, "navet":5, "nbg":1, "ncb":1, "nccl":1, "nco":1, "ncp":1, "ndebele":3, "ndjamena":3, "ndola":2, "ne plus ultra":4, "ne'er":1, "neagh":1, "neal":1, "neap":1, "neaped":1, "near":1, "near-sighted":2, "nearch":1, "nearby":2, "nearly":2, "nearness":2, "nearside":2, "neat":1, "neath":1, "neaten":2, "neatly":2, "neatness":2, "neb":1, "neb":1, "nebr":1, "nebbish":2, "nebris":2, "nebuchadnezzar":5, "nebuchadrezzar":5, "nebula":3, "nebular hypothesis":7, "nebulated":4, "nebulise":3, "nebulised":3, "nebuliser":4, "nebulising":4, "nebulize":3, "nebulized":3, "nebulizer":4, "nebulizing":4, "nebulization":5, "nebulose":3, "nebulosity":5, "nebulous":3, "nebulously":4, "nebulousness":4, "nebulosus":4, "nebuly":3, "nebul":4, "neck":1, "neckar":2, "neckband":2, "neckcloth":2, "necker":2, "neckerchief":3, "necking":2, "necklace":2, "neckless":2, "necklet":2, "necklike":2, "neckline":2, "neckpiece":2, "necktie":2, "necktieless":3, "neckwear":2, "necessarian":5, "necessarianism":6, "necessarily":5, "necessariness":5, "necessary":4, "necro":2, "necropsy":3, "necroscopy":4, "necrobacillary":6, "necrobacillosis":6, "necrobiosis":5, "necrological":5, "necrologically":6, "necromancer":4, "necromancy":4, "necromantic":4, "necromantical":5, "necromantically":6, "necromania":5, "necromimesis":5, "necrophile":3, "necrophilia":5, "necrophiliac":5, "necrophobic":4, "necrophobia":5, "necropolitan":5, "necrotise":3, "necrotised":3, "necrotising":4, "necrotize":3, "necrotized":3, "necrotizing":4, "necrotomic":4, "nectar":2, "nectarean":4, "nectareous":4, "nectareously":5, "nectareousness":5, "nectariferous":5, "nectarine":3, "nectarise":3, "nectarised":3, "nectarising":4, "nectarize":3, "nectarized":3, "nectarizing":4, "nectarous":3, "nectaris":3, "nectary":3, "nectopod":3, "ned":1, "nedc":1, "nedda":2, "neddy":2, "nee":1, "need":1, "needs":1, "needer":2, "needfire":2, "needful":2, "needier":3, "neediest":3, "needily":3, "neediness":3, "needless":2, "needn't":2, "needy":2, "neep":1, "needle":2, "needle bush":3, "needle time":3, "needle valve":3, "needles":2, "needlecord":3, "needlecraft":3, "needlefish":3, "needlefishes":4, "needleful":3, "needlelike":3, "needlepoint":3, "needlewoman":4, "needlewomen":4, "needlework":3, "neenah":2, "nef":1, "nefertiti":4, "nefretete":4, "neg":1, "negative":3, "negative feedback":5, "negative hallucination":8, "negative polarity":7, "negative resistance":6, "negative sign":4, "negative tax":4, "negative-raising":4, "negatived":3, "negatively":4, "negativeness":4, "negativing":4, "negativism":4, "negativist":4, "negativity":5, "negativism":4, "negatron":3, "negeb":2, "negev":2, "negligee":3, "negligence":3, "negligent":3, "negligently":4, "negligibility":6, "negligible":4, "negligibleness":5, "negligibly":4, "negligor neglig":6, "negri sembilan":5, "negro":2, "negropont":3, "neh":1, "nehru":2, "neigh":1, "neighbor":2, "neighborhood":3, "neighborless":3, "neighborliness":4, "neighborly":3, "neighbour":2, "neighbourhood":3, "neighbouring":3, "neighbourless":3, "neighbourliness":4, "neighbourly":3, "neil":1, "neillsville":2, "neilson":2, "neisse":2, "neisseria":4, "neila":2, "neison":2, "neither":2, "neiva":2, "nejd":1, "nek":1, "nekhbet":2, "nekhebet":3, "nekton":2, "nektonic":3, "nell":1, "nelda":2, "nellie":2, "nelly":2, "nelly":2, "nelson":2, "nelson":2, "nemathelminth":4, "nemathecial":4, "nemathecia":5, "nemathecium":5, "nematode":3, "nematologist":5, "nematology":5, "nematocyst":4, "nematocystic":5, "nematoda":4, "nematological":6, "nembutal":3, "nembutsu":3, "nemertine":3, "nemertinea":5, "nemesis":3, "nemoricoline":5, "nemrod":2, "nenni":2, "nep":1, "nephew":2, "nephele":3, "nepheline":3, "nephelinite":4, "nephelite":3, "nephelinitic":5, "nephelometer":5, "nephogram":3, "nephograph":3, "nephological":5, "nephoscope":3, "nephric":2, "nephrism":2, "nephrite":2, "nephron":2, "nephrocele":3, "nephrogenic":4, "nephrolith":3, "nephrolithic":4, "nephrolithotomy":6, "nephropathic":4, "nephrostome":3, "nephrotome":3, "nephrotoxic":4, "nephrotoxicity":6, "nephtali":3, "nepalese":3, "nepman":2, "nepotism":3, "neptune":2, "neptunian":4, "neptunium":4, "neptunium series":6, "nerc":1, "nernst":1, "nernst heat theorem":5, "nerts":1, "nerve":1, "nerve centre":3, "nerve fibre":3, "nerve impulse":3, "nerve-racking":2, "nerve-wracking":2, "nerves":1, "nerveless":2, "nervelessly":3, "nervelessness":3, "nerval":2, "nervine":2, "nerving":2, "nervier":3, "nerviest":3, "nervily":3, "nerviness":3, "nervous":2, "nervous breakdown":4, "nervous system":4, "nervously":3, "nervousness":3, "nervy":2, "nerbudda":3, "nerites":3, "neroli":3, "neroli oil":4, "neronized":3, "neronizing":4, "nerva":2, "nerval":2, "nervate":2, "nervation":3, "nervature":3, "nervule":2, "nervure":2, "nervuration":4, "nesh":1, "ness":1, "ness":1, "nesslerise":3, "nesslerised":3, "nesslerising":4, "nesslerize":3, "nesslerized":3, "nesslerizing":4, "nest":1, "nestable":3, "nested":2, "nester":2, "nestlike":2, "nestling":2, "nesty":2, "nescience":2, "nescient":2, "nescience":3, "nesquehoning":4, "nesselrode":3, "nesselrode":3, "nessus":2, "nestle":2, "nestler":2, "nestor":2, "nestorian":4, "nestorianism":5, "nestorius":4, "net":1, "net domestic product":6, "net national product":6, "net profit":3, "neth":1, "nether":2, "nether world":3, "netherlands":3, "netherlands antilles":6, "netherlands east indies":6, "netherlands guiana":6, "netherlands west indies":6, "netherlander":4, "netherlandic":4, "netherlandian":5, "nethermost":3, "netherward":3, "nett":1, "netball":2, "netcong":2, "netlike":2, "netman":2, "netsuke":3, "netta":2, "nettable":3, "netted":2, "nettie":2, "netting":2, "nettle":2, "nettle rash":3, "nettler":2, "nettlelike":3, "nettlesome":3, "nettly":2, "netty":2, "network":2, "neufchtel":4, "neufchtel":3, "neuilly":2, "neuilly-sur-seine":2, "neuk":1, "neum":1, "neume":1, "neurol":1, "neuss":1, "neustic":2, "neuston":2, "neustonic":3, "neustria":3, "neustrian":3, "neut":1, "neubrandenburg":4, "neuchtel":4, "neuchtel":3, "neumann":2, "neumatic":3, "neumayer":3, "neumster":3, "neupest":2, "neural":2, "neuralgia":3, "neuralgiform":4, "neurasthenic":4, "neurasthenically":6, "neurasthenia":5, "neuraxitis":4, "neuration":3, "neurectomy":4, "neurite":2, "neuritic":3, "neuridine":3, "neurilemma":4, "neurilemmal":4, "neurilemmatic":5, "neuritis":3, "neurogenous":4, "neuroglia":4, "neurogliac":4, "neuroglial":4, "neurologist":4, "neurology":4, "neuromatous":4, "neuron":2, "neurone":2, "neuronic":3, "neuropathy":4, "neuropteran":4, "neuropteron":4, "neuropterous":4, "neurotic":3, "neurotically":5, "neuroticism":4, "neurotomy":4, "neurotrophy":4, "neurotropism":4, "neurotropy":4, "neuroa":3, "neuroanatomical":7, "neuroblast":3, "neuroblastic":4, "neurocele":3, "neurocelian":5, "neurocoel":3, "neurocoele":3, "neurocoelian":5, "neuroembryology":7, "neuroembryological":8, "neurofibril":4, "neurogenic":4, "neurogram":3, "neurogrammic":4, "neurohypophysis":6, "neurolemma":4, "neurolytic":4, "neuroma":3, "neuromas":3, "neuromast":3, "neuromastic":4, "neuromata":4, "neuromuscular":5, "neuropath":3, "neuropathic":4, "neuropathically":6, "neuropathology":6, "neurophysiologist":7, "neurophysiology":7, "neurophysiological":8, "neurophysiologically":9, "neuroplasm":3, "neuroplasmatic":5, "neuropsychiatric":6, "neuropsychiatrist":6, "neuropsychiatry":6, "neurosis":3, "neurosurgeon":4, "neurosurgery":5, "neurosurgical":5, "neurotoxin":4, "neurotrophic":4, "neurotropic":4, "neurovascular":5, "neurula":3, "neusatz":2, "neuter":2, "neutral":2, "neutral spirits":4, "neutralise":3, "neutralism":3, "neutralize":3, "neutralized":3, "neutralizing":4, "neutralisation":5, "neutrality":4, "neutralization":5, "neutrally":3, "neutretto":3, "neutrino":3, "neutron":2, "neutron bomb":3, "neutron number":4, "neutron star":3, "neutrophil":3, "neutrophile":3, "neutrosphere":3, "nev":1, "never":2, "never-never":3, "nevermind":3, "nevermore":3, "nevertheless":4, "nevil":2, "neville":2, "nevin":2, "nevins":2, "nevski":2, "new":1, "new amsterdam":4, "new bedford":3, "new britain":3, "new brunswick":3, "new caledonia":6, "new castile":3, "new criticism":4, "new delhi":3, "new democratic party":7, "new england":3, "new england range":4, "new english bible":5, "new economic policy":8, "new forest":3, "new georgia":3, "new granada":4, "new guinea":3, "new guinea macrophylum":7, "new guinea pidgin":5, "new hampshire":3, "new harmony":4, "new haven":3, "new hebrides":4, "new ireland":3, "new jersey":3, "new jerusalem":5, "new jerusalem church":6, "new kingdom":3, "new latin":3, "new learning":3, "new mexico":4, "new model army":5, "new netherland":4, "new orleans":4, "new orleans jazz":5, "new planets":3, "new plymouth":3, "new providence":4, "new quebec":3, "new romney":3, "new siberian islands":7, "new testament":4, "new windsor":3, "new world monkey":4, "new zealand":3, "new-fashioned":2, "new-model":2, "news":1, "news agency":4, "news vendor":3, "newsagent":3, "newsbeat":2, "newsboard":2, "newsboy":2, "newsbreak":2, "newscast":2, "newscaster":3, "newscasting":3, "newsdealer":3, "newsgirl":2, "newshawk":2, "newshen":2, "newshound":2, "newsies":2, "newsier":3, "newsiest":3, "newsiness":3, "newsless":2, "newslessness":3, "newsletter":3, "newsmagazine":4, "newsman":2, "newsmonger":3, "newspaper":3, "newspaperdom":4, "newspaperish":4, "newspaperman":4, "newspaperwoman":5, "newspaperwomen":5, "newsprint":2, "newsreader":3, "newsreel":2, "newsstand":2, "newsvendor":3, "newswoman":3, "newswomen":3, "newsworthiness":4, "newsworthy":3, "newsy":2, "newt":1, "newark":2, "newberg":2, "newberry":3, "newbery":3, "newborn":2, "newburg":2, "newburgh":2, "newbury":3, "newburyport":4, "newcastle":3, "newcastle disease":5, "newcastle-under-lyme":4, "newcastle-upon-tyne":4, "newchwang":2, "newcombe":2, "newcomen":3, "newcomer":3, "newcomerstown":4, "newel":2, "newel post":3, "newell":2, "newfangled":3, "newfangledly":4, "newfangledness":4, "newfie":2, "newfoundland":3, "newfoundlander":4, "newgate":2, "newground":2, "newham":2, "newhaven":3, "newhouse":2, "newish":2, "newland":2, "newlon":2, "newly":2, "newlywed":3, "newman":2, "newmanise":3, "newmanism":3, "newmanite":3, "newmanize":3, "newmanized":3, "newmanizing":4, "newmarket":3, "newmarket":3, "newness":2, "newport":2, "newport news":3, "newspeak":2, "newton":2, "newton":2, "newton-meter":3, "newtonabbey":4, "newtown st boswells":5, "newtonian mechanics":7, "newtonian telescope":7, "next":1, "nexo":2, "nexus":2, "nex":3, "ney":1, "nez perc":3, "neaera":3, "neander":3, "neanderthal":4, "neanderthal man":5, "neanderthaler":5, "nearctic":3, "neapolitan":5, "neapolitan ice cream":7, "neapolitan sixth":6, "nebiim":3, "nebo":2, "nebraska":3, "nebrophonus":4, "necessaries":4, "necessitarianism":7, "necessitate":4, "necessitated":5, "necessitating":5, "necessitation":5, "necessitative":5, "necessitous":4, "necessitously":5, "necessitousness":5, "necessitude":4, "necessity":4, "necho":2, "necremia":4, "necrolatry":4, "necrologist":4, "necrology":4, "necrophilism":4, "necropolis":4, "necropolises":5, "necrose":2, "necroscopy":4, "necrotic":3, "necrotomist":4, "necrotomy":4, "necrosis":3, "neda":2, "nederland":3, "nedra":2, "neencephalon":5, "nefarious":4, "nefariously":5, "nefariousness":5, "nefertem":3, "negate":2, "negatedness":4, "negater":3, "negaunee":3, "negation":3, "negational":4, "negationist":4, "negator":3, "neglect":2, "neglectedly":4, "neglectedness":4, "neglecter":3, "neglectful":3, "neglectfully":4, "neglectfulness":4, "neglectingly":4, "neglector":3, "negotiable":4, "negotiant":4, "negotiate":4, "negotiability":7, "negotiable":5, "negotiation":5, "negotiator":5, "negr":2, "negress":2, "negrillo":3, "negritic":3, "negritise":3, "negritised":3, "negritising":4, "negritize":3, "negritized":3, "negritizing":4, "negrito":3, "negritude":3, "negro":2, "negro spiritual":6, "negroid":2, "negrophilism":4, "negrophilist":4, "negros":2, "negroise":3, "negroised":3, "negroism":3, "negroising":4, "negroize":3, "negroized":3, "negroizing":4, "negrophil":3, "negrophile":3, "negrophobe":3, "negus":2, "negus":2, "neguses":3, "nehemiah":4, "nehemias":4, "neith":2, "neilah":3, "nekrasov":3, "neleus":3, "nelides":3, "nelumbian":4, "nelumbo":3, "neman":2, "nematic":3, "nemertea":4, "nemertean":4, "nemea":3, "nemean lion":5, "nemery":3, "nemesia":3, "nemo":2, "nemoricole":4, "nemunas":3, "nene":2, "neo-catholic":4, "neo-christianity":6, "neo-classic":3, "neo-classicist":4, "neo-confucian":4, "neo-confucianism":5, "neo-confucianist":5, "neo-darwinism":4, "neo-darwinist":4, "neo-darwinian":5, "neo-gothic":3, "neo-grammarian":5, "neo-impressionism":5, "neo-impressionist":5, "neo-kantianism":5, "neo-latin":3, "neo-lamarckism":4, "neo-lamarckist":4, "neo-lamarckian":5, "neo-lutheranism":5, "neo-melanesian":6, "neo-orthodoxy":5, "neo-plastic":3, "neo-plasticism":4, "neo-plasticist":4, "neo-plasticist":4, "neo-platonism":4, "neo-pythagorean":6, "neo-pythagoreanism":7, "neo-realism":4, "neo-realist":4, "neo-romanticism":5, "neo-romanticism":5, "neo-synephrine":4, "neologise":4, "neologised":4, "neologism":4, "neologist":4, "neologising":5, "neologistic":5, "neologistical":6, "neologize":4, "neologized":4, "neologizing":5, "neology":4, "neon":2, "neon lamp":3, "neoptolemus":5, "neoterise":4, "neoterised":4, "neoterism":4, "neoterising":5, "neoterize":4, "neoterized":4, "neoterizing":5, "neotenous":4, "neoteny":4, "neoanthropic":5, "neoarsphenamine":6, "neocatholicism":6, "neocene":3, "neochristianity":7, "neoclassic":4, "neoclassical":5, "neoclassicism":5, "neoclassicism":5, "neoclassicist":5, "neocortex":4, "neocolonial":6, "neocolonialism":7, "neocolonialist":7, "neodesha":4, "neodymium":5, "neoformation":5, "neoformative":5, "neogaea":4, "neogaeal":4, "neogaean":4, "neogaeic":4, "neogene":3, "neogea":4, "neogeal":4, "neogean":4, "neogeic":4, "neoimpressionism":6, "neolith":3, "neolithic":4, "neological":5, "neologically":6, "neomycin":4, "neonate":3, "neonatal":4, "neonatally":5, "neoorthodox":5, "neopaleozoic":7, "neophyte":3, "neophytic":4, "neophytism":4, "neopilina":5, "neoplasm":3, "neoplastic":4, "neoplastic":4, "neoplasticism":5, "neoplasticist":5, "neoplasticist":5, "neoplasty":4, "neoplatonism":5, "neoprene":3, "neoscholasticism":6, "neosho":3, "neostigmine":4, "neostyle":3, "neostyled":3, "neostyling":4, "neoter":3, "neoteric":4, "neotropical":5, "neotype":3, "neoytterbium":6, "neozoic":4, "neorthodox":6, "neorthodoxy":7, "nepal":2, "nepali":3, "nepenthe":3, "nepenthes":3, "nepenthean":4, "neper":2, "nephi":2, "nephologist":4, "nephology":4, "nephralgic":3, "nephralgia":4, "nephrectomise":4, "nephrectomised":4, "nephrectomising":5, "nephrectomize":4, "nephrectomized":4, "nephrectomizing":5, "nephrectomy":4, "nephridia":4, "nephridial":4, "nephridium":4, "nephritic":3, "nephritis":3, "nephrogenous":4, "nephropathy":4, "nephrostomous":4, "nephrotic":3, "nephrotomise":4, "nephrotomy":4, "nephrosis":3, "nepit":2, "nepos":2, "nepotic":3, "neral":2, "nereid":3, "nereis":3, "nereus":3, "neri":2, "neritic":3, "nero":2, "nero's-crown":2, "nerol":2, "neruda":3, "nesosilicate":5, "netaji":3, "neto":2, "netsuke":3, "neva":2, "nevada":3, "nevada":3, "nevers":2, "nevis":2, "nevoid":2, "nevus":2, "nga":1, "ngaio":2, "nganhwei":2, "ngaliema mountain":5, "ngc":1, "ngk":1, "ngoma":2, "nguni":2, "ngwee":1, "niamey":2, "nib":1, "nibs":1, "nibbana":3, "nibbing":2, "nibble":2, "nibbler":2, "niblick":2, "niblike":2, "nice":1, "nice":1, "nice-nellie":2, "nice-nellie":2, "nice-nelly":2, "nice-nellyism":3, "nice-nellyism":3, "nicely":2, "niceness":2, "niche":1, "nicher":2, "nicholson":3, "nicholas":3, "nicholas i":4, "nicholas ii":4, "nicholas of cusa":6, "nicholas v":4, "nicholasville":4, "nick":1, "nick":1, "nickel":2, "nickel bloom":3, "nickel plate":3, "nickel silver":4, "nickel-plate":2, "nickeled":2, "nickelled":2, "nickelic":3, "nickeliferous":5, "nickeling":3, "nickelise":3, "nickelised":3, "nickelising":4, "nickelize":3, "nickelized":3, "nickelizing":4, "nickelous":3, "nickelodeon":5, "nickeltype":3, "nicker":2, "nickey":2, "nicklaus":2, "nicknack":2, "nickname":2, "nicknamed":2, "nicknamer":3, "nicknaming":3, "nickpoint":2, "nicky":2, "nicaragua":4, "nicaragua":5, "niccolite":3, "nicer":2, "nicest":2, "nicol prism":3, "nicolson":3, "nicobar islands":5, "nicobarese":4, "nicodemus":4, "nicolay":3, "nicolai":4, "nicolaus":4, "nicosia":4, "nicotine":3, "nicotined":3, "nicotineless":4, "nicotinamide":5, "nicotinic":4, "nicotinic acid":6, "nicotinise":4, "nicotinised":4, "nicotinism":4, "nicotinising":5, "nicotinize":4, "nicotinized":4, "nicotinizing":5, "nictate":2, "nictheroy":3, "nictitant":3, "nictitate":3, "nictitated":4, "nictitating":4, "nictitating membrane":6, "nictitation":4, "nid-nod":1, "nide":1, "nida":2, "niddering":3, "niddle-noddle":3, "nidering":3, "nidified":3, "nidificate":4, "nidificated":5, "nidificating":5, "nidification":5, "nidificational":6, "nidify":3, "nidifying":4, "niece":1, "nielse":2, "nielsen":2, "nier":1, "nierstein":2, "niersteiner":3, "nies":1, "nieve":1, "niebuhr":2, "niederosterreich":5, "niedersachsen":4, "niemen":2, "niemeyer":3, "niemoeller":3, "niemler":3, "nietzsche":2, "nietzschean":3, "nietzscheanism":4, "nietzscheism":3, "niff":1, "niftier":3, "niftiest":3, "nifty":2, "nig":1, "nig":1, "nigh":1, "night":1, "night blindness":3, "night dancer":3, "night heron":3, "night letter":3, "night raven":3, "night watchman":3, "night-blooming cereus":5, "nights":1, "nightcap":2, "nightcapped":2, "nightclub":2, "nightclubber":3, "nightclubbing":3, "nightclubclubbed":3, "nightdress":2, "nightfall":2, "nightgown":2, "nighthawk":2, "nightie":2, "nighties":2, "nightingale":3, "nightingale":3, "nightjar":2, "nightless":2, "nightlife":2, "nightlong":2, "nightly":2, "nightmare":2, "nightmarish":3, "nightmarishly":4, "nightmarishness":4, "nightrider":3, "nightriding":3, "nightshade":2, "nightshirt":2, "nightside":2, "nightspot":2, "nightstand":2, "nighttime":2, "nightwalker":3, "nightwalking":3, "nightwear":2, "nighty":2, "nighty-night":2, "nigfishes":3, "niggard":2, "niggardise":3, "niggardised":3, "niggardising":4, "niggardize":3, "niggardized":3, "niggardizing":4, "niggardliness":4, "niggardly":3, "nigger":2, "niggerhead":3, "nigging":2, "niggle":2, "niggler":2, "niggling":2, "nigrification":5, "nigrify":3, "nigritude":3, "nigritudinous":5, "nijmegen":3, "nikethamide":4, "nikko":2, "nikkud":2, "nikkudim":3, "nil":1, "nil desperandum":5, "nile":1, "nill":1, "nilsson":2, "nilgai":2, "nilghau":2, "nilgiri hills":4, "nilgiris":3, "nilpotent":3, "nim":1, "nimble":2, "nimblewit":3, "nimbly":2, "nimbostratus":4, "nimbus":2, "nimbused":2, "nimitz":2, "niminy-pimininess":6, "niminy-piminy":5, "niminy-piminyism":6, "nimrod":2, "nimrodic":3, "nimrodian":4, "nimrodical":4, "nimrud":2, "nimwegen":3, "nine":1, "nine":1, "ninebark":2, "ninefold":2, "ninepence":2, "ninepins":2, "nineteen":2, "nineteenth":2, "nineteenth hole":3, "nineteenth man":3, "ninetieth":3, "ninety":2, "ninety-eight":2, "ninety-eighth":2, "ninety-fifth":2, "ninety-five":2, "ninety-four":2, "ninety-fourth":2, "ninety-nine":2, "ninety-ninth":2, "ninety-second":3, "ninety-seven":3, "ninety-seventh":3, "ninety-six":2, "ninety-sixth":2, "ninety-three":2, "ninety-two":2, "ninghsia":2, "ningpo":2, "ningsia":2, "ninth":1, "ninthly":2, "nincompoop":3, "nincompoopery":5, "nincompoopish":4, "nineveh":3, "ninevite":3, "ninevitish":4, "ninevitical":5, "ningal":2, "ninny":2, "ninnyhammer":4, "ninnyish":3, "niort":1, "nip":1, "nip":1, "niphablepsia":5, "nipissing":3, "nipigon":3, "nipmuck":2, "nipp":2, "nipper":2, "nippers":2, "nipping":2, "nippingly":3, "nipple":2, "nippleless":3, "nipplewort":3, "nippon":2, "nipponese":3, "nipponism":3, "nippur":2, "nippy":2, "nirc":1, "nirmalin":3, "nirvana":3, "nirvanic":3, "nissan":2, "nissen hut":3, "nistru":2, "nit":1, "nit-picking":2, "nitchie":2, "nitid":2, "nitti":2, "nittier":3, "nittiest":3, "nitty":2, "nitty-gritty":3, "nitwit":2, "niven":2, "niveous":3, "nix":1, "nixer":2, "nixes":2, "nixie":2, "nixon":2, "nizhni novgorod":5, "nizhni tagil":4, "niagara":4, "niagara falls":5, "niantic":3, "niarchos":3, "niacin":3, "niacinamide":5, "nibelung":3, "nibelungs":3, "nibelungenlied":5, "niblungs":2, "nicaea":3, "nicaean":3, "nicene":2, "nicene council":4, "nicene creed":3, "nicetas":3, "nicety":3, "nicholson":3, "nicholas":3, "nichrome":2, "nicippe":3, "nicias":3, "nicole":2, "nicostratus":4, "nicola":3, "nicolai":3, "nicolas":3, "nicolai":4, "nicolet":3, "nicotiana":5, "nidana":3, "nidaros":3, "nidicolous":4, "nidifugous":4, "nidus":2, "nielli":3, "niellist":3, "niello":3, "nielloed":3, "nielloing":4, "niflheim":3, "nigel":2, "niger":2, "niger seed":3, "niger-congo":3, "nigeria":4, "nigrescent":3, "nigrosin":3, "nigrosine":3, "nihil":2, "nihil obstat":4, "nihilism":3, "nihilism":3, "nihilist":3, "nihilistic":4, "nihility":4, "nihon":2, "niigata":4, "niihau":4, "nijinsky":3, "nikaria":4, "nike":2, "nikisch":2, "nikon":2, "nikos":2, "nikolai":3, "nikolainkaupunki":6, "nikolayev":4, "niku-bori":3, "nilo-saharan":4, "nilometer":4, "nilotic":3, "nilometric":4, "nilote":3, "nilus":2, "nimiety":4, "nimonic alloy":5, "nina":2, "nineveh":3, "nino":2, "ninon":2, "ninus":2, "niobe":3, "niobic":3, "niobid":3, "niobite":3, "niobium":4, "niobous":3, "niobrara":4, "nipa":2, "nireus":3, "nisan":2, "nisei":2, "nisei":2, "nishapur":3, "nishinomiya":5, "nisi":2, "nisi prius":4, "nisi-prius":3, "nisus":2, "nita":2, "niter":2, "niter":3, "niteri":4, "nitid":2, "niton":2, "nitralloy":3, "nitrate":2, "nitrated":3, "nitrating":3, "nitramine":3, "nitramino":4, "nitration":3, "nitre":2, "nitric":2, "nitric acid":4, "nitric bacteria":6, "nitric oxide":4, "nitride":2, "nitriding":3, "nitrile":2, "nitrite":2, "nitrifiable":5, "nitrification":5, "nitrify":3, "nitro":2, "nitro":2, "nitro compound":4, "nitrogenise":4, "nitrogenised":4, "nitrogenising":5, "nitrogenize":4, "nitrogenous":4, "nitrolic":3, "nitrometer":4, "nitrosamine":4, "nitrous":2, "nitrous acid":4, "nitrous bacteria":6, "nitrous oxide":4, "nitrobacteria":6, "nitrobacterium":6, "nitrobenzene":4, "nitrocellulose":5, "nitrocellulosic":6, "nitrochloroform":5, "nitrogen":3, "nitrogen cycle":5, "nitrogen dioxide":6, "nitrogen fixation":6, "nitrogen mustard":5, "nitrogen peroxide":6, "nitrogen tetroxide":6, "nitrogenize":4, "nitrogenized":4, "nitrogenizing":5, "nitrogenization":6, "nitrogenation":5, "nitroglycerin":5, "nitroglycerine":5, "nitrohydrochloric acid":8, "nitromannite":4, "nitromannitol":5, "nitromersol":4, "nitromethane":4, "nitroparaffin":5, "nitrophenol":4, "nitroso":3, "nitrosyl":3, "nitrosylsulfuric":6, "nitrosylsulphuric":6, "nitrotrichloromethane":7, "niuan":3, "niue":3, "niv":2, "nival":2, "nivation":3, "nivernais":3, "nivre":2, "nivse":3, "niyama":3, "nizam":2, "nizamate":3, "nia":3, "njord":1, "njorth":1, "nkgb":1, "nkomo":2, "nkrumah":2, "nkvd":1, "nlc":1, "nlf":1, "nllst":1, "nmr":1, "nnamdi":2, "nne":1, "nnw":1, "no-account":2, "no-ball":1, "no-claim bonus":3, "no-go area":4, "no-hoper":2, "no-one":1, "no-par":1, "no-side":1, "no-tillage":2, "no-trumper":2, "nob":1, "nobbier":3, "nobbiest":3, "nobbily":3, "nobble":2, "nobbler":2, "nobbut":2, "nobby":2, "nock":1, "nocking point":3, "noctambule":3, "noctambulant":4, "noctambulation":5, "noctambulism":4, "noctambulist":4, "noctambulistic":5, "noctambulous":4, "noctis":2, "noctiluca":4, "noctilucan":4, "noctilucence":4, "noctilucent":4, "noctule":2, "nocturn":2, "nocturne":2, "nocturnal":3, "nocturnality":5, "nocturnally":4, "noctuid":3, "nocuous":3, "nocuously":4, "nocuousness":4, "nod":1, "nod":1, "node":1, "node of ranvier":5, "nodal":2, "nodded":2, "nodding":2, "noddingly":3, "noddle":2, "noddy":2, "nodical":3, "nodule":2, "nodular":3, "nofretete":4, "nog":1, "nogg":1, "noggin":2, "nogging":2, "noh":1, "noil":1, "noily":2, "noir":1, "noise":1, "noiseless":2, "noiselessly":3, "noiselessness":3, "noisemaker":3, "noising":2, "noisier":3, "noisiest":3, "noisily":3, "noisiness":3, "noisy":2, "noisette":2, "noisome":2, "noisomely":3, "noisomeness":3, "nolde":2, "nolle pros":3, "nolle prosequi":5, "noludar":3, "nom":1, "nome":1, "nome":1, "nomarch":2, "nomarchy":3, "nombles":2, "nombril":2, "nomina":3, "nominal":3, "nominal value":5, "nominal wages":5, "nominalism":4, "nominalist":4, "nominalistic":5, "nominalistically":7, "nominalize":4, "nominalized":4, "nominalizing":5, "nominate":3, "nominated":4, "nominating":4, "nomination":4, "nominative":4, "nominatively":5, "nominator":4, "nominee":3, "nomogram":3, "nomograph":3, "nomographic":4, "nomographically":6, "nomological":5, "nomothetic":4, "nomothetical":5, "non compos mentis":5, "non licet":3, "non liquet":3, "non prosequitur":5, "non sequitur":4, "non troppo":3, "non-african":3, "non-alexandrian":5, "non-anglican":3, "non-arab":2, "non-arabic":3, "non-aryan":3, "non-attic":2, "non-american":4, "non-asian":2, "non-asiatic":4, "non-bantu":2, "non-baptist":2, "non-biblical":3, "non-bolshevik":3, "non-bolshevism":3, "non-bolshevist":3, "non-bolshevistic":4, "non-brahmanic":3, "non-brahmanical":4, "non-brahminic":3, "non-brahminical":4, "non-british":2, "non-buddhist":2, "non-buddhistic":3, "non-calvinist":3, "non-calvinistic":4, "non-calvinistical":5, "non-catholic":3, "non-caucasic":3, "non-caucasian":3, "non-caucasoid":3, "non-celtic":2, "non-chaucerian":4, "non-chinese":2, "non-christian":2, "non-com":1, "non-congressional":4, "non-congregational":5, "non-cymric":2, "non-czechoslovakian":6, "non-danish":2, "non-darwinian":4, "non-druid":2, "non-english":2, "non-euclidean":4, "non-euclidean geometry":8, "non-european":4, "non-egyptian":3, "non-episcopalian":5, "non-flemish":2, "non-gaelic":2, "non-german":2, "non-germanic":3, "non-gothic":2, "non-gothically":4, "non-gypsy":2, "non-hamitic":3, "non-hellenic":3, "non-hebraic":3, "non-hebraically":5, "non-hebrew":2, "non-hindu":2, "non-hibernian":4, "non-homeric":3, "non-indian":3, "non-indo-european":5, "non-islamic":3, "non-islamitic":4, "non-israelite":4, "non-israelitic":5, "non-israelitish":5, "non-iirish":3, "non-ionic":3, "non-irish":2, "non-iron":2, "non-italian":3, "non-italic":3, "non-japanese":3, "non-jewish":2, "non-kaffir":2, "non-latin":2, "non-magyar":2, "non-malthusian":4, "non-malay":2, "non-malayan":3, "non-mediterranean":6, "non-mendelian":4, "non-methodist":3, "non-methodistic":4, "non-mongol":2, "non-mongolian":4, "non-mormon":2, "non-moslem":2, "non-mohammedan":4, "non-muslem":2, "non-muslim":2, "non-muhammadan":4, "non-muhammedan":4, "non-newtonian":4, "non-negritic":3, "non-negro":2, "non-nicene":2, "non-nordic":2, "non-norman":2, "non-oscan":2, "non-parisian":3, "non-peruvian":4, "non-polish":2, "non-portuguese":3, "non-presbyterian":5, "non-profit-making":3, "non-protestant":3, "non-prussian":2, "non-quaker":2, "non-quakerish":3, "non-roman":2, "non-russian":2, "non-sabbatic":3, "non-sabbatical":4, "non-sanskritic":3, "non-saxon":2, "non-scandinavian":5, "non-semite":2, "non-semitic":3, "non-shakespearean":4, "non-shakespearian":4, "non-slavic":2, "non-spanish":2, "non-spartan":2, "non-stoic":2, "non-striker":2, "non-swedish":2, "non-syrian":3, "non-tartar":2, "non-teuton":2, "non-teutonic":3, "non-trinitarian":5, "non-turkish":2, "non-turkic":2, "non-tuscan":2, "non-u":1, "non-umbrian":3, "non-ukrainian":4, "non-unitarian":5, "non-uralian":4, "non-vedic":2, "non-venetian":3, "non-virginian":3, "non-zionist":3, "nonce":1, "none":1, "none-so-pretty":2, "nones":1, "nonesuch":2, "nonetheless":3, "nong":1, "nonabdication":5, "nonabdicative":5, "nonabjuratory":6, "nonabjuration":5, "nonabolition":5, "nonabrogable":5, "nonabsentation":5, "nonabsorbability":7, "nonabsorbable":5, "nonabsorbent":4, "nonabsorbency":5, "nonabsorbing":4, "nonabsorption":4, "nonabsorptive":4, "nonabsolute":4, "nonabsolutist":5, "nonabsolution":5, "nonabsolutistic":6, "nonabsolutistically":8, "nonabstainer":4, "nonabstaining":4, "nonabstention":4, "nonabstemious":5, "nonabstract":3, "nonabstracted":4, "nonacademic":5, "nonacademical":6, "nonaccedence":4, "nonacceding":4, "nonacceleration":6, "nonaccelerative":6, "nonacceleratory":7, "nonaccent":3, "nonaccented":4, "nonaccenting":4, "nonaccentual":5, "nonacceptance":4, "nonacceptant":4, "nonacceptation":5, "nonaccession":4, "nonaccessory":5, "nonaccidental":5, "nonaccommodating":6, "nonaccommodable":6, "nonaccompaniment":6, "nonaccompanying":6, "nonaccord":3, "nonaccordant":4, "nonaccredited":5, "nonaccretion":4, "nonaccretive":4, "nonaccrued":3, "nonaccruing":4, "nonacculturated":6, "nonaccusing":4, "nonaccumulating":6, "nonaccumulation":6, "nonaccumulative":6, "nonacid":3, "nonacquaintance":4, "nonacquaintanceship":5, "nonacquisitive":5, "nonacquittal":4, "nonacquiescing":5, "nonacquiescence":5, "nonacquiescent":5, "nonactinic":4, "nonactinically":6, "nonaction":3, "nonactionable":5, "nonactive":3, "nonactivity":5, "nonactivation":5, "nonactivator":5, "nonactual":3, "nonactuality":6, "nonadaptation":5, "nonadaptational":6, "nonaddict":3, "nonaddicted":4, "nonaddicting":4, "nonaddictive":4, "nonadherence":4, "nonadherent":4, "nonadhering":4, "nonadhesion":4, "nonadhesive":4, "nonadjacent":4, "nonadjacency":5, "nonadjectively":5, "nonadjectival":5, "nonadjoining":4, "nonadjournment":4, "nonadjunctive":4, "nonadjustability":7, "nonadjustable":5, "nonadjuster":4, "nonadjustment":4, "nonadjustor":4, "nonadjudicated":6, "nonadjudication":6, "nonadjudicative":6, "nonadministrant":5, "nonadministrable":6, "nonadministrative":6, "nonadmission":4, "nonadmissive":4, "nonadmissibility":7, "nonadmissible":5, "nonadmissibleness":6, "nonadmitted":4, "nonadvancement":4, "nonadvantageous":5, "nonadventitious":5, "nonadventurous":5, "nonadvertence":4, "nonadvertency":5, "nonadverbial":5, "nonadvocate":4, "nonadvocacy":5, "nonaerated":4, "nonaerating":4, "nonaesthetic":4, "nonaesthetical":5, "nonaffecting":4, "nonaffectation":5, "nonaffective":4, "nonaffiliated":6, "nonaffiliating":6, "nonaffiliation":6, "nonaffinitive":5, "nonaffinity":5, "nonaffirmance":4, "nonaffirmation":5, "nonage":2, "nonagglomerative":6, "nonagglutinant":5, "nonagglutinating":6, "nonagglutinative":6, "nonaggression":4, "nonaggressive":4, "nonagricultural":6, "nonalcoholic":5, "nonalgebraic":5, "nonalgebraical":6, "nonalien":3, "nonalienating":5, "nonalienation":5, "nonalkaloid":4, "nonalkaloidal":5, "nonallelic":4, "nonallergenic":5, "nonallegation":5, "nonallegiance":4, "nonallegoric":5, "nonallegorical":6, "nonalliterated":6, "nonalliterative":6, "nonallotment":4, "nonalluvial":5, "nonalphabetic":5, "nonalphabetical":6, "nonalternating":5, "nonaltruistic":5, "nonaltruistically":7, "nonambiguity":6, "nonambitious":4, "nonambulatory":6, "nonamorous":4, "nonamphibian":5, "nonamphibious":5, "nonamputation":5, "nonanarchic":4, "nonanarchistic":5, "nonanarchical":5, "nonanalogic":5, "nonanalogical":6, "nonanalytic":5, "nonanalytical":6, "nonanalyzed":4, "nonanalyzable":6, "nonanatomic":5, "nonanatomical":6, "nonancestral":4, "nonanesthetic":5, "nonanesthetized":5, "nonangelic":4, "nonangling":3, "nonanguished":3, "nonanimal":4, "nonanimality":6, "nonanimate":4, "nonanimated":5, "nonanimating":5, "nonanimation":5, "nonannexable":5, "nonannexation":5, "nonannihilability":8, "nonannihilable":6, "nonannulment":4, "nonanonymity":6, "nonantagonistic":6, "nonantagonistically":8, "nonanticipation":6, "nonanticipative":6, "nonanticipatorily":8, "nonanticipatory":7, "nonaphoristic":5, "nonaphoristically":7, "nonapostolic":5, "nonapostolical":6, "nonapparent":4, "nonapparitional":6, "nonappealability":7, "nonappealable":5, "nonappealing":4, "nonappearance":4, "nonappeasability":7, "nonappeasable":5, "nonappeasing":4, "nonappellate":4, "nonappendance":4, "nonappendant":4, "nonappendence":4, "nonappendent":4, "nonappendicular":6, "nonapplicability":7, "nonapplicable":5, "nonapplication":5, "nonapplicative":5, "nonapplicatory":6, "nonappointive":4, "nonapportionable":6, "nonapportionment":5, "nonapposable":5, "nonappreciation":6, "nonappreciative":6, "nonapprehension":5, "nonapprehensive":5, "nonapprehensibility":8, "nonapprehensible":6, "nonapproachability":7, "nonapproachable":5, "nonappropriable":6, "nonappropriative":6, "nonarbitrarily":6, "nonarbitrariness":6, "nonarbitrary":5, "nonarbitrable":5, "nonarchitectonic":6, "nonarchitectural":6, "nonargentiferous":6, "nonarguable":5, "nonargumentative":6, "nonarithmetic":5, "nonarithmetical":6, "nonarmament":4, "nonarmigerous":5, "nonaromatic":5, "nonaromatically":7, "nonarraignment":4, "nonarresting":4, "nonarrival":4, "nonarrogance":4, "nonarrogancy":5, "nonarsenic":4, "nonarsenical":5, "nonarterial":5, "nonarticulate":5, "nonarticulative":6, "nonartistic":4, "nonartistical":5, "nonasthmatic":4, "nonasthmatically":6, "nonasbestine":4, "nonascendance":4, "nonascendant":4, "nonascendancy":5, "nonascendence":4, "nonascendent":4, "nonascendency":5, "nonascertainable":6, "nonascertainableness":7, "nonascertainment":5, "nonascetic":4, "nonascetical":5, "nonasceticism":5, "nonaspersion":4, "nonaspiring":4, "nonaspirate":4, "nonaspirated":5, "nonaspirating":5, "nonaspiratory":6, "nonassault":3, "nonassenting":4, "nonassertion":4, "nonassertive":4, "nonassessability":7, "nonassigned":3, "nonassignability":7, "nonassignable":5, "nonassignment":4, "nonassimilating":6, "nonassimilability":8, "nonassimilable":6, "nonassimilation":6, "nonassimilative":6, "nonassimilatory":7, "nonassistant":4, "nonassister":4, "nonassociability":8, "nonassociable":6, "nonassociation":6, "nonassociational":7, "nonassociative":6, "nonassonance":4, "nonassonant":4, "nonassumed":3, "nonassumption":4, "nonassumptive":4, "nonastral":3, "nonastringent":4, "nonastringency":5, "nonastronomic":5, "nonastronomical":6, "nonathlete":3, "nonathletic":4, "nonathletically":6, "nonatmospheric":5, "nonatmospherical":6, "nonatrophied":4, "nonattachment":4, "nonattacking":4, "nonattainability":7, "nonattainable":5, "nonattainment":4, "nonattendance":4, "nonattestation":5, "nonattributive":5, "nonaugmentative":5, "nonaudibility":6, "nonaudible":4, "nonaudibleness":5, "nonauricular":5, "nonauriferous":5, "nonauthentic":4, "nonauthenticity":6, "nonauthentical":5, "nonauthenticated":6, "nonauthentication":6, "nonauthoritative":6, "nonautonomous":5, "nonautobiographical":8, "nonautomated":5, "nonautomatic":5, "nonautomatically":7, "nonautomotive":5, "nonaxiomatic":6, "nonaxiomatical":7, "nonabandonment":5, "nonabiding":4, "nonabortive":4, "nonabrasive":4, "nonabridgable":5, "nonabridgment":4, "nonabusive":4, "nonacidic":4, "nonacidity":5, "nonacoustic":4, "nonacoustical":5, "nonacute":3, "nonacuity":5, "nonaculeate":5, "nonaculeated":6, "nonadaptability":7, "nonadaptable":5, "nonadapter":4, "nonadapting":4, "nonadaptive":4, "nonadaptor":4, "nonadept":3, "nonadoptable":5, "nonadopter":4, "nonadoption":4, "nonadorner":4, "nonadorning":4, "nonadornment":4, "nonadult":3, "nonagenarian":6, "nonagon":3, "nonagrarian":5, "nonagreement":4, "nonaligned":3, "nonalignable":5, "nonalignment":4, "nonalined":3, "nonalinement":4, "nonamendable":5, "nonamendment":4, "nonamenability":7, "nonamenable":5, "nonamenableness":6, "nonanachronistic":6, "nonanachronistically":8, "nonanachronous":5, "nonanaemic":4, "nonanalogous":5, "nonanemic":4, "nonanonymousness":6, "nonanoic acid":6, "nonaphasic":4, "nonaphasiac":5, "nonaphetic":4, "nonapologetic":6, "nonapologetical":7, "nonaquatic":4, "nonaqueous":4, "nonaristocratic":6, "nonaristocratical":7, "nonaseptic":4, "nonaseptically":6, "nonatheistic":5, "nonatheistical":6, "nonatomic":4, "nonatomical":5, "nonatrophic":4, "nonavailability":7, "nonavoidance":4, "nonavoidable":5, "nonavoidableness":6, "nonbachelor":4, "nonbacterial":5, "nonbailable":4, "nonballoting":4, "nonbankable":4, "nonbanishment":4, "nonbarbaric":4, "nonbarbarian":5, "nonbarbarous":4, "nonbase":2, "nonbathing":3, "nonbaronial":5, "nonbasic":3, "nonbearded":3, "nonbearing":3, "nonbeauty":3, "nonbelligerent":5, "nonbelligerency":6, "nonbending":3, "nonbeneficed":4, "nonbeneficial":5, "nonbeatific":5, "nonbeatifically":7, "nonbeing":3, "nonbeliever":4, "nonbelieving":4, "nonbeneficence":5, "nonbeneficent":5, "nonbenevolence":5, "nonbenevolent":5, "nonbibulous":4, "nonbigoted":4, "nonbillable":4, "nonbilious":3, "nonbinding":3, "nonbiting":3, "nonbitter":3, "nonbiased":3, "nonbilabiate":5, "nonbiographical":6, "nonbiological":6, "nonbituminous":5, "nonblack":2, "nonblameful":3, "nonblamable":4, "nonblamableness":5, "nonblasphemous":4, "nonblasphemy":4, "nonbleach":2, "nonbleeding":3, "nonblended":3, "nonblending":3, "nonblinding":3, "nonblockaded":4, "nonblocking":3, "nonblooming":3, "nonblundering":4, "nonboaster":3, "nonboasting":3, "nonboding":3, "nonbodily":4, "nonboiling":3, "nonbookish":3, "nonborrower":4, "nonborrowing":4, "nonbourgeois":3, "nonbotanic":4, "nonbotanical":5, "nonbranded":3, "nonbreach":2, "nonbreaching":3, "nonbreakable":4, "nonbreeder":3, "nonbreeding":3, "nonbristled":3, "nonbrooding":3, "nonbrowser":3, "nonbrowsing":3, "nonbromidic":4, "nonbrutal":3, "nonbudding":3, "nonbulbar":3, "nonbulbaceous":4, "nonbulbiferous":5, "nonbulbous":3, "nonbuoyant":3, "nonbuoyancy":4, "nonburgage":3, "nonburnable":4, "nonburning":3, "nonbursting":3, "nonburdensome":4, "nonbusiness":3, "nonbusily":4, "nonbusy":3, "nonbusyness":4, "nonbuttressed":3, "nonbuying":3, "nonbureaucratic":5, "nonbureaucratically":7, "noncaffeine":3, "noncaffeinic":4, "noncaking":3, "noncalcareous":5, "noncalcified":4, "noncalculating":5, "noncalculable":5, "noncalculative":5, "noncancelable":5, "noncancellable":5, "noncancerous":4, "noncandescence":4, "noncandescent":4, "noncannibalistic":6, "noncannibalistically":8, "noncapillaries":5, "noncapillarity":6, "noncapillary":5, "noncapital":4, "noncapitalist":5, "noncapitalistic":6, "noncapitalistically":8, "noncapitalized":5, "noncapsizable":5, "noncaptious":3, "noncarbolic":4, "noncarbon":3, "noncarbohydrate":5, "noncarbonate":4, "noncarbonated":5, "noncarnivorous":5, "noncarrier":4, "noncartelized":4, "noncash":2, "noncastigating":5, "noncastigation":5, "noncasuistic":5, "noncasuistical":6, "noncatholicity":6, "noncataclysmal":5, "noncataclysmic":5, "noncatalytic":5, "noncatalytically":7, "noncatastrophic":5, "noncatechistic":5, "noncatechistical":6, "noncategorical":6, "noncausal":3, "noncausable":4, "noncausative":4, "noncaustic":3, "noncaustically":5, "noncausality":5, "noncausation":4, "noncadenced":3, "noncadent":3, "noncaloric":4, "noncalumniating":6, "noncalumnious":5, "noncapitulation":6, "noncapricious":4, "noncatarrhal":4, "noncathartic":4, "noncathartical":5, "noncelebration":5, "noncellular":4, "noncellulous":4, "noncensored":3, "noncensorious":5, "noncensurable":5, "noncensurableness":6, "noncentral":3, "noncerebral":4, "nonceremonial":6, "nonceremonious":6, "noncertainty":4, "noncertified":4, "noncertification":6, "noncertitude":4, "noncelestial":4, "noncereal":4, "nonchafing":3, "nonchalky":3, "nonchallenger":4, "nonchallenging":4, "nonchampion":4, "nonchangeable":4, "nonchangeableness":5, "nonchanneled":3, "nonchannelized":4, "nonchargeable":4, "noncharacteristic":6, "noncharacteristically":8, "noncharacterized":5, "noncharismatic":5, "noncharitable":5, "noncharitableness":6, "nonchastisement":4, "nonchastity":4, "nonchalance":3, "nonchalant":3, "nonchalantly":4, "nonchaotic":4, "nonchaotically":6, "nonchemist":3, "nonchemical":4, "nonchivalric":4, "nonchivalrous":4, "nonchimeric":4, "nonchimerical":5, "noncholeric":4, "nonchronic":3, "nonchronical":4, "nonchromatic":4, "nonchromatically":6, "nonchromosomal":5, "nonchurch":2, "nonchurched":2, "nonchurchgoer":4, "nonchurchgoing":4, "nonciliate":4, "nonciliated":5, "noncircuited":4, "noncircumscribed":4, "noncircumscriptive":5, "noncircumspect":4, "noncircumstantial":5, "noncircumvallated":6, "noncircuitous":5, "noncircular":4, "noncirculating":5, "noncirculation":5, "noncirculatory":6, "nonciteable":4, "noncitable":4, "noncitizen":4, "noncivilized":4, "noncivilizable":6, "noncitation":4, "noncivilian":4, "nonclaimable":4, "nonclamorous":4, "nonclarified":4, "nonclarifiable":6, "nonclarification":6, "nonclassic":3, "nonclassical":4, "nonclassicality":6, "nonclassified":4, "nonclassifiable":6, "nonclassification":6, "nonclastic":3, "nonclearance":3, "noncleistogamous":5, "noncleistogamic":5, "nonclerical":4, "nonclimbable":4, "nonclimbing":3, "nonclinging":3, "nonclinical":4, "nonclimactic":4, "nonclimactical":5, "noncloistered":3, "nonclose":2, "nonclosely":3, "nonclotting":3, "nonclosure":3, "nonco-operation":5, "nonco-operationist":6, "nonco-operator":5, "noncodified":4, "noncognate":3, "noncognition":4, "noncognitive":4, "noncognizance":4, "noncognizant":4, "noncognizable":5, "noncoinage":3, "noncollaboration":6, "noncollapsable":5, "noncollapsibility":7, "noncollapsible":5, "noncollectable":5, "noncollectible":5, "noncollection":4, "noncollective":4, "noncollectivistic":6, "noncollinear":5, "noncolloid":3, "noncolloidal":4, "noncollusion":4, "noncollusive":4, "noncolorability":7, "noncolorable":5, "noncolorableness":6, "noncoloring":4, "noncom":2, "noncombat":3, "noncombatant":4, "noncombining":4, "noncombination":5, "noncombinative":5, "noncombustion":4, "noncombustive":4, "noncombustibility":7, "noncombustible":5, "noncomic":3, "noncomical":4, "noncomicality":6, "noncommemoration":6, "noncommemorational":7, "noncommemorative":6, "noncommemoratory":7, "noncommencement":4, "noncommendable":5, "noncommendableness":6, "noncommendatory":6, "noncommercial":4, "noncommerciality":7, "noncommiseration":6, "noncommiserative":6, "noncommissioned":4, "noncommissioned officer":7, "noncommitment":4, "noncommittal":4, "noncommodious":5, "noncommunal":4, "noncommunist":4, "noncommunistic":5, "noncommunistical":6, "noncommunicant":5, "noncommunicating":6, "noncommunication":6, "noncommunicative":6, "noncommutative":5, "noncompensating":5, "noncompensation":5, "noncompensative":5, "noncompensatory":6, "noncompeting":4, "noncompetitive":5, "noncompetent":4, "noncompetency":5, "noncomplaisance":4, "noncomplaisant":4, "noncomplacence":4, "noncomplacent":4, "noncomplacency":5, "noncompletion":4, "noncomplicity":5, "noncompliance":4, "noncompliant":4, "noncomplying":4, "noncomposite":4, "noncompoundable":5, "noncomposure":4, "noncompression":4, "noncompressive":4, "noncompressibility":7, "noncompressible":5, "noncomprehending":5, "noncomprehendible":6, "noncomprehensible":6, "noncomprehension":5, "noncomprehensive":5, "noncompromised":4, "noncompromising":5, "noncompulsion":4, "noncompulsive":4, "noncompulsorily":6, "noncompulsoriness":6, "noncompulsory":5, "noncomputation":5, "nonconcealment":4, "nonconceiving":4, "nonconcentrated":5, "nonconcentration":5, "nonconcentrative":5, "nonconcentric":4, "nonconcentricity":6, "nonconcentrical":5, "nonconceptual":5, "nonconcession":4, "nonconcessive":4, "nonconciliating":6, "nonconciliatory":7, "nonconcision":4, "nonconcluding":4, "nonconclusion":4, "nonconclusive":4, "nonconcordant":4, "nonconcurrence":4, "nonconcurrent":4, "noncondemnation":5, "noncondensed":3, "noncondensing":4, "noncondensable":5, "noncondensation":5, "noncondensibility":7, "noncondensible":5, "noncondescending":5, "noncondescension":5, "noncondiment":4, "noncondimental":5, "nonconditioned":4, "nonconditional":5, "noncondonation":5, "nonconducting":4, "nonconductive":4, "nonconductibility":7, "nonconductible":5, "nonconductor":4, "nonconducive":4, "nonconfederate":5, "nonconfederation":6, "nonconferrable":5, "nonconfiding":4, "nonconfined":3, "nonconfinement":4, "nonconfining":4, "nonconfirmative":5, "nonconfirmatory":6, "nonconfirming":4, "nonconfirmation":5, "nonconfiscable":5, "nonconfiscation":5, "nonconfidence":4, "nonconfident":4, "nonconfidential":5, "nonconfidentiality":8, "nonconflicting":4, "nonconflictive":4, "nonconformance":4, "nonconformist":4, "nonconformist":4, "nonconformity":5, "nonconfrontation":5, "noncongealing":4, "noncongenital":5, "noncongestion":4, "noncongestive":4, "noncongratulatory":7, "noncongregative":5, "noncongruence":4, "noncongruent":4, "noncongruency":5, "noncongruity":5, "noncongruous":4, "nonconjecturable":6, "nonconjunction":4, "nonconjunctive":4, "nonconjugal":4, "nonconjugality":6, "nonconjugate":4, "nonconjugation":5, "nonconnective":4, "nonconnectivity":6, "nonconnivance":4, "nonconnivence":4, "nonconnotative":5, "nonconnubial":5, "nonconnubiality":7, "nonconscious":3, "nonconscientious":5, "nonconscriptable":5, "nonconscription":4, "nonconsecutive":5, "nonconsent":3, "nonconsenting":4, "nonconserving":4, "nonconservation":5, "nonconservational":6, "nonconservative":5, "nonconsecration":5, "nonconsequence":4, "nonconsequent":4, "nonconsequential":5, "nonconsequentiality":8, "nonconsideration":6, "nonconsignment":4, "nonconsistorial":6, "nonconsolable":5, "nonconsoling":4, "nonconsolidation":6, "nonconsorting":4, "nonconsonance":4, "nonconspirator":5, "nonconspiratorial":7, "nonconspiring":4, "nonconstant":3, "nonconstituent":5, "nonconstituted":5, "nonconstitutional":6, "nonconstraint":3, "nonconstraining":4, "nonconstricted":4, "nonconstricting":4, "nonconstrictive":4, "nonconstructive":4, "nonconstruability":7, "nonconstruable":5, "nonconsultative":5, "nonconsultatory":6, "nonconsumption":4, "nonconsumptive":4, "nonconsumable":5, "nonconsuming":4, "nonconsummation":5, "nonconsular":4, "noncontact":3, "noncontaminable":6, "noncontamination":6, "noncontaminative":6, "noncontagion":4, "noncontagious":4, "noncontemptibility":7, "noncontemptible":5, "noncontemptibleness":6, "noncontemptuous":5, "noncontemplative":5, "noncontemporaries":6, "noncontemporary":6, "noncontemporaneous":7, "noncontending":4, "noncontention":4, "noncontentious":4, "nonconterminal":5, "nonconterminous":5, "noncontestation":5, "noncontextual":4, "noncontiguous":5, "noncontingent":4, "noncontinuance":5, "noncontinuable":6, "noncontinuation":6, "noncontinuity":6, "noncontinuous":5, "noncontiguity":6, "noncontinence":4, "noncontinency":5, "noncontinental":5, "noncontraction":4, "noncontrastive":4, "noncontraband":4, "noncontradiction":5, "noncontradictory":6, "noncontrariety":6, "noncontributable":6, "noncontributing":5, "noncontributive":5, "noncontributor":5, "noncontributory":6, "noncontrivance":4, "noncontribution":5, "noncontrolled":3, "noncontrollable":5, "noncontrolling":4, "noncontroversial":5, "noncontumacious":5, "nonconvective":4, "nonconventional":5, "nonconverging":4, "nonconvertibility":7, "nonconvertible":5, "nonconvertibleness":6, "nonconvergence":4, "nonconvergent":4, "nonconvergency":5, "nonconversance":4, "nonconversant":4, "nonconversancy":5, "nonconversable":5, "nonconversableness":6, "nonconversational":6, "nonconversion":4, "nonconveyance":4, "nonconviction":4, "nonconvivial":5, "nonconviviality":7, "noncorporate":4, "noncorporation":5, "noncorporative":5, "noncorporeal":5, "noncorporeality":7, "noncorpuscular":5, "noncorrection":4, "noncorrectional":5, "noncorrective":4, "noncorrelative":5, "noncorrespondence":5, "noncorrespondent":5, "noncorresponding":5, "noncorrelating":5, "noncorrelation":5, "noncorroborating":6, "noncorroboration":6, "noncorroborative":6, "noncorroboratory":7, "noncorroding":4, "noncorrodible":5, "noncorrosive":4, "noncorrupt":3, "noncorrupter":4, "noncorruptibility":7, "noncorruptible":5, "noncorruptibleness":6, "noncorruptive":4, "noncortical":4, "noncosmic":3, "noncosmically":5, "noncosmopolite":5, "noncosmopolitism":6, "noncosmopolitan":6, "noncosmopolitanism":7, "noncottager":4, "noncotyledonal":6, "noncotyledonary":7, "noncotyledonous":6, "noncounteractive":5, "noncounterfeit":4, "noncovetous":4, "noncoagulating":6, "noncoagulability":8, "noncoagulable":6, "noncoagulation":6, "noncoagulative":6, "noncoalescence":5, "noncoalescent":5, "noncoalescing":5, "noncoercion":4, "noncoercive":4, "noncoercible":5, "noncogent":3, "noncogency":4, "noncohabitation":6, "noncoherence":4, "noncoherent":4, "noncoherency":5, "noncohesion":4, "noncohesive":4, "noncoincidence":5, "noncoincident":5, "noncoincidental":6, "noncolonial":5, "noncooperation":6, "noncooperationist":7, "noncooperative":6, "noncooperator":6, "noncoordinating":6, "noncoordination":6, "noncoplanar":4, "noncoperation":7, "noncoperationist":8, "noncoperative":7, "noncoperator":7, "noncranking":3, "noncreditable":5, "noncreditableness":6, "noncredibility":6, "noncredible":4, "noncredibleness":5, "noncreditor":4, "noncredulous":4, "noncreeping":3, "noncreative":4, "noncreativity":6, "noncredence":3, "noncredent":3, "noncrenate":3, "noncrenated":4, "noncretaceous":4, "noncriminal":4, "noncriminality":6, "noncritical":4, "noncriticizing":5, "noncrinoid":3, "noncrustaceous":4, "noncrucial":3, "noncruciform":4, "noncrusading":4, "noncryptic":3, "noncryptical":4, "noncrystalline":4, "noncrystallized":4, "noncrystallizable":6, "noncrystallizing":5, "nonculminating":5, "nonculmination":5, "nonculpability":6, "nonculpable":4, "nonculpableness":5, "noncultivatable":6, "noncultivated":5, "noncultivability":7, "noncultivable":5, "noncultivation":5, "nonculture":3, "noncultured":3, "noncultural":4, "noncumbrous":3, "noncumulative":5, "noncurative":4, "noncurdling":3, "noncurrent":3, "noncursive":3, "noncurtailing":4, "noncurtailment":4, "noncuspidate":4, "noncuspidated":5, "noncustomarily":6, "noncustomary":5, "noncustodial":5, "noncutting":3, "noncuriosity":6, "noncurious":4, "noncyclic":3, "noncyclical":4, "nondamageable":5, "nondamaging":4, "nondamnation":4, "nondancer":3, "nondangerous":4, "nondark":2, "nondatival":4, "nondeadly":3, "nondeaf":2, "nondeafened":3, "nondeafening":4, "nondebtor":3, "nondecadence":4, "nondecadent":4, "nondecadency":5, "nondecasyllabic":6, "nondecasyllable":6, "nondeclaration":5, "nondecorated":5, "nondecoration":5, "nondecorative":5, "nondecorous":4, "nondedication":5, "nondedicative":5, "nondedicatory":6, "nondeep":2, "nondeference":4, "nondeferent":4, "nondefinite":4, "nondegradation":5, "nondelegate":4, "nondelegation":5, "nondeleterious":6, "nondelicate":4, "nondeliquescence":5, "nondeliquescent":5, "nondemocratic":5, "nondemocratical":6, "nondemolition":5, "nondense":2, "nondenseness":3, "nondendroid":3, "nondendroidal":4, "nondensity":4, "nondepravation":5, "nondeprecating":5, "nondeprecative":5, "nondeprecatorily":7, "nondeprecatory":6, "nondeprivation":5, "nonderelict":4, "nonderogation":5, "nondesecration":5, "nondesignate":4, "nondesignative":5, "nondespotic":4, "nondespotically":6, "nondetonating":5, "nondetrimental":5, "nondexterity":5, "nondexterous":4, "nondextrous":3, "nondebatable":5, "nondebater":4, "nondebating":4, "nondebilitating":6, "nondebilitation":6, "nondebilitative":6, "nondecalcified":5, "nondecalcification":7, "nondecayed":3, "nondecaying":4, "nondeceit":3, "nondeceivable":5, "nondeceiving":4, "nondeceleration":6, "nondeception":4, "nondeceptive":4, "nondeciduous":5, "nondecision":4, "nondecisive":4, "nondeclamatory":6, "nondeclarative":5, "nondeclaratory":6, "nondeclarer":4, "nondeclivitous":5, "nondeductible":5, "nondeducible":5, "nondeduction":4, "nondeductive":4, "nondefalcation":5, "nondefamatory":6, "nondefaulting":4, "nondefeat":3, "nondefeasance":4, "nondefeasibility":7, "nondefeasible":5, "nondefecting":4, "nondefection":4, "nondefective":4, "nondefector":4, "nondefendant":4, "nondefense":3, "nondefensive":4, "nondefensibility":7, "nondefensible":5, "nondefensibleness":6, "nondeferable":5, "nondeferrable":5, "nondefilement":4, "nondefiling":4, "nondefined":3, "nondefinability":7, "nondefinable":5, "nondefiner":4, "nondefining":4, "nondefinitive":5, "nondefiance":4, "nondefiant":4, "nondeficient":4, "nondeficiency":5, "nondeflation":4, "nondeflationary":6, "nondeflected":4, "nondeflection":4, "nondeflective":4, "nondeformed":3, "nondeformation":5, "nondeformity":5, "nondefunct":3, "nondegenerate":5, "nondegeneracy":6, "nondegeneration":6, "nondegenerative":6, "nondegrading":4, "nondehiscent":4, "nondeist":3, "nondeistic":4, "nondeistical":5, "nondeliberate":5, "nondeliberation":6, "nondelineation":6, "nondelineative":6, "nondelinquent":4, "nondelirious":5, "nondeliverance":5, "nondeliveries":5, "nondelivery":5, "nondeluded":4, "nondeluding":4, "nondelusive":4, "nondemanding":4, "nondemise":3, "nondemocracy":5, "nondemonstrability":7, "nondemonstrable":5, "nondemonstrableness":6, "nondemonstrative":5, "nondemobilization":7, "nondenial":4, "nondenominational":7, "nondenotative":5, "nondenunciating":6, "nondenunciation":6, "nondenunciative":6, "nondenunciatory":7, "nondeodorant":5, "nondeodorizing":6, "nondepartmental":5, "nondeparture":4, "nondependance":4, "nondependancy":5, "nondependability":7, "nondependable":5, "nondependableness":6, "nondependence":4, "nondependency":5, "nondepletion":4, "nondepletive":4, "nondepletory":5, "nondeported":4, "nondeportation":5, "nondepositor":5, "nondepraved":3, "nondepravity":5, "nondepressed":3, "nondepressing":4, "nondepression":4, "nondepressive":4, "nondepreciating":6, "nondepreciation":6, "nondepreciative":6, "nondepreciatory":7, "nondeprivable":5, "nonderisible":5, "nonderivability":7, "nonderivable":5, "nonderivative":5, "nonderisive":4, "nonderogative":5, "nonderogatorily":7, "nonderogatoriness":7, "nonderogatory":6, "nondescribable":5, "nondescript":3, "nondescriptive":4, "nondesigned":3, "nondesirous":4, "nondesistance":4, "nondesistence":4, "nondesisting":4, "nondestruction":4, "nondestructive":4, "nondestructive testing":6, "nondesulfurized":5, "nondesulfurization":7, "nondetachability":7, "nondetachable":5, "nondetachment":4, "nondetailed":3, "nondetention":4, "nondeterminist":5, "nondeterministic":6, "nondeterminant":5, "nondeterminable":6, "nondetermination":6, "nondeterminative":6, "nondeterrent":4, "nondeterioration":7, "nondetractive":4, "nondetractory":5, "nondevelopable":6, "nondeveloping":5, "nondevelopment":5, "nondevelopmental":6, "nondeviant":4, "nondeviating":5, "nondeviation":5, "nondevious":4, "nondevout":3, "nondevotional":5, "nondictation":4, "nondictatorial":6, "nondifferentiable":7, "nondifferentiation":7, "nondifficult":4, "nondiffidence":4, "nondiffident":4, "nondiffractive":4, "nondiffuse":3, "nondiffused":3, "nondiffusing":4, "nondiffusible":5, "nondiffusibleness":6, "nondiffusion":4, "nondiligence":4, "nondiligent":4, "nondiphtheric":4, "nondiphtheritic":5, "nondiphtherial":5, "nondiphthongal":4, "nondiplomatic":5, "nondiplomatically":7, "nondipterous":4, "nondirigibility":7, "nondirigible":5, "nondisappearing":5, "nondisarmament":5, "nondisastrous":4, "nondisagreement":5, "nondisbursed":3, "nondisbursement":4, "nondisbursable":5, "nondiscerning":4, "nondiscernment":4, "nondischarging":4, "nondisciplined":4, "nondisciplinable":6, "nondisciplining":5, "nondisciplinary":6, "nondisclosure":4, "nondiscontinuance":6, "nondiscordant":4, "nondiscountable":5, "nondiscoverable":6, "nondiscoveries":5, "nondiscovery":5, "nondiscretionary":6, "nondiscriminating":6, "nondiscrimination":6, "nondiscriminative":6, "nondiscriminatory":7, "nondiscursive":4, "nondiseased":3, "nondisfigurement":5, "nondisfranchised":4, "nondisguised":3, "nondisingenuous":6, "nondisinterested":6, "nondisintegrating":6, "nondisintegration":6, "nondisjunction":4, "nondisjunctive":4, "nondismemberment":5, "nondismissal":4, "nondisparaging":5, "nondisparity":5, "nondisparate":4, "nondispensable":5, "nondispensible":5, "nondispensation":5, "nondispensational":6, "nondispersal":4, "nondispersion":4, "nondispersive":4, "nondisposed":3, "nondisposal":4, "nondisposable":5, "nondisputatious":5, "nondisqualifying":6, "nondisrupting":4, "nondisruptive":4, "nondissenting":4, "nondissidence":4, "nondissident":4, "nondissipated":5, "nondissipative":5, "nondissolving":4, "nondissolution":5, "nondistillable":5, "nondistillation":5, "nondistinctive":4, "nondistinguished":4, "nondistinguishable":6, "nondistinguishableness":7, "nondistinguishing":5, "nondistorted":4, "nondistorting":4, "nondistortion":4, "nondistortive":4, "nondistracted":4, "nondistracting":4, "nondistractive":4, "nondistributive":5, "nondistribution":5, "nondistributional":6, "nondisturbance":4, "nondisturbing":4, "nondiagonal":5, "nondiametral":5, "nondiaphanous":5, "nondiabetic":5, "nondiabolic":5, "nondiabolical":6, "nondiagrammatic":6, "nondiagrammatical":7, "nondialectal":5, "nondialectic":5, "nondialectical":6, "nondialyzing":5, "nondiastatic":5, "nondiastasic":5, "nondiathermanous":6, "nondichogamous":5, "nondichogamy":5, "nondichotomous":5, "nondichogamic":5, "nondidactic":4, "nondidactically":6, "nondieting":4, "nondietetic":5, "nondietetically":7, "nondigesting":4, "nondigestibility":7, "nondigestible":5, "nondigestibleness":6, "nondigestion":4, "nondigestive":4, "nondilapidated":6, "nondilatability":7, "nondilatable":5, "nondilation":4, "nondilution":4, "nondimensioned":4, "nondiminishing":5, "nondiocesan":5, "nondiplomacy":5, "nondirectional":5, "nondirective":4, "nondiverging":4, "nondivergence":4, "nondivergent":4, "nondivergency":5, "nondiversification":7, "nondivinity":5, "nondivisibility":7, "nondivisible":5, "nondivision":4, "nondivisional":5, "nondivisive":4, "nondivorce":3, "nondivorced":3, "nondivulging":4, "nondivulgence":4, "nondoctrinaire":4, "nondoctrinal":4, "nondocumental":5, "nondocumentary":6, "nondogmatic":4, "nondogmatical":5, "nondominance":4, "nondominant":4, "nondominating":5, "nondomination":5, "nondomineering":5, "nondormant":3, "nondoubtable":4, "nondoubter":3, "nondoubting":3, "nondomestic":4, "nondomestically":6, "nondomesticated":6, "nondomesticating":6, "nondramatic":4, "nondramatically":6, "nondrinkable":4, "nondrinker":3, "nondrinking":3, "nondriver":3, "nondropsical":4, "nondropsically":5, "nondruidic":4, "nondruidical":5, "nondrying":3, "nonductile":3, "nonductility":5, "nondualism":4, "nondualistic":5, "nondualistically":7, "nonduality":5, "nonduplicity":5, "nonduplicating":5, "nonduplication":5, "nonduplicative":5, "nondurability":6, "nondurable":4, "nondurableness":5, "nondutiable":5, "nondyspeptic":4, "nondyspeptical":5, "nondynamic":4, "nondynamical":5, "nondynastic":4, "nondynastical":5, "nonearning":3, "noneastern":3, "noneatable":4, "noneager":3, "noneccentric":4, "noneccentrically":6, "nonecclesiastic":6, "nonecclesiastical":7, "noneclectic":4, "noneclectically":6, "nonecstatic":4, "nonecstatically":6, "nonecumenic":5, "nonecumenical":6, "nonedibility":6, "nonedible":4, "nonedified":4, "noneditorial":6, "noneducated":5, "noneducable":5, "noneducation":5, "noneducational":6, "noneducative":5, "noneducatory":6, "noneffective":4, "noneffervescent":5, "noneffete":3, "nonefficacious":5, "nonefficacy":5, "nonefficient":4, "nonefficiency":5, "noneffusion":4, "noneffusive":4, "noneidetic":4, "noneleemosynary":7, "nonelemental":5, "nonelementary":6, "nonelevating":5, "nonelevation":5, "noneligibility":7, "noneligible":5, "nonelliptic":4, "nonelliptical":5, "noneloquence":4, "noneloquent":4, "nonempty":3, "nonemanant":4, "nonemanating":5, "nonembarkation":5, "nonembellished":4, "nonembellishing":5, "nonembellishment":5, "nonembezzlement":5, "nonembryonic":5, "nonembryonically":7, "nonembryonal":5, "nonemigrant":4, "nonemigration":5, "nonempathic":4, "nonempathically":6, "nonempiric":4, "nonempirical":5, "nonempiricism":5, "nonemploying":4, "nonemployment":4, "nonemulation":5, "nonemulative":5, "nonemulous":4, "nonenactment":4, "nonenclosure":4, "nonencroachment":4, "nonencyclopaedic":6, "nonencyclopedic":6, "nonencyclopedical":7, "nonendemic":4, "nonendorsement":4, "nonendowment":4, "nonendurable":5, "nonenduring":4, "nonenergetic":5, "nonenergetically":7, "nonenervating":5, "nonenemy":4, "nonenforced":3, "nonenforceable":5, "nonenforcement":4, "nonenforcing":4, "nonengagement":4, "nonengineering":5, "nonengrossing":4, "nonenigmatic":5, "nonenigmatical":6, "nonenlightened":4, "nonenlightening":5, "nonenrolled":3, "nonentailed":3, "nonenteric":4, "nonenterprising":5, "nonentertaining":5, "nonentertainment":5, "nonenthusiastic":6, "nonenthusiastically":8, "nonenticing":4, "nonentity":4, "nonentomologic":6, "nonentomological":7, "nonentrant":3, "nonentreating":4, "nonentry":3, "nonenviable":5, "nonenviableness":6, "nonenvious":4, "nonenvironmental":6, "nonepic":3, "nonepical":4, "nonepicurean":6, "nonepigrammatic":6, "nonepigrammatically":8, "nonepileptic":5, "nonepisodic":5, "nonepisodical":6, "nonepithelial":6, "nonepochal":4, "nonequability":6, "nonequable":4, "nonequableness":5, "nonequitable":5, "nonerrant":3, "nonerratic":4, "nonerratically":6, "nonerroneous":5, "nonerudite":4, "nonerudition":5, "nonesoteric":5, "nonesoterically":7, "nonespionage":5, "nonespousal":4, "nonessential":4, "nonestablishment":5, "nonesthetic":4, "nonesthetical":5, "nonestimable":5, "nonestimableness":6, "nonet":2, "nonethic":3, "nonethical":4, "nonethnic":3, "nonethnical":4, "nonethnologic":5, "nonethnological":6, "nonethyl":3, "noneugenic":4, "noneugenical":5, "noneuphonious":5, "nonevanescent":5, "nonevident":4, "nonevidential":5, "nonevolutional":6, "nonevolutionary":7, "nonevolutionist":6, "nonexactable":5, "nonexacting":4, "nonexaction":4, "nonexaggerated":6, "nonexaggerating":6, "nonexaggeration":6, "nonexaggerative":6, "nonexaggeratory":7, "nonexcavation":5, "nonexcepted":4, "nonexcepting":4, "nonexceptional":5, "nonexcessive":4, "nonexchangeability":7, "nonexchangeable":5, "nonexcitable":5, "nonexcitableness":6, "nonexcitative":5, "nonexcitatory":6, "nonexciting":4, "nonexclamatory":6, "nonexclusion":4, "nonexclusive":4, "nonexculpable":5, "nonexculpation":5, "nonexculpatory":6, "nonexcusable":5, "nonexcusableness":6, "nonexecutive":5, "nonexempt":3, "nonexemption":4, "nonexemplary":5, "nonexemplification":7, "nonexercise":4, "nonexercisable":6, "nonexerciser":5, "nonexertion":4, "nonexertive":4, "nonexecutable":6, "nonexecution":5, "nonexhausted":4, "nonexhaustible":5, "nonexhaustive":4, "nonexhibitive":5, "nonexhibition":5, "nonexhibitionism":6, "nonexhibitionistic":7, "nonexhortation":5, "nonexhortative":5, "nonexhortatory":6, "nonexistence":4, "nonexistent":4, "nonexisting":4, "nonexistential":5, "nonexistentialism":6, "nonexigent":4, "nonexotic":4, "nonexotically":6, "nonexpanded":4, "nonexpanding":4, "nonexpansile":4, "nonexpansion":4, "nonexpansive":4, "nonexpansibility":7, "nonexpansible":5, "nonexpectant":4, "nonexpendable":5, "nonexpert":3, "nonexperimental":6, "nonexpedience":5, "nonexpedient":5, "nonexpediency":6, "nonexpediential":6, "nonexpeditious":5, "nonexperienced":5, "nonexperiential":6, "nonexpiring":4, "nonexpiable":5, "nonexpiation":5, "nonexpiatory":6, "nonexpiration":5, "nonexpiry":4, "nonexplainable":5, "nonexplanative":5, "nonexplanatory":6, "nonexplicable":5, "nonexplicative":5, "nonexploitation":5, "nonexplorative":5, "nonexploratory":6, "nonexplosive":4, "nonexportable":5, "nonexportation":5, "nonexponential":5, "nonexponible":5, "nonexposure":4, "nonexpressionistic":6, "nonexpressive":4, "nonexpulsion":4, "nonexpulsive":4, "nonextant":3, "nonextempore":5, "nonextended":4, "nonextendible":5, "nonextendibleness":6, "nonextensile":4, "nonextension":4, "nonextensional":5, "nonextensive":4, "nonextensibility":7, "nonextensible":5, "nonextenuating":6, "nonextenuative":6, "nonextermination":6, "nonexterminative":6, "nonexterminatory":7, "nonexternal":4, "nonexternalized":5, "nonexternality":6, "nonextinct":3, "nonextinction":4, "nonextinguished":4, "nonextinguishable":6, "nonextortion":4, "nonextortive":4, "nonextractable":5, "nonextracted":4, "nonextractible":5, "nonextraction":4, "nonextractive":4, "nonextraditable":6, "nonextradition":5, "nonextraneous":5, "nonextrinsic":4, "nonextrinsical":5, "nonextricable":5, "nonextrication":5, "nonextrusive":4, "nonexuding":4, "nonexultant":4, "nonexultation":5, "nonexuberance":5, "nonexuberancy":6, "nonebullience":4, "nonebullient":4, "nonebulliency":5, "nonechoic":4, "noneclipsed":3, "noneclipsing":4, "nonecliptic":4, "nonecliptical":5, "noneconomy":5, "noneconomic":5, "noneconomical":6, "nonego":3, "nonegocentric":5, "nonegoistic":5, "nonegoistical":6, "nonegotistic":5, "nonegotistical":6, "nonegregious":4, "nonejaculatory":7, "nonejecting":4, "nonejection":4, "nonejective":4, "nonelaborate":5, "nonelaborating":6, "nonelaborative":6, "nonelastic":4, "nonelasticity":6, "nonelastically":6, "nonelect":3, "nonelection":4, "nonelective":4, "nonelector":4, "nonelectric":4, "nonelectrized":4, "nonelectrical":5, "nonelectrified":5, "nonelectrification":7, "nonelectrolyte":5, "nonelectrolytic":6, "nonelicited":5, "nonelimination":6, "noneliminative":6, "noneliminatory":7, "nonelite":3, "nonelongation":5, "nonelopement":4, "nonelucidating":6, "nonelucidation":6, "nonelucidative":6, "nonelusive":4, "nonemancipation":6, "nonemancipative":6, "nonemendable":5, "nonemendation":5, "nonemergence":4, "nonemergent":4, "nonemission":4, "nonemotional":5, "nonemotionalism":6, "nonemotive":4, "nonenunciation":6, "nonenunciative":6, "nonenunciatory":7, "nonenumerated":6, "nonenumerative":6, "nonephemeral":5, "nonepiscopal":5, "nonepiscopalian":6, "nonequal":3, "nonequalized":4, "nonequalizing":5, "nonequalization":6, "nonequation":4, "nonequatorial":6, "nonequestrian":5, "nonequivalence":5, "nonequivalent":5, "nonequivalency":6, "nonequivocal":5, "nonequivocating":6, "nonequilateral":6, "nonequilibrium":6, "noneradicable":6, "noneradicative":6, "nonerasure":4, "nonerecting":4, "nonerection":4, "noneroded":4, "nonerodent":4, "noneroding":4, "nonerotic":4, "nonerotically":6, "nonerosive":4, "noneruption":4, "noneruptive":4, "nonesurient":5, "noneternal":4, "noneternity":5, "nonethereal":5, "nonethereality":7, "nonevacuation":6, "nonevadable":5, "nonevading":4, "nonevadible":5, "nonevaluation":6, "nonevangelic":5, "nonevangelical":6, "nonevaporating":6, "nonevaporable":6, "nonevaporation":6, "nonevaporative":6, "nonevasion":4, "nonevasive":4, "nonevent":3, "noneviction":4, "nonevil":3, "nonevincive":4, "nonevincible":5, "nonevocative":5, "nonevolving":4, "nonfactious":3, "nonfactitious":4, "nonfactual":4, "nonfacultative":5, "nonfaddist":3, "nonfailure":3, "nonfallacious":4, "nonfaltering":4, "nonfamily":4, "nonfantasy":4, "nonfarm":2, "nonfarcical":4, "nonfarcicality":6, "nonfashionable":5, "nonfashionableness":6, "nonfascist":3, "nonfastidious":5, "nonfat":2, "nonfatigable":5, "nonfaulty":3, "nonfacetious":4, "nonfacility":5, "nonfamilial":4, "nonfamiliar":4, "nonfanatic":4, "nonfanatical":5, "nonfatal":3, "nonfatalistic":5, "nonfatality":5, "nonfavored":3, "nonfavorable":5, "nonfavorableness":6, "nonfavorite":4, "nonfeasance":3, "nonfeasibility":6, "nonfeasible":4, "nonfeasibleness":5, "nonfeatured":3, "nonfederal":4, "nonfederated":5, "nonfeeding":3, "nonfeeling":3, "nonfeeble":3, "nonfeebleness":4, "nonfeldspathic":4, "nonfermentability":7, "nonfermentable":5, "nonfermented":4, "nonfermenting":4, "nonfermentation":5, "nonfermentative":5, "nonferrous":3, "nonfertile":3, "nonfertility":5, "nonfervent":3, "nonfervid":3, "nonfestive":3, "nonfeudal":3, "nonfealty":4, "nonfebrile":3, "nonfecund":3, "nonfecundity":5, "nonfelicitous":5, "nonfelicity":5, "nonfelonious":5, "nonfenestrated":5, "nonferocity":5, "nonferocious":4, "nonfeverish":4, "nonfeverous":4, "nonfiction":3, "nonfictive":3, "nonfictitious":4, "nonfighter":3, "nonfigurative":5, "nonfilamentous":5, "nonfilial":4, "nonfilter":3, "nonfilterable":5, "nonfimbriate":4, "nonfimbriated":5, "nonfinding":3, "nonfinishing":4, "nonfireproof":3, "nonfisherman":4, "nonfiscal":3, "nonfissile":3, "nonfissility":5, "nonfissionable":5, "nonfixation":4, "nonfibrous":3, "nonfidelity":5, "nonfiduciaries":6, "nonfiduciary":6, "nonfinancial":4, "nonfinite":3, "nonflagellate":4, "nonflagellated":5, "nonflakily":4, "nonflakiness":4, "nonflaky":3, "nonflammable":4, "nonflatulence":4, "nonflatulent":4, "nonflatulency":5, "nonflawed":2, "nonflagitious":4, "nonflagrance":3, "nonflagrant":3, "nonflagrancy":4, "nonflexibility":6, "nonflexible":4, "nonflexibleness":5, "nonflirtatious":4, "nonfloating":3, "nonflowering":4, "nonfloriferous":5, "nonfluctuating":5, "nonfluctuation":5, "nonflux":2, "nonfluent":3, "nonfluency":4, "nonfluid":3, "nonfluidic":4, "nonfluidity":5, "nonfluorescence":5, "nonfluorescent":5, "nonflyable":4, "nonflying":3, "nonfollowing":4, "nonfood":2, "nonforeclosing":4, "nonforeclosure":4, "nonform":2, "nonformative":4, "nonforming":3, "nonforbearance":4, "nonforbearing":4, "nonforeign":3, "nonforest":3, "nonforested":4, "nonforfeitable":5, "nonforfeiting":4, "nonforfeiture":4, "nonforgiving":4, "nonformal":3, "nonformalism":4, "nonformalistic":5, "nonformation":4, "nonformidability":7, "nonformidable":5, "nonformidableness":6, "nonformulation":5, "nonfortifiable":6, "nonfortification":6, "nonfortifying":5, "nonfortuitous":5, "nonfossiliferous":6, "nonfouling":3, "nonforensic":4, "nonforensically":6, "nonfragile":3, "nonfragmented":4, "nonfrangibility":6, "nonfrangible":4, "nonfraudulence":4, "nonfraudulent":4, "nonfraudulency":5, "nonfragility":5, "nonfragrant":3, "nonfraternal":4, "nonfraternity":5, "nonfreezable":4, "nonfreezing":3, "nonfreedom":3, "nonfreeman":3, "nonfrenetic":4, "nonfrenetically":6, "nonfrequence":3, "nonfrequent":3, "nonfrequency":4, "nonfricative":4, "nonfriction":3, "nonfrigid":3, "nonfrigidity":5, "nonfrosted":3, "nonfrosting":3, "nonfrustration":4, "nonfrugal":3, "nonfrugality":5, "nonfruition":4, "nonfulfillment":4, "nonfulminating":5, "nonfunctional":4, "nonfunctioning":4, "nonfunded":3, "nonfundamental":5, "nonfundamentalist":6, "nonfungible":4, "nonfused":2, "nonfugitive":4, "nonfusion":3, "nonfusibility":6, "nonfusible":4, "nonfutile":3, "nonfuturistic":5, "nongalvanized":4, "nonganglionic":5, "nongangrenous":4, "nongarrulity":5, "nongarrulous":4, "nongas":2, "nongases":3, "nongaseous":4, "nongassy":3, "nongalactic":4, "nongelling":3, "nongeneralized":5, "nongenerating":5, "nongenerative":5, "nongentile":3, "nongenuine":4, "nongermane":3, "nongerminal":4, "nongerminating":5, "nongermination":5, "nongerminative":5, "nongestic":3, "nongestical":4, "nongelatinizing":6, "nongelatinous":5, "nongeneric":4, "nongenerical":5, "nongenetic":4, "nongenetical":5, "nongenealogic":6, "nongenealogical":7, "nongeographic":5, "nongeographical":6, "nongeologic":5, "nongeological":6, "nongeometric":5, "nongeometrical":6, "nongerundive":4, "nongerundial":5, "nongilded":3, "nongilled":2, "nonglandered":3, "nonglandular":4, "nonglandulous":4, "nonglare":2, "nonglazed":2, "nonglacial":3, "nonglobular":4, "nonglucose":3, "nonglutenous":4, "nongod":2, "nongold":2, "nongolfer":3, "nongospel":3, "nongovernance":4, "nongovernment":4, "nongovernmental":5, "nongraceful":3, "nongraduate":4, "nongraduated":5, "nongraduation":5, "nongrain":2, "nongrained":2, "nongrammatical":5, "nongranular":4, "nongranulated":5, "nongraphic":3, "nongraphical":4, "nongratification":6, "nongratifying":5, "nongraven":3, "nongravitation":5, "nongravitational":6, "nongravitative":5, "nongravity":4, "nongracious":3, "nongraciosity":6, "nongraphitic":4, "nongratuitous":5, "nongreasy":3, "nongreen":2, "nongregarious":5, "nongremial":4, "nongrieved":2, "nongrieving":3, "nongrievous":3, "nongrooming":3, "nongrounded":3, "nongrounding":3, "nonguarantee":4, "nonguaranty":4, "nonguidance":3, "nonguidable":4, "nonguilt":2, "nonguttural":4, "nongymnast":3, "nonhabitability":7, "nonhabitable":5, "nonhabitableness":6, "nonhabitation":5, "nonhackneyed":3, "nonhallucinated":6, "nonhallucination":6, "nonhallucinatory":7, "nonhandicap":4, "nonharmonic":4, "nonharmonious":5, "nonharmony":4, "nonhazardous":4, "nonhabitual":5, "nonheading":3, "nonheathen":3, "nonhectic":3, "nonhectically":5, "nonheinous":3, "nonheritability":7, "nonheritable":5, "nonheritor":4, "nonhesitant":4, "nonheuristic":4, "nonhedonic":4, "nonhedonically":6, "nonhedonistic":5, "nonhedonistically":7, "nonhematic":4, "nonhemophilic":5, "nonhepatic":4, "nonhereditarily":7, "nonhereditariness":7, "nonhereditary":6, "nonhereditability":8, "nonhereditable":6, "nonheretical":5, "nonhero":3, "nonheroic":4, "nonheroicness":5, "nonheroical":5, "nonhistoric":4, "nonhistorical":5, "nonhistrionic":5, "nonhistrionical":6, "nonhierarchic":5, "nonhierarchical":6, "nonhieratic":5, "nonhieratical":6, "nonhostile":3, "nonhostility":5, "nonhouseholder":4, "nonhomiletic":5, "nonhomogenous":5, "nonhomologous":5, "nonhomogeneity":7, "nonhomogeneous":6, "nonhunting":3, "nonhubristic":4, "nonhuman":3, "nonhumanistic":5, "nonhumanized":4, "nonhumanist":4, "nonhumorous":4, "nonhumus":3, "nonhypnotic":4, "nonhypnotically":6, "nonhydrated":4, "nonhydraulic":4, "nonhydrogenous":5, "nonhydrophobic":5, "nonhygrometric":5, "nonhygroscopic":5, "nonhygroscopically":7, "nonhyperbolic":5, "nonhyperbolical":6, "nonhypostatic":5, "nonhypostatical":6, "nonidiomatic":6, "nonidiomatical":7, "nonigneous":4, "nonignitability":7, "nonignitable":5, "nonignitibility":7, "nonignitible":5, "nonignominious":6, "nonignorant":4, "nonillative":4, "nonillustration":5, "nonillustrative":5, "nonilluminant":5, "nonilluminating":6, "nonillumination":6, "nonilluminative":6, "nonillusional":5, "nonillusive":4, "nonimaginarily":7, "nonimaginariness":7, "nonimaginary":6, "nonimaginational":7, "nonimbricate":4, "nonimbricated":5, "nonimbricating":5, "nonimbricative":5, "nonimitating":5, "nonimitability":7, "nonimitable":5, "nonimitational":6, "nonimitative":5, "nonimmanence":4, "nonimmanent":4, "nonimmanency":5, "nonimmersion":4, "nonimmigrant":4, "nonimmigration":5, "nonimmune":3, "nonimmunized":4, "nonimmunity":5, "nonimmunization":6, "nonimpact":3, "nonimpacted":4, "nonimpairment":4, "nonimpartment":4, "nonimpartation":5, "nonimpeachability":7, "nonimpeachable":5, "nonimpeachment":4, "nonimpedimental":6, "nonimpedimentary":7, "nonimperative":5, "nonimperial":5, "nonimperialistic":7, "nonimperialistically":9, "nonimperious":5, "nonimplement":4, "nonimplemental":5, "nonimplication":5, "nonimplicative":5, "nonimportation":5, "nonimposition":5, "nonimpregnated":5, "nonimpressionability":8, "nonimpressionable":6, "nonimpressionistic":6, "nonimprovement":4, "nonimpulsive":4, "nonimputability":7, "nonimputable":5, "nonimputableness":6, "nonimputative":5, "nonincandescence":5, "nonincandescent":5, "nonincarnate":4, "nonincarnated":5, "nonincestuous":5, "nonincitement":4, "nonincident":4, "nonincidental":5, "noninclinable":5, "noninclination":5, "noninclinational":6, "noninclinatory":6, "noninclusion":4, "noninclusive":4, "nonincorporated":6, "nonincorporative":6, "nonincrease":3, "nonincreasable":5, "nonincreasing":4, "nonincriminating":6, "nonincrimination":6, "nonincriminatory":7, "nonincrusting":4, "nonindexed":3, "nonindependent":5, "nonindictable":5, "nonindictment":4, "nonindigenous":5, "nonindividual":6, "nonindividualistic":8, "nonindividuality":8, "noninduced":3, "noninducible":5, "noninductive":4, "noninductively":5, "noninductivity":6, "nonindulgence":4, "nonindulgent":4, "nonindustrial":5, "nonindustrialization":8, "nonindustrious":5, "nonindurated":5, "nonindurative":5, "noninert":3, "noninfallibility":7, "noninfallible":5, "noninfallibleness":6, "noninfantry":4, "noninfected":4, "noninfecting":4, "noninfection":4, "noninfectious":4, "noninferable":5, "noninferential":5, "noninfinite":4, "noninflammability":7, "noninflammable":5, "noninflammableness":6, "noninflammatory":6, "noninflation":4, "noninflationary":6, "noninflected":4, "noninflectional":5, "noninfluence":4, "noninfluential":5, "noninformational":6, "noninformative":5, "noninfraction":4, "noninfusibility":7, "noninfusible":5, "noninhabitance":5, "noninhabitancy":6, "noninhabitability":8, "noninhabitable":6, "noninherence":4, "noninherent":4, "noninheritability":8, "noninheritable":6, "noninherited":5, "noninhibitive":5, "noninhibitory":6, "noninitially":5, "noninjurious":5, "noninjury":4, "noninoculation":6, "noninoculative":6, "noninquiring":4, "noninsect":3, "noninsertion":4, "noninsistence":4, "noninsistent":4, "noninsistency":5, "noninspissating":5, "noninstinctive":4, "noninstinctual":5, "noninstitution":5, "noninstitutional":6, "noninstructional":5, "noninstructive":4, "noninstrumental":5, "noninstrumentalistic":7, "noninsurance":4, "nonintellectual":6, "nonintelligence":5, "nonintelligent":5, "noninteractive":5, "nonintercepting":5, "noninterceptive":5, "noninterchangeability":8, "noninterchangeable":6, "noninterchangeableness":7, "nonintercourse":4, "noninterdependence":6, "noninterdependent":6, "noninterdependency":7, "noninterference":5, "noninterfering":5, "nonintermittence":5, "nonintermittent":5, "noninternational":6, "noninterpolating":6, "noninterpolation":6, "noninterpolative":6, "noninterposition":6, "noninterpretability":8, "noninterpretable":6, "noninterpretational":7, "noninterpretative":6, "noninterpretive":5, "noninterrupted":5, "noninterruptive":5, "nonintersecting":5, "nonintersectional":6, "nonintervention":5, "noninterventional":6, "noninterventionalist":7, "noninterventionist":6, "nonintegrable":5, "nonintegration":5, "nonintoxicant":5, "nonintoxicating":6, "nonintoxicative":6, "nonintrospective":5, "nonintroverted":5, "nonintroversive":5, "nonintuitive":5, "noninverted":4, "noninvidious":5, "noninvincibility":7, "noninvincible":5, "noninvincibleness":6, "noniridescence":5, "noniridescent":5, "nonirradiated":6, "nonirrational":5, "nonirrevocability":8, "nonirrevocable":6, "nonirrevocableness":7, "nonirrigated":5, "nonirrigating":5, "nonirrigable":5, "nonirrigation":5, "nonirritant":4, "nonirritancy":5, "nonirritating":5, "nonirritability":7, "nonirritable":5, "nonirritableness":6, "nonissuable":5, "noniconoclastic":6, "noniconoclastically":8, "nonidentical":5, "nonidentification":7, "nonidentity":5, "nonideal":4, "nonidealistic":6, "nonidealistically":8, "nonideational":6, "nonideologic":6, "nonideological":7, "nonidolatrous":5, "nonidyllic":4, "nonidyllically":6, "noninertial":4, "noninitial":4, "nonionic":4, "nonionized":4, "nonionizing":5, "noniodized":4, "nonirate":3, "nonirenic":4, "nonirenical":5, "nonironic":4, "nonironical":5, "nonisotropous":5, "nonisoelastic":6, "nonisolable":5, "nonisotropic":5, "nonius":3, "nonjoinder":3, "nonjournalistic":5, "nonjournalistically":7, "nonjudicable":5, "nonjudicative":5, "nonjudicatory":6, "nonjudicial":4, "nonjudiciable":6, "nonjuridic":4, "nonjuridical":5, "nonjuristic":4, "nonjuristical":5, "nonjuror":3, "nonjuror":3, "nonjury":3, "nonkinetic":4, "nonknowledgeable":5, "nonkosher":3, "nonlactescent":4, "nonlacteal":4, "nonlacteous":4, "nonlactic":3, "nonlaminated":5, "nonlaminable":5, "nonlaminating":5, "nonlaminative":5, "nonlarcenous":4, "nonlayered":3, "nonlaying":3, "nonlabeling":4, "nonlabelling":4, "nonleaded":3, "nonleaking":3, "nonlegislative":5, "nonlegume":3, "nonlepidopteral":6, "nonlepidopteran":6, "nonlepidopterous":6, "nonleprous":3, "nonlevel":3, "nonlevulose":4, "nonlegal":3, "nonlegato":4, "nonlegitimate":5, "nonlegitimacy":6, "nonleguminous":5, "nonlethal":3, "nonlethargic":4, "nonlethargical":5, "nonliberal":4, "nonliberalism":5, "nonliberation":5, "nonlicking":3, "nonlife":2, "nonlimiting":4, "nonlimitation":5, "nonlimitative":5, "nonlinkage":3, "nonlineal":4, "nonlinear":4, "nonlinearity":6, "nonlinguistic":4, "nonliquefiable":6, "nonliquefying":5, "nonliquid":3, "nonliquidating":5, "nonliquidation":5, "nonlisting":3, "nonliteral":4, "nonliterarily":6, "nonliterariness":6, "nonliterary":5, "nonliteracy":5, "nonlitigation":5, "nonlive":2, "nonliving":3, "nonlixiviated":6, "nonlixiviation":6, "nonliability":6, "nonliable":4, "nonlibelous":4, "nonlibidinous":5, "nonlicensed":3, "nonlicensable":5, "nonlicentious":4, "nonlicentiate":5, "nonlitigious":4, "nonliturgic":4, "nonliturgical":5, "nonlogic":3, "nonlogical":4, "nonlogicality":6, "nonlosable":4, "nonloser":3, "nonlover":3, "nonloving":3, "nonloxodromic":5, "nonloxodromical":6, "nonloyal":3, "nonloyalty":4, "nonlocal":3, "nonlocalized":4, "nonlocalizable":6, "nonlocation":4, "nonlogistic":4, "nonlogistical":5, "nonluster":3, "nonlustrous":3, "nonlubricant":4, "nonlubricating":5, "nonlubricious":4, "nonlucid":3, "nonlucidity":5, "nonlucrative":4, "nonlugubrious":5, "nonluminescence":5, "nonluminescent":5, "nonluminosity":6, "nonluminous":4, "nonlymphatic":4, "nonlyric":3, "nonlyrical":4, "nonlyricism":4, "nonmagnetic":4, "nonmagnetized":4, "nonmagnetical":5, "nonmaintenance":4, "nonmakeup":3, "nonmalleability":7, "nonmalleable":5, "nonmammalian":5, "nonmanagement":4, "nonmandatory":5, "nonmanifest":4, "nonmanifestation":6, "nonmannered":3, "nonmanneristic":5, "nonmanual":4, "nonmanufacture":5, "nonmanufactured":5, "nonmanufacturing":6, "nonmarital":4, "nonmaritime":4, "nonmarket":3, "nonmarketability":7, "nonmarketable":5, "nonmarriage":3, "nonmarriageability":7, "nonmarriageable":5, "nonmarrying":4, "nonmartial":3, "nonmasculine":4, "nonmasculinity":6, "nonmasteries":4, "nonmastery":4, "nonmathematic":5, "nonmathematical":6, "nonmathematician":6, "nonmatrimonial":6, "nonmatter":3, "nonmaturation":5, "nonmaturative":5, "nonmajority":5, "nonmalarial":5, "nonmalarian":5, "nonmalarious":5, "nonmalignance":4, "nonmalignant":4, "nonmalignancy":5, "nonmalignity":5, "nonmalicious":4, "nonmanipulative":6, "nonmanipulatory":7, "nonmarine":3, "nonmason":3, "nonmaternal":4, "nonmaterial":5, "nonmaterialistic":7, "nonmaterialistically":9, "nonmature":3, "nonmaturity":5, "nonmeasurability":7, "nonmeasurable":5, "nonmeasurableness":6, "nonmechanistic":5, "nonmedical":4, "nonmedicable":5, "nonmedicative":5, "nonmeditative":5, "nonmedullated":5, "nonmelting":3, "nonmelodramatic":6, "nonmelodramatically":8, "nonmember":3, "nonmembership":4, "nonmenacing":4, "nonmendicant":4, "nonmendicancy":5, "nonmental":3, "nonmercantile":4, "nonmercenaries":5, "nonmercenary":5, "nonmetal":3, "nonmetallic":4, "nonmetalliferous":6, "nonmetallurgic":5, "nonmetallurgical":6, "nonmetamorphic":5, "nonmetamorphous":5, "nonmetamorphosis":6, "nonmetaphoric":5, "nonmetaphorical":6, "nonmetaphysical":6, "nonmetric":3, "nonmetrical":4, "nonmetropolitan":6, "nonmechanical":5, "nonmedicinal":5, "nonmediation":5, "nonmediative":5, "nonmelodic":4, "nonmelodically":6, "nonmelodious":5, "nonmenial":4, "nonmetallic":4, "nonmeteoric":5, "nonmeteorically":7, "nonmeteorologic":7, "nonmeteorological":8, "nonmethodic":4, "nonmethodical":5, "nonmilitant":4, "nonmilitancy":5, "nonmillionaire":4, "nonmineral":4, "nonmineralogical":7, "nonministerial":6, "nonministration":5, "nonminimal":4, "nonmischievous":4, "nonmiscibility":6, "nonmiscible":4, "nonmissionaries":5, "nonmissionary":5, "nonmitigation":5, "nonmitigative":5, "nonmitigatory":6, "nonmicrobic":4, "nonmicroscopic":5, "nonmicroscopical":6, "nonmigrant":3, "nonmigrating":4, "nonmigration":4, "nonmigratory":5, "nonmimetic":4, "nonmimetically":6, "nonmiraculous":5, "nonmodal":3, "nonmodern":3, "nonmodernistic":5, "nonmoderate":4, "nonmodificative":6, "nonmodificatory":7, "nonmodifying":5, "nonmonarchist":4, "nonmonarchistic":5, "nonmonist":3, "nonmoral":3, "nonmortal":3, "nonmountainous":4, "nonmoveability":6, "nonmoveable":4, "nonmoveableness":5, "nonmobile":3, "nonmobility":5, "nonmolar":3, "nonmolecular":5, "nonmomentariness":6, "nonmomentary":5, "nonmonarchal":4, "nonmonarchic":4, "nonmonarchial":5, "nonmonarchically":6, "nonmonastic":4, "nonmonastically":6, "nonmonistic":4, "nonmonistically":6, "nonmonogamous":5, "nonmonopolistic":6, "nonmotile":3, "nonmotility":5, "nonmotion":3, "nonmotivated":5, "nonmotivation":5, "nonmotivational":6, "nonmotoring":4, "nonmotorist":4, "nonmulched":2, "nonmultiple":4, "nonmultiplication":6, "nonmultiplicational":7, "nonmultiplicative":6, "nonmuscular":4, "nonmutable":4, "nonmutableness":5, "nonmucilaginous":6, "nonmucous":3, "nonmunicipal":5, "nonmusical":4, "nonmutability":6, "nonmutational":5, "nonmutative":4, "nonmutinous":4, "nonmutual":4, "nonmutuality":6, "nonmystic":3, "nonmystical":4, "nonmysticism":4, "nonmythical":4, "nonmythologic":5, "nonmythological":6, "nonmyopic":4, "nonmyopically":6, "nonnarcism":3, "nonnarcissism":4, "nonnarcissistic":5, "nonnarcotic":4, "nonnarration":4, "nonnarrative":4, "nonnattily":4, "nonnattiness":4, "nonnatty":3, "nonnatural":4, "nonnaturalism":5, "nonnaturalist":5, "nonnaturalistic":6, "nonnautical":4, "nonnavigability":7, "nonnavigable":5, "nonnavigableness":6, "nonnavigation":5, "nonnasality":5, "nonnasally":4, "nonnational":4, "nonnationalism":5, "nonnationalistic":6, "nonnationalistically":8, "nonnationalization":7, "nonnative":3, "nonnaval":3, "nonnebular":4, "nonnebulous":4, "nonnegative":4, "nonnegativism":5, "nonnegativistic":6, "nonnegativity":6, "nonnegligence":4, "nonnegligent":4, "nonnegligibility":7, "nonnegligible":5, "nonnegligibleness":6, "nonnervous":3, "nonnescience":3, "nonnescient":3, "nonneural":3, "nonneurotic":4, "nonneutral":3, "nonneutrality":5, "nonnecessitous":5, "nonnecessity":5, "nonnegation":4, "nonnegotiability":8, "nonnegotiable":6, "nonnegotiation":6, "nonnephritic":4, "nonnicotinic":5, "nonnihilism":4, "nonnihilist":4, "nonnihilistic":5, "nonnitric":3, "nonnitrogenous":5, "nonnitrous":3, "nonnitrogenized":5, "nonnocturnal":4, "nonnominalistic":6, "nonnomination":5, "nonnormal":3, "nonnormality":5, "nonnotable":4, "nonnotableness":5, "nonnourishing":4, "nonnourishment":4, "nonnoumenal":4, "nonnobility":5, "nonnomad":3, "nonnomadic":4, "nonnomadically":6, "nonnotational":5, "nonnotional":4, "nonnotification":6, "nonnullification":6, "nonnumeral":4, "nonnutrient":4, "nonnutriment":4, "nonnutritious":4, "nonnutritive":4, "nonobjection":4, "nonobjective":4, "nonobjectification":7, "nonobjectivistic":6, "nonobligatorily":7, "nonobligatory":6, "nonobligated":5, "nonobscurity":5, "nonobservance":4, "nonobservable":5, "nonobserving":4, "nonobservant":4, "nonobservation":5, "nonobservational":6, "nonobsession":4, "nonobsessional":5, "nonobsessive":4, "nonobstetric":4, "nonobstetrical":5, "nonobstructive":4, "nonobvious":4, "nonoccidental":5, "nonocclusion":4, "nonocclusive":4, "nonoccult":3, "nonocculting":4, "nonoccurrence":4, "nonoccupant":4, "nonoccupation":5, "nonoccupational":6, "nonoecumenic":5, "nonoecumenical":6, "nonoffender":4, "nonoffensive":4, "nonofficeholder":5, "nonofficinal":5, "nonofficial":4, "nonoily":3, "nonolfactory":5, "nonoligarchic":5, "nonoligarchical":6, "nononerous":4, "nonoperatic":5, "nonoperating":5, "nonoperatically":7, "nonoperable":5, "nonoperational":6, "nonoperative":5, "nonopposable":5, "nonopposing":4, "nonopposition":5, "nonoppression":4, "nonoppressive":4, "nonopprobrious":5, "nonoptic":3, "nonoptional":4, "nonoptical":4, "nonoptimistic":5, "nonoptimistical":6, "nonorchestral":4, "nonordered":3, "nonordination":5, "nonorganic":4, "nonorganically":6, "nonorganization":6, "nonornamental":5, "nonornamentality":7, "nonorthodox":4, "nonorthographic":5, "nonorthographical":6, "nonoscine":3, "nonosmotic":4, "nonosmotically":6, "nonostensive":4, "nonostensible":5, "nonostentation":5, "nonoutlawry":4, "nonowner":3, "nonowning":3, "nonoxidating":5, "nonoxidation":5, "nonoxidative":5, "nonoxidizable":6, "nonoxidizing":5, "nonoxidization":6, "nonoxygenated":6, "nonobedience":5, "nonobedient":5, "nonodoriferous":6, "nonodorous":4, "nonomission":4, "nonomissible":5, "nonopacity":5, "nonopinionated":6, "nonopinionative":6, "nonoral":3, "nonoriginal":5, "nonoriental":5, "nonorientable":6, "nonorientation":6, "nonoverhead":4, "nonoverlapping":5, "nonpacifist":4, "nonpacifistic":5, "nonpacifiable":6, "nonpacification":6, "nonpaid":2, "nonpainter":3, "nonpalatability":7, "nonpalatable":5, "nonpalatableness":6, "nonpalatal":4, "nonpalatalization":7, "nonpalliation":5, "nonpalliative":5, "nonpalpability":6, "nonpalpable":4, "nonpantheistic":5, "nonpantheistical":6, "nonpapist":3, "nonpar":2, "nonpartner":3, "nonparallel":4, "nonparallelism":5, "nonparabolic":5, "nonparabolical":6, "nonparadoxical":6, "nonparalytic":5, "nonparasitic":5, "nonparasitism":5, "nonparasitical":6, "nonpardoning":4, "nonparent":3, "nonparity":4, "nonparliamentary":6, "nonparous":3, "nonpartial":3, "nonparticipant":5, "nonparticipating":6, "nonparticipation":6, "nonpartiality":6, "nonpartible":4, "nonpartisan":4, "nonpartizan":4, "nonpartizanship":5, "nonparty":3, "nonpassenger":4, "nonpasserine":4, "nonpassionate":4, "nonpassible":4, "nonpastoral":4, "nonpathogenic":5, "nonpathologic":5, "nonpathological":6, "nonpatentability":7, "nonpatentable":5, "nonpatented":4, "nonpatently":4, "nonpatterned":3, "nonpause":2, "nonpaying":3, "nonpayment":3, "nonpacific":4, "nonpacifical":5, "nonpacificatory":7, "nonpagan":3, "nonpaganish":4, "nonpapal":3, "nonpapistic":4, "nonpapistical":5, "nonparalysis":5, "nonpareil":3, "nonparental":4, "nonparishioner":5, "nonparochial":5, "nonpaternal":4, "nonpatriotic":5, "nonpatriotically":7, "nonpeaked":2, "nonpedagogic":5, "nonpedagogical":6, "nonpedigreed":4, "nonpeltast":3, "nonpendant":3, "nonpendent":3, "nonpendency":4, "nonpending":3, "nonpenetrating":5, "nonpenetrability":7, "nonpenetrable":5, "nonpenetration":5, "nonpenitent":4, "nonpensionable":5, "nonpensioner":4, "nonperceivable":5, "nonperceiving":4, "nonperception":4, "nonperceptional":5, "nonperceptive":4, "nonperceptivity":6, "nonperceptibility":7, "nonperceptible":5, "nonperceptibleness":6, "nonperceptual":5, "nonpercipience":5, "nonpercipient":5, "nonpercipiency":6, "nonpercussive":4, "nonperfected":4, "nonperfectibility":7, "nonperfectible":5, "nonperfection":4, "nonperformance":4, "nonperformer":4, "nonperforming":4, "nonperforated":5, "nonperforating":5, "nonperilous":4, "nonperishable":5, "nonperishing":4, "nonperjured":3, "nonperjury":4, "nonpermanence":4, "nonpermanent":4, "nonpermanency":5, "nonpermeability":7, "nonpermeable":5, "nonpermeation":5, "nonpermeative":5, "nonpermission":4, "nonpermissive":4, "nonpermissibility":7, "nonpermissible":5, "nonpermitted":4, "nonperpendicular":6, "nonperpendicularity":8, "nonperpetual":5, "nonperpetuance":5, "nonperpetuation":6, "nonperpetration":5, "nonperpetuity":6, "nonpersecuting":5, "nonpersecution":5, "nonpersecutive":5, "nonpersecutory":6, "nonperseverance":5, "nonperseverant":5, "nonpersevering":5, "nonpersistence":4, "nonpersistent":4, "nonpersistency":5, "nonpersisting":4, "nonpersonal":4, "nonpersonification":7, "nonperspective":4, "nonpersuadable":5, "nonpersuasive":4, "nonpersuasible":5, "nonpertinence":4, "nonpertinent":4, "nonpertinency":5, "nonperturbable":5, "nonperturbing":4, "nonperverse":3, "nonperverted":4, "nonpervertible":5, "nonperversion":4, "nonperversive":4, "nonperversity":5, "nonpessimistic":5, "nonpessimistically":7, "nonpestilent":4, "nonpestilential":5, "nonpecuniary":6, "nonpedestrian":5, "nonpejorative":5, "nonpelagic":4, "nonpenal":3, "nonpenalized":4, "nonperiodic":5, "nonperiodical":6, "nonphagocytic":5, "nonpharmaceutic":5, "nonpharmaceutical":6, "nonphenomenal":5, "nonphenolic":4, "nonphilanthropic":5, "nonphilanthropical":6, "nonphilologic":5, "nonphilological":6, "nonphilosophic":5, "nonphilosophical":6, "nonphilosophy":5, "nonphosphatic":4, "nonphosphorous":4, "nonphobic":3, "nonphonetic":4, "nonphonetical":5, "nonphonemic":4, "nonphonemically":6, "nonphotographic":5, "nonphotographical":6, "nonphrenetic":4, "nonphrenetically":6, "nonphysical":4, "nonphysiologic":6, "nonphysiological":7, "nonpictorial":5, "nonpigmented":4, "nonpinaceous":4, "nonplanetary":5, "nonplastic":3, "nonplasticity":5, "nonplated":3, "nonplatitudinous":6, "nonplausibility":6, "nonplausible":4, "nonplausibleness":5, "nonplacental":4, "nonpleadable":4, "nonpleading":3, "nonpleadingly":4, "nonpliant":3, "nonpliancy":4, "nonpliability":6, "nonpliable":4, "nonpliableness":5, "nonplus":2, "nonplused":2, "nonplussed":2, "nonplusing":3, "nonplussing":3, "nonpluralistic":5, "nonplurality":5, "nonplutocratic":5, "nonplutocratical":6, "nonpneumatic":4, "nonpneumatically":6, "nonpoisonous":4, "nonponderability":7, "nonponderable":5, "nonponderosity":6, "nonponderous":4, "nonpopular":4, "nonpopularity":6, "nonpopularly":5, "nonpopulous":4, "nonportability":6, "nonportable":4, "nonpornographic":5, "nonporphyritic":5, "nonportentous":4, "nonportrayal":4, "nonportrayable":5, "nonposthumous":4, "nonpostponement":4, "nonpositive":4, "nonpositivistic":6, "nonpossessed":3, "nonpossession":4, "nonpossessive":4, "nonpossible":4, "nonpossibly":4, "nonpoet":3, "nonpoetic":4, "nonpolarizable":6, "nonpolarizing":5, "nonpolarity":5, "nonpolemic":4, "nonpolemical":5, "nonpolitical":5, "nonporous":3, "nonpotable":4, "nonpotential":4, "nonpractice":3, "nonpracticed":3, "nonpractical":4, "nonpracticality":6, "nonpracticability":7, "nonpracticable":5, "nonpracticableness":6, "nonpragmatic":4, "nonpragmatical":5, "nonpreaching":3, "nonprecedent":4, "nonprecedential":5, "nonpredatorily":6, "nonpredatoriness":6, "nonpredatory":5, "nonpredicative":5, "nonpreferability":7, "nonpreferable":5, "nonpreferableness":6, "nonpreference":4, "nonpreferential":5, "nonpreferentialism":6, "nonpregnant":3, "nonprejudiced":4, "nonprejudicial":5, "nonpreparation":5, "nonprepositional":6, "nonpressing":3, "nonpresbyter":4, "nonpresence":3, "nonpresentation":5, "nonpresentational":6, "nonpreservation":5, "nonpresidential":5, "nonpressure":3, "nonprevalence":4, "nonprevalent":4, "nonprecedent":4, "nonprecious":3, "nonprecipitation":6, "nonprecipitative":6, "nonpredictable":5, "nonpredictive":4, "nonpreformed":3, "nonprehensile":4, "nonprelatic":4, "nonpremium":4, "nonpreparative":5, "nonpreparatory":6, "nonprescient":4, "nonprescribed":3, "nonprescriber":4, "nonprescriptive":4, "nonpresentability":7, "nonpresentable":5, "nonpresentableness":6, "nonpreservable":5, "nonpreservative":5, "nonpresumptive":4, "nonpreventable":5, "nonpreventible":5, "nonprevention":4, "nonpreventive":4, "nonpriestly":3, "nonprimitive":4, "nonprintable":4, "nonprinting":3, "nonprincipled":4, "nonprivileged":4, "nonprivity":4, "nonprobability":6, "nonprobable":4, "nonproblematic":5, "nonproblematical":6, "nonprocuration":5, "nonprofit":3, "nonprofitability":7, "nonprofitable":5, "nonprofiteering":5, "nonprofprossed":3, "nonprognosticative":6, "nonpromissory":5, "nonprominence":4, "nonprominent":4, "nonpropagandist":5, "nonpropagable":5, "nonpropagation":5, "nonpropagative":5, "nonprosecution":5, "nonprospect":3, "nonprosperity":5, "nonprosperous":4, "nonprossing":3, "nonprotestation":5, "nonprovable":4, "nonprovident":4, "nonprovidential":5, "nonprovocation":5, "nonproximity":5, "nonprobation":4, "nonprobative":4, "nonprobatory":5, "nonprocessional":5, "nonprocreation":5, "nonprocreative":5, "nonprocurement":4, "nonprocurable":5, "nonproducer":4, "nonproducing":4, "nonproducible":5, "nonproduction":4, "nonproductive":4, "nonproductively":5, "nonproductiveness":5, "nonproductivity":6, "nonprofane":3, "nonprofanity":5, "nonprofessed":3, "nonprofession":4, "nonprofessional":5, "nonprofessionalism":6, "nonprofessorial":6, "nonproficient":4, "nonproficiency":5, "nonprogressive":4, "nonprohibitive":5, "nonprohibitorily":7, "nonprohibitory":6, "nonprohibition":5, "nonprojecting":4, "nonprojection":4, "nonprojective":4, "nonproletarian":6, "nonproletariat":6, "nonproliferation":6, "nonproliferous":5, "nonprolific":4, "nonprolifically":6, "nonprolificacy":6, "nonprolix":3, "nonprolixity":5, "nonprolongation":5, "nonpromiscuous":5, "nonpromotion":4, "nonpromotive":4, "nonpromulgation":5, "nonpronunciation":6, "nonpropellent":4, "nonprophetic":4, "nonprophetical":5, "nonpropitiable":6, "nonpropitiation":6, "nonpropitiative":6, "nonproportioned":4, "nonproportional":5, "nonproportionate":5, "nonproportionable":6, "nonproprietaries":6, "nonproprietary":6, "nonproprietor":5, "nonpropriety":5, "nonprorogation":5, "nonprosaic":4, "nonprosaically":6, "nonproscription":4, "nonproscriptive":4, "nonprotecting":4, "nonprotection":4, "nonprotective":4, "nonprotesting":4, "nonprotein":4, "nonprotractile":4, "nonprotraction":4, "nonprotrusion":4, "nonprotrusive":4, "nonprotuberance":5, "nonprotuberant":5, "nonprotuberancy":6, "nonprovided":4, "nonprovider":4, "nonprovincial":4, "nonprovisional":5, "nonprovisionary":6, "nonprovocative":5, "nonprudence":3, "nonprudent":3, "nonprudential":4, "nonpsychic":3, "nonpsychiatric":5, "nonpsychical":4, "nonpsychotic":4, "nonpsychoanalytic":7, "nonpsychoanalytical":8, "nonpsychologic":5, "nonpsychological":6, "nonpsychopathic":5, "nonpsychopathically":7, "nonpublic":3, "nonpublicity":5, "nonpublishable":5, "nonpublication":5, "nonpulmonary":5, "nonpulsating":4, "nonpulsation":4, "nonpulsative":4, "nonpuncturable":5, "nonpunctual":4, "nonpunctuating":5, "nonpunctuation":5, "nonpungent":3, "nonpungency":4, "nonpunishable":5, "nonpunishing":4, "nonpunishment":4, "nonpurchase":3, "nonpurchasability":7, "nonpurchasable":5, "nonpurchaser":4, "nonpurgation":4, "nonpurgative":4, "nonpurgatorial":6, "nonpurposive":4, "nonpursuance":4, "nonpursuant":4, "nonpurveyance":4, "nonpuerile":4, "nonpuerility":6, "nonpunitive":4, "nonpunitory":5, "nonpuristic":4, "nonpurification":6, "nonpurifying":5, "nonpurulence":4, "nonpurulent":4, "nonputrescence":4, "nonputrescent":4, "nonputrescible":5, "nonpyogenic":5, "nonqualification":6, "nonqualifying":5, "nonqualitative":5, "nonquality":4, "nonquantitative":5, "nonrabbinical":5, "nonradical":4, "nonradically":5, "nonraised":2, "nonraiseable":4, "nonraisable":4, "nonranging":3, "nonrandom":3, "nonrapport":3, "nonrateability":6, "nonrateable":4, "nonrateableness":5, "nonratability":6, "nonratable":4, "nonratableness":5, "nonrated":3, "nonratification":6, "nonratifying":5, "nonracial":3, "nonradiance":4, "nonradiant":4, "nonradiancy":5, "nonradiating":5, "nonradiation":5, "nonradiative":5, "nonradioactive":6, "nonrational":4, "nonrationalism":5, "nonrationalist":5, "nonrationalistic":6, "nonrationalistical":7, "nonrationalized":5, "nonrationality":6, "nonrationalization":7, "nonreadability":6, "nonreadable":4, "nonreadableness":5, "nonreader":3, "nonreading":3, "nonreasonability":7, "nonreasonable":5, "nonreasonableness":6, "nonreasoner":4, "nonreasoning":4, "nonrebel":3, "nonreciprocity":6, "nonrecitation":5, "nonrecitative":5, "nonreclamation":5, "nonrecognized":4, "nonrecognition":5, "nonrecollection":5, "nonrecollective":5, "nonreconcilability":8, "nonreconcilable":6, "nonreconcilableness":7, "nonreconciliation":7, "nonrectangular":5, "nonrectangularity":7, "nonrectified":4, "nonrectifiable":6, "nonreference":4, "nonreformation":5, "nonreformational":6, "nonrefutation":5, "nonregistered":4, "nonregistrable":5, "nonregistration":5, "nonregimented":5, "nonregimental":5, "nonregulation":5, "nonregulative":5, "nonregulatory":6, "nonreigning":3, "nonrelative":4, "nonrelatively":5, "nonrelativistic":6, "nonrelativity":6, "nonremedy":4, "nonrendition":4, "nonreparable":5, "nonreparation":5, "nonrepetition":5, "nonrepetitious":5, "nonreplicate":4, "nonreplicated":5, "nonreplication":5, "nonreprehensibility":8, "nonreprehensible":6, "nonreprehensibleness":7, "nonrepresentable":6, "nonrepresentative":6, "nonrepresentation":6, "nonrepresentational":7, "nonreputable":5, "nonrequisite":4, "nonrequisition":5, "nonrescue":3, "nonreservation":5, "nonresignation":5, "nonresidence":4, "nonresident":4, "nonresidency":5, "nonresidential":5, "nonresolution":5, "nonresonant":4, "nonrestitution":5, "nonrestoration":5, "nonresurrection":5, "nonresurrectional":6, "nonreticence":4, "nonreticent":4, "nonretinal":4, "nonretroactive":5, "nonretroactivity":7, "nonreverence":4, "nonreverent":4, "nonreverential":5, "nonrevelation":5, "nonrevenue":4, "nonrevocability":7, "nonrevocable":5, "nonrevocation":5, "nonrevolution":5, "nonrevolutionaries":7, "nonrevolutionary":7, "nonreaction":4, "nonreactionaries":6, "nonreactionary":6, "nonreactive":4, "nonreactor":4, "nonrealism":4, "nonrealist":4, "nonrealistic":5, "nonrealistically":7, "nonrealizable":6, "nonrealizing":5, "nonreality":5, "nonrealization":6, "nonrebellion":4, "nonrebellious":4, "nonrecalcitrance":5, "nonrecalcitrant":5, "nonrecalcitrancy":6, "nonreceipt":3, "nonreceivable":5, "nonreceiving":4, "nonreception":4, "nonreceptive":4, "nonreceptivity":6, "nonrecess":3, "nonrecession":4, "nonrecessive":4, "nonrecipience":5, "nonrecipient":5, "nonrecipiency":6, "nonreciprocal":5, "nonreciprocating":6, "nonrecital":4, "nonrecision":4, "nonreclaimable":5, "nonreclusive":4, "nonrecoil":3, "nonrecoiling":4, "nonrecourse":3, "nonrecoverable":6, "nonrecurent":4, "nonrecurring":4, "nonrecuperation":6, "nonrecuperative":6, "nonrecuperatory":7, "nonredeemable":5, "nonredemption":4, "nonredemptive":4, "nonredemptible":5, "nonredressing":4, "nonreduced":3, "nonreducing":4, "nonreducibility":7, "nonreducible":5, "nonreduction":4, "nonreductional":5, "nonreductive":4, "nonrefillable":5, "nonrefined":3, "nonrefinement":4, "nonreflected":4, "nonreflecting":4, "nonreflection":4, "nonreflective":4, "nonreflector":4, "nonrefracting":4, "nonrefraction":4, "nonrefractional":5, "nonrefractive":4, "nonrefrigerant":5, "nonrefutal":4, "nonrefueling":5, "nonrefuelling":5, "nonregent":3, "nonregenerate":5, "nonregenerating":6, "nonregenerative":6, "nonregeneration":6, "nonregression":4, "nonregressive":4, "nonrehabilitation":7, "nonreimbursement":5, "nonreinforcement":5, "nonreinstatement":5, "nonrejection":4, "nonrejoinder":4, "nonrelated":4, "nonrelaxation":5, "nonrelation":4, "nonrelational":5, "nonrelease":3, "nonrelenting":4, "nonrelieving":4, "nonrelinquishment":5, "nonreliance":4, "nonreliability":7, "nonreliable":5, "nonreliableness":6, "nonreligion":4, "nonreligious":4, "nonremembrance":4, "nonremedial":5, "nonremediability":8, "nonremediable":6, "nonremission":4, "nonremissible":5, "nonremittable":5, "nonremonstrance":4, "nonremonstrant":4, "nonremovable":5, "nonremuneration":6, "nonremunerative":6, "nonrenewal":4, "nonrenewable":5, "nonrenouncing":4, "nonrenunciation":6, "nonrepair":3, "nonrepairable":5, "nonrepayable":5, "nonrepaying":4, "nonrepatriable":6, "nonrepatriation":6, "nonrepealable":5, "nonrepeat":3, "nonrepeated":4, "nonrepeater":4, "nonrepellence":4, "nonrepellent":4, "nonrepellency":5, "nonrepeller":4, "nonrepentance":4, "nonrepentant":4, "nonrepetitive":5, "nonreplaceable":5, "nonreplacement":4, "nonreportable":5, "nonrepressed":3, "nonrepressible":5, "nonrepressibleness":6, "nonrepression":4, "nonrepressive":4, "nonreprisal":4, "nonreproducible":6, "nonreproduction":5, "nonreproductive":5, "nonrepublican":5, "nonrepudiable":6, "nonrepudiation":6, "nonrepudiative":6, "nonrequirement":4, "nonrequirable":5, "nonrequital":4, "nonrescission":4, "nonrescissible":5, "nonrescissory":5, "nonresemblance":4, "nonreserve":3, "nonreservable":5, "nonresidual":5, "nonresilience":5, "nonresilient":5, "nonresiliency":6, "nonresisting":4, "nonresistibility":7, "nonresistible":5, "nonresistance":4, "nonresistant":4, "nonresistive":4, "nonresolvability":7, "nonresolvable":5, "nonrespectability":7, "nonrespectable":5, "nonrespectableness":6, "nonrespirable":5, "nonresponsive":4, "nonresponsibility":7, "nonresponsible":5, "nonresponsibleness":6, "nonrestorative":5, "nonrestrained":3, "nonrestraint":3, "nonrestricted":4, "nonrestricting":4, "nonrestriction":4, "nonrestrictive":4, "nonresumption":4, "nonresuscitable":6, "nonresuscitation":6, "nonresuscitative":6, "nonretail":3, "nonretainable":5, "nonretainment":4, "nonretaliation":6, "nonretardative":5, "nonretardatory":6, "nonretarded":4, "nonretardment":4, "nonretardation":5, "nonretention":4, "nonretentive":4, "nonretired":3, "nonretirement":4, "nonretiring":4, "nonretraceable":5, "nonretractile":4, "nonretractility":6, "nonretraction":4, "nonretrenchment":4, "nonreturn":3, "nonreturnable":5, "nonrevaluation":6, "nonrevealing":4, "nonrevenge":3, "nonrevenger":4, "nonreverse":3, "nonreversed":3, "nonreversing":4, "nonreversibility":7, "nonreversible":5, "nonreversibleness":6, "nonrevertible":5, "nonreversion":4, "nonrevertive":4, "nonreviewable":5, "nonrevival":4, "nonrevivalist":5, "nonrevision":4, "nonrevokable":5, "nonrevolting":4, "nonrevolving":4, "nonrheumatic":4, "nonrhetorical":5, "nonrhyme":2, "nonrhymed":2, "nonrhyming":3, "nonrhythm":2, "nonrhythmic":3, "nonrhythmical":4, "nonriding":3, "nonrigid":3, "nonritualistic":6, "nonritualistically":8, "nonrioter":4, "nonrioting":4, "nonriparian":5, "nonrival":3, "nonround":2, "nonrousing":3, "nonroutine":3, "nonroyal":3, "nonroyalist":4, "nonroyalty":4, "nonromantic":4, "nonromantically":6, "nonromanticism":5, "nonrotatable":5, "nonrotating":4, "nonrotation":4, "nonrotational":5, "nonrotative":4, "nonrubber":3, "nonruling":3, "nonrun":2, "nonrupture":3, "nonrupturable":5, "nonrustable":4, "nonrustic":3, "nonrustically":5, "nonrudimental":5, "nonrudimentarily":7, "nonrudimentariness":7, "nonrudimentary":6, "nonruinable":5, "nonruinous":4, "nonruminant":4, "nonruminating":5, "nonrumination":5, "nonruminative":5, "nonrural":3, "nonsaccharin":4, "nonsaccharine":4, "nonsaccharinity":6, "nonsacerdotal":5, "nonsacramental":5, "nonsacrifice":4, "nonsacrificing":5, "nonsacrificial":5, "nonsacrilegious":5, "nonsailor":3, "nonsale":2, "nonsaleability":6, "nonsaleable":4, "nonsalability":6, "nonsalable":4, "nonsalaried":4, "nonsalutarily":6, "nonsalutariness":6, "nonsalutary":5, "nonsalutation":5, "nonsalvageable":5, "nonsalvation":4, "nonsanction":3, "nonsanctification":6, "nonsanctimonious":6, "nonsanctimony":5, "nonsanctity":4, "nonsane":2, "nonsanative":4, "nonsanguine":3, "nonsanity":4, "nonsaporific":5, "nonsatire":3, "nonsatisfaction":5, "nonsatisfying":5, "nonsatirizing":5, "nonsaturated":5, "nonsaturation":5, "nonsaving":3, "nonsawing":3, "nonsacred":3, "nonsaline":3, "nonsalinity":5, "nonsalubrious":5, "nonsaponifiable":7, "nonsaponification":7, "nonsatiric":4, "nonsatirical":5, "nonsatiability":7, "nonsatiable":5, "nonsatiation":5, "nonscalding":3, "nonscaling":3, "nonscandalous":4, "nonscarcity":4, "nonscented":3, "nonscheduled":3, "nonschematic":4, "nonschematically":6, "nonschematized":4, "nonschismatic":4, "nonschismatical":5, "nonschizophrenic":5, "nonscholar":3, "nonschooling":3, "nonscholastic":4, "nonscholastical":5, "nonsciatic":4, "nonscience":3, "nonscientific":5, "nonscientifically":7, "nonscientist":4, "nonscoring":3, "nonscraping":3, "nonscriptural":4, "nonscrutiny":4, "nonsculptured":3, "nonsculptural":4, "nonseasoned":3, "nonseasonal":4, "nonseasonable":5, "nonseasonableness":6, "nonsecretarial":6, "nonsectarian":5, "nonsectional":4, "nonsectorial":5, "nonsecular":4, "nonsedentarily":6, "nonsedentariness":6, "nonsedentary":5, "nonsegmented":4, "nonsegmental":4, "nonsegmentary":5, "nonsegmentation":5, "nonsegregated":5, "nonsegregable":5, "nonsegregation":5, "nonsegregative":5, "nonseismic":3, "nonseizure":3, "nonself-governing":4, "nonselling":3, "nonsense":2, "nonsense verse":3, "nonsenatorial":6, "nonsensate":3, "nonsensation":4, "nonsensationalistic":7, "nonsensibility":6, "nonsensible":4, "nonsensibleness":5, "nonsensical":4, "nonsensicality":6, "nonsensically":5, "nonsensicalness":5, "nonsensitive":4, "nonsensitivity":6, "nonsensitized":4, "nonsensitizing":5, "nonsensitization":6, "nonsensorial":5, "nonsensory":4, "nonsensual":4, "nonsensualistic":6, "nonsensuality":6, "nonsensuous":4, "nonsententious":4, "nonsentience":3, "nonsentient":3, "nonsentiency":4, "nonseparating":5, "nonseparability":7, "nonseparable":5, "nonseparableness":6, "nonseparation":5, "nonseparative":5, "nonseptate":3, "nonseptic":3, "nonserviceability":7, "nonserviceable":5, "nonserviceableness":6, "nonservile":3, "nonsetting":3, "nonsettlement":4, "nonseverance":4, "nonseverable":5, "nonsexlinked":3, "nonsexual":4, "nonsecession":4, "nonsecessional":5, "nonsecluded":4, "nonseclusion":4, "nonseclusive":4, "nonsecret":3, "nonsecrecy":4, "nonsecretion":4, "nonsecretionary":6, "nonsecretive":4, "nonsecretory":5, "nonsecurity":5, "nonseditious":4, "nonselected":4, "nonselection":4, "nonselective":4, "nonsemantic":4, "nonsemantically":6, "nonsequacity":5, "nonsequacious":4, "nonsequent":3, "nonsequential":4, "nonsequestered":4, "nonsequestration":5, "nonseraphic":4, "nonseraphical":5, "nonserial":4, "nonseriate":4, "nonserious":4, "nonserous":3, "nonseverity":5, "nonsharing":3, "nonshatter":3, "nonshattering":4, "nonshedding":3, "nonshipper":3, "nonshipping":3, "nonshredding":3, "nonshrinkable":4, "nonshrinking":3, "nonsibilance":4, "nonsibilant":4, "nonsibilancy":5, "nonsiccative":4, "nonsignable":4, "nonsignatory":5, "nonsignificance":5, "nonsignificant":5, "nonsignificancy":6, "nonsignificative":6, "nonsignification":6, "nonsilicate":4, "nonsilver":3, "nonsimilar":4, "nonsimilarity":6, "nonsimplicity":5, "nonsimplification":6, "nonsimular":4, "nonsimulate":4, "nonsimulation":5, "nonsimulative":5, "nonsinkable":4, "nonsingular":4, "nonsingularity":6, "nonsister":3, "nonsidereal":5, "nonsiliceous":4, "nonsilicious":4, "nonsimilitude":5, "nonskeletal":4, "nonskeptic":3, "nonskeptical":4, "nonskilled":2, "nonskipping":3, "nonslanderous":4, "nonslaveholding":4, "nonslip":2, "nonslippery":4, "nonslipping":3, "nonsmoker":3, "nonsmoking":3, "nonsolvability":6, "nonsolvable":4, "nonsolvableness":5, "nonsoldier":3, "nonsolid":3, "nonsolidarity":6, "nonsoluble":4, "nonsolubleness":5, "nonsolvent":3, "nonsolvency":4, "nonsoporific":5, "nonsovereign":4, "nonsober":3, "nonsobering":4, "nonsobriety":5, "nonsocial":3, "nonsocialist":4, "nonsocialistic":5, "nonsociability":6, "nonsociable":4, "nonsociableness":5, "nonsociality":6, "nonsocietal":5, "nonsociety":5, "nonsociological":7, "nonsolar":3, "nonsolicitation":6, "nonsolicitous":5, "nonsolidified":5, "nonsolidification":7, "nonsolidifying":6, "nonsolution":4, "nonsonant":3, "nonsophistic":4, "nonsophistical":5, "nonspalling":3, "nonsparking":3, "nonsparing":3, "nonsparkling":3, "nonspacious":3, "nonspatial":3, "nonspatiality":6, "nonspeaker":3, "nonspeaking":3, "nonspecificity":6, "nonspecified":4, "nonspecifiable":6, "nonspecification":6, "nonspectacular":5, "nonspectral":3, "nonspectrality":5, "nonspeculation":5, "nonspeculative":5, "nonspeculatory":6, "nonspecial":3, "nonspecialist":4, "nonspecialized":4, "nonspecializing":5, "nonspecific":4, "nonspecifically":6, "nonspecious":3, "nonspheral":3, "nonspheric":3, "nonspherical":4, "nonsphericality":6, "nonspill":2, "nonspillable":4, "nonspinning":3, "nonspiny":3, "nonspirit":3, "nonspirited":4, "nonspiritous":4, "nonspiritual":5, "nonspirituality":7, "nonspirituous":5, "nonspinal":3, "nonspinose":3, "nonspinosity":5, "nonspiral":3, "nonspontaneous":5, "nonspore-forming":3, "nonsporting":3, "nonspottable":4, "nonsprouting":3, "nonspurious":4, "nonstainable":4, "nonstainer":3, "nonstaining":3, "nonstampable":4, "nonstandard":3, "nonstandardized":4, "nonstanzaic":4, "nonstarter":3, "nonstarting":3, "nonstatement":3, "nonstatic":3, "nonstatutable":5, "nonstatutory":5, "nonstabile":3, "nonstability":5, "nonstable":3, "nonstableness":4, "nonstaple":3, "nonstationaries":5, "nonstationary":5, "nonstatistic":4, "nonstatistical":5, "nonstative":3, "nonstellar":3, "nonstereotyped":5, "nonstereotypic":6, "nonstereotypical":7, "nonsterile":3, "nonsterilization":6, "nonsterility":5, "nonstick":2, "nonsticky":3, "nonstimulant":4, "nonstimulating":5, "nonstimulable":5, "nonstimulation":5, "nonstimulative":5, "nonstipticity":5, "nonstipulation":5, "nonstock":2, "nonstooping":3, "nonstop":2, "nonstorage":3, "nonstorable":4, "nonstoical":4, "nonstratified":4, "nonstrategic":4, "nonstrategical":5, "nonstress":2, "nonstretchable":4, "nonstrictured":3, "nonstriker":3, "nonstriking":3, "nonstringent":3, "nonstriped":2, "nonstriated":4, "nonstrophic":3, "nonstructure":3, "nonstructured":3, "nonstructural":4, "nonstudied":3, "nonstudy":3, "nonstultification":6, "nonstudent":3, "nonstudious":4, "nonstylized":3, "nonstyptic":3, "nonstyptical":4, "nonstylization":5, "nonsubconscious":4, "nonsubject":3, "nonsubjected":4, "nonsubjection":4, "nonsubjective":4, "nonsubjectivity":6, "nonsubjectification":7, "nonsubjugable":5, "nonsubjugation":5, "nonsubliminal":5, "nonsublimation":5, "nonsubmerged":3, "nonsubmersible":5, "nonsubmergence":4, "nonsubmergibility":7, "nonsubmergible":5, "nonsubmission":4, "nonsubmissive":4, "nonsubmissible":5, "nonsubordinate":5, "nonsubordinating":6, "nonsubordination":6, "nonsubscriber":4, "nonsubscribing":4, "nonsubscription":4, "nonsubsiding":4, "nonsubsidiaries":6, "nonsubsidiary":6, "nonsubsistence":4, "nonsubsistent":4, "nonsubsidy":4, "nonsubstantial":4, "nonsubstantive":4, "nonsubstantiality":7, "nonsubstantiation":6, "nonsubstantival":5, "nonsubstituted":5, "nonsubstitution":5, "nonsubstitutional":6, "nonsubstitutionary":7, "nonsubstitutive":5, "nonsubtile":3, "nonsubtility":5, "nonsubtle":3, "nonsubtleness":4, "nonsubtlety":4, "nonsubtraction":4, "nonsubtractive":4, "nonsuburban":4, "nonsubversion":4, "nonsubversive":4, "nonsuch":2, "nonsuccess":3, "nonsuccessful":4, "nonsuccession":4, "nonsuccessional":5, "nonsuccessive":4, "nonsuccor":3, "nonsuction":3, "nonsuctorial":5, "nonsudsing":3, "nonsufferance":4, "nonsufferable":5, "nonsufferableness":6, "nonsuffrage":3, "nonsugar":3, "nonsuggestible":5, "nonsuggestion":4, "nonsuggestive":4, "nonsuit":2, "nonsulfurous":4, "nonsulphurous":4, "nonsummons":3, "nonsupplemental":5, "nonsupplementary":6, "nonsupplicating":5, "nonsupplication":5, "nonsupportability":7, "nonsupportable":5, "nonsupportableness":6, "nonsupporter":4, "nonsupporting":4, "nonsupposed":3, "nonsupposing":4, "nonsuppositive":5, "nonsuppositional":6, "nonsuppressed":3, "nonsuppression":4, "nonsuppressive":4, "nonsuppurative":5, "nonsurface":3, "nonsurgical":4, "nonsurrender":4, "nonsurrealistic":6, "nonsurrealistically":8, "nonsurvival":4, "nonsurvivor":4, "nonsusceptive":4, "nonsusceptivity":6, "nonsusceptibility":7, "nonsusceptible":5, "nonsusceptibleness":6, "nonsuspect":3, "nonsuspended":4, "nonsuspension":4, "nonsuspensive":4, "nonsustained":3, "nonsustainable":5, "nonsustaining":4, "nonsustenance":4, "nonsupervision":5, "nonsweating":3, "nonswimmer":3, "nonswimming":3, "nonsyllogistic":5, "nonsyllogistical":6, "nonsyllogizing":5, "nonsymptomatic":5, "nonsymbiotic":5, "nonsymbiotical":6, "nonsymbolic":4, "nonsymbolical":5, "nonsymmetry":4, "nonsympathetic":5, "nonsympathetically":7, "nonsympathizer":5, "nonsympathizing":5, "nonsympathy":4, "nonsymphonic":4, "nonsymphonically":6, "nonsymphonious":5, "nonsynchronic":4, "nonsynchronical":5, "nonsynchronal":4, "nonsynchronous":4, "nonsyncopation":5, "nonsyndicated":5, "nonsyndication":5, "nonsynesthetic":5, "nonsynodic":4, "nonsynodical":5, "nonsynonymous":5, "nonsynoptic":4, "nonsynoptical":5, "nonsyntactic":4, "nonsyntactical":5, "nonsynthetic":4, "nonsynthetical":5, "nonsynthesis":4, "nonsynthesized":4, "nonsyntonic":4, "nonsyntonical":5, "nonsystematic":5, "nonsystematical":6, "nontabular":4, "nontabulated":5, "nontactic":3, "nontactile":3, "nontactility":5, "nontactical":4, "nontalkative":4, "nontalented":4, "nontan":2, "nontangental":4, "nontangential":4, "nontangible":4, "nontangibleness":5, "nontannic":3, "nontannin":3, "nontanning":3, "nontarred":2, "nontarnished":3, "nontarnishable":5, "nontarnishing":4, "nontautomerizable":7, "nontautological":6, "nontautomeric":5, "nontax":2, "nontaxability":6, "nontaxable":4, "nontaxableness":5, "nontaxation":4, "nontaxer":3, "nontaxonomic":5, "nontaxonomical":6, "nonteachability":6, "nonteachable":4, "nonteachableness":5, "nonteacher":3, "nonteaching":3, "nontechnical":4, "nontechnologic":5, "nontechnological":6, "nonteetotaler":5, "nonteetotalist":5, "nontelegraphic":5, "nontelegraphical":6, "nonteleological":7, "nontelepathic":5, "nontelepathically":7, "nontelephonic":5, "nontelephonically":7, "nontelescopic":5, "nontelescoping":5, "nontelic":3, "nontemptation":4, "nontempered":3, "nontemperate":4, "nontemperable":5, "nontemperamental":6, "nontemporal":4, "nontemporarily":6, "nontemporariness":6, "nontemporary":5, "nontemporizing":5, "nontenant":3, "nontenantable":5, "nontenability":6, "nontenable":4, "nontenableness":5, "nontensile":3, "nontensility":5, "nontentative":4, "nontenurial":5, "nonterminal":4, "nonterminability":7, "nonterminable":5, "nonterminableness":6, "nontermination":5, "nonterminative":5, "nonterrestrial":5, "nonterritorial":6, "nonterritoriality":8, "nontestable":4, "nontesting":3, "nontestamentary":6, "nontextural":4, "nontextual":4, "nontherapeutic":5, "nontherapeutical":6, "nonthermal":3, "nonthermoplastic":5, "nontheatric":4, "nontheatrical":5, "nontheistic":4, "nontheistical":5, "nonthematic":4, "nonthematically":6, "nontheocratic":5, "nontheocratical":6, "nontheologic":5, "nontheological":6, "nontheoretic":5, "nontheoretical":6, "nontheosophic":5, "nontheosophical":6, "nonthinker":3, "nonthinking":3, "nonthoracic":4, "nonthreaded":3, "nonthreatening":4, "nontidal":3, "nontillable":4, "nontimbered":3, "nontinted":3, "nontitular":4, "nontitaniferous":6, "nontitled":3, "nontolerance":4, "nontolerant":4, "nontolerated":5, "nontolerable":5, "nontolerableness":6, "nontoleration":5, "nontolerative":5, "nontoned":2, "nontonic":3, "nontopographical":6, "nontortuous":3, "nontourist":3, "nontoxic":3, "nontoxically":5, "nontonality":5, "nontotalitarian":7, "nontraceability":6, "nontraceable":4, "nontraceableness":5, "nontractability":6, "nontractable":4, "nontractableness":5, "nontraction":3, "nontrade":2, "nontrader":3, "nontrading":3, "nontragedy":4, "nontragic":3, "nontragical":4, "nontrailing":3, "nontrained":2, "nontraining":3, "nontraitorous":4, "nontransferability":7, "nontransferable":5, "nontransference":4, "nontransferential":5, "nontransforming":4, "nontransformation":5, "nontransgression":4, "nontransgressive":4, "nontranslocation":5, "nontransmission":4, "nontransmittal":4, "nontransmittance":4, "nontransmittible":5, "nontransparence":4, "nontransparent":4, "nontransparency":5, "nontransportability":7, "nontransportable":5, "nontransportation":5, "nontransposable":5, "nontransposing":4, "nontransposition":5, "nontranscribing":4, "nontranscription":4, "nontranscriptive":4, "nontransience":3, "nontransient":3, "nontransiency":4, "nontransitional":5, "nontransitive":4, "nontraveler":4, "nontraveling":4, "nontraveller":4, "nontravelling":4, "nontraversable":5, "nontradition":4, "nontraditional":5, "nontraditionalist":6, "nontraditionalistic":7, "nontraditionary":6, "nontreatable":4, "nontreated":3, "nontreatment":3, "nontreasonable":5, "nontreasonableness":6, "nontreaty":3, "nontrespass":3, "nontribesman":3, "nontribal":3, "nontributary":5, "nontrigonometric":6, "nontrigonometrical":7, "nontrivial":4, "nontriviality":6, "nontrial":3, "nontrier":3, "nontropic":3, "nontropical":4, "nontroubling":3, "nontrunked":2, "nontrust":2, "nontrusting":3, "nontruth":2, "nontruant":3, "nontruancy":4, "nontuned":2, "nonturbinate":4, "nonturbinated":5, "nontubercular":5, "nontuberculous":5, "nontubular":4, "nontumorous":4, "nontumultuous":5, "nontutorial":5, "nontypical":4, "nontyrannous":4, "nontyphoidal":4, "nontypographic":5, "nontypographical":6, "nontyrannic":4, "nontyrannical":5, "nonulcerous":4, "nonumbilical":5, "nonundergraduate":6, "nonunderstandable":6, "nonunderstanding":5, "nonunderstood":4, "nonundulant":4, "nonundulate":4, "nonundulating":5, "nonundulatory":6, "nonunion":3, "nonunionism":4, "nonunionist":4, "nonupright":3, "nonurban":3, "nonurbanite":4, "nonurgent":3, "nonuse":2, "nonuseable":4, "nonusage":3, "nonusable":4, "nonuser":3, "nonusing":3, "nonutterance":4, "nonubiquitary":6, "nonubiquitous":5, "nonunanimous":5, "nonunique":3, "nonuniteable":5, "nonunitable":5, "nonunited":4, "nonuniting":4, "nonunified":4, "nonunification":6, "nonuniform":4, "nonuniformity":6, "nonunison":4, "nonunitarian":6, "nonunity":4, "nonuniversal":5, "nonuniversalist":6, "nonuniversality":7, "nonuniversity":6, "nonusurping":4, "nonusurious":5, "nonuterine":4, "nonutilized":4, "nonutilitarian":7, "nonutility":5, "nonutilization":6, "nonvaccination":5, "nonvacillating":5, "nonvacillation":5, "nonvacua":4, "nonvacuous":4, "nonvacuum":4, "nonvacuums":4, "nonvaginal":4, "nonvalid":3, "nonvalidation":5, "nonvalorous":4, "nonvalue":3, "nonvalued":3, "nonvaluable":5, "nonvanishing":4, "nonvaporous":4, "nonvaporosity":6, "nonvaried":3, "nonvariance":4, "nonvariant":4, "nonvariability":7, "nonvariable":5, "nonvariableness":6, "nonvariation":5, "nonvarious":4, "nonvascular":4, "nonvasculose":4, "nonvasculous":4, "nonvassal":3, "nonvacant":3, "nonvacancy":4, "nonvagrant":3, "nonvagrancy":4, "nonvalidity":5, "nonvariety":5, "nonvegetable":5, "nonvegetation":5, "nonvegetative":5, "nonvegetive":4, "nonvendibility":6, "nonvendible":4, "nonvendibleness":5, "nonvenomous":4, "nonventilation":5, "nonventilative":5, "nonverbal":3, "nonverbal communication":8, "nonverbalized":4, "nonverbosity":5, "nonverifiable":6, "nonverification":6, "nonveritable":5, "nonveritableness":6, "nonverminous":4, "nonvernacular":5, "nonversatility":6, "nonvertebral":4, "nonvertebrate":4, "nonvertical":4, "nonverticality":6, "nonvesting":3, "nonvesture":3, "nonveteran":4, "nonveterinaries":6, "nonveterinary":6, "nonvexatious":4, "nonvehement":4, "nonvenal":3, "nonvenereal":5, "nonvenous":3, "nonveracity":5, "nonveracious":4, "nonvesicular":5, "nonvictory":4, "nonvigilance":4, "nonvigilant":4, "nonvillager":4, "nonvillainous":4, "nonvindicable":5, "nonvindication":5, "nonvintage":3, "nonvirginal":4, "nonvirile":3, "nonvirtue":3, "nonvirtuous":4, "nonvirulent":4, "nonvisceral":4, "nonviscid":3, "nonviscidity":5, "nonviscous":3, "nonvisiting":4, "nonvisibility":6, "nonvisible":4, "nonvisual":4, "nonvisualized":5, "nonvitrified":4, "nonvitriolic":5, "nonviviparity":6, "nonviability":6, "nonviable":4, "nonvibrating":4, "nonvibratile":4, "nonvibration":4, "nonvibrator":4, "nonvibratory":5, "nonvicarious":5, "nonvinosity":5, "nonvinous":3, "nonviolability":7, "nonviolable":5, "nonviolableness":6, "nonviolation":5, "nonviolative":5, "nonviolence":4, "nonvirility":5, "nonvisional":4, "nonvisionary":5, "nonvital":3, "nonvitalized":4, "nonvitality":5, "nonvitiation":5, "nonvituperative":6, "nonviviparous":5, "nonvoid":2, "nonvoidable":4, "nonvolatile":4, "nonvolatilized":5, "nonvolatilizable":7, "nonvolatility":6, "nonvolcanic":4, "nonvoluntary":5, "nonvolubility":6, "nonvoluble":4, "nonvolubleness":5, "nonvoter":3, "nonvoting":3, "nonvocal":3, "nonvocalic":4, "nonvocality":5, "nonvocalization":6, "nonvocable":4, "nonvocational":5, "nonvolant":3, "nonvolition":4, "nonvolitional":5, "nonvulcanized":4, "nonvulgarity":5, "nonvulval":3, "nonvulvar":3, "nonwalking":3, "nonwar":2, "nonwarrantable":5, "nonwarranted":4, "nonwashable":4, "nonwasting":3, "nonwavering":4, "nonwaxing":3, "nonwatertight":4, "nonweakness":3, "nonwestern":3, "nonwetted":3, "nonwhite":2, "nonwinged":2, "nonwithering":4, "nonwoody":3, "nonworker":3, "nonworking":3, "nonwoven":3, "nonyielding":3, "nonzealous":3, "nonzero":3, "nonzonal":3, "nonzonate":3, "nonzonated":4, "nonzodiacal":5, "nonzoologic":5, "nonzoological":6, "nook":1, "nookeries":3, "nookery":3, "nookie":2, "nooklike":2, "nooky":2, "noon":1, "noonday":2, "nooning":2, "noontide":2, "noontime":2, "noordbrabant":3, "noordholland":3, "noose":1, "nooser":2, "noosing":2, "nootka":2, "noodle":2, "noodlehead":3, "nope":1, "nor":1, "nor":1, "nor circuit":3, "nor'easter":2, "nor'wester":2, "nor'wester":3, "nord":1, "nord-lais":2, "nordhausen":3, "nordkyn cape":3, "nordrhein-westfalen":4, "nordrhein-westfalen":4, "nork":1, "norm":1, "norm":1, "norn":1, "norrkping":4, "norrkping":3, "norse":1, "norseman":2, "north":1, "north":1, "north africa":4, "north atlantic drift":5, "north america":5, "north borneo":4, "north brabant":3, "north carolina":5, "north channel":3, "north country":3, "north dakota":4, "north germanic":4, "north holland":3, "north island":3, "north korea":4, "north rhine-westphalia":5, "north riding":3, "north saskatchewan":5, "north vietnam":4, "north yorkshire":3, "north-northeast":2, "north-northeastwardly":4, "north-northwest":2, "north-northwestward":3, "north-northwestwardly":4, "north-west frontier":3, "northallerton":4, "northampton":3, "northamptonshire":4, "northborough":3, "northbound":2, "northcliffe":2, "northcountryman":4, "northeast":2, "northeast":2, "northeast by east":4, "northeast by north":4, "northeast passage":4, "northeaster":3, "northeastern":3, "northeasterner":4, "northeasterly":4, "northeastward":3, "northeastwards":3, "northeastwardly":4, "norther":2, "northern":2, "northern cross":3, "northern dvina":4, "northern hemisphere":5, "northern ireland":4, "northern lights":3, "northern rhodesia":5, "northern sotho":4, "northern territories":6, "northern territory":6, "northerner":3, "northernise":3, "northernised":3, "northernising":4, "northernize":3, "northernmost":3, "northernness":3, "northerliness":4, "northerly":3, "northing":2, "northland":2, "northman":2, "northmost":2, "northport":2, "northumberland":4, "northumbria":4, "northumbrian":4, "northville":2, "northward":2, "northwardly":2, "northwards":2, "northwest":2, "northwest":2, "northwest by north":4, "northwest by west":4, "northwest passage":4, "northwest territories":6, "northwest territory":6, "northwester":3, "northwestern":3, "northwesterner":4, "northwesterly":4, "northwestward":3, "northwestwards":3, "northwich":2, "northwoods":2, "norw":1, "noradrenalin":5, "noradrenaline":5, "norbert":2, "nordau":2, "nordenskj":3, "nordenskjld":4, "nordic":2, "nordicity":4, "nordica":3, "norepinephrine":5, "norfolk":2, "norfolk island":4, "norfolk jacket":4, "norge":2, "norite":2, "noritic":3, "noricum":3, "norland":2, "norlene":2, "norma":2, "normal":2, "normal curve":3, "normal distribution":6, "normal matrix":4, "normal school":3, "normalcy":3, "normalise":3, "normalised":3, "normalising":4, "normalize":3, "normalized":3, "normalizing":4, "normality":4, "normally":3, "norman":2, "norman arch":3, "norman conquest":4, "norman english":4, "norman french":3, "norman-french":2, "normandy":3, "normanesque":3, "normanise":3, "normanize":3, "normanizer":4, "normative":3, "normatively":4, "normativeness":4, "normocyte":3, "normocytic":4, "normotensive":4, "norris":2, "norristown":3, "northam":2, "northerly":3, "northrop":2, "norton":2, "norvin":2, "norwalk":2, "norway":2, "norway lobster":4, "norway maple":4, "norway rat":3, "norway spruce":3, "norwegian":3, "norwegian sea":4, "norwich":2, "nos":1, "nos":1, "nose":1, "nosebag":2, "noseband":2, "nosebanded":3, "nosebleed":2, "nosegay":2, "nosepiece":2, "nosewheel":2, "nosewing":2, "nosh":1, "nosh-up":1, "nosher":2, "nosey":2, "nosing":2, "nosier":3, "nosiest":3, "nosily":3, "nosiness":3, "nosochthonography":6, "nosogenesis":5, "nosogenetic":5, "nosogeography":6, "nosogeographic":6, "nosological":5, "nosologically":6, "nostalgia":3, "nostalgic":3, "nostalgically":5, "nostalgy":3, "nostoc":2, "nostology":4, "nostologic":4, "nostomania":5, "nostradamic":4, "nostradamus":4, "nostril":2, "nostrum":2, "nosy":2, "nosy parker":4, "not":1, "not circuit":3, "not proven":3, "notch":1, "notchy":2, "note":1, "note value":3, "notes":1, "notes inegales":4, "notebook":2, "notecase":2, "noteless":2, "notelessly":3, "notelessness":3, "notelet":2, "notepaper":3, "notepaper":3, "noteworthily":4, "noteworthiness":4, "noteworthy":3, "nothing":2, "nothingness":3, "notts":1, "noted":2, "notedly":3, "notedness":3, "noting":2, "nottingham":3, "nottinghamshire":4, "notturno":3, "notwithstanding":4, "nouakchott":2, "nought":1, "noughts and crosses":4, "noughts-and-crosses":2, "noun":1, "nounally":3, "nourish":2, "nourishable":4, "nourisher":3, "nourishingly":4, "nourishment":3, "nous":1, "nougat":2, "nougatine":3, "noumenal":3, "noumenalism":4, "noumenalist":4, "noumenality":5, "noumenally":4, "noumenon":3, "nouma":4, "nouma":3, "nourice":2, "nouveau riche":3, "nouveau roman":4, "nouveaut":4, "nouvelle vague":3, "nouvelle-caldonie":5, "nouvelles":2, "nov":1, "novel":2, "novels":2, "novelese":3, "novelette":3, "novelettish":4, "novelise":3, "novelised":3, "novelist":3, "novelising":4, "novelistic":4, "novelistically":6, "novelize":3, "novelty":3, "novelvellas":4, "novelvelle":4, "novgorod":3, "novice":2, "now":1, "nowed":1, "nowt":1, "nowadays":3, "nowel":2, "nowell":2, "nowness":2, "nowy":2, "nox":1, "noxious":2, "noxiously":3, "noxiousness":3, "noyes":1, "noyau":2, "noyon":2, "nozzle":2, "noachic":3, "noah":2, "noachian":4, "nobel":2, "nobel prize":3, "nobelist":3, "nobelium":4, "nobiliary":5, "nobiliary particle":8, "nobility":4, "nobile":3, "noble":2, "noble art":3, "noble savage":4, "noble-minded":3, "noble-mindedly":4, "noble-mindedness":4, "noblesse":2, "noblesse oblige":4, "noblesville":3, "nobleman":3, "noblemanly":4, "nobleness":3, "noblewoman":4, "noblewomen":4, "nobody":3, "nobusuke":4, "nocardia":4, "nocent":2, "nociceptive":4, "nodose":2, "nodosity":4, "nodous":2, "nodus":2, "noe":2, "noel":2, "noel-baker":3, "noetic":3, "noetics":3, "noegenesis":5, "noegenetic":5, "noemi":3, "noesis":3, "nogales":3, "nogaku":3, "noguchi":3, "nohow":2, "nolan":2, "nolens volens":4, "noli-me-tangere":4, "nolo contendere":6, "noma":2, "nomad":2, "nomadic":3, "nomadise":3, "nomadism":3, "nomadize":3, "nomadically":5, "nomen":2, "nomenclator":4, "nomenclatorial":6, "nomenclature":4, "nomenclatural":5, "nomism":2, "nomistic":3, "nomocracy":4, "nomographer":4, "nomography":4, "nomologist":4, "nomology":4, "nomocanon":4, "nomura":3, "nona":2, "nona":2, "nonage":2, "nonagenarian":6, "nonary":3, "nonet":2, "nonillion":3, "nonillionth":3, "nono":2, "nopal":2, "nora":2, "noreen":2, "norene":2, "noria":3, "norodom sihanouk":6, "nosogeny":4, "nosographer":4, "nosography":4, "nosology":4, "nosographic":4, "nosographically":6, "nota bene":4, "notal":2, "notarial":4, "notarially":5, "notate":2, "notability":5, "notable":3, "notableness":4, "notably":3, "notarise":3, "notarize":3, "notarized":3, "notarizing":4, "notary":3, "notary public":5, "notaryship":4, "notation":3, "notational":4, "nothus":2, "notice":2, "notice board":3, "noticed":2, "noticeabili":5, "noticeable":4, "noticer":3, "noticing":3, "notion":2, "notions":2, "notional":3, "notionality":5, "notionally":4, "notionate":3, "notionless":3, "notitia":4, "notified":3, "notifiable":5, "notification":5, "notifier":4, "notify":3, "notifying":4, "notornis":3, "notour":2, "notochord":3, "notochordal":4, "notogaea":4, "notogaean":4, "notogea":4, "notorious":4, "notoriously":5, "notoriousness":5, "nototherium":5, "notoungulate":5, "notre dame":3, "notum":2, "notus":2, "nova":2, "nova lisboa":5, "nova scotia":4, "novaculite":4, "novachord":3, "novalis":3, "novara":3, "novation":3, "novato":3, "novaya zemlya":5, "novella":3, "novello":3, "november":3, "novemdecillionth":5, "novercal":3, "novena":3, "novi":2, "novi sad":3, "noviciate":4, "novitiate":4, "novotny":3, "novobiocin":5, "novocaine":3, "novocherkassk":4, "novokuznetsk":4, "novonikolaevsk":6, "novorossiisk":4, "novoshakhtinsk":4, "novosibirsk":4, "novum":2, "noway":2, "noways":2, "nowata":3, "nowhence":2, "nowhere":2, "nowhere-dense":2, "nowheres":2, "nowhither":3, "nowise":2, "noyade":2, "nomon":4, "npa":1, "npl":1, "nsb":1, "nsf":1, "nspcc":1, "nsw":1, "nth":1, "nth":1, "ntp":1, "nu-value":2, "nuaaw":1, "nub":1, "nubbin":2, "nubble":2, "nubblier":3, "nubbliest":3, "nubbly":2, "nude":1, "nudely":2, "nudeness":2, "nudge":1, "nudger":2, "nudging":2, "nuddy":2, "nudie":2, "nudism":2, "nudist":2, "nudnik":2, "nuevo laredo":5, "nuevo leon":4, "nuffield":2, "nuffield teaching project":6, "nugmw":1, "nuggar":2, "nugget":2, "nuggety":3, "nuisance":2, "nuj":1, "nuke":1, "null":1, "null hypothesis":5, "null-manifold":3, "nullarbor plain":4, "nulla-nulla":3, "nullah":2, "nullipara":4, "nulliparous":4, "nulliporous":4, "nullifidian":5, "nullified":3, "nullification":5, "nullificationist":6, "nullificator":5, "nullifier":4, "nullify":3, "nullifying":4, "nullipore":3, "nullity":3, "nullo":2, "num":1, "num":1, "num":1, "numb":1, "numbfish":2, "numbfishes":3, "numbing":2, "numbingly":3, "numbly":2, "numbness":2, "numbskull":2, "numis":1, "numism":1, "numbat":2, "number":2, "number line":3, "number off":3, "number one":3, "number ten":3, "number theory":5, "number work":3, "numbers":2, "numberable":4, "numberer":3, "numberless":3, "numberplate":3, "numbles":2, "numdah":2, "nummary":3, "nummular":3, "nummulite":3, "nummulitic":4, "numnah":2, "numskull":2, "nun":1, "nun":1, "nunc dimittis":4, "nunatak":3, "nunation":3, "nunciata":4, "nunciature":4, "nuncio":3, "nuncios":3, "nuncle":2, "nuncupative":4, "nuneaton":3, "nunhood":2, "nunlike":2, "nunnated":3, "nunnation":3, "nunneries":3, "nunnery":3, "nunny bag":3, "nunship":2, "nupe":1, "nuptial":2, "nuptials":2, "nur":1, "nurl":1, "nurse":1, "nurseling":2, "nursemaid":2, "nursery":2, "nursery rhyme":3, "nursery school":3, "nursery slopes":3, "nursery stakes":3, "nurserymaid":3, "nurseryman":3, "nurser":2, "nurseries":3, "nursery":3, "nurseryman":4, "nursing bottle":4, "nursing father":4, "nursing home":3, "nursing mother":4, "nursling":2, "nurmi":2, "nurture":2, "nurtured":2, "nurtureless":3, "nurturable":4, "nurturer":3, "nurturing":3, "nus":1, "nusku":2, "nut":1, "nut":1, "nut":1, "nuts":1, "nutbrown":2, "nutcase":2, "nutcracker":3, "nutgall":2, "nuthatch":2, "nuthouse":2, "nutlet":2, "nutley":2, "nutlike":2, "nutmeat":2, "nutmeg":2, "nutmegged":2, "nutpick":2, "nutshell":2, "nutted":2, "nutter":2, "nutting":2, "nutting":2, "nuttier":3, "nuttiest":3, "nuttily":3, "nuttiness":3, "nutty":2, "nutwood":2, "nux vomica":4, "nuzzle":2, "nuance":2, "nuances":3, "nuba":2, "nubecula":4, "nubile":2, "nubility":4, "nubia":3, "nubian":3, "nubian desert":5, "nubilous":3, "nubium":3, "nucellus":3, "nucha":2, "nuciform":3, "nuclear":3, "nuclear bomb":4, "nuclear energy":6, "nuclear family":6, "nuclear fission":5, "nuclear fuel":5, "nuclear fusion":5, "nuclear isomer":6, "nuclear magnetic resonance":9, "nuclear physics":5, "nuclear power":5, "nuclear reaction":6, "nuclear reactor":6, "nuclease":3, "nucleate":3, "nucleated":4, "nucleating":4, "nucleation":4, "nucleator":4, "nuclei":3, "nucleic acid":5, "nuclein":3, "nucleole":3, "nucleon":3, "nucleon number":5, "nucleonics":4, "nucleolar":4, "nucleolate":4, "nucleolated":5, "nucleoloid":4, "nucleolus":4, "nucleophilic":5, "nucleoplasm":4, "nucleoplasmatic":6, "nucleoplasmic":5, "nucleoprotein":5, "nucleoside":4, "nucleosidase":5, "nucleotide":4, "nucleotidase":5, "nucleus":3, "nuclide":2, "nudibranch":3, "nudibranchian":5, "nudicaul":3, "nudicaulous":4, "nudity":3, "nudum pactum":4, "nueces":3, "nufud":2, "nugae":2, "nugatory":4, "nugent":2, "nuku'alofa":5, "nukus":2, "numa pompilius":6, "numantia":4, "numanus":3, "numen":2, "numeral":3, "numerary":4, "numerate":3, "numerated":4, "numerating":4, "numerable":4, "numeration":4, "numerator":4, "numeric":3, "numerical":4, "numerical analysis":8, "numerically":5, "numericalness":5, "numerology":5, "numerous":3, "numerously":4, "numerousness":4, "numerosity":5, "numidia":4, "numidian":4, "numidian crane":5, "numismatics":4, "numismatically":6, "numismatist":4, "numismatologist":6, "numismatology":6, "numina":3, "numinous":3, "numitor":3, "nunu":2, "nupe":2, "nupercaine":3, "nuraghe":3, "nuremberg":3, "nureyev":3, "nuri":2, "nuristan":3, "nusa tenggara":5, "nutant":2, "nutation":3, "nutational":4, "nutria":3, "nutrient":3, "nutrilite":3, "nutriment":3, "nutrimental":4, "nutrition":3, "nutritionist":4, "nutritious":3, "nutritiously":4, "nutritiousness":4, "nutritive":3, "nutritively":4, "nutritiveness":4, "nwt":1, "nyanja":2, "nyanza":2, "nyassa":2, "nyala":2, "nyasaland":3, "nyaya":2, "nyc":1, "nyckelharpa":4, "nyctalgia":3, "nyctaginaceous":5, "nyctalopia":5, "nycteus":3, "nyctimene":4, "nyctitropism":4, "nyctimus":3, "nyctinasty":4, "nyctitropic":4, "nyctophobia":5, "nydia":3, "nye":1, "nye":1, "nyeman":2, "nyerere":3, "nylghai":2, "nylghau":2, "nymph":1, "nymphet":2, "nympha":2, "nymphaea":3, "nymphaeaceous":4, "nymphaeum":3, "nymphal":2, "nymphalid":3, "nymphean":3, "nympho":2, "nympholept":3, "nympholepsy":4, "nymphomania":5, "nymphomaniac":5, "nymphomaniacal":6, "nymwegen":3, "nyoro":2, "nystagmic":3, "nystagmus":3, "nystatin":3, "nyx":1, "nyregyhza":6, "nyack":2, "nyasa":3, "nyasaland":4, "nyassa":3, "nykobing":3, "nylon":2, "nylons":2, "nynorsk":2, "nyregyhza":4, "nysa":2, "nyseides":4, "nytril":2, "nzbc":1, "nvpaktos":4, "nthou":3, "nggerath":4, "nberg":2, "npaktos":3, "nv":2, "o henry":3, "o level":3, "o'casey":2, "o'clock":1, "o'connell":2, "o'connor":2, "o'donovan":3, "o'er":1, "o'fallon":2, "o'faolin":3, "o'flaherty":3, "o'hara":2, "o'higgins":2, "o'kelley":2, "o'neill":1, "o-o":1, "o-wave":1, "o/c":1, "oaf":1, "oafish":2, "oafishly":3, "oak":1, "oak apple":3, "oaks":1, "oakdale":2, "oaken":2, "oakham":2, "oakland":2, "oakley":2, "oaklyn":2, "oakmont":2, "oakmoss":2, "oakville":2, "oap":1, "oar":1, "oared":1, "oars":1, "oarsman":2, "oarfish":2, "oarfishes":3, "oarless":2, "oarlike":2, "oarlock":2, "oas":1, "oast":1, "oat":1, "oates":1, "oath":1, "oatcake":2, "oaten":2, "oater":2, "oatmeal":2, "oau":1, "oakum":2, "oaxaca":3, "obad":1, "obb":1, "obdt":1, "obe":1, "obj":1, "obl":1, "obs":1, "obstet":1, "obttropistic":3, "obclavate":3, "obconic":3, "obconical":4, "obcordate":3, "obcuneate":4, "obduce":3, "obdurate":3, "obelise":3, "obelised":3, "obelisk":3, "obeliscal":4, "obelising":4, "obeliskoid":4, "obelize":3, "obelized":3, "obelizing":4, "obelus":3, "obfuscate":3, "obfuscated":4, "obfuscating":4, "obfuscation":4, "obit":2, "obiter dictum":5, "object":2, "object ball":3, "object glass":3, "object language":4, "object lesson":4, "object program":4, "objectlessly":4, "objectlessness":4, "objection":3, "objectionability":7, "objectionable":5, "objectionableness":6, "objectionably":5, "objective":3, "objective genitive":6, "objective point":4, "objectively":4, "objectiveness":4, "objectivism":4, "objectivist":4, "objectivize":4, "objectivized":4, "objectivizing":5, "objectivity":5, "objectify":4, "objectivistic":5, "objector":3, "objekt":2, "objet d'art":3, "objet trouv":4, "objurgate":3, "objurgated":4, "objurgating":4, "objurgalasti":5, "objurgation":4, "objurgative":4, "objurgator":4, "objurgatorily":6, "objurgatory":5, "oblanceolate":5, "oblast":2, "oblate":2, "oblately":3, "oblation":3, "oblatory":4, "obligatorily":6, "obligatoriness":6, "obligatory":5, "oblique":2, "obliquely":3, "obliquity":4, "obliterate":4, "obliterable":5, "obliteration":5, "obliterative":5, "oblivion":4, "oblivious":4, "obliviously":5, "obliviousness":5, "obligate":3, "obligable":4, "obligation":4, "obligato":4, "obligator":4, "obligee":3, "obligor":3, "oblivescence":4, "oblong":2, "oblongata":4, "oblongish":3, "oblongly":3, "oblongness":3, "obloquy":3, "obmutescence":4, "obnounce":2, "obnounced":2, "obnouncing":3, "obnoxious":3, "obnoxiously":4, "obnoxiousness":4, "obnubilate":4, "obol":2, "obole":2, "obolus":3, "obovate":3, "obovoid":3, "obpyriform":4, "obreption":3, "obreptitious":4, "obreptitiously":5, "obrogation":4, "obscene":2, "obscenity":4, "obscure":2, "obscureness":3, "obscurant":3, "obscuredly":4, "obscurum per obscurius":8, "obscurant":3, "obscurantism":4, "obscurantist":4, "obscuration":4, "obscurity":4, "observe":2, "observed":2, "observance":3, "observantly":4, "observability":6, "observable":4, "observableness":5, "observably":4, "observatory":5, "observedly":4, "observer":3, "observership":4, "observing":3, "observingly":4, "observance":3, "observant":3, "observantine":4, "observation":4, "observation car":5, "observation post":5, "observatory":5, "obsess":2, "obsession":3, "obsessional":4, "obsessive":3, "obsecrate":3, "obsecrated":4, "obsecrating":4, "obsecration":4, "obsequence":3, "obsequent":3, "obsequeence":4, "obsequies":3, "obsequious":4, "obsidian":4, "obsolesce":3, "obsolesced":3, "obsolescing":4, "obsolescent":4, "obsolescently":5, "obsolete":3, "obsoletely":4, "obsoleteness":4, "obsoleted":4, "obsoleting":4, "obstacle":3, "obstacle race":4, "obstetric":3, "obstetrics":3, "obstetrical":4, "obstetrically":5, "obstetrician":4, "obstinate":3, "obstinately":4, "obstinateness":4, "obstinacy":4, "obstipant":3, "obstipation":4, "obstreperous":4, "obstreperously":5, "obstreperousness":5, "obstreperosity":6, "obstruct":2, "obstructedly":4, "obstructer":3, "obstructingly":4, "obstruction":3, "obstructionism":4, "obstructionist":4, "obstructionistic":5, "obstructive":3, "obstructively":4, "obstructiveness":4, "obstructivity":5, "obstructor":3, "obstruent":3, "obtain":2, "obtaining by deception":7, "obtect":2, "obtected":3, "obtest":2, "obtestation":4, "obtrude":2, "obtruded":3, "obtruder":3, "obtruding":3, "obtrusive":3, "obtrusively":4, "obtrusiveness":4, "obtund":2, "obtundent":3, "obtundity":4, "obtuse":2, "obtuse-angled":3, "obtuse-angular":4, "obturate":3, "obturated":4, "obturating":4, "obturation":4, "obturator":4, "obumbrant":3, "obumbrate":3, "obumbrated":4, "obumbrating":4, "obumbration":4, "obverse":2, "obvert":2, "obversion":3, "obviate":3, "obviated":4, "obviating":4, "obviable":4, "obvious":3, "obviously":4, "obviousness":4, "obvolute":3, "obvolution":4, "obvolutive":4, "obwalden":3, "ocam":1, "occas":1, "oceanog":1, "och":1, "ochimus":3, "ochlesis":3, "ochlocracy":4, "ochlocrat":3, "ochlocratic":4, "ochlocratical":5, "ochlocratically":6, "ochlophobist":4, "ochlophobia":5, "ochone":2, "ochozath":3, "ochozias":4, "ochrea":3, "ockenheim":3, "ocker":2, "ockeghem":3, "ockham":2, "ockham's razor":4, "ocr":1, "oct":1, "oct":1, "octu":1, "ocarina":4, "occam":2, "occam's razor":4, "occamism":3, "occamist":3, "occamistic":4, "occamite":3, "occasion":3, "occasions":3, "occasional":4, "occasional licence":6, "occasional table":6, "occasionalism":5, "occasionalistic":6, "occasionality":6, "occasionally":5, "occasionalness":5, "occipita":4, "occipital":4, "occipital bone":5, "occipital lobe":5, "occident":3, "occident":3, "occidental":4, "occidentalise":5, "occidentalised":5, "occidentalism":5, "occidentalist":5, "occidentalising":6, "occidentalize":5, "occidentalized":5, "occidentalizing":6, "occidentality":6, "occidentalization":7, "occidentally":5, "occiput":3, "occiputs":3, "occleve":2, "occlude":2, "occluded":3, "occluded front":4, "occludent":3, "occluding":3, "occlusal":3, "occlusion":3, "occlusive":3, "occlusiveness":4, "occult":2, "occulter":3, "occultism":3, "occultist":3, "occultly":3, "occultness":3, "occultation":4, "occur":2, "occurred":2, "occurrence":3, "occurrent":3, "occurring":3, "occupant":3, "occupancy":4, "occupation":4, "occupation franchise":6, "occupational":5, "occupational psychology":9, "occupational therapy":8, "occupationally":6, "occupationless":5, "occupative":4, "occupiable":5, "occupier":4, "occupy":3, "ocellate":3, "ocellated":4, "ocellation":4, "ocelot":3, "ocnus":2, "ocrea":3, "ocreae":3, "ocreate":3, "octad":2, "octadic":3, "octagonal":4, "octagonally":5, "octal":2, "octal notation":5, "octamerous":4, "octameter":4, "octan":2, "octane":2, "octane number":4, "octanedioic acid":7, "octans":2, "octant":2, "octangle":3, "octangular":4, "octangularness":5, "octantal":3, "octarchy":3, "octave":2, "octave":2, "octave coupler":4, "octachord":3, "octachordal":4, "octagon":3, "octahedral":4, "octahedrite":4, "octahedron":4, "octaroon":3, "octastyle":3, "octastylos":4, "octateuch":3, "octaval":3, "octavalent":4, "octavia":4, "octavian":4, "octavius":4, "octavo":3, "octennial":4, "octennially":5, "octet":2, "octette":2, "octillion":3, "octillionth":3, "octode":2, "octogenary":5, "october":3, "october revolution":7, "octobrist":3, "octocentenary":6, "octodecimo":5, "octodecillion":5, "octodecillionth":5, "octofoil":3, "octogenarian":6, "octogenarianism":7, "octonaries":4, "octonary":4, "octopi":3, "octopod":3, "octopus":3, "octopuses":4, "octoroon":3, "octosyllable":5, "octroi":2, "octupcated":4, "octupcating":4, "octupkit":3, "octuplet":3, "octuple":3, "ocular":3, "ocularist":4, "oculist":3, "oculistic":4, "oculomotor":5, "oculomotor nerve":6, "oculus":3, "odd":1, "odd":1, "odd-jobber":2, "odd-jobman":2, "odd-pinnate":2, "odds":1, "odds-on":1, "oddball":2, "oddfellow":3, "oddity":3, "oddly":2, "oddment":2, "oddness":2, "oddside":2, "ode":1, "odm":1, "odsbodkins":3, "odic":2, "odontalgia":5, "odontology":5, "odoacer":4, "odovacar":4, "odra":2, "odyl":2, "odyle":2, "odylism":3, "odylist":3, "odyssey":3, "oecd":1, "oecological":5, "oed":1, "oedipal":3, "oedipean":4, "oedipus":3, "oeec":1, "oehlenschlger":4, "oeillade":2, "oeillades":2, "oelwein":2, "oersted":2, "oersted":2, "oestradiol":4, "oestrin":2, "oestriol":3, "oestrone":2, "oestrous":2, "oestrous cycle":4, "oestrogen":3, "oestrus":2, "oeuvre":2, "oeuvres":2, "oeax":2, "oeagrus":3, "oebalus":3, "oeci":2, "oecology":4, "oecus":2, "oecumenic":4, "oecumenical":5, "oedema":3, "oedemata":4, "oedipus":3, "oedipus complex":5, "oeneus":3, "oeno":2, "oenochoe":4, "oenologist":4, "oenology":4, "oenopides":4, "oenomaus":4, "oenomel":3, "oenone":3, "oenopion":4, "oeonus":3, "oesel":2, "oesophageal":5, "oesophagus":4, "off":1, "off color":3, "off limits":3, "off season":3, "off the record":4, "off-broadway":2, "off-center":2, "off-centered":2, "off-centre":2, "off-color":2, "off-limits":2, "off-licence":2, "off-license":2, "off-off-broadway":2, "off-putting":2, "off-season":2, "off-sider":2, "off-year election":4, "offbeat":2, "offcast":2, "offhand":2, "offish":2, "offishly":3, "offishness":3, "offlap":2, "offor":2, "offprint":2, "offscouring":3, "offscreen":2, "offset":2, "offsetting":3, "offshoot":2, "offshore":2, "offside":2, "offsider":3, "offspring":2, "offstage":2, "offtake":2, "ofm":1, "ofs":1, "oft":1, "ofttimes":2, "offa":2, "offal":2, "offaly":3, "offence":2, "offenceless":3, "offend":2, "offendable":4, "offendedly":4, "offendedness":4, "offender":3, "offendible":4, "offense":2, "offenseless":3, "offenselessly":4, "offenbach":3, "offensive":3, "offensively":4, "offensiveness":4, "offer":2, "offer":2, "offer price":3, "offerable":4, "offerer":3, "offering":3, "offeror":3, "offertorial":5, "offertory":4, "office":2, "office bearer":4, "office block":3, "office boy":3, "office hours":3, "officeholder":4, "officeless":3, "officer":3, "officer of arms":5, "officinal":4, "officinally":5, "offing":2, "offish":2, "officerial":5, "official":3, "official":3, "official referee":6, "official receiver":6, "official solicitor":7, "officialdom":4, "officialese":4, "officialise":4, "officialised":4, "officialism":4, "officialising":5, "officialize":4, "officialized":4, "officializing":5, "officialization":6, "officially":4, "officious":3, "officiously":4, "officiousness":4, "officiant":4, "officiary":5, "officiate":4, "officiated":5, "officiating":5, "officiation":5, "officiator":5, "often":2, "oftenness":3, "ogo":1, "ogam":2, "ogaden":3, "ogbomosho":4, "ogburn":2, "ogden":2, "ogdoad":3, "ogham":2, "ogham irish":4, "ogma":2, "ogmios":3, "ogpu":2, "ogygus":3, "ohg":1, "ohio":2, "ohm":1, "ohm":1, "ohmage":2, "ohmmeter":3, "ohv":1, "ohlenschlger":4, "oik":1, "oil":1, "oil beetle":3, "oil of turpentine":5, "oil of vitriol":5, "oil painting":3, "oil rivers":3, "oil varnish":3, "oil-gilding":2, "oilbird":2, "oilcan":2, "oilcloth":2, "oilcup":2, "oiler":2, "oilfield":2, "oilfired":2, "oilfish":2, "oilfishes":3, "oilier":3, "oiliest":3, "oiliness":3, "oilless":2, "oillessness":3, "oillike":2, "oilman":2, "oilseed":2, "oilskin":2, "oilstone":2, "oily":2, "oink":1, "ointment":2, "oireachtas":3, "oise":1, "oinochoai":4, "oinochoe":4, "oinochoes":4, "oireachtas":3, "oisin":2, "oistrakh":2, "oita":2, "oiticica":4, "oke":1, "okla":1, "okeghem":3, "oklahoma":4, "okta":2, "oktastylos":4, "old":1, "old age pension":4, "old bailey":3, "old boy network":4, "old bulgarian":5, "old castile":3, "old catholic":4, "old church slavonic":5, "old country":3, "old delhi":3, "old english":3, "old english sheepdog":5, "old frisian":3, "old glory":3, "old harry":3, "old high german":4, "old icelandic":4, "old irish":3, "old kingdom":3, "old latin":3, "old lady":3, "old low german":4, "old master":3, "old northwest":3, "old persian":3, "old pretender":4, "old prussian":3, "old saxon":3, "old slavonic":4, "old soldier":3, "old stager":3, "old testament":4, "old woman":3, "old world monkey":4, "old-established":3, "old-fashioned":2, "old-fashionedness":3, "old-fogeyish":3, "old-fogyish":3, "old-timer":2, "old-womanishness":4, "old-worldliness":3, "old-worldly":2, "oldcastle":3, "olde-worlde":3, "olden":2, "older":2, "oldest":2, "oldfangled":3, "oldham":2, "oldie":2, "oldster":2, "oldstyle":2, "oldwife":2, "olg":1, "olm":1, "olmsted":2, "olbers":2, "olcott":2, "oldenburg":3, "olduvai gorge":4, "olericulture":5, "olericultural":6, "olericulturally":7, "olericulturist":6, "olfaction":3, "olfactoreceptor":6, "olfactorily":5, "olfactory":4, "olfactory bulb":5, "olfactory nerve":5, "olfactory tract":5, "olga":2, "olid":2, "olive":2, "olive":2, "olive branch":3, "olive brown":3, "olive crown":3, "olive drab":3, "olive green":3, "olive oil":3, "olive-green":2, "olives":2, "oligarch":3, "oligarchic":4, "oligarchical":5, "oligarchically":6, "oligarchy":4, "oligophagous":5, "oligopolistic":6, "oligopoly":5, "oligopsonistic":6, "oligopsony":5, "oligotrophy":5, "oligocarpous":5, "oligocene":4, "oligochaete":4, "oligochaeta":5, "oligochaetous":5, "oligoclase":4, "oligocythemia":6, "oligophrenic":5, "oligophrenia":6, "oligosaccharide":6, "oligotrophic":5, "oliguretic":5, "oliguresis":5, "oliguria":5, "oliphant":3, "olivary":4, "olivaceous":4, "oliver":3, "olivet":3, "olivet":3, "olivette":3, "olivette":3, "olivine":3, "olla":2, "olla podrida":5, "olla-podrida":4, "ollen":2, "ollie":2, "olm":2, "olney":2, "ology":3, "olpe":2, "olszyn":3, "olwen":2, "omelet":2, "omelette":2, "oms":1, "omsk":1, "omadhaun":3, "omber":2, "ombre":2, "ombrellino":4, "ombudsman":3, "omdurman":3, "omelet":3, "omelette":3, "ominous":3, "ominously":4, "ominousness":4, "ommatophore":4, "ommateal":4, "ommatidia":5, "ommatidial":5, "ommatidium":5, "ommatophorous":5, "ommiad":3, "ommiads":3, "ommiades":4, "omni":2, "omnific":3, "omnificence":4, "omnificent":4, "omnipotence":4, "omnipotent":4, "omnipotently":5, "omniscience":3, "omniscient":3, "omnisciently":4, "omniscient":4, "omnivorous":4, "omnivorously":5, "omnivorousness":5, "omnibearing":4, "omnibus":3, "omnibuses":4, "omnicompetent":5, "omnidistance":4, "omnidirectional":6, "omnifarious":5, "omnigraph":3, "omnipresent":4, "omnirange":3, "omnium-gatherum":5, "omnivore":3, "omphalocele":4, "omphale":3, "omphalos":3, "omphaloskepsis":5, "omplex number":4, "omri":2, "on-limits":2, "on-line":1, "once":1, "once-over":2, "oncer":2, "ondes martenot":4, "one":1, "one another":4, "one thousand guineas":5, "one-acter":2, "one-armed bandit":3, "one-handed":2, "one-ideaed":3, "one-lunger":2, "one-man":1, "one-many":2, "one-nighter":2, "one-off":1, "one-piecer":2, "one-sided":2, "one-sidedly":3, "one-sidedness":3, "one-two":1, "one-up":1, "one-upmanship":3, "one-way ticket":3, "oneness":2, "oneself":2, "onslow":2, "ont":1, "onager":3, "onagraceous":4, "onalaska":4, "oncogenous":4, "oncology":4, "oncoming":3, "oncost":2, "oncotic":3, "oncogenic":4, "oncologic":4, "oncosis":3, "ondine":2, "onding":2, "ondo":2, "ondometer":4, "ondogram":3, "ondograph":3, "ondoscope":3, "oner":2, "onerous":3, "onerously":4, "onerousness":4, "ongoing":3, "onion":2, "onion dome":3, "onions":2, "onionlike":3, "onionskin":3, "oniony":3, "onicism":3, "onker":2, "onlaid":2, "onlap":2, "onlay":2, "onlaying":3, "onlooker":3, "only":2, "only-begotten":4, "onondaga":4, "onondagan":4, "onomastic":4, "onomastics":4, "onomatologic":6, "onomatologically":8, "onomatopoeia":6, "onomatopoeically":8, "onomatopoetically":9, "onomasiology":7, "onomatologist":6, "onomatology":6, "onrush":2, "onrushing":3, "onset":2, "onshore":2, "onside":2, "onslaught":2, "onstage":2, "ontaric":3, "ontarian":4, "ontario":4, "onto":2, "ontogenist":4, "ontogeny":4, "ontologise":4, "ontologised":4, "ontologism":4, "ontologist":4, "ontologising":5, "ontology":4, "ontogenesis":5, "ontogenically":6, "ontogenetic":5, "ontogenetically":7, "ontological":5, "ontological argument":8, "onward":2, "onwards":2, "onyx":2, "onychophoran":5, "onychophagia":5, "onymous":3, "oof":1, "ooh":1, "oomph":1, "oompah":2, "oont":1, "oops":1, "oos":1, "oose":1, "oost":1, "oostende":3, "ooze":1, "ooze leather":3, "oozing":2, "oozier":3, "ooziest":3, "oozy":2, "oodles":2, "oolachan":3, "oolong":2, "oomiac":3, "oomiak":3, "oona":2, "oonagh":2, "oory":2, "ope":1, "opec":1, "ophite":2, "ophiuchus":3, "ophicleide":3, "ophicleidean":5, "ophiolater":5, "ophiolatrous":5, "ophiolatry":5, "ophiologist":5, "ophiology":5, "ophiological":6, "ophiuchus":4, "ophthalmic":3, "ophthalmitic":4, "ophthalmia":4, "ophthalmiac":4, "ophthalmitis":4, "ophthalmologist":5, "ophthalmology":5, "ophthalmometer":5, "ophthalmometry":5, "ophthalmoscopist":5, "ophthalmoscopy":5, "ophthalmodynamometer":8, "ophthalmological":6, "ophthalmometric":5, "ophthalmoscope":4, "ophthalmoscopic":5, "opp":1, "opp":1, "ops":1, "opt":1, "opcode":2, "openglopish":4, "opera":3, "opera cloak":4, "opera glasses":5, "opera hat":4, "opera house":4, "operand":3, "operant":3, "operant conditioning":7, "operate":3, "operatable":5, "operatic":4, "operating table":6, "operating theatre":7, "operability":6, "operable":4, "operably":4, "operation":4, "operations research":6, "operations room":5, "operational":5, "operationalism":6, "operationism":5, "operatise":4, "operative":4, "operatively":5, "operativeness":5, "operativity":6, "operatize":4, "operator":4, "operetta":4, "operettist":4, "operon":3, "operose":3, "operosely":4, "operoseness":4, "opelousas":4, "oping":2, "opisthodomos":5, "opisthodomoses":6, "opisthognathism":5, "opisthognathous":5, "opodeldoc":4, "oppenheim":3, "oppenheimer":4, "oppenheimer":4, "oppidan":3, "oppilate":3, "oppilated":4, "oppilating":4, "oppilation":4, "opportune":3, "opportunely":4, "opportuneness":4, "opportunism":4, "opportunist":4, "opportunistic":5, "opportunistically":7, "opportunity":5, "opportunity cost":6, "oppose":2, "opposability":6, "opposable":4, "opposer":3, "opposingly":4, "opponent":3, "opponency":4, "opposite":3, "opposite number":5, "opposite prompt":4, "opposite sex":4, "oppositely":4, "oppositeness":4, "opposition":4, "oppositional":5, "oppositionary":6, "oppositionless":5, "oppress":2, "oppression":3, "oppressive":3, "oppressively":4, "oppressiveness":4, "oppressible":4, "oppressor":3, "opprobrious":4, "opprobriously":5, "opprobriousness":5, "opprobrium":4, "oppugn":2, "oppugner":3, "oppugnant":3, "opsin":2, "opsimath":3, "opsonic":3, "opsonic index":5, "opsonify":4, "opsonin":3, "opsonise":3, "opsonize":3, "opsonized":3, "opsonizing":4, "opsonoid":3, "optative":3, "optatively":4, "opterous":3, "optic":2, "optic axis":4, "optic disc":3, "optic nerve":3, "optic thalamus":5, "optics":2, "opticly":3, "option":2, "optional":3, "optionality":5, "optionally":4, "optionee":3, "optical":3, "optical activity":7, "optical bench":4, "optical character reader":8, "optical crown":4, "optical density":6, "optical double star":6, "optical flint":4, "optical glass":4, "optical illusion":6, "optical isomerism":7, "optical maser":5, "optical rotation":6, "optician":3, "opticist":3, "optimal":3, "optime":3, "optimise":3, "optimism":3, "optimist":3, "optimistic":4, "optimistical":5, "optimistically":6, "optimize":3, "optimized":3, "optimizing":4, "optimization":5, "optimum":3, "optometer":4, "optometrist":4, "optometry":4, "optometrical":5, "optotype":3, "opulence":3, "opulent":3, "opulently":4, "opulency":4, "orb":1, "orc":1, "orch":1, "ord":1, "ordn":1, "ordnance":2, "ordnance datum":4, "ordnance survey":4, "ore":1, "ore dressing":3, "oreg":1, "oreshoot":2, "orfe":1, "orff":1, "org":1, "orig":1, "orkney islands":4, "orkneys":2, "orle":1, "orne":1, "ornith":1, "orrville":2, "orsk":1, "orth":1, "orts":1, "ortler":2, "ortles":2, "orach":2, "orache":2, "orange":2, "orange":2, "orange blossom":4, "orange chromide":4, "orange flower water":6, "orange free state":4, "orange pekoe":4, "orange stick":3, "orange-tip":2, "orangeade":3, "orangeburg":3, "orangeism":3, "orangeist":3, "orangeman":3, "orangeman's day":4, "orangery":3, "orangewood":3, "orangery":4, "orangey":3, "orangy":3, "orabel":3, "oracle":3, "oracles":3, "oracy":3, "orator":3, "oratorical":5, "oratorically":6, "oratorlike":4, "oratorship":4, "oratorian":5, "oratorio":5, "oratorios":5, "oratory":4, "oratory":4, "oratrix":3, "oratrices":4, "orbicular":4, "orbicularity":6, "orbicularly":5, "orbicularness":5, "orbiculate":4, "orbiculately":5, "orbiculated":5, "orbiculation":5, "orbit":2, "orbital":3, "orbital velocity":7, "orbitary":4, "orbicularis":5, "orbiculares":5, "orbitale":4, "orca":2, "orcadian":4, "orcein":3, "orchard":2, "orchard bush":3, "orchardman":3, "orchardist":3, "orchectomy":4, "orchestra":3, "orchestral":3, "orchestrally":4, "orchestrate":3, "orchestrated":4, "orchestrater":4, "orchestrating":4, "orchestraless":4, "orchestration":4, "orchestrator":4, "orchestrina":4, "orchestrion":4, "orchid":2, "orchidologist":5, "orchidology":5, "orchil":2, "orchis":2, "orchitic":3, "orchidaceous":4, "orchidectomy":5, "orchiditis":4, "orchidotomy":5, "orchiectomy":5, "orchitis":3, "orchotomy":4, "orcin":2, "orcinol":3, "orcus":2, "orczy":2, "ordain":2, "ordainable":4, "ordainer":3, "ordainment":3, "ordeal":2, "order":2, "order arms":3, "order about":4, "order in council":5, "order of merit":5, "order paper":4, "orderly":3, "orderly officer":6, "orderly room":4, "ordinaire":3, "ordinal":3, "ordinal number":5, "ordinally":4, "ordinance":3, "ordinand":3, "ordinariate":5, "ordinarily":5, "ordinary":4, "ordinary level":6, "ordinary ray":5, "ordinary seaman":6, "ordinary shares":5, "ordinate":3, "ordination":4, "ordines":3, "ordo":2, "ordonnance":3, "ordonnances":4, "ordovician":5, "ordure":2, "ordurous":3, "ordzhonikidze":5, "ordzhonikidze":5, "oregon":3, "oregon fir":4, "oregon grape":4, "oregon trail":4, "oregonian":5, "orfeo":3, "orfray":2, "organ":2, "organ screen":3, "organ-grinder":3, "organdie":3, "organdy":3, "organelle":3, "organic":3, "organic chemistry":6, "organic disease":5, "organise":3, "organised":3, "organism":3, "organist":3, "organisable":5, "organiser":4, "organising":4, "organismal":4, "organismic":4, "organismically":6, "organize":3, "organized":3, "organizability":7, "organizable":5, "organizer":4, "organizing":4, "organically":5, "organicalness":5, "organicism":4, "organicist":4, "organicismal":5, "organicistic":5, "organisation":5, "organisational":6, "organisationally":7, "organization":5, "organization man":6, "organizational":6, "organizationally":7, "organography":5, "organology":5, "organogenesis":6, "organoleptic":5, "organometallic":6, "organotherapy":6, "organza":3, "organzine":3, "orgasm":2, "orgasmic":3, "orgastic":3, "organa":3, "organelle":3, "organicity":5, "organographist":5, "organography":5, "organologist":5, "organology":5, "organon":3, "organogenesis":6, "organographic":5, "organologic":5, "organomagnesium":7, "organometallic":6, "organosiloxane":6, "organotherapeutics":7, "organotherapy":6, "organum":3, "orgeat":2, "orgulous":3, "orgy":2, "oriskanian":5, "orichalcum":4, "orienteering":5, "orifice":3, "oriflamme":3, "origan":3, "origen":3, "origenism":4, "origenist":4, "origenistic":5, "origenian":5, "origin":3, "orionis":4, "orison":3, "orjonikidze":5, "orjonikidze":5, "orkhon":2, "orland":2, "orlando":3, "orlet":2, "orleanism":4, "orleanist":4, "orlich":2, "orlin":2, "orlo":2, "orlon":2, "orlop":2, "orlop deck":3, "orly":2, "orlans":4, "orlanais":5, "orlans":3, "orlanais":4, "ormandy":3, "ormazd":2, "ormer":2, "ormond":2, "ormolu":3, "ormuz":2, "ormuzd":2, "ornate":2, "ornately":3, "ornateness":3, "ornament":3, "ornamented":4, "ornamental":4, "ornamentality":6, "ornamentally":5, "ornamentation":5, "orneriness":4, "ornery":3, "orneus":3, "ornis":2, "ornithic":3, "ornithischian":5, "ornithes":3, "ornithine":3, "ornithischian":5, "ornithoid":3, "ornithologist":5, "ornithology":5, "ornithopter":4, "ornithoscopy":5, "ornithological":6, "ornithologically":7, "ornithomancy":5, "ornithopod":4, "ornithorhynchus":5, "ornithosis":4, "orobanchaceous":5, "orogenic":4, "orographic":4, "orological":5, "orometric":4, "orotund":3, "orphan":2, "orphanage":3, "orphanhood":3, "orpharion":4, "orphean":3, "orpheus":3, "orphic":2, "orphism":2, "orphist":2, "orphically":4, "orphrey":2, "orphreyed":2, "orpin":2, "orpine":2, "orpington":3, "orpiment":3, "orreries":3, "orrery":3, "orrery":3, "orrespond":3, "orrice":2, "orrin":2, "orris":2, "orrisroot":3, "orrow":2, "orseille":2, "orsini":3, "ortanique":3, "ortega y gasset":6, "ortegal":3, "orthaea":3, "orthia":3, "orthicon":3, "orthiconoscope":5, "ortho":2, "ortho-cousin":3, "ortho-xylene":3, "orthognathic":4, "orthognathous":4, "orthogonal":4, "orthogonal matrix":6, "orthogonalize":5, "orthogonalized":5, "orthogonalizing":6, "orthogonality":6, "orthogonalization":7, "orthogonally":5, "orthographer":4, "orthographise":4, "orthographised":4, "orthographising":5, "orthographize":4, "orthographized":4, "orthographizing":5, "orthography":4, "orthopnea":4, "orthopneic":4, "orthopnoea":4, "orthopnoeic":4, "orthopter":3, "orthoptera":4, "orthopteran":4, "orthopteron":4, "orthopterous":4, "orthoptic":3, "orthoptics":3, "orthostates":4, "orthostichous":4, "orthostichy":4, "orthotropism":4, "orthotropous":4, "orthoboric acid":6, "orthocenter":4, "orthocentre":4, "orthocephalous":5, "orthocephaly":5, "orthocephalic":5, "orthochromatic":5, "orthoclase":3, "orthoclastic":4, "orthodontia":4, "orthodontic":4, "orthodontics":4, "orthodontist":4, "orthodontia":5, "orthodox":3, "orthodox":3, "orthodox church":4, "orthodox judaism":6, "orthodoxies":4, "orthodoxness":4, "orthodoxy":4, "orthoepy":4, "orthoepy":4, "orthogenesis":5, "orthogenic":4, "orthogenetic":5, "orthographic":4, "orthographical":5, "orthographically":6, "orthohydrogen":5, "orthomorphic":4, "orthopaedic":4, "orthopaedics":4, "orthopaedist":4, "orthopaedically":6, "orthopaedy":4, "orthopedic":4, "orthopedics":4, "orthopedist":4, "orthopedically":6, "orthopedy":4, "orthophosphate":4, "orthophosphoric":5, "orthophosphoric acid":7, "orthophosphorous acid":7, "orthophyric":4, "orthopraxia":5, "orthopraxy":4, "orthopsychiatry":6, "orthorhombic":4, "orthoscope":3, "orthoscopic":4, "orthoselection":5, "orthostat":3, "orthostyle":3, "orthotone":3, "orthotropic":4, "orthopy":5, "orthros":2, "orthrus":2, "ortonville":3, "ortolan":3, "orvieto":3, "orville":2, "orvieto":4, "orwell":2, "oryx":2, "osa":1, "osb":1, "osd":1, "osf":1, "oshawa":3, "ost":1, "ostend":2, "ostler":2, "ostmark":2, "ostpreussen":3, "ostwald":2, "osbert":2, "osborn":2, "osborne":2, "oscan":2, "oscar":2, "oscar":2, "oscar ii":3, "oscillate":3, "oscillated":4, "oscillating":4, "oscillating universe theory":10, "oscillation":4, "oscillator":4, "oscillatory":5, "oscillometry":5, "oscillogram":4, "oscillograph":4, "oscillometric":5, "oscilloscope":4, "oscine":2, "oscitance":3, "oscitant":3, "oscitancy":4, "osco-umbrian":4, "osculant":3, "oscular":3, "osculate":3, "osculated":4, "osculating":4, "osculation":4, "osculatory":5, "osculum":3, "osgood":2, "oskar":2, "osler":2, "oslo":2, "osman i":3, "osmanli":3, "osmateria":5, "osmaterium":5, "osmeteria":5, "osmeterium":5, "osmic":2, "osmics":2, "osmidrosis":4, "osmious":3, "osmiridium":5, "osmium":3, "osmium tetroxide":6, "osmometer":4, "osmometry":4, "osmond":2, "osmose":2, "osmosed":2, "osmosing":3, "osmotic pressure":5, "osmotically":5, "osmous":2, "osmometric":4, "osmometrically":6, "osmosis":3, "osmund":2, "osmunda":3, "osnabr":3, "osnabrck":4, "osnaburg":3, "osnaburg":3, "osophone":3, "osprey":2, "ossa":2, "ossa":2, "osset":2, "ossete":2, "ossetic":3, "ossein":3, "osselet":3, "osseous":3, "osseously":4, "ossetia":3, "ossetian":3, "ossian":2, "ossicular":4, "ossie":2, "ossiferous":4, "ossip":2, "ossia":3, "ossian":3, "ossianic":4, "ossicle":3, "ossietzky":4, "ossified":3, "ossification":5, "ossifier":4, "ossifrage":3, "ossify":3, "ossifying":4, "ossining":3, "osso bucco":4, "ossuary":4, "ostectomy":4, "osteen":2, "ostend":2, "ostende":2, "ostensive":3, "ostensively":4, "ostensible":4, "ostensibly":4, "ostensoria":5, "ostensorium":5, "ostensory":4, "ostentation":4, "ostentatiously":5, "ostentatiousness":5, "osteal":3, "osteectomy":5, "osteichthyes":5, "osteitic":4, "osteitis":4, "osteitis deformans":7, "osteoclasis":5, "osteoid":3, "osteologer":5, "osteologist":5, "osteology":5, "osteopathist":5, "osteopathy":5, "osteotomist":5, "osteotomy":5, "osteoarthritis":6, "osteoblast":4, "osteoblastic":5, "osteoclast":4, "osteogenesis":6, "osteogenetic":6, "osteological":6, "osteologically":7, "osteoma":4, "osteomas":4, "osteomalacia":6, "osteomalacia":7, "osteomata":5, "osteometric":5, "osteomyelitis":7, "osteopath":4, "osteopathic":5, "osteopathically":7, "osteophyte":4, "osteophytic":5, "osteoplastic":5, "osteoplasty":5, "osteoporosis":6, "osteotome":4, "ostia":3, "ostiak":3, "ostiaries":4, "ostiary":4, "ostinato":4, "ostiole":3, "ostiolar":4, "ostium":3, "ostosis":3, "ostracise":3, "ostracised":3, "ostracism":3, "ostracising":4, "ostracize":3, "ostracizable":5, "ostracizer":4, "ostracization":5, "ostracod":3, "ostracon":3, "ostracodan":4, "ostracoderm":4, "ostrava":3, "ostrich":2, "ostrichlike":3, "ostringer":3, "ostrogoth":3, "ostrogothic":4, "ostrogothian":5, "ostyak":3, "osvaldo":3, "oswald":2, "oswaldo":3, "oswego":3, "otc":1, "other":2, "other world":3, "other-directed":4, "othergates":3, "otherguess":3, "otherness":3, "otherwhere":3, "otherwhile":3, "otherwhiles":3, "otherwise":3, "otherworldly":4, "othman":2, "othman i":3, "othniel":3, "otranto":3, "otsego":3, "ottar":2, "ottava":3, "ottava rima":5, "ottawa":3, "otter":2, "otter":2, "otter hound":3, "otter shrew":3, "otterbein":3, "otterburn":3, "otto":2, "otto":2, "otto cycle":4, "otto i":3, "ottoman":3, "ottoman":3, "ottoman empire":5, "ottomanlike":4, "ottonian":4, "ottrelite":3, "ottumwa":3, "otway":2, "ouachita":3, "ouabain":3, "ouagadougou":4, "ouananiche":3, "ouch":1, "oud":1, "oudh":1, "ouessant":2, "oueta":2, "ought":1, "oughtlins":2, "oughtn't":2, "ouida":2, "ouija":2, "oujda":2, "ounce":1, "ouphe":1, "our":1, "our father":3, "our lady":3, "our'n":1, "ours":1, "ourself":2, "ourselves":2, "ouse":1, "oust":1, "ouster":2, "out":1, "out and away":4, "out of pocket":4, "out sister":3, "out-and-outer":2, "out-country":2, "out-herod":2, "out-of-pocket":2, "out-relief":2, "outact":2, "outage":2, "outambush":3, "outargue":3, "outargued":3, "outarguing":4, "outate":2, "outawe":2, "outawed":2, "outawing":3, "outasight":3, "outbabble":3, "outback":2, "outbake":2, "outbaked":2, "outbaking":3, "outbalance":3, "outbalanced":3, "outbalancing":4, "outban":2, "outbanned":2, "outbanning":3, "outbanter":3, "outbar":2, "outbark":2, "outbarred":2, "outbargain":3, "outbarring":3, "outbarter":3, "outbat":2, "outbatted":3, "outbatter":3, "outbatting":3, "outbawl":2, "outbeam":2, "outbeg":2, "outbegged":2, "outbegging":3, "outbelch":2, "outbellow":3, "outbend":2, "outbending":3, "outbent":2, "outbetter":3, "outbid":2, "outbidden":3, "outbidder":3, "outbidding":3, "outblaze":2, "outblazed":2, "outblazing":3, "outbleat":2, "outbled":2, "outbleed":2, "outbleeding":3, "outbless":2, "outblew":2, "outbloom":2, "outblossom":3, "outblot":2, "outblotted":3, "outblotting":3, "outblow":2, "outblown":2, "outblowing":3, "outbluff":2, "outblunder":3, "outblush":2, "outbluster":3, "outboard":2, "outboast":2, "outbound":2, "outbow":2, "outbowl":2, "outbox":2, "outbrag":2, "outbragged":2, "outbragging":3, "outbranch":2, "outbrave":2, "outbraved":2, "outbraving":3, "outbray":2, "outbrazen":3, "outbreak":2, "outbreathe":2, "outbreathed":2, "outbreathing":3, "outbred":2, "outbreed":2, "outbreeding":3, "outbribe":2, "outbribed":2, "outbribing":3, "outbridge":2, "outbridged":2, "outbridging":3, "outbring":2, "outbringing":3, "outbrought":2, "outbud":2, "outbudded":3, "outbudding":3, "outbuild":2, "outbuilding":3, "outbuilt":2, "outbulge":2, "outbulged":2, "outbulging":3, "outbulk":2, "outbully":3, "outburn":2, "outburnt":2, "outburning":3, "outburst":2, "outbustle":3, "outbuzz":2, "outbye":2, "outcant":2, "outcarol":3, "outcaroled":3, "outcarolled":3, "outcaroling":4, "outcarolling":4, "outcast":2, "outcaste":2, "outcavil":3, "outcaviled":3, "outcavilled":3, "outcaviling":4, "outcavilling":4, "outcaper":3, "outcharm":2, "outchase":2, "outchased":2, "outchasing":3, "outchatter":3, "outcheat":2, "outchid":2, "outchide":2, "outchidden":3, "outchided":3, "outchiding":3, "outcities":3, "outcity":3, "outclamor":3, "outclass":2, "outclerk":2, "outclimbing":3, "outclomb":2, "outcome":2, "outcompass":3, "outcompliment":4, "outcourt":2, "outcrawl":2, "outcreep":2, "outcreeping":3, "outcrept":2, "outcricket":3, "outcrop":2, "outcropped":2, "outcropping":3, "outcross":2, "outcrossing":3, "outcrow":2, "outcrowd":2, "outcry":2, "outcull":2, "outcure":2, "outcured":2, "outcurse":2, "outcursed":2, "outcursing":3, "outcurve":2, "outcuring":3, "outcut":2, "outcutting":3, "outdance":2, "outdanced":2, "outdancing":3, "outdare":2, "outdared":2, "outdaring":3, "outdate":2, "outdated":3, "outdating":3, "outdazzle":3, "outdespatch":3, "outdeiled":3, "outdeilled":3, "outdeilling":4, "outdeiling":4, "outdevil":3, "outdid":2, "outdispatch":3, "outdistance":3, "outdistanced":3, "outdistancing":4, "outdistrict":3, "outdo":2, "outdodge":2, "outdodged":2, "outdodging":3, "outdone":2, "outdoor":2, "outdoors":2, "outdoorsy":3, "outdoing":3, "outdrank":2, "outdraw":2, "outdrawn":2, "outdrawing":3, "outdress":2, "outdrew":2, "outdrink":2, "outdrinking":3, "outdrive":2, "outdriven":3, "outdriving":3, "outdrove":2, "outdwell":2, "outdwelled":2, "outdwelling":3, "outdweller":3, "outeat":2, "outeaten":3, "outeating":3, "outecho":3, "outechoed":3, "outechoing":4, "outedge":2, "outedged":2, "outedging":3, "outer":2, "outer bar":3, "outer garments":4, "outer mongolia":6, "outer planet":4, "outer space":3, "outermost":3, "outerness":3, "outerwear":3, "outeyed":2, "outequivocate":5, "outequivocated":6, "outequivocating":6, "outface":2, "outfaced":2, "outfacing":3, "outfall":2, "outfame":2, "outfamed":2, "outfaming":3, "outfast":2, "outfawn":2, "outfable":3, "outfeast":2, "outfed":2, "outfeed":2, "outfeeding":3, "outfence":2, "outfenced":2, "outfencing":3, "outferret":3, "outfield":2, "outfielder":3, "outfight":2, "outfighting":3, "outfigure":3, "outfigured":3, "outfiguring":4, "outfish":2, "outfit":2, "outfitted":3, "outfitter":3, "outfitting":3, "outflame":2, "outflamed":2, "outflaming":3, "outflank":2, "outflanker":3, "outflare":2, "outflared":2, "outflaring":3, "outflash":2, "outflatter":3, "outflee":2, "outflew":2, "outfling":2, "outflinging":3, "outfloat":2, "outflourish":3, "outflow":2, "outflown":2, "outflung":2, "outflux":2, "outfly":2, "outflying":3, "outfool":2, "outfoot":2, "outfought":2, "outfox":2, "outfroth":2, "outfrown":2, "outgabble":3, "outgain":2, "outgallop":3, "outgame":2, "outgamed":2, "outgamble":3, "outgaming":3, "outgas":2, "outgaze":2, "outgazed":2, "outgazing":3, "outgeneral":4, "outglare":2, "outglared":2, "outglaring":3, "outgleam":2, "outglitter":3, "outgloom":2, "outglow":2, "outgnaw":2, "outgnawn":2, "outgnawing":3, "outgo":2, "outgone":2, "outgoing":3, "outgoings":3, "outgreen":2, "outgrew":2, "outgrin":2, "outgrinned":2, "outgrinning":3, "outgroup":2, "outgrow":2, "outgrown":2, "outgrowth":2, "outgrowing":3, "outguard":2, "outguess":2, "outgun":2, "outgunned":2, "outgunning":3, "outgush":2, "outhammer":3, "outhasten":3, "outhaul":2, "outhear":2, "outheard":2, "outhearing":3, "outhire":2, "outhired":2, "outhiring":3, "outhiss":2, "outhit":2, "outhitting":3, "outhorror":3, "outhouse":2, "outhouses":3, "outhowl":2, "outhunt":2, "outhurl":2, "outhumor":3, "outhyperbolize":5, "outhyperbolized":5, "outhyperbolizing":6, "outing":2, "outinvent":3, "outissue":3, "outissued":3, "outissuing":4, "outjest":2, "outjet":2, "outjetted":3, "outjetting":3, "outjinx":2, "outjockey":3, "outjourney":3, "outjourneyed":3, "outjourneying":4, "outjuggle":3, "outjump":2, "outjut":2, "outjutted":3, "outjutting":3, "outkick":2, "outkill":2, "outking":2, "outkiss":2, "outkitchen":3, "outlaid":2, "outlance":2, "outlanced":2, "outlancing":3, "outland":2, "outlander":3, "outlandish":3, "outlandishly":4, "outlandishness":4, "outlash":2, "outlast":2, "outlaugh":2, "outlaunch":2, "outlaw":2, "outlawry":3, "outlay":2, "outlaying":3, "outlabor":3, "outlead":2, "outleading":3, "outleap":2, "outlearn":2, "outled":2, "outlengthen":3, "outlet":2, "outlighten":3, "outlimn":2, "outline":2, "outlined":2, "outlinger":3, "outlining":3, "outlip":2, "outlipped":2, "outlipping":3, "outlive":2, "outlived":2, "outliver":3, "outliving":3, "outlier":3, "outlook":2, "outlove":2, "outloved":2, "outloving":3, "outluster":3, "outlying":3, "outmalaprop":4, "outmalapropped":4, "outmalapropping":5, "outman":2, "outmanned":2, "outmanning":3, "outmarch":2, "outmarried":3, "outmarry":3, "outmarrying":4, "outmaster":3, "outmatch":2, "outmate":2, "outmated":3, "outmating":3, "outmaneuver":4, "outmanoeuvre":4, "outmeasure":3, "outmeasured":3, "outmeasuring":4, "outmerchant":3, "outmode":2, "outmoded":3, "outmoding":3, "outmost":2, "outmount":2, "outmouth":2, "outmove":2, "outmoved":2, "outmoving":3, "outness":2, "outnumber":3, "outoffice":3, "outpace":2, "outpaced":2, "outpacing":3, "outpaint":2, "outparish":3, "outpass":2, "outpath":2, "outpatient":3, "outpeep":2, "outpeople":3, "outperform":3, "outpick":2, "outpipe":2, "outpiped":2, "outpiping":3, "outpitch":2, "outpitied":3, "outpity":3, "outpitying":4, "outplan":2, "outplanned":2, "outplanning":3, "outplay":2, "outplease":2, "outpleased":2, "outpleasing":3, "outplod":2, "outplodded":3, "outplodding":3, "outplot":2, "outplotted":3, "outplotting":3, "outpoint":2, "outpoison":3, "outpoll":2, "outpop":2, "outpopped":2, "outpopping":3, "outpopulate":4, "outpopulated":5, "outpopulating":5, "outport":2, "outporter":3, "outpost":2, "outpour":2, "outpouring":3, "outpractice":3, "outpracticed":3, "outpracticing":4, "outpraise":2, "outpraised":2, "outpraising":3, "outpray":2, "outprayed":2, "outpraying":3, "outpreach":2, "outpreen":2, "outprice":2, "outpriced":2, "outpricing":3, "outpried":2, "outpromise":3, "outpromised":3, "outpromising":4, "outproduce":3, "outproduced":3, "outproducing":4, "outpry":2, "outprying":3, "outpull":2, "outpurl":2, "outpursue":3, "outpursued":3, "outpursuing":4, "outpush":2, "output":2, "outpupil":3, "outquaff":2, "outquarters":3, "outquestion":3, "outqueried":3, "outquery":3, "outquerying":4, "outquibble":3, "outquote":2, "outquoted":3, "outquoting":3, "outrace":2, "outraced":2, "outracing":3, "outrage":2, "outraged":2, "outraging":3, "outrail":2, "outran":2, "outrang":2, "outrange":2, "outranged":2, "outranging":3, "outrank":2, "outrant":2, "outrap":2, "outrapped":2, "outrapping":3, "outrate":2, "outrated":3, "outrating":3, "outrave":2, "outraved":2, "outraving":3, "outrageous":3, "outrageously":4, "outrageousness":4, "outreach":2, "outread":2, "outreading":3, "outreason":3, "outreckon":3, "outredden":3, "outreign":2, "outrhyme":2, "outrhymed":2, "outrhyming":3, "outrib":2, "outribbed":2, "outribbing":3, "outrick":2, "outride":2, "outridden":3, "outrider":3, "outriding":3, "outrig":2, "outrigged":2, "outright":2, "outrightness":3, "outrigger":3, "outrigging":3, "outring":2, "outringing":3, "outrival":3, "outrivaled":3, "outrivalled":3, "outrivaling":4, "outrivalling":4, "outroar":2, "outrode":2, "outrogue":2, "outrogued":2, "outroot":2, "outrove":2, "outroved":2, "outroving":3, "outrow":2, "outroguing":3, "outromance":3, "outromanced":3, "outromancing":4, "outrun":2, "outrung":2, "outrunner":3, "outrush":2, "outsaid":2, "outsail":2, "outsaint":2, "outsallied":3, "outsally":3, "outsallying":4, "outsang":2, "outsat":2, "outsatisfied":4, "outsatisfy":4, "outsatisfying":5, "outsaw":2, "outsay":2, "outsaying":3, "outsavor":3, "outscent":2, "outscold":2, "outscore":2, "outscored":2, "outscorn":2, "outscoring":3, "outscream":2, "outsearch":2, "outsee":2, "outseek":2, "outseeking":3, "outseen":2, "outseeing":3, "outsell":2, "outselling":3, "outsentry":3, "outsert":2, "outset":2, "outshame":2, "outshamed":2, "outshaming":3, "outshape":2, "outshaped":2, "outshaping":3, "outshine":2, "outshining":3, "outshone":2, "outshoot":2, "outshooting":3, "outshot":2, "outshoulder":3, "outshout":2, "outshove":2, "outshoved":2, "outshoving":3, "outshow":2, "outshowed":2, "outshower":3, "outshowing":3, "outshriek":2, "outshrill":2, "outshut":2, "outside":2, "outside broadcast":4, "outside work":3, "outsider":3, "outsift":2, "outsigh":2, "outsin":2, "outsing":2, "outsinging":3, "outsinned":2, "outsinning":3, "outsit":2, "outsitting":3, "outsize":2, "outsized":2, "outskill":2, "outskip":2, "outskipped":2, "outskipping":3, "outskirt":2, "outskirts":2, "outskirmish":3, "outslang":2, "outslander":3, "outslide":2, "outslidden":3, "outsliding":3, "outslink":2, "outsmart":2, "outsmell":2, "outsmile":2, "outsmiled":2, "outsmiling":3, "outsnatch":2, "outsnore":2, "outsnored":2, "outsnoring":3, "outsoar":2, "outsold":2, "outsole":2, "outsonnet":3, "outsought":2, "outsound":2, "outsophisticate":5, "outsophisticated":6, "outsophisticating":6, "outspan":2, "outspanned":2, "outspanning":3, "outsparkle":3, "outspeak":2, "outspeaking":3, "outspeed":2, "outspeeded":3, "outspeeding":3, "outspell":2, "outspied":2, "outspill":2, "outspin":2, "outspinned":2, "outspinning":3, "outspirit":3, "outspit":2, "outspitting":3, "outsplendor":3, "outspoke":2, "outsport":2, "outspoken":3, "outspokenly":4, "outspokenness":4, "outspread":2, "outspreading":3, "outspring":2, "outspringing":3, "outsprint":2, "outsprue":2, "outsprued":2, "outsprung":2, "outspruing":3, "outspurn":2, "outspurt":2, "outspy":2, "outspying":3, "outstagger":3, "outstand":2, "outstanding":3, "outstare":2, "outstared":2, "outstaring":3, "outstartle":3, "outstate":2, "outstated":3, "outstating":3, "outstature":3, "outstatured":3, "outstaturing":4, "outstay":2, "outstation":3, "outsteal":2, "outstealing":3, "outsteam":2, "outstep":2, "outstepped":2, "outstepping":3, "outsting":2, "outstinging":3, "outstink":2, "outstinking":3, "outstole":2, "outstood":2, "outstorm":2, "outstolen":3, "outstrain":2, "outstream":2, "outstretch":2, "outstretcher":3, "outstricken":3, "outstride":2, "outstridden":3, "outstriding":3, "outstrike":2, "outstriking":3, "outstrip":2, "outstripped":2, "outstripping":3, "outstrive":2, "outstriven":3, "outstriving":3, "outstrode":2, "outstrove":2, "outstrut":2, "outstrutted":3, "outstrutting":3, "outstudied":3, "outstudy":3, "outstudying":4, "outstung":2, "outstunk":2, "outstunt":2, "outsuck":2, "outsuffer":3, "outsulk":2, "outsum":2, "outsummed":2, "outsumming":3, "outsung":2, "outswagger":3, "outswam":2, "outsware":2, "outswarm":2, "outswear":2, "outswearing":3, "outsweep":2, "outsweeten":3, "outswim":2, "outswimming":3, "outswing":2, "outswinger":3, "outswinging":3, "outswindle":3, "outswirl":2, "outsworn":2, "outswum":2, "outswung":2, "outtalk":2, "outtear":2, "outtearing":3, "outtease":2, "outteased":2, "outteasing":3, "outtell":2, "outtelling":3, "outthieve":2, "outthieved":2, "outthieving":3, "outthink":2, "outthinking":3, "outthought":2, "outthreaten":3, "outthrew":2, "outthrob":2, "outthrobbed":2, "outthrobbing":3, "outthrow":2, "outthrown":2, "outthrowing":3, "outthrust":2, "outthrusting":3, "outthunder":3, "outthwack":2, "outtinkle":3, "outtire":2, "outtired":2, "outtiring":3, "outtoil":2, "outtold":2, "outtongue":2, "outtongued":2, "outtonguing":3, "outtore":2, "outtorn":2, "outtower":3, "outtrade":2, "outtraded":3, "outtrading":3, "outtravel":3, "outtraveled":3, "outtravelled":3, "outtraveling":4, "outtravelling":4, "outtrick":2, "outtrot":2, "outtrotted":3, "outtrotting":3, "outtrump":2, "outturn":2, "outtyrannize":4, "outtyrannized":4, "outtyrannizing":5, "outvalue":3, "outvalued":3, "outvaluing":4, "outvanish":3, "outvaunt":2, "outvelvet":3, "outvenom":3, "outvictor":3, "outvie":2, "outvied":2, "outvigil":3, "outvoice":2, "outvoiced":2, "outvoicing":3, "outvote":2, "outvoted":3, "outvoting":3, "outvoyage":3, "outvoyaged":3, "outvoyaging":4, "outvociferate":5, "outvociferated":6, "outvociferating":6, "outvying":3, "outwait":2, "outwalk":2, "outwallop":3, "outwander":3, "outwar":2, "outward":2, "outward bound movement":5, "outward-bound":2, "outwards":2, "outwardly":3, "outwardness":3, "outwarred":2, "outwarble":3, "outwarring":3, "outwash":2, "outwaste":2, "outwasted":3, "outwasting":3, "outwave":2, "outwaved":2, "outwaving":3, "outwater":3, "outweaponed":3, "outwear":2, "outwearing":3, "outweave":2, "outweaving":3, "outwearied":3, "outweary":3, "outwearying":4, "outweed":2, "outweep":2, "outweeping":3, "outweigh":2, "outwell":2, "outwent":2, "outwept":2, "outwhirl":2, "outwiggle":3, "outwile":2, "outwiled":2, "outwill":2, "outwiling":3, "outwind":2, "outwing":2, "outwish":2, "outwit":2, "outwith":2, "outwitted":3, "outwitting":3, "outword":2, "outwore":2, "outwork":2, "outworker":3, "outworn":2, "outwove":2, "outwoven":3, "outwrangle":3, "outwrench":2, "outwrestle":3, "outwriggle":3, "outwring":2, "outwringing":3, "outwrit":2, "outwrite":2, "outwriting":3, "outwritten":3, "outwrung":2, "outyell":2, "outyelp":2, "outyield":2, "oubangi":3, "oubangi-chari":4, "oubangui":3, "oubliette":3, "oulu":2, "ourari":3, "ousel":2, "ouspensky":3, "outr":2, "outrance":2, "outremer":3, "outr":3, "ouzel":2, "ouzo":2, "over":1, "overwear":2, "oven":2, "oven-ready":3, "ovenbird":3, "ovenlike":3, "ovenware":3, "ovenwood":3, "ovid":2, "oviduct":3, "ovule":2, "ovulate":3, "ovverirrigate":5, "ovverirrigated":6, "ovverirrigating":6, "owe":1, "owl":1, "owlet":2, "owlish":2, "owlishly":3, "owlishness":3, "owllike":2, "own":1, "owner":2, "ownership":3, "owse":1, "owt":1, "owelty":3, "owen":2, "owen stanley range":5, "owens":2, "owensboro":4, "owenism":3, "owenist":3, "owenite":3, "owing":2, "owings-mills":2, "ox-eyed":1, "oxon":1, "oxalic":3, "oxalic acid":5, "oxalate":3, "oxalis":3, "oxazine":3, "oxblood":2, "oxblood red":3, "oxbow":2, "oxbridge":2, "oxcart":2, "oxen":2, "oxenstierna":4, "oxenstjerna":4, "oxeye":2, "oxford":2, "oxford":2, "oxford accent":4, "oxford bags":3, "oxford blue":3, "oxford english":4, "oxford frame":3, "oxford grey":3, "oxford group":3, "oxford movement":4, "oxfordshire":3, "oxgang":2, "oxheart":2, "oxhide":2, "oxid":2, "oxide":2, "oxidic":3, "oxime":2, "oximeter":4, "oximetry":4, "oxidant":3, "oxidase":3, "oxidate":3, "oxidable":4, "oxidasic":4, "oxidation":4, "oxidation-reduction":6, "oxidational":5, "oxidative":4, "oxidimetry":5, "oxidise":3, "oxidised":3, "oxidiser":4, "oxidising":4, "oxidize":3, "oxidizability":7, "oxidizable":5, "oxidizer":4, "oxidizing agent":6, "oxidimetric":5, "oxidization":5, "oxidoreductase":6, "oximetric":4, "oxlike":2, "oxlip":2, "oxon":2, "oxonian":4, "oxonium compound":6, "oxpecker":3, "oxtail":2, "oxter":2, "oxtongue":2, "oxus":2, "oxyacid":4, "oxyaldehyde":5, "oxyacetylene":6, "oxybenzene":4, "oxycephalous":5, "oxycephaly":5, "oxycephalic":5, "oxychloric":4, "oxychloride":4, "oxydase":3, "oxydasic":4, "oxydation":4, "oxyderces":4, "oxygen":3, "oxygen acid":5, "oxygen effect":5, "oxygen mask":4, "oxygen tent":4, "oxygenate":4, "oxygenated":5, "oxygenating":5, "oxygenation":5, "oxygenator":5, "oxygenic":4, "oxygenicity":6, "oxygenize":4, "oxygenized":4, "oxygenizable":6, "oxygenizing":5, "oxygenizer":5, "oxyhaemoglobin":6, "oxyhydrogen":5, "oxylus":3, "oxymora":4, "oxymoron":4, "oxyneurine":4, "oxysalt":3, "oxysulphide":4, "oxytetracycline":6, "oxytone":3, "oxytocic":4, "oxytocin":4, "oxytocia":5, "oyelet":2, "oyster":2, "oyster bed":3, "oyster crab":3, "oyster pink":3, "oyster plant":3, "oyster white":3, "oystercatcher":4, "oysterer":3, "oystering":3, "oysterman":3, "oysterwoman":4, "oysterwomen":4, "oyer":2, "oyer and terminer":6, "ozs":1, "ozalid":3, "ozzie":2, "oahu":3, "oasis":3, "oasithouses":5, "oasitic":4, "oba":2, "oban":2, "obadiah":4, "obafemi":4, "obasanjo":4, "obeid":2, "obeisance":3, "obeisant":3, "obeisantly":4, "obelia":3, "oberammergau":5, "oberhausen":4, "oberland":3, "oberlin":3, "oberon":3, "oberosterreich":5, "obese":2, "obesity":4, "obey":2, "obeyable":4, "obeyer":3, "obeyingly":4, "obeah":3, "obeahism":4, "obeche":3, "obedience":4, "obedient":4, "obediently":5, "obedientiary":6, "obelia":3, "obi":2, "obis":2, "obit":2, "obituaries":5, "obituary":5, "obituary":5, "oblige":2, "obliged":2, "obligedness":4, "obliger":3, "obliging":3, "obligingly":4, "obligingness":4, "oblique":2, "oblique angle":4, "oblique narration":5, "oblique sailing":4, "obliquity":4, "obliterate":4, "oblivion":4, "oblivious":4, "oboe":2, "oboe d'amore":5, "oboe da caccia":5, "obote":3, "obrecht":2, "obrenovich":4, "obuda":3, "oca":2, "ocala":3, "ocean":2, "ocean greyhound":4, "ocean of storms":4, "ocean-going":3, "oceanarium":5, "oceanfront":3, "oceanlike":3, "oceanography":5, "oceanology":5, "oceanport":3, "oceanside":3, "ocellar":3, "ocellus":3, "oceanic":4, "oceanic":4, "oceania":5, "oceanica":5, "oceanity":5, "oceanicity":6, "oceanid":4, "oceanographer":6, "oceanography":6, "oceanographic":6, "oceanographically":8, "oceanus":4, "oceloid":3, "ocelot":3, "ocher":2, "ochered":2, "ochering":3, "ocherous":3, "ochery":3, "ochone":2, "ochoa":3, "ochre":2, "ochred":2, "ochreous":3, "ochring":2, "ocie":2, "ocilla":3, "oconomowoc":5, "oconto":3, "ocotillo":4, "ocotillos":4, "ocypete":4, "ocyrrho":5, "odalisk":3, "odalisque":3, "odell":2, "odelsthing":3, "odelsting":3, "odense":3, "oder":2, "oder-neisse line":4, "odessa":3, "odets":2, "odette":2, "odetta":3, "odea":3, "odeum":3, "odin":2, "odinic":3, "odinism":3, "odinist":3, "odinitic":4, "odinian":4, "odilon":3, "odious":3, "odiously":4, "odiousness":4, "odium":3, "odometer":4, "odometry":4, "odontalgia":4, "odontalgic":4, "odontiasis":5, "odontogeny":5, "odontography":5, "odontoid":3, "odontoid process":5, "odontology":5, "odontophoral":5, "odontoblast":4, "odontoblastic":5, "odontoglossum":5, "odontograph":4, "odontographic":5, "odontolite":4, "odontological":6, "odontophore":4, "odor":2, "odorful":3, "odoriferosity":7, "odoriferous":5, "odoriferously":6, "odoriferousness":6, "odorless":3, "odorous":3, "odour":2, "odour of sanctity":6, "odourful":3, "odourless":3, "odoacer":4, "odometrical":5, "odus":2, "odylic":3, "odysseus":3, "odysseus":4, "ofay":2, "ogallala":4, "ogasawara gunto":7, "ogee":2, "ogee arch":3, "ogenitary":5, "ogilvie":3, "ogive":2, "ogle":2, "oglesby":3, "oglethorpe":3, "ogoouor ogowe":6, "ogre":2, "ogreish":3, "ogreishly":4, "ogrishly":3, "ogun":2, "ogygian":4, "ohio":3, "oho":2, "ohone":2, "oidia":4, "oidioid":4, "oidium":4, "oileus":4, "ojai":2, "ojibwa":3, "ojibway":3, "oka":2, "oka":2, "okay":2, "okapi":3, "okavango":4, "okayama":4, "okazaki":4, "okeechobee":4, "oken":2, "okey-doke":2, "okey-dokey":3, "okefenokee swamp":6, "okeghem":3, "okemah":3, "okhotsk":2, "okie":2, "okinawa":4, "okinawan":4, "oklahoma":4, "oklahoma city":6, "okoume":3, "okolona":4, "okovanggo":4, "okovango":4, "okra":2, "okuninushi":5, "ol":2, "olaf i":3, "olaf ii":3, "olaf v":3, "oland":2, "olav":2, "olav i":3, "olav ii":3, "olav v":3, "olavo":3, "olecranon":4, "olea":3, "oleaginous":5, "oleaginousness":6, "oleander":4, "oleandomycin":6, "oleaster":4, "oleate":3, "oleaceous":4, "olefin":3, "olefine":3, "olefinic":4, "oleic":3, "oleic acid":5, "olein":3, "oleo oil":4, "oleography":5, "oleograph":4, "oleographic":5, "oleomargaric":6, "oleomargarin":6, "oleomargarine":6, "oleoresin":5, "oleoyl":4, "oleta":3, "olethreutid":4, "oleum":3, "olibanum":4, "olimbos":3, "olin":2, "olivenite":4, "olivia":4, "olivier":4, "olio":3, "olios":3, "olla":2, "olomouc":3, "oloroso":4, "olympic":3, "olympic games":4, "olympic mountains":5, "olympic peninsula":7, "olympia":4, "olympiad":4, "olympiad":4, "olympiadic":5, "olympian":4, "olympio":4, "olympus":3, "olynthus":3, "omagh":2, "omak":2, "oman":2, "omar":2, "omar khayyam":4, "omayyad":3, "omaha":3, "omasum":3, "omen":2, "omental":3, "omentum":3, "omer":2, "omer":2, "omega":3, "omega minus":5, "omission":3, "omissive":3, "omissively":4, "omissible":4, "omit":2, "omitted":3, "omitting":3, "omicron":3, "omoo":2, "omophagist":4, "omophagy":4, "omophagic":4, "omophagia":4, "omophagia":5, "omophorion":5, "omuta":3, "ona":2, "onanism":3, "onanist":3, "onanistic":4, "onas":2, "onassis":3, "oneida":3, "oneiric":3, "oneirocritic":5, "oneirocritical":6, "oneirocritically":7, "oneirocriticism":6, "oneiromancy":5, "onega":3, "onerosity":5, "onitsha":3, "oniomania":6, "oniomaniac":6, "onium compound":5, "onus":2, "onus probandi":5, "onuses":3, "onychia":4, "onyxis":3, "oogamous":4, "oogamy":4, "oology":4, "oocyte":3, "oogenesis":5, "oogenetic":5, "oogonia":5, "oogonium":5, "ookinetic":5, "oolite":3, "oolith":3, "oolitic":4, "oological":5, "oophore":3, "oophoric":4, "oophorectomize":6, "oophorectomized":6, "oophorectomizing":7, "oophorectomy":6, "oophoritis":5, "oophyte":3, "oophytic":4, "oosperm":3, "oosphere":3, "oospore":3, "oosporic":4, "ootheca":4, "ootid":3, "opa":2, "opa-locka":3, "opacified":4, "opacification":6, "opacifier":5, "opacify":4, "opacifying":5, "opacity":4, "opah":2, "opai":2, "opaion":3, "opal":2, "opal":2, "opalesce":3, "opalesced":3, "opalescing":4, "opalescent":4, "opaline":3, "opaque":2, "opaque context":4, "opaque projector":5, "opaqued":2, "opaquely":3, "opaqueness":3, "opaquing":3, "opacimeter":5, "opacus":3, "opalesce":3, "opelt":2, "open":2, "open air":3, "open brethren":4, "open chain":3, "open circuit":4, "open court":3, "open day":3, "open door":3, "open game":3, "open house":3, "open letter":4, "open market":4, "open market operations":8, "open order":4, "open policy":5, "open primary":5, "open sentence":4, "open sesame":5, "open secret":4, "open shop":3, "open up":3, "open university":7, "open verdict":4, "open-airishness":4, "open-and-shut":2, "open-end":2, "open-ended":3, "open-eyed":2, "open-faced":2, "open-field":2, "open-handed":3, "open-handedly":4, "open-heart surgery":5, "open-hearth":2, "open-hearth furnace":4, "open-hearth process":4, "open-hearted":3, "open-heartedness":4, "open-housing":3, "open-letter":3, "open-minded":3, "open-mindedly":4, "open-mindedness":4, "open-mouthed":2, "open-mouthedly":4, "open-mouthedness":4, "open-plan":2, "open-reel":2, "open-shelf":2, "open-sided":3, "open-timbered":3, "open-web":2, "openairness":4, "opencast mining":5, "openchain":3, "opencircuit":4, "opener":3, "openhanded":4, "openhandedly":5, "openhandedness":5, "opening":3, "opening time":4, "openwork":3, "opera":3, "opercle":3, "operculate":4, "operculated":5, "operculum":4, "opeial":3, "opelika":4, "opera":3, "opera buffa":5, "opera seria":6, "oph":2, "ophelia":3, "opheltes":3, "ophidian":4, "ophir":2, "ophite":2, "ophitic":3, "ophia":3, "ophion":3, "opine":2, "opinion":3, "opinion poll":4, "opinionated":5, "opinionatedly":6, "opinionatedness":6, "opinionatively":6, "opinionativeness":6, "opinionative":5, "opinicus":4, "opinicuses":5, "opis":2, "opisthenar":4, "opisthobranch":4, "opiate":3, "opiated":4, "opiating":4, "opium":3, "opium den":4, "opium poppy":5, "opiumism":4, "oporto":3, "opossum":3, "opossum shrimp":4, "opuntia":4, "opus":2, "opuscule":3, "opuscular":4, "opuses":3, "opra bouffe":4, "opra comique":5, "oquassa":3, "ora":2, "ora":2, "ora pro nobis":5, "oracular":4, "oracularity":6, "oracularly":5, "orad":2, "orae":2, "oral":2, "oral society":6, "orally":3, "oran":2, "orang":2, "orang-outang":3, "orang-utan":3, "orangutan":4, "orangutang":4, "oraria":4, "orarion":4, "orarium":4, "oras":2, "orate":2, "orated":3, "orating":3, "orabelle":3, "oracon":3, "oradea":3, "oration":3, "ore":2, "orectic":3, "oregano":4, "orel":2, "orem":2, "oren":2, "orenburg":3, "orense":3, "orestes":3, "oresteia":4, "orexis":3, "oread":3, "orebro":3, "oregano":4, "orekhovo-zuyevo":6, "oreopithecus":6, "oresund":3, "original":4, "original sin":5, "originality":6, "originally":5, "originate":4, "originated":5, "originating":5, "originable":5, "origination":5, "originative":5, "originatively":6, "originator":5, "oriskany":4, "orissa":3, "oribi":3, "oriel":3, "orient":3, "orient":3, "oriental":4, "oriental":4, "orientalise":5, "orientalised":5, "orientalism":5, "orientalist":5, "orientalising":6, "orientalize":5, "orientally":5, "orientate":4, "orientated":5, "orientating":5, "orientalis":5, "orientalia":6, "orientation":5, "orientative":5, "oriente":4, "origan":3, "origami":4, "orihon":3, "orinasal":4, "orinasally":5, "orinoco":4, "oriole":3, "orion":3, "oriya":3, "orizaba":4, "orogeny":4, "orography":4, "orologist":4, "orology":4, "orometer":4, "orometry":4, "orontes":3, "orontipharynges":6, "orontius":4, "orozco":3, "orogenesis":5, "oroide":3, "oronasal":4, "oronasally":5, "orono":3, "oropharyngeal":6, "orosius":4, "orotund":3, "orotundity":5, "oroville":3, "oruro":3, "oryol":2, "oryx":2, "oryxes":3, "osage":2, "osage orange":4, "osages":3, "osar":2, "osaka":3, "osee":2, "osetic":3, "osetian":3, "oshogbo":3, "osier-like":2, "osiered":2, "osier":3, "osijek":3, "osiris":3, "osorno":3, "osterreich":3, "otage":2, "otaken":3, "otaking":3, "otalgic":3, "otalgia":4, "otaheite":4, "otaru":3, "otelia":3, "otello":3, "othin":2, "otho":2, "otho i":3, "othoniel":4, "otic":2, "otis":2, "otiose":3, "otionia":5, "otitis":3, "otologist":4, "otology":4, "otook":2, "otoscopy":4, "otocyst":3, "otocystic":4, "otohemineurasthenia":9, "otolaryngologist":7, "otolaryngology":7, "otolaryngological":8, "otolith":3, "otological":5, "otoneurasthenia":7, "otoplastic":4, "otoplasty":4, "otorhinolaryngology":9, "otosclerosis":5, "otoscope":3, "otoscopic":4, "otranto":3, "otus":2, "ova":2, "oval":2, "oval":2, "oval-faced":2, "ovals of cassini":6, "ovality":4, "ovally":3, "ovalness":3, "ovambo":3, "ovaria":4, "ovarian":4, "ovariectomize":6, "ovariectomized":6, "ovariectomizing":7, "ovariectomy":6, "ovariotomist":6, "ovariotomy":6, "ovarium":4, "ovate":2, "ovalle":3, "ovaritis":4, "ovary":3, "ovation":3, "ovational":4, "over":2, "over-riding":3, "over-the-counter":3, "over-under":3, "overt":2, "overtly":3, "overabsorb":4, "overabsorption":5, "overabstain":4, "overabstemious":6, "overact":3, "overaccelerate":6, "overaccelerated":7, "overaccelerating":7, "overacceleration":7, "overaccentuate":6, "overaccentuated":7, "overaccentuating":7, "overaccentuation":7, "overaccumulate":6, "overaccumulated":7, "overaccumulating":7, "overaccumulation":7, "overaction":4, "overactive":4, "overactivate":5, "overactivated":6, "overactivating":6, "overaddiction":5, "overadvance":4, "overadvanced":4, "overadvancing":5, "overaffect":4, "overaffected":5, "overaffirm":4, "overaffirmative":6, "overaffirmation":6, "overafflict":4, "overaffliction":5, "overage":3, "overaggravate":5, "overaggravated":6, "overaggravating":6, "overaggravation":6, "overaggressive":5, "overagitate":5, "overagitated":6, "overagitating":6, "overagitation":6, "overall":3, "overalcoholize":6, "overalcoholized":6, "overalcoholizing":7, "overallegiance":5, "overallegorize":6, "overallegorized":6, "overallegorizing":7, "overambitioned":5, "overambitious":5, "overanxious":4, "overanxiously":5, "overanxiety":6, "overanalytical":7, "overanalyze":5, "overanalyzed":5, "overanalyzing":6, "overangry":4, "overanimated":6, "overanimation":6, "overannotate":5, "overannotated":6, "overannotating":6, "overapt":3, "overappareled":5, "overapplaud":4, "overappraise":4, "overappraised":4, "overappraisal":5, "overappraising":5, "overappreciation":7, "overappreciative":7, "overapprehension":6, "overapprehensive":6, "overarch":3, "overarm":3, "overargue":4, "overargued":4, "overarguing":5, "overargumentative":7, "overartificial":6, "overartificiality":9, "overassert":4, "overassertion":5, "overassertive":5, "overassess":4, "overassume":4, "overassumed":4, "overassumption":5, "overassumptive":5, "overassuming":5, "overassured":4, "overate":3, "overattached":4, "overattachment":5, "overattention":5, "overattentive":5, "overattenuate":6, "overattenuated":7, "overattenuating":7, "overawe":3, "overawed":3, "overawing":4, "overable":4, "overabound":4, "overabundance":5, "overabundant":5, "overabundantly":6, "overabuse":4, "overabused":4, "overabusing":5, "overabusive":5, "overachieve":4, "overacidity":6, "overacute":4, "overadorn":4, "overadorned":4, "overanalysis":6, "overbait":3, "overbake":3, "overbaked":3, "overbaking":4, "overbalance":4, "overbalanced":4, "overbalancing":5, "overballast":4, "overbank":3, "overbashful":4, "overbear":3, "overbearer":4, "overbearing":4, "overbearingly":5, "overbearingness":5, "overbet":3, "overbetted":4, "overbetting":4, "overbid":3, "overbidding":4, "overbig":3, "overbill":3, "overbite":3, "overbitter":4, "overblame":3, "overblamed":3, "overblaming":4, "overblanch":3, "overbleach":3, "overblindly":4, "overblithe":3, "overblouse":3, "overblow":3, "overblown":3, "overboard":3, "overboast":3, "overboastful":4, "overbold":3, "overbook":3, "overbookish":4, "overbooming":4, "overboot":3, "overbore":3, "overborne":3, "overborrow":4, "overbought":3, "overbounteous":5, "overbrace":3, "overbraced":3, "overbracing":4, "overbrag":3, "overbragged":3, "overbragging":4, "overbrake":3, "overbraked":3, "overbraking":4, "overbrave":3, "overbravery":5, "overbravado":5, "overbreak":3, "overbreakage":4, "overbred":3, "overbreed":3, "overbreeding":4, "overbright":3, "overbrilliance":4, "overbrilliant":4, "overbrilliancy":5, "overbroaden":4, "overbroil":3, "overbrown":3, "overbrowse":3, "overbrowsed":3, "overbrowsing":4, "overbrush":3, "overbrutal":4, "overbrutalize":5, "overbrutalized":5, "overbrutalizing":6, "overbrutality":6, "overbrutalization":7, "overbuild":3, "overbuilding":4, "overbuilt":3, "overbulkily":5, "overbulkiness":5, "overbulky":4, "overbumptious":4, "overburden":4, "overburdensome":5, "overbusily":5, "overbusy":4, "overbuy":3, "overbuying":4, "overcall":3, "overcame":3, "overcanny":4, "overcapitalise":6, "overcapitalised":6, "overcapitalising":7, "overcapitalize":6, "overcapitalized":6, "overcapitalizing":7, "overcapitalization":8, "overcaptious":4, "overcare":3, "overcareful":4, "overcarefully":5, "overcarefulness":5, "overcareless":4, "overcast":3, "overcasting":4, "overcasual":5, "overcasuistical":7, "overcaustic":4, "overcausticity":6, "overcaustically":6, "overcaution":4, "overcautious":4, "overcautiously":5, "overcautiousness":5, "overcapacity":6, "overcapability":7, "overcapable":5, "overcensor":4, "overcensorious":6, "overcentralize":5, "overcentralized":5, "overcentralizing":6, "overcentralization":7, "overcertified":5, "overcertify":5, "overcertifying":6, "overcerebral":5, "overchafe":3, "overchafed":3, "overchafing":4, "overcharge":3, "overcharger":4, "overcharitable":6, "overcharitableness":7, "overcharity":5, "overchase":3, "overchased":3, "overchasing":4, "overcheap":3, "overcheck":3, "overcherish":4, "overcherished":4, "overchildish":4, "overchill":3, "overcircumspect":5, "overcircumspection":6, "overcivil":4, "overcivilize":5, "overcivilized":5, "overcivilizing":6, "overcivilization":7, "overcivility":6, "overclaim":3, "overclean":3, "overclement":4, "overclemency":5, "overclever":4, "overclinical":5, "overclog":3, "overclogged":3, "overclogging":4, "overclose":3, "overclothes":3, "overcloud":3, "overcloy":3, "overclutter":4, "overcoat":3, "overcoating":4, "overcoil":3, "overcold":3, "overcolor":4, "overcoloration":6, "overcome":3, "overcomer":4, "overcoming":4, "overcommend":4, "overcommercialize":6, "overcommercialized":6, "overcommercializing":7, "overcommercialization":8, "overcommon":4, "overcommunicative":7, "overcompensate":5, "overcompensation":6, "overcompetitive":6, "overcomplacence":5, "overcomplacent":5, "overcomplacency":6, "overcomplex":4, "overcomplexity":6, "overcompliant":5, "overcomplicate":5, "overcomplicated":6, "overcomplicating":6, "overconcentrate":5, "overconcentrated":6, "overconcentrating":6, "overconcentration":6, "overconcern":4, "overcondense":4, "overcondensed":4, "overcondensing":5, "overcondensation":6, "overconfidence":5, "overconfidently":6, "overconscious":4, "overconscientious":6, "overconservatism":6, "overconservative":6, "overconsiderate":6, "overconsideration":7, "overconstant":4, "overconsume":4, "overconsumed":4, "overconsumption":5, "overconsuming":5, "overcontented":5, "overcontentment":5, "overcontentious":5, "overcontract":4, "overcontraction":5, "overcontribute":5, "overcontributed":6, "overcontributing":6, "overcontrite":4, "overcontribution":6, "overcontrol":4, "overcontrolled":4, "overcontrolling":5, "overcook":3, "overcool":3, "overcorrect":4, "overcorrupt":4, "overcorruption":5, "overcostliness":5, "overcostly":4, "overcourteous":5, "overcourtesy":5, "overcovetous":5, "overcoy":3, "overcopious":5, "overcredit":4, "overcredulous":5, "overcredulity":6, "overcritical":5, "overcritically":6, "overcriticalness":6, "overcriticism":5, "overcriticize":5, "overcriticized":5, "overcriticizing":6, "overcrop":3, "overcropped":3, "overcropping":4, "overcrowd":3, "overcrowdedly":5, "overcrowdedness":5, "overcull":3, "overcultivate":5, "overcultivated":6, "overcultivating":6, "overcultivation":6, "overcultured":4, "overcumber":4, "overcunning":4, "overcured":3, "overcuriosity":7, "overcurious":5, "overcuriously":6, "overdaintily":5, "overdaintiness":5, "overdainty":4, "overdazzle":4, "overdeal":3, "overdear":3, "overdearly":4, "overdearness":4, "overdecadence":5, "overdecadent":5, "overdecorate":5, "overdecorated":6, "overdecorating":6, "overdecoration":6, "overdecorative":6, "overdedicate":5, "overdedicated":6, "overdedicating":6, "overdedication":6, "overdeep":3, "overdeepen":4, "overdeferential":6, "overdelicate":5, "overdelicately":6, "overdelicacy":6, "overdebate":4, "overdebated":5, "overdebating":5, "overdebilitate":6, "overdebilitated":7, "overdebilitating":7, "overdefensive":5, "overdefiant":5, "overdeliberate":6, "overdeliberated":7, "overdeliberating":7, "overdeliberation":7, "overdelicious":5, "overdemand":4, "overdemandingly":6, "overdenunciation":7, "overdependence":5, "overdependent":5, "overdepress":4, "overdepressive":5, "overderide":4, "overderided":5, "overderiding":5, "overderisive":5, "overdescribe":4, "overdescribed":4, "overdescribing":5, "overdescriptive":5, "overdesire":4, "overdesirous":5, "overdestructive":5, "overdetailed":4, "overdevelop":5, "overdevelopment":6, "overdevoted":5, "overdid":3, "overdiffuse":4, "overdiffused":4, "overdiffusing":5, "overdiffusion":5, "overdignified":5, "overdignify":5, "overdignifying":6, "overdiligence":5, "overdiligent":5, "overdiscipline":5, "overdisciplined":5, "overdisciplining":6, "overdiscount":4, "overdiscourage":5, "overdiscouraged":5, "overdiscouragement":6, "overdiscouraging":6, "overdiscreet":4, "overdiscriminating":7, "overdiscuss":4, "overdistant":4, "overdistend":4, "overdistention":5, "overdistort":4, "overdistortion":5, "overdistrait":4, "overdistraught":4, "overdigest":4, "overdilate":4, "overdilated":5, "overdilating":5, "overdilation":5, "overdilute":4, "overdiluted":5, "overdiluting":5, "overdilution":5, "overdiverse":4, "overdiversified":6, "overdiversification":8, "overdiversify":6, "overdiversifying":7, "overdiversity":6, "overdo":3, "overdoctrinaire":5, "overdogmatic":5, "overdogmatical":6, "overdogmatism":5, "overdominate":5, "overdominated":6, "overdominating":6, "overdone":3, "overdoor":3, "overdose":3, "overdosed":3, "overdosage":4, "overdosing":4, "overdoubt":3, "overdoze":3, "overdozed":3, "overdozing":4, "overdoing":4, "overdomesticate":6, "overdomesticated":7, "overdomesticating":7, "overdraft":3, "overdrain":3, "overdrainage":4, "overdramatize":5, "overdramatized":5, "overdramatizing":6, "overdraught":3, "overdraw":3, "overdrawer":4, "overdramatic":5, "overdramatically":7, "overdredge":3, "overdredged":3, "overdredging":4, "overdress":3, "overdressed":3, "overdressing":4, "overdrink":3, "overdrive":3, "overdriven":4, "overdriving":4, "overdrily":4, "overdrove":3, "overdry":3, "overdue":3, "overdye":3, "overdyed":3, "overdyer":4, "overdying":4, "overearnest":4, "overeasily":5, "overeasiness":5, "overeasy":4, "overeat":3, "overeaten":4, "overeater":4, "overeating":4, "overeager":4, "overeagerly":5, "overeagerness":5, "overedit":4, "overeditorialize":8, "overeditorialized":8, "overeditorializing":9, "overeducate":5, "overeducated":6, "overeducating":6, "overeducation":6, "overeducative":6, "overeffort":4, "overeffusive":5, "overelegance":5, "overelegant":5, "overelliptical":6, "overempty":4, "overembellish":5, "overembellishment":6, "overembroider":5, "overemphatic":5, "overemphatical":6, "overemphasis":5, "overemphasize":5, "overemphasized":5, "overemphasizing":6, "overempirical":6, "overemploy":4, "overemployment":5, "overemulate":5, "overemulated":6, "overemulating":6, "overemulation":6, "overenthusiasm":6, "overenthusiastic":7, "overenthusiastically":9, "overenvious":5, "overestimate":5, "overestimated":6, "overestimating":6, "overestimation":6, "overexacting":5, "overexaggerate":6, "overexaggerated":7, "overexaggerating":7, "overexcite":4, "overexcitement":5, "overexcitability":8, "overexcitable":6, "overexcitably":6, "overexcited":5, "overexciting":5, "overexert":4, "overexertedly":6, "overexercise":5, "overexercised":5, "overexercising":6, "overexertion":5, "overexpand":4, "overexpansion":5, "overexpansive":5, "overexpect":4, "overexpectant":5, "overexpend":4, "overexpenditure":6, "overexplain":4, "overexplanation":6, "overexplicit":5, "overexpose":4, "overexposed":4, "overexposing":5, "overexposure":5, "overexpress":4, "overexpressive":5, "overexquisite":5, "overextend":4, "overextreme":4, "overexuberance":6, "overexuberant":6, "overeye":3, "overeyed":3, "overeying":4, "overelaborate":6, "overelaborated":7, "overelaborating":7, "overelate":4, "overelated":5, "overelating":5, "overemotional":6, "overemotionalize":7, "overemotionalized":7, "overemotionalizing":8, "overfacile":4, "overfactious":4, "overfactitious":5, "overfag":3, "overfagged":3, "overfagging":4, "overfaint":3, "overfaithful":4, "overfall":3, "overfamed":3, "overfanciful":5, "overfar":3, "overfast":3, "overfastidious":6, "overfat":3, "overfatten":4, "overfacility":6, "overfamiliar":5, "overfamiliarity":8, "overfamous":4, "overfatigue":4, "overfatigued":4, "overfatiguing":5, "overfavor":4, "overfavorable":6, "overfavorableness":7, "overfearful":4, "overfeast":3, "overfed":3, "overfee":3, "overfeed":3, "overfeeding":4, "overfeel":3, "overfeminine":5, "overfemininity":7, "overfeminize":5, "overfeminized":5, "overfeminizing":6, "overfertile":4, "overfertility":6, "overfervent":4, "overfew":3, "overfierce":3, "overfill":3, "overfilter":4, "overfining":4, "overfish":3, "overfit":3, "overfix":3, "overflap":3, "overflat":3, "overflatten":4, "overflavor":4, "overfleshed":3, "overflew":3, "overflexion":4, "overflight":3, "overflog":3, "overflogged":3, "overflogging":4, "overflood":3, "overflorid":4, "overflour":3, "overflow":3, "overflown":3, "overflowable":5, "overflowingly":5, "overfluent":4, "overfluency":5, "overfly":3, "overflying":4, "overfold":3, "overfond":3, "overfondle":4, "overfoolish":4, "overforce":3, "overforced":3, "overforcing":4, "overforged":3, "overformed":3, "overformalize":5, "overformalized":5, "overformalizing":6, "overforward":4, "overfoul":3, "overfragile":4, "overfragmented":5, "overfrail":3, "overfrailty":4, "overfrank":3, "overfranchised":4, "overfraught":3, "overfree":3, "overfreedom":4, "overfreight":3, "overfrequent":4, "overfrequency":5, "overfrighten":4, "overfruitful":4, "overfrustration":5, "overfrugal":4, "overfrugality":6, "overfunctioning":5, "overfurnish":4, "overgamble":4, "overgarment":4, "overgarnish":4, "overgarrison":5, "overgeneralize":6, "overgeneralized":6, "overgeneralizing":7, "overgeneralization":8, "overgenerosity":7, "overgenerous":5, "overgenial":4, "overgentle":4, "overgently":4, "overgesticulate":6, "overgesticulated":7, "overgesticulating":7, "overgesticulation":7, "overgesticulative":7, "overgeniality":7, "overgifted":4, "overgild":3, "overgilded":4, "overgilding":4, "overgilt":3, "overgird":3, "overgirded":4, "overgirding":4, "overgirt":3, "overglad":3, "overglance":3, "overglanced":3, "overglancing":4, "overglaze":3, "overgloomily":5, "overgloominess":5, "overgloomy":4, "overglut":3, "overgoad":3, "overgovern":4, "overgrade":3, "overgraded":4, "overgrading":4, "overgraduated":6, "overgrasping":4, "overgrateful":4, "overgratified":5, "overgratification":7, "overgratify":5, "overgratifying":6, "overgratitude":5, "overgraze":3, "overgrazed":3, "overgrazing":4, "overgracious":4, "overgreasiness":5, "overgreasy":4, "overgreat":3, "overgreedily":5, "overgreediness":5, "overgreedy":4, "overgrew":3, "overgrieve":3, "overgrieved":3, "overgrieving":4, "overgrievous":4, "overgross":3, "overground":3, "overgrow":3, "overgrown":3, "overgrowth":3, "overgrowing":4, "overguilty":4, "overhand":3, "overhand knot":4, "overhanded":4, "overhandicap":5, "overhandicapped":5, "overhandicapping":6, "overhang":3, "overhanging":4, "overhandle":4, "overhappily":5, "overhappiness":5, "overhappy":4, "overhard":3, "overharden":4, "overharsh":3, "overharass":4, "overharassment":5, "overhardy":4, "overhastily":5, "overhastiness":5, "overhasty":4, "overhasten":4, "overhatted":4, "overhaughtily":5, "overhaughty":4, "overhaul":3, "overhead":3, "overhead camshaft":5, "overhead door":4, "overhead-valve engine":5, "overheads":3, "overheadiness":5, "overheady":4, "overheap":3, "overhear":3, "overheard":3, "overheartily":5, "overheartiness":5, "overhearty":4, "overhearer":4, "overhearing":4, "overheat":3, "overheavily":5, "overheaviness":5, "overheavy":4, "overhelpful":4, "overhigh":3, "overhomeliness":5, "overhomely":4, "overhonest":4, "overhonesty":5, "overhonor":4, "overhostile":4, "overhostility":6, "overhot":3, "overhuge":3, "overhumble":4, "overhumbleness":5, "overhung":3, "overhunt":3, "overhurried":4, "overhurry":4, "overhurrying":5, "overhuman":4, "overhumane":4, "overhumanize":5, "overhumanized":5, "overhumanizing":6, "overhumanity":6, "overhysterical":6, "overijssel":4, "overillustrate":5, "overillustrated":6, "overillustrating":6, "overillustration":6, "overillustrative":6, "overimaginative":7, "overimitate":5, "overimitated":6, "overimitating":6, "overimitation":6, "overimitative":6, "overimmunize":5, "overimmunized":5, "overimmunizing":6, "overimport":4, "overimportation":6, "overimpose":4, "overimposed":4, "overimposing":5, "overimpress":4, "overimpressibility":8, "overimpressible":6, "overimpressionability":9, "overimpressionable":7, "overimpressionableness":8, "overincline":4, "overinclined":4, "overinclinable":6, "overinclining":5, "overinclination":6, "overindividualism":8, "overindividualistic":9, "overindividualistically":11, "overindividualization":10, "overindulge":4, "overindulged":4, "overindulging":5, "overindulgence":5, "overindulgent":5, "overindulgently":6, "overindustrialism":7, "overindustrialize":7, "overindustrialized":7, "overindustrializing":8, "overindustrialization":9, "overinflate":4, "overinflated":5, "overinflating":5, "overinflation":5, "overinflationary":7, "overinfluence":5, "overinfluenced":5, "overinfluencing":6, "overinfluential":6, "overinhibit":5, "overinhibited":6, "overinsist":4, "overinsistence":5, "overinsistent":5, "overinsistency":6, "overinsolence":5, "overinsolent":5, "overinstruct":4, "overinstruction":5, "overinstructive":5, "overinsure":4, "overinsured":4, "overinsuring":5, "overintellectual":7, "overintellectualism":8, "overintellectualize":8, "overintellectualized":8, "overintellectualizing":9, "overintellectualization":10, "overintense":4, "overintensified":6, "overintensification":8, "overintensify":6, "overintensifying":7, "overintensity":6, "overinterest":5, "overinterested":6, "overinterference":6, "overinventoried":6, "overinvest":4, "overinvestment":5, "overinvolve":4, "overinvolved":4, "overinvolving":5, "overirrigation":6, "overissue":4, "overidentified":6, "overidentify":6, "overidentifying":7, "overidealism":6, "overidealistic":7, "overidealize":6, "overidealized":6, "overidealizing":7, "overidle":4, "overidly":4, "overidolatrous":6, "overiodize":5, "overiodized":5, "overiodizing":6, "overjade":3, "overjaded":4, "overjading":4, "overjealous":4, "overjocular":5, "overjocularity":7, "overjoy":3, "overjoyful":4, "overjoyous":4, "overjudicious":5, "overkeen":3, "overkick":3, "overkill":3, "overkind":3, "overlactate":4, "overlactated":5, "overlactating":5, "overlactation":5, "overlaid":3, "overlain":3, "overland":3, "overland":3, "overlap":3, "overlapped":3, "overlapping":4, "overlard":3, "overlarge":3, "overlascivious":6, "overlate":3, "overlather":4, "overlaud":3, "overlaudatory":6, "overlaudation":5, "overlavish":4, "overlax":3, "overlay":3, "overlaying":4, "overleaf":3, "overlearn":3, "overlearned":4, "overlegislate":5, "overlegislated":6, "overlegislating":6, "overlewd":3, "overliberal":5, "overliberalize":6, "overliberalized":6, "overliberalizing":7, "overliberality":7, "overliberalization":8, "overliberally":6, "overlie":3, "overlight":3, "overliking":4, "overlimit":4, "overline":3, "overlinger":4, "overliterarily":7, "overliterariness":7, "overliterary":6, "overlive":3, "overlived":3, "overliveliness":5, "overlively":4, "overliving":4, "overlicentious":5, "overload":3, "overloan":3, "overloath":3, "overloftily":5, "overloftiness":5, "overlofty":4, "overlogical":5, "overlogicality":7, "overlong":3, "overlook":3, "overlooker":4, "overloose":3, "overlord":3, "overloud":3, "overlove":3, "overloved":3, "overloving":4, "overlowness":4, "overloyal":4, "overloyalty":5, "overlush":3, "overlustiness":5, "overlusty":4, "overluscious":4, "overluxuriance":6, "overluxuriant":6, "overluxuriancy":7, "overluxurious":6, "overlubricate":5, "overlubricated":6, "overlubricating":6, "overlubrication":6, "overly":3, "overlying":4, "overmagnetic":5, "overmagnetically":7, "overmagnified":5, "overmagnification":7, "overmagnify":5, "overmagnifying":6, "overmagnitude":5, "overman":3, "overmanned":3, "overmanage":4, "overmanaged":4, "overmanaging":5, "overmanning":4, "overmantel":4, "overmany":4, "overmarch":3, "overmast":3, "overmaster":4, "overmasterful":5, "overmasteringly":6, "overmatch":3, "overmatter":4, "overmature":4, "overmean":3, "overmeasure":4, "overmeddle":4, "overmeek":3, "overmelt":3, "overmellow":4, "overmerciful":5, "overmerit":4, "overmerrily":5, "overmerriment":5, "overmerriness":5, "overmerry":4, "overmettled":4, "overmelodious":6, "overmighty":4, "overmild":3, "overmill":3, "overmilitaristic":7, "overmilitaristically":9, "overmitigate":5, "overmitigated":6, "overmitigating":6, "overmix":3, "overminute":4, "overmodernize":5, "overmodernized":5, "overmodernizing":6, "overmodernization":7, "overmodest":4, "overmodestly":5, "overmodesty":5, "overmodified":5, "overmodification":7, "overmodify":5, "overmodifying":6, "overmoist":3, "overmoisten":4, "overmortgage":4, "overmortgaged":4, "overmortgaging":5, "overmoral":4, "overmoralistic":6, "overmoralize":5, "overmoralized":5, "overmoralizing":6, "overmoralizingly":7, "overmourn":3, "overmournful":4, "overmobilize":5, "overmobilized":5, "overmobilizing":6, "overmonopolize":6, "overmonopolized":6, "overmonopolizing":7, "overmuch":3, "overmultiplied":5, "overmultiplication":7, "overmultiply":5, "overmultiplying":6, "overmystified":5, "overmystification":7, "overmystify":5, "overmystifying":6, "overnarrow":4, "overnationalize":6, "overnationalized":6, "overnationalizing":7, "overnationalization":8, "overnear":3, "overneat":3, "overneglect":4, "overneglectful":5, "overnegligence":5, "overnegligent":5, "overnervous":4, "overneutralize":5, "overneutralized":5, "overneutralizer":6, "overneutralizing":6, "overneutralization":7, "overnice":3, "overnight":3, "overnight telegram":6, "overnicety":5, "overnormal":4, "overnormalize":5, "overnormalized":5, "overnormalizing":6, "overnormality":6, "overnormalization":7, "overnourish":4, "overnourishingly":6, "overnourishment":5, "overnoble":4, "overnobleness":5, "overnurse":3, "overnursed":3, "overnursing":4, "overnumerous":5, "overobject":4, "overobjectified":6, "overobjectification":8, "overobjectify":6, "overobjectifying":7, "overobsequious":6, "overoffend":4, "overoffensive":5, "overofficious":5, "overoptimism":5, "overoptimist":5, "overoptimistic":6, "overoptimistically":8, "overorganize":5, "overorganized":5, "overorganizing":6, "overorganization":7, "overorganpassing":6, "overorganpast":5, "overornament":5, "overornamental":6, "overornamentality":8, "overoxidize":5, "overoxidized":5, "overoxidizing":6, "overoxidization":7, "overobese":4, "overobesity":6, "overobedience":6, "overobedient":6, "overpack":3, "overpaid":3, "overpained":3, "overpainful":4, "overpamper":4, "overpark":3, "overpartial":4, "overparticular":6, "overpartiality":7, "overpass":3, "overpassionate":5, "overpay":3, "overpaying":4, "overpayment":4, "overpatient":4, "overpatriotic":6, "overpatriotism":6, "overpatriotically":8, "overpensive":4, "overpeople":4, "overperemptorily":7, "overperemptoriness":7, "overperemptory":6, "overpersecute":5, "overpersecuted":6, "overpersecuting":6, "overpersuade":4, "overpersuasion":5, "overpessimism":5, "overpessimistic":6, "overpessimistically":8, "overpet":3, "overpenalize":5, "overpenalized":5, "overpenalizing":6, "overpenalization":7, "overphilosophize":6, "overphilosophized":6, "overphilosophizing":7, "overpictorialize":7, "overpictorialized":7, "overpictorializing":8, "overpitch":3, "overpiteous":5, "overplain":3, "overplant":3, "overplausible":5, "overplausibleness":6, "overplay":3, "overplease":3, "overpleased":3, "overpleasing":4, "overplenitude":5, "overplenteous":5, "overplentiful":5, "overplenty":4, "overplied":3, "overplow":3, "overplump":3, "overplus":3, "overply":3, "overplying":4, "overpolish":4, "overpolitic":5, "overpollinate":5, "overpollinated":6, "overpollinating":6, "overponderous":5, "overpopular":5, "overpopularity":7, "overpopulate":5, "overpopulated":6, "overpopulating":6, "overpopulation":6, "overpopulous":5, "overpositive":5, "overpower":4, "overpowerful":5, "overpowering":5, "overpoweringly":6, "overpoweringness":6, "overpoeticize":6, "overpoeticized":6, "overpoeticizing":7, "overpolemical":6, "overpolice":4, "overpoliced":4, "overpolicing":5, "overpolitical":6, "overpotent":4, "overpotency":5, "overpotential":5, "overpraise":3, "overpraised":3, "overpraising":4, "overpratice":4, "overpraticed":4, "overpraticing":5, "overpress":3, "overprecise":4, "overprecision":5, "overpreoccupation":7, "overpreoccupied":6, "overpreoccupy":6, "overpreoccupying":7, "overpresumption":5, "overpresumptive":5, "overpresumptuous":6, "overprice":3, "overpriced":3, "overpricing":4, "overprint":3, "overprize":3, "overprized":3, "overprizing":4, "overprompt":3, "overpromise":4, "overpromised":4, "overpromising":5, "overprominence":5, "overprominent":5, "overprone":3, "overproof":3, "overprosperous":5, "overprove":3, "overproved":3, "overproving":4, "overprovident":5, "overprovocation":6, "overprocrastination":7, "overproficient":5, "overproficiency":6, "overprolific":5, "overprolifically":7, "overprolix":4, "overprolixity":6, "overpronounce":4, "overpronounced":4, "overpronouncing":5, "overpronunciation":7, "overproportion":5, "overproportionate":6, "overproportionately":7, "overprotect":4, "overprotection":5, "overprotract":4, "overprotraction":5, "overprovide":4, "overprovided":5, "overproviding":5, "overprovision":5, "overprovoke":4, "overprovoked":4, "overprovoking":5, "overprune":3, "overpruned":3, "overpruning":4, "overpsychologize":6, "overpsychologized":6, "overpsychologizing":7, "overpublicity":6, "overpublicize":5, "overpublicized":5, "overpublicizing":6, "overpunish":4, "overpunishment":5, "overpurchase":4, "overpurchased":4, "overpurchasing":5, "overpuissant":5, "overqualified":5, "overqualification":7, "overqualify":5, "overqualifying":6, "overquickly":4, "overquiet":4, "overrake":3, "overraked":3, "overraking":4, "overran":3, "overrank":3, "overrash":3, "overrate":3, "overrated":4, "overrating":4, "overrational":5, "overrationalize":6, "overrationalized":6, "overrationalizing":7, "overrationalization":8, "overreach":3, "overreadily":5, "overreadiness":5, "overready":4, "overregiment":5, "overregimentation":7, "overregulate":5, "overregulated":6, "overregulating":6, "overregulation":6, "overrepresent":5, "overrepresentative":7, "overrepresentation":7, "overreprimand":5, "overresolute":5, "overreact":4, "overreaction":5, "overreactive":5, "overrealism":5, "overrealistic":6, "overrealistically":8, "overreduce":4, "overreduced":4, "overreducing":5, "overreduction":5, "overrefine":4, "overrefinement":5, "overreflection":5, "overreflective":5, "overrelax":4, "overreliance":5, "overreliant":5, "overreligious":5, "overreligiosity":8, "overremiss":4, "overrepress":4, "overreserved":4, "overreservedly":6, "overreservedness":6, "overresist":4, "overrestrain":4, "overrestraint":4, "overrestrict":4, "overrestriction":5, "overretention":5, "overreward":4, "overrich":3, "override":3, "overridden":4, "overrider":4, "overriding":4, "overrife":3, "overrigged":3, "overrighteous":4, "overrigid":4, "overrigorous":5, "overripe":3, "overripen":4, "overrigidity":6, "overroast":3, "overrode":3, "overrough":3, "overromanticize":6, "overromanticized":6, "overromanticizing":7, "overrude":3, "overrule":3, "overruled":3, "overruler":4, "overruling":4, "overrulingly":5, "overrun":3, "overrunning":4, "oversacrificial":6, "oversad":3, "oversalt":3, "oversalty":4, "oversanguine":4, "oversate":3, "oversated":4, "oversating":4, "oversaturate":5, "oversaturated":6, "oversaturating":6, "oversaturation":6, "oversaucy":4, "oversaw":3, "oversatiety":6, "overscented":4, "oversceptical":5, "overscepticism":5, "overscore":3, "overscored":3, "overscoring":4, "overscrub":3, "overscrubbed":3, "overscrubbing":4, "overscruple":4, "overscrupulous":5, "overscrupulously":6, "overscrupulousness":6, "overseas":3, "overseas telegram":6, "overseason":4, "oversee":3, "overseed":3, "overseen":3, "overseeing":4, "oversell":3, "overselling":4, "oversensible":5, "oversensibleness":6, "oversensitize":5, "oversensitized":5, "oversensitizing":6, "oversentimental":6, "oversentimentalism":7, "oversentimentalize":7, "oversentimentalized":7, "oversentimentalizing":8, "oversentimentality":8, "overservile":4, "overservility":6, "overset":3, "oversetter":4, "oversettle":4, "oversettlement":5, "oversew":3, "oversewed":3, "oversewing":4, "oversexed":3, "oversecrete":4, "oversecreted":5, "oversecreting":5, "oversecretion":5, "oversecure":4, "oversecured":4, "oversecuring":5, "oversecurly":5, "oversecurity":6, "oversedation":5, "overseer":4, "overserene":4, "overserenity":6, "overserious":5, "oversevere":4, "overseverity":6, "overshade":3, "overshaded":4, "overshading":4, "overshadow":4, "overshine":3, "overshined":3, "overshining":4, "overshirt":3, "overshoe":3, "overshoot":3, "overshooting":4, "overshort":3, "overshorten":4, "overshot":3, "overshrink":3, "overside":3, "oversight":3, "oversimple":4, "oversimpleness":5, "oversimplicity":6, "oversimplified":5, "oversimplification":7, "oversimplify":5, "oversimplifying":6, "oversize":3, "oversized":3, "oversilence":4, "oversilent":4, "overskeptticism":5, "overskeptical":5, "overskirt":3, "overslack":3, "overslaugh":3, "overslavish":4, "oversleep":3, "oversleeping":4, "oversleeve":3, "overslept":3, "overslight":3, "overslip":3, "overslipt":3, "overslipping":4, "overslow":3, "oversmooth":3, "oversoak":3, "oversoap":3, "oversoft":3, "oversoften":4, "oversold":3, "oversolemn":4, "oversoothing":4, "oversorrowful":5, "oversoul":3, "oversour":3, "oversocial":4, "oversocialize":5, "oversocialized":5, "oversocializing":6, "oversolemnity":6, "oversolicitous":6, "oversolidified":6, "oversolidification":8, "oversolidify":6, "oversolidifying":7, "oversophisticated":7, "oversophistication":7, "oversparing":4, "overspacious":4, "overspeculate":5, "overspeculated":6, "overspeculating":6, "overspeculation":6, "overspeculative":6, "overspeed":3, "overspeedily":5, "overspeediness":5, "overspeedy":4, "overspend":3, "overspending":4, "overspent":3, "overspecialize":5, "overspecialized":5, "overspecializing":6, "overspecialization":7, "overspice":3, "overspiced":3, "overspicing":4, "overspill":3, "overspilling":4, "overspilt":3, "overspin":3, "overspread":3, "overspreading":4, "oversqueamish":4, "overstaff":3, "overstale":3, "overstand":3, "overstarch":3, "overstate":3, "overstay":3, "overstayed":3, "oversteadfast":4, "oversteadily":5, "oversteadiness":5, "oversteady":4, "oversteer":3, "overstep":3, "overstepped":3, "overstepping":4, "overstiff":3, "overstiffen":4, "overstimulate":5, "overstimulated":6, "overstimulating":6, "overstimulation":6, "overstimulative":6, "overstir":3, "overstirred":3, "overstirring":4, "overstitch":3, "overstock":3, "overstocking":4, "overstore":3, "overstored":3, "overstoring":4, "overstout":3, "overstowed":3, "overstraight":3, "overstraighten":4, "overstrain":3, "overstrengthen":4, "overstress":3, "overstretch":3, "overstrict":3, "overstride":3, "overstridden":4, "overstriding":4, "overstrike":3, "overstringed":3, "overstringing":4, "overstrive":3, "overstriven":4, "overstriving":4, "overstridence":4, "overstrident":4, "overstridency":5, "overstrode":3, "overstrong":3, "overstrove":3, "overstrung":3, "overstudied":4, "overstudy":4, "overstudying":5, "overstuff":3, "overstuffed":3, "overstudious":5, "oversubscribe":4, "oversubscriber":5, "oversubscription":5, "oversubtle":4, "oversubtlety":5, "oversubtly":4, "oversufficient":5, "oversufficiency":6, "oversup":3, "oversupped":3, "oversupping":4, "oversupplied":4, "oversupply":4, "oversupplying":5, "oversure":3, "oversurety":4, "oversusceptibility":8, "oversusceptible":6, "oversusceptibleness":7, "oversuspicious":5, "oversuperstitious":6, "oversweet":3, "oversweetly":4, "oversweetness":4, "oversystematic":6, "oversystematically":8, "oversystematicalness":8, "oversystematize":6, "oversystematized":6, "oversystematizing":7, "overtake":3, "overtalkative":5, "overtalker":4, "overtame":3, "overtart":3, "overtask":3, "overtaught":3, "overtax":3, "overtaxation":5, "overteach":3, "overteaching":4, "overtechnical":5, "overtechnicality":7, "overtense":3, "overtender":4, "overtension":4, "overtedious":5, "overtenacity":6, "overtenacious":5, "overtheatrical":6, "overtheatrically":7, "overtheatricalness":7, "overtheorize":5, "overtheorized":5, "overtheorizing":6, "overtheorization":7, "overthick":3, "overthin":3, "overthoughtful":4, "overthriftily":5, "overthriftiness":5, "overthrifty":4, "overthrong":3, "overthrow":3, "overthrower":4, "overthrust":3, "overtight":3, "overtime":3, "overtimed":3, "overtimbered":4, "overtimid":4, "overtiming":4, "overtimorous":5, "overtint":3, "overtinsel":4, "overtinseled":4, "overtinselled":4, "overtinseling":5, "overtinselling":5, "overtipple":4, "overtire":3, "overtired":3, "overtiring":4, "overtimidity":6, "overtoil":3, "overtolerance":5, "overtolerant":5, "overton":3, "overtone":3, "overtook":3, "overtop":3, "overtopped":3, "overtopping":4, "overtorture":4, "overtortured":4, "overtorturing":5, "overtrade":3, "overtread":3, "overtreatment":4, "overtrick":3, "overtrim":3, "overtrimmed":3, "overtrimming":4, "overtrouble":4, "overtrue":3, "overtrump":3, "overtrust":3, "overtrustful":4, "overtruthful":4, "overtruly":4, "overture":3, "overtured":3, "overturn":3, "overturing":4, "overtwist":3, "overunionize":5, "overunionized":5, "overunionizing":6, "overurge":3, "overurged":3, "overurging":4, "overurbanize":5, "overurbanized":5, "overurbanizing":6, "overurbanization":7, "overuse":3, "overused":3, "overusing":4, "overvaliant":4, "overvalue":4, "overvalued":4, "overvaluable":6, "overvaluableness":7, "overvaluation":6, "overvaluing":5, "overvaried":4, "overvariation":6, "overvary":4, "overvarying":5, "overvariety":6, "overventilate":5, "overventilated":6, "overventilating":6, "overventilation":6, "overventuresome":5, "overventurous":5, "overvehemence":5, "overvehement":5, "overview":3, "overvigorous":5, "overviolent":5, "overvoltage":4, "overwarmed":3, "overwarily":5, "overwariness":5, "overwary":4, "overwatch":3, "overweak":3, "overwealth":3, "overwealthy":4, "overwearied":4, "overweary":4, "overwearying":5, "overween":3, "overweener":4, "overweening":4, "overweeningly":5, "overweeningness":5, "overweigh":3, "overweight":3, "overwet":3, "overwetly":3, "overwetted":4, "overwetting":4, "overwhelm":3, "overwhelming":4, "overwhelmingly":5, "overwhelmingness":5, "overwhip":3, "overwhipped":3, "overwhipping":4, "overwide":3, "overwild":3, "overwilling":4, "overwily":4, "overwind":3, "overwinding":4, "overwinter":4, "overwithered":4, "overword":3, "overwore":3, "overwork":3, "overworking":4, "overworn":3, "overwound":3, "overwrite":3, "overwrought":3, "overzealous":4, "overzealously":5, "overzealousness":5, "oveta":3, "ovidian":4, "oviedo":3, "oviferous":4, "ovine":2, "ovipara":4, "oviparous":4, "oviparously":5, "oviduct":3, "oviform":3, "oviparity":5, "oviposit":4, "ovipositor":5, "oviposition":5, "ovisac":3, "ovisaclike":4, "ovoid":2, "ovolo":3, "ovotestis":4, "ovovitellin":5, "ovoviviparism":6, "ovoviviparous":6, "ovoviviparously":7, "ovoviviparity":7, "ovum":2, "ovular":3, "owerri":3, "owicim":3, "owosso":3, "oyama":3, "oyer":2, "oyes":2, "oyez":2, "oyo":2, "ozark":2, "ozark mountains":4, "ozark plateau":4, "ozarks":2, "ozenfant":3, "ozone":2, "ozone layer":4, "ozonic":3, "ozoniser":4, "ozonize":3, "ozonized":3, "ozonizer":4, "ozonizing":4, "ozocerite":4, "ozokerite":4, "ozona":3, "ozonide":3, "ozoniferous":5, "ozonise":3, "ozonize":3, "ozonisation":5, "ozonolysis":5, "ozonous":3, "ozonosphere":4, "ozys":4, "ogamous":5, "ogamy":5, "ology":5, "ocyte":4, "ogenesis":6, "ogenetic":6, "okinetic":6, "okinesis":6, "olite":4, "olith":4, "olitic":5, "ological":6, "ophore":4, "ophoric":5, "ophorectomize":7, "ophorectomy":7, "ophyte":4, "ophytic":5, "osperm":4, "osphere":4, "osphore":4, "osporic":5, "otid":4, "p-celtic":2, "p-n junction":3, "p-type":1, "p/c":1, "p/c":1, "p/n":1, "pa system":3, "paal":1, "paasikivi":4, "paba":1, "pabx":1, "pablum":2, "pabulum":3, "pac":1, "pac":1, "pace":1, "paced":1, "pacemaker":3, "pacesetter":3, "paceway":2, "pachelbel":3, "pachmann":2, "pachouli":3, "pachyderm":3, "pachydermal":4, "pachydermatous":5, "pachydermatously":6, "pachydermic":4, "pachydermoid":4, "pachydermous":4, "pachylosis":4, "pachysandra":4, "pachytene":3, "pack":1, "package":2, "package store":3, "packaged":2, "packaging":3, "packable":3, "packer":2, "packet":2, "packhorse":2, "packing":2, "packing box":3, "packing fraction":4, "packman":2, "packplane":2, "packsack":2, "packsaddle":3, "packthread":2, "packthreaded":3, "packtrain":2, "pact":1, "pacceka":3, "paccha":2, "pacer":2, "pacing":2, "pacified":3, "pacifism":3, "pacifist":3, "pacifistic":4, "pacifistically":6, "pacification":5, "pacifier":4, "pacify":3, "pacifying":4, "paction":2, "pactional":3, "pactionally":4, "pad":1, "padded cell":3, "padding":2, "paddington":3, "paddle":2, "paddle wheel":3, "paddle-wheel":2, "paddler":2, "paddleboard":3, "paddlefish":3, "paddock":2, "paddy":2, "paddy":2, "paddy wagon":4, "paddymelon":4, "paddywack":3, "paddywhack":3, "padeye":2, "pademelon":4, "padlock":2, "padma shri":3, "padnag":2, "padsaw":2, "padua":3, "paduan":3, "paduasoy":4, "paedagogy":4, "paederast":3, "paederastic":4, "paederastically":6, "paederasty":4, "paestum":2, "paean":2, "paeanism":3, "paediatrics":4, "paediatrician":5, "paedology":4, "paedobaptism":4, "paedobaptist":4, "paedogenesis":5, "paedogenetic":5, "paedomorphosis":5, "paedophilia":5, "paenula":3, "paeon":2, "paeonia":4, "paeony":3, "page":1, "page":1, "pageboy":2, "pagedale":2, "pagne":1, "pageant":2, "pageantry":3, "paget":2, "paging":2, "paginal":3, "paginate":3, "paginated":4, "paginating":4, "pagodite":3, "pah":1, "pahlavi":3, "pahlevi":3, "pai-loo":1, "paid":1, "paid-in":1, "paignton":2, "paik":1, "paiker":2, "pail":1, "pailful":2, "paillasse":2, "paillette":2, "paillettes":2, "pain":1, "paine":1, "pained":1, "painesville":2, "pains":1, "painstaking":3, "painstakingly":4, "painstakingness":4, "paint":1, "paintsville":2, "paintbox":2, "paintbrush":2, "painted":2, "painted desert":4, "painted lady":4, "painted woman":4, "painter":2, "painter's colic":4, "painterly":3, "painting":2, "paintpot":2, "painty":2, "painful":2, "painfully":3, "painfulness":3, "painkiller":3, "painkiller":3, "painless":2, "pair":1, "pair production":4, "pair royal":3, "pairle":1, "pairs":1, "paisley":2, "paisley":2, "paidology":4, "paigle":2, "paisa":2, "paisano":3, "paisiello":3, "paiute":2, "pak":1, "pak-choi cabbage":3, "paki":2, "paki-bashing":3, "pakse":2, "pal":1, "pal":1, "pal":1, "pale":1, "paleface":2, "palely":2, "paletot":2, "paleways":2, "palewise":2, "pall":1, "pallbearer":3, "palm":1, "palm civet":3, "palm sugar":3, "palm sunday":3, "palm vaulting":3, "palmer":2, "palmer":2, "palmer archipelago":7, "palmer land":3, "palmer peninsula":6, "palmerston":3, "palmerston north":4, "palmerton":3, "palmerworm":3, "palmgren":2, "palmist":2, "palmistry":3, "palmier":3, "palmiest":3, "palmy":2, "palp":1, "palsgrave":2, "palsgravine":3, "palace":2, "palace revolution":6, "palaced":2, "palacelike":3, "palaeanthropic":5, "palaearctic":4, "palaeethnology":6, "palaeography":5, "palaeontography":6, "palaeontology":6, "palaeoanthropology":8, "palaeobotany":6, "palaeocene":4, "palaeoclimatology":8, "palaeoethnobotany":8, "palaeogene":4, "palaeolith":4, "palaeolithic":5, "palaeolithic man":6, "palaeomagnetism":6, "palaeozoic":5, "palaeozoology":7, "palais glide":3, "palankeen":3, "palankeener":4, "palankeeningly":5, "palanquin":3, "palanquiner":4, "palanquiningly":5, "palate":2, "palateless":3, "palatelike":3, "palatability":6, "palatable":4, "palatableness":5, "palatably":4, "paladin":3, "palatal":3, "palatalise":4, "palatalism":4, "palatalize":4, "palatalized":4, "palatality":5, "palatalization":6, "palatine":3, "palatine":3, "paler":2, "palest":2, "palestine":3, "palestine liberation organization":12, "palestinian":5, "palet":2, "palette":2, "palette knife":3, "palettelike":3, "paletot":3, "palfrey":2, "palimpsest":3, "paling":2, "palindrome":3, "palindromic":4, "palindromically":6, "palingenesis":5, "palingenesist":5, "palingenetically":7, "palingenesian":6, "palish":2, "palikar":3, "palilicium":5, "palinode":3, "palinodist":4, "palinurus":4, "palisade":3, "palisades":3, "palisades":3, "palisaded":4, "palisading":4, "palisado":4, "palkee":2, "palki":2, "palladic":3, "pallas":2, "pallas athena":5, "palladio":3, "palladize":3, "palladized":3, "palladizing":4, "palladia":4, "palladian":4, "palladiized":4, "palladiizing":5, "palladinize":4, "palladium":4, "palladium":4, "palladiumize":5, "palladiumized":5, "palladiumizing":6, "palladous":3, "pallet":2, "pallet knife":3, "pallette":2, "palletization":5, "palliasse":2, "pallid":2, "pallidly":3, "pallidness":3, "palling":2, "pallia":3, "pallial":3, "palliasse":3, "palliate":3, "palliated":4, "palliating":4, "palliation":4, "palliative":4, "palliator":4, "pallium":3, "pallor":2, "pally":2, "palma":2, "palmar":2, "palmas":2, "palmate":2, "palmately":3, "palmated":3, "palmaceous":3, "palmary":3, "palmation":3, "palmer":2, "palmette":2, "palmetto":3, "palmiste":2, "palmitic":3, "palmitic acid":5, "palmira":3, "palmiro":3, "palmitate":3, "palmitin":3, "palmyra":3, "palmyra":3, "palo alto":4, "palomar":3, "palometa":4, "palomino":4, "paloverde":4, "palpate":2, "palpated":3, "palpating":3, "palpability":5, "palpable":3, "palpableness":4, "palpably":3, "palpation":3, "palpatory":4, "palpebral":3, "palpebrate":3, "palpi":2, "palpitant":3, "palpitate":3, "palpitated":4, "palpitating":4, "palpitatingly":5, "palpitation":4, "palpus":2, "palsied":2, "palstaff":2, "palstave":2, "palsy":2, "palsying":3, "palsylike":3, "palter":2, "palterer":3, "paltrier":3, "paltriest":3, "paltrily":3, "paltriness":3, "paltry":2, "paludism":3, "paly":2, "paly-bendy":3, "palynology":5, "palynological":6, "palynologically":7, "pam":1, "pam":1, "pamph":1, "pamaquin":3, "pamaquine":3, "pamela":3, "pamlico sound":4, "pampa":2, "pampas":2, "pampas grass":3, "pamper":2, "pamperedly":3, "pamperedness":3, "pamperer":3, "pampean":3, "pampeluna":4, "pampero":3, "pamphlet":2, "pamphletary":4, "pamphleteer":3, "pamphletize":3, "pamphletized":3, "pamphletizing":4, "pamphrey":2, "pamphylia":4, "pamplegia":3, "pamplona":3, "pampre":2, "pamprodactylism":5, "pan":1, "pan":1, "pan american union":7, "pan-african":3, "pan-africanism":4, "pan-africanist":4, "pan-arab":2, "pan-arabic":3, "pan-arabism":3, "pan-arabism":3, "pan-american":4, "pan-americanism":5, "pan-european":4, "pan-german":2, "pan-germanic":3, "pan-germanism":3, "pan-islamism":3, "pan-slavic":2, "pan-slavism":2, "pan-teutonism":3, "pane":1, "paned":1, "paneless":2, "pang":1, "pankhurst":2, "panne":1, "pant":1, "pants":1, "pantie":2, "panties":2, "pantingly":3, "pantler":2, "pantsuit":2, "panty girdle":4, "pantywaist":3, "panamic":3, "panathenaea":5, "panathenaean":5, "panathenaic":5, "panatrophy":4, "panacea":4, "panacea":4, "panama":3, "panama canal":5, "panama canal zone":6, "panama city":5, "panama hat":4, "panatella":4, "panatrophic":4, "pancake":2, "pancake day":3, "pancake ice":3, "pancarditis":4, "panchaia":3, "panchax":2, "panchatantra":4, "panchayat":3, "panchen lama":4, "panchromatic":4, "panchromatism":4, "pancosmism":3, "pancratic":3, "pancratis":3, "pancratia":4, "pancratium":4, "pancreas":3, "pancreatic":4, "pancreatic juice":5, "pancreatectomize":6, "pancreatin":4, "pancreatitis":5, "pancreatotomy":6, "panda":2, "panda car":3, "pandareus":4, "pandanaceous":4, "pandanus":3, "pandanuses":4, "pandarus":3, "pandavas":3, "pandect":2, "pandemic":3, "pander":2, "panderer":3, "pandean":3, "pandemicity":5, "pandemia":4, "pandemos":3, "pandemoniac":5, "pandemonian":5, "pandemoniacal":6, "pandemonium":5, "pandiculation":5, "pandit":2, "pandit":2, "pandion":3, "pandore":2, "pandore":2, "pandour":2, "pandowdy":3, "pandora":3, "pandora":3, "pandrosos":3, "pandurate":3, "panduriform":4, "pandy":2, "pandybat":3, "panel":2, "panel beater":4, "panel heating":4, "panel pin":3, "panel saw":3, "panel truck":3, "panel van":3, "paneled":2, "panelled":2, "panelboard":3, "paneling":3, "panelist":3, "panelling":3, "panellist":3, "panettone":4, "panegyric":4, "panegyrise":4, "panegyrize":4, "panegyrized":4, "panegyrizing":5, "panetire":4, "panfish":2, "panfishes":3, "panfried":2, "panfrying":3, "panga":2, "pangaea":3, "pangenesis":4, "pangenetic":4, "pangenetically":6, "pango pango":4, "pangolin":3, "panguingue":3, "panhandle":3, "panhandler":3, "panhead":2, "panheaded":3, "panhellenic":4, "panhellenic":4, "panhellenicking":5, "panhellenism":4, "panic":2, "panic":2, "panic grass":3, "panic-stricken":3, "panic-struck":2, "panicky":3, "panicmonger":4, "panier":2, "panicle":3, "panicled":3, "panjandrum":3, "panjabi":3, "panjim":2, "panleucopenia":6, "panleukopenia":6, "panlogical":4, "panlogism":3, "panlogist":3, "panlogistically":6, "panmixis":3, "panmixia":4, "panmunjom":3, "panmunjon":3, "pannage":2, "pannicular":4, "pannier":2, "panniered":2, "panning":2, "pannier":3, "pannikin":3, "pannikin boss":4, "pannini":3, "pannonia":4, "pannonian":4, "pannus":2, "panomphaeus":4, "panoptes":3, "panoptic":3, "panoptical":4, "panopeus":3, "panoply":3, "panorama":4, "panoramic":4, "panoramic sight":5, "panoramically":6, "panorama":4, "panpipe":2, "panpipes":2, "panplegia":4, "panpsychic":3, "panpsychist":3, "panpsychistic":4, "pansil":2, "pansophic":3, "pansophism":3, "pansophically":5, "pansophist":3, "pansophy":3, "panspermia":4, "pansy":2, "pansy":2, "pantagruel":4, "pantagraph":3, "pantagruel":4, "pantagruelism":5, "pantagruelist":5, "pantagruelian":6, "pantagruelically":7, "pantalets":3, "pantalettes":3, "pantaletted":4, "pantaloon":3, "pantaloons":3, "pantechnicon":4, "pantelegraph":4, "pantelleria":5, "panter":2, "pantelegraphy":5, "panther":2, "pantheism":3, "pantheistic":4, "pantheistical":5, "pantheistically":6, "pantheon":3, "pantheon":3, "pantheonic":4, "panthous":3, "panthon":4, "pantile":2, "pantihose":3, "pantisocracy":5, "panto":2, "pantocrator":4, "pantoffle":3, "pantofle":3, "pantographer":4, "pantography":4, "pantologist":4, "pantology":4, "pantonal":3, "pantoum":2, "pantoufle":3, "pantograph":3, "pantographic":4, "pantographically":6, "pantologic":4, "pantomime":3, "pantomimed":3, "pantomimic":4, "pantomimicry":5, "pantomiming":4, "pantomimist":4, "pantomimically":6, "pantonality":5, "pantothenic acid":6, "pantothere":3, "pantropic":3, "pantropical":4, "pantropically":5, "pantry":2, "pantryman":3, "panurge":2, "panurgic":3, "panza":2, "panzer":2, "paoshan":2, "paoting":2, "paotow":2, "pap":1, "papermch":4, "paphlagonia":5, "papeterie":3, "papillar":3, "papillary":4, "papillon":3, "papillose":3, "papillosity":5, "papillote":3, "papilloma":4, "papillomata":5, "papillomatous":5, "papillomatosis":6, "papism":2, "paplike":2, "pappenheimer":4, "pappier":3, "pappiest":3, "pappoose":2, "pappose":2, "pappous":2, "pappus":2, "pappy":2, "paprika":3, "papule":2, "papua":3, "papuan":3, "papula":3, "papular":3, "papulose":3, "papyraceous":4, "papyrologist":5, "papyrology":5, "paplonn":6, "par":1, "par":1, "par avion":3, "par excellence":4, "par value":3, "parch":1, "parchesi":2, "parchable":3, "parchedly":3, "parchedness":3, "parchingly":3, "parchised":2, "parchising":3, "parchment":2, "parchmentize":3, "parchmentized":3, "parchmentizing":4, "pard":1, "pardine":2, "pardner":2, "pare":1, "paren":1, "parging":2, "park":1, "park":1, "park savanna":4, "parkesburg":2, "parking":2, "parking disc":3, "parking lot":3, "parking meter":4, "parking orbit":4, "parking ticket":4, "parkland":2, "parklike":2, "parkway":2, "parky":2, "parl":1, "parle":1, "parleyvoo":3, "parotid":2, "parr":1, "parr":1, "pars":1, "parse":1, "parsable":3, "parser":2, "parsing":2, "parsley":2, "parsley piert":3, "parsleylike":3, "parsnip":2, "parsva":2, "part":1, "part exchange":3, "part-timer":2, "part-writing":2, "parts":1, "parts of holland":4, "parts of kesteven":5, "parts of lindsey":4, "parted":2, "parting":2, "parting strip":3, "partible":3, "partlet":2, "partly":2, "partner":2, "partners":2, "partnerless":3, "partnership":3, "para-aminobenzoic acid":9, "para-cymene":3, "para-nitrophenol":5, "para-phenetidine":5, "para-thor-mone":2, "para-toluidine":5, "parachronistic":5, "paracetaldehyde":6, "paraesthesia":4, "paraesthesia":5, "paraffin":3, "paraffin wax":4, "paraffine":3, "paraffined":3, "paraffinic":4, "paraffining":4, "paraffinize":4, "paraffinized":4, "paraffinizing":5, "paraffinoid":4, "paraison":3, "paraldehyde":4, "parallactic":4, "parallactically":6, "parallax":3, "parallel":3, "parallel bars":4, "parallel turn":4, "paralleled":3, "parallelled":3, "parallelable":5, "parallelepipedic":7, "parallelepipedon":7, "parallelepiped":6, "parallelepipedon":7, "paralleling":4, "parallelise":4, "parallelised":4, "parallelism":4, "parallelising":5, "parallelize":4, "parallelized":4, "parallelizing":5, "parallelization":6, "parallelless":4, "parallelling":4, "parallelly":4, "parallelogram":5, "parallelogram rule":6, "parallelopiped":6, "paramatman":4, "paramnesia":4, "paramnesia":5, "paraph":2, "paraxial":4, "parabiosis":5, "parablast":3, "parablastic":4, "parable":3, "parabolic":4, "parabolic aerial":7, "parabolical":5, "parabolicalism":6, "parabolically":6, "parabrake":3, "paracasein":4, "paracasein":5, "paracelsic":4, "paracelsist":4, "paracelsistic":5, "paracelsian":5, "paracelsianism":6, "paracelsus":4, "paracentesis":5, "parachor":3, "parachute":3, "parachuted":4, "parachuter":4, "parachutic":4, "parachuting":4, "parachutism":4, "parachutist":4, "paraclete":3, "paraclete":3, "paracusia":4, "paracusic":4, "paracusis":4, "paracystitis":5, "paracyesis":5, "paradiddle":4, "paradigm":3, "paradigmatic":5, "paradigmatically":7, "paradise":3, "paradise":3, "paradise fish":4, "paradisiac":5, "paradisaic":5, "paradisaical":6, "paradisiacal":6, "parados":3, "paradox":3, "paradoxal":4, "paradoxical":5, "paradoxical sleep":6, "paradoxicality":7, "paradoxically":6, "paradoxicalness":6, "paradoxology":6, "paradrop":3, "paradropped":3, "paradropping":4, "paraform":3, "paraformaldehyde":6, "paragenesis":5, "parageusia":4, "parageusic":4, "paragenetic":5, "paragenesia":5, "paragenesia":6, "paraglider":4, "paraglossa":4, "paraglossae":4, "paraglossate":4, "paraglyphas":3, "paragogue":3, "paragogic":4, "paragogically":6, "paragon":3, "paragonless":4, "paragould":3, "paragoge":4, "paragraph":3, "paragrapher":4, "paragraphic":4, "paragraphism":4, "paragraphist":4, "paragraphia":5, "paragraphical":5, "paragraphistical":6, "paraguay":3, "paraguay tea":4, "paraguayan":4, "parahydrogen":5, "parakeet":3, "paralanguage":4, "paraleipsis":4, "paralexic":4, "paralexia":5, "paralipsis":4, "paralipomena":6, "paralipomenon":6, "paralyse":3, "paralysed":3, "paralyser":4, "paralysing":4, "paralytic":4, "paralyze":3, "paralyzant":4, "paralyzer":4, "paralyzingly":5, "paralyzation":5, "paramagnet":4, "paramagnetic":5, "paramagnetism":5, "paramaribo":5, "paramatta":4, "paramedic":4, "paramedical":5, "parament":3, "paraments":3, "paramenta":4, "parametric":4, "parametric amplifier":8, "paramecium":5, "paramilitary":6, "paramo":3, "paramorph":3, "paramorphic":4, "paramorphine":4, "paramorphism":4, "paramorphous":4, "paramount":3, "paramount":3, "paramountcy":4, "paramountly":4, "paramour":3, "paranasal":4, "paraneed":3, "parano":3, "paranoeac":4, "paranoid":3, "paranoia":4, "paranoiac":4, "paranormal":4, "paranymph":3, "paraparesis":5, "parapet":3, "parapeted":4, "parapetless":4, "paraphernalia":5, "paraphernalia":6, "paraphrase":3, "paraphrast":3, "paraphrasable":5, "paraphraser":4, "paraphrastic":4, "paraphrastically":6, "paraphyllia":5, "paraphyllium":5, "paraplegia":4, "paraplegic":4, "paraplegia":5, "parapodia":5, "parapodial":5, "parapodium":5, "parapraxis":4, "paraprofessional":6, "parapsychology":6, "parapsychological":7, "paraquat":3, "parasang":3, "parasceninia":6, "parascenium":5, "paraselene":5, "paraselenic":5, "parashah":3, "parashoth":3, "parasite":3, "parasite drag":4, "parasitic":4, "parasitism":4, "parasitical":5, "parasitically":6, "parasiticalness":6, "parasiticide":5, "parasiticidal":6, "parasitology":6, "parasitize":4, "parasitized":4, "parasitizing":5, "parasitologist":6, "parasitological":7, "parasitosis":5, "parasol":3, "parasoled":3, "parastas":3, "parasympathetic":6, "parasynapsis":5, "parasynaptic":5, "parasynaptist":5, "parasynthetic":5, "parasynthesis":5, "parasyntheton":5, "paratactic":4, "paratactically":6, "parataxis":4, "paratences":3, "parathion":4, "parathyroid":4, "parathyroid gland":5, "parathyroid hormone":6, "parathyroidectomize":7, "parathyroidectomized":7, "parathyroidectomizing":8, "parathyroidectomy":7, "paratroop":3, "paratroops":3, "paratrooper":4, "paratrophic":4, "paratuberculin":6, "paratuberculosis":7, "paratyphoid":4, "paratyphoid fever":6, "paravail":3, "paravane":3, "paravent":3, "parazoan":4, "parboil":2, "parbuckle":3, "parca":2, "parcae":2, "parcel":2, "parcel-gilt":2, "parceling":3, "parcenary":4, "parcener":3, "parcheesi":3, "parcheesi":3, "parchisi":3, "parclose":2, "pardah":2, "pardalote":3, "pardi":2, "pardie":2, "pardon":2, "pardonable":4, "pardonableness":5, "pardonably":4, "pardoner":3, "pardonless":3, "pardubice":4, "pardy":2, "parent":2, "parentage":3, "parenthood":3, "parentless":3, "parentlike":3, "parenchymatous":5, "parentalia":5, "parenteral":4, "parenterally":5, "parenthetic":4, "parenthetical":5, "parentheticality":7, "parenthetically":6, "parergon":3, "paresthetic":4, "paresthesia":4, "paresthesia":5, "paregoric":4, "parfait":2, "parfleche":2, "pargasite":3, "parget":2, "pargeted":3, "pargeting":3, "pargetted":3, "pargetting":3, "parhelic":3, "parhelic circle":5, "parhelia":4, "parheliacal":5, "parhelion":4, "pari-mutuel":4, "paring":2, "paris":2, "paris commune":4, "paris green":3, "parish":2, "parish clerk":3, "parish council":4, "parish register":5, "parish-rigged":2, "parian":3, "paries":3, "paripinnate":4, "parison":3, "parisonic":4, "parisyllabic":5, "parity":3, "parity check":4, "parka":2, "parker":2, "parkersburg":3, "parkin":2, "parkinson":3, "parkinson's disease":5, "parkinson's law":4, "parkinsonism":4, "parkinsonian":5, "parlance":2, "parlando":3, "parlay":2, "parley":2, "parley":2, "parleyed":2, "parleyer":3, "parleying":3, "parliament":3, "parliament":3, "parliamentarism":5, "parliamentarian":6, "parliamentarian":6, "parliamentarianism":7, "parliamentarily":6, "parliamentary":5, "parliamentary agent":7, "parliamentary commissioner":9, "parliamentary private secretary":11, "parliamentary secretary":9, "parlor":2, "parlormaid":3, "parlour":2, "parlour car":3, "parlour game":3, "parlous":2, "parlously":3, "parlousness":3, "parma":2, "parmenides":4, "parmentier":3, "parmenidean":5, "parmesan cheese":4, "parmigiana":4, "parmigianino":5, "parmigiano":4, "parnassian":4, "parnassus":3, "parnahiba":4, "parnahyba":4, "parnaiba":4, "parnaba":5, "parnell":2, "parnellism":3, "parnellite":3, "parnopius":4, "paros":2, "parousia":4, "parousia":4, "paroxysm":3, "paroxysmal":4, "paroxysmally":5, "paroxysmic":4, "paroxytone":4, "paroxytonic":5, "parodist":3, "parodistic":4, "parodistically":6, "parodiable":5, "parodontia":5, "parodontium":5, "parodos":3, "parody":3, "paronomastic":5, "paronomastically":7, "paronomasia":5, "paronomasia":6, "paronychia":5, "paronym":3, "paronymic":4, "paroquet":3, "parotitic":4, "parotitis":4, "parpen":2, "parpend":2, "parquet":2, "parquet circle":4, "parqueted":2, "parqueting":3, "parquetry":3, "parral":2, "parrakeet":3, "parramatta":4, "parrel":2, "parried":2, "parrington":3, "parrish":2, "parricide":3, "parricidal":4, "parrot":2, "parrot fever":4, "parrot's-bill":2, "parrot's-feather":3, "parrot-beak":2, "parrot-fashion":3, "parrotfish":3, "parrotfishes":4, "parroket":3, "parroquet":3, "parry":2, "parry":2, "parrying":3, "parsec":2, "parsee":2, "parseeism":3, "parsi":2, "parsifal":3, "parsimonious":5, "parsimoniously":6, "parsimoniousness":6, "parsimony":4, "parson":2, "parson bird":3, "parson's nose":3, "parsons":2, "parsonage":3, "parsonic":3, "parsonish":3, "parsonically":5, "parsonlike":3, "partake":2, "partakable":4, "partaken":3, "partaker":3, "partaking":3, "partan":2, "parterre":2, "parterred":2, "partes":2, "parthenius":4, "parthenope":4, "parthenia":4, "parthenon":3, "parthenos":3, "parthenocarpic":5, "parthenocarpical":6, "parthenocarpically":7, "parthenocarpous":5, "parthenocarpy":5, "parthenogenesis":6, "parthenogenetically":8, "parthenogone":4, "parthenopaeus":5, "parthenospore":4, "parthia":3, "parthian shot":4, "parti":2, "parti pris":3, "parti-colored":3, "partial":2, "partial derivative":6, "partial eclipse":4, "partial fraction":4, "partial pressure":4, "partial product":4, "partialise":3, "partialised":3, "partialising":4, "partiality":4, "participance":4, "participant":4, "participantly":5, "participancy":5, "participate":4, "participated":5, "participating":5, "participating insurance":8, "participatory":6, "participation":5, "particular":4, "particular average":7, "particulars of claim":6, "particularise":5, "particularised":5, "particularism":5, "particulariser":6, "particularising":6, "particularistic":6, "particularistically":8, "particularize":5, "particularized":5, "particularizer":6, "particularizing":6, "particularity":6, "particularization":7, "particularly":5, "particulate":4, "partied":2, "partis":2, "partite":2, "partiality":5, "partible":3, "participial":5, "participiality":7, "participialization":8, "participially":6, "participle":4, "particle":3, "particle separation":7, "particlecelerator":7, "partisan":3, "partisanry":4, "partisanship":4, "partita":3, "partition":3, "partitioner":4, "partitionist":4, "partitionment":4, "partitive":3, "partitively":4, "partizan":3, "partizanship":4, "parton":2, "partook":2, "partridge":2, "partridge-wood":2, "partridgeberry":4, "partridgelike":3, "partridges":3, "parturient":4, "parturiency":5, "parturifacient":5, "parturition":4, "party":2, "party line":3, "party man":3, "party politics":5, "party wall":3, "party-colored":3, "party-walled":2, "partying":3, "partyism":3, "partyless":3, "parvati":3, "parve":2, "parvenu":3, "parvenue":3, "parvenudom":4, "parvenuism":4, "parvis":2, "parvise":2, "parvulus":3, "parzival":3, "pas":1, "pas-de-calais":2, "pasch":1, "pash":1, "pashm":1, "pashim":2, "pashka":2, "pashto":2, "pasqueflower":3, "pass":1, "pass over":3, "passe-partout":2, "passed":1, "passementerie":3, "passepied":2, "passable":3, "passableness":4, "passably":3, "passbook":2, "passer":2, "passer-by":2, "passers-by":2, "passerby":3, "passing":2, "passing bell":3, "passing note":3, "passing shot":3, "passing tone":3, "passingly":3, "passingness":3, "passkey":2, "passless":2, "passover":3, "passport":2, "passportless":3, "password":2, "past":1, "past master":3, "past participle":5, "past perfect":3, "paste":1, "pasteboard":2, "pasted":2, "paster":2, "pasties":2, "pasting":2, "pastier":3, "pastiest":3, "pastiness":3, "pasty":2, "pasty-faced":2, "pasadena":4, "pascal":2, "pascal":2, "pascal's triangle":5, "pascagoula":4, "paschal":2, "paschal flower":4, "paschal lamb":3, "pascin":2, "pasco":2, "pascoag":2, "pasquale":3, "pasqualina":4, "pasquil":2, "pasquilic":3, "pasquillic":3, "pasquinade":3, "pasquinaded":4, "pasquinader":4, "pasquinading":4, "pass":2, "passade":2, "passage":2, "passage hawk":3, "passage work":3, "passage-work":2, "passaged":2, "passageway":3, "passager hawk":4, "passaging":3, "passant":2, "passacaglia":4, "passado":3, "passaic":3, "passamaquoddy bay":6, "passament":3, "passaree":3, "passel":2, "passenger":3, "passenger pigeon":5, "passerine":3, "passeriform":4, "passim":2, "passion":2, "passion":2, "passion fruit":3, "passion play":3, "passion sunday":4, "passion week":3, "passional":3, "passionaries":4, "passionary":4, "passionate":3, "passionately":4, "passionateness":4, "passionflower":4, "passionfruit":3, "passionist":3, "passionless":3, "passionlessly":4, "passionlessness":4, "passiontide":3, "passive":2, "passive obedience":6, "passive resistance":5, "passivism":3, "passivist":3, "passibility":5, "passible":3, "passifloraceous":5, "passivate":3, "passivated":4, "passivating":4, "passus":2, "passuses":3, "passy":2, "pass":3, "passs":3, "pasta":2, "pastel":2, "pastelist":3, "pastellist":3, "pastern":2, "pasternak":3, "pasteur":2, "pasteurise":3, "pasteurised":3, "pasteurism":3, "pasteuriser":4, "pasteurising":4, "pasteurize":3, "pasteurizer":4, "pasteurisation":5, "pasteurization":5, "pasteurella":4, "pasteurellae":4, "pasteurellosis":5, "pastiche":2, "pasticcio":3, "pastil":2, "pastille":2, "pastime":2, "pastis":2, "pasticheur":3, "pasticheuse":3, "pasto":2, "pastor":2, "pastorage":3, "pastoralist":4, "pastorate":3, "pastorship":3, "pastose":2, "pastosity":4, "pastoised":3, "pastoising":4, "pastoral":3, "pastorale":3, "pastoralism":4, "pastoralize":4, "pastoralized":4, "pastoralizing":5, "pastoralization":6, "pastorally":4, "pastrami":3, "pastry":2, "pastry cream":3, "pasture":2, "pasture":2, "pastured":2, "pastureless":3, "pasturage":3, "pastural":3, "pasturable":4, "pasturer":3, "pasturing":3, "pat":1, "pat":1, "patch":1, "patch pocket":3, "patchable":3, "patcher":2, "patchier":3, "patchiest":3, "patchless":2, "patchouli":3, "patchouly":3, "patchstand":2, "patchwork":2, "patchworky":3, "patchy":2, "patd":1, "pate":1, "paternoster":2, "path":1, "pathol":1, "pathfinder":3, "pathfinding":3, "pathic":2, "pathless":2, "pathognomonic":5, "pathognomy":4, "pathobiologist":6, "pathobiology":6, "pathobiological":7, "pathocure":3, "pathoformic":4, "pathogen":3, "pathogene":3, "pathogenesis":5, "pathogenic":4, "pathogenetic":5, "pathographic":4, "pathologic":4, "pathological":5, "pathologically":6, "pathologicoanatomic":9, "pathomorphism":4, "pathoneurosis":5, "pathway":2, "pathwayed":2, "patagonia":5, "patchogue":2, "paten":2, "patent":2, "patentability":6, "patentable":4, "patentably":4, "patentee":3, "patently":3, "patentor":3, "paternoster":4, "paternoster":4, "paterson":3, "paterson's curse":4, "patin":2, "patine":2, "patina":3, "patinated":4, "patinous":3, "patmo":2, "patmore":2, "patmos":2, "patna":2, "patna rice":3, "patness":2, "patois":2, "patrick":2, "patricide":3, "patricidal":4, "patriclinous":4, "patrilateral":5, "patrilineage":5, "patrilineal":5, "patrilinear":5, "patrilinearly":6, "patriliny":4, "patrilocal":4, "patrilocality":6, "patrimonial":5, "patrimonially":6, "patrimony":4, "patriotism":4, "patripassian":5, "patripassianism":6, "patripassianist":6, "patripassianly":6, "patripotestal":5, "patronage":3, "patronise":3, "patronize":3, "patrologic":4, "patronymic":4, "patronymically":6, "patsy":2, "patsy":2, "patt":2, "patted":2, "patten":2, "patter":2, "patter song":3, "pattern":2, "patternable":4, "patterner":3, "patternless":3, "patternlike":3, "patternmaking":4, "patterny":3, "patterer":3, "patterist":3, "patterson":3, "patti":2, "patting":2, "pattle":2, "patton":2, "patty":2, "patty":2, "patte":3, "patulous":3, "patulously":4, "patulousness":4, "paty":2, "pau":1, "pau":1, "paughty":2, "paul":1, "paul-boncour":2, "paull":1, "paulsboro":3, "paulding":2, "pauldron":2, "pauline":2, "pauling":2, "paulinism":3, "paulinist":3, "paulinistic":4, "paulinistically":6, "paulinize":3, "paulist":2, "paumgartner":3, "paunch":1, "paunchier":3, "paunchiest":3, "paunchiness":3, "paunchy":2, "paur":1, "pause":1, "pauseful":2, "pausefully":3, "pauseless":2, "pauselessly":3, "pausal":2, "pauser":2, "pausing":2, "pausingly":3, "paua":2, "paucal":2, "paucity":3, "paula":2, "pauli":2, "pauli exclusion principle":8, "pauline":2, "pauling":2, "paulinus":3, "paulownia":4, "paulus":2, "paumotu archipelago":8, "pauper":2, "pauperage":3, "pauperdom":3, "pauperise":3, "pauperised":3, "pauperism":3, "pauperiser":4, "pauperising":4, "pauperize":3, "pauperized":3, "pauperizer":4, "pauperizing":4, "pauperization":5, "pauraque":3, "pausanias":4, "pav":1, "pave":1, "pavement":2, "pavage":2, "pavan":2, "paver":2, "pavid":2, "pavin":2, "paving":2, "paving stone":3, "pavior":2, "paviour":2, "pavis":2, "pavise":2, "paviser":3, "pavlov":2, "pavlodar":3, "pavlova":3, "pavonine":3, "paw":1, "pawky":2, "pawl":1, "pawn":1, "pawn ticket":3, "pawnage":2, "pawnable":3, "pawnbroker":3, "pawner":2, "pawnshop":2, "pawcatuck":3, "pawer":2, "pawhuska":3, "pawnee":2, "pawpaw":2, "pawtucket":3, "pax":1, "pax":1, "pax":1, "pax romana":4, "paxton":2, "paxwax":2, "pay":1, "pay-tv":1, "payne":1, "payt":1, "payable":3, "payably":3, "paybox":2, "paycheck":2, "payday":2, "payee":2, "payer":2, "payette":2, "paying":2, "paying guest":3, "payload":2, "paymaster":3, "paymastership":4, "payment":2, "paynim":2, "paynimhood":3, "payoff":2, "payola":3, "payroll":2, "paysand":3, "paysand":4, "payson":2, "payton":2, "pazaree":3, "pablo":2, "paca":2, "pace":2, "pacha":2, "pachadom":3, "pachalic":3, "pachinko":3, "pachisi":3, "pachomius":4, "pachuca":3, "pachuco":3, "pacific":3, "pacific":3, "pacific islands":5, "pacific northwest":5, "pacific ocean":5, "pacific standard time":6, "pacifica":4, "pacifical":4, "pacifically":5, "pacificate":4, "pacificated":5, "pacificating":5, "pacificism":4, "pacificist":4, "pacificistic":5, "pacificistically":7, "pacifico":4, "padang":2, "padang":2, "padauk":2, "paderborn":3, "paderewski":4, "padishah":3, "padishah":3, "padouk":2, "padova":3, "padraic":2, "padre":2, "padrone":3, "padus":2, "paducah":3, "paella":3, "paesiello":4, "pagan":2, "pagandom":3, "paganise":3, "paganised":3, "paganism":3, "paganist":3, "paganistic":4, "paganising":4, "paganize":3, "paganized":3, "paganizer":4, "paganizing":4, "paganization":5, "paganiser":4, "paganini":4, "paget's disease":4, "pagliacci":3, "pagnol":2, "pago pago":4, "pagoda":3, "pagoda tree":4, "pagodalike":4, "pagurid":3, "pagurian":4, "pahang":2, "pahari":3, "paho":2, "pahoehoe":5, "pahokee":3, "pahsien":2, "pahutan":3, "pajama":3, "pajamas":3, "pajama":3, "pajamaed":3, "pajamas":3, "pakanbaru":4, "pakeha":3, "pakistan":3, "pakokku":3, "palaestra":3, "palaestric":3, "palaestrian":4, "palaearctic":4, "palaemon":3, "palaeologist":5, "palaeologus":5, "palaeology":5, "palaeontography":6, "palaeontologist":6, "palaeontology":6, "palaeontographic":6, "palaeontologic":6, "palaeontologically":8, "palaeobiologist":7, "palaeobiology":7, "palaeobiological":8, "palaeobotany":6, "palaeobotanic":6, "palaeoclimatologist":8, "palaeoclimatological":9, "palaeoecological":8, "palaeoencephalon":7, "palaeoentomologist":8, "palaeoentomology":8, "palaeoentomological":9, "palaeoecologist":7, "palaeoecology":7, "palaeogene":4, "palaeogenesis":6, "palaeogeographically":9, "palaeolithic":5, "palaeological":6, "palaeopedology":7, "palaeotropical":6, "palaeozoic":5, "palaeozoologist":7, "palaeozoology":7, "palaeozoological":8, "palaeozology":8, "palais":2, "palatinal":4, "palatinate":4, "palatinate":4, "palau islands":4, "palaverer":4, "palaverist":4, "palaverment":4, "palaverous":4, "palazzi":3, "palazzo":3, "palabra":3, "palacio vald":5, "palatial":3, "palatially":4, "palatialness":4, "palatia":4, "palatium":4, "palaver":3, "palawan":3, "palembang":3, "palencia":3, "palenque":3, "palermitan":4, "palermo":3, "pales":2, "palestra":3, "paley":2, "palea":3, "palearctic":4, "paleaceous":4, "paleencephalon":6, "paleethnologist":6, "paleethnology":6, "paleethnologic":6, "paleo-asiatic":6, "paleographer":5, "paleography":5, "paleologist":5, "paleontography":6, "paleontology":6, "paleontographic":6, "paleobiologist":7, "paleobiology":7, "paleobiological":8, "paleobotany":6, "paleocene":4, "paleoclimatologist":8, "paleoclimatology":8, "paleoclimatological":9, "paleoecological":8, "paleoencephalon":7, "paleoentomologist":8, "paleoentomological":9, "paleoecologist":7, "paleoecology":7, "paleogene":4, "paleogenesis":6, "paleogenetic":6, "paleogeography":7, "paleogeologic":7, "paleographic":5, "paleographically":7, "paleolith":4, "paleolithic":5, "paleological":6, "paleomagnetic":6, "paleomagnetism":6, "paleopathological":8, "paleopathologist":7, "paleopedology":7, "paleopsychic":5, "paleopsychology":7, "paleopsychological":8, "paleosiberian":7, "paleozoic":5, "paleozoologist":7, "paleozoology":7, "paleozoological":8, "paleozologist":8, "paleozology":8, "paleozological":9, "palestrina":4, "pali":2, "palindromist":4, "palisa":3, "palissy":3, "palitzsch":2, "palici":3, "palooka":3, "palos":2, "palolo":3, "palolo worm":4, "paloma":3, "paludal":3, "paludamentum":5, "pama-nyungan":3, "pamir":2, "pamirs":2, "pan":2, "pana":2, "panache":2, "panay":2, "panada":3, "panagia":4, "panagias":4, "panam":4, "paniculate":4, "paniculately":5, "paniculated":5, "panini":3, "panofsky":3, "panocha":3, "panoche":3, "panus":2, "pan":3, "paolo":3, "papa":2, "papal":2, "papal cross":3, "papal states":3, "papalise":3, "papalize":3, "papalized":3, "papalizing":4, "papalization":5, "papally":3, "papandreou":4, "papaveraceous":5, "papaverine":4, "papaw":2, "papable":3, "papacy":3, "papadopoulos":5, "papagayo":4, "papain":3, "paparazzi":4, "paparazzo":4, "papaveraceous":5, "papaverine":4, "papaya":3, "papayan":3, "papen":2, "paper":2, "paper chase":3, "paper money":4, "paper mulberry":5, "paper nautilus":5, "paper over":4, "paper tape":3, "paper tiger":4, "paper-chasing":3, "paper-cutter":3, "paper-mch":5, "paper-shelled":2, "paperback":3, "paperbark":3, "paperboard":3, "paperbound":3, "paperboy":3, "paperclip":3, "papercutting":4, "paperer":3, "papergirl":3, "paperhanger":4, "paperhanging":4, "paperiness":4, "paperknife":3, "paperlike":3, "paperweight":3, "paperwork":3, "papery":3, "papeete":4, "papelera":4, "paphian":3, "paphos":2, "paphus":2, "papiamento":4, "papier coll":4, "papier-mch":3, "papilionaceous":6, "papilla":3, "papillae":3, "papinian":4, "papist":2, "papistlike":3, "papistly":3, "papistry":3, "papistic":3, "papistical":4, "papistically":5, "papoose":2, "papoose-root":2, "papua":3, "papua new guinea":6, "papuan":3, "papyrian":4, "papyral":3, "papyri":3, "papyrological":6, "papyrus":3, "par":2, "para":2, "parabasis":4, "parabola":4, "parabole":4, "parabolise":4, "parabolised":4, "parabolist":4, "parabolising":5, "parabolize":4, "parabolized":4, "parabolizer":5, "parabolizing":5, "parabolization":6, "paraboloid":4, "paraboloidal":5, "parachronism":4, "parade":2, "paradeful":3, "paradeless":3, "paradelike":3, "parader":3, "paradingly":4, "paraebius":4, "paragonite":4, "paragonitic":5, "paralogism":4, "paralysis":4, "paralysis agitans":7, "parameter":4, "paramus":3, "parang":2, "paraphrasis":4, "paraphysate":4, "paraphysis":4, "parastades":4, "parastichy":4, "paracetamol":5, "paradiso":4, "paraiba":4, "paralipomena":6, "paramita":4, "paran":3, "paranagu":5, "paran":4, "parashah":3, "paraba":5, "paregmenon":4, "pareira":3, "parenchyma":4, "parental":3, "parentally":4, "parenthesis":4, "parenthesise":4, "parenthesize":4, "parenthesized":4, "parenthesizing":5, "parenticide":4, "paretic":3, "paretically":5, "paretta":3, "parecious":3, "pareciousness":4, "parecism":3, "parecy":3, "paresis":3, "pareto":3, "pareu":3, "pareve":3, "pari passu":4, "parishioner":4, "parishionership":5, "parisii":4, "pariah":3, "pariah dog":4, "pariahdom":4, "pariahism":4, "paricut":4, "paricutn":5, "parietal":4, "parietal bone":5, "parietal cell":5, "parietal lobe":5, "parietes":4, "parishad":3, "parisian":3, "parodic":3, "parodical":4, "paroecious":3, "paroicous":3, "parol":2, "parole":2, "paroled":2, "parolable":4, "parolee":3, "paroling":3, "paronymous":4, "parotic":3, "parotid":3, "parotid gland":4, "parotidean":5, "parotiditis":5, "parochial":4, "parochial church council":7, "parochialise":5, "parochialised":5, "parochialism":5, "parochialising":6, "parochially":5, "parochialness":5, "parotic":3, "parotoid":3, "parure":2, "parulis":3, "par":3, "parber":3, "pasargadae":4, "pasay":2, "paschen-ba":2, "pase":2, "paseo":3, "pasha":2, "pashadom":3, "pashalic":3, "pashalik":3, "pasionaria":4, "pasiphae":4, "pasipha":5, "pasithea":4, "paso doble":4, "pasolini":4, "pasquale":3, "pataca":3, "patagia":4, "patagium":4, "patella":3, "patellar":3, "patellate":3, "patelliform":4, "patent":2, "patent leather":4, "patent log":3, "patent medicine":5, "patent office":4, "patent right":3, "patent rolls":3, "patent still":3, "patentee":3, "patently":3, "patency":3, "patentor":3, "pater":2, "pater":2, "paterfamiliar":5, "paterfamiliarly":6, "paterfamilias":6, "paterfamiliases":7, "paternal":3, "paternalism":4, "paternally":4, "paternity":4, "paternity suit":5, "paternoster":4, "pathan":2, "pathetic":3, "pathetic fallacy":6, "pathetically":5, "patheticalness":5, "pathogeny":4, "pathognomonically":7, "pathognomy":4, "pathography":4, "pathology":4, "pathos":2, "pathosis":3, "patience":2, "patience":2, "patient":2, "patientless":3, "patiently":3, "patientness":3, "patisserie":4, "patiala":4, "patio":3, "patios":3, "paton":2, "patonce":2, "patrai":2, "patras":2, "patresfamilias":6, "patrecia":3, "patrice":2, "patristic":3, "patristical":4, "patrix":2, "patrial":3, "patriarch":3, "patriarchdom":4, "patriarchship":4, "patriarchal":4, "patriarchal cross":5, "patriarchally":5, "patriarchate":4, "patriarchic":4, "patriarchical":5, "patriarchically":6, "patriarchy":4, "patrices":3, "patricia":3, "patrician":3, "patricianhood":4, "patricianism":4, "patricianly":4, "patricianship":4, "patriciate":4, "patriot":3, "patriotic":4, "patriotism":4, "patriotically":6, "patroclus":3, "patrol":2, "patrol car":3, "patrol wagon":4, "patrolled":2, "patroller":3, "patrolling":3, "patrolman":3, "patrology":4, "patron":2, "patron saint":3, "patronal":3, "patrondom":3, "patroness":3, "patronise":3, "patronised":3, "patroniser":4, "patronising":4, "patronize":3, "patronized":3, "patronizable":5, "patronizer":4, "patronizing":4, "patronly":3, "patronship":3, "patroon":2, "patroonship":3, "patroclus":3, "pav":2, "pavan":2, "pavane":2, "pavese":3, "pavilion":3, "pavillon":3, "pavia":3, "paviotso":4, "pavo":2, "pavonis":3, "pav":3, "pavs":3, "pbx":1, "pct":1, "pe-tsai cabbage":3, "pea":1, "pea jacket":3, "peace":1, "peace offering":4, "peace river":3, "peaceable":3, "peaceableness":4, "peaceably":3, "peaceful":2, "peacefully":3, "peaceless":2, "peacelessness":3, "peacelike":2, "peacemaker":3, "peacemaking":3, "peacetime":2, "peach":1, "peach melba":3, "peachblow":2, "peacher":2, "peachier":3, "peachiest":3, "peachiness":3, "peachlike":2, "peachy":2, "peacing":2, "peag":1, "peage":1, "peak":1, "peak district":3, "peake":1, "peaked":1, "peaked":2, "peakish":2, "peakishly":3, "peakishness":3, "peakily":3, "peakiness":3, "peakless":2, "peaklike":2, "peaky":2, "peal":1, "peale":1, "pean":1, "pear":1, "pearl":1, "pearl barley":3, "pearl harbor":3, "pearl millet":3, "pearl oyster":3, "pearl river":3, "pearler":2, "pearleye":2, "pearleyed":2, "pearlfish":2, "pearlfishes":3, "pearlised":2, "pearlite":2, "pearlized":2, "pearlier":3, "pearliest":3, "pearliness":3, "pearloyster":3, "pearlwort":2, "pearly":2, "pearly gates":3, "pearly king":3, "pearly nautilus":5, "pearly queen":3, "pears":1, "peart":1, "peartly":2, "peartness":2, "pearmain":2, "pearsall":2, "pearson":2, "pease":1, "pease pudding":3, "peasecod":2, "peaselike":2, "peasant":2, "peasantry":3, "peascod":2, "peat":1, "peatier":3, "peatiest":3, "peaty":2, "peabody":3, "peacoat":2, "peacock":2, "peacock":2, "peacock blue":3, "peacock butterfly":5, "peacock ore":3, "peacockery":4, "peacockish":3, "peacockishly":4, "peacockishness":4, "peacockism":3, "peacocky":3, "peafowl":2, "peahen":2, "pealike":2, "peamouth":2, "peanut":2, "peanut butter":4, "peanut oil":3, "peanuts":2, "peapod":2, "peary":2, "peashooter":3, "peasouper":3, "peavey":2, "peavy":2, "peba":2, "pebble":2, "pebble dash":3, "pebble-dashed":2, "pebbling":2, "pebbly":2, "pech":1, "peck":1, "pecker":2, "pecking order":4, "peckinpah":3, "peckish":2, "peckier":3, "peckiest":3, "pecksniffery":4, "pecksniffism":3, "pecksniffian":4, "pecksniffianism":5, "pecky":2, "peccant":2, "peccantly":3, "peccantness":3, "peccancy":3, "peccable":3, "peccadillo":4, "peccary":3, "peccatophobia":6, "peccavi":3, "pectase":2, "pectate":2, "pecten":2, "pectic":2, "pectic acid":4, "pectin":2, "pectinose":3, "pectise":2, "pectize":2, "pectized":2, "pectizable":4, "pectizing":3, "pectinate":3, "pectinately":4, "pectinated":4, "pectinaceous":4, "pectination":4, "pectization":4, "pectose":2, "pectous":2, "pectolite":3, "pectoral":3, "pectoral fin":4, "pectoral girdle":5, "pectoral muscle":5, "pectorales":4, "pectoralis":4, "peculate":3, "peculated":4, "peculating":4, "ped":1, "pedal":2, "pedal point":3, "pedant":2, "pedantesque":3, "pedanthood":3, "pedantism":3, "pedantry":3, "pedate":2, "pedately":3, "pedagog":3, "pedagogue":3, "pedagoguery":5, "pedagoguish":4, "pedagoguism":4, "pedagogery":5, "pedagogic":4, "pedagogics":4, "pedagogish":4, "pedagogism":4, "pedagogical":5, "pedagogically":6, "pedagoaled":4, "pedagoalled":4, "pedagoaling":5, "pedagoalling":5, "pedagogy":4, "pedalo":3, "peddle":2, "peddler":2, "peddleries":3, "peddlery":3, "peddling":2, "peddlingly":3, "pederast":3, "pederastic":4, "pederastically":6, "pederasty":4, "pedestal":3, "pedestaled":3, "pedestalled":3, "pedestaling":4, "pedestalling":4, "pedi":2, "pedicab":3, "pedicel":3, "pedicellar":4, "pedicellate":4, "pedicellation":5, "pedicle":3, "pedicure":3, "pedicurist":4, "pediform":3, "pedigree":3, "pedigreed":3, "pediment":3, "pedimented":4, "pedimental":4, "pediococci":5, "pediococcus":5, "pedipalp":3, "pedipalpal":4, "pedipalpate":4, "pedlar":2, "pedlaries":3, "pedlary":3, "pedler":2, "pedleries":3, "pedlery":3, "pedocal":3, "pedograph":3, "pee":1, "peek":1, "peekskill":2, "peekaboo":3, "peel":1, "peel":1, "peele":1, "peelable":3, "peeler":2, "peeling":2, "peen":1, "peep":1, "peeper":2, "peephole":2, "peeping tom":3, "peepshow":2, "peer":1, "peerce":1, "peerage":2, "peeress":2, "peerie":2, "peeringly":3, "peerless":2, "peerlessly":3, "peerlessness":3, "peetweet":2, "peeve":1, "peeved":1, "peevedly":3, "peevedness":3, "peevers":2, "peeving":2, "peevish":2, "peebles":2, "peeblesshire":3, "peeing":2, "peelie-wally":3, "peene":2, "peepul":2, "peevishly":3, "peevishness":3, "peewee":2, "peewit":2, "peg":1, "peg":1, "peg-top":1, "pegh":1, "pegasus":3, "pegboard":2, "pegbox":2, "peggy":2, "peglegged":2, "pegless":2, "peglike":2, "pegmatite":3, "pegmatitic":4, "pegwood":2, "peh":1, "pehlevi":3, "pei":1, "peignoir":2, "pein":1, "peirce":1, "peise":1, "peising":2, "peiping":2, "peipus":2, "peiraeus":3, "peisenor":3, "peisistratus":4, "peitho":2, "pejoration":4, "peke":1, "pekan":2, "pele":1, "pelf":1, "pelletier":2, "pellmell":2, "pelt":1, "pelter":2, "pelting":2, "peltry":2, "pelage":2, "pelargonic":4, "pelargonic acid":6, "pelargonium":5, "pelagon":3, "pelerine":3, "pelecypodous":5, "peleus":3, "pelham":2, "pelham":2, "pelham-holles":3, "pelican":3, "pelican crossing":5, "pelike":3, "pella":2, "pellan":2, "pellagra":3, "pellagrin":3, "pellagrose":3, "pelles":2, "pellet":2, "pelletlike":3, "pellety":3, "pelleas":3, "pelletier":3, "pellicular":4, "pellicle":3, "pellitory":4, "pellucid":3, "pellucidity":5, "pellucidly":4, "pelmanism":3, "pelmet":2, "peloid":2, "peloponnese":4, "peloponnesian":5, "peloponnesian war":6, "pelorize":3, "pelorized":3, "pelorizing":4, "pelorization":5, "peltast":2, "peltate":2, "peltately":3, "peltation":3, "peltier effect":5, "peltier element":6, "pelves":2, "pelvic":2, "pelvic fin":3, "pelvic girdle":4, "pelvis":2, "pelvises":3, "pemba":2, "pembroke":2, "pembroke table":4, "pembrokeshire":3, "pemican":3, "pemmican":3, "pemphigoid":3, "pemphigous":3, "pemphigus":3, "pen":1, "pen":1, "pen":1, "pence":1, "pend":1, "pendanted":3, "pendantlike":3, "pendent":2, "pendently":3, "pendency":3, "pending":2, "penghu":2, "penghutao":3, "pengpu":2, "penn":1, "pennsauken":3, "pennsylvania":5, "pennsylvania dutch":6, "pennsylvanian":5, "pent":1, "pent-up":1, "penthouse":2, "penthouses":3, "pentland":2, "pentland firth":3, "pentlandite":3, "pentoxide":3, "pentstemon":3, "penalty":3, "penalty area":6, "penalty box":4, "penalty killer":5, "penalty rates":4, "penance":2, "penanceless":3, "penannular":4, "pencel":2, "penchant":2, "penchi":2, "pencil":2, "penciled":2, "pencilled":2, "penciling":3, "penciliform":4, "pencillike":3, "pencilling":3, "pendant":2, "pendative":3, "pendent":2, "pendente lite":5, "pendentive":3, "penderecki":4, "pendleton":3, "pendragon":3, "pendragon":3, "pendragonish":4, "pendragonship":4, "pendulous":3, "pendulum":3, "pendulumlike":4, "penetrameter":5, "penetrance":3, "penetrant":3, "penetrate":3, "penetrating":4, "penetratingly":5, "penetratingness":5, "penetrability":6, "penetrableness":5, "penetrably":4, "penetralia":5, "penetralian":5, "penetration":4, "penetrative":4, "penetratively":5, "penetrativeness":5, "penetrativity":6, "penetrator":4, "penetrometer":5, "peng":2, "penguin":2, "penholder":3, "peninsula":4, "peninsula":4, "peninsular":4, "peninsular war":5, "peninsularism":5, "peninsularity":6, "peninsulate":4, "penicil":3, "penicill":4, "penicillate":4, "penicillately":5, "penicillation":5, "penicillin":4, "penicillium":5, "penitence":3, "penitent":3, "penitently":4, "penitente":4, "penitential":4, "penitentially":5, "penitentiary":5, "penki":2, "penknife":2, "penlight":2, "penlite":2, "penman":2, "penmanship":3, "penna":2, "pennae":2, "pennant":2, "pennate":2, "pennated":3, "pennaceous":3, "pennell":2, "penner":2, "penni":2, "pennie":2, "pennied":2, "pennies":2, "pennillion":4, "pennine":2, "pennine alps":3, "pennine way":3, "pennines":2, "penning":2, "pennia":3, "penniless":3, "pennilessly":4, "pennilessness":4, "penninite":3, "pennon":2, "pennoned":2, "pennoncel":3, "pennuckle":3, "penny":2, "penny":2, "penny arcade":4, "penny black":3, "penny whistle":4, "penny-a-line":2, "penny-a-liner":3, "penny-cress":2, "penny-dreadful":3, "penny-farthing":3, "penny-pincher":3, "penny-pinching":3, "penny-plain":2, "penny-stone":2, "penny-wise":2, "pennycress":3, "pennyroyal":4, "pennyweight":3, "pennywort":3, "pennyworth":3, "penoncel":3, "penpusher":3, "penrith":2, "pensacola":4, "pensel":2, "penseroso":4, "pensil":2, "pensile":2, "pensileness":3, "pensility":4, "pension":2, "pension off":3, "pensionaries":4, "pensionary":4, "pensionable":4, "pensionably":4, "pensioner":3, "pensionership":4, "pensionless":3, "pensive":2, "penstemon":3, "penstock":2, "pense":3, "penses":3, "pentad":2, "pentagonal":4, "pentagonally":5, "pentagonoid":4, "pentalpha":3, "pentamerism":4, "pentamerous":4, "pentamery":4, "pentameter":4, "pentane":2, "pentangle":3, "pentangular":4, "pentapody":4, "pentarch":2, "pentarchical":4, "pentarchy":3, "pentathlon":3, "pentachlorophenol":6, "pentacle":3, "pentadactyl":4, "pentadactylism":5, "pentadecagon":5, "pentaerythritol":6, "pentagon":3, "pentagon":3, "pentagram":3, "pentagrammatic":5, "pentagrid":3, "pentahedron":4, "pentahydrate":4, "pentahydrated":5, "pentahydric":4, "pentahydroxy":5, "pentamethylenediamine":8, "pentanoic acid":6, "pentapodic":4, "pentaprism":3, "pentaquine":3, "pentastich":3, "pentastyle":3, "pentastylos":4, "pentasyllabic":5, "pentasyllabism":5, "pentasyllable":5, "pentateuch":3, "pentatomic":4, "pentatonic scale":5, "pentatron":3, "pentavalent":4, "pentelicus":4, "pentelikon":4, "pentene":2, "pentecost":3, "pentecostal":4, "penthesilea":5, "penthesileia":5, "pentheus":3, "penticton":3, "pentimento":4, "pentode":2, "pentomic":3, "pentose":2, "pentobarbital":5, "pentobarbitone sodium":8, "pentolite":3, "pentosan":3, "pentothal":3, "pentothal sodium":6, "pentyl":2, "pentyl acetate":5, "pentylenetetrazol":6, "penult":2, "penury":3, "penza":2, "penzance":2, "peon":1, "people":2, "people's democracy":6, "people's front":3, "people's party":4, "peopler":2, "peopleless":3, "pep":1, "pep":1, "pepys":1, "pepysian":3, "peperine":3, "peperoni":4, "pepin":2, "pepin the short":4, "peplos":2, "peplosed":2, "peploses":3, "peplum":2, "peplus":2, "pepper":2, "pepper":2, "pepper mill":3, "pepper pot":3, "pepper tree":3, "pepper-and-salt":2, "peppered moth":3, "peppercorn":3, "peppercorn rent":4, "peppercornish":4, "peppercorny":4, "pepperer":3, "peppergrass":3, "pepperidge":3, "pepperish":3, "pepperishly":4, "peppermint":3, "pepperoni":4, "peppershrike":3, "pepperwood":3, "pepperwort":3, "peppery":3, "pepping":2, "peppier":3, "peppiest":3, "peppily":3, "peppiness":3, "peppy":2, "pepsin":2, "pepsine":2, "pepsinate":3, "pepsinated":4, "pepsinating":4, "pepsinogen":4, "pepsinate":3, "pepsinogenic":5, "peptic":2, "peptic ulcer":4, "peptide":2, "peptide bond":3, "peptise":2, "peptize":2, "peptized":2, "peptizing":3, "peptidase":3, "peptidolytic":5, "peptone":2, "peptonelike":3, "peptonic":3, "peptonise":3, "peptonised":3, "peptoniser":4, "peptonising":4, "peptonize":3, "peptonized":3, "peptonizer":4, "peptonizing":4, "peptonization":5, "peptonoid":3, "per":1, "per annum":3, "per capita":4, "per contra":3, "per diem":3, "per mensem":3, "perch":1, "perche":1, "perchable":3, "percher":2, "perches":2, "perchta":2, "perelman":2, "perennimealy-mouthed":2, "perf":1, "perk":1, "perkingly":3, "perkish":2, "perkier":3, "perkiest":3, "perknite":2, "perky":2, "perlie":2, "perm":1, "perm":1, "permalloy":3, "pers":1, "pers":1, "perse":1, "perse":1, "pert":1, "pert":1, "perth":1, "perthshire":2, "pertly":2, "pertness":2, "perv":1, "peracid":3, "peradventure":4, "perambulate":4, "perambulated":5, "perambulating":5, "perambulation":5, "perambulator":5, "perambulatory":6, "perborate":3, "perborax":3, "perbunan":3, "percale":2, "percaline":3, "perceive":2, "perceived noise decibel":6, "perceivable":4, "perceivedly":4, "perceivedness":4, "perceiver":3, "perceivingness":4, "percent":2, "percentage":3, "percental":3, "percentile":3, "percept":2, "perception":3, "perceptional":4, "perceptive":3, "perceptively":4, "perceptiveness":4, "perceptivity":5, "perceptibility":6, "perceptible":4, "perceptibleness":5, "perceptibly":4, "perceptual":4, "perceptual defence":6, "perceptually":5, "perceval":3, "perchance":2, "percheron":3, "perchlorate":3, "perchloric":3, "perchloric acid":5, "perchloride":3, "perchlorinate":4, "perchlorinated":5, "perchlorinating":5, "perchlorination":5, "perchloroethylene":6, "perchloromethane":5, "perchromate":3, "perchromic":3, "percipience":4, "percipient":4, "percipiency":5, "percival":3, "percivale":3, "percoid":2, "percoidean":4, "percolate":3, "percolated":4, "percolating":4, "percolable":4, "percolation":4, "percolative":4, "percolator":4, "percurrent":3, "percuss":2, "percussion":3, "percussion cap":4, "percussion instrument":6, "percussion lock":4, "percussional":4, "percussionist":4, "percussive":3, "percussively":4, "percussiveness":4, "percussor":3, "percutaneous":5, "percy":2, "perdie":2, "perdix":2, "perdido":3, "perdifume":3, "perdita":3, "perdition":3, "perdu":2, "perdu":2, "perdue":2, "perdure":2, "perdured":2, "perdurability":6, "perdurable":4, "perdurableness":5, "perdurably":4, "perduring":3, "peremptory":4, "perennial":4, "perenniality":6, "perennially":5, "peretz":2, "peregrine":3, "peregrine falcon":5, "peregrinity":5, "peregrinate":4, "peregrination":5, "peregrinator":5, "perfect":2, "perfect competition":6, "perfect gas":3, "perfect number":4, "perfect participle":6, "perfect pitch":3, "perfect rhyme":3, "perfectedly":4, "perfecter":3, "perfectibilist":5, "perfectibility":6, "perfectible":4, "perfectly":3, "perfectness":3, "perfection":3, "perfectionism":4, "perfectionist":4, "perfectionistic":5, "perfective":3, "perfectively":4, "perfectiveness":4, "perfectivise":4, "perfectivised":4, "perfectivising":5, "perfectivity":5, "perfecto":3, "perfectus":3, "perfervid":3, "perfervor":3, "perfervour":3, "perfidious":4, "perfidiously":5, "perfidiousness":5, "perfin":2, "perfidy":3, "perforce":2, "perform":2, "performable":4, "performative":4, "performer":3, "performing":3, "performing arts":4, "perforable":4, "performance":3, "performance test":4, "performative":4, "perfoliate":4, "perforate":3, "perforated":4, "perforated tape":5, "perforated":4, "perforation":4, "perforation gauge":5, "perforative":4, "perforator":4, "perfume":2, "perfumeless":3, "perfumer":3, "perfumeries":4, "perfumery":4, "perfumy":3, "perfunctorily":5, "perfunctoriness":5, "perfunctory":4, "perfuse":2, "perfused":2, "perfusing":3, "perfusive":3, "pergamene":3, "pergamenian":5, "pergamon":3, "pergamos":3, "pergamum":3, "pergamus":3, "pergelisol":4, "pergola":3, "pergolesi":4, "perhapble":2, "perhaps":2, "perhydrol":3, "perhydrogenation":6, "perhydrogenize":5, "perhydrogenized":5, "perhydrogenizing":6, "pericles":2, "peril":2, "periled":2, "perilled":2, "periling":3, "perilless":3, "perilling":3, "perilously":4, "perilousness":4, "perinde":3, "perish":2, "perished":2, "perishability":6, "perishable":4, "perishableness":5, "perishably":4, "perishing":3, "perishless":3, "perishment":3, "perialla":4, "perianth":3, "periapt":3, "periarteritis":6, "periastral":4, "periastron":4, "periauger":4, "periapis":4, "periblast":3, "periblem":3, "periboea":4, "pericarp":3, "pericarditic":5, "pericardiac":5, "pericardial":5, "pericarditis":5, "pericardium":5, "pericarpic":4, "pericarpial":5, "pericarpoidal":5, "pericenter":4, "pericentral":4, "pericentric":4, "pericemental":5, "pericementum":5, "perichaetia":5, "perichaetial":5, "perichaetium":5, "perichondria":5, "perichondrium":5, "periclase":3, "pericles":3, "periclean":4, "pericline":3, "periclinal":4, "periclymenus":5, "pericranial":5, "pericranium":5, "pericynthion":5, "pericycle":4, "peridental":4, "periderm":3, "peridermal":4, "peridermic":4, "peridot":3, "peridotic":4, "peridotite":4, "peridotitic":5, "peridrome":3, "peridromos":4, "perieres":4, "perigee":3, "perigeal":4, "perigean":4, "periglacial":4, "perigon":3, "perigone":3, "perigordian":5, "perigonal":4, "perigonia":5, "perigonial":5, "perigonium":5, "perigune":4, "perihelia":5, "perihelial":5, "perihelian":5, "perihelion":5, "perikeiromene":6, "perikiromene":6, "perilaus":4, "perilous":3, "perilune":3, "perilymph":3, "perilymphatic":5, "perimedes":4, "perimele":4, "perimorph":3, "perimorphic":4, "perimorphism":4, "perimorphous":4, "perimysium":5, "perinatal":4, "perinephral":4, "perinephric":4, "perinephria":5, "perinephrial":5, "perinephrium":5, "perineurical":5, "perineuritis":5, "perineurium":5, "perinea":4, "perineal":4, "perineum":4, "periodic":4, "periodic acid":6, "perioeci":4, "perioecic":4, "perioecid":4, "periosteal":5, "periosteally":6, "periosteous":5, "periosteum":5, "periostitic":5, "periostitis":5, "periostracal":5, "periostracum":5, "periodate":4, "periodide":4, "periodontal":5, "periodontia":5, "periodontic":5, "periodontics":5, "periodontia":6, "perionychia":6, "perionychium":6, "periotic":4, "peripatetic":5, "peripatetic":5, "peripatetically":7, "peripateticism":6, "peripeteia":5, "peripetia":5, "periphas":3, "periphetes":4, "periphrase":3, "periphrastic":4, "periproctal":4, "periproctic":4, "periproctous":4, "perisarc":3, "perisarcal":4, "perisarcous":4, "periscope":3, "periscopic":4, "periscopical":5, "perisperm":3, "perispheric":4, "perispore":3, "perispomenon":5, "peristalsis":4, "peristaltic":4, "peristaltically":6, "peristome":3, "peristomal":4, "peristomatic":5, "peristyle":3, "peritectic":4, "perithecia":5, "perithecial":5, "perithecium":5, "perithelia":5, "perithelial":5, "perithelium":5, "peritonaeally":6, "peritonea":5, "peritonealize":6, "peritonealized":6, "peritonealizing":7, "peritoneum":5, "peritoneums":5, "peritonitic":5, "peritonitis":5, "peritrack":3, "peritrate":3, "peritrich":3, "peritrichic":4, "perivisceral":5, "periwig":3, "periwinkle":4, "periwinkled":4, "perjure":2, "perjured":2, "perjuredly":3, "perjuredness":3, "perjurement":3, "perjurer":3, "perjuring":3, "perjury":3, "perjurious":4, "perjury":3, "perkasie":3, "perkin":2, "perkin's mauve":3, "perkins":2, "perling":2, "perlis":2, "perlite":2, "perlitic":3, "perlocution":4, "perlucidus":4, "permanganic":4, "permanganic acid":6, "permanganate":4, "permafrost":3, "permanence":3, "permanent":3, "permanent magnet":5, "permanent press":4, "permanent wave":4, "permanent way":4, "permanently":4, "permanentness":4, "permanency":4, "permatron":3, "permeance":3, "permeant":3, "permeate":3, "permeated":4, "permeating":4, "permeability":6, "permeable":4, "permeableness":5, "permeably":4, "permeameter":5, "permeator":4, "permillage":3, "permission":3, "permissive":3, "permissively":4, "permissiveness":4, "permissibility":6, "permissible":4, "permissibleness":5, "permissibly":4, "permit":2, "permittedly":4, "permittivity":5, "permian":3, "permute":2, "permutability":6, "permutable":4, "permutableness":5, "permutably":4, "permuter":3, "permutate":3, "permutated":4, "permutating":4, "permutation":4, "permutational":5, "permutationist":5, "pernambuco":4, "pernancy":3, "pernicketiness":5, "pernickety":4, "pernik":2, "pernicious":3, "pernicious anaemia":7, "perniciously":4, "perniciousness":4, "pernio":3, "pernod":2, "pernor":2, "peroratorical":6, "peroratorically":7, "peroratory":5, "peroxide":3, "peroxided":4, "peroxidic":4, "peroxiding":4, "peroxidase":4, "peroxidation":5, "peroxidize":4, "peroxidized":4, "peroxidizing":5, "peroxy":3, "peroxyacid":5, "peroxyborate":5, "peroxysulphuric acid":8, "peronei":4, "peroneus":4, "perorate":3, "perorated":4, "perorating":4, "peroration":4, "perorational":5, "perorative":4, "perotin":3, "perotinus":4, "perpend":2, "perpent":2, "perpendicular":5, "perpendicularity":7, "perpendicularly":6, "perpendicularness":6, "perpetua":4, "perpetual":4, "perpetual motion":6, "perpetuality":6, "perpetually":5, "perpetualness":5, "perpetuance":4, "perpetuate":4, "perpetuated":5, "perpetuating":5, "perpetuable":5, "perpetuation":5, "perpetuator":5, "perpetrate":3, "perpetrated":4, "perpetrating":4, "perpetration":4, "perpetrator":4, "perpetuity":5, "perphenazine":4, "perpignan":3, "perplex":2, "perplexed":2, "perplexedly":4, "perplexedness":4, "perplexer":3, "perplexingly":4, "perplexity":4, "perquisite":3, "perrault":2, "perret":2, "perrin":2, "perrine":2, "perris":2, "perron":2, "perrons":2, "perruquier":3, "perry":2, "perry":2, "perrysburg":3, "perryton":3, "perryville":3, "persalt":2, "persephone":4, "persephosei":5, "persepolis":4, "perseus":2, "perseveration":5, "persecute":3, "persecuted":4, "persecuting":4, "persecutingly":5, "persecution":4, "persecution complex":6, "persecutional":5, "persecutive":4, "persecutor":4, "perseid":3, "perseity":4, "persevere":3, "perseverance":4, "perseverant":4, "persevering":4, "perseveringly":5, "pershing":2, "persia":2, "persian":2, "persian blinds":3, "persian carpet":4, "persian cat":3, "persian empire":4, "persian gulf":3, "persian lamb":3, "persian melon":4, "persimmon":3, "persis":2, "persist":2, "persistent":3, "persistently":4, "persistency":4, "persistence":3, "persistent":3, "persistent cruelty":6, "persistency":4, "persius":2, "persicaria":5, "persiennes":3, "persiflage":3, "persnickety":4, "person":2, "person":2, "person-to-person":3, "personage":3, "personal":3, "personal column":5, "personal equation":6, "personal property":6, "personal pronoun":5, "personalise":4, "personalised":4, "personalism":4, "personalist":4, "personalising":5, "personalistic":5, "personalize":4, "personality":5, "personality disorder":8, "personality inventory":9, "personality test":6, "personality type":6, "personalization":6, "personally":4, "personalness":4, "personalty":4, "personate":3, "personated":4, "personating":4, "personable":4, "personableness":5, "personably":4, "personation":4, "personative":4, "personator":4, "personified":4, "personifiant":5, "personifiable":6, "personification":6, "personificator":6, "personifier":5, "personify":4, "personifying":5, "personnel":3, "persorption":3, "persona":3, "persona grata":5, "persona non grata":6, "personae":3, "perspective":3, "perspectived":3, "perspectiveless":4, "perspectively":4, "perspectival":4, "perspectivism":4, "perspectivism":4, "perspectivist":4, "perspex":2, "perspicuous":4, "perspicuously":5, "perspicuousness":5, "perspire":2, "perspired":2, "perspirability":6, "perspirable":4, "perspiratory":5, "perspiring":3, "perspiringly":4, "perspiry":3, "perspicacious":4, "perspicaciously":5, "perspicaciousness":5, "perspicuity":5, "perspiration":4, "persuade":2, "persuadability":6, "persuadable":4, "persuadableness":5, "persuadably":4, "persuadedly":4, "persuadedness":4, "persuader":3, "persuadingly":4, "persuasion":3, "persuasive":3, "persuasively":4, "persuasiveness":4, "persuasibility":6, "persulfate":3, "persulfuric acid":6, "persulphuric acid":6, "pertain":2, "perthitic":3, "perthitically":5, "pertinacity":5, "pertinacious":4, "pertinaciously":5, "pertinaciousness":5, "pertinent":3, "perturb":2, "perturbability":6, "perturbable":4, "perturbedly":4, "perturbedness":4, "perturber":3, "perturbingly":4, "perturbment":3, "perturbation":4, "perturbational":5, "perturbatious":4, "perturbative":4, "perturbator":4, "pertussis":3, "perutz":2, "pervade":2, "pervaded":3, "pervading":3, "pervadingness":4, "pervasion":3, "pervasive":3, "pervasively":4, "pervasiveness":4, "perverse":2, "perversely":3, "perverseness":3, "pervert":2, "perverted":3, "perverter":3, "pervertibility":6, "pervertible":4, "pervertibly":4, "perversion":3, "perversive":3, "perversity":4, "pervicaciously":5, "pervicaciousness":5, "pervious":3, "perviousness":4, "pervouralsk":3, "pes":1, "peshawar":3, "peshtigo":3, "peskily":3, "pesky":2, "pest":1, "pest":1, "pesthole":2, "pesthouse":2, "pescadores":4, "peskier":3, "peskiest":3, "pesky":2, "pessary":3, "pessimism":3, "pessimist":3, "pestalozzi":4, "pestalozzianism":6, "pester":2, "pesterer":3, "pesteringly":4, "pestersome":3, "pestiferous":4, "pestiferously":5, "pestiferousness":5, "pesticide":3, "pesticidal":4, "pestilence":3, "pestilent":3, "pestilential":4, "pestilentially":5, "pestilentialness":5, "pestle":2, "pet":1, "pet":1, "peteman":2, "pethidine":3, "petrog":1, "petrol":1, "petal":2, "petal":2, "petaled":2, "petalled":2, "petalage":3, "petaliferous":5, "petaline":3, "petalless":3, "petallike":3, "petaloid":3, "petalous":3, "petalody":4, "petalodic":4, "petaluma":4, "petasos":3, "petasus":3, "petcock":2, "petit":2, "petit bourgeois":4, "petit four":3, "petit jury":4, "petit larceny":5, "petit mal":3, "petit point":3, "petits-matres":4, "petiole":3, "petiolular":5, "petiolar":4, "petiolate":4, "petiolated":5, "petiolule":4, "petitor":3, "petitory":4, "petra":2, "petrarch":2, "petrarchan sonnet":5, "petrel":2, "petrifaction":4, "petrified":3, "petrified forest":5, "petrifiable":5, "petrification":5, "petrifier":4, "petrify":3, "petrifying":4, "petrol":2, "petrol station":4, "petrolled":2, "petrolling":3, "petrous":2, "petrochemistry":5, "petrochemical":5, "petrodollar":4, "petrogenesis":5, "petrogenic":4, "petrogenetic":5, "petroglyph":3, "petrograd":3, "petrogram":3, "petrograph":3, "petrographic":4, "petrographically":6, "petrolatum":4, "petrologic":4, "petrologically":6, "petronel":3, "petropavlovsk":4, "petrozavodsk":4, "petsamo":3, "petted":2, "petting":2, "pettish":2, "pettishly":3, "pettishness":3, "pettit":2, "petticoat":3, "petticoated":4, "petticoatless":4, "pettier":3, "pettiest":3, "pettifog":3, "pettifogged":3, "pettifogger":4, "pettifogging":4, "pettitoes":3, "pettle":2, "petto":2, "petty":2, "petty":2, "petty cash":3, "petty jury":4, "petty larceny":5, "petty officer":5, "petty sessions":4, "petulance":3, "petulant":3, "petulantly":4, "petulancy":4, "pevsner":2, "pew":1, "pewage":2, "pewholder":3, "pewter":2, "pewterer":3, "peyton":2, "peytral":2, "peytrel":2, "pean":2, "peano":3, "pebrine":2, "pecan":2, "pechenga":3, "pechora":3, "pecos":2, "peculiar":3, "peculiarise":4, "peculiarised":4, "peculiarising":5, "peculiarize":4, "peculiarized":4, "peculiarizing":5, "peculiarly":4, "peculiar":4, "peculiar people":6, "peculiarity":6, "peculium":4, "pecuniarily":6, "pecuniary":5, "pecuniary advantage":8, "pedal":2, "pedalfer":3, "pedantic":3, "pedantically":5, "pedanticalness":5, "pedanticism":4, "pedatifid":4, "pedatilobed":4, "pedatilobate":5, "pedasus":3, "pedes":2, "pedestrian":4, "pedestrian crossing":6, "pedestrianise":5, "pedestrianised":5, "pedestrianism":5, "pedestrianising":6, "pedestrianize":5, "pedestrianized":5, "pedestrianizing":6, "pedesis":3, "pedicular":4, "pediculate":4, "pediculicide":5, "pediculicidal":6, "pediculous":4, "pediculosis":5, "pediatric":4, "pediatrics":4, "pediatrist":4, "pediatrician":5, "pedologist":4, "pedology":4, "pedometer":4, "pedobaptism":4, "pedobaptist":4, "pedodontia":4, "pedodontic":4, "pedodontist":4, "pedological":5, "pedophilic":4, "pedrell":2, "pedro":2, "peduncle":3, "peduncled":3, "peduncular":4, "pedunculate":4, "pedunculate oak":5, "pedunculated":5, "pegasian":4, "pegu":2, "peguan":3, "pejorative":4, "pejoratively":5, "pekin":2, "pekin":2, "peking":2, "peking man":3, "pekingese":3, "pekinese":3, "pekoe":2, "pel":2, "pelagic":3, "pelasgi":3, "pelasgian":4, "pelasgus":3, "pelagial":4, "pelagian":4, "pelagian islands":6, "pelagianism":5, "pelagianize":5, "pelagianized":5, "pelagianizer":6, "pelagianizing":6, "pelagius":4, "pele's hair":3, "pelecypod":4, "pelew islands":4, "pelegon":3, "pelisse":2, "pelite":2, "pelitic":3, "pelias":3, "pelides":3, "pelion":3, "pelops":2, "pelopidae":4, "peloric":3, "pelopea":4, "pelopia":4, "peloria":4, "pelorus":3, "pelota":3, "pelotas":3, "pele":3, "penal":2, "penal code":3, "penal servitude":5, "penalise":3, "penalised":3, "penalising":4, "penalize":3, "penalized":3, "penalizable":5, "penalizing":4, "penalisation":5, "penalization":5, "penang":2, "penang":2, "penaria":4, "penates":3, "penates":3, "peneios":3, "penelope":4, "penecontemporaneous":8, "peneplain":3, "peneplane":3, "peneus":3, "penile":2, "penillion":4, "penis":2, "penis envy":4, "penobscot":3, "penologist":4, "penology":4, "penological":5, "penuchle":3, "penuckle":3, "penult":2, "penultima":4, "penultimate":4, "penumbra":3, "penumbral":3, "penuche":3, "penurious":4, "penuriousness":5, "penutian":4, "peon":2, "peonage":3, "peonism":3, "peony":3, "peony":3, "peoria":4, "peorian":4, "pepino":3, "pepita":3, "pepo":2, "pepusch":2, "pequot":2, "per":2, "pera":2, "peraea":3, "perak":2, "peralta":3, "pereia":3, "pereion":3, "pereira":3, "pereira bark":4, "pereirine":3, "perennate":3, "perea":3, "peri":2, "peri":2, "peribolos":4, "peribolus":4, "pericope":4, "peridial":4, "peridiiform":5, "peridiole":4, "peridiolum":5, "peridium":4, "perigynous":4, "perimeter":4, "peripheral":4, "peripheral device":6, "peripherally":5, "peripheries":4, "periphery":4, "periphrasis":4, "periphyton":4, "peripety":4, "peripteral":4, "peripteries":4, "peripteroi":4, "peripteros":4, "periptery":4, "peripteral":4, "perique":2, "perissodactyl":5, "perissodactyle":5, "perissodactyla":6, "perissodactylous":6, "peristalith":4, "peristerite":4, "peritricha":4, "peritrichan":4, "peritrichate":4, "period":3, "period piece":4, "periodic":4, "periodic function":6, "periodic law":5, "periodic sentence":6, "periodic system":6, "periodic table":6, "periodical":5, "periodicalism":6, "periodicalist":6, "periodically":6, "periodicalness":6, "periodisation":6, "periodization":6, "periodate":4, "periodicity":6, "pero":2, "perotic":3, "peroxidase":4, "peroneal":4, "peronism":3, "peronist":3, "peronismo":4, "peronista":4, "perosis":3, "perovo":3, "peru":2, "peru current":4, "peruke":2, "peruse":2, "perused":2, "perusal":3, "perusable":4, "peruser":3, "perusing":3, "perutz":2, "peruzzi":3, "perugia":3, "perugian":3, "peruginesque":4, "perugino":4, "peruvian bark":5, "pern":3, "per":3, "pesach":2, "pesade":2, "pesah":2, "pesaro":3, "pescara":3, "peseta":3, "pesewa":3, "peshawar":3, "peshitta":3, "peshito":3, "peso":2, "petar":2, "petard":2, "peter":2, "peter":2, "peter i":3, "peter iii":3, "peter pan":3, "peter pan collar":5, "peter pence":3, "peter principle":5, "peter the hermit":5, "peter's pence":3, "peters":2, "petersburg":3, "peterborough":4, "peterlee":3, "peterloo massacre":6, "peterman":3, "petermann peak":4, "petersham":3, "peterson":3, "petechia":4, "petechiae":4, "petechial":4, "petechiate":4, "petit-bourgeois":3, "petit-matre":4, "petite":2, "petiteness":3, "petits":2, "petiolule":4, "petition":3, "petitionary":5, "petitionable":5, "petitioner":4, "petitionist":4, "petitio principii":8, "peto":2, "petoskey":3, "petra":2, "petrarch":2, "petrarchist":3, "petrarchan":3, "petrarchian":4, "petrarchianism":5, "petri dish":3, "petrie":2, "petrificant":4, "petrillo":3, "petrine":2, "petrinism":3, "petrina":3, "petrogeny":4, "petrographer":4, "petrography":4, "petrolic":3, "petrologist":4, "petrology":4, "petrouchka":3, "petrovsk":2, "petroleous":4, "petroleum":4, "petroleum ether":6, "petroleum jelly":6, "petrolina":4, "petronius":4, "petropavlovsk":4, "petropavlovsk-kamchatski":6, "petrosal":3, "petrosian":3, "petrozavodsk":4, "petrpolis":4, "petuntse":3, "petuntze":3, "petunia":4, "petfi":4, "petfi":3, "pewee":2, "pewit":2, "peyote":3, "pfalz":1, "pfennig":2, "pfennigs":2, "pfennige":3, "pfitzner":2, "pforzheim":2, "pga":1, "phacolite":3, "phaea":2, "phaeax":2, "phaeacia":3, "phaeacian":3, "phaedo":2, "phaedra":2, "phaedrus":2, "phaeomelanin":5, "phaeton":2, "phage":1, "phagedaenic":4, "phagedaena":4, "phagedaena":4, "phagedenic":4, "phagedena":4, "phagocyte":3, "phagocytize":4, "phagocytized":4, "phagocytizing":5, "phagocytolysis":6, "phagocytose":4, "phagocytosed":4, "phagocytosing":5, "phagocytolytic":6, "phagocytosis":5, "phagolytic":4, "phagomania":5, "phagophobia":5, "phaistos":2, "phalange":2, "phalanx":2, "phalansteries":4, "phalanstery":4, "phalansterian":5, "phalarope":3, "phalli":2, "phallic":2, "phallic stage":3, "phallism":2, "phallist":2, "phallical":3, "phallicism":3, "phallicist":3, "phallus":2, "phanatron":3, "phanerite":3, "phanerogamous":5, "phanerogamy":5, "phanerocrystalline":6, "phanerogam":4, "phanerogamic":5, "phanerophyte":4, "phanerozoic":5, "phanmata":3, "phano":2, "phanos":2, "phanotron":3, "phantasm":2, "phantasmal":3, "phantasmatic":4, "phantasmagoric":5, "phantasmagorist":5, "phantasmagorically":7, "phantasmagoria":6, "phantasmagorial":6, "phantasmagorially":7, "phantasmagorianly":7, "phantasmagory":5, "phantasmic":3, "phantasmical":4, "phantastic":3, "phantasus":3, "phantasy":3, "phantom":2, "phantom limb":3, "phantomlike":3, "phar":1, "phar":1, "pharm":1, "pharm":1, "pharaoh":2, "pharaoh ant":3, "pharaonic":4, "pharisaic":4, "pharisaism":4, "pharisaical":5, "pharisaically":6, "pharisaicalness":6, "pharisee":3, "phariseeism":4, "pharmacolite":4, "pharmaceutic":4, "pharmaceutics":4, "pharmaceutist":4, "pharmaceutical":5, "pharmaceutically":6, "pharmacist":3, "pharmacognostic":5, "pharmacognosist":5, "pharmacognosy":5, "pharmacologist":5, "pharmacology":5, "pharmacodynamic":6, "pharmacodynamics":6, "pharmacodynamical":7, "pharmacological":6, "pharmacologically":7, "pharmacopeia":5, "pharmacopoeia":5, "pharmacopoeial":5, "pharmacopoeic":5, "pharmacopoeist":5, "pharmacopsychosis":6, "pharmacy":3, "pharsalia":4, "pharsalian":4, "pharsalus":3, "pharynx":2, "pharyngectomy":5, "pharynges":3, "pharyngeal":4, "pharyngeal tonsil":6, "pharyngitis":4, "pharyngology":5, "pharyngoscopy":5, "pharyngotomy":5, "phase":1, "phase modulation":5, "phaseless":2, "phasmajector":4, "phasmid":2, "phatic":2, "phaye":1, "phaethon":3, "phaeton":3, "phagolysis":4, "phalanx":2, "phalanxes":3, "phalanger":3, "phalanges":3, "phalangeal":4, "pharos":2, "pharyngal":3, "pharyngoscope":4, "phaseal":3, "phasic":2, "phasis":2, "phanna":4, "phc":1, "phd":1, "pheasant":2, "pheasant's eye":3, "pheasant's-eye":2, "pheb":1, "pheidippides":4, "phelps":1, "phellem":2, "phelloderm":3, "phellogen":3, "phellogenetic":5, "phemerol":3, "phenanthrenequinone":5, "phenacite":3, "phenakite":3, "phenazine":3, "phenetole":3, "phenformin":3, "phenmetrazine":4, "phenyl":2, "phenylacetaldehyde":7, "phenylamine":4, "phenylaceticaldehyde":7, "phenylbenzene":4, "phenylcarbinol":5, "phenyldiethanolamine":8, "phenylene":3, "phenylethylene":5, "phenylethylmalonylurea":10, "phenylketonuria":7, "phenylmethane":4, "phenylthiocarbamide":7, "phenylthiourea":7, "phereclus":3, "pheromone":3, "phew":1, "phebe":2, "phegeus":3, "phelonia":4, "phelonion":4, "phemius":3, "phenacetin":4, "phenanthraquinone":5, "phenanthrene":3, "phenacaine":3, "phenetic":3, "phenetidin":4, "phenetidine":4, "phenix":2, "phenicia":3, "phenol":2, "phenolic":3, "phenolic resin":5, "phenology":4, "phenolphthalein":4, "phenomena":4, "phenomenal":4, "phenomenalism":5, "phenomenalist":5, "phenomenalistic":6, "phenomenalistically":8, "phenomenalize":5, "phenomenalized":5, "phenomenalizing":6, "phenomenality":6, "phenomenally":5, "phenomenize":4, "phenomenized":4, "phenomenology":6, "phenomenon":4, "phenomenologically":8, "phenoxide":3, "phenoxybenzamine":6, "phenobarbital":5, "phenobarbitone":5, "phenocopy":4, "phenocryst":3, "phenolate":3, "phenolated":4, "phenolia":4, "phenolion":4, "phenological":5, "phenoplast":3, "phenosafranine":5, "phenothiazine":5, "phenotype":3, "phenotypic":4, "phenotypically":6, "phenyl":2, "phenylalanine":5, "phenylamine":4, "phenylketonuria":7, "pheon":2, "pherae":2, "phi":1, "phi beta kappa":5, "phi-phenomenon":4, "phidias":3, "phies":1, "phil":1, "phil":1, "philem":1, "philol":1, "philos":1, "philanthropic":4, "philanthropical":5, "philanthropically":6, "philabeg":3, "philadelphia":5, "philadelphus":4, "philadelphia":6, "philatelic":4, "philatelically":6, "philby":2, "philharmonic":4, "philhellene":3, "philhellenic":4, "philhellenism":4, "philhellenist":4, "philip":2, "philip ii":3, "philip iv":3, "philip the good":4, "philip v":3, "philip vi":3, "philippeville":3, "philips":2, "philipsburg":3, "philippine mahogany":7, "philippine sea":4, "philippines":3, "philippopolis":5, "philistine":3, "philibeg":3, "philibert":3, "philius":3, "phillip":2, "phillippe":2, "phillips":2, "phillipsburg":3, "phillis":2, "phillida":3, "phillumenist":4, "philly":2, "philoctetes":4, "philodendron":4, "philolaus":4, "philological":5, "philologically":6, "philologian":5, "philomel":3, "philomela":4, "philomela":4, "philomena":4, "philonis":3, "philopena":4, "philoprogenitive":6, "philosophic":4, "philosophical":5, "philosophically":6, "philosophicalness":6, "philter":2, "philtered":2, "philterer":3, "philtering":3, "philtre":2, "philtrum":2, "philyra":3, "phineas":3, "phineus":3, "phitsanulok":4, "phiz":1, "phiz":1, "phial":2, "phialine":3, "phiale":3, "phidippides":4, "philae":2, "philander":3, "philanderer":4, "philanthropise":4, "philanthropised":4, "philanthropist":4, "philanthropising":5, "philanthropistic":5, "philanthropize":4, "philanthropized":4, "philanthropizing":5, "philanthropy":4, "philatelist":4, "philately":4, "philathea":4, "philemon":3, "philipp":2, "philippeville":3, "philippa":3, "philippi":3, "philippi":3, "philippic":3, "philippic":3, "philippics":3, "philippian":4, "philippians":4, "philippus":3, "philistinism":4, "philistia":4, "philia":3, "philibert":3, "philo":2, "philo judaeus":5, "philoetius":3, "philogyny":4, "philologer":4, "philologist":4, "philology":4, "philonome":4, "philosopher":4, "philosopher's stone":5, "philosophership":5, "philosophise":4, "philosophised":4, "philosophism":4, "philosophiser":5, "philosophising":5, "philosophize":4, "philosophized":4, "philosophizer":5, "philosophizing":5, "philosophization":6, "philosophy":4, "phimotic":3, "phimosis":3, "phithom":2, "phleboid":2, "phlebosclerosis":5, "phlebothrombosis":5, "phlebotome":3, "phlebotomic":4, "phlebotomical":5, "phlebotomically":6, "phlegm":1, "phlegmier":3, "phlegmiest":3, "phlegmless":2, "phlegmy":2, "phlegethon":3, "phlegethontal":4, "phlegethontic":4, "phlegmatic":3, "phlegmaticness":4, "phlegmatical":4, "phlegmatically":5, "phlegmaticalness":5, "phlegmatized":3, "phlegyas":2, "phlebitis":3, "phlebotomise":4, "phlebotomised":4, "phlebotomist":4, "phlebotomising":5, "phlebotomize":4, "phlebotomization":6, "phlebotomy":4, "phlias":2, "phlogopite":3, "phlorizin":3, "phloroglucinol":5, "phlox":1, "phloem":2, "phlogistic":3, "phlogiston":3, "phlogotic":3, "phlogosis":3, "phloridzin":3, "phlyctaena":3, "phlyctena":3, "phoebe":2, "phoebe":2, "phoebean":3, "phoebus":2, "phoenix":2, "phoenix":2, "phoenix islands":4, "phoenicia":3, "phoenician":3, "phoenicis":3, "phoenicia":4, "phoenician":4, "pholidota":4, "phomvihane":3, "phon":1, "phone":1, "phonevision":3, "phonol":1, "phonasthenia":5, "phonautograph":4, "phonic":2, "phonics":2, "phooey":2, "phorcids":2, "phorcys":2, "phoresy":3, "phosgene":2, "phosgenite":3, "phosphate":2, "phosphagen":3, "phosphatase":3, "phosphatide":3, "phosphation":3, "phosphatise":3, "phosphatised":3, "phosphatising":4, "phosphatize":3, "phosphatized":3, "phosphatizing":4, "phosphatization":5, "phosphaturic":4, "phosphaturia":5, "phosphene":2, "phosphide":2, "phosphine":2, "phosphite":2, "phosphor":2, "phosphor":2, "phosphor bronze":3, "phosphore":2, "phosphoreted":4, "phosphoretted":4, "phosphoric":3, "phosphoric acid":5, "phosphoroscope":4, "phosphorylase":4, "phosphocreatin":5, "phosphocreatine":5, "phospholipid":4, "phospholipide":4, "phosphonium":4, "phosphonuclease":5, "phosphoprotein":4, "phosphorate":3, "phosphorated":4, "phosphorating":4, "phosphoresce":3, "phosphoresced":3, "phosphorescing":4, "phosphorescence":4, "phosphorescent":4, "phosphorescently":5, "phosphori":3, "phosphorise":3, "phosphorised":3, "phosphorism":3, "phosphorising":4, "phosphorite":3, "phosphorous":3, "phosphorous acid":5, "phosphorus":3, "phosphorus":3, "phosphorus pentoxide":6, "phosphorylase":4, "phosphorylate":4, "phosphorylated":5, "phosphorylating":5, "phosphorylation":5, "phossy jaw":3, "phot":1, "photog":1, "phobetor":3, "phobia":3, "phobos":2, "phobus":2, "phocaea":3, "phocine":2, "phocis":2, "phocion":3, "phocomely":4, "phocomelia":5, "phocylides":4, "phokomelia":5, "phonal":2, "phonate":2, "phonated":3, "phonating":3, "phonation":3, "phonatory":4, "phoneme":2, "phonendoscope":4, "phonesthemic":4, "phonetic":3, "phonetic alphabet":6, "phonetics":3, "phonetist":3, "phonetical":4, "phoney":2, "phonematic":4, "phonematics":4, "phonemic":3, "phonemics":3, "phonemicist":4, "phonemicize":4, "phonemicized":4, "phonemicizing":5, "phonetist":3, "phonetician":4, "phoniatric":4, "phonier":3, "phoniest":3, "phoniness":3, "phono":2, "phonographer":4, "phonographist":4, "phonography":4, "phonologist":4, "phonology":4, "phonometer":4, "phonon":2, "phonocardiography":7, "phonocardiogram":6, "phonocardiograph":6, "phonogram":3, "phonogramic":4, "phonogramically":6, "phonogrammic":4, "phonogrammically":6, "phonograph":3, "phonographic":4, "phonographical":5, "phonolite":3, "phonolitic":4, "phonological":5, "phonologically":6, "phonometric":4, "phonophore":3, "phonophoric":4, "phonopore":3, "phonoreception":5, "phonoreceptor":5, "phonoscope":3, "phonotactics":4, "phonotype":3, "phonotyper":4, "phonotypic":4, "phonotypist":4, "phonotypically":6, "phonotypy":4, "phony":2, "phoroneus":4, "phoronid":3, "photalgia":4, "photic":2, "photics":2, "photism":2, "photius":3, "photo":2, "photo finish":4, "photo relief":4, "photo-mount":2, "photo-offset":3, "photo-offsetting":4, "photo-reconnaissance":5, "photographer":4, "photography":4, "photolysis":4, "photometer":4, "photometrist":4, "photometry":4, "photon":2, "photophilous":4, "photophily":4, "photopathy":4, "photopic":3, "phototonus":4, "photovolto":2, "photoactinic":5, "photoactive":4, "photoautotrophic":6, "photobathic":4, "photobiotic":5, "photocathode":4, "photocell":3, "photochemist":4, "photochemistry":5, "photochemical":5, "photochemically":6, "photochronography":6, "photochronograph":5, "photochromy":4, "photocompose":4, "photocomposed":4, "photocomposer":5, "photocomposing":5, "photocomposition":6, "photoconduction":5, "photoconductive":5, "photoconductivity":7, "photoconductor":5, "photocopier":5, "photocopy":4, "photocurrent":4, "photodisintegration":7, "photodissociation":7, "photodramatist":5, "photodrama":4, "photodramatic":5, "photodramatics":5, "photoduplicate":5, "photoduplication":6, "photodynamic":5, "photodynamics":5, "photodynamical":6, "photodynamically":7, "photoengrave":4, "photoengraved":4, "photoengraver":5, "photoengraving":5, "photoelastic":5, "photoelasticity":7, "photoelectric":5, "photoelectric cell":6, "photoelectric effect":7, "photoelectrical":6, "photoelectrically":7, "photoelectron":5, "photoelectrotype":6, "photoemission":5, "photoemissive":5, "photofinisher":5, "photofinishing":5, "photofission":4, "photofit":3, "photoflash":3, "photoflight":3, "photoflood":3, "photofluorography":6, "photogelatin process":7, "photogen":3, "photogene":3, "photogenic":4, "photogenically":6, "photogeology":6, "photogram":3, "photogrammetry":5, "photograph":3, "photographable":5, "photographic":4, "photographic magnitude":7, "photographical":5, "photographically":6, "photograt":3, "photogravure":4, "photoheliography":7, "photoheliographic":7, "photoionization":7, "photojournalism":5, "photojournalist":5, "photokinetic":5, "photokinesis":5, "photolithograph":5, "photolithographic":6, "photolithoprint":5, "photolithographer":6, "photolithography":6, "photoluminescence":6, "photoluminescent":6, "photolytic":4, "photomap":3, "photometric":4, "photometrically":6, "photomechanical":6, "photomechanically":7, "photometrician":5, "photomicrography":6, "photomicroscopy":6, "photomicrograph":5, "photomicroscope":5, "photomontage":4, "photomultiplier":6, "photomural":4, "photomural":4, "photonasty":4, "photonegative":5, "photoneutron":4, "photonuclear":5, "photopathic":4, "photoperiod":5, "photoperiodism":6, "photoperiod":5, "photoperiodic":6, "photophore":3, "photophosphorylation":7, "photophobia":5, "photopia":4, "photoplay":3, "photopography":5, "photopolymer":5, "photoprinter":4, "photoprinting":4, "photoproton":4, "photoreception":5, "photoreceptive":5, "photoreceptor":5, "photoreconnaissance":6, "photorecorder":5, "photorecording":5, "photosensitise":5, "photosensitive":5, "photosensitize":5, "photoset":3, "photospectroscopy":6, "photospectroscopic":6, "photosphere":3, "photospheric":4, "photostat":3, "photostatic":4, "photostatically":6, "photostatter":4, "photosynthate":4, "photosynthetically":7, "photosynthesis":5, "photosynthesise":5, "photosynthesize":5, "phototactic":4, "phototactically":6, "phototaxis":4, "phototaxy":4, "phototelegraph":5, "phototelegraphic":6, "phototelegraphically":8, "phototelegraphy":6, "phototherapeutics":6, "phototherapist":5, "phototherapy":5, "photothermal":4, "photothermic":4, "phototheodolite":6, "phototonic":4, "phototopographic":6, "phototopography":6, "phototransistor":5, "phototroph":3, "phototropic":4, "phototropism":4, "phototropically":6, "phototube":3, "phototype":3, "phototypesetting":5, "phototypic":4, "phototypically":6, "phototypy":4, "phototypography":6, "phototypographic":6, "photovoltaic":5, "photovoltaic effect":7, "photozincography":6, "photronic":3, "photuria":4, "phr":1, "phrase":1, "phrase marker":3, "phrase-structure rule":3, "phrasal":2, "phrasal verb":3, "phrasing":2, "phraseologist":5, "phraseology":5, "phraseogram":4, "phraseograph":4, "phraseological":6, "phraseologically":7, "phratry":2, "phren":1, "phrenic":2, "phrenogastric":4, "phrenologic":4, "phrenologically":6, "phrensied":2, "phrensy":2, "phrensying":3, "phreatic":3, "phreatophyte":4, "phreatophytic":5, "phrenetic":3, "phreneticness":4, "phrenetical":4, "phrenetically":5, "phrenitic":3, "phrenitis":3, "phrenologist":4, "phrenology":4, "phrixus":2, "phrygia":3, "phrygian":3, "phrygian cap":4, "phthalein":2, "phthalic":2, "phthalic acid":4, "phthalic anhydride":5, "phthalin":2, "phthalocyanine":5, "phthalein":2, "phthisicky":3, "phthisical":3, "phthia":2, "phthiocol":3, "phthiriasis":4, "phthisic":2, "phthisis":2, "phut":1, "phugoid":2, "phuket":2, "phyfe":1, "phylacteric":4, "phyllary":3, "phyllis":2, "phyllite":2, "phyllocladous":4, "phyllode":2, "phylloid":2, "phyllome":2, "phyllomic":3, "phyllopodan":4, "phylloxera":4, "phylloxerae":4, "phylloclad":3, "phylloclade":3, "phyllocladia":5, "phyllocladioid":5, "phyllocladium":5, "phyllodial":4, "phyllody":3, "phyllogenetic":5, "phyllophore":3, "phyllopod":3, "phylloquinone":4, "phyllosilicate":5, "phyllotactic":4, "phyllotaxis":4, "phyllotaxy":4, "phys":1, "physic":2, "physicked":2, "physicking":3, "physics":2, "physiatric":4, "physiatrics":4, "physiatrist":4, "physiatrical":5, "physical":3, "physical anthropology":8, "physical chemistry":6, "physical education":7, "physical examination":8, "physical geography":7, "physical jerks":4, "physical medicine":6, "physical science":5, "physical therapy":6, "physicalism":4, "physicality":5, "physically":4, "physicist":3, "physicochemical":6, "physicochemically":7, "physiognomic":5, "physiognomically":7, "physiognomist":5, "physiognomonically":8, "physiognomy":5, "physiography":5, "physiologist":5, "physiology":5, "physiocrat":4, "physiocratic":5, "physiologic":5, "physiological":6, "physiological psychology":10, "physiologically":7, "physiopathological":8, "physiotherapist":6, "physiotherapy":6, "phytalus":3, "phyteus":3, "phyxius":3, "phycologist":4, "phycology":4, "phycocolloid":4, "phycocyanin":5, "phycological":5, "phycomyces":4, "phycomycete":4, "phycomycetes":5, "phyla":2, "phylacteried":4, "phylacteries":4, "phylactery":4, "phylactic":3, "phylar":2, "phyle":2, "phyletic":3, "phyletically":5, "phyleus":3, "phylic":2, "phylo":2, "phylogeny":4, "phylonome":4, "phylogenesis":5, "phylogenetic":5, "phylum":2, "phyma":2, "phymas":2, "phymatic":3, "phymata":3, "physique":2, "physis":2, "physician":3, "physicianly":4, "physicianship":4, "physostomous":4, "physoclistous":4, "physostigmin":4, "physostigmine":4, "phytogeny":4, "phytographer":4, "phytographist":4, "phytography":4, "phytology":4, "phyton":2, "phytophagous":4, "phytobiology":6, "phytocide":3, "phytocidal":4, "phytoclimatology":7, "phytoclimatologic":7, "phytocoenosis":5, "phytogenesis":5, "phytogenic":4, "phytogeographer":6, "phytogeography":6, "phytogeographical":7, "phytogeographically":8, "phytographic":4, "phytohormone":4, "phytologic":4, "phytologically":6, "phytonadione":5, "phytopathologist":6, "phytopathology":6, "phytoplankton":4, "phytoplasm":3, "phytosociologist":7, "phytosociology":7, "phytosociologic":7, "phytosociologically":9, "phytosuccivorous":6, "phytotoxic":4, "phytotoxin":4, "phytotron":3, "phdre":3, "pi meson":3, "piaf":1, "piaffe":1, "piaffing":2, "piaui":2, "piau":3, "piazze":2, "piacenza":3, "piaget":2, "piala":2, "piano":2, "piatigorsk":3, "piatigorsky":4, "piave":2, "pibcorn":2, "pibgorn":2, "pic":1, "pice":1, "pich":1, "pichiciago":5, "pichiciego":5, "pick":1, "pick-up":1, "picked":1, "pickax":2, "pickaxe":2, "pickaxed":2, "pickaxes":3, "pickaxing":3, "pickaback":3, "pickaninny":4, "pickaroon":3, "picked":2, "pickeer":2, "picker":2, "pickerel":3, "pickerelweed":4, "pickering":3, "picket":2, "picket fence":3, "picket line":3, "pickett":2, "picketer":3, "pickford":2, "pickin":2, "pickings":2, "pickier":3, "pickiest":3, "pickle":2, "pickled":2, "picklock":2, "pickney":2, "pickpocket":3, "pickthank":2, "pickwick":2, "pickwickian":4, "picky":2, "pict":1, "pictish":2, "picardy":3, "picardy third":4, "picador":3, "picaninny":4, "picara":3, "picaresque":3, "picaro":3, "picaroon":3, "picayune":3, "picayune":3, "picayunishness":5, "piccard":2, "piccadilly":4, "piccalilli":4, "piccanin":3, "piccaninny":4, "piccolo":3, "piccoloist":4, "piccolomini":5, "piceous":3, "picnic":2, "picnic races":4, "picnicked":2, "picnicker":3, "picnicking":3, "picong":2, "picoline":3, "picolinic":4, "picotee":3, "picrate":2, "picrated":3, "picric":2, "picric acid":4, "picrite":2, "picrotoxic":4, "picrotoxin":4, "pictet":2, "pictor":2, "pictogram":3, "pictograph":3, "pictores":3, "pictorial":4, "pictorialise":5, "pictorialised":5, "pictorialism":5, "pictorialising":6, "pictorialization":7, "pictorially":5, "pictorialness":5, "picture":2, "picture card":3, "picture hat":3, "picture palace":4, "picture tube":3, "picture window":4, "picture writing":4, "pictured":2, "picturegoer":4, "picturesque":3, "picturesquely":4, "picturesqueness":4, "picturing":3, "picturize":3, "picturized":3, "picturizing":4, "picturization":5, "picul":2, "pidgin":2, "pidgin english":4, "pidgized":2, "pidgizing":3, "piddle":2, "piddler":2, "piddling":2, "piddock":2, "pidgeon":2, "pidginization":5, "pie":1, "pie-dog":1, "pie-eater":2, "piece":1, "piecemeal":2, "piecewise":2, "piecework":2, "pieceworker":3, "piecer":2, "piecing":2, "pied":1, "pied wagtail":3, "pied-piping":2, "piedmont":2, "piedmont":2, "piedmontite":3, "piedmontese":3, "piend":1, "pier":1, "pier table":3, "pierce":1, "pierce":1, "pierceable":3, "piercer":2, "piercing":2, "piercingly":3, "piercingness":3, "pierre":1, "pierhead":2, "piebald":2, "piebaldly":3, "piebaldness":3, "piecrust":2, "piecrust table":4, "pieing":2, "pielike":2, "pieman":2, "piemonte":3, "pieplant":2, "piero":2, "piero della francesca":7, "piero di cosimo":6, "pieter":2, "pietermaritzburg":5, "pietro":2, "piet":3, "piffle":2, "pig":1, "pig iron":3, "pig latin":3, "pig-headed":2, "pigg":1, "pigs":1, "pigboat":2, "pigface":2, "pigfish":2, "pigfishes":3, "piggeries":3, "piggery":3, "piggie":2, "piggin":2, "pigging":2, "piggish":2, "piggishly":3, "piggishness":3, "piggier":3, "piggiest":3, "piggott":2, "piggy":2, "piggy bank":3, "piggyback":3, "piglet":2, "pigling":2, "pigmeat":2, "pigment":2, "pigmentation":4, "pigmy":2, "pigmy":2, "pignora":3, "pignus":2, "pignut":2, "pigpen":2, "pigskin":2, "pigstick":2, "pigsticker":3, "pigsticking":3, "pigsty":2, "pigswill":2, "pigtail":2, "pigweed":2, "pike":1, "pike":1, "pikesville":2, "pikeblenny":3, "pikelet":2, "pikelike":2, "pikeman":2, "pikeperch":2, "pikeperches":3, "pikestaff":2, "pikeville":2, "piker":2, "piking":2, "pilch":1, "pile":1, "pile-driver":2, "piled":1, "piles":1, "pileup":2, "pilewort":2, "pill":1, "pills":1, "pillbox":2, "pillwort":2, "pilsner":2, "piltdown man":3, "pilastrade":3, "pilchard":2, "pilcher":2, "pilcomayo":4, "pilfer":2, "pilferage":3, "pilgarlic":3, "pilgarlicky":4, "pilgrim":2, "pilgrim fathers":4, "pilgrims":2, "pilgrimage":3, "pilgrimage of grace":5, "pilgrimaged":3, "pilgrimaging":4, "pilgrimatic":4, "pilgrimatical":5, "piling":2, "piliform":3, "pillage":2, "pillaged":2, "pillaging":3, "pillar":2, "pillar box":3, "pillar-and-breast":2, "pillared":2, "pillars of hercules":6, "pillaret":3, "pillarlike":3, "pillion":2, "pilliwinks":3, "pillow":2, "pillow block":3, "pillow lace":3, "pillow sham":3, "pillowcase":3, "pillowless":3, "pillowlike":3, "pillowslip":3, "pillowy":3, "pilloried":3, "pillory":3, "pillorying":4, "pilpul":2, "pilpulist":3, "pilpulistic":4, "pilsen":2, "pilsener":3, "pilsner":2, "pilsudski":3, "pilule":2, "pilular":3, "pily":2, "pimp":1, "pimelitis":4, "pimola":3, "pimpernel":3, "pimple":2, "pimpled":2, "pimply":2, "pin":1, "pin money":3, "pin-up":1, "pinch":1, "pinch effect":3, "pinchable":3, "pinchbeck":2, "pinchbottle":3, "pinchcock":2, "pincher":2, "pinchpenny":3, "pinckney":2, "pinckneyville":3, "pindling":2, "pine":1, "pine marten":3, "pine needle":3, "pines":1, "pineapple":3, "pineapple weed":4, "pinedrops":2, "pinelike":2, "pinesap":2, "pineville":2, "piney":2, "ping":1, "pinge":1, "pinging":2, "pingr":3, "pink":1, "pink elephant":4, "pink salmon":3, "pinkerton":3, "pinkey":2, "pinkeye":2, "pinkie":2, "pinkies":2, "pinking shears":3, "pinkish":2, "pinko":2, "pinkroot":2, "pinkster":2, "pinky":2, "pins and needles":4, "pinsk":1, "pint":1, "pinta":2, "pinxit":2, "pinxter":2, "pinacoid":3, "pinacoidal":4, "pinafore":3, "pinafore":3, "pinafore dress":4, "pinball":2, "pincer movement":4, "pincers":2, "pinchot":2, "pincushion":3, "pincushion-flower":4, "pindar":2, "pindaric":3, "pindaric ode":4, "pindarically":5, "pindus":2, "pineries":3, "pinery":3, "pineal":3, "pineal eye":4, "pineal gland":4, "pinfall":2, "pinfeather":3, "pinfire":2, "pinfish":2, "pinfishes":3, "pinfold":2, "pingo":2, "pinguid":2, "pinguidity":4, "pinhead":2, "pinheaded":3, "pinhole":2, "pinhole camera":5, "pinion":2, "pinite":2, "pinier":3, "piniest":3, "pinna":2, "pinnace":2, "pinnae":2, "pinnal":2, "pinnate":2, "pinnately":3, "pinnated":3, "pinnatedly":4, "pinnatifid":4, "pinnatilobed":4, "pinnatilobate":5, "pinnatipartite":5, "pinnatiped":4, "pinnatisect":4, "pinnacle":3, "pinnation":3, "pinner":2, "pinning":2, "pinniped":3, "pinnipedian":5, "pinnule":2, "pinnula":3, "pinnular":3, "pinnulate":3, "pinnulated":4, "pinny":2, "pinpoint":2, "pinprick":2, "pinsetter":3, "pinspotter":3, "pinstripe":2, "pinta":2, "pinta":2, "pintail":2, "pintada":3, "pintadera":4, "pintado":3, "pintano":3, "pinter":2, "pintle":2, "pinto":2, "pinto bean":3, "pintoricchio":4, "pinturicchio":4, "pinup":2, "pinweed":2, "pinwheel":2, "pinwork":2, "pinworm":2, "piny":2, "pinz":2, "pinzn":3, "piolet":2, "pip":1, "pip":1, "pipe":1, "pipe cleaner":3, "pipe major":3, "pipe organ":3, "pipeclay":2, "pipefish":2, "pipefitting":3, "pipeful":2, "pipeless":2, "pipelike":2, "pipeline":2, "pipestem":2, "pipestone":2, "pipestone":2, "pipewort":2, "pipage":2, "piper":2, "piperaceous":4, "piperine":3, "piperonal":4, "piperaceous":4, "piping":2, "pipingly":3, "pipit":2, "pipier":3, "pipiest":3, "pipistrelle":3, "pipkin":2, "pippa":2, "pipper":2, "pippin":2, "pipping":2, "pipsissewa":4, "pipsqueak":2, "piptonychia":5, "pipy":2, "pique":1, "piquing":2, "piqua":2, "pire":1, "pirn":1, "piriformis":4, "pirouette":3, "pirouetted":4, "pirouetting":4, "pis aller":3, "pish":1, "pishpek":2, "piss":1, "piss artist":3, "piss about":3, "pissed":1, "pissing":2, "piste":1, "piscary":3, "piscatology":5, "piscator":3, "piscatorial":5, "piscatory":4, "piscine":2, "piscis austrinus":5, "piscivorous":4, "pisciculture":4, "piscicultural":5, "pisciculturally":6, "pisciculturist":5, "pisciform":3, "piscina":3, "pisco":2, "pisgah":2, "pisiform":3, "pismire":2, "pisolitic":4, "pissarro":3, "pistache":2, "pistachio":4, "pistachios":4, "pistareen":3, "pistil":2, "pistillate":3, "pistol":2, "pistol grip":3, "pistol-whip":2, "pistole":2, "pistoled":2, "pistolled":2, "pistoling":3, "pistollike":3, "pistolling":3, "pistology":4, "piston":2, "piston":2, "piston ring":3, "piston rod":3, "pistonlike":3, "pistoia":3, "pistoleer":3, "pistolier":3, "pit":1, "pit viper":3, "pitch":1, "pitch accent":3, "pitch circle":3, "pitch into":3, "pitch-farthing":2, "pitched battle":3, "pitchable":3, "pitchblende":2, "pitcher":2, "pitcher plant":3, "pitcherful":3, "pitcherlike":3, "pitchfork":2, "pitching":2, "pitching tool":3, "pitchier":3, "pitchiest":3, "pitchiness":3, "pitchlike":2, "pitchman":2, "pitchometer":4, "pitchometer":4, "pitchout":2, "pitchpot":2, "pitchstone":2, "pitchy":2, "pith":1, "pith helmet":3, "pithecanthropid":5, "pithecanthropoid":5, "pithecanthropus":5, "pithecanthropus":5, "pithecoid":3, "pithiness":3, "pithy":2, "pitt":1, "pitt street farmer":4, "pittsburg":2, "pittsburgh":2, "pittsfield":2, "pitahaya":4, "pitaka":3, "pitapat":3, "pitapatted":4, "pitapatting":4, "pitcairn island":4, "piteous":3, "piteousness":4, "pitfall":2, "pithead":2, "pitied":2, "pities":2, "pitiable":4, "pitiableness":5, "pitiably":4, "pitier":3, "pitiful":3, "pitifully":4, "pitifulness":4, "pitiless":3, "pitilessly":4, "pitilessness":4, "pitman":2, "pitman":2, "pitsaw":2, "pitta":2, "pittance":2, "pitted":2, "pitter-patter":3, "pittheus":3, "pitting":2, "pituri":3, "pity":2, "pitys":2, "pitying":3, "pityingly":4, "pityocamptes":5, "pityriasis":5, "pityroid":3, "piura":2, "pivot":2, "pivot bridge":3, "pivotal":3, "pivotally":4, "pivoting":3, "pix":1, "pixel":2, "pixie":2, "pixies":2, "pixieish":3, "pixilated":4, "pixy":2, "pixyish":3, "pize":1, "pizz":1, "pizza":2, "pizzeria":4, "pizzicato":4, "pizzle":2, "pia":2, "pia mater":4, "piacular":4, "piaffe":2, "pial":2, "pian":2, "pianic":3, "pianist":3, "piano":3, "piano accordion":7, "piano player":5, "piano roll":4, "piano stool":4, "piano trio":5, "pianos":3, "pianoforte":5, "piassaba":4, "piassava":4, "piaster":3, "piastre":3, "piazza":3, "piazzaed":3, "piazzas":3, "piazzi":3, "piazzian":4, "pianette":3, "pianism":3, "pianist":3, "pianissimo":5, "piano":3, "pianola":4, "piarist":3, "piblockto":3, "piblokto":3, "pibroch":2, "pica":2, "picard":2, "picasso":3, "picador":3, "picadores":4, "pico de aneto":6, "pico de teide":5, "pico della mirandola":8, "picot":2, "picocurie":4, "picofarad":4, "picometer":4, "picosecond":4, "picowatt":3, "picumnus":3, "picus":2, "piedfort":3, "pierrette":3, "pierrot":3, "piest":2, "piet":2, "piefort":3, "pielus":3, "pieria":4, "pierian":4, "pierian spring":5, "pierides":4, "pieridine":4, "piet":3, "pietas":3, "pietism":3, "pietism":3, "pietist":3, "pietistic":4, "pietistical":5, "pietistically":6, "piety":3, "piezometer":5, "piezometry":5, "piezochemistry":6, "piezoelectric crystal":8, "piezoelectric effect":8, "piezoelectricity":8, "piezometric":5, "pigalle":2, "pigeon":2, "pigeon breast":3, "pigeon hawk":3, "pigeon pea":3, "pigeon-hearted":3, "pigeon-livered":3, "pigeon-toed":2, "pigeonberry":4, "pigeonhole":3, "pigeonholed":3, "pigeonholing":4, "pigeonite":3, "pigeonpox":3, "pigeonwing":3, "pignon":2, "pignolia":4, "piing":2, "pika":2, "pilaf":2, "pilar":2, "pilaster":3, "pilastrade":3, "pilate":2, "pilau":2, "pilatus":3, "pilea":3, "pileate":3, "pileated":4, "pilei":3, "pileous":3, "pileum":3, "pileus":3, "pili":2, "piliferous":4, "pilos":2, "pilose":2, "pilosity":4, "pilot":2, "pilot balloon":4, "pilot biscuit":4, "pilot cloth":3, "pilot engine":4, "pilot film":3, "pilot fish":3, "pilot house":3, "pilot lamp":3, "pilot light":3, "pilot officer":5, "pilot whale":3, "pilotage":3, "pilotfish":3, "pilotfishes":4, "pilothouse":3, "pilothouses":4, "piloting":3, "pilotless":3, "pilocarpin":4, "pilocarpine":4, "pilonidal":4, "piloti":3, "pilumnus":3, "pilus":2, "pima":2, "piman":2, "pimento":3, "pimiento":3, "pina cloth":3, "pinang":2, "pinar del ro":5, "pinard":2, "pinaster":3, "pinaceous":3, "pinel":2, "pinene":2, "pinery":3, "pinero":3, "pinetum":3, "pini":2, "pinitol":3, "pinochle":3, "pinocle":3, "pinole":2, "pinot":2, "pinochet":3, "pinole":3, "pion":2, "piosity":4, "pious":2, "piously":3, "piousness":3, "piozzi":3, "pioneer":3, "pipa":2, "pipal":2, "piperazine":4, "piperidine":4, "piperonal":4, "pipet":2, "pipette":2, "pipetted":3, "pipetting":3, "piqu":2, "piquant":2, "piquantly":3, "piquantness":3, "piquancy":3, "piquet":2, "piqu":3, "piraeus":3, "pirandello":4, "pirate":2, "piratelike":3, "piratical":4, "piratically":5, "pira":3, "piracy":3, "piragua":3, "piranesi":4, "piranha":3, "pirarated":4, "pirarating":4, "pirene":3, "pirithous":4, "pirithos":5, "pirog":2, "pirogue":2, "piroshki":3, "pirozhki":3, "pirogen":3, "pirous":3, "pisa":2, "pisan":2, "pisander":3, "pisay":2, "pisanello":4, "pisano":3, "pisces":2, "pishogue":2, "pisidia":4, "pisidian":4, "pisistance":3, "pisistratidae":5, "pisistratus":4, "pisolite":3, "pis":3, "pita":2, "pitanga":3, "pitana":3, "pitatus":3, "pithoi":2, "pithom":2, "pithos":2, "pitiscus":3, "piton":2, "pitot tube":3, "pitot-static tube":4, "pitocin":3, "pitri":2, "pituitaries":5, "pituitary":5, "pituitary extract":7, "pituitary gland":6, "pituitousness":5, "pius ii":3, "pius iv":3, "pius ix":3, "pius v":3, "pius vii":3, "pius x":3, "pius xi":3, "pius xii":3, "piute":2, "pizaine":2, "pizarro":3, "pia":3, "pion":3, "pions":3, "piones":4, "pkg":1, "pkt":1, "pl/1":1, "pla":1, "place":1, "place setting":3, "place-kicker":2, "placeable":3, "placeless":2, "placelessly":3, "placeman":2, "placemanship":3, "placement":2, "plack":1, "placket":2, "placage":2, "placard":2, "placarder":3, "placate":2, "placability":5, "placable":3, "placableness":4, "placative":3, "placatory":4, "placcate":2, "placentary":4, "placentation":4, "placer":2, "placid":2, "placidly":3, "placing":2, "placidyl":3, "placode":2, "placoid":2, "placoderm":3, "plage":1, "plague":1, "plaice":1, "plaid":1, "plaided":2, "plain":1, "plain chocolate":4, "plain sailing":3, "plain-spoken":2, "plains":1, "plains indian":4, "plains of abraham":5, "plainsman":2, "plaint":1, "plainchant":2, "plainfield":2, "plainly":2, "plainness":2, "plainsong":2, "plainstanes":2, "plainstones":2, "plaintiff":2, "plaintiffship":3, "plaintive":2, "plaintively":3, "plaintiveness":3, "plainview":2, "plaister":2, "plait":1, "plaiting":2, "plan":1, "planch":1, "planchet":2, "planck":1, "planck constant":3, "planck's constant":3, "planctae":2, "plane":1, "plane angle":3, "plane geometry":5, "plane polarization":6, "plane sailing":3, "plane surveying":4, "plane table":3, "plane-polarized":3, "plank":1, "planker":2, "planking":2, "plankless":2, "planklike":2, "plankter":2, "plankton":2, "planktonic":3, "plant":1, "plant kingdom":3, "plant-cutter":2, "plantable":3, "planter":2, "plantless":2, "plantlike":2, "planceer":2, "plancer":2, "planchette":2, "planer":2, "planet":2, "planet wheel":3, "planet-stricken":3, "planet-struck":2, "planetoid":3, "planetoidal":4, "planetaria":5, "planetarium":5, "planetariums":5, "planetary":4, "planetary nebula":7, "planetesimal":5, "planetesimal hypothesis":9, "planetology":5, "planform":2, "plangent":2, "planing":2, "planish":2, "planimetric":4, "planisphere":3, "planispherical":5, "planning":2, "planning blight":3, "planoblast":3, "planoblastic":4, "planogamete":4, "planospore":3, "plansheer":2, "plantagenet":4, "plantain":2, "plantain lily":4, "plantain-eater":3, "plantar":2, "plantation":3, "plantation":3, "plantationlike":4, "plantin":2, "plantigrade":3, "plantocracy":4, "planula":3, "planular":3, "planulate":3, "plaque":1, "plash":1, "plasher":2, "plashingly":3, "plashier":3, "plashiest":3, "plashy":2, "plasm":1, "plasma":2, "plasma engine":4, "plasma membrane":4, "plasma torch":3, "plasmalogen":4, "plasmacyte":3, "plasmagel":3, "plasmagene":3, "plasmapheresis":5, "plasmasol":3, "plasmin":2, "plasminogen":4, "plasmogamy":4, "plasmolysis":4, "plasmon":2, "plasmochin":3, "plasmocyte":3, "plasmodesm":3, "plasmodesma":4, "plasmodia":4, "plasmodial":4, "plasmodium":4, "plasmolyse":3, "plasmolytic":4, "plasmolyze":3, "plasmoquine":3, "plasmosome":3, "plassey":2, "plaster":2, "plaster cast":3, "plaster of paris":5, "plastered":2, "plasterboard":3, "plasterer":3, "plastering":3, "plasteriness":4, "plasterlike":3, "plasterwork":3, "plastery":3, "plastic":2, "plastic bomb":3, "plastic surgery":5, "plastics":2, "plasticity":4, "plasticly":3, "plastid":2, "plastique":2, "plastically":4, "plasticine":3, "plasticise":3, "plasticised":3, "plasticiser":4, "plasticising":4, "plasticize":3, "plasticized":3, "plasticizer":4, "plasticizing":4, "plasticization":5, "plastiqueur":3, "plastometer":4, "plastometry":4, "plastometric":4, "plastotype":3, "plastron":2, "plat":1, "plate":1, "plate":1, "plate armour":3, "plate tectonics":4, "plateholder":3, "platelayer":3, "platelet":2, "platemark":2, "plath":1, "platte":1, "plattsmouth":2, "plattdeutsch":2, "platan":2, "platband":2, "plateau":2, "plateau":2, "plated":2, "platen":2, "plater":2, "platform":2, "platform rocker":4, "platform ticket":4, "platies":2, "plating":2, "platinite":3, "platiniridium":6, "platier":3, "platiest":3, "platina":3, "platinate":3, "platinated":4, "platinating":4, "platiniferous":5, "platinise":3, "platinised":3, "platinising":4, "platinize":3, "platinized":3, "platinizing":4, "platinization":5, "platinoid":3, "platinous":3, "platinocyanic":6, "platinocyanic acid":8, "platinocyanide":6, "platinotron":4, "platinotype":4, "platinum":3, "platinum black":4, "platinum metal":5, "platinum-blond":3, "platinum-blonde":3, "platitude":3, "platitudinise":5, "platitudinised":5, "platitudiniser":6, "platitudinising":6, "platitudinize":5, "platitudinized":5, "platitudinizer":6, "platitudinizing":6, "platitudinization":7, "platitudinous":5, "platitudinously":6, "platitudinousness":6, "platted":2, "plattensee":3, "platter":2, "platteland":3, "platting":2, "platy":2, "platyrrhine":3, "platyrrhinian":5, "platys":2, "platycephalous":5, "platycephaly":5, "platycephalic":5, "platyhelminth":4, "platyhelminthes":5, "platyhelminthic":5, "platykurtic":4, "platykurtosis":5, "platypod":3, "platypus":3, "plaudit":2, "plauen":2, "plausive":2, "plausible":3, "plautus":2, "play":1, "play along":3, "playacting":3, "playable":3, "playback":2, "playbill":2, "playbook":2, "playboy":2, "playclothes":2, "playday":2, "playdown":2, "player":2, "player":2, "player piano":5, "playfellow":3, "playful":2, "playfully":3, "playfulness":3, "playgirl":2, "playgoer":3, "playground":2, "playhouse":2, "playhouses":3, "playing card":3, "playing field":3, "playlet":2, "playmaker":3, "playmate":2, "playpen":2, "playreader":3, "playroom":2, "playschool":2, "playsuit":2, "plaything":2, "playtime":2, "playwright":2, "playwriting":3, "placate":2, "placative":3, "placatory":4, "placenta":3, "placental":3, "placentate":3, "placentia":3, "placet":2, "placebo":3, "placebo effect":5, "placidity":4, "plafond":2, "plaga":2, "plagae":2, "plagal":2, "plagiarise":3, "plagiarised":3, "plagiarism":3, "plagiarist":3, "plagiarising":4, "plagiaristic":4, "plagiarize":3, "plagiarized":3, "plagiarizing":4, "plagiary":3, "plagihedral":4, "plagiotropism":5, "plagiocephalism":6, "plagiocephaly":6, "plagiocephalic":6, "plagioclase":4, "plagioclastic":5, "plagioclimax":5, "plagiotropism":5, "plaguer":2, "plaguey":2, "plaguing":2, "plaguy":2, "plana":2, "planar":2, "planar process":4, "planarian":4, "planation":3, "planigraphy":4, "planimeter":4, "planimetry":4, "planiform":3, "planigram":3, "planigraph":3, "plano-concave":3, "plano-convex":3, "planography":4, "planometer":4, "planometry":4, "planograph":3, "planographically":6, "planosol":3, "plata":2, "plataea":3, "platanistius":5, "plateau":2, "platinic":3, "plato":2, "platonic":3, "platonic solid":5, "platonically":5, "platoon":2, "platonise":3, "platonised":3, "platonism":3, "platonist":3, "platoniser":4, "platonising":4, "platonize":3, "platonizer":4, "platonisation":5, "platonization":5, "platypodous":4, "platysma":3, "platysmas":3, "platysmata":4, "playa":2, "playas":2, "plaza":2, "plea":1, "pleach":1, "plead":1, "pleadable":3, "pleaded":2, "pleader":2, "pleading":2, "pleadings":2, "pleadingly":3, "pleadingness":3, "pleas":1, "please":1, "pleasance":2, "pleasant":2, "pleasant":2, "pleasant island":4, "pleasant-voiced":2, "pleasantness":3, "pleasantry":3, "pleasantville":3, "pleasanton":3, "pleasable":3, "pleasedly":3, "pleasedness":3, "pleaser":2, "pleasing":2, "pleasingly":3, "pleasingness":3, "pleasure":2, "pleasure principle":5, "pleasured":2, "pleasureful":3, "pleasureless":3, "pleasurelessly":4, "pleasurable":4, "pleasurableness":5, "pleasurably":4, "pleasuring":3, "pleat":1, "pleater":2, "pleb":1, "plebe":1, "plebs":1, "plebby":2, "plebiscite":3, "plectognath":3, "plectognathic":4, "plectognathous":4, "plectron":2, "plectrum":2, "pled":1, "pledge":1, "pledgeable":3, "pledgeless":2, "pledgeor":2, "pledgee":2, "pledger":2, "pledget":2, "pledging":2, "pledgor":2, "pleistocene":3, "pleiad":2, "pleiad":2, "pleiades":3, "pleiomerous":4, "pleiomery":4, "pleiotropism":4, "pleiocene":3, "pleiophyllous":4, "pleiophylly":4, "pleiotaxis":4, "pleiotaxy":4, "plenish":2, "plenipotentiaries":7, "plenipotentiary":7, "plenitude":3, "plenteous":3, "plenteously":4, "plenteousness":4, "plentiful":3, "plentifully":4, "plentifulness":4, "plenty":2, "plenty":2, "plerergate":3, "plessor":2, "plethora":3, "pleuston":2, "pleura":2, "pleural":2, "pleurite":2, "pleuritic":3, "pleurisy":3, "pleurisy root":4, "pleuron":2, "pleurotomy":4, "pleurocarpous":4, "pleurodont":3, "pleurodynia":5, "pleuropneumonic":5, "pleuropneumonia":6, "pleven":2, "plevna":2, "plew":1, "pleximeter":4, "pleximetry":4, "plexippus":3, "plexiform":3, "plexiglas":3, "plexiglass":3, "pleximetric":4, "plexor":2, "plexus":2, "plexuses":3, "plebeian":3, "plebeianise":4, "plebeianised":4, "plebeianism":4, "plebeianising":5, "plebeianize":4, "plebeianized":4, "plebeianizing":5, "plebeianization":6, "plebeianly":4, "plebeianness":4, "pleiad":2, "pleiades":3, "pleione":4, "plena":2, "plenary":3, "plenipotent":4, "plenum":2, "plenum system":4, "plenums":2, "pleochroism":4, "pleochroitic":5, "pleon":2, "pleonal":3, "pleochroic":4, "pleomorphic":4, "pleomorphism":4, "pleomorphous":4, "pleomorphy":4, "pleonasm":3, "pleonastically":6, "pleopod":3, "plesiosaur":4, "plesiosauroid":5, "plethoric":3, "plethysmograph":4, "plicature":3, "plight":1, "plighter":2, "plim":1, "plimming":2, "plimsol":2, "plimsole":2, "plimsoll":2, "plimsoll":2, "plimsoll line":3, "plink":1, "plinker":2, "plinth":1, "plinthless":2, "plinthlike":2, "plinian":3, "plinius":3, "pliny":2, "pliskie":2, "pliss":2, "plisse":2, "pliss":3, "plisthenes":3, "pliant":2, "pliantly":3, "pliantness":3, "pliancy":3, "pliability":5, "pliable":3, "pliableness":4, "pliably":3, "plica":2, "plicae":2, "plical":2, "plicate":2, "plicated":3, "plicating":3, "plication":3, "plie":2, "plier":2, "pliers":2, "plikit":2, "pliocene":3, "pliofilm":3, "pli":3, "plis":3, "plo":1, "ploat":1, "plod":1, "plodge":1, "plodded":2, "plodder":2, "plodding":2, "ploddingly":3, "ploddingness":3, "plonk":1, "plonko":2, "plop":1, "plopping":2, "plot":1, "plotful":2, "plotless":2, "plotlessness":3, "plottage":2, "plotter":2, "plough":1, "plough":1, "ploughboy":2, "ploughman":2, "ploughman's spikenard":4, "ploughshare":2, "ploughstaff":2, "plovdiv":2, "plover":2, "plow":1, "plow":1, "plowable":3, "plowboy":2, "plower":2, "plowman":2, "plowmanship":3, "plowshare":2, "plowstaff":2, "ploy":1, "ploce":2, "ploesti":3, "ploeti":3, "plosion":2, "plosive":2, "plotinism":3, "plotinist":3, "plotinus":3, "plr":1, "plu":1, "pluck":1, "plucker":2, "pluckier":3, "pluckiest":3, "pluckily":3, "pluckiness":3, "pluckless":2, "plucklessness":3, "plucky":2, "plue":1, "plug":1, "plug-ugly":2, "plugboard":2, "pluggable":3, "plugger":2, "plugging":2, "pluggingly":3, "plugless":2, "pluglike":2, "plum":1, "plum pudding":3, "plumb":1, "plumbable":3, "plumber":2, "plumberies":3, "plumbery":3, "plumbing":2, "plumbless":2, "plumbness":2, "plume":1, "plump":1, "plumper":2, "plumage":2, "plumaged":2, "plumbaginaceous":5, "plumbaginous":4, "plumbago":3, "plumbeous":3, "plumbic":2, "plumbiferous":4, "plumbism":2, "plumbicon":3, "plumbous":2, "plumbum":2, "plumcot":2, "pluming":2, "plumier":3, "plumiest":3, "plumlike":2, "plummet":2, "plummier":3, "plummiest":3, "plummy":2, "plumy":2, "plunge":1, "plunger":2, "plunging":2, "plunk":1, "plunker":2, "plunder":2, "plunderage":3, "plunderable":4, "plur":1, "plus":1, "plush":1, "plusher":2, "plushest":2, "plushlike":2, "plushness":2, "plumate":2, "plumose":2, "plumosely":3, "plumosity":4, "plumule":2, "plumular":3, "plumulose":3, "pluperfect":3, "plural":2, "plural voting":4, "pluralise":3, "pluralised":3, "pluralism":3, "pluraliser":4, "pluralising":4, "pluralize":3, "pluralized":3, "pluralizer":4, "pluralizing":4, "plurality":4, "pluralization":5, "plurally":3, "pluriliteral":5, "pluripresence":4, "plutarch":2, "pluteal":3, "plutean":3, "plutei":3, "pluteus":3, "pluto":2, "plutocracy":4, "pluton":2, "plutonic":3, "plutonic":3, "plutocrat":3, "plutocratical":5, "plutocratically":6, "plutonian":4, "plutonium":4, "plutus":2, "pluvi":2, "pluvial":3, "pluviometer":5, "pluviometry":5, "pluviose":3, "pluviosity":5, "pluvious":3, "pluviometric":5, "pluvius":3, "pluvise":4, "ply":1, "plymouth":2, "plymouth brethren":4, "plymouth colony":5, "plymouth rock":3, "plyer":2, "plying":2, "plyingly":3, "plywood":2, "plzen":1, "pls":4, "plss":4, "pliade":3, "plze":2, "pmg":1, "pneudraulic":3, "pneuma":2, "pneumatic":3, "pneumatic trough":4, "pneumatic tyre":4, "pneumatics":3, "pneumatically":5, "pneumatophore":4, "pneumaticity":5, "pneumatologist":5, "pneumatology":5, "pneumatolysis":5, "pneumatometer":5, "pneumatophorous":5, "pneumatocyst":4, "pneumatograph":4, "pneumatolitic":5, "pneumatologic":5, "pneumatophore":4, "pneumatotherapy":6, "pneumectomy":4, "pneumography":4, "pneumonic":3, "pneumonitis":4, "pneumobacillus":5, "pneumococcal":4, "pneumococci":4, "pneumococcus":4, "pneumoconiosis":6, "pneumodynamics":5, "pneumoencephalogram":7, "pneumoencephalitis":7, "pneumoencephalogram":7, "pneumogastric":4, "pneumograph":3, "pneumographic":4, "pneumonectomy":5, "pneumonia":3, "pneumonia":4, "pneumonoconiosis":7, "pneumonokoniosis":7, "pneumonoultramicroscopicsilicovolcanoconiosis":19, "pneumonoultramicroscopicsilicovolcanokoniosis":19, "pneumothorax":4, "poach":1, "poachable":3, "poacher":2, "poachier":3, "poachiest":3, "poachiness":3, "poachy":2, "pob":1, "pock":1, "pocked":1, "pocket":2, "pocket battleship":5, "pocket billiards":4, "pocket borough":4, "pocket gopher":4, "pocket money":4, "pocket mouse":3, "pocket veto":4, "pocket-handkerchief":4, "pocketbook":3, "pocketful":3, "pocketing":3, "pocketknife":3, "pockier":3, "pockiest":3, "pockily":3, "pockmark":2, "pockmarked":2, "pocky":2, "poculiform":4, "pod":1, "pod":1, "podgier":3, "podgiest":3, "podginess":3, "podgy":2, "podalirius":5, "podded":2, "podding":2, "poddock":2, "poddy":2, "poddy-dodger":3, "podgorny":3, "podgoritsa":4, "podgorica":4, "podgoritsa":4, "podite":2, "pododynia":5, "podomere":3, "podophyllic":4, "podophyllin":4, "podophyllum":4, "podophylin resin":6, "podotheca":4, "podsol":2, "podsolic":3, "podsolize":3, "podsolized":3, "podsolizing":4, "podsolization":5, "podzol":2, "podzolic":3, "podzolize":3, "podzolized":3, "podzolizing":4, "podzolization":5, "poe":1, "poe":1, "poet":1, "poeas":2, "poenology":4, "pogge":1, "pogo":1, "pogamoggan":4, "pogrom":2, "poi":1, "poignant":2, "poignantly":3, "poignancy":3, "poil":1, "poind":1, "point":1, "point d'appui":3, "point defect":3, "point duty":3, "point of honor":4, "point of inflection":5, "point of order":4, "point system":3, "point-device":2, "point-event":2, "pointe":1, "pointe-tre":2, "pointsman":2, "pointed":2, "pointed arch":3, "pointedly":3, "pointedness":3, "pointer":2, "pointers":2, "pointing":2, "pointless":2, "pointlessly":3, "pointlessness":3, "pointwise":2, "poincar":3, "poincar":4, "poinciana":4, "poinciana":4, "poinsettia":4, "pointal":2, "pointel":2, "pointillism":3, "pointillism":3, "pointillist":3, "pointill":4, "poise":1, "poised":1, "poiser":2, "poising":2, "poisson":2, "poisson distribution":6, "poisson's ratio":5, "poikiloblastic":5, "poikilie":3, "poikilitic":4, "poikiloblast":4, "poikilothermal":5, "poikilothermic":5, "poikilothermism":5, "poikilothermy":5, "poilu":2, "poimenics":3, "poine":2, "poison":2, "poison dogwood":4, "poison gas":3, "poison hemlock":4, "poison ivy":4, "poison oak":3, "poison sumach":4, "poison-pen":2, "poison-pen letter":4, "poisoner":3, "poisoning":3, "poisonous":3, "poitiers":2, "poitou":2, "poitou-charentes":3, "poke":1, "pokeberry":3, "pokelogan":3, "pokeloken":3, "pokeweed":2, "pokable":3, "poker":2, "poker face":3, "poker machine":4, "pokey":2, "pokeys":2, "pokie":2, "pokies":2, "poking":2, "pokier":3, "pokiest":3, "pokily":3, "pokiness":3, "poky":2, "pol":1, "pol":1, "pol":1, "pole":1, "pole":1, "pole-vaulter":2, "poleax":2, "poleaxe":2, "poleaxed":2, "poleaxes":3, "poleaxing":3, "polecat":2, "polejumper":3, "polestar":2, "polit":1, "polk":1, "poll":1, "polled":1, "polled":1, "pollable":3, "pollbook":2, "pollster":2, "polder":2, "poler":2, "polemarch":3, "polemist":3, "polemoniaceous":6, "poling":2, "polis":2, "polish":2, "polish off":3, "polish up":3, "polished":2, "polisher":3, "politburo":4, "polias":3, "policlinic":4, "policy":3, "policy science":5, "policyholder":5, "polieus":3, "polimetrum":4, "politesse":3, "politic":3, "politick":3, "politicking":4, "politics":3, "politicly":4, "politician":4, "polity":3, "poliuchus":4, "polje":2, "polka":2, "polka dot":3, "polkaed":2, "polkaing":3, "pollack":2, "pollaiuolo":4, "pollan":2, "pollard":2, "pollakiuria":6, "pollen":2, "pollen":2, "pollen analysis":6, "pollen basket":4, "pollen count":3, "pollen tube":3, "pollened":2, "pollenless":3, "pollenlike":3, "pollenosis":4, "pollex":2, "pollenate":3, "polleniferous":5, "pollera":3, "polleras":3, "pollicitation":5, "pollinic":3, "pollinia":4, "pollinium":4, "pollinosis":4, "pollinate":3, "pollinated":4, "pollinating":4, "pollination":4, "pollinator":4, "polliniferous":5, "pollinize":3, "pollinized":3, "pollinizing":4, "pollinization":5, "pollinosis":4, "polliwog":3, "pollock":2, "pollock":2, "pollute":2, "polluted":3, "pollutedness":4, "polluter":3, "polluting":3, "pollux":2, "pollucite":3, "pollutant":3, "pollution":3, "pollyanna":4, "pollyfish":3, "pollyfishes":4, "pollywog":3, "poloi":2, "polos":2, "polonaise":3, "polonese":3, "polska":2, "poltava":3, "poltergeist":3, "poltoratsk":3, "poltroon":2, "poltroonery":4, "poly":2, "polygnotus":4, "polymnestor":4, "polyp":2, "polypnea":4, "polypnoea":4, "polypoid":3, "polypous":3, "polyptych":3, "polyacid":4, "polyacrylonitrile":7, "polyamide":4, "polyandrist":4, "polyandrous":4, "polyandry":4, "polyangular":5, "polyanthus":4, "polyanthuses":5, "polyarchic":4, "polyarchical":5, "polyarchy":4, "polyarteritis":6, "polyarthritis":5, "polyarticular":6, "polyadelphous":5, "polyamine":4, "polyatomic":5, "polybasic":4, "polybasicity":6, "polybasite":4, "polybotes":4, "polybus":3, "polybutene":4, "polybutylene":5, "polycarp":3, "polycarpellary":6, "polycarpic":4, "polycarpous":4, "polycarpy":4, "polycaste":4, "polycentrism":4, "polychaete":3, "polychaeta":4, "polychaetous":4, "polychasium":4, "polychasial":5, "polychasium":5, "polychrome":3, "polychromatic":5, "polychromous":4, "polychromy":4, "polyclad":3, "polycleitus":4, "polycletus":4, "polyclinic":4, "polyclitus":4, "polyconic":4, "polyconic projection":7, "polycotyledon":6, "polycrystal":4, "polycrystalline":5, "polycyclic":4, "polycythaemic":5, "polycythaemia":6, "polycythemic":5, "polycythemia":6, "polydactyl":4, "polydactylism":5, "polydaemonism":5, "polydaemonist":5, "polydemic":4, "polydeuces":4, "polydemonism":5, "polydemonist":5, "polydipsia":5, "polydisperse":4, "polydontia":4, "polydora":4, "polydorus":4, "polyembryony":6, "polyester":4, "polyethnic":4, "polyethylene":5, "polyfoil":3, "polygalaceous":5, "polygene":3, "polygenesis":5, "polygenetic":5, "polyglot":3, "polygon":3, "polygonaceous":5, "polygraph":3, "polygraphic":4, "polyhedral angle":6, "polyhedron":4, "polyhistor":4, "polyhistoric":5, "polyhistorian":6, "polyhistory":5, "polyhymnia":5, "polyhydric":4, "polyhydroxy":5, "polyidus":4, "polyisobutene":6, "polyisoprene":5, "polymastus":4, "polymath":3, "polymer":3, "polymeric":4, "polymerise":4, "polymerize":4, "polymela":4, "polymele":4, "polymelus":4, "polymorph":3, "polymorphic":4, "polymorphism":4, "polymorphistic":5, "polymorphous":4, "polymorphonuclear":7, "polymyxin":4, "polyneuritic":5, "polyneuritis":5, "polynesia":4, "polynesian":4, "polynices":4, "polynomial":5, "polynuclear":5, "polynucleate":5, "polynucleotide":6, "polyonymous":5, "polyparies":4, "polyparian":5, "polyparium":5, "polypary":4, "polypeptide":4, "polypetalous":5, "polypetaly":5, "polypemon":4, "polyphase":3, "polyphagia":4, "polyphagia":5, "polyphagian":5, "polyphemus":4, "polyphides":4, "polyphone":3, "polyphonic":4, "polyphonic prose":5, "polyphonically":6, "polyphosphoric acid":7, "polyphyletic":5, "polyphyletically":7, "polyphyodont":5, "polyploid":3, "polyploidic":4, "polyploidy":4, "polypod":3, "polypoid":3, "polyporthis":4, "polypody":4, "polyprotic":4, "polypropylene":5, "polyprotodont":5, "polypus":3, "polyrhythm":3, "polyrhythmically":6, "polysaccharide":5, "polysaccharose":5, "polysepalous":5, "polysemous":4, "polysemy":4, "polysomic":4, "polyspast":3, "polyspermia":5, "polystyle":3, "polystyrene":4, "polysulfide":4, "polysulfonate":5, "polysulphide":4, "polysulphonate":5, "polysuspensoid":5, "polysyllabic":5, "polysyllabical":6, "polysyllable":5, "polysyllogism":5, "polysyllogistic":6, "polysyndeton":5, "polysynthetic":5, "polysynthetical":6, "polysynthesism":5, "polytechnic":4, "polytetrafluoroethylene":10, "polythene":3, "polytheism":4, "polytheist":4, "polytheistic":5, "polytheistical":6, "polytheistically":7, "polytonal":4, "polytonally":5, "polytonalism":5, "polytonality":6, "polytrophic":4, "polytypic":4, "polytypical":5, "polyunsaturate":6, "polyunsaturated":7, "polyurethan":5, "polyurethane":5, "polyuria":5, "polyvalence":4, "polyvalent":4, "polyvinyl":4, "polyvinyl acetate":7, "polyvinyl chloride":6, "polyvinyl resin":6, "polyvinylidene":6, "polyvinylidene chloride":8, "polyvinylpyrrolidone":8, "polyvoltine":4, "polyzoan":4, "polyzoaria":6, "polyzoarial":6, "polyzoarium":6, "polyzoic":4, "pom":1, "pom-pom":1, "pome":1, "pomegranate":3, "pomp":1, "pompous":2, "pompously":3, "pomace":2, "pombal":2, "pombe":2, "pomel":2, "pomerania":5, "pomeranian":5, "pomeroy":3, "pomegranate":4, "pomelo":3, "pomfret":2, "pomfret-cake":2, "pomiferous":4, "pomiculture":4, "pommard":2, "pommel":2, "pommeled":2, "pommelled":2, "pommeling":3, "pommelling":3, "pommern":2, "pommy":2, "pomme":3, "pomology":4, "pompadour":3, "pompadour":3, "pompano":3, "pompeii":3, "pompeiian":3, "pompey":2, "pompeia":3, "pompeian":3, "pompidou":3, "pompom":2, "pompon":2, "pomposity":4, "ponce":1, "ponce de leon":4, "pond":1, "pond lily":3, "pond-skater":2, "pondweed":2, "pone":1, "pong":1, "pons":1, "pons asinorum":5, "pons varolii":5, "pont":1, "pontchartrain":3, "pontlevis":3, "ponca":2, "ponce":2, "ponceau":2, "poncho":2, "ponchoed":2, "ponder":2, "ponderable":4, "ponderer":3, "ponderosity":5, "ponderous":3, "ponderously":4, "ponderousness":4, "pondicherry":4, "pondichry":5, "pondo":2, "pondok":2, "pondokkie":3, "pondoland":3, "pongee":2, "pongid":2, "poniard":2, "ponselle":2, "ponta delgada":5, "pontage":2, "pontanus":3, "pontes":2, "pontefract":3, "pontefract cake":4, "pontevedra":4, "pontian":2, "pontic":2, "pontic":2, "pontiff":2, "pontific":3, "pontifical":4, "pontifical college":6, "pontifical mass":5, "pontificals":4, "pontifically":5, "pontificate":4, "pontificated":5, "pontificating":5, "pontifices":4, "pontil":2, "pontine":2, "pontine":2, "pontine marshes":4, "pontius":2, "pontius pilate":4, "pontiac":3, "pontianak":4, "pontianak":4, "pontianus":4, "ponticello":4, "pontifex":3, "pontoon":2, "pontoppidan":4, "pontormo":3, "pontos":2, "pontocaine":3, "pontonier":3, "pontus":2, "pontus euxinus":5, "pontypool":3, "pontypridd":3, "pooch":1, "pood":1, "poof":1, "pooftah":2, "poofter":2, "pooh":1, "pool":1, "pool malebo":4, "pool table":3, "poole":1, "pools":1, "poolhall":2, "poolroom":2, "poon":1, "poonce":1, "poop":1, "poor":1, "poor relation":4, "poor-spirited":3, "poort":1, "poorhouse":2, "poorly":2, "poorness":2, "poortith":2, "poove":1, "poodle":2, "pooka":2, "poona":2, "pop":1, "pop":1, "pop-up":1, "pope":1, "pope":1, "popedom":2, "popeless":2, "popelike":2, "pops":1, "popcorn":2, "popery":3, "popeyed":2, "popgun":2, "popie":2, "popinjay":3, "popish":2, "popish plot":3, "popishly":3, "popishness":3, "popinac":3, "poplar":2, "poplared":2, "poplarism":3, "poplin":2, "popliteal":4, "poplitei":4, "popliteus":4, "popover":3, "poppa":2, "poppadom":3, "poppadum":3, "popper":2, "popper":2, "poppet":2, "poppet head":3, "poppethead":3, "poppied":2, "popping crease":3, "popple":2, "poppy":2, "poppy day":3, "poppy seed":3, "poppycock":3, "poppycockish":4, "poppyhead":3, "poppylike":3, "popsicle":3, "popsy":2, "populace":3, "popular":3, "popular etymology":8, "popular front":4, "popular music":5, "popular sovereignty":7, "popularise":4, "popularised":4, "populariser":5, "popularising":5, "popularize":4, "popularizer":5, "popularity":5, "popularization":6, "popularly":4, "populate":3, "population":4, "population explosion":7, "populational":5, "populationless":5, "populist":3, "populist":3, "populous":3, "populously":4, "populousness":4, "porcelain":2, "porcelain clay":3, "porch":1, "porchless":2, "porchlike":2, "pore":1, "porelike":2, "pork":1, "pork barrel":3, "porkchop":2, "porker":2, "porkfish":2, "porkfishes":3, "porkier":3, "porkiest":3, "porkiness":3, "porkpie":2, "porkpie hat":3, "porky":2, "port":1, "port":1, "port adelaide":4, "port arthur":3, "port du salut":4, "port elizabeth":5, "port harcourt":3, "port jackson":3, "port louis":3, "port lyautey":3, "port moresby":3, "port of entry":4, "port phillip":3, "port phillip bay":4, "port royal":3, "port said":3, "port sudan":3, "port talbot":3, "port-gentil":2, "port-salut":2, "porte":1, "porte-cochere":2, "porte-cochre":3, "porte-monmonnaies":3, "porte-monnaie":2, "portsmouth":2, "portance":2, "portable":3, "portcullis":3, "portfire":2, "portfolio":4, "porthole":2, "portland":2, "portland cement":4, "portlaoise":3, "portless":2, "portlier":3, "portliest":3, "portliness":3, "portly":2, "portmanteau":3, "portmanteau word":4, "portress":2, "porbandar":3, "porbeagle":3, "porcellaneous":5, "porcelain":3, "porcelainize":4, "porcelainized":4, "porcelainizing":5, "porcelainization":6, "porcelaneous":5, "porcine":2, "porcupine":3, "porcupine fish":4, "porcupine grass":4, "porgy":2, "poring":2, "pornocracy":4, "pornographer":4, "pornography":4, "poromeric":4, "porphypoised":3, "porphypoises":4, "porphypoising":4, "porphyrin":3, "porphyritic":4, "porphyrize":3, "porphyrized":3, "porphyrizing":4, "porphyria":4, "porphyrion":4, "porphyrization":5, "porphyrogenite":5, "porphyroid":3, "porphyropsin":4, "porphyry":3, "porpoise":2, "porpoiselike":3, "porrect":2, "porrection":3, "porridge":2, "porringer":3, "porsenna":3, "porsena":3, "porson":2, "portage":2, "portage":2, "portageville":3, "portal":2, "portal vein":3, "portal-to-portal":3, "portaled":2, "portalled":2, "portadown":3, "portamento":4, "portative":3, "portative organ":5, "portend":2, "portent":2, "portentous":3, "portentously":4, "portentousness":4, "porter":2, "porter":2, "porterage":3, "porteress":3, "porterhouse":3, "porterhouses":4, "porterlios":4, "porterville":3, "portiere":2, "portiered":2, "portion":2, "portionable":4, "portioner":3, "portionless":3, "portire":3, "portico":3, "porticoed":3, "portiere":3, "portile de fier":5, "portinari":4, "porto novo":4, "porto rico":4, "portobello":4, "portolano":4, "portrait":2, "portraitist":3, "portraitlike":3, "portraiture":3, "portray":2, "portrayal":3, "portrayable":4, "portrayer":3, "portumnus":3, "portugal":3, "portuguese":3, "portuguese east africa":7, "portuguese guinea":5, "portuguese india":6, "portuguese man-of-war":4, "portuguese timor":5, "portuguese west africa":7, "portulaca":4, "portulacaceous":5, "portunus":3, "pos":1, "pose":1, "posh":1, "poss":1, "post":1, "post exchange":3, "post meridiem":5, "post office":3, "post office":3, "post office box":4, "post-advent":2, "post-alexandrine":4, "post-aristotelian":5, "post-audit":2, "post-augustan":3, "post-augustinian":5, "post-aztec":2, "post-adamic":3, "post-babylonian":5, "post-bellum":2, "post-biblical":3, "post-caesarean":4, "post-cambrian":3, "post-carboniferous":5, "post-carolingian":5, "post-cartesian":3, "post-cesarean":4, "post-chaucerian":4, "post-christmas":2, "post-christian":2, "post-classical":3, "post-confucian":3, "post-constantinian":5, "post-columbian":4, "post-copernican":4, "post-crusade":2, "post-cyclic":2, "post-darwinian":4, "post-davidic":3, "post-devonian":4, "post-diocletian":4, "post-easter":2, "post-elizabethan":5, "post-eocene":3, "post-galilean":4, "post-gothic":2, "post-hittite":2, "post-homeric":3, "post-ibsen":2, "post-impressionism":4, "post-impressionist":4, "post-impressionist":4, "post-impressionistic":5, "post-impressionistic":5, "post-johnsonian":4, "post-justinian":4, "post-jutland":2, "post-jurassic":3, "post-kantian":3, "post-kansan":2, "post-leibnitzian":4, "post-leibnizian":4, "post-linnean":3, "post-marxian":3, "post-mendelian":4, "post-mesozoic":4, "post-mishnaic":3, "post-mishnic":2, "post-mishnical":3, "post-miocene":3, "post-mortem":2, "post-mosaic":3, "post-mycenean":4, "post-napoleonic":5, "post-newtonian":4, "post-oligocene":4, "post-ordovician":4, "post-obit":2, "post-partum":2, "post-pauline":2, "post-paleozoic":5, "post-pentecostal":4, "post-permian":3, "post-petrine":2, "post-phidian":3, "post-platonic":3, "post-pleistocene":3, "post-pliocene":3, "post-pythagorean":5, "post-reformation":4, "post-renaissance":3, "post-restoration":4, "post-revolutionary":6, "post-roman":2, "post-romantic":3, "post-shakespearean":4, "post-shakespearian":4, "post-silurian":4, "post-socratic":3, "post-talmudic":3, "post-talmudical":4, "post-tension":2, "post-tertiary":4, "post-transcendental":4, "post-triassic":3, "post-tridentine":3, "post-vedic":2, "post-victorian":4, "post-volstead":2, "poste restante":3, "postprandially":4, "postabdominal":5, "postabdomen":4, "postact":2, "postacetabular":6, "postage":2, "postage due stamp":4, "postage meter":4, "postage stamp":3, "postal":2, "postal card":3, "postal note":3, "postal order":4, "postallantoic":5, "postally":3, "postamniotic":5, "postanesthetic":5, "postantennal":4, "postapostolic":5, "postapostolical":6, "postapoplectic":5, "postappendicular":6, "postarmistice":4, "postarterial":5, "postarthritic":4, "postarticular":5, "postarytenoid":5, "postasthmatic":4, "postauditory":5, "postauricular":5, "postaxillary":5, "postaxial":4, "postaxially":5, "postanal":3, "postaortic":4, "postbag":2, "postbaptismal":4, "postbellum":3, "postbox":2, "postboy":2, "postbrachial":4, "postbrachium":4, "postbreakfast":3, "postbronchial":4, "postbuccal":3, "postbulbar":3, "postbursal":3, "postcaecal":3, "postcard":2, "postcardiac":4, "postcardinal":4, "postcartilaginous":6, "postcaudal":3, "postcanonical":5, "postcarotid":4, "postcatarrhal":4, "postcava":3, "postcentral":3, "postcerebellar":5, "postcerebral":4, "postcephalic":4, "postcode":2, "postcolumellar":5, "postcommunion":4, "postcommunicant":5, "postcondylar":4, "postconfinement":4, "postconnubial":5, "postconquest":3, "postconsonantal":5, "postcontract":3, "postconvalescent":5, "postconvulsive":4, "postcostal":3, "postcoxal":3, "postcolon":3, "postcretaceous":4, "postcritical":4, "postcruciate":4, "postcrural":3, "postcubital":4, "postdate":2, "postdated":3, "postdating":3, "postdental":3, "postdepressive":4, "postdetermined":4, "postdevelopmental":6, "postdigital":4, "postdiphtheric":4, "postdiphtheritic":5, "postdiphtherial":5, "postdisapproved":4, "postdiscoidal":4, "postdiagnostic":5, "postdiastolic":5, "postdiaphragmatic":6, "postdigestive":4, "postdiluvian":5, "postdoctoral":4, "postdural":3, "postdysenteric":5, "postelemental":5, "postelementary":6, "postencephalitic":6, "postepileptic":5, "poster":2, "poster paint":3, "postethmoid":3, "postexilic":4, "postexilian":5, "postexistence":4, "postelection":4, "posteruptive":4, "postesophageal":6, "postfactor":3, "postfemoral":4, "postfebrile":3, "postfetal":3, "postfix":2, "postfoetal":3, "postfoveal":4, "postganglionic":5, "postgastric":3, "postgenial":3, "postgenital":4, "postglacial":3, "postglacial":4, "postgraduate":4, "postgrippal":3, "posthaste":2, "postheat":2, "posthemiplegic":5, "posthemorrhagic":5, "posthexaplar":4, "posthepatic":4, "posthippocampal":5, "posthoc":2, "posthumeral":4, "posthumous":3, "posthumously":4, "posthumousness":4, "posthypnotic":4, "posthypnotic suggestion":7, "posthypnotically":6, "posthysterical":5, "posthyoid":3, "posticteric":4, "postie":2, "postimpressionism":5, "posting":2, "postincarnation":5, "postinfective":4, "postinfluenzal":5, "postintestinal":5, "postjugular":4, "postlachrymal":4, "postlarval":3, "postlabial":4, "postlaryngal":4, "postlaryngeal":4, "postlenticular":5, "postless":2, "postlegal":3, "postlegitimation":6, "postlike":2, "postliminy":4, "postlicentiate":5, "postliminium":5, "postlude":2, "postmammary":4, "postmammillary":5, "postman":2, "postmandibular":5, "postmark":2, "postmarital":4, "postmarriage":3, "postmaster":3, "postmaster general":6, "postmastership":4, "postmastoid":3, "postmaxillary":5, "postmaximal":4, "postmalarial":5, "postmaniacal":5, "postmedullary":5, "postmeiotic":4, "postmenopausal":5, "postmenstrual":4, "postmesenteric":5, "postmediaeval":5, "postmedial":4, "postmedian":4, "postmedieval":5, "postmeningeal":5, "postmeridian":5, "postmillennial":5, "postmillennialism":6, "postmillennialist":6, "postmistress":3, "postmortem":3, "postmortem examination":8, "postmultiplied":4, "postmultiply":4, "postmultiplying":5, "postmundane":3, "postmuscular":4, "postmyxedematous":6, "postmyxedemic":5, "postmycotic":4, "postnasal":3, "postnasal drip":4, "postneural":3, "postneuralgic":4, "postneuritic":4, "postneurotic":4, "postnecrotic":4, "postnephritic":4, "postnodal":3, "postnodular":4, "postnotum":3, "postnuptial":3, "postnuptially":4, "postolivary":5, "postoperative":5, "postoptic":3, "postorbital":4, "postordination":5, "postorgastic":4, "postosseous":4, "postomental":4, "postoral":3, "postpaid":2, "postpalpebral":4, "postparalytic":5, "postparoxysmal":5, "postparotitic":5, "postpartal":3, "postpartum":3, "postparturient":5, "postpathologic":5, "postpathological":6, "postpaludal":4, "postparotid":4, "postpatellar":4, "postpectoral":4, "postperforated":5, "postpericardial":6, "postpeduncular":5, "postpharyngal":4, "postpharyngeal":4, "postphlogistic":4, "postphrenic":3, "postphthistic":3, "postpituitary":6, "postpneumonic":4, "postpone":2, "postponed":2, "postponing":3, "postpositive":4, "postpositively":5, "postposition":4, "postpositional":5, "postprandial":4, "postprostate":3, "postprophetic":4, "postprophetical":5, "postpulmonary":5, "postpuberty":4, "postpubescent":4, "postpuerperal":5, "postpupillary":5, "postpyloric":4, "postpyramidal":5, "postpyretic":4, "postrachitic":4, "postrectal":3, "postresurrection":5, "postresurrectional":6, "postretinal":4, "postredemption":4, "postrenal":3, "postrheumatic":4, "postrhinal":3, "postrider":3, "postrostral":3, "postrubeolar":5, "postsaccular":4, "postscarlatinoid":5, "postscholastic":4, "postscorbutic":4, "postscript":2, "postscutella":4, "postscutellum":4, "postseason":3, "postsign":2, "postsigner":3, "postsigmoid":3, "postsigmoidal":4, "postspasmodic":4, "postsphenoid":3, "postsphygmic":3, "postspinous":3, "postsplenic":3, "poststernal":3, "poststertorous":4, "postsuppurative":5, "postsurgical":4, "postsymphysial":5, "postsyphilitic":5, "postsystolic":4, "postsynaptic":4, "posttarsal":3, "posttabetic":4, "posttemporal":4, "posttetanic":4, "postthalamic":4, "postthoracic":4, "postthyroidal":4, "posttibial":4, "posttoxic":3, "posttrapezoid":4, "posttraumatic":4, "posttracheal":4, "posttussive":3, "posttubercular":5, "posttympanic":4, "postulnar":3, "postumbilical":5, "postumbonal":4, "postureteral":5, "postureteric":5, "postuterine":4, "postvaccinal":4, "postvarioloid":5, "postventral":3, "postvertebral":4, "postvesical":4, "postvenereal":5, "postvenous":3, "postvocalic":4, "postvocalically":6, "postwoman":3, "postxiphoid":3, "postzygapophyseal":7, "postzygapophysial":7, "poser":2, "posing":2, "posingly":3, "posit":2, "posidonius":5, "positif":3, "positive":3, "positive feedback":5, "positive polarity":7, "positively":4, "positivism":4, "positivist":4, "positivistic":5, "positivistically":7, "positron":3, "positronium":5, "posologic":4, "posse":2, "posse comitatus":6, "possess":2, "possessed":2, "possession":3, "possessive":3, "possessiveness":4, "possessor":3, "possessorship":4, "possessoriness":5, "possessory":4, "posset":2, "possie":2, "possibility":5, "possible":3, "possibly":3, "possum":2, "possy":2, "postern":2, "posteriad":4, "posterity":4, "posterior":4, "postiche":2, "postil":2, "postilion":3, "postilioned":3, "postillion":3, "postillioned":3, "posticous":3, "postremogeniture":6, "postrorse":2, "posture":2, "postured":2, "postural":3, "posturer":3, "posturing":3, "posturise":3, "posturised":3, "posturising":4, "posturize":3, "posturized":3, "posturizing":4, "postulance":3, "postulant":3, "postulantship":4, "postulate":3, "postulated":4, "postulating":4, "postulation":4, "postulational":5, "postulator":4, "pot":1, "pot liquor":3, "pot marigold":4, "pot-liquor":2, "pot-valiant":2, "pot-walloper":3, "potch":1, "pother":2, "pothecary":4, "potsdam":2, "pott":1, "pott's disease":3, "pottstown":2, "pottsville":2, "potash":2, "potash alum":4, "potass":2, "potamogale":5, "potamoplankton":5, "potawatomi":5, "potbellied":3, "potbelly":3, "potboiler":3, "potboy":2, "potful":2, "pothead":2, "potherb":2, "potholder":3, "pothole":2, "potholer":3, "potholing":3, "pothook":2, "pothouse":2, "pothouses":3, "pothunter":3, "pothunting":3, "potidaea":4, "potiphar":3, "potlatch":2, "potlicker":3, "potlike":2, "potlikker":3, "potline":2, "potluck":2, "potman":2, "potoroo":3, "potpie":2, "potpourri":3, "potpourris":3, "potshard":2, "potsherd":2, "potstone":2, "potsy":2, "pottage":2, "potted":2, "potter":2, "potter":2, "potter wasp":3, "potter's field":3, "potter's wheel":3, "potteries":3, "potteries":3, "pottery":3, "potting":2, "potting shed":3, "pottier":3, "pottiest":3, "pottle":2, "potto":2, "potty":2, "potty-chair":2, "potwaller":3, "pouch":1, "pouched":1, "pouf":1, "pouffe":1, "poughkeepsie":3, "pouilly":2, "pouilly-fuiss":4, "pouilly-fum":4, "pouillysur-loire":3, "poult":1, "poulterer":3, "poultice":2, "poulticed":2, "poulticing":3, "poultry":2, "poultryman":3, "pounce":1, "pouncing":2, "pouncingly":3, "pound":1, "pound":1, "pound-foolish":2, "poundage":2, "poundal":2, "pounder":2, "pouncet box":3, "pour":1, "pourability":5, "pourable":3, "pourboire":2, "pourer":2, "pourparler":3, "pourpoint":2, "pousse-caf":2, "pousse-caf":3, "poussette":2, "poussetted":3, "poussetting":3, "poussie":2, "poussin":2, "poussin":2, "poussinisme":3, "pout":1, "pouter":2, "poutful":2, "poutingly":3, "poudreuse":2, "poudreuses":3, "poudrin":2, "poulard":2, "poularde":2, "poulenc":2, "poverty":3, "poverty-stricken":4, "pow":1, "pow":1, "powan":2, "powder":2, "powder blue":3, "powder burn":3, "powder compact":4, "powder flask":3, "powder horn":3, "powder keg":3, "powder metallurgy":6, "powder monkey":4, "powder puff":3, "powder room":3, "powder-blue":2, "powders":2, "powdery":3, "powdery mildew":5, "powdived":2, "powdiving":3, "powdove":2, "powell":2, "power":2, "power cut":3, "power dive":3, "power drill":3, "power line":3, "power of appointment":6, "power of attorney":6, "power pack":3, "power plant":3, "power point":3, "power politics":5, "power series":4, "power station":4, "power steering":4, "power structure":4, "power-dive":2, "power-saw":2, "powered":2, "powerboat":3, "powerful":3, "powerfully":4, "powerfulness":4, "powerhouse":3, "powerless":3, "powerlessly":4, "powerlessness":4, "powhatan":3, "powsawn":2, "powsawing":3, "powwow":2, "powys":2, "pox":1, "poyntell":2, "poyntill":2, "pozna":2, "poznan":2, "pozzolana":4, "pozzolanic":4, "pozzuolana":4, "pozzuoli":3, "pozzuolanic":5, "pozzy":2, "poaceous":3, "pocahontas":4, "pocatello":4, "pochade":2, "pochard":2, "pochette":2, "poco":2, "poco a poco":5, "pococurante":5, "pococurantism":5, "pocosen":3, "pocosin":3, "pocoson":3, "poda":2, "podagra":3, "podagral":3, "podagric":3, "podarces":3, "podarge":3, "podes":2, "podesta":3, "podetia":4, "podetium":4, "poditic":3, "podia":3, "podiatrist":4, "podiatry":4, "podium":3, "podiums":3, "podolsk":2, "podunk":2, "poem":2, "poet":2, "poet laureate":5, "poetaster":4, "poetastering":5, "poetasterism":5, "poetastery":5, "poetastric":4, "poetastrical":5, "poetastry":4, "poetess":3, "poetic":3, "poetic justice":5, "poetic licence":5, "poetics":3, "poetised":3, "poetising":4, "poetize":3, "poetized":3, "poetizer":4, "poetizing":4, "poetical":4, "poetically":5, "poeticise":4, "poeticised":4, "poeticising":5, "poeticize":4, "poeticized":4, "poeticizing":5, "poetless":3, "poetlike":3, "poetry":3, "poesy":3, "pogany":3, "pogey":2, "pogo stick":3, "pogonia":4, "pogrom":2, "pogy":2, "pohai":2, "pohjola":3, "pohutukawa":5, "pokier":3, "pola":2, "polack":2, "polacca":3, "polacca-rigged":3, "poland":2, "polanski":3, "polar":2, "polar axis":4, "polar bear":3, "polar body":4, "polar circle":4, "polar coordinates":6, "polar distance":4, "polar equation":5, "polar front":3, "polar lights":3, "polar sequence":4, "polarimeter":5, "polaris":3, "polarise":3, "polarisable":5, "polariser":4, "polarize":3, "polarized":3, "polarizing":4, "polariised":4, "polariising":5, "polarisation":5, "polariscope":4, "polarity":4, "polarization":5, "polarography":5, "polaroid":3, "polarogram":4, "polarograph":4, "polacre":3, "polaris":3, "polemic":3, "polemics":3, "polemically":5, "polemicist":4, "polenta":3, "poleyn":2, "police":2, "police court":3, "police dog":3, "police motu":4, "police officer":5, "police state":3, "police station":4, "police wagon":4, "policeman":3, "policeman's helmet":5, "policewoman":4, "policewomen":4, "polis":2, "polish":2, "polish corridor":5, "polite":2, "politely":3, "politeness":3, "politburo":4, "political":4, "political economy":8, "political science":6, "politicalize":5, "politicalized":5, "politicalizing":6, "politicalization":7, "politicise":4, "politicised":4, "politicising":5, "politicize":4, "politicized":4, "politicizing":5, "politico":4, "polianite":4, "poliatas":4, "poliencephalitis":7, "poliencephalomyelitis":10, "polio":3, "polioencephalitis":8, "poliomyelitic":7, "poliomyelitis":7, "politian":3, "polo":2, "polo":2, "polonnaruwa":5, "polocyte":3, "poloist":3, "polonize":3, "polonized":3, "polonizing":4, "polonium":4, "polonius":4, "polonization":5, "polony":3, "polybius":4, "polycrates":4, "polydomous":4, "polygala":4, "polygamist":4, "polygamistic":5, "polygamous":4, "polygamously":5, "polygamy":4, "polygenism":4, "polygenist":4, "polygenistic":5, "polygonal":4, "polygonum":4, "polygraphist":4, "polygynist":4, "polygynous":4, "polygyny":4, "polymerism":4, "polymerize":4, "polymerized":4, "polymerizing":5, "polymerization":6, "polymerous":4, "polynya":3, "polyphagist":4, "polyphagoupoints":4, "polyphonous":4, "polyphonously":5, "polyphony":4, "polypidom":4, "polytomous":4, "polytomy":4, "polyxena":4, "polyxenus":4, "polyxo":3, "polykarp":3, "pomade":2, "pomander":3, "pomaceous":3, "pomatum":3, "pomey":2, "pomiferous":4, "pomiculturist":5, "pomo":2, "pomologist":4, "pomology":4, "pomological":5, "pomologically":6, "pomona":3, "pomorze":3, "ponied":2, "ponograph":3, "pony":2, "pony express":4, "pony trekking":4, "ponying":3, "ponytail":3, "poop":3, "poop":4, "popayn":4, "popov":2, "popocatepetl":5, "popocatpetl":5, "poquoson":3, "pori":2, "poriferan":4, "poriferous":4, "porism":2, "poria":3, "poriform":3, "porion":3, "porirua":4, "porosity":4, "porous":2, "porously":3, "porousness":3, "posada":3, "posadas":3, "poseidon":3, "posen":2, "poseur":2, "posho":2, "position":3, "position effect":5, "positional":4, "positional notation":7, "positionless":4, "posologist":4, "posology":4, "posy":2, "potage":2, "potamic":3, "potassa":3, "potassic":3, "potassium":4, "potassium bitartrate":7, "potassium bromide":6, "potassium carbonate":7, "potassium chlorate":6, "potassium cyanide":7, "potassium dichromate":7, "potassium ferricyanide":9, "potassium ferrocyanide":9, "potassium hydroxide":7, "potassium hydrogen tartrate":9, "potassium nitrate":6, "potassium permanganate":8, "potassium sulphate":6, "potassium-argon dating":7, "potability":5, "potable":3, "potableness":4, "potamology":5, "potation":3, "potato":3, "potato beetle":5, "potato chip":4, "potato crisp":4, "potatory":4, "poteau":2, "poteen":2, "poteet":2, "potemkin":3, "potence":2, "potent":2, "potently":3, "potentness":3, "potencaries":4, "potency":3, "potentate":3, "potential":3, "potential difference":6, "potential divider":6, "potential energy":6, "potentilla":4, "potentiality":6, "potentiate":4, "potentiated":5, "potentiating":5, "potentiation":5, "potentiator":5, "potentiometer":6, "potentiometric":6, "potenty":3, "potente":4, "potheen":2, "potiche":2, "potiches":3, "potion":2, "potometer":4, "potoo":2, "potomac":3, "potoroo":3, "potos":3, "potosi":3, "potos":4, "potus":2, "potyomkin":3, "poyang":2, "pozsony":2, "ppd":1, "ppe":1, "ppm":1, "ppr":1, "pps":1, "praam":1, "practic":2, "practice":2, "practiced":2, "practicer":3, "practicing":3, "practise":2, "practised":2, "practical":3, "practical joke":4, "practicality":5, "practically":4, "practicalness":4, "practicable":4, "practicum":3, "practitioner":4, "prad":1, "praecipitatio":6, "praedial":3, "praediality":5, "praefect":2, "praelect":2, "praelection":3, "praelector":3, "praemunire":4, "praeneste":3, "praenestine":3, "praenomina":4, "praenominal":4, "praenomen":3, "praepostor":3, "praepostorial":5, "praesepe":3, "praetexta":3, "praetextae":3, "praetor":2, "praetorship":3, "praetorian":4, "praetorian":4, "praetorian guard":5, "praetorianism":5, "praetorius":4, "prag":1, "prague":1, "pragmatic":3, "pragmatic sanction":5, "pragmatics":3, "pragmatical":4, "pragmaticality":6, "pragmatically":5, "pragmaticalness":5, "pragmaticism":4, "pragmatism":3, "pragmatist":3, "prahm":1, "praise":1, "praiseworthily":4, "praiseworthiness":4, "praiseworthy":3, "praising":2, "prairie":2, "prairie chicken":4, "prairie dog":3, "prairie oyster":4, "prairie provinces":5, "prairie schooner":4, "prairie soil":3, "prairie turnip":4, "prairie wolf":3, "prairillon":3, "prairial":3, "prajna":2, "prajna-paramita":5, "pralltriller":3, "pram":1, "prance":1, "prancer":2, "prancing":2, "prancingly":3, "prang":1, "prank":1, "prankishly":3, "prankishness":3, "prankster":2, "prandial":3, "prandially":4, "pranidhana":4, "prao":1, "prase":1, "prat":1, "prate":1, "prattville":2, "pratdesab":5, "prater":2, "pratfall":2, "pratingly":3, "pratincole":3, "prattle":2, "prattler":2, "prattlingly":3, "pratyeka":3, "prau":1, "pravda":2, "prawn":1, "prawner":2, "praxis":2, "praxithea":4, "praxiteles":4, "praxitelean":5, "pray":1, "prayer meeting":3, "prayerful":2, "prayerfully":3, "prayerfulness":3, "prayerless":2, "prayerlessly":3, "prayerlessness":3, "prayer":2, "praying mantis":4, "prayingly":3, "pracharak":3, "pradesh":2, "praha":2, "prahu":2, "prajadhipok":4, "prajapati":4, "prakrit":2, "prakritic":3, "praline":2, "prana":2, "pranava":3, "prasad":2, "praseodymium":6, "pratincolous":4, "pratique":2, "prato":2, "prb":1, "pre-ammonite":3, "pre-arthurian":4, "pre-aryan":3, "pre-assyrian":4, "pre-augustan":3, "pre-augustine":3, "pre-babylonian":5, "pre-baconian":4, "pre-british":2, "pre-buddhist":2, "pre-byzantine":3, "pre-cambridge":2, "pre-cambrian":3, "pre-carboniferous":5, "pre-carolingian":5, "pre-canaanite":3, "pre-canaanitic":4, "pre-celtic":2, "pre-chaucerian":4, "pre-chinese":2, "pre-christmas":2, "pre-christianic":4, "pre-congress":2, "pre-congregationalist":6, "pre-columbian":4, "pre-copernican":4, "pre-copernicanism":5, "pre-crusade":2, "pre-dantean":3, "pre-darwinian":4, "pre-distortion":3, "pre-doric":2, "pre-dorian":3, "pre-dravidic":3, "pre-dravidian":4, "pre-easter":2, "pre-eclampsia":4, "pre-emption":2, "pre-emptive":2, "pre-emptor":2, "pre-eminence":3, "pre-eminent":3, "pre-empire":2, "pre-english":2, "pre-engage":2, "pre-establish":3, "pre-exilic":3, "pre-exilian":4, "pre-exist":2, "pre-existence":3, "pre-existent":3, "pre-exposure":3, "pre-election":3, "pre-elizabethan":5, "pre-equalization":5, "pre-georgian":2, "pre-german":2, "pre-germanic":3, "pre-gothic":2, "pre-hellenic":3, "pre-hebrew":2, "pre-hispanic":3, "pre-hieronymian":6, "pre-homeric":3, "pre-ignition":3, "pre-indian":3, "pre-islamic":3, "pre-israelite":4, "pre-irish":2, "pre-jewish":2, "pre-justinian":4, "pre-kantian":3, "pre-koranic":3, "pre-latin":2, "pre-linnaean":3, "pre-linnean":3, "pre-lutheran":3, "pre-marxian":3, "pre-malay":2, "pre-malayan":3, "pre-malaysian":3, "pre-mendelian":4, "pre-messianic":4, "pre-methodist":3, "pre-mongolian":4, "pre-moslem":2, "pre-mohammedan":4, "pre-muslim":2, "pre-mycenaean":4, "pre-napoleonic":5, "pre-newtonian":4, "pre-norman":2, "pre-pauline":2, "pre-palaeozoic":5, "pre-paleozoic":5, "pre-permian":3, "pre-persian":2, "pre-petrine":2, "pre-pharaonic":4, "pre-phidian":3, "pre-polish":2, "pre-raphaelite":3, "pre-raphaelite":4, "pre-raphaelitism":5, "pre-reformation":4, "pre-renaissance":3, "pre-restoration":4, "pre-revolution":4, "pre-reconstruction":4, "pre-roman":2, "pre-saxon":2, "pre-semitic":3, "pre-shakespeare":2, "pre-shakespearean":4, "pre-shakespearian":4, "pre-silurian":4, "pre-solomonic":4, "pre-socratic":3, "pre-solonian":4, "pre-spanish":2, "pre-sumerian":4, "pre-syriac":3, "pre-syrian":3, "pre-tertiary":4, "pre-thanksgiving":3, "pre-tridentine":3, "pre-tudor":2, "pre-victorian":4, "pre-virgilian":4, "pre-volstead":2, "preach":1, "preacher":2, "preacher":2, "preachingly":3, "preachier":3, "preachiest":3, "preachify":3, "preachment":2, "preachy":2, "prebend":2, "prebendaries":4, "prebendary":4, "prec":1, "precative":3, "precatory":4, "precedence":3, "precedent":3, "precedented":4, "precedentless":4, "precedency":4, "precedential":4, "precipice":3, "precipiced":3, "pred":1, "predator":3, "predatory":4, "predecessor":4, "predicant":3, "predicate":3, "predicate calculus":6, "predicated":4, "predicating":4, "predicability":6, "predicable":4, "predicableness":5, "predicably":4, "predication":4, "predicational":5, "predicative":4, "predicatively":5, "predicatory":5, "predikant":3, "prednisone":3, "preen":1, "preener":2, "preemie":2, "pref":1, "preface":2, "prefaced":2, "prefacer":3, "prefacing":3, "prefatorial":5, "prefatory":4, "preferability":6, "preferable":4, "preferableness":5, "preferably":4, "preference":3, "preference shares":4, "preferential":4, "preferential voting":6, "preferentialist":5, "preferentially":5, "pregl":1, "preggers":2, "pregnant":2, "pregnantly":3, "pregnantness":3, "pregnancy":3, "pregnability":5, "pregnable":3, "prehnite":2, "prejudice":3, "prejudiced":3, "prejudicedly":4, "prejudiceless":4, "prejudicing":4, "prejudicial":4, "prelim":1, "prelate":2, "prelateship":3, "prelacy":3, "prelatism":3, "prelatist":3, "prelature":3, "prelude":2, "preluded":3, "preluding":3, "prem":1, "premature":3, "premier":2, "premiership":3, "premise":2, "premiss":2, "premises":3, "premiere":3, "premonition":4, "prendergast":3, "prentice":2, "prep":1, "preparation":4, "preposition":4, "prepositional":5, "prepositionally":6, "prepping":2, "pres":1, "pres":1, "presb":1, "press":1, "press":1, "press agent":3, "press agency":4, "press conference":4, "press gallery":4, "press release":3, "pressable":3, "pressboard":2, "pressburg":2, "presser":2, "pressing":2, "pressingly":3, "pressingness":3, "pressman":2, "pressmark":2, "pressroom":2, "pressrun":2, "presswork":2, "prest":1, "prestwich":2, "prestwick":2, "presage":2, "presageful":3, "presagefully":4, "presager":3, "presbyteral":4, "presbyterate":4, "presbycousis":4, "presbycusis":4, "presbyope":3, "presbyopia":5, "presbyter":3, "presbyteries":4, "presbyterial":5, "presbyterian":5, "presbyterian":5, "presbytery":4, "presbyterial":5, "presbyterian":5, "prescience":3, "prescott":2, "presence":2, "presence chamber":4, "presence of mind":4, "present":2, "present participle":6, "present perfect":4, "present value":4, "present-day":2, "presents":2, "presently":3, "presentation":4, "presentational":5, "presentationalism":6, "presentationism":5, "presentationist":5, "presentee":3, "presentist":3, "preservation":4, "president":2, "president":3, "president-elect":4, "presidentship":4, "presidency":4, "presidentially":5, "presley":2, "pressie":2, "pressor":2, "pressoreceptor":5, "pressure":2, "pressure cabin":4, "pressure cooker":4, "pressure drag":3, "pressure gauge":3, "pressure gradient":5, "pressure group":3, "pressure head":3, "pressure point":3, "pressure suit":3, "pressure-cook":2, "pressured":2, "pressureless":3, "pressuring":3, "pressurise":3, "pressurize":3, "pressurization":5, "pressurize":3, "pressurized":3, "pressurizing":4, "prester john":3, "prestige":2, "prestigious":3, "prestissimo":4, "prestidigitation":6, "prestidigitator":6, "prestidigitatory":7, "presto":2, "preston":2, "prestonpans":3, "pret":1, "preterist":3, "preterit":3, "preterite":3, "preteriteness":4, "preteritness":4, "preterition":4, "prettied":2, "prettier":3, "prettiest":3, "prettified":3, "prettification":5, "prettifier":4, "prettify":3, "prettifying":4, "prettily":3, "prettiness":3, "pretty":2, "pretty-face":2, "pretty-pretty":3, "prettying":3, "prettyish":3, "pretzel":2, "preussen":2, "prevalence":3, "prevalent":3, "prevalently":4, "prevalentness":4, "prevenance":3, "prewett":2, "prewitt":2, "prexies":2, "prexy":2, "prey":1, "preyer":2, "prezzie":2, "pre-exilian":5, "preabsorb":3, "preabsorbent":4, "preabstract":3, "preact":2, "preaccept":3, "preacceptance":4, "preaccess":3, "preaccessible":5, "preaccidental":5, "preaccommodate":5, "preaccommodated":6, "preaccommodating":6, "preaccommodatingly":7, "preaccommodation":6, "preaccomplish":4, "preaccomplishment":5, "preaccord":3, "preaccordance":4, "preaccount":3, "preaccredit":4, "preaccuse":3, "preaccused":3, "preaccusing":4, "preaccustom":4, "preaccumulate":5, "preaccumulated":6, "preaccumulating":6, "preaccumulation":6, "preaccusation":5, "preacetabular":6, "preacid":3, "preacknowledge":4, "preacknowledged":4, "preacknowledgement":5, "preacknowledging":5, "preacknowledgment":5, "preacquaint":3, "preacquaintance":4, "preacquire":3, "preacquired":3, "preacquiring":4, "preacquisitive":5, "preacquit":3, "preacquittal":4, "preacquitted":4, "preacquitting":4, "preacquisition":5, "preaction":3, "preactive":3, "preactivity":5, "preadamite":4, "preadaptation":5, "preaddition":4, "preadditional":5, "preaddress":3, "preadequate":4, "preadequacy":5, "preadhere":3, "preadhered":3, "preadherence":4, "preadherent":4, "preadhering":4, "preadjective":4, "preadjectival":5, "preadjourn":3, "preadjournment":4, "preadjust":3, "preadjustable":5, "preadjustment":4, "preadministration":6, "preadministrative":6, "preadministrator":6, "preadmire":3, "preadmired":3, "preadmirer":4, "preadmiring":4, "preadmission":4, "preadmit":3, "preadmitted":4, "preadmitting":4, "preadmonish":4, "preadmonition":5, "preadvertise":4, "preadvertised":4, "preadvertisement":5, "preadvertiser":5, "preadvertising":5, "preadvice":3, "preadvise":3, "preadvised":3, "preadvisable":5, "preadvising":4, "preadvisory":5, "preadvocate":4, "preadvocated":5, "preadvocating":5, "preadvocacy":5, "preaestival":4, "preaffect":3, "preaffection":4, "preaffiliate":5, "preaffiliated":6, "preaffiliating":6, "preaffiliation":6, "preaffirm":3, "preaffirmative":5, "preaffirmation":5, "preaffidavit":5, "preafflict":3, "preaffliction":4, "preafternoon":4, "preage":2, "preaged":2, "preaggravate":4, "preaggravated":5, "preaggravating":5, "preaggravation":5, "preaggression":4, "preaggressive":4, "preaging":3, "preagitate":4, "preagitated":5, "preagitating":5, "preagitation":5, "preagriculture":5, "preagricultural":6, "prealcoholic":5, "prealgebra":4, "prealgebraic":5, "preallege":3, "prealleged":3, "prealleging":4, "preallegation":5, "preallied":3, "prealliance":4, "preallot":3, "preallotment":4, "preallotted":4, "preallotting":4, "preallow":3, "preallowance":4, "preallowable":5, "preallude":3, "prealluded":4, "prealluding":4, "preallusion":4, "preally":3, "preallying":4, "prealphabet":4, "prealphabetical":6, "prealtar":3, "prealter":3, "prealteration":5, "preambassadorial":7, "preambition":4, "preambitious":4, "preamble":3, "preamplifier":5, "preanesthetic":5, "preannex":3, "preannounce":3, "preannounced":3, "preannouncement":4, "preannouncer":4, "preannouncing":4, "preantepenult":5, "preantepenultimate":7, "preanticipate":5, "preanticipated":6, "preanticipating":6, "preantiquity":5, "preantiseptic":5, "preappearance":4, "preapperception":5, "preapplied":3, "preapplication":5, "preapply":3, "preapplying":4, "preappoint":3, "preappointment":4, "preapprehension":5, "preapprise":3, "preapprised":3, "preapprising":4, "preapprize":3, "preapprized":3, "preapprizing":4, "preapprove":3, "preapproved":3, "preapproval":4, "preapproving":4, "preapprobation":5, "preaptitude":4, "prearm":2, "prearrange":3, "prearranged":3, "prearrangement":4, "prearranging":4, "prearrest":3, "prearrestment":4, "prearticulate":5, "preartistic":4, "preascertain":4, "preascertainment":5, "preascetic":4, "preassemble":4, "preassembly":4, "preassert":3, "preassign":3, "preassigned":3, "preassume":3, "preassumed":3, "preassumption":4, "preassuming":4, "preassure":3, "preassured":3, "preassurance":4, "preassuring":4, "preattachment":4, "preattune":3, "preattuned":3, "preattuning":4, "preauditory":5, "preauricular":5, "preaxial":4, "preaxially":5, "preabundance":4, "preabundant":4, "preachieved":3, "preacidity":5, "preadamic":4, "preadapt":3, "preadaptable":5, "preadopt":3, "preadoption":4, "preadorn":3, "preadornment":4, "preadult":3, "preadulthood":4, "preagree":3, "preagreed":3, "preagreeing":4, "preagreement":4, "prealarm":3, "preamalgamation":6, "preanal":3, "preanaphoral":5, "preaortic":4, "preaseptic":4, "preataxic":4, "preaver":3, "preaverred":3, "preaverring":4, "preavowal":4, "prebachelor":4, "prebalance":3, "preballanced":3, "preballancing":4, "preballot":3, "preballoted":4, "preballoting":4, "prebankruptcy":4, "prebarbaric":4, "prebarbarically":6, "prebarbarous":4, "prebargain":3, "prebasilar":4, "prebasal":3, "prebendal":3, "prebenediction":5, "prebenefit":4, "prebenefited":5, "prebenefiting":5, "prebeneficiaries":7, "prebeneficiary":7, "prebelief":3, "prebelieve":3, "prebelieved":3, "prebeliever":4, "prebelieving":4, "prebeloved":3, "prebeset":3, "prebesetting":4, "prebestow":3, "prebestowal":4, "prebetray":3, "prebetrayal":4, "prebetrothal":4, "prebid":2, "prebidden":3, "prebidding":3, "prebill":2, "preble":2, "prebless":2, "preblockade":3, "preblockaded":4, "preblockading":4, "preblooming":3, "preboast":2, "preboding":3, "preboil":2, "preborn":2, "preborrowing":4, "preboyhood":3, "prebranchial":4, "prebrachial":4, "prebreathe":2, "prebreathed":2, "prebreathing":3, "prebridal":3, "prebroadcasting":4, "prebronze":2, "prebronchial":4, "prebromidic":4, "prebrute":2, "prebuccal":3, "prebudget":3, "prebudgetary":5, "preburn":2, "preburlesque":3, "precalculate":4, "precalculated":5, "precalculating":5, "precalculable":5, "precalculation":5, "precambrian":4, "precampaign":3, "precancel":3, "precanceled":3, "precancelled":3, "precanceling":4, "precancellation":5, "precancelling":4, "precancerous":4, "precandidacy":5, "precandidature":5, "precanning":3, "precanvass":3, "precapitalist":5, "precapitalistic":6, "precaptivity":5, "precapture":3, "precaptured":3, "precapturing":4, "precardiac":4, "precarious":4, "precariously":5, "precariousness":5, "precarnival":4, "precartilaginous":6, "precast":2, "precaudal":3, "precaution":3, "precautional":4, "precautionary":5, "precautious":3, "precede":2, "preceded":3, "precedent":3, "preceding":3, "precelebrant":4, "precelebrate":4, "precelebrated":5, "precelebrating":5, "precelebration":5, "precensure":3, "precensured":3, "precensuring":4, "precensus":3, "precentennial":5, "precentor":3, "precentorship":4, "precentorial":5, "precept":2, "preceptive":3, "preceptively":4, "preceptor":3, "preceptorship":4, "preceptorially":6, "preceptory":4, "precerebellar":5, "precerebral":4, "precerebroid":4, "preceremonial":6, "preceremony":5, "precertified":4, "precertification":6, "precertify":4, "precertifying":5, "precess":2, "precession":3, "precessional":4, "prechallenge":3, "prechallenged":3, "prechallenging":4, "prechampioned":4, "prechampionship":5, "precharge":2, "precharged":2, "precharging":3, "prechart":2, "precharted":3, "precheck":2, "prechemical":4, "prechildhood":3, "prechill":2, "prechloric":3, "prechloroform":4, "prechoice":2, "prechoose":2, "prechoosing":3, "prechordal":3, "prechose":2, "prechoroid":3, "prechosen":3, "precinct":2, "precincts":2, "precious":2, "precious coral":4, "precious metal":4, "precious stone":3, "preciously":3, "precipitance":4, "precipitant":4, "precipitancy":5, "precipitate":4, "precipitately":5, "precipitateness":5, "precipitation":5, "precipitation hardening":8, "precipitative":5, "precipitator":5, "precipitin":4, "precipitous":4, "precipitously":5, "precipitousness":5, "precipitron":4, "precirculate":4, "precirculated":5, "precirculating":5, "precirculation":5, "precis":2, "precise":2, "precisely":3, "preciseness":3, "precite":2, "precited":3, "preciting":3, "precivilization":6, "preciosity":5, "precisian":3, "precisianism":4, "precision":3, "precision club":4, "precisive":3, "precitation":4, "preclaim":2, "preclaimant":3, "preclaimer":3, "preclassic":3, "preclassical":4, "preclassified":4, "preclassification":6, "preclassify":4, "preclassifying":5, "preclean":2, "precleaner":3, "preclerical":4, "preclinical":4, "preclimax":3, "preclose":2, "preclosed":2, "preclosing":3, "preclothe":2, "preclothed":2, "preclothing":3, "precloacal":4, "preclosure":3, "preclude":2, "precluded":3, "precluding":3, "precoccygeal":5, "precocity":4, "precogitate":4, "precogitated":5, "precogitating":5, "precogitation":5, "precognize":3, "precognized":3, "precognizing":4, "precognition":4, "precognitive":4, "precognizant":4, "precognizable":5, "precoil":2, "precoiler":3, "precollapse":3, "precollapsed":3, "precollapsable":5, "precollapsing":4, "precollapsibility":7, "precollapsible":5, "precollect":3, "precollectable":5, "precollection":4, "precollector":4, "precollege":3, "precollegiate":4, "precollude":3, "precolluded":4, "precolluding":4, "precollusion":4, "precollusive":4, "precolor":3, "precolorable":5, "precoloration":5, "precombat":3, "precombatant":4, "precombated":4, "precombating":4, "precombatted":4, "precombatting":4, "precombine":3, "precombined":3, "precombining":4, "precombination":5, "precombustion":4, "precommand":3, "precomment":3, "precommercial":4, "precommit":3, "precommitted":4, "precommitting":4, "precommune":3, "precommuned":3, "precommuning":4, "precommunicate":5, "precommunicated":6, "precommunicating":6, "precommunication":6, "precompare":3, "precompared":3, "precomparing":4, "precomparison":5, "precompass":3, "precompel":3, "precompelled":3, "precompelling":4, "precompensate":4, "precompensated":5, "precompensating":5, "precompensation":5, "precompile":3, "precompiled":3, "precompiler":4, "precompiling":4, "precompilation":5, "precompleteness":4, "precompletion":4, "precompliance":4, "precompliant":4, "precomplicate":4, "precomplicated":5, "precomplicating":5, "precomplication":5, "precompound":3, "precompress":3, "precompression":4, "precomprehend":4, "precomprehension":5, "precomprehensive":5, "precompulsion":4, "precomradeship":4, "preconceal":3, "preconcealment":4, "preconcede":3, "preconceded":4, "preconceding":4, "preconceive":3, "preconceived":3, "preconceiving":4, "preconcentrate":4, "preconcentrated":5, "preconcentrating":5, "preconcentration":5, "preconception":4, "preconceptional":5, "preconcern":3, "preconcernment":4, "preconcert":3, "preconcertedly":5, "preconcertedness":5, "preconcession":4, "preconcessive":4, "preconclude":3, "preconcluded":4, "preconcluding":4, "preconclusion":4, "preconcur":3, "preconcurred":3, "preconcurrence":4, "preconcurrent":4, "preconcurring":4, "precondemn":3, "precondemnation":5, "precondense":3, "precondensed":3, "precondensing":4, "precondensation":5, "precondition":4, "preconduct":3, "preconduction":4, "preconductor":4, "precondylar":4, "precondyloid":4, "preconfer":3, "preconferred":3, "preconference":4, "preconferring":4, "preconfess":3, "preconfession":4, "preconfide":3, "preconfided":4, "preconfiding":4, "preconfigure":4, "preconfigured":4, "preconfiguring":5, "preconfiguration":6, "preconfine":3, "preconfined":3, "preconfinement":4, "preconfinedly":5, "preconfining":4, "preconfirm":3, "preconfirmation":5, "preconflict":3, "preconform":3, "preconformity":5, "preconfound":3, "preconfuse":3, "preconfused":3, "preconfusedly":5, "preconfusing":4, "preconfusion":4, "precongenial":4, "precongested":4, "precongestion":4, "precongestive":4, "precongratulate":5, "precongratulated":6, "precongratulating":6, "precongratulation":6, "precongressional":5, "preconjecture":4, "preconjectured":4, "preconjecturing":5, "preconnection":4, "preconnective":4, "preconnubial":5, "preconquer":3, "preconquest":3, "preconscious":3, "preconsciously":4, "preconsent":3, "preconsecrate":4, "preconsecrated":5, "preconsecrating":5, "preconsecration":5, "preconsider":4, "preconsideration":6, "preconsign":3, "preconsolidate":5, "preconsolidated":6, "preconsolidating":6, "preconsolidation":6, "preconsonantal":5, "preconspire":3, "preconspired":3, "preconspiracy":5, "preconspirator":5, "preconspiring":4, "preconstituent":5, "preconstitute":4, "preconstituted":5, "preconstituting":5, "preconstruct":3, "preconstruction":4, "preconsult":3, "preconsultation":5, "preconsultor":4, "preconsume":3, "preconsumed":3, "preconsumption":4, "preconsumer":4, "preconsuming":4, "precontain":3, "precontemn":3, "precontemplate":4, "precontemplated":5, "precontemplating":5, "precontemplation":5, "precontemporaneity":8, "precontemporaneous":7, "precontend":3, "precontentment":4, "precontention":4, "precontest":3, "precontinental":5, "precontract":3, "precontractive":4, "precontractual":5, "precontribute":4, "precontributed":5, "precontributing":5, "precontributive":5, "precontrive":3, "precontrived":3, "precontrivance":4, "precontriving":4, "precontribution":5, "precontrol":3, "precontrolled":3, "precontrolling":4, "precontroversial":5, "precontroversy":5, "preconvention":4, "preconvert":3, "preconversation":5, "preconversational":6, "preconversion":4, "preconvey":3, "preconveyance":4, "preconvict":3, "preconviction":4, "preconvince":3, "preconvinced":3, "preconvincing":4, "precook":2, "precool":2, "precooler":3, "precopied":3, "precopy":3, "precopying":4, "precoracoid":4, "precordial":3, "precorneal":4, "precoronation":5, "precorrect":3, "precorrection":4, "precorrespond":4, "precorrespondence":5, "precorrespondent":5, "precorridor":4, "precorrupt":3, "precorruption":4, "precorruptive":4, "precosmic":3, "precosmical":4, "precostal":3, "precounsel":3, "precounseled":3, "precounselled":3, "precounseling":4, "precounselling":4, "precounsellor":4, "precover":3, "precocial":3, "precocious":3, "precociously":4, "precociousness":4, "precoincidence":5, "precoincident":5, "preconise":3, "preconize":3, "preconizer":4, "preconization":5, "precranial":4, "precredit":3, "precreditor":4, "precreed":2, "precreation":4, "precritical":4, "precriticism":4, "precriticize":4, "precriticized":4, "precriticizing":5, "precrucial":3, "precrural":3, "precrystalline":4, "precultivate":4, "precultivated":5, "precultivating":5, "precultivation":5, "preculture":3, "precultural":4, "precure":2, "precured":2, "precuring":3, "precurrent":3, "precurricular":5, "precurriculum":5, "precursive":3, "precursor":3, "precursory":4, "precurtain":3, "precystic":3, "precyclone":3, "precyclonic":4, "predamn":2, "predamage":3, "predamaged":3, "predamaging":4, "predamnation":4, "predark":2, "predarkness":3, "predate":2, "predatism":3, "preday":2, "predaylight":3, "predaytime":3, "predaceous":3, "predaciou":3, "predacious":3, "predadated":4, "predadating":4, "predata":3, "predation":3, "predealer":3, "predealing":3, "predeath":2, "predeathly":3, "predebtor":3, "predebit":3, "predeclaration":5, "predeclination":5, "prededicate":4, "prededicated":5, "prededicating":5, "prededication":5, "predefinition":5, "predelegate":4, "predelegated":5, "predelegating":5, "predelegation":5, "predella":3, "predemonstrate":4, "predemonstrated":5, "predemonstrating":5, "predemonstration":5, "predemocratic":5, "predeprivation":5, "prederivation":5, "predescend":3, "predescent":3, "predesignate":4, "predesignated":5, "predesignating":5, "predesmined":3, "predesmining":4, "predestine":3, "predestined":3, "predestining":4, "predestinarian":6, "predestinarianism":7, "predestinate":4, "predestinately":5, "predestinated":5, "predestinating":5, "predestination":5, "predestitute":4, "predestitution":5, "predetrimental":5, "predebate":3, "predebater":4, "predecease":3, "predeceased":3, "predeceasing":4, "predeceive":3, "predeceived":3, "predeceiver":4, "predeceiving":4, "predeception":4, "predecessor":4, "predecide":3, "predecided":4, "predeciding":4, "predecision":4, "predecisive":4, "predeclare":3, "predeclared":3, "predeclaring":4, "predecline":3, "predeclined":3, "predeclining":4, "predecree":3, "predecreed":3, "predecreeing":4, "prededuct":3, "prededuction":4, "predefault":3, "predefeat":3, "predefect":3, "predefective":4, "predefence":3, "predefend":3, "predefense":3, "predefied":3, "predefine":3, "predefined":3, "predefining":4, "predefiance":4, "predeficient":4, "predeficiency":5, "predefray":3, "predefrayal":4, "predefy":3, "predefying":4, "predegenerate":5, "predegeneracy":6, "predegree":3, "predelay":3, "predeliberate":5, "predeliberated":6, "predeliberating":6, "predeliberation":6, "predelineate":5, "predelineated":6, "predelineating":6, "predelineation":6, "predelinquent":4, "predelinquency":5, "predeliver":4, "predeliveries":5, "predelivery":5, "predelude":3, "predeluded":4, "predeluding":4, "predelusion":4, "predemand":3, "predemocracy":5, "predemonstrative":5, "predenied":3, "predenial":4, "predeny":3, "predenying":4, "predepartmental":5, "predeparture":4, "predependable":5, "predependence":4, "predependent":4, "predeplete":3, "predepleted":4, "predepleting":4, "predepletion":4, "predeposit":4, "predepository":6, "predepression":4, "predepreciate":5, "predepreciated":6, "predepreciating":6, "predepreciation":6, "predeprive":3, "predeprived":3, "predepriving":4, "prederive":3, "prederived":3, "prederiving":4, "predescribe":3, "predescribed":3, "predescribing":4, "predescription":4, "predesert":3, "predeserter":4, "predeserve":3, "predeserved":3, "predeserving":4, "predesertion":4, "predesign":3, "predesirous":4, "predespondent":4, "predespondency":5, "predestroy":3, "predestruction":4, "predetach":3, "predetachment":4, "predetail":3, "predetain":3, "predetainer":4, "predetect":3, "predetection":4, "predetention":4, "predetermine":4, "predeterminer":5, "predeterminate":5, "predetermination":6, "predeterminative":6, "predevelop":4, "predevelopment":5, "predevise":3, "predevised":3, "predevising":4, "predevour":3, "predevotion":4, "predict":2, "predictability":6, "predictable":4, "predictably":4, "predicament":4, "predicative":4, "predictate":3, "predictated":4, "predictating":4, "prediction":3, "predictively":4, "predictiveness":4, "predictor":3, "predictory":4, "predifficulty":5, "predigital":4, "prediligent":4, "predine":2, "predined":2, "predining":3, "predinner":3, "prediphtheritic":5, "prediplomatic":5, "predisappointment":5, "predisaster":4, "predisastrous":4, "predisagree":4, "predisagreed":4, "predisagreeing":5, "predisagreement":5, "prediscern":3, "prediscernment":4, "predischarge":3, "predischarged":3, "predischarging":4, "prediscipline":4, "predisciplined":4, "predisciplining":5, "predisclose":3, "predisclosed":3, "predisclosing":4, "predisclosure":4, "prediscontent":4, "prediscontented":5, "prediscontentment":5, "prediscount":3, "prediscountable":5, "prediscourse":3, "prediscourage":4, "prediscouraged":4, "prediscouragement":5, "prediscouraging":5, "prediscover":4, "prediscoverer":5, "prediscoveries":5, "prediscovery":5, "prediscriminate":5, "prediscriminated":6, "prediscriminating":6, "prediscrimination":6, "prediscriminator":6, "prediscuss":3, "prediscussion":4, "predisgrace":3, "predisguise":3, "predisguised":3, "predisguising":4, "predisgust":3, "predislike":3, "predisliked":3, "predisliking":4, "predismiss":3, "predismissal":4, "predisorder":4, "predisordered":4, "predispatch":3, "predispatcher":4, "predisperse":3, "predispersed":3, "predispersing":4, "predispersion":4, "predisplace":3, "predisplaced":3, "predisplacement":4, "predisplacing":4, "predisplay":3, "predispose":3, "predisposal":4, "predisposedly":5, "predisposedness":5, "predisposition":5, "predispositional":6, "predispute":3, "predisputed":4, "predisputing":4, "predisputant":4, "predisputation":5, "predisrupt":3, "predisruption":4, "predissatisfaction":6, "predissolve":3, "predissolved":3, "predissolving":4, "predissolution":5, "predissuade":3, "predissuaded":4, "predissuading":4, "predistinguish":4, "predistortion":4, "predistress":3, "predistribute":4, "predistributed":5, "predistributing":5, "predistributor":5, "predistrict":3, "predistribution":5, "predistrust":3, "predistrustful":4, "predisturb":3, "predisturbance":4, "prediagnostic":5, "prediagnosis":5, "predial":3, "prediastolic":5, "predicrotic":4, "prediet":3, "predietary":5, "predigest":3, "predigestion":4, "predilection":4, "prediluvial":5, "prediminish":4, "prediminishment":5, "prediminution":5, "prediploma":4, "prediplomacy":5, "predirect":3, "predirection":4, "predirector":4, "predivert":3, "prediversion":4, "predivide":3, "predivided":4, "predivider":4, "predividing":4, "predivinable":5, "predivinity":5, "predivision":4, "predivorce":3, "predivorcement":4, "predoctorate":4, "predocumentary":6, "predominance":4, "predominant":4, "predominancy":5, "predominate":4, "predominately":5, "predominated":5, "predominating":5, "predominatingly":6, "predomination":5, "predominator":5, "predoom":2, "predormition":4, "predorsal":3, "predoubt":2, "predoubter":3, "predoubtful":3, "predomestic":4, "predomestically":6, "predonate":3, "predonated":4, "predonating":4, "predonation":4, "predonor":3, "predraft":2, "predraw":2, "predrawn":2, "predrawer":3, "predrawing":3, "predramatic":4, "predread":2, "predrew":2, "predried":2, "predrill":2, "predriller":3, "predrive":2, "predriven":3, "predriver":3, "predriving":3, "predrove":2, "predry":2, "predrying":3, "predusk":2, "preduplicate":4, "preduplicated":5, "preduplicating":5, "preduplication":5, "predwell":2, "predynastic":4, "preearthly":3, "preearthquake":3, "preedit":3, "preeditor":4, "preeditorial":6, "preeducate":4, "preeducated":5, "preeducating":5, "preeducation":5, "preeducational":6, "preeffect":3, "preeffective":4, "preeffectual":5, "preeffort":3, "preelemental":5, "preelementary":6, "preeligibility":7, "preeligible":5, "preeligibleness":6, "preempt":2, "preemption":3, "preemptive":3, "preemptor":3, "preembarrass":4, "preembarrassment":5, "preembodied":4, "preembodiment":5, "preembody":4, "preembodying":5, "preeminence":4, "preeminent":4, "preemperor":4, "preemphasis":4, "preemploy":3, "preemployee":4, "preemployer":4, "preemployment":4, "preenable":4, "preenclose":3, "preenclosed":3, "preenclosing":4, "preenclosure":4, "preencounter":4, "preencourage":4, "preencouragement":5, "preendeavor":4, "preendorse":3, "preendorsed":3, "preendorsement":4, "preendorser":4, "preendorsing":4, "preenforce":3, "preenforced":3, "preenforcement":4, "preenforcing":4, "preengage":3, "preengaged":3, "preengaging":4, "preengineering":5, "preenjoy":3, "preenjoyable":5, "preenjoyment":4, "preenlarge":3, "preenlarged":3, "preenlargement":4, "preenlarging":4, "preenlighten":4, "preenlightener":5, "preenlightenment":5, "preenlist":3, "preenlistment":4, "preenroll":3, "preenrollment":4, "preentail":3, "preentailment":4, "preenter":3, "preentertain":4, "preentertainer":5, "preentertainment":5, "preenthusiasm":5, "preentitle":4, "preentrance":3, "preentry":3, "preenvelop":4, "preenvelopment":5, "preenvironmental":6, "preepidemic":5, "preepochal":4, "preequity":4, "preescape":3, "preescaped":3, "preescaping":4, "preessay":3, "preessential":4, "preestablish":4, "preesteem":3, "preestimate":4, "preestimated":5, "preestimating":5, "preestimation":5, "preestival":4, "preevidence":4, "preevident":4, "preevolutional":6, "preevolutionary":7, "preevolutionist":6, "preexact":3, "preexaction":4, "preexamine":4, "preexamined":4, "preexaminer":5, "preexamining":5, "preexamination":6, "preexcept":3, "preexception":4, "preexceptional":5, "preexchange":3, "preexchanged":3, "preexchanging":4, "preexcite":3, "preexcited":4, "preexciting":4, "preexcitation":5, "preexclude":3, "preexcluded":4, "preexcluding":4, "preexclusion":4, "preexclusive":4, "preexcursion":4, "preexcuse":3, "preexcused":3, "preexcusing":4, "preexecutor":5, "preexempt":3, "preexemption":4, "preexecute":4, "preexecuted":5, "preexecuting":5, "preexecution":5, "preexhaust":3, "preexhaustion":4, "preexhibit":4, "preexhibitor":5, "preexhibition":5, "preexilic":4, "preexist":3, "preexistence":4, "preexistent":4, "preexpand":3, "preexpansion":4, "preexpect":3, "preexpectant":4, "preexpectation":5, "preexpend":3, "preexpenditure":5, "preexpense":3, "preexperiment":5, "preexperimental":6, "preexpedition":5, "preexpeditionary":7, "preexperience":5, "preexperienced":5, "preexperiencing":6, "preexpiration":5, "preexplain":3, "preexplanatory":6, "preexplanation":5, "preexplode":3, "preexploded":4, "preexploding":4, "preexpose":3, "preexposed":3, "preexposing":4, "preexpound":3, "preexpounder":4, "preexposition":5, "preexposure":4, "preexpress":3, "preexpression":4, "preexpressive":4, "preextend":3, "preextent":3, "preextensive":4, "preextinction":4, "preextinguish":4, "preextinguishment":5, "preextract":3, "preextraction":4, "preeconomic":5, "preeconomical":6, "preedition":4, "preelect":3, "preelection":4, "preelective":4, "preelectric":4, "preelectrical":5, "preeliminate":5, "preeliminated":6, "preeliminating":6, "preelimination":6, "preeliminator":6, "preemancipation":6, "preemergency":5, "preemotion":4, "preemotional":5, "preenact":3, "preenaction":4, "preenumerate":5, "preenumerated":6, "preenumerating":6, "preenumeration":6, "preequalization":6, "preequip":3, "preequipped":3, "preequipment":4, "preequipping":4, "preerect":3, "preerection":4, "preerupt":3, "preeruption":4, "preeruptive":4, "preesophageal":6, "preeternal":4, "preeternity":5, "preevade":3, "preevaded":4, "preevading":4, "preevaporate":5, "preevaporated":6, "preevaporating":6, "preevaporation":6, "preevaporator":6, "preevasion":4, "preexplosion":4, "prefab":2, "prefabbed":2, "prefabbing":3, "prefabricate":4, "prefabrication":5, "prefabricator":5, "prefactor":3, "prefashion":3, "prefashioned":3, "prefamiliar":4, "prefamiliarity":7, "prefamous":3, "prefavor":3, "prefavorable":5, "prefavorite":4, "prefearful":3, "prefeast":2, "prefect":2, "prefectorial":5, "prefecture":3, "prefectural":4, "prefecundation":5, "prefer":2, "preferred":2, "preferred stock":3, "preferment":3, "prefermentation":5, "preferredly":4, "preferredness":4, "preferrer":3, "preferring":3, "preferrous":3, "prefertile":3, "prefertility":5, "prefertilize":4, "prefertilized":4, "prefertilizing":5, "prefertilization":6, "prefestival":4, "prefeudal":3, "prefeudalism":4, "prefigure":3, "prefigurement":4, "prefigurative":5, "prefiguratively":6, "prefigurativeness":6, "prefiguration":5, "prefiller":3, "prefinish":3, "prefix":2, "prefixal":3, "prefixally":4, "prefixable":4, "prefixion":3, "prefinance":3, "prefinanced":3, "prefinancing":4, "prefinancial":4, "preflagellate":4, "preflagellated":5, "preflatter":3, "preflavor":3, "preflight":2, "preflood":2, "preflowering":4, "preform":2, "preforbidden":4, "preforgave":3, "preforgive":3, "preforgiveness":4, "preforgiven":4, "preforgiving":4, "preformation":4, "preformationary":6, "preformulate":4, "preformulated":5, "preformulating":5, "preformulation":5, "prefounder":3, "prefoundation":4, "prefrankness":3, "prefraud":2, "prefraternal":4, "prefree-trade":2, "prefreeze":2, "prefreezing":3, "prefreshman":3, "prefriendly":3, "prefriendship":3, "prefrontal":3, "prefroze":2, "prefrozen":3, "prefulfill":3, "prefulfillment":4, "prefunction":3, "prefunctional":4, "prefurlough":3, "prefurnish":3, "prefuneral":4, "pregain":2, "pregainer":3, "pregalvanize":4, "pregalvanized":4, "pregalvanizing":5, "pregame":2, "preganglionic":5, "pregastrular":4, "pregather":3, "pregenerate":4, "pregenerated":5, "pregenerating":5, "pregeneration":5, "pregenital":4, "pregeological":6, "pregirlhood":3, "preglacial":3, "preglacial":4, "pregrade":2, "pregraded":3, "pregrading":3, "pregraduation":5, "pregranite":3, "pregratified":4, "pregratification":6, "pregratify":4, "pregratifying":5, "pregranitic":4, "pregreet":2, "pregrievance":3, "pregrowth":2, "preguard":2, "preguarantee":4, "preguaranteed":4, "preguaranteeing":5, "preguarantor":4, "preguess":2, "preguide":2, "preguidance":3, "preguided":3, "preguiding":3, "preguilt":2, "prehandicap":4, "prehandicapped":4, "prehandicapping":5, "prehandle":3, "preharden":3, "prehardener":4, "preharmonious":5, "preharmony":4, "preharvest":3, "prehazard":3, "prehatred":3, "preheal":2, "prehearing":3, "preheat":2, "preheater":3, "prehemiplegic":5, "prehensile":3, "prehension":3, "prehensible":4, "prehesitancy":5, "prehesitate":4, "prehesitated":5, "prehesitating":5, "prehesitation":5, "prehexameral":5, "prehistoric":4, "prehistorical":5, "prehistorically":6, "prehistorian":5, "prehistory":4, "preholder":3, "preholding":3, "preholiday":4, "prehominid":4, "prehostile":3, "prehostility":5, "prehunger":3, "prehuman":3, "prehumor":3, "preignition":4, "preilium":4, "preillustrate":4, "preillustrated":5, "preillustrating":5, "preillustration":5, "preilluminate":5, "preillumination":6, "preimage":3, "preimbibe":3, "preimbibed":3, "preimbibing":4, "preimbue":3, "preimbued":3, "preimbuing":4, "preimitate":4, "preimitated":5, "preimitating":5, "preimitation":5, "preimitative":5, "preimmigration":5, "preimpair":3, "preimpairment":4, "preimpart":3, "preimperial":5, "preimport":3, "preimportance":4, "preimportant":4, "preimportation":5, "preimpose":3, "preimposed":3, "preimposing":4, "preimposition":5, "preimpress":3, "preimpression":4, "preimpressive":4, "preimprove":3, "preimproved":3, "preimprovement":4, "preimproving":4, "preinaugural":5, "preinaugurate":5, "preinaugurated":6, "preinaugurating":6, "preincentive":4, "preincline":3, "preinclined":3, "preinclining":4, "preinclination":5, "preinclude":3, "preincluded":4, "preincluding":4, "preinclusion":4, "preincorporate":5, "preincorporated":6, "preincorporating":6, "preincorporation":6, "preincrease":3, "preincreased":3, "preincreasing":4, "preindebted":4, "preindemnified":5, "preindemnification":7, "preindemnify":5, "preindemnifying":6, "preindemnity":5, "preindependence":5, "preindependent":5, "preindispose":4, "preindisposed":4, "preindisposing":5, "preindisposition":6, "preindicate":4, "preindicated":5, "preindicating":5, "preindication":5, "preinduce":3, "preinduced":3, "preinducement":4, "preinducing":4, "preinduction":4, "preinductive":4, "preindulge":3, "preindulged":3, "preindulging":4, "preindulgence":4, "preindulgent":4, "preindustrial":5, "preindustry":4, "preinfect":3, "preinfection":4, "preinfer":3, "preinferred":3, "preinference":4, "preinferring":4, "preinflection":4, "preinflectional":5, "preinflict":3, "preinfliction":4, "preinfluence":4, "preinform":3, "preinhabit":4, "preinhabitant":5, "preinhabitation":6, "preinhere":3, "preinhered":3, "preinhering":4, "preinherit":4, "preinheritance":5, "preinitial":4, "preinitiate":5, "preinitiated":6, "preinitiating":6, "preinitiation":6, "preinjurious":5, "preinquisition":5, "preinscribe":3, "preinscribed":3, "preinscribing":4, "preinscription":4, "preinsert":3, "preinsertion":4, "preinsinuate":5, "preinsinuated":6, "preinsinuating":6, "preinsinuatingly":7, "preinsinuation":6, "preinsinuative":6, "preinspect":3, "preinspection":4, "preinspector":4, "preinspire":3, "preinspired":3, "preinspiring":4, "preinstall":3, "preinstallation":5, "preinstill":3, "preinstillation":5, "preinstruct":3, "preinstruction":4, "preinstructional":5, "preinstructive":4, "preinsult":3, "preinsure":3, "preinsured":3, "preinsurance":4, "preinsuring":4, "preinsulate":4, "preinsulated":5, "preinsulating":5, "preinsulation":5, "preintellectual":6, "preintelligence":5, "preintelligent":5, "preintend":3, "preintention":4, "preintercede":4, "preinterceded":5, "preinterceding":5, "preintercession":5, "preinterchange":4, "preintercourse":4, "preinterest":4, "preinterpret":4, "preinterpretation":6, "preinterpretative":6, "preinterview":4, "preintimate":4, "preintimated":5, "preintimating":5, "preintimation":5, "preinvasive":4, "preinvent":3, "preinvention":4, "preinventive":4, "preinventory":5, "preinvest":3, "preinvestment":4, "preinvestigate":5, "preinvestigated":6, "preinvestigating":6, "preinvestigation":6, "preinvestigator":6, "preinvite":3, "preinvited":4, "preinviting":4, "preinvitation":5, "preinvolve":3, "preinvolved":3, "preinvolvement":4, "preinvolving":4, "preinvocation":5, "preirrigation":5, "preirrigational":6, "preissue":3, "preissued":3, "preissuance":4, "preissuing":4, "preidentified":5, "preidentification":7, "preidentify":5, "preidentifying":6, "preidea":4, "preimagine":4, "preimagined":4, "preimagining":5, "preimaginary":6, "preimagination":6, "prejournalistic":5, "prejudge":2, "prejudgement":3, "prejudger":3, "prejudgment":3, "prejunior":3, "prejustified":4, "prejustification":6, "prejustify":4, "prejustifying":5, "prejudiciable":6, "prejurisdiction":5, "prejuvenile":4, "prekindergarten":5, "prekindle":3, "preknew":2, "preknit":2, "preknitted":3, "preknitting":3, "preknow":2, "preknowledge":3, "preknown":2, "preknowing":3, "prelacteal":4, "prelanguage":3, "prelatic":3, "prelaunch":2, "prelawful":3, "prelabel":3, "prelabeled":3, "prelabelled":3, "prelabeling":4, "prelabelling":4, "prelabial":4, "prelabor":3, "prelaryngoscopic":6, "prelease":2, "preleased":2, "preleasing":3, "prelect":2, "prelection":3, "prelecture":3, "prelectured":3, "prelecturing":4, "prelegend":3, "prelegendary":5, "prelegislative":5, "prelexical":4, "prelegal":3, "preliberal":4, "preliberality":6, "preliberate":4, "preliberated":5, "preliberating":5, "preliberation":5, "prelim":2, "prelims":2, "prelimit":3, "preliminaries":5, "preliminarily":6, "preliminary":5, "prelimitate":4, "prelimitated":5, "prelimitating":5, "prelingual":3, "preliquidate":4, "preliquidated":5, "preliquidating":5, "preliquidation":5, "prelithic":3, "preliterary":5, "preliterate":4, "preliterature":5, "prelitigation":5, "preliability":6, "preliable":4, "prelibation":4, "prelicense":3, "prelicensed":3, "prelicensing":4, "preloan":2, "preloss":2, "prelocate":3, "prelocated":4, "prelocating":4, "preluder":3, "prelumbar":3, "preluxurious":5, "preludin":3, "preludial":4, "preludious":4, "preludiously":5, "prelusive":3, "prelusively":4, "prelusorily":5, "prelusory":4, "premade":2, "premadness":3, "premaintain":3, "premaintenance":4, "premake":2, "premaker":3, "premaking":3, "premandibular":5, "premanhood":3, "premanifest":4, "premanifestation":6, "premankind":3, "premanufacture":5, "premanufactured":5, "premanufacturing":6, "premarital":4, "premarriage":3, "premarried":3, "premarry":3, "premarrying":4, "premastery":4, "prematch":2, "premate":2, "premated":3, "premating":3, "prematrimonial":6, "premaxilla":4, "premaxillae":4, "premaxillary":5, "premaniacal":5, "prematernity":5, "prematerial":5, "premature":3, "prematurely":4, "prematureness":4, "prematurity":5, "premeassured":3, "premeassuring":4, "premeasure":3, "premeasurement":4, "premed":2, "premedical":4, "premedicate":4, "premedicated":5, "premedicating":5, "premedication":5, "premedieval":5, "premeditate":4, "premeditated":5, "premeditatedly":6, "premeditatedness":6, "premeditating":5, "premeditatingly":6, "premeditation":5, "premeditative":5, "premeditator":5, "premegalithic":5, "prememorandum":5, "premenace":3, "premenaced":3, "premenacing":4, "premenstrual":4, "premention":3, "premerit":3, "premedian":4, "premethodical":5, "premidnight":3, "premidsummer":4, "premie":2, "premiere":2, "premiered":2, "premiering":3, "premiership":3, "premilitary":5, "premillennial":5, "premillennialise":6, "premillennialised":6, "premillennialism":6, "premillennialist":6, "premillennialising":7, "premillennialize":6, "premillennialized":6, "premillennializing":7, "premillennially":6, "premillenarian":6, "premillenarianism":7, "premillenarianist":7, "preminister":4, "preministry":4, "premisrepresent":5, "premisrepresentation":7, "premix":2, "premixer":3, "premixture":3, "premire":3, "premiate":3, "premiated":4, "premiating":4, "premium":3, "premium savings bonds":6, "premodel":3, "premodeled":3, "premodelled":3, "premodeling":4, "premodelling":4, "premodern":3, "premodified":4, "premodification":6, "premodify":4, "premodifying":5, "premold":2, "premolder":3, "premont":2, "premonetary":5, "premonish":3, "premonitory":5, "premonumental":5, "premorning":3, "premorse":2, "premoral":3, "premorbid":3, "premortal":3, "premortified":4, "premortification":6, "premortify":4, "premortifying":5, "premortuary":5, "premorula":4, "premolar":3, "premonarchal":4, "premonarchial":5, "premonarchical":5, "premonition":4, "premonopolize":5, "premonopolized":5, "premonopolizing":6, "premonopoly":5, "premorality":5, "premosaic":4, "premuddle":3, "premundane":3, "premuster":3, "premunicipal":5, "premunition":4, "premusical":4, "premutinied":4, "premutiny":4, "premutinying":5, "premythical":4, "premycotic":4, "prenarcotic":4, "prenarial":4, "prenatural":4, "prenasal":3, "prenatal":3, "prenatally":4, "prenational":4, "prenaval":3, "prenebular":4, "prenegligence":4, "prenegligent":4, "preneural":3, "preneuralgic":4, "prenecessitate":5, "prenecessitated":6, "prenecessitating":6, "preneglect":3, "preneglectful":4, "prenegotiate":5, "prenegotiated":6, "prenegotiating":6, "prenegotiation":6, "preneolithic":5, "prenephritic":4, "prenomina":4, "prenominal":4, "prenominate":4, "prenominated":5, "prenominating":5, "prenomination":5, "prenote":2, "prenoted":3, "prenoting":3, "prenomen":3, "prenotion":3, "prenotified":4, "prenotify":4, "prenotifying":5, "prenumber":3, "prenuptial":3, "prenurseries":4, "prenursery":4, "preobject":3, "preobjection":4, "preobjective":4, "preoblige":3, "preobliged":3, "preobliging":4, "preobligate":4, "preobligated":5, "preobligating":5, "preobligation":5, "preoblongata":5, "preobserve":3, "preobserved":3, "preobservance":4, "preobserving":4, "preobservation":5, "preobservational":6, "preobstruct":3, "preobstruction":4, "preobtain":3, "preobtainable":5, "preobtrude":3, "preobtruded":4, "preobtruding":4, "preobtrusion":4, "preobtrusive":4, "preobviate":4, "preobviated":5, "preobviating":5, "preobvious":4, "preoccasioned":4, "preoccipital":5, "preocclusion":4, "preoccultation":5, "preoccur":3, "preoccurred":3, "preoccurrence":4, "preoccurring":4, "preoccupant":4, "preoccupancy":5, "preoccupation":5, "preoccupied":4, "preoccupiedly":5, "preoccupiedness":5, "preoccupier":5, "preoccupy":4, "preoccupying":5, "preocular":4, "preoesophageal":6, "preoffend":3, "preoffensive":4, "preoffer":3, "preofficial":4, "preoperate":4, "preoperated":5, "preoperating":5, "preoperation":5, "preoperator":5, "preoppose":3, "preopposed":3, "preopposing":4, "preopposition":5, "preoppress":3, "preoppression":4, "preoppressor":4, "preoptic":3, "preoption":3, "preoptimistic":5, "preorbital":4, "preordain":3, "preorder":3, "preordinance":4, "preorganic":4, "preorganize":4, "preorganized":4, "preorganizing":5, "preorganically":6, "preorganization":6, "preornamental":5, "preotic":3, "preoutfit":3, "preoutfitted":4, "preoutfitting":4, "preoutline":3, "preoutlined":3, "preoutlining":4, "preobedience":5, "preobedient":5, "preoceanic":5, "preodorous":4, "preomission":4, "preomit":3, "preomitted":4, "preomitting":4, "preopen":3, "preopinion":4, "preoral":3, "preoriginal":5, "preoverthrew":4, "preoverthrow":4, "preoverthrown":4, "preoverthrowing":5, "prepack":2, "prepackage":3, "prepackaged":3, "prepackaging":4, "prepalatal":4, "prepalatine":4, "prepare":2, "prepared":2, "prepartnership":4, "preparative":4, "preparatively":5, "preparator":4, "preparatorily":6, "preparatory":5, "preparatory school":6, "preparedly":4, "preparedness":4, "preparing":3, "preparliamentary":6, "preparoxysmal":5, "prepartake":3, "prepartaken":4, "prepartaking":4, "preparticipation":6, "prepartisan":4, "prepartition":4, "prepartook":3, "prepatent":3, "prepave":2, "prepaved":2, "prepavement":3, "prepaving":3, "prepay":2, "prepalaeolithic":6, "prepaleolithic":6, "preparental":4, "prepatrician":4, "prepectoral":4, "prepense":2, "prepenetrate":4, "prepenetrated":5, "prepenetrating":5, "prepenetration":5, "preperitoneal":6, "prepersuade":3, "prepersuaded":4, "prepersuading":4, "prepersuasion":4, "prepersuasive":4, "prepeduncle":4, "preperuse":3, "preperusal":4, "prepetition":4, "prepeused":3, "prepeusing":4, "prephthisical":4, "prepigmental":4, "prepineal":4, "prepious":3, "prepituitary":6, "preplace":2, "preplaced":2, "preplacement":3, "preplacing":3, "preplan":2, "preplanned":2, "preplant":2, "preplanning":3, "preplacental":4, "prepledge":2, "prepledged":2, "prepledging":3, "preplot":2, "preplotted":3, "preplotting":3, "prepolish":3, "prepolitic":4, "prepollex":3, "prepollices":4, "preponderance":4, "preponderant":4, "preponderantly":5, "preponderancy":5, "preponderate":4, "preponderated":5, "preponderating":5, "preportray":3, "preportrayal":4, "prepositive":4, "prepositively":5, "prepositor":4, "prepossess":3, "prepossessing":4, "prepossessingly":5, "prepossessingness":5, "prepossession":4, "prepossessionary":6, "preposterous":4, "preposterously":5, "preposterousness":5, "prepostor":3, "prepoetic":4, "prepoetical":5, "prepolice":3, "prepolitical":5, "prepotent":3, "prepotently":4, "prepotency":4, "prepractice":3, "prepracticed":3, "prepracticing":4, "prepractise":3, "prepractised":3, "prepractising":4, "prepractical":4, "preprandial":4, "prepreference":4, "prepreparation":5, "preprice":2, "prepriced":2, "prepricing":3, "preprimer":3, "preprimitive":4, "preprint":2, "preprimary":4, "prepromise":3, "prepromised":3, "prepromising":4, "preprove":2, "preproven":3, "preproving":3, "preprovocation":5, "preprofess":3, "preprohibition":5, "prepromote":3, "prepromoted":4, "prepromoting":4, "prepromotion":4, "prepronounce":3, "prepronounced":3, "prepronouncement":4, "prepronouncing":4, "preprophetic":4, "preprostatic":4, "preprovide":3, "preprovided":4, "preproviding":4, "preprovision":4, "preprovoke":3, "preprovoked":3, "preprovoking":4, "preprudent":3, "prepsychology":5, "prepsychological":6, "prepublish":3, "prepublication":5, "prepuce":2, "prepueblo":3, "prepunctual":4, "prepunish":3, "prepunishment":4, "prepurchase":3, "prepurchased":3, "prepurchaser":4, "prepurchasing":4, "prepurpose":3, "prepurposed":3, "prepurposing":4, "prepurposive":4, "prepubis":3, "prepupa":3, "preputial":3, "prepyloric":4, "prequalified":4, "prequalification":6, "prequalify":4, "prequalifying":5, "prequarantine":4, "prequarantined":4, "prequarantining":5, "prequestion":3, "prequote":2, "prequoted":3, "prequoting":3, "prequotation":4, "preracing":3, "prerailroad":3, "prerailway":3, "preradio":4, "prerational":4, "prereadiness":4, "preready":3, "prereckon":3, "prereckoning":4, "prerecognize":4, "prerecognized":4, "prerecognizing":5, "prerecognition":5, "prerecommend":4, "prerecommendation":6, "prereconcile":4, "prereconciled":4, "prereconcilement":5, "prereconciling":5, "prereconciliation":7, "prerectal":3, "prereference":4, "prereformation":5, "preregister":4, "preregistration":5, "preregulate":4, "preregulated":5, "preregulating":5, "prerent":2, "prerental":3, "prerepresent":4, "prerepresentation":6, "prerequisite":4, "preresolution":5, "prerespiration":5, "prerestoration":5, "prerevelation":5, "prerevolutionary":7, "prerealize":4, "prerealized":4, "prerealizing":5, "prerealization":6, "prerebellion":4, "prereceipt":3, "prereceive":3, "prereceived":3, "prereceiver":4, "prereceiving":4, "prerecite":3, "prerecital":4, "prerecited":4, "prereciting":4, "prerecord":3, "preredeem":3, "preredemption":4, "prerefer":3, "prereferred":3, "prereferring":4, "prerefine":3, "prerefined":3, "prerefinement":4, "prerefining":4, "prereform":3, "prereformatory":6, "prerefuse":3, "prerefused":3, "prerefusal":4, "prerefusing":4, "preregal":3, "prereject":3, "prerejection":4, "prerejoice":3, "prerejoiced":3, "prerejoicing":4, "prerelate":3, "prerelated":4, "prerelating":4, "prerelation":4, "prerelationship":5, "prerelease":3, "prereligious":4, "prereluctance":4, "preremit":3, "preremittance":4, "preremitted":4, "preremitting":4, "preremorse":3, "preremove":3, "preremoved":3, "preremoval":4, "preremoving":4, "preremunerate":5, "preremunerated":6, "preremunerating":6, "preremuneration":6, "prerenal":3, "prereport":3, "prerepublican":5, "prerequest":3, "prerequire":3, "prerequired":3, "prerequirement":4, "prerequiring":4, "preresemblance":4, "preresemble":4, "preresolve":3, "preresolved":3, "preresolving":4, "preresort":3, "prerespectability":7, "prerespectable":5, "prerespire":3, "preresponsibility":7, "preresponsible":5, "prerestrain":3, "prerestraint":3, "prerestrict":3, "prerestriction":4, "prereturn":3, "prereveal":3, "prerevenge":3, "prerevenged":3, "prerevenging":4, "prereverse":3, "prereversed":3, "prereversing":4, "prereversal":4, "prereview":3, "prerevise":3, "prerevised":3, "prerevising":4, "prerevival":4, "prerevision":4, "prerheumatic":4, "prerighteous":3, "prerogative":4, "preroute":2, "prerouted":3, "prerouting":3, "preroyal":3, "preroyalty":4, "preromantic":4, "preromanticism":5, "presa":2, "presacrifice":4, "presacrificed":4, "presacrificing":5, "presacrificial":5, "presanctified":4, "presanctification":6, "presanctify":4, "presanctifying":5, "presanguine":3, "presanitary":5, "presartorial":5, "presatisfaction":5, "presatisfactory":6, "presatisfied":4, "presatisfy":4, "presatisfying":5, "presavage":3, "presavagery":4, "presaw":2, "presacral":3, "preschool":2, "prescholastic":4, "prescind":2, "prescience":3, "prescient":3, "presciently":4, "prescientific":5, "prescout":2, "prescribe":2, "prescribed":2, "prescribable":4, "prescriber":3, "prescribing":3, "prescript":2, "prescription":3, "prescriptive":3, "prescriptively":4, "prescriptiveness":4, "prescriptivism":4, "prescriptivist":4, "prescriptible":4, "preseal":2, "presearch":2, "preseason":3, "preseasonal":4, "presecular":4, "presedentary":5, "presee":2, "preseen":2, "preseeing":3, "presemilunar":5, "preseminal":4, "preseminary":5, "present":2, "presentability":6, "presentable":4, "presentableness":5, "presentably":4, "presentative":4, "presentment":3, "presentence":3, "presentenced":3, "presentencing":4, "presentient":3, "presentive":3, "presentively":4, "presentiveness":4, "presentiment":4, "presentimental":5, "preseparate":4, "preseparated":5, "preseparating":5, "preseparation":5, "preseparator":5, "preseptal":3, "preserve":2, "preserved":2, "preservability":6, "preservable":4, "preservative":4, "preserver":3, "preserving":3, "presession":3, "preset":2, "presetting":3, "presettle":3, "presettlement":4, "presecure":3, "presecured":3, "presecuring":4, "preselection":4, "preselector":4, "presenility":5, "preshadow":3, "preshape":2, "preshaped":2, "preshaping":3, "preshare":2, "preshared":2, "presharpen":3, "presharing":3, "preship":2, "preshipped":2, "preshipment":3, "preshipping":3, "preshortage":3, "preshorten":3, "preshow":2, "preshowed":2, "preshowing":3, "preshrunk":2, "preside":2, "presider":3, "presidial":4, "presidiary":5, "presidio":4, "presidios":4, "presidium":4, "presift":2, "presignal":3, "presignaled":3, "presignalled":3, "presignaling":4, "presignify":4, "preslavery":4, "presmooth":2, "presolve":2, "presolved":2, "presolving":3, "presophomore":4, "presound":2, "presocial":3, "presocialism":4, "presocialist":4, "presolar":3, "presolicit":4, "presolicitation":6, "presolution":4, "prespecified":4, "prespecification":6, "prespecify":4, "prespecifying":5, "prespeculate":4, "prespeculated":5, "prespeculating":5, "prespeculation":5, "prespecialist":4, "prespecialize":4, "prespecialized":4, "prespecializing":5, "prespecific":4, "prespecifically":6, "presphenoid":3, "prespinal":3, "prespiracular":5, "prespread":2, "prespreading":3, "presprinkle":3, "prespur":2, "prespurred":2, "prespurring":3, "prestamp":2, "prestandard":3, "prestandardize":4, "prestandardized":4, "prestandardizing":5, "prestandardization":6, "prestatistical":5, "presteam":2, "presteel":2, "prestimulate":4, "prestimulated":5, "prestimulating":5, "prestimulation":5, "prestimulus":4, "prestock":2, "prestore":2, "prestored":2, "prestorage":3, "prestoring":3, "prestraighten":3, "prestrain":2, "prestrengthen":3, "prestress":2, "prestressed concrete":4, "prestretch":2, "prestricken":3, "prestruggle":3, "prestubborn":3, "prestudied":3, "prestudy":3, "prestudying":4, "prestudious":4, "presubdue":3, "presubdued":3, "presubject":3, "presubjection":4, "presubmission":4, "presubmit":3, "presubmitted":4, "presubmitting":4, "presubordinate":5, "presubordinated":6, "presubordinating":6, "presubordination":6, "presubscribe":3, "presubscribed":3, "presubscriber":4, "presubscribing":4, "presubscription":4, "presubsist":3, "presubsistence":4, "presubsistent":4, "presubstantial":4, "presubstitute":4, "presubstituted":5, "presubstituting":5, "presubstitution":5, "presuccess":3, "presuccessful":4, "presuffer":3, "presufficient":4, "presufficiency":5, "presuffrage":3, "presuggest":3, "presuggestion":4, "presuggestive":4, "presuitability":6, "presuitable":4, "presume":2, "presumed":2, "presumption":3, "presumptive":3, "presumptively":4, "presumptuous":4, "presumptuously":5, "presumptuousness":5, "presumable":4, "presumably":4, "presumedly":4, "presumer":3, "presuming":3, "presumingly":4, "presupplemental":5, "presupplementary":6, "presupplied":3, "presupplicate":4, "presupplicated":5, "presupplicating":5, "presupplication":5, "presupply":3, "presupplying":4, "presupport":3, "presuppose":3, "presupposed":3, "presupposing":4, "presuppress":3, "presuppurative":5, "presurgery":4, "presurgical":4, "presurmise":3, "presurmised":3, "presurmising":4, "presurrender":4, "presurround":3, "presurvey":3, "presusceptibility":7, "presusceptible":5, "presuspect":3, "presuspend":3, "presuspension":4, "presuspicion":4, "presuspicious":4, "presustain":3, "presuperintendence":6, "presuperintendency":7, "presupervise":4, "presupervised":4, "presupervising":5, "presupervision":5, "presupervisor":5, "presupremacy":5, "presutural":4, "preswallow":3, "presymptom":3, "presymptomatic":5, "presympathize":4, "presympathized":4, "presympathizing":5, "presympathy":4, "presymphonic":4, "presymphony":4, "presymphysial":5, "presynsacral":4, "presystematic":5, "presystematically":7, "presystole":3, "presystolic":4, "preta":2, "pretabulate":4, "pretabulated":5, "pretabulating":5, "pretabulation":5, "pretangible":4, "pretariff":3, "pretarsus":3, "pretaste":2, "pretasted":3, "pretaster":3, "pretasting":3, "pretaught":2, "preteach":2, "preteaching":3, "pretechnical":4, "pretell":2, "pretelling":3, "pretelegraph":4, "pretelegraphic":5, "pretelephone":4, "pretelephonic":5, "pretempt":2, "pretemptation":4, "pretemperate":4, "pretence":2, "pretenceless":3, "pretend":2, "pretended":3, "pretendedly":4, "pretender":3, "pretense":2, "pretenseful":3, "pretenseless":3, "pretension":3, "pretensive":3, "pretentative":4, "pretentious":3, "preterhuman":4, "preteritive":4, "preterlegal":4, "pretermission":4, "pretermit":3, "pretermitted":4, "pretermitter":4, "pretermitting":4, "preterminal":4, "preternatural":5, "preternaturalism":6, "preternaturality":7, "preternaturally":6, "preterrestrial":5, "preterritorial":6, "pretestified":4, "pretestify":4, "pretestifying":5, "pretestimony":5, "pretext":2, "pretexta":3, "pretextae":3, "pretheological":6, "prethoracic":4, "prethreaten":3, "prethrust":2, "prethyroid":3, "pretibial":4, "pretimeliness":4, "pretimely":3, "pretincture":3, "pretire":2, "pretired":2, "pretiring":3, "pretold":2, "pretonic":3, "pretor":2, "pretorture":3, "pretortured":3, "pretorturing":4, "pretournament":4, "pretoken":3, "pretoria":4, "pretorial":4, "pretorian":4, "pretorian":4, "pretorius":4, "pretrace":2, "pretraced":2, "pretracing":3, "pretrain":2, "pretraining":3, "pretransact":3, "pretransaction":4, "pretranslate":3, "pretranslated":4, "pretranslating":4, "pretranslation":4, "pretransmission":4, "pretransmit":3, "pretransmitted":4, "pretransmitting":4, "pretransport":3, "pretransportation":5, "pretranscribe":3, "pretranscribed":3, "pretranscribing":4, "pretranscription":4, "pretravel":3, "pretraveled":3, "pretravelled":3, "pretraveling":4, "pretravelling":4, "pretracheal":4, "pretraditional":5, "pretribal":3, "pretrochal":3, "pretry":2, "pretrying":3, "pretympanic":4, "pretypified":4, "pretypify":4, "pretypifying":5, "pretyranny":4, "pretyphoid":3, "pretypographical":6, "pretyrannical":5, "preumbonal":4, "preunderstand":4, "preunderstanding":5, "preunderstood":4, "preundertake":4, "preundertaken":5, "preundertaking":5, "preundertook":4, "preunion":3, "preunite":3, "preunited":4, "preuniting":4, "preutilize":4, "preutilized":4, "preutilizable":6, "preutilizing":5, "preutilization":6, "prevaccinate":4, "prevaccinated":5, "prevaccinating":5, "prevaccination":5, "prevail":2, "prevailing":3, "prevailingly":4, "prevailingness":4, "prevalid":3, "prevalue":3, "prevalued":3, "prevaluation":5, "prevaluing":4, "prevariation":5, "prevaricate":4, "prevaricated":5, "prevaricating":5, "prevaricator":5, "prevacate":3, "prevacated":4, "prevacating":4, "prevacation":4, "prevalidity":5, "prevegetation":5, "prevent":2, "preventer":3, "preventingly":4, "prevenient":3, "preveniently":4, "preventative":4, "prevention":3, "preventive":3, "preventiveness":4, "preventoria":5, "preventorium":5, "preventral":3, "preventure":3, "preventured":3, "preventuring":4, "preverbal":3, "preverified":4, "preverification":6, "preverify":4, "preverifying":5, "preversion":3, "prevertebral":4, "prevenient":4, "preveto":3, "prevetoed":3, "prevetoing":4, "previctorious":5, "preview":2, "previgilance":4, "previgilant":4, "previn":2, "previse":2, "prevised":2, "prevising":3, "previsit":3, "previsibility":6, "previsible":4, "previsitor":4, "previous":3, "previous question":5, "previolate":4, "previolated":5, "previolating":5, "previolation":5, "prevision":3, "previsional":4, "previsor":3, "prevogue":2, "prevoid":2, "prevoidance":3, "prevolunteer":4, "prevote":2, "prevoted":3, "prevoting":3, "prevocalic":4, "prevocalically":6, "prevocational":5, "prevolitional":5, "prevue":2, "prewar":2, "prewarm":2, "prewarn":2, "prewarrant":3, "prewash":2, "preweigh":2, "prewelcome":3, "prewelcomed":3, "prewelcoming":4, "prewhip":2, "prewhipped":2, "prewhipping":3, "prewilling":3, "prewire":2, "prewired":2, "prewireless":3, "prewiring":3, "prewitness":3, "preworldliness":4, "preworldly":3, "preworship":3, "preworshipped":3, "preworshiping":4, "preworshipping":4, "preworthily":4, "preworthiness":4, "preworthy":3, "prewound":2, "prewrap":2, "prewrapped":2, "prewrapping":3, "preyouthful":3, "prezygomatic":5, "prempt":3, "premption":4, "premptive":4, "premptor":4, "preminence":5, "preminent":5, "premphasis":5, "prengage":4, "prexilic":5, "prexilian":6, "prexist":4, "prexistence":5, "prexistent":5, "prexposure":5, "prelection":5, "prequalization":7, "pri":1, "pribilof islands":5, "price":1, "price":1, "price commission":4, "price control":3, "price discrimination":6, "price support":3, "price-fixing":2, "priceable":3, "priceless":2, "pricelessness":3, "pricey":2, "prick":1, "pricker":2, "pricket":2, "pricking":2, "prickle":2, "prickleback":3, "pricklier":3, "prickliest":3, "prickly":2, "prickly ash":3, "prickly heat":3, "prickly pear":3, "prickly poppy":4, "pricer":2, "pricing":2, "pricy":2, "pride":1, "pride":1, "pride-of-california":4, "pride-of-india":3, "prideful":2, "pridefully":3, "pridefulness":3, "prideless":2, "pridelessly":3, "priest":1, "priest-ridden":2, "priestcraft":2, "priestess":2, "priestfish":2, "priestfishes":3, "priesthood":2, "priestless":2, "priestley":2, "priestlike":2, "priestlier":3, "priestliest":3, "priestliness":3, "priestly":2, "prig":1, "priggeries":3, "priggery":3, "prigging":2, "priggish":2, "prill":1, "prim":1, "prime":1, "prime meridian":5, "prime minister":4, "prime mover":3, "prime mover":3, "prime number":3, "prime vertical":4, "prime-ministership":4, "primely":2, "primeness":2, "primp":1, "primer":2, "priming":2, "primigravida":5, "primitive":3, "primitively":4, "primitiveness":4, "primitivism":4, "primitivist":4, "primitivistic":5, "primitivity":5, "primly":2, "primmer":2, "primmest":2, "primming":2, "primness":2, "primrose":2, "primrose":2, "primrose path":3, "primrosed":2, "primsie":2, "primula":3, "primulaceous":4, "prin":1, "prince":1, "prince":1, "prince albert":3, "prince consort":3, "prince edward island":5, "prince of darkness":4, "prince regent":3, "prince regent":3, "prince royal":3, "prince rupert":3, "prince's-feather":2, "princedom":2, "princekin":2, "princeless":2, "princelet":2, "princeling":2, "princelier":3, "princeliest":3, "princeliness":3, "princely":2, "princeship":2, "princeton":2, "prink":1, "prinker":2, "print":1, "printability":5, "printable":3, "printableness":4, "printed circuit":4, "printer":2, "printer's devil":4, "printeries":3, "printery":3, "printing":2, "printing press":3, "printless":2, "printmaker":3, "printmaking":3, "prinz":1, "princess":2, "princess royal":4, "princesse":2, "princesslike":3, "principia":4, "principium":4, "principal":3, "principal axis":5, "principal boy":4, "principal focus":5, "principal parts":4, "principalities":5, "principality":5, "principally":4, "principalship":4, "principate":3, "principe":3, "principe":3, "principle":3, "principle":3, "principled":3, "printanier":3, "printanire":4, "printerlike":3, "prise":1, "prism":1, "prisage":2, "priscilla":3, "priscian":3, "prisiadka":3, "prising":2, "prismatic":3, "prismatical":4, "prismatically":5, "prismatoid":3, "prismoid":2, "prison":2, "prisoner":3, "prisoner of war":5, "prisoner's base":4, "prisonlike":3, "prissily":3, "prissiness":3, "prissy":2, "pristine":2, "prithee":2, "prittle-prattle":3, "priv":1, "privative":3, "privatively":4, "privet":2, "privet hawk":3, "privies":2, "privier":3, "priviest":3, "privilege":3, "privileged":3, "privileger":4, "privileging":4, "privily":3, "privity":3, "privy":2, "privy chamber":4, "privy council":4, "privy council":4, "privy purse":3, "privy seal":3, "prize":1, "prize money":3, "prizefight":2, "prizefighter":3, "prizefighting":3, "prizing":2, "priam":2, "priapic":3, "priapean":4, "priapism":3, "priapismic":4, "priapitis":4, "priapus":3, "prier":2, "prima ballerina":6, "prima donna":4, "prima facie":4, "prima-facie evidence":6, "primaeval":3, "primage":2, "primal":2, "primarily":4, "primate":2, "primateship":3, "primacy":3, "primaquine":3, "primarily":4, "primariness":4, "primary":3, "primary accent":5, "primary cell":4, "primary color":5, "primary election":6, "primary processes":6, "primary school":4, "primary stress":4, "primatal":3, "primates":3, "primatial":3, "primatologist":5, "primatology":5, "primavera":4, "primer":2, "primero":3, "primero":3, "primeval":3, "primevally":4, "primine":2, "primipara":4, "primiparae":4, "primigenial":5, "primiparity":5, "primo":2, "primo de rivera":6, "primordia":4, "primordial":4, "primordiality":6, "primordially":5, "primordium":4, "primogenital":5, "primogenitary":6, "primogenitor":5, "primogeniture":5, "primogenitureship":6, "primogenial":5, "primum mobile":5, "primus":2, "primus":2, "primus inter pares":6, "primuses":3, "prion":2, "prior":2, "prior":2, "priorate":3, "prioress":3, "priority":4, "priorship":3, "priory":3, "pripet":2, "pripyat":2, "prisage":2, "prithivi":3, "prius":2, "private":2, "private bill":3, "private company":5, "private enterprise":5, "private eye":3, "private hotel":4, "private income":4, "private member":4, "private parts":3, "private patient":4, "private practice":4, "private press":3, "private school":3, "private secretary":6, "private treaty":4, "privates":2, "privately":3, "privateness":3, "privatdocent":4, "privatdocent":4, "privatdozent":4, "privacy":3, "privateer":3, "privateersman":4, "privation":3, "pro":1, "pro":1, "pro bono publico":6, "pro forma":3, "pro patria":4, "pro rata":3, "pro tempore":4, "pro-abyssinian":5, "pro-alabaman":4, "pro-algerian":4, "pro-alsatian":3, "pro-am":1, "pro-anglican":3, "pro-arab":2, "pro-arabic":3, "pro-argentina":4, "pro-aristotelian":7, "pro-arian":3, "pro-armenian":4, "pro-australian":4, "pro-austrian":3, "pro-alaskan":3, "pro-american":4, "pro-americanism":5, "pro-arabian":4, "pro-asian":2, "pro-asiatic":4, "pro-athenian":4, "pro-baptist":2, "pro-baconian":4, "pro-belgian":2, "pro-biblical":3, "pro-bolshevik":3, "pro-bolshevist":3, "pro-bohemian":4, "pro-bolivian":4, "pro-brazilian":3, "pro-british":2, "pro-buddhist":2, "pro-budgeting":3, "pro-bulgarian":4, "pro-burman":2, "pro-cameroun":2, "pro-cambodia":4, "pro-catholic":3, "pro-canadian":4, "pro-catholicism":4, "pro-ceylon":2, "pro-chilean":3, "pro-chinese":2, "pro-confederate":4, "pro-congolese":3, "pro-congressional":4, "pro-colombian":4, "pro-cuban":2, "pro-cyprus":2, "pro-czechoslovakian":6, "pro-danish":2, "pro-darwin":2, "pro-darwinism":3, "pro-darwinian":4, "pro-denmark":2, "pro-dominican":4, "pro-eastern":2, "pro-ecuador":3, "pro-emersonian":5, "pro-english":2, "pro-eskimo":3, "pro-european":4, "pro-egyptian":3, "pro-elizabethan":5, "pro-ethiopian":5, "pro-finnish":2, "pro-florentine":3, "pro-freudian":3, "pro-gaelic":2, "pro-gentile":2, "pro-german":2, "pro-ghana":2, "pro-gothic":2, "pro-government":3, "pro-grecian":2, "pro-guatemalan":4, "pro-haitian":2, "pro-hawaiian":3, "pro-hellenic":3, "pro-hindu":2, "pro-hitler":2, "pro-honduran":3, "pro-hungarian":4, "pro-icelandic":3, "pro-indian":3, "pro-indonesian":4, "pro-israeli":3, "pro-israel":3, "pro-iranian":4, "pro-iraqi":3, "pro-irish":2, "pro-italian":3, "pro-jacobean":4, "pro-japanese":3, "pro-jeffersonian":5, "pro-jewish":2, "pro-jordan":2, "pro-korean":3, "pro-koweit":2, "pro-kuwait":2, "pro-latin":2, "pro-laotian":3, "pro-lebanese":3, "pro-liberian":4, "pro-lybian":3, "pro-madagascan":4, "pro-malayan":3, "pro-malaysian":3, "pro-methodist":3, "pro-mexican":3, "pro-monaco":3, "pro-moslem":2, "pro-moroccan":3, "pro-muslem":2, "pro-muslim":2, "pro-negro":2, "pro-nigerian":4, "pro-northern":2, "pro-nordic":2, "pro-norwegian":3, "pro-oestrus":2, "pro-opera":3, "pro-orthodox":3, "pro-orthodoxy":4, "pro-oriental":4, "pro-panama":3, "pro-panamanian":5, "pro-paraguay":3, "pro-paraguayan":4, "pro-peruvian":4, "pro-philippine":3, "pro-polish":2, "pro-portuguese":3, "pro-presbyterian":5, "pro-protestant":3, "pro-prussian":2, "pro-quaker":2, "pro-rata":2, "pro-renaissance":3, "pro-russian":2, "pro-rumanian":4, "pro-scandinavian":5, "pro-scripture":2, "pro-scriptural":3, "pro-southern":2, "pro-somalia":4, "pro-soviet":3, "pro-spanish":2, "pro-sudanese":3, "pro-swedish":2, "pro-sweden":2, "pro-switzerland":3, "pro-syrian":3, "pro-turkey":2, "pro-turkish":2, "pro-tunisian":3, "pro-unitarian":5, "pro-uruguayan":4, "pro-venezuelan":4, "pro-vietnamese":4, "pro-western":2, "pro-westerner":3, "pro-yugoslav":3, "pro-yugoslavian":5, "pro-zionism":3, "pro-zionist":3, "prob":1, "probe":1, "probeable":3, "probabilism":4, "probability":5, "probabilism":4, "probable":3, "probable cause":4, "probably":3, "prober":2, "probing":2, "problem":2, "problematic":4, "problematical":5, "proc":1, "process":2, "proceleusmatic":5, "proclamation":4, "procne":2, "proctoclysis":4, "proctologist":4, "proctology":4, "proctor":2, "proctor":2, "proctorship":3, "proctoscopy":4, "proctodaea":4, "proctodaeum":4, "proctodea":4, "proctodeal":4, "proctodeum":4, "proctologic":4, "proctoscope":3, "proctoscopic":4, "procuracy":4, "procuration":4, "procurator":4, "procurator fiscal":6, "procuratorate":5, "procuratorship":5, "procuratory":5, "procuratorial":6, "prod":1, "prodd":1, "prodded":2, "prodder":2, "prodding":2, "prodigal":3, "prodigy":3, "prodromal":3, "product":2, "prof":1, "prof":1, "professoriate":5, "proffer":2, "profferer":3, "profit":2, "profit and loss":4, "profit-and-loss":2, "profit-sharing":3, "profitability":6, "profitable":4, "profitableness":5, "profitably":4, "profiteer":3, "profitsharing":4, "profiteer":3, "profligate":3, "profligately":4, "profligateness":4, "profluent":3, "prog":1, "prog":1, "progeny":3, "progging":2, "prognathic":3, "prognathous":3, "prognose":2, "prognosed":2, "prognosing":3, "prognostic":3, "prognostically":5, "prognosticate":4, "prognosticated":5, "prognosticating":5, "prognosticable":5, "prognostication":5, "prognosis":3, "progress":2, "progressism":3, "progressist":3, "project":2, "prole":1, "prom":1, "prom":1, "prome":1, "prompt":1, "promptbook":2, "prompter":2, "promptly":2, "promptness":2, "promptitude":3, "promachus":3, "promenade":3, "promenade concert":5, "promenade deck":4, "promenader":4, "promise":2, "promised":2, "promised land":3, "promiseful":3, "promisable":4, "promiscuity":5, "promisee":3, "promiser":3, "promising":3, "promissorily":5, "promissory":4, "promissory note":5, "prominence":3, "prominent":3, "prominency":4, "promisee":3, "promisor":3, "promontory":4, "promulgate":3, "promulgation":4, "promulgator":4, "pron":1, "prone":1, "pronely":2, "proneness":2, "prong":1, "pronghorn":2, "pronto":2, "proof":1, "proof spirit":3, "proofing":2, "proofread":2, "proofreader":3, "prop":1, "prophet":2, "prophet":2, "prophet-flower":3, "prophets":2, "prophecy":3, "prophesiable":5, "prophesier":4, "prophesy":3, "prophylactic":4, "prophylaxis":4, "propr":1, "propaganda":4, "propaganda":4, "propagandise":4, "propagandised":4, "propagandism":4, "propagandist":4, "propagandising":5, "propagandistic":5, "propagandistically":7, "propagandize":4, "propagandized":4, "propagandizing":5, "propagate":3, "propagability":6, "propagable":4, "propagableness":5, "propagation":4, "propagational":5, "propagative":4, "propagator":4, "propagatory":5, "propagule":3, "proper":2, "proper fraction":4, "proper motion":4, "proper noun":3, "properly":3, "properness":3, "propertied":3, "property":3, "property man":4, "propjet":2, "propless":2, "propman":2, "propolis":3, "proposition":4, "propositional":5, "propositional calculus":8, "propositionally":6, "proptosed":2, "proptosis":3, "propylaea":4, "propylaeum":4, "propylite":3, "propylon":3, "prorsa":2, "pros":1, "prose":1, "prose poem":3, "proselike":2, "pross":1, "prosser":2, "prossy":2, "prosclystius":4, "prosencephalon":5, "prosenchymatous":5, "prosenchyma":4, "proser":2, "prosecute":3, "prosecutable":5, "prosecuted":4, "prosecuting":4, "prosecuting attorney":7, "proseculyted":5, "proseculyting":5, "prosecution":4, "prosecutor":4, "proselyte":3, "proselytadj":4, "proselyter":4, "proselytise":4, "proselytised":4, "proselytism":4, "proselytiser":5, "proselytising":5, "proselytistic":5, "proselytize":4, "proselytized":4, "proselytizing":5, "proselytical":5, "proselytization":6, "prosing":2, "prosodemic":4, "prosodist":3, "prosody":3, "prosopopeia":5, "prosopopoeia":5, "prosopyle":3, "prospect":2, "prospectless":3, "prospector":3, "prosper":2, "prosper":2, "prosperity":4, "prospero":3, "prosperous":3, "prosperousness":4, "prosphora":3, "prosphoron":3, "prosser":2, "prostate":2, "prostaglandin":4, "prostatectomy":5, "prostatitis":4, "prosthetic group":4, "prosthetics":3, "prosthesis":3, "prosthetist":3, "prosthion":3, "prosthionic":4, "prosthodontia":4, "prosthodontics":4, "prosthodontist":4, "prostitute":3, "prostitution":4, "prostitutor":4, "prostrate":2, "prostration":3, "prostrative":3, "prostrator":3, "prosy":2, "prot":1, "prothesis":3, "protandric":3, "protandrously":4, "protandry":3, "protanopia":5, "protanomalous":5, "protanomaly":5, "protanope":3, "protanopic":4, "protasis":3, "proterandric":4, "proterandrous":4, "proterandrously":5, "proterandrousness":5, "proterandry":4, "proterotype":4, "protestant":3, "protestantism":4, "proterogynous":5, "proterogyny":5, "proud":1, "proudly":2, "proudness":2, "proust":1, "proustite":2, "proustian":3, "prout":1, "proudhon":2, "prov":1, "prov":1, "prove":1, "provability":5, "provable":3, "provableness":4, "provably":3, "proven":2, "provender":3, "provenly":3, "prover":2, "proverb":2, "proverbs":2, "proverblike":3, "provenance":3, "province":2, "provincetown":3, "proving ground":3, "providence":3, "providence":3, "provident":3, "provident club":4, "provident society":7, "providently":4, "providentness":4, "providential":4, "providentially":5, "provost":2, "provostship":3, "provocation":4, "provocational":5, "prow":1, "prowl":1, "prowler":2, "prowess":2, "prowessed":2, "prowfish":2, "prowfishes":3, "prox":1, "proxies":2, "proximity":4, "proximity fuse":5, "proxima":3, "proximal":3, "proximally":4, "proximate":3, "proximately":4, "proximateness":4, "proximation":4, "proximo":3, "proxy":2, "proa":2, "proabolitionist":6, "proabsolutism":5, "proabsolutist":5, "proabstinence":4, "proacting":3, "proacademic":5, "proaccelerin":5, "proacceptance":4, "proacquittal":4, "proacquisition":5, "proaction":3, "proactive inhibition":7, "proadjournment":4, "proadministration":6, "proadmission":4, "proadvertising":5, "proadvertizing":5, "proafrican":4, "proagitation":5, "proagon":3, "proairplane":3, "proalien":3, "proalliance":4, "proallotment":4, "proalteration":5, "proamateur":4, "proanarchic":4, "proanarchism":4, "proanarchy":4, "proannexation":5, "proapostolic":5, "proappointment":4, "proapportionment":5, "proapproval":4, "proappropriation":6, "proart":2, "proarbitration":5, "proarbitrationist":6, "proaristocracy":6, "proarmy":3, "proassessment":4, "proassociation":6, "proattack":3, "proattendance":4, "proauction":3, "proaudience":4, "proauthor":3, "proautomation":5, "proabolition":5, "proadoption":4, "proagones":4, "proagrarian":5, "proagreement":4, "proamendment":4, "proaristocratic":6, "proatheism":4, "proatheist":4, "proband":2, "probang":2, "probankruptcy":4, "probanishment":4, "probargaining":4, "probaseball":3, "probasketball":4, "probate":2, "probated":3, "probating":3, "probation":3, "probation officer":6, "probationer":4, "probationership":5, "probative":3, "probatively":4, "probatory":4, "probirth-control":3, "probity":3, "problockade":3, "probolshevism":4, "proboscidea":5, "proboscidean":5, "proboscidian":5, "proboscidiform":5, "proboscis":3, "proboscis monkey":5, "proboscises":4, "proboscidate":4, "proboscides":4, "proboxing":3, "proboycott":3, "probusiness":3, "procaine":2, "procambial":4, "procambium":4, "procapitalism":5, "procapitalist":5, "procarp":2, "procathedral":4, "proceed":2, "proceeds":2, "proceeder":3, "proceeding":3, "procellas":3, "procellarum":4, "procellous":3, "procensorship":4, "procensure":3, "procentralization":6, "proces-verbal":3, "process":2, "process printing":4, "process-server":3, "procession":3, "processional":4, "processor":3, "procedure":3, "procephalic":4, "procharity":4, "prochlorite":3, "prochooi":3, "prochoos":3, "prochronism":3, "prochurch":2, "procity":3, "procivic":3, "procivilian":4, "proclaim":2, "proclaimer":3, "proclassical":4, "proclergy":3, "proclerical":4, "proclitic":3, "proclivity":4, "proclus":2, "procollectivism":5, "procollectivist":5, "procollectivistic":6, "procollegiate":4, "procomedy":4, "procommercial":4, "procommunism":4, "procommunist":4, "procommunity":4, "procommutation":5, "procompensation":5, "procompetition":5, "procompromise":4, "proconcession":4, "proconciliation":6, "proconfiscation":5, "proconscription":4, "proconservation":5, "proconservationist":6, "proconsolidation":6, "proconstitutional":6, "proconstitutionalism":7, "proconsul":3, "proconsulship":4, "proconsultation":5, "proconsularly":5, "proconsulate":4, "procontinuation":6, "proconvention":4, "proconviction":4, "procoercion":4, "procolonial":5, "procopius":4, "procrastinate":4, "procrastinated":5, "procrastinating":5, "procrastinatingly":6, "procrastination":5, "procrastinative":5, "procrastinatively":6, "procrastinativeness":6, "procrastinator":5, "procrastinatory":6, "procreant":3, "procreate":3, "procreation":4, "procreative":4, "procreativeness":5, "procreator":4, "procris":2, "procrustes":3, "procrustean":4, "procryptic":3, "procumbent":3, "procure":2, "procured":2, "procurement":3, "procurance":3, "procurable":4, "procurer":3, "procuring":3, "procyon":3, "procbal":3, "prodemocrat":4, "prodemocratic":5, "prodemocracy":5, "prodeportation":5, "prodisarmament":5, "prodissolution":5, "prodistribution":5, "prodigious":3, "prodigiously":4, "prodigiousness":4, "prodivision":4, "prodivorce":3, "prodomos":3, "prodrome":2, "prodromia":4, "produce":2, "produced":2, "producer":3, "producer gas":4, "producer goods":4, "producer's goods":4, "producing":3, "productile":3, "production":3, "production line":4, "productional":4, "productive":3, "productively":4, "productivity":5, "proeducation":5, "proem":2, "proempire":3, "proempiricism":5, "proempiricist":5, "proemployee":4, "proemployer":4, "proemployment":4, "proenforcement":4, "proenlargement":4, "proenzyme":3, "proestrus":3, "proevolution":5, "proevolutionary":7, "proevolutionist":6, "proexecutive":5, "proexpert":3, "proexperiment":5, "proexperimentation":7, "proextension":4, "proelectrification":7, "proelimination":6, "proemial":4, "proequality":5, "proetus":3, "profaculty":4, "profane":2, "profaned":2, "profanely":3, "profaneness":3, "profanatory":5, "profaner":3, "profaning":3, "profanity":4, "profarmer":3, "profascism":3, "profascist":3, "profederation":5, "profeminism":4, "profeminist":4, "profert":2, "proferment":3, "profess":2, "professed":2, "profession":3, "professional":4, "professionalise":5, "professionalised":5, "professionalism":5, "professionalising":6, "professionalize":5, "professionalized":5, "professionalizing":6, "professionalization":7, "professionally":5, "professionless":4, "professor":3, "professorate":4, "professorship":4, "professorate":4, "professorially":6, "professoriate":5, "profiction":3, "profile":2, "profile drag":3, "profiled":2, "profiler":3, "profiling":3, "profiterole":4, "proficient":3, "proficiently":4, "proficientness":4, "proficiency":4, "profilometer":5, "proforeign":3, "profound":2, "profoundly":3, "profoundness":3, "profunda":3, "profundity":4, "profuse":2, "profusely":3, "profuseness":3, "profusion":3, "profusive":3, "profusively":4, "profusiveness":4, "progambling":3, "progenitive":4, "progenitiveness":5, "progenitor":4, "progenitorial":6, "progestational":5, "progesterone":4, "progestin":3, "progestogen":4, "proglottic":3, "proglottid":3, "proglottidean":5, "proglottis":3, "proglottides":4, "program":2, "programed":2, "programme":2, "programme music":4, "programmed":2, "programmed learning":4, "programable":3, "programing":3, "programmatic":4, "programmable":4, "programmer":3, "programming":3, "programming language":5, "progravid":3, "progress":2, "progression":3, "progressional":4, "progressionally":5, "progressionism":4, "progressionist":4, "progressist":3, "progressive":3, "progressive":3, "progressive party":5, "progressively":4, "progressiveness":4, "progressivist":4, "progreso":3, "prohibit":3, "prohibiter":4, "prohibitive":4, "prohibitively":5, "prohibitiveness":5, "prohibitor":4, "prohibitorily":6, "prohibitory":5, "prohibition":4, "prohibition":4, "prohibitionary":6, "prohibitionist":5, "proimmigration":5, "proincrease":3, "proindustrial":5, "proindustrialisation":8, "proindustrialization":8, "proindustry":4, "proinsurance":4, "prointervention":5, "prointegration":5, "proinvestment":4, "proirrigation":5, "projectable":4, "projectingly":4, "projectile":3, "projection":3, "projectional":4, "projectionist":4, "projective":3, "projective geometry":7, "projective test":4, "projectively":4, "projectivity":5, "projector":3, "projet":2, "prokopyevsk":3, "prokofiev":3, "prokofiev":4, "prokopyevsk":3, "prolactin":3, "prolamin":3, "prolamine":3, "prolan":2, "prolapse":2, "prolate":2, "prolately":3, "prolateness":3, "prolabor":3, "prolamine":3, "prolation":3, "proleg":2, "prolepsis":3, "proleptic":3, "proleptically":5, "prolegomenon":5, "proletarating":5, "proletaries":4, "proletarise":4, "proletarised":4, "proletarising":5, "proletarize":4, "proletarized":4, "proletarizing":5, "proletarian":5, "proletarianise":6, "proletarianised":6, "proletarianising":7, "proletarianization":8, "proletarianly":6, "proletarianness":6, "proletariat":5, "proletarization":6, "proletary":4, "proliferate":4, "proliferation":5, "proliferative":5, "proliferous":4, "prolific":3, "prolificacy":5, "proline":2, "prolix":2, "prolixity":4, "prolixly":3, "prolocutor":4, "prolocutorship":5, "prolog":2, "prologue":2, "prologuelike":3, "prologuise":3, "prologuised":3, "prologuist":3, "prologuising":4, "prologuize":3, "prologuized":3, "prologuizer":4, "prologuizing":4, "prologise":3, "prologised":3, "prologist":3, "prologising":4, "prologize":3, "prologized":3, "prologizing":4, "prologlike":3, "prolong":2, "prolonge":2, "prolongably":4, "prolonger":3, "prolongment":3, "prolongate":3, "prolongated":4, "prolongating":4, "prolongation":4, "prolonges":3, "prologi":3, "prologos":3, "prologus":3, "prolusion":3, "prolusory":4, "promarriage":3, "promachorma":4, "promazine":3, "promerger":3, "promethazine":4, "prometacenter":5, "promethean":4, "prometheus":4, "promethium":4, "promilitary":5, "promilitarism":5, "promilitarist":5, "promin":2, "promiscuous":4, "promiscuously":5, "promiscuousness":5, "prominority":5, "promodern":3, "promodernist":4, "promodernistic":5, "promoderation":5, "promoderationist":6, "promonarchist":4, "promonarchy":4, "promote":2, "promoted":3, "promoter":3, "promoting":3, "promonopolistic":6, "promonopoly":5, "promotion":3, "promotional":4, "promotive":3, "promotiveness":4, "promulge":2, "promulged":2, "promulger":3, "promulging":3, "promycelia":5, "promycelial":5, "promycelium":5, "pronate":2, "pronaoi":3, "pronaos":3, "pronation":3, "pronational":4, "pronationalism":5, "pronationalist":5, "pronationalistic":6, "pronative":3, "pronator":3, "pronaus":3, "pronaval":3, "pronavy":3, "pronephric":3, "pronephros":3, "pronegotiation":6, "pronoea":3, "pronominal":4, "pronominalise":5, "pronominalize":5, "pronominally":5, "pronoun":2, "pronounce":2, "pronounced":2, "pronounceable":4, "pronounceableness":5, "pronouncement":3, "pronouncedly":4, "pronouncedness":4, "pronouncer":3, "pronouncing":3, "pronotum":3, "pronunciamento":6, "pronunciation":5, "pronunciational":6, "pronunciatory":6, "pronuba":3, "pronuclei":4, "pronucleus":4, "propacifism":4, "propacifist":4, "propaedeutic":4, "propaedeutical":5, "propagulum":4, "propane":2, "propanedioic":5, "proparoxytone":5, "proparoxytonic":6, "propayment":3, "propanoic acid":6, "propapist":3, "proparoxytone":5, "propatriotic":5, "propatriotism":5, "propatronage":4, "propel":2, "propelled":2, "propellant":3, "propellent":3, "propeller":3, "propeller shaft":4, "propelling":3, "propelling pencil":5, "propend":2, "propene":2, "propensity":4, "propertius":4, "propenol":3, "propenyl":3, "propenylic":4, "prophage":2, "prophase":2, "prophetic":3, "prophetical":4, "propheticality":6, "prophetically":5, "propheticalness":5, "prophylactic":4, "prophylaxis":4, "propine":2, "propined":2, "propining":3, "propinquity":4, "propionaldehyde":6, "propionic":4, "propionic acid":6, "propionibacteria":8, "propionibacterium":8, "propionate":4, "propitious":3, "propitiously":4, "propitiousness":4, "propitiate":4, "propitiated":5, "propitiating":5, "propitiatingly":6, "propitiable":5, "propitiative":5, "propitiatorily":7, "propitiatory":6, "propolitics":4, "propone":2, "proponed":2, "proponing":3, "propontis":3, "proportion":3, "proportioned":3, "proportional":4, "proportional representation":9, "proportionality":6, "proportionate":4, "proportionately":5, "proportionateness":5, "proportionated":5, "proportionating":5, "proportionability":7, "proportionable":5, "proportionableness":6, "proportionably":5, "proportioner":4, "proportioning":4, "proportionless":4, "proportionment":4, "propose":2, "proposed":2, "proposal":3, "proposable":4, "proposer":3, "proposing":3, "propositus":4, "propound":2, "propoxyphene":4, "propoetides":5, "proponent":3, "proposal":3, "propraetor":3, "propraetorial":5, "propranolol":4, "propretor":3, "propretorial":5, "proprivilege":4, "proprietaries":5, "proprietary":5, "proprietary colony":8, "proprietor":4, "proprietorship":5, "proprietorial":6, "proprietorially":7, "proprietress":4, "proprietrix":4, "propriety":4, "proprioceptor":5, "proprofit":3, "propublicity":5, "propublication":5, "propulsion":3, "propunishment":4, "propyl":2, "propylene":3, "propylene glycol":5, "propylhexedrine":5, "propylic":3, "proracing":3, "prorailroad":3, "prorate":2, "prorated":3, "prorating":3, "prorebel":3, "proreconciliation":7, "prorefugee":4, "proresignation":5, "prorestoration":5, "prorevolution":5, "prorevolutionary":7, "prorevolutionist":6, "prorealism":4, "prorealist":4, "prorealistic":5, "proreality":5, "proreduction":4, "proreform":3, "prorepublican":5, "proresearch":3, "prorestriction":4, "prorevision":4, "proritual":4, "prorogue":2, "prorogued":2, "proroguing":3, "prorogation":4, "proromantic":4, "proromanticism":5, "prosaic":3, "prosaicness":4, "prosaism":3, "prosaical":4, "prosaically":5, "prosaicism":4, "proscenium":4, "proscholastic":4, "proscholasticism":5, "prosciutto":3, "proscience":3, "proscientific":5, "proscribe":2, "proscribed":2, "proscribable":4, "proscriber":3, "proscribing":3, "proscription":3, "proscriptively":4, "prosect":2, "prosector":3, "proserpina":4, "proserpine":4, "prosecrecy":4, "prosimian":4, "prosit":2, "proslave":2, "proslaver":3, "proslaveryism":5, "prosodic":3, "prosopopoeia":5, "prospective":3, "prospectiveness":4, "prospector":3, "prospectus":3, "prospectuses":4, "prostas":2, "prostatic":3, "prostades":3, "prostasis":3, "prosternal":3, "prosternum":3, "prostigmin":3, "prostoa":3, "prostomia":4, "prostomial":4, "prostomiate":4, "prostomium":4, "prostoon":3, "prostyle":2, "prosubscription":4, "prosubstitution":5, "prosuffrage":3, "prosupport":3, "prosurgical":4, "prosurrender":4, "prosupervision":5, "prosyndicalism":5, "prosyndicalist":5, "protactinium":5, "protagonism":4, "protagonist":4, "protagoras":4, "protagorean":5, "protandrous":3, "protariff":3, "protax":2, "protaxation":4, "protamine":3, "protanopia":5, "protect":2, "protecting":3, "protectinglyrmal":4, "protection":3, "protectional":4, "protectionism":4, "protectionist":4, "protective":3, "protective coloration":7, "protective tariff":5, "protectively":4, "protector":3, "protector":3, "protectoral":4, "protectorate":4, "protectorless":4, "protectorship":4, "protectory":4, "protectress":3, "proteid":2, "protein":2, "proteinase":3, "proteinaceous":4, "proteinuria":5, "protest":2, "protestable":4, "protester":3, "protestingly":4, "protestive":3, "protesilaus":5, "protestation":4, "proteus":2, "protea":3, "protean":3, "protease":3, "protege":3, "protegee":3, "proteiform":4, "proteolysis":5, "proteose":3, "proteolytic":5, "proterozoic":5, "proteus":3, "prothalli":3, "prothallium":4, "prothalloid":3, "prothallus":3, "prothalamia":5, "prothalamion":5, "prothalamium":5, "prothetic":3, "prothetically":5, "prothonotaries":5, "prothonotary":5, "prothonotary":5, "prothoracic":4, "prothorax":3, "prothoraxes":4, "prothoraces":4, "prothonor":5, "prothrombin":3, "protist":2, "protista":3, "protistan":3, "protistic":3, "protistology":5, "protium":3, "proto-doric":3, "proto-elamite":4, "proto-germanic":4, "proto-geometric":5, "proto-geometric":5, "proto-geometric":5, "proto-indo-european":6, "proto-ionic":4, "proto-norse":2, "protogynous":4, "protogyny":4, "proton":2, "proton number":4, "protonic":3, "protonotary":5, "protopathy":4, "protopoditic":5, "protoxid":3, "protoxide":3, "protoactinium":6, "protochordate":4, "protocol":3, "protodeacon":4, "protogenea":5, "protogenia":5, "protogeometric":6, "protogine":3, "protohistory":5, "protohuman":4, "protolanguage":4, "protolithic":4, "protolog":3, "protomartyr":4, "protomorph":3, "protomorphic":4, "protonematal":5, "protonematoid":5, "protonema":4, "protonemal":4, "protonemata":5, "protonotary":5, "protopathic":4, "protopectin":4, "protophloem":4, "protoplasm":3, "protoplast":3, "protoplasmal":4, "protoplasmatic":5, "protoplasmic":4, "protopope":3, "protopresbyter":5, "protosemitic":5, "protostar":3, "protostele":3, "protostele":4, "protostelic":4, "prototherian":5, "prototrophic":4, "prototype":3, "prototypical":5, "prototypically":6, "prototypal":4, "protoxylem":4, "protozoa":4, "protozoa":4, "protozoal":4, "protozoan":4, "protozoologist":6, "protozoology":6, "protozoon":4, "protozoonal":5, "protozoological":7, "protozologist":7, "protozology":7, "protozological":8, "protract":2, "protractedly":4, "protractedness":4, "protractible":4, "protractile":3, "protractility":5, "protraction":3, "protractive":3, "protractor":3, "protrade":2, "protragedy":4, "protradition":4, "protraditional":5, "protrude":2, "protruded":3, "protrudent":3, "protruding":3, "protrusile":3, "protrusion":3, "protrusive":3, "protrusible":4, "protuberant":4, "protuberantly":5, "protuberancy":5, "protuberantial":5, "protuberate":4, "protuberated":5, "protuberating":5, "proturan":3, "protyl":2, "protyle":2, "protge":5, "prounion":3, "prounionism":4, "prounionist":4, "prouniformity":6, "prouniversity":6, "provaccine":3, "provaccination":5, "provence":2, "provencal":3, "provencale":3, "proventricular":5, "proventriculus":5, "provenal":4, "provenale":4, "proverbial":4, "proverbially":5, "provenience":4, "provide":2, "providable":4, "provided":3, "provider":3, "providing":3, "provincial":3, "provincialism":4, "provincially":4, "provinciality":6, "provitamin":4, "provision":3, "provisional":4, "provisional":4, "provisionality":6, "provisionally":5, "provisionalness":5, "provisionary":5, "provisioner":4, "provisionless":4, "proviso":3, "provisorily":5, "provisory":4, "provitamin":4, "provo":2, "provocative":4, "provocatively":5, "provocativeness":5, "provoke":2, "provoked":2, "provoking":3, "provokingness":4, "provost court":3, "provost guard":3, "provost marshal":4, "provolone":4, "prowar":2, "prozess":2, "prs":1, "pru":1, "prude":1, "pruderies":3, "prudery":3, "prudish":2, "prudishly":3, "prudishness":3, "prue":1, "prune":1, "prunt":1, "prunted":2, "prunability":5, "prunable":3, "prunableness":4, "pruner":2, "pruning":2, "pruning hook":3, "prus":1, "prussia":2, "prussian":2, "prussian blue":3, "prussianise":3, "prussianise":3, "prussianised":3, "prussianism":3, "prussianiser":4, "prussianising":4, "prussianize":3, "prussianize":3, "prussianized":3, "prussianizer":4, "prussianizing":4, "prussianization":5, "prussic acid":4, "prussiate":3, "prut":1, "prud'hon":2, "prudence":2, "prudence":2, "prudent":2, "prudently":3, "prudential":3, "prudentius":3, "pruett":2, "pruitt":2, "pruinose":3, "prunelle":2, "prunella":3, "prunella":3, "prunello":3, "pruriginous":4, "pruritic":3, "prurience":3, "prurient":3, "pruriently":4, "pruriency":4, "prurigo":3, "pruritus":3, "pruta":2, "prutah":2, "pry":1, "prynne":1, "prythee":2, "prytaneum":4, "prytanis":3, "pryer":2, "prying":2, "pryingly":3, "pryingness":3, "prylis":2, "przemy":2, "przewalski's horse":4, "prcieuse":3, "prcieuses":4, "prcieux":3, "prcis":3, "prvenance":4, "prvost":3, "prncipe":4, "prcis":2, "prvert":2, "prvost d'exiles":4, "psa":1, "psalm":1, "psalms":1, "psalmbook":2, "psalmic":2, "psalmist":2, "psalmody":3, "psalmodist":3, "psalmody":3, "psalter":2, "psalteries":3, "psalterium":4, "psaltery":3, "psalteria":4, "psalterial":4, "psalterium":4, "psamathe":3, "psammead":3, "psammite":2, "psammophyte":3, "psammophytic":4, "psammosere":3, "pschent":1, "psellism":2, "pseud":1, "pseudamphora":4, "pseudamphorae":4, "pseudaxis":3, "pseudepigrapha":5, "pseudepigrapha":5, "pseudovary":4, "pseudisodomic":5, "pseudo":2, "pseudo-african":4, "pseudo-argentinean":6, "pseudo-argentinian":6, "pseudo-aristotelian":7, "pseudo-aryan":4, "pseudo-assyrian":5, "pseudo-australian":4, "pseudo-austrian":4, "pseudo-american":5, "pseudo-babylonian":6, "pseudo-baptist":3, "pseudo-belgian":3, "pseudo-bohemian":5, "pseudo-bolivian":5, "pseudo-brahman":3, "pseudo-brazilian":4, "pseudo-buddhist":3, "pseudo-bulgarian":5, "pseudo-carthaginian":6, "pseudo-catholic":4, "pseudo-canadian":5, "pseudo-chilean":4, "pseudo-chinese":3, "pseudo-christian":3, "pseudo-ciceronian":6, "pseudo-code":2, "pseudo-dantesque":3, "pseudo-democratic":5, "pseudo-dutch":2, "pseudo-english":3, "pseudo-european":5, "pseudo-egyptian":4, "pseudo-elizabethan":6, "pseudo-episcopalian":6, "pseudo-french":2, "pseudo-georgian":3, "pseudo-german":3, "pseudo-germanic":4, "pseudo-gothic":3, "pseudo-greek":2, "pseudo-grecian":3, "pseudo-hindu":3, "pseudo-homeric":4, "pseudo-hungarian":5, "pseudo-incan":3, "pseudo-indian":4, "pseudo-intransitive":5, "pseudo-isidorian":6, "pseudo-iranian":5, "pseudo-irish":3, "pseudo-italian":4, "pseudo-japanese":4, "pseudo-mayan":3, "pseudo-messianic":5, "pseudo-methodist":4, "pseudo-mexican":4, "pseudo-miltonic":4, "pseudo-mongolian":5, "pseudo-moslem":3, "pseudo-mohammedan":5, "pseudo-muslem":3, "pseudo-muslim":3, "pseudo-norwegian":4, "pseudo-panamanian":6, "pseudo-persian":3, "pseudo-polish":3, "pseudo-presbyterian":6, "pseudo-republican":5, "pseudo-roman":3, "pseudo-russian":3, "pseudo-serbian":4, "pseudo-semitic":4, "pseudo-shakespearean":5, "pseudo-shakespearian":5, "pseudo-socratic":4, "pseudo-spanish":3, "pseudo-swedish":3, "pseudo-turkish":3, "pseudo-vergilian":5, "pseudo-victorian":5, "pseudo-virgilian":5, "pseudomonas":4, "pseudonymous":4, "pseudonymously":5, "pseudonymousness":5, "pseudopodal":4, "pseudoscopy":4, "pseudoacademic":6, "pseudoacademically":8, "pseudoaccidental":6, "pseudoacquaintance":5, "pseudoacromegaly":7, "pseudoaesthetic":5, "pseudoaesthetically":7, "pseudoaffectionate":6, "pseudoaggressive":5, "pseudoallegoristic":7, "pseudoalveolar":6, "pseudoamateurish":6, "pseudoamateurism":6, "pseudoamatorial":7, "pseudoamatory":6, "pseudoambidextrous":6, "pseudoanarchistic":6, "pseudoanaphylactic":7, "pseudoanatomic":6, "pseudoanatomical":7, "pseudoancestral":5, "pseudoangelic":5, "pseudoangelical":6, "pseudoangular":5, "pseudoanthropoid":5, "pseudoanthropological":8, "pseudoantique":4, "pseudoapoplectic":6, "pseudoapoplectical":7, "pseudoappendicitis":7, "pseudoapplicative":6, "pseudoapprehensive":6, "pseudoarchaic":5, "pseudoarchaically":7, "pseudoarticulate":6, "pseudoartistic":5, "pseudoartistically":7, "pseudoascetic":5, "pseudoascetical":6, "pseudoassertive":5, "pseudoassociational":8, "pseudoameboid":5, "pseudoanachronistic":7, "pseudoanachronistical":8, "pseudoanemic":5, "pseudoanemia":6, "pseudoapologetic":7, "pseudoapologetically":9, "pseudoaquatic":5, "pseudoaristocratic":7, "pseudoaristocratical":8, "pseudoasymmetric":6, "pseudoasymmetrical":7, "pseudobankrupt":4, "pseudobaptismal":5, "pseudobenefactory":7, "pseudobenevolent":6, "pseudobiographic":6, "pseudobiographical":7, "pseudobiological":7, "pseudobrachia":5, "pseudobrachial":5, "pseudobrachium":5, "pseudobrotherly":5, "pseudocandid":4, "pseudocaptive":4, "pseudocarp":3, "pseudocarpous":4, "pseudocartilaginous":7, "pseudocatholically":7, "pseudocele":3, "pseudocentric":4, "pseudocercaria":6, "pseudocercariae":6, "pseudocerci":4, "pseudocercus":4, "pseudocharitable":6, "pseudochemical":5, "pseudochylous":4, "pseudoclassicism":5, "pseudoclerical":5, "pseudocoel":3, "pseudocoele":3, "pseudocoelom":4, "pseudocoelomate":5, "pseudocollegiate":5, "pseudocolumellar":6, "pseudocommissural":6, "pseudocompetitive":6, "pseudoconcha":4, "pseudoconfessional":6, "pseudoconglomerate":6, "pseudoconservative":6, "pseudocorneous":5, "pseudocosta":4, "pseudocotyledonal":7, "pseudocotyledonary":8, "pseudocourteous":5, "pseudocritical":5, "pseudocrystalline":5, "pseudocultivated":6, "pseudocultural":5, "pseudocubic":4, "pseudocubical":5, "pseudocyclosis":5, "pseudocyesis":5, "pseudocyphella":5, "pseudodemocratic":6, "pseudodemocratically":8, "pseudoderm":3, "pseudodementia":5, "pseudodiphtheric":5, "pseudodiphtheritic":6, "pseudodiphtherial":6, "pseudodiastolic":6, "pseudodivine":4, "pseudodramatic":5, "pseudodramatically":7, "pseudoeditorial":7, "pseudoeducational":7, "pseudoembryonic":6, "pseudoencephalitic":7, "pseudoenthusiastic":7, "pseudoenthusiastically":9, "pseudoerysipelatous":8, "pseudoethical":5, "pseudoetymological":8, "pseudoexperimental":7, "pseudoeconomical":7, "pseudoedema":5, "pseudoedemata":6, "pseudoelectoral":6, "pseudoemotional":6, "pseudoephedrine":5, "pseudoepiscopal":6, "pseudoequalitarian":8, "pseudoerotic":5, "pseudoerotically":7, "pseudoevangelic":6, "pseudoevangelical":7, "pseudofaithful":4, "pseudofamous":4, "pseudofatherly":5, "pseudofeminine":5, "pseudofeverish":5, "pseudofinal":4, "pseudogaseous":5, "pseudogenera":5, "pseudogeneral":5, "pseudogenteel":4, "pseudogentlemanly":6, "pseudogenuses":5, "pseudogeneric":5, "pseudogenerical":6, "pseudogenus":4, "pseudogyrate":4, "pseudohermaphrodite":6, "pseudohermaphroditic":7, "pseudohermaphroditism":7, "pseudohexagonal":6, "pseudohemal":4, "pseudohemophilia":7, "pseudoheroic":5, "pseudoheroical":6, "pseudohistoric":5, "pseudohistorical":6, "pseudohuman":4, "pseudohumanistic":6, "pseudohypertrophic":6, "pseudoimpartial":5, "pseudoindependent":6, "pseudoinsane":4, "pseudoinspiring":5, "pseudoinspirational":7, "pseudointellectually":8, "pseudointernational":7, "pseudointernationalistic":9, "pseudoinvalid":5, "pseudoidentical":6, "pseudoisometric":6, "pseudolaminated":6, "pseudolateral":5, "pseudolabia":5, "pseudolabial":5, "pseudolabium":5, "pseudolegendary":6, "pseudolegislative":6, "pseudoleucite":4, "pseudoleucocyte":5, "pseudolegal":4, "pseudolegality":6, "pseudoliberal":5, "pseudolinguistic":5, "pseudolinguistically":7, "pseudoliterary":6, "pseudolobar":4, "pseudolunule":4, "pseudolunula":5, "pseudomasculine":5, "pseudomalaria":6, "pseudomedical":5, "pseudomemory":5, "pseudometric":4, "pseudomedieval":6, "pseudomilitarily":7, "pseudomilitary":6, "pseudomilitaristic":7, "pseudoministerial":7, "pseudoministry":5, "pseudomiraculous":6, "pseudomodern":4, "pseudomodest":4, "pseudomonades":5, "pseudomonoclinic":6, "pseudomonocyclic":6, "pseudomorph":3, "pseudomoral":4, "pseudomoralistic":6, "pseudomorphism":4, "pseudomorular":5, "pseudomonastic":5, "pseudomonastical":6, "pseudomultilocular":7, "pseudomultiseptate":6, "pseudomutuality":7, "pseudomythical":5, "pseudonarcotic":5, "pseudonational":5, "pseudonoble":4, "pseudonym":3, "pseudonymity":5, "pseudooccidental":6, "pseudoofficial":5, "pseudoorganic":5, "pseudoorganically":7, "pseudoorthorhombic":6, "pseudooriental":6, "pseudooval":4, "pseudoparallel":5, "pseudoparalytic":6, "pseudoparasitic":6, "pseudopagan":4, "pseudopapal":4, "pseudoparalysis":6, "pseudopatriotic":6, "pseudopatriotically":8, "pseudopediform":5, "pseudopermanent":5, "pseudoperipteral":6, "pseudophallic":4, "pseudophilanthropic":6, "pseudophilanthropical":7, "pseudophilosophical":7, "pseudopious":4, "pseudopolitic":5, "pseudopopular":5, "pseudoporphyritic":6, "pseudopodium":5, "pseudopoetic":5, "pseudopoetical":6, "pseudopolitical":6, "pseudopregnant":4, "pseudopriestly":4, "pseudoprimitive":5, "pseudoprincely":4, "pseudoprofessorial":7, "pseudoprosperous":5, "pseudoprofessional":6, "pseudoprophetic":5, "pseudoprophetical":6, "pseudoprostyle":4, "pseudopsychological":7, "pseudopyriform":5, "pseudoresident":5, "pseudoresidential":6, "pseudorealistic":6, "pseudoreformed":4, "pseudoreformatory":7, "pseudoregal":4, "pseudoreligious":5, "pseudorepublican":6, "pseudorheumatic":5, "pseudorhombohedral":6, "pseudoroyal":4, "pseudoromantic":5, "pseudoromantically":7, "pseudosacrilegious":6, "pseudosacred":4, "pseudosatirical":6, "pseudoscalar":4, "pseudoscholarly":5, "pseudoscholastic":5, "pseudoscholastically":7, "pseudoscientific":6, "pseudoscientifically":8, "pseudoscope":3, "pseudoscorpion":5, "pseudosensational":6, "pseudoservile":4, "pseudosessile":4, "pseudosemantic":5, "pseudosemantically":7, "pseudosiphonal":5, "pseudosiphonic":5, "pseudoskeletal":5, "pseudosocial":4, "pseudosocialistic":6, "pseudospectral":4, "pseudosphere":3, "pseudospherical":5, "pseudospiritual":6, "pseudosquamate":4, "pseudostalactitic":6, "pseudostalagmitic":6, "pseudostigmatic":5, "pseudostudious":5, "pseudosubtle":4, "pseudosuicidal":6, "pseudosymptomatic":6, "pseudosyphilitic":6, "pseudotetragonal":6, "pseudotribal":4, "pseudotripteral":5, "pseudovarian":5, "pseudovelar":4, "pseudoviscous":4, "pseudoviperine":5, "pseudoviperous":5, "pseudozealous":4, "pseudozoogloeal":6, "pseudozoological":7, "psephite":2, "psephologist":4, "psephology":4, "psephological":5, "psf":1, "pshaw":1, "psi":1, "psi particle":4, "psia":1, "psid":1, "psig":1, "psilocybin":4, "psittacine":3, "psittacistic":4, "psittacosis":4, "psilanthropic":4, "psilanthropist":4, "psilomelane":4, "psilotic":3, "psiloriti":4, "psilosis":3, "pskov":1, "psoas":2, "psoatic":3, "psocid":2, "psoralea":4, "psoriatic":4, "psoriasis":4, "psorosis":3, "pss":1, "pss":1, "psst":1, "pst":1, "psv":1, "psych":1, "psyche":1, "psychedelic":4, "psyching":2, "psycter":2, "psykter":2, "psylla":2, "psyllid":2, "psychanalytically":7, "psychasthenic":4, "psychasthenia":5, "psychataxia":5, "psyche":2, "psyche":2, "psychedelic":4, "psychedelia":5, "psychic":2, "psychic determinism":6, "psychic energizer":6, "psychiatric":4, "psychiatrically":6, "psychiatrist":4, "psychiatry":4, "psychical":3, "psychically":4, "psycho":2, "psychognosis":4, "psychographer":4, "psychologise":4, "psychologism":4, "psychologist":4, "psychologistic":5, "psychologize":4, "psychologized":4, "psychologizing":5, "psychology":4, "psychometrician":5, "psychometry":4, "psychopathist":4, "psychopathy":4, "psychotic":3, "psychotomimetic":6, "psychoactive":4, "psychoanalyse":5, "psychoanalytic":6, "psychoanalytically":8, "psychoanalyze":5, "psychoanalyzer":6, "psychoacoustics":5, "psychoanalysis":6, "psychobiologist":6, "psychobiology":6, "psychobiological":7, "psychochemical":5, "psychodelic":4, "psychodiagnostic":6, "psychodiagnostics":6, "psychodiagnosis":6, "psychodrama":4, "psychodynamics":5, "psychogalvanic":5, "psychogalvanometer":7, "psychogenesis":5, "psychogenic":4, "psychogenetic":5, "psychogenetically":7, "psychographic":4, "psychographically":6, "psychohistory":5, "psychokinesis":5, "psycholinguistic":5, "psycholinguistics":5, "psychologic":4, "psychological":5, "psychological block":6, "psychological moment":7, "psychological warfare":7, "psychologically":6, "psychomancy":4, "psychometric":4, "psychometrics":4, "psychometrical":5, "psychometrically":6, "psychomotor":4, "psychoneurotic":5, "psychoneurosis":5, "psychopath":3, "psychopathic personality":9, "psychopathological":7, "psychopathologist":6, "psychopathology":6, "psychopharmacology":7, "psychopharmacologic":7, "psychophysics":4, "psychophysiologist":7, "psychophysiology":7, "psychophysiologic":7, "psychophysiologically":9, "psychopomp":3, "psychopompus":4, "psychoprophylactic":6, "psychoprophylaxis":6, "psychosexual":5, "psychosis":3, "psychosocial":4, "psychosomatic":5, "psychosomatics":5, "psychosurgery":5, "psychotechnics":4, "psychotechnology":6, "psychotherapeutics":6, "psychotherapeutist":6, "psychotherapeutically":8, "psychotherapist":5, "psychotherapy":5, "psychotropic":4, "psychrometer":4, "psychrometry":4, "psychrometric":4, "psychrophile":3, "psychrophilic":4, "pta":1, "pta":1, "ptah":1, "ptarmigan":3, "pte":1, "pte":1, "pteranodon":4, "pterelaus":4, "pteridologist":5, "pteridology":5, "pteridological":6, "pteridophyte":4, "pteridosperm":4, "pterocarpous":4, "pterodactyl":4, "pterodactylic":5, "pterodactylid":5, "pterodactyloid":5, "pterodactylous":5, "pteropod":3, "pterosaur":3, "pterygoid":3, "pterygoid process":5, "pteryla":3, "pterylography":5, "pterylology":5, "pterylographic":5, "pterylological":6, "pterylosis":4, "pteridophyte":4, "pteron":2, "pteroma":3, "pteromata":4, "pterygia":4, "pterygial":4, "pterygium":4, "pterygiums":4, "pterygotous":4, "ptfe":1, "ptg":1, "ptilosis":3, "ptisan":2, "pto":1, "pto":1, "ptolemaeus":4, "ptolemaic":4, "ptolemaic system":6, "ptolemaist":4, "ptolemy":3, "ptolemy i":4, "ptolemy ii":4, "ptochocracy":4, "ptomain":2, "ptomaine":2, "ptomaine poisoning":5, "ptomainic":3, "ptosis":2, "ptotic":2, "ptos":3, "pts":1, "pty":1, "ptyalectasis":5, "ptyalin":3, "ptyalism":3, "pu-yi":1, "pub":1, "publ":1, "public":2, "public assistance":5, "public company":5, "public convenience":6, "public debt":3, "public defender":5, "public domain":4, "public enemy":5, "public enterprise":5, "public gallery":5, "public house":3, "public law":3, "public lending right":5, "public nuisance":4, "public opinion":5, "public prosecutor":6, "public record office":6, "public relations":5, "public school":3, "public servant":4, "public service":4, "public utility":6, "public works":3, "public-address system":5, "public-school":2, "public-service corporation":7, "public-spirited":4, "public-utility":5, "publicity":4, "publicly":3, "publicness":3, "publish":2, "publisher":3, "publishing":3, "publishment":3, "publican":3, "publication":4, "publicise":3, "publicist":3, "publicize":3, "publicized":3, "publicizing":4, "puce":1, "puck":1, "puck":1, "puck-carrier":3, "pucka":2, "pucker":2, "puckerer":3, "puckery":3, "puccini":3, "puccoon":2, "pudginess":3, "pudgy":2, "puddening":3, "pudding":2, "pudding club":3, "pudding stone":3, "puddinglike":3, "puddingwife":3, "puddle":2, "puddler":2, "puddling":2, "puddly":2, "puddock":2, "pudsey":2, "pueblo":2, "pueblo":2, "pueblos":2, "puerto rico":4, "puebla":2, "puff":1, "puff adder":3, "puff pastry":3, "puffball":2, "puffbird":2, "puffer":2, "pufferies":3, "puffery":3, "puffingly":3, "puffier":3, "puffiest":3, "puffy":2, "puffin":2, "pug":1, "pugaree":3, "pugdog":2, "puggaree":3, "pugging":2, "puggish":2, "pugginess":3, "puggree":2, "puggy":2, "pugnacity":4, "pugnacious":3, "pugnaciously":4, "pugree":2, "pugwash conferences":6, "puir":1, "puirness":2, "puisne":2, "puiseux":2, "puke":1, "pukka":2, "pul":1, "pule":1, "pulj":1, "pull":1, "pull about":3, "pull together":4, "pull-in":1, "pullman":2, "pullover":3, "pulp":1, "pulpboard":2, "pulpier":3, "pulpiest":3, "pulpless":2, "pulplike":2, "pulpwood":2, "pulpy":2, "pulse":1, "pulse height analyser":6, "pulse modulation":5, "pulsebeat":2, "pulsejet":2, "pulsing":2, "pulchritude":3, "pulchritudinous":5, "puler":2, "puling":2, "pulingly":3, "pulka":2, "pullet":2, "pulley":2, "pulleyless":3, "pulli":2, "pullorum disease":5, "pullus":2, "pullulate":3, "pullulated":4, "pullulating":4, "pulmonic":3, "pulmonary":4, "pulmonary artery":7, "pulmonary vein":5, "pulmonate":3, "pulmotor":3, "pulpit":2, "pulpital":3, "pulpiteer":3, "pulpiter":3, "pulpitless":3, "pulpitum":3, "pulque":2, "pulsar":2, "pulsate":2, "pulsated":3, "pulsating":3, "pulsating star":4, "pulsatile":3, "pulsatility":5, "pulsation":3, "pulsator":3, "pulsatory":4, "pulsimeter":4, "pulsometer":4, "pulsojet":3, "pulverable":4, "pulverise":3, "pulverised":3, "pulveriser":4, "pulverising":4, "pulverize":3, "pulverized":3, "pulverizable":5, "pulverizer":4, "pulverizing":4, "pulverisation":5, "pulverization":5, "pulverulence":4, "pulverulent":4, "pulverulently":5, "pulvillus":3, "pulvinate":3, "pulvinately":4, "pulvinated":4, "pulvinus":3, "pump":1, "pump priming":3, "pump-action":2, "pumping":2, "pumpkin":2, "pumpkinseed":3, "pumpman":2, "pumpsie":2, "pumpwell":2, "pumice":2, "pumiced":2, "pumicer":3, "pumicing":3, "pummel":2, "pummeled":2, "pummelled":2, "pummeling":3, "pumpernickel":4, "pun":1, "punce":1, "punch":1, "punch":1, "punchable":3, "punchball":2, "punchboard":2, "punchbowl":2, "puncher":2, "punchier":3, "punchiest":3, "punchy":2, "punctate":2, "punctated":3, "punctatim":3, "punctation":3, "punctilio":4, "punctilious":4, "punctiliously":5, "punctiliousness":5, "puncture":2, "punctured":2, "puncturing":3, "punctual":3, "punctuality":5, "punctually":4, "punctualness":4, "punctuate":3, "punctuation":4, "punctuation mark":5, "punctuative":4, "punctuator":4, "pung":1, "pungies":2, "pungy":2, "punk":1, "punkie":2, "punt":1, "punt":1, "punter":2, "punxsutawney":4, "puncheon":2, "punchinello":4, "pundit":2, "punditic":3, "punditically":5, "pungent":2, "pungently":3, "pungency":3, "punish":2, "punishable":4, "punisher":3, "punishment":3, "punjab":2, "punjab states":3, "punjabi":3, "punka":2, "punkah":2, "punner":2, "punnet":2, "punning":2, "punster":2, "punta":2, "punta arenas":5, "puntarenas":4, "puntilla":3, "puntillas":3, "puntillero":4, "punty":2, "pup":1, "puppet":2, "puppeteer":3, "puppetry":3, "pupping":2, "puppis":2, "puppy":2, "puppy fat":3, "puppy love":3, "puppydom":3, "puppyfoot":3, "puppyhood":3, "puppyish":3, "puppylike":3, "pure":1, "pure culture":3, "purebred":2, "purehearted":3, "purely":2, "pureness":2, "purge":1, "purgeable":3, "purger":2, "purging":2, "purl":1, "purr":1, "purringly":3, "purse":1, "purseless":2, "purselike":2, "purser":2, "pursing":2, "purslane":2, "pursy":2, "purbach":2, "purbeck marble":4, "purblind":2, "purblindly":3, "purblindness":3, "purcell":2, "purchas":2, "purchase":2, "purchase tax":3, "purchasable":4, "purchaser":3, "purda":2, "purdah":2, "purer":2, "purest":2, "purfle":2, "purfler":2, "purfling":2, "purga":2, "purgation":3, "purgative":3, "purgatively":4, "purgatorial":5, "purgatory":4, "purism":2, "purist":2, "purler":2, "purlieu":2, "purlin":2, "purline":2, "purloin":2, "purloiner":3, "purpart":2, "purparty":3, "purple":2, "purple gallinule":5, "purple heart":3, "purple heart":3, "purple medic":4, "purple patch":3, "purple-fringed orchid":4, "purpleheart":3, "purpleness":3, "purplish":2, "purplishness":3, "purply":2, "purport":2, "purpose":2, "purpose-built":2, "purposed":2, "purposeful":3, "purposeless":3, "purposelessly":4, "purposelessness":4, "purposely":3, "purposing":3, "purposive":3, "purposively":4, "purposiveness":4, "purpresture":3, "purpure":2, "purpura":3, "purpuric":3, "purpurin":3, "purprt":3, "purree":2, "pursier":3, "pursiest":3, "pursily":3, "pursiness":3, "pursue":2, "pursued":2, "pursuit":2, "pursuivant":3, "pursuance":3, "pursuant":3, "pursuantly":4, "pursuable":4, "pursuer":3, "pursuing":3, "pursy":2, "purtenance":3, "purvey":2, "purveyance":3, "purveyor":3, "purview":2, "pus":1, "push":1, "push about":3, "push along":3, "push button":3, "push-button":2, "push-up":1, "pushed":1, "pushball":2, "pushcard":2, "pushcart":2, "pushchair":2, "pusher":2, "pushing":2, "pushingly":3, "pushingness":3, "pushier":3, "pushiest":3, "pushiness":3, "pushkin":2, "pushover":3, "pushpin":2, "pushrod":2, "pushto":2, "pushtu":2, "pushy":2, "pusionist":2, "puss":1, "puss":1, "pussies":2, "pussley":2, "pusslike":2, "pussy":2, "pussy":2, "pussy willow":4, "pussyfoot":3, "pussytoe":3, "puslike":2, "pussier":3, "pussiest":3, "pussy":2, "pustule":2, "pustuled":2, "pustulant":3, "pustular":3, "pustulate":3, "pustulated":4, "pustulating":4, "pustulous":3, "put":1, "put about":3, "put across":3, "put aside":3, "put away":3, "put forward":3, "put over":3, "put upon":3, "put-on":1, "put-up":1, "put-upon":2, "putsch":1, "putt":1, "putter":2, "putting green":3, "putlock":2, "putlog":2, "putnam":2, "puttee":2, "putter":2, "puttie":2, "puttied":2, "putting":2, "puttier":3, "putto":2, "putty":2, "putty powder":4, "puttying":3, "puttyroot":3, "puy de sancy":4, "puyallup":3, "puzzle":2, "puzzledly":3, "puzzledness":3, "puzzler":2, "puzzlement":3, "puzzlingly":3, "puzzlingness":3, "puzzolan":3, "puzzolana":4, "puberty":3, "puberulent":4, "puberulous":4, "pubes":2, "pubescent":3, "pubic":2, "pubis":2, "puca":2, "pudency":3, "pudendum":3, "pudovkin":3, "puerile":3, "puerilism":4, "puerility":5, "puerpera":4, "puerperae":4, "puerperal":4, "puerperal fever":6, "puerperal psychosis":7, "puerperium":5, "puerperium":5, "pufendorf":3, "puget sound":3, "pugilist":3, "pugilistic":4, "pugilistical":5, "pugilistically":6, "pugin":2, "pugilism":3, "puglia":2, "puissance":3, "puissant":3, "puissantly":4, "puja":2, "puku":2, "pula":2, "pulaski":3, "pulesati":4, "puli":2, "pulik":2, "pulitzer":3, "pulitzer prize":4, "pulu":2, "puma":2, "puna":2, "punan":2, "punaka":3, "punakha":3, "pune":2, "punic":2, "punic wars":3, "punier":3, "puniest":3, "puniness":3, "punitive":3, "punitively":4, "punitiveness":4, "punitory":4, "puny":2, "pupa":2, "pupal":2, "puparia":4, "puparifishes":5, "puparium":4, "pupate":2, "pupil":2, "pupilage":3, "pupillage":3, "pupillarity":5, "pupillary":4, "pupilless":3, "pupin":2, "pupiparous":4, "pupilarity":5, "pupilary":4, "pur":2, "purana":3, "puranic":3, "puree":2, "puri":2, "puri":2, "purim":2, "purin":2, "purine":2, "puristic":3, "puristical":4, "puristically":5, "purified":3, "purificator":5, "puriform":3, "purify":3, "purifying":4, "puritan":3, "puritan":3, "puritanic":4, "puritanism":4, "puritanical":5, "puritanically":6, "puritanicalness":6, "purity":3, "purulence":3, "purulent":3, "purulently":4, "puruloid":3, "purusha":3, "pure":3, "pured":3, "pureing":4, "purs":3, "pusan":2, "pusey":2, "puseyism":3, "puseyistic":4, "puseyistical":5, "puseyite":3, "pusillanimous":5, "pusillanimity":6, "putamina":4, "putaminous":4, "putamen":3, "putative":3, "putatively":4, "putrescence":3, "putrescent":3, "putrescency":4, "putrescine":3, "putrescibility":6, "putrescible":4, "putredinis":4, "putrefaction":4, "putrefied":3, "putrefiable":5, "putrefier":4, "putrefy":3, "putrefying":4, "putrid":2, "putridity":4, "putridly":3, "putridness":3, "putrilage":3, "putrilaginous":5, "putrilaginously":6, "putumayo":4, "puvis de chavannes":5, "pva":1, "pvc":1, "pvt":1, "pwd":1, "pwelcomed":2, "pwelcoming":3, "pwt":1, "pya":1, "pyalla":2, "pyatigorsk":3, "pycnidia":4, "pycnidial":4, "pycnidium":4, "pycnial":3, "pycniospore":4, "pycnometer":4, "pycnostyle":3, "pydna":2, "pye":1, "pye-dog":1, "pygmalion":4, "pygmoid":2, "pygmy":2, "pygmy":2, "pygmyish":3, "pygmyism":3, "pyknic":2, "pylades":3, "pym":1, "pynchon":2, "pyongyang":2, "pyre":1, "pyraechmes":3, "pyralid":3, "pyramid":3, "pyramid selling":5, "pyramidic":4, "pyramidia":5, "pyramidical":5, "pyramidically":6, "pyramidion":5, "pyramidlike":4, "pyramus and thisbe":6, "pyrazole":3, "pyrenees":3, "pyrenean":4, "pyrenoid":3, "pyretologist":5, "pyretology":5, "pyretotherapy":6, "pyrheliometer":6, "pyrheliometric":6, "pyribenzamine":5, "pyridine":3, "pyridoxal":4, "pyridoxamine":5, "pyridoxin":4, "pyridoxine":4, "pyriform":3, "pyriphlegethon":5, "pyrrha":2, "pyrrhic":2, "pyrrhic":2, "pyrrhic victory":5, "pyrrho":2, "pyrrhonism":3, "pyrrhonist":3, "pyrrhonistic":4, "pyrrhotine":3, "pyrrhotite":3, "pyrrhus":2, "pyrrhuloxia":5, "pyrrole":2, "pyrrolic":3, "pyrrolidine":4, "pyrruvic acid":5, "pytheas":3, "pythic":2, "pythia":3, "pythiad":3, "pythian":3, "pythian games":4, "pythias":3, "pythius":3, "pythogenic":4, "pyx":1, "pyxidia":4, "pyxidium":4, "pyxie":2, "pyxis":2, "pyxis":2, "pyxidis":3, "pyaemia":4, "pyanepsia":5, "pyelitic":4, "pyelitis":4, "pyelography":5, "pyelographic":5, "pyelonephritic":6, "pyelonephritis":6, "pyelonephrosis":6, "pyemic":3, "pyemia":4, "pygidia":4, "pygidium":4, "pygostyled":3, "pygostylous":4, "pyic":2, "pyin":2, "pyjamas":3, "pyjama":3, "pyjamas":3, "pylaemenes":4, "pylaeus":3, "pylas":2, "pylon":2, "pyloric":3, "pylos":2, "pylorectomy":5, "pylori":3, "pylorus":3, "pyoid":2, "pyophthalmia":5, "pyophthalmitis":5, "pyorrhea":4, "pyorrheal":4, "pyorrheic":4, "pyorrhoea":4, "pyorrhoea alveolaris":9, "pyorrhoeal":4, "pyorrhoeic":4, "pyoderma":4, "pyogenesis":5, "pyogenic":4, "pyometra":4, "pyonephritis":5, "pyopericardium":7, "pyosalpinx":4, "pyosepticemic":6, "pyosepticemia":7, "pyosis":3, "pyothorax":4, "pyramidal":4, "pyramidal peak":5, "pyramidally":5, "pyramidon":4, "pyran":2, "pyrargyrite":4, "pyrazoline":4, "pyrazolone":4, "pyracantha":4, "pyragravure":4, "pyranometer":5, "pyrazole":3, "pyrene":2, "pyretic":3, "pyrex":2, "pyrexia":4, "pyrenaeus":4, "pyrene":3, "pyreneus":4, "pyrenocarp":4, "pyrenocarpic":5, "pyrenocarpous":5, "pyrethrin":3, "pyrethrum":3, "pyridic":3, "pyridium":4, "pyrimidine":4, "pyrimidine base":5, "pyrite":2, "pyritic":3, "pyrites":3, "pyritohedron":5, "pyrogenous":4, "pyrognostics":4, "pyrographer":4, "pyrography":4, "pyrologist":4, "pyrology":4, "pyrolysis":4, "pyrome":3, "pyrometer":4, "pyrometry":4, "pyrone":2, "pyrope":2, "pyroxene":3, "pyroxenic":4, "pyroxenite":4, "pyroxylin":4, "pyroxyline":4, "pyrobitumen":5, "pyrocatechin":5, "pyrocatechol":5, "pyrochemical":5, "pyrochemically":6, "pyrochlore":3, "pyroclastic":4, "pyroconductivity":7, "pyrocrystalline":5, "pyroelectric":5, "pyroelectricity":7, "pyrogallate":4, "pyrogallic":4, "pyrogallol":4, "pyrogen":3, "pyrogenic":4, "pyrographic":4, "pyroligneous":5, "pyroligneous acid":7, "pyrolignic":4, "pyrological":5, "pyrolusite":4, "pyrolytic":4, "pyromagnetic":5, "pyromancer":4, "pyromancy":4, "pyromantic":4, "pyromania":5, "pyromaniac":5, "pyromaniacal":6, "pyrometallurgy":6, "pyromorphite":4, "pyronia":4, "pyrophoric":4, "pyrophosphate":4, "pyrophosphoric acid":7, "pyrophotometer":6, "pyrophyllite":4, "pyrosis":3, "pyrostat":3, "pyrosulfate":4, "pyrosulfuric":5, "pyrosulphate":4, "pyrosulphuric acid":7, "pyrosulphuric":5, "pyrotechnic":4, "pyrotechnics":4, "pyrotechnical":5, "pyrotechnically":6, "pyrotoxin":4, "pyruvaldehyde":5, "pyruvic":3, "pyrnes-orientales":8, "pyrnrientales":6, "pythagoras":4, "pythagoras' theorem":7, "pythagorean":5, "pythagoreanism":6, "pytho":2, "pythogenous":4, "python":2, "python":2, "pythoness":3, "pythonic":3, "pythogenesis":5, "pythoness":3, "pyuria":4, "pt":4, "prigord":4, "ptain":3, "po":3, "prto":3, "prprt":4, "plion":2, "plos":2, "pos":2, "pt":2, "ptain":2, "pto":2, "pto alegre":5, "pto velho":4, "pvid's deer":3, "q factor":3, "q fever":3, "q signal":3, "q-celtic":2, "q-factor":2, "q-fever":1, "q-ship":1, "qadarite":3, "qaddafi":3, "qaddish":2, "qairwan":2, "qaranc":1, "qat":1, "qattara depression":6, "qaboos bin said":4, "qadi":2, "qadiriya":4, "qadianis":4, "qaid":2, "qasida":3, "qatar":2, "qbp":1, "qed":1, "qef":1, "qeshm":1, "qibla":2, "qindar":2, "qintar":2, "qishm":1, "qieries":3, "qkt":1, "qktp":1, "qld":1, "qmc":1, "qmg":1, "qms":1, "qnp":1, "qoph":1, "qphallicism":3, "qqv":1, "qrp":1, "qsl":1, "qso":1, "qst":1, "qsy":1, "qto":1, "qty":1, "qua":1, "quack":1, "quackery":3, "quacksalver":3, "quad":1, "quadrilateral":2, "quadded":2, "quadding":2, "quadra":2, "quadrant":2, "quadrantlike":3, "quadrangle":3, "quadrangled":3, "quadrangular":4, "quadrantal":3, "quadrantes":3, "quadrat":2, "quadrate":2, "quadrated":3, "quadratic":3, "quadratics":3, "quadrating":3, "quadratically":5, "quadragesima":5, "quadragesimal":5, "quadragenarian":6, "quadraphonics":4, "quadrature":3, "quadrel":2, "quadrella":3, "quadrennia":4, "quadrennial":4, "quadrennially":5, "quadrennium":4, "quadrenniums":4, "quadric":2, "quadrille":2, "quadrillion":3, "quadrivia":4, "quadrivial":4, "quadrivium":4, "quadricentennial":6, "quadriceps":3, "quadricepses":4, "quadricipital":5, "quadricycle":4, "quadricycler":4, "quadricyclist":4, "quadrifid":3, "quadriga":3, "quadrigatus":4, "quadrilateral":5, "quadrilaterally":6, "quadrilateralness":6, "quadrilingual":4, "quadrinomial":5, "quadripartite":4, "quadripartitely":5, "quadriplegic":4, "quadriplegia":4, "quadriplegia":5, "quadrireme":3, "quadrisect":3, "quadrisection":4, "quadrisyllable":5, "quadrivalence":4, "quadrivalent":4, "quadrivalently":5, "quadrivalency":5, "quadroon":2, "quadrophonics":4, "quadrumane":3, "quadrumanous":4, "quadruped":3, "quadrupedism":4, "quadrupedal":4, "quadruple":3, "quadruple time":4, "quadruple-expansion":5, "quadruplet":3, "quadruplex":3, "quadrupleness":4, "quadruplicity":5, "quadruplicate":4, "quadruplicated":5, "quadruplicating":5, "quadruplication":5, "quadruplicature":5, "quadruply":3, "quaestor":2, "quaestorship":3, "quaestorial":4, "quaere":2, "quaff":1, "quaffer":2, "quag":1, "quagga":2, "quaggier":3, "quaggiest":3, "quaggy":2, "quagmire":2, "quai d'orsay":3, "quaich":1, "quail":1, "quaillike":2, "quaint":1, "quaintly":2, "quaintness":2, "quake":1, "quaker":2, "quaker gun":3, "quaker-ladies":3, "quakerism":3, "quakerly":3, "quakertown":3, "quaking":2, "quaking grass":3, "quakingly":3, "quakier":3, "quakiest":3, "quakily":3, "quakiness":3, "quaky":2, "qualm":1, "qualmish":2, "qualmishly":3, "qualmishness":3, "qualified":3, "qualifiedly":4, "qualifiedness":4, "qualifiable":5, "qualification":5, "qualificator":5, "qualificatory":6, "qualifier":4, "qualify":3, "qualifying":4, "qualifyingly":5, "qualitative":4, "qualitative analysis":8, "qualitatively":5, "quality":3, "quality control":5, "qualityless":4, "quamash":2, "quant":1, "quant":1, "quantz":1, "quandang":2, "quandary":3, "quandong":2, "quango":2, "quanta":2, "quantal":2, "quantic":2, "quantise":2, "quantize":2, "quantized":2, "quantizing":3, "quantified":3, "quantifiable":5, "quantifier":4, "quantify":3, "quantifying":4, "quantitative":4, "quantitative analysis":8, "quantitatively":5, "quantitativeness":5, "quantitive":3, "quantitively":4, "quantitiveness":4, "quantity":3, "quantity surveyor":6, "quantity theory":6, "quantization":4, "quantong":2, "quantrill":2, "quantum":2, "quantum mechanics":5, "quantum number":4, "quantum statistics":5, "quantum theory":5, "quantummechanical":6, "quar":1, "quare":1, "quark":1, "quart":1, "quarte":1, "quartz":1, "quartz crystal":3, "quartz-iodine lamp":4, "quartziferous":4, "quartzite":2, "quartzitic":3, "quarantine":3, "quarantine flag":4, "quarantinable":5, "quarantiner":4, "quarnero":3, "quarrel":2, "quarreled":2, "quarrelled":2, "quarreler":3, "quarreling":3, "quarrelingly":4, "quarreller":3, "quarrelling":3, "quarrellingly":4, "quarrelsome":3, "quarrelsomely":4, "quarrelsomeness":4, "quarrian":2, "quarried":2, "quarrion":2, "quarriable":4, "quarrier":3, "quarry":2, "quarry tile":3, "quarryable":4, "quarrying":3, "quarryman":3, "quartan":2, "quarter":2, "quarter crack":3, "quarter day":3, "quarter grain":3, "quarter horse":3, "quarter note":3, "quarter plate":3, "quarter round":3, "quarter section":4, "quarter sessions":4, "quarter tone":3, "quarter-bound":2, "quarter-breed":2, "quarter-deck":2, "quarter-gallery":4, "quarter-hoop":2, "quarter-hour":2, "quarter-miler":3, "quarter-phase":2, "quarter-pierced":2, "quarter-witted":3, "quartered":2, "quartern":2, "quarters":2, "quarterage":3, "quarterback":3, "quarterdeck":3, "quarterer":3, "quarterfinal":4, "quarterfinalist":5, "quartering":3, "quarterlight":3, "quarterly":3, "quartermaster":4, "quartermasterlike":5, "quartermastership":5, "quarterpace":3, "quartersaw":3, "quarterstaff":3, "quartet":2, "quartette":2, "quartic":2, "quartile":2, "quarto":2, "quartus":2, "quash":1, "quass":1, "quassia":2, "quathlamba":3, "quatrain":2, "quatrefoil":3, "quatrefoiled":3, "quattrocento":4, "quattuordecillionth":6, "quay":1, "quayage":2, "quaylike":2, "quayside":2, "quadrille":2, "quahaug":2, "quahog":2, "quaker meeting":4, "quale":2, "qualimeter":4, "quanah":2, "quapledged":2, "quapledging":3, "quaquaversal":4, "quasar":2, "quashi":2, "quashie":2, "quasi-absolute":4, "quasi-academic":5, "quasi-academically":7, "quasi-accepted":4, "quasi-accidental":5, "quasi-acquainted":4, "quasi-active":3, "quasi-adequate":4, "quasi-adjusted":4, "quasi-admire":3, "quasi-admired":3, "quasi-admiring":4, "quasi-advantageous":5, "quasi-affectionate":5, "quasi-affirmative":5, "quasi-alternating":5, "quasi-alternative":5, "quasi-amateurish":5, "quasi-anxious":3, "quasi-ancient":3, "quasi-angelic":4, "quasi-angelically":6, "quasi-antique":3, "quasi-appealing":4, "quasi-appointed":4, "quasi-appropriate":5, "quasi-artistic":4, "quasi-artistically":6, "quasi-athletic":4, "quasi-athletically":6, "quasi-attempt":3, "quasi-audible":4, "quasi-authentic":4, "quasi-authentically":6, "quasi-authorized":4, "quasi-automatic":5, "quasi-automatically":7, "quasi-awful":3, "quasi-adopt":3, "quasi-adopted":4, "quasi-adult":3, "quasi-american":5, "quasi-americanized":6, "quasi-amiable":5, "quasi-amusing":4, "quasi-apologetic":6, "quasi-apologetically":8, "quasi-aside":3, "quasi-asleep":3, "quasi-bad":2, "quasi-bankrupt":3, "quasi-basic":3, "quasi-basically":5, "quasi-beneficial":5, "quasi-benevolent":5, "quasi-biographical":6, "quasi-blind":2, "quasi-brave":2, "quasi-brilliant":3, "quasi-bronze":2, "quasi-brotherly":4, "quasi-calm":2, "quasi-candid":3, "quasi-careful":3, "quasi-capable":4, "quasi-characteristic":6, "quasi-characteristically":8, "quasi-charitable":5, "quasi-cheerful":3, "quasi-civil":3, "quasi-classic":3, "quasi-classically":5, "quasi-clerical":4, "quasi-collegiate":4, "quasi-colloquial":5, "quasi-comfortable":5, "quasi-comic":3, "quasi-comical":4, "quasi-commanding":4, "quasi-commercial":4, "quasi-commercialized":5, "quasi-common":3, "quasi-compact":3, "quasi-competitive":5, "quasi-complete":3, "quasi-complex":3, "quasi-compliant":4, "quasi-complimentary":6, "quasi-comprehensive":5, "quasi-compromising":5, "quasi-compulsive":4, "quasi-compulsorily":6, "quasi-compulsory":5, "quasi-confining":4, "quasi-confident":4, "quasi-confidential":5, "quasi-conforming":4, "quasi-congenial":4, "quasi-congratulatory":7, "quasi-connective":4, "quasi-conscious":3, "quasi-conscientious":5, "quasi-conservative":5, "quasi-consequential":5, "quasi-considerate":5, "quasi-consistent":4, "quasi-consolidated":6, "quasi-constant":3, "quasi-constitutional":6, "quasi-constructed":4, "quasi-constructive":4, "quasi-consuming":4, "quasi-content":3, "quasi-contented":4, "quasi-continual":5, "quasi-continuous":5, "quasi-contract":3, "quasi-contrasted":4, "quasi-contrarily":5, "quasi-contrary":4, "quasi-controlled":3, "quasi-controlling":4, "quasi-convenient":4, "quasi-conventional":5, "quasi-converted":4, "quasi-conveyed":3, "quasi-convinced":3, "quasi-cordial":3, "quasi-correct":3, "quasi-courteous":4, "quasi-craftily":4, "quasi-crafty":3, "quasi-criminal":4, "quasi-critical":4, "quasi-cultivated":5, "quasi-cunning":3, "quasi-cynical":4, "quasi-damaged":3, "quasi-dangerous":4, "quasi-daring":3, "quasi-deaf":2, "quasi-deafening":4, "quasi-decorated":5, "quasi-definite":4, "quasi-delicate":4, "quasi-democratic":5, "quasi-democratically":7, "quasi-desolate":4, "quasi-desperate":4, "quasi-despondent":4, "quasi-defeated":4, "quasi-defiant":4, "quasi-dejected":4, "quasi-deliberate":5, "quasi-delighted":4, "quasi-demanding":4, "quasi-dependent":4, "quasi-depressed":3, "quasi-determine":4, "quasi-devoted":4, "quasi-difficult":4, "quasi-dignified":4, "quasi-dignifying":5, "quasi-diplomatic":5, "quasi-diplomatically":7, "quasi-disadvantageous":6, "quasi-disastrous":4, "quasi-discreet":3, "quasi-discriminating":6, "quasi-disgraced":3, "quasi-disgusted":4, "quasi-distant":3, "quasi-distressed":3, "quasi-diverse":3, "quasi-diversified":5, "quasi-divided":4, "quasi-doubtful":3, "quasi-double":3, "quasi-dramatic":4, "quasi-dramatically":6, "quasi-dreadful":3, "quasi-dumb":2, "quasi-duplicate":4, "quasi-dutiful":4, "quasi-eager":3, "quasi-educated":5, "quasi-educational":6, "quasi-effective":4, "quasi-efficient":4, "quasi-elementary":6, "quasi-eligible":5, "quasi-eloquent":4, "quasi-empty":3, "quasi-eminent":4, "quasi-endless":3, "quasi-english":3, "quasi-energetic":5, "quasi-energetically":7, "quasi-enforced":3, "quasi-engaging":4, "quasi-entertaining":5, "quasi-enthused":3, "quasi-enthusiastic":6, "quasi-enthusiastically":8, "quasi-envious":4, "quasi-equitable":5, "quasi-essential":4, "quasi-established":4, "quasi-everlasting":5, "quasi-exact":3, "quasi-exceptional":5, "quasi-excessive":4, "quasi-exempt":3, "quasi-exiled":3, "quasi-existent":4, "quasi-expectant":4, "quasi-expensive":4, "quasi-experimental":6, "quasi-expedient":5, "quasi-experienced":5, "quasi-explicit":4, "quasi-exposed":3, "quasi-expressed":3, "quasi-external":4, "quasi-extraterritorial":8, "quasi-extreme":3, "quasi-economic":5, "quasi-economical":6, "quasi-elaborate":5, "quasi-emotional":5, "quasi-episcopal":5, "quasi-equal":3, "quasi-equivalent":5, "quasi-erotic":4, "quasi-erotically":6, "quasi-eternal":4, "quasi-evil":3, "quasi-fabricated":5, "quasi-fair":2, "quasi-faithful":3, "quasi-false":2, "quasi-fashionable":5, "quasi-fascinated":5, "quasi-fascinating":5, "quasi-familiar":4, "quasi-famous":3, "quasi-fatal":3, "quasi-fatalistic":5, "quasi-fatalistically":7, "quasi-favorable":5, "quasi-favourable":5, "quasi-federal":4, "quasi-feudal":3, "quasi-fictitious":4, "quasi-fireproof":3, "quasi-fiscal":3, "quasi-fit":2, "quasi-final":3, "quasi-financial":4, "quasi-foolish":3, "quasi-forced":2, "quasi-foreign":3, "quasi-forgetful":4, "quasi-forgotten":4, "quasi-formal":3, "quasi-formidable":5, "quasi-fortunate":4, "quasi-frank":2, "quasi-fraternal":4, "quasi-free":2, "quasi-french":2, "quasi-full":2, "quasi-fulfilling":4, "quasi-fully":3, "quasi-gallant":3, "quasi-gaseous":4, "quasi-gay":2, "quasi-generous":4, "quasi-genteel":3, "quasi-gentlemanly":5, "quasi-genuine":4, "quasi-german":3, "quasi-glad":2, "quasi-glorious":4, "quasi-good":2, "quasi-grateful":3, "quasi-grave":2, "quasi-gracious":3, "quasi-great":2, "quasi-greek":2, "quasi-grecian":3, "quasi-guaranteed":4, "quasi-guiltily":4, "quasi-guilty":3, "quasi-happy":3, "quasi-harmful":3, "quasi-habitual":5, "quasi-healthful":3, "quasi-heartily":4, "quasi-hearty":3, "quasi-helpful":3, "quasi-hereditary":6, "quasi-heroic":4, "quasi-heroically":6, "quasi-historic":4, "quasi-historical":5, "quasi-honest":3, "quasi-honorable":5, "quasi-humble":3, "quasi-human":3, "quasi-humanistic":5, "quasi-humorous":4, "quasi-ignorant":4, "quasi-immediate":5, "quasi-immortal":4, "quasi-impartial":4, "quasi-important":4, "quasi-improved":3, "quasi-inclined":3, "quasi-inclusive":4, "quasi-increased":3, "quasi-independent":5, "quasi-indifferent":5, "quasi-induced":3, "quasi-indulged":3, "quasi-industrial":5, "quasi-inevitable":6, "quasi-inferred":3, "quasi-inferior":5, "quasi-infinite":4, "quasi-influential":5, "quasi-informed":3, "quasi-informal":4, "quasi-inherited":5, "quasi-initiated":6, "quasi-injured":3, "quasi-injurious":5, "quasi-innocent":4, "quasi-innumerable":6, "quasi-insistent":4, "quasi-inspected":4, "quasi-inspirational":6, "quasi-installed":3, "quasi-instructed":4, "quasi-insulted":4, "quasi-intellectual":6, "quasi-intelligent":5, "quasi-intended":4, "quasi-interested":5, "quasi-internal":4, "quasi-internalized":5, "quasi-international":6, "quasi-internationalistic":8, "quasi-interviewed":4, "quasi-intimate":4, "quasi-intimated":5, "quasi-intolerant":5, "quasi-intolerable":6, "quasi-introduced":4, "quasi-intuitive":5, "quasi-invaded":4, "quasi-investigated":6, "quasi-invisible":5, "quasi-invited":4, "quasi-irregular":5, "quasi-identical":5, "quasi-ideal":4, "quasi-idealistic":6, "quasi-idealistically":8, "quasi-jacobean":5, "quasi-japanese":4, "quasi-jointly":3, "quasi-jocose":3, "quasi-jocund":3, "quasi-judicial":4, "quasi-kind":2, "quasi-knowledgeable":5, "quasi-latin":3, "quasi-lawful":3, "quasi-laborious":5, "quasi-lamented":4, "quasi-legendary":5, "quasi-legislated":5, "quasi-legislative":5, "quasi-legal":3, "quasi-legitimate":5, "quasi-liberal":4, "quasi-literary":5, "quasi-living":3, "quasi-logical":4, "quasi-loyal":3, "quasi-luxurious":5, "quasi-mad":2, "quasi-magic":3, "quasi-magical":4, "quasi-managed":3, "quasi-managerial":6, "quasi-malicious":4, "quasi-maternal":4, "quasi-material":5, "quasi-medical":4, "quasi-mental":3, "quasi-mercantile":4, "quasi-metaphysical":6, "quasi-mechanical":5, "quasi-medieval":5, "quasi-methodical":5, "quasi-mighty":3, "quasi-military":5, "quasi-militaristic":6, "quasi-militaristically":8, "quasi-ministerial":6, "quasi-miserable":5, "quasi-miraculous":5, "quasi-modern":3, "quasi-modest":3, "quasi-moral":3, "quasi-moralistic":5, "quasi-moralistically":7, "quasi-municipal":5, "quasi-musical":4, "quasi-mutual":4, "quasi-mysterious":5, "quasi-mythical":4, "quasi-nameless":3, "quasi-natural":4, "quasi-national":4, "quasi-nationalistic":6, "quasi-native":3, "quasi-nebulous":4, "quasi-necessary":5, "quasi-negative":4, "quasi-neglected":4, "quasi-negligent":4, "quasi-negligible":5, "quasi-neutral":3, "quasi-new":2, "quasi-normal":3, "quasi-notarial":5, "quasi-nuptial":3, "quasi-objective":4, "quasi-obligated":5, "quasi-observed":3, "quasi-offensive":4, "quasi-official":4, "quasi-opposed":3, "quasi-ordinary":5, "quasi-organic":4, "quasi-organically":6, "quasi-obedient":5, "quasi-original":5, "quasi-oriental":5, "quasi-partisan":4, "quasi-passive":3, "quasi-pathetic":4, "quasi-pathetically":6, "quasi-patient":3, "quasi-patriarchal":5, "quasi-patriotic":5, "quasi-patriotically":7, "quasi-patronizing":5, "quasi-peaceful":3, "quasi-perfect":3, "quasi-permanent":4, "quasi-perpetual":5, "quasi-personal":4, "quasi-personable":5, "quasi-perusable":5, "quasi-periodic":5, "quasi-periodically":7, "quasi-philosophical":6, "quasi-physical":4, "quasi-pious":3, "quasi-pleasurable":5, "quasi-pledge":2, "quasi-plentiful":4, "quasi-politic":4, "quasi-poor":2, "quasi-popular":4, "quasi-positive":4, "quasi-powerful":4, "quasi-poetic":4, "quasi-poetical":5, "quasi-political":5, "quasi-practical":4, "quasi-preferential":5, "quasi-prejudiced":4, "quasi-prepositional":6, "quasi-precedent":4, "quasi-prevented":4, "quasi-privileged":4, "quasi-private":3, "quasi-probable":4, "quasi-problematic":5, "quasi-prompt":2, "quasi-promised":3, "quasi-prosecuted":5, "quasi-prosperous":4, "quasi-proud":2, "quasi-productive":4, "quasi-progressive":4, "quasi-prophetic":4, "quasi-prophetical":5, "quasi-protected":4, "quasi-provincial":4, "quasi-provocative":5, "quasi-public":3, "quasi-punished":3, "quasi-purchased":3, "quasi-pupillary":5, "quasi-qualified":4, "quasi-radical":4, "quasi-rational":4, "quasi-reasonable":5, "quasi-recognized":4, "quasi-reconciled":4, "quasi-registered":4, "quasi-regular":4, "quasi-regulated":5, "quasi-represented":5, "quasi-rescued":3, "quasi-residential":5, "quasi-revolutionized":6, "quasi-realistic":5, "quasi-realistically":7, "quasi-rebellious":4, "quasi-recent":3, "quasi-reduced":3, "quasi-refined":3, "quasi-reformed":3, "quasi-refused":3, "quasi-rejected":4, "quasi-relieved":3, "quasi-reliable":5, "quasi-religious":4, "quasi-remarkable":5, "quasi-renewed":3, "quasi-repaired":3, "quasi-replaced":3, "quasi-reported":4, "quasi-required":3, "quasi-resisted":4, "quasi-respectable":5, "quasi-respected":4, "quasi-respectful":4, "quasi-responsive":4, "quasi-responsible":5, "quasi-restored":3, "quasi-retired":3, "quasi-rewarding":4, "quasi-righteous":3, "quasi-ridiculous":5, "quasi-royal":3, "quasi-romantic":4, "quasi-romantically":6, "quasi-rural":3, "quasi-sad":2, "quasi-safe":2, "quasi-saintly":3, "quasi-sanctioned":3, "quasi-sanguine":3, "quasi-sarcastic":4, "quasi-sarcastically":6, "quasi-satisfied":4, "quasi-savage":3, "quasi-sagacious":4, "quasi-satirical":5, "quasi-scholarly":4, "quasi-scholastic":4, "quasi-scholastically":6, "quasi-scientific":5, "quasi-scientifically":7, "quasi-sentimental":5, "quasi-settled":3, "quasi-secret":3, "quasi-secretive":4, "quasi-secure":3, "quasi-serious":4, "quasi-similar":4, "quasi-sincere":3, "quasi-single":3, "quasi-skillful":3, "quasi-slanderous":4, "quasi-sovereign":4, "quasi-sober":3, "quasi-socialistic":5, "quasi-socialistically":7, "quasi-spanish":3, "quasi-spatial":3, "quasi-spherical":4, "quasi-spirited":4, "quasi-spiritual":5, "quasi-standardized":4, "quasi-stationary":5, "quasi-stellar object":5, "quasi-strenuous":4, "quasi-studious":4, "quasi-stylish":3, "quasi-subjective":4, "quasi-submissive":4, "quasi-successful":4, "quasi-sufficient":4, "quasi-supported":4, "quasi-suppressed":3, "quasi-superficial":5, "quasi-supervised":4, "quasi-superior":5, "quasi-sympathetic":5, "quasi-sympathetically":7, "quasi-systematic":5, "quasi-systematically":7, "quasi-systematized":5, "quasi-tangent":3, "quasi-tangible":4, "quasi-technical":4, "quasi-temporal":4, "quasi-territorial":6, "quasi-theatrical":5, "quasi-thorough":3, "quasi-tolerant":4, "quasi-total":3, "quasi-tragic":3, "quasi-tragically":5, "quasi-traditional":5, "quasi-tribal":3, "quasi-truthful":3, "quasi-typical":4, "quasi-tyrannical":5, "quasi-unconscious":4, "quasi-unanimous":5, "quasi-unified":4, "quasi-universal":5, "quasi-utilized":4, "quasi-valid":3, "quasi-valued":3, "quasi-venerable":5, "quasi-victorious":5, "quasi-virtuous":4, "quasi-violated":5, "quasi-violent":4, "quasi-vital":3, "quasi-vocational":5, "quasi-warranted":4, "quasi-wealthy":3, "quasi-whispered":3, "quasi-wicked":3, "quasi-willing":3, "quasi-wrong":2, "quasi-young":2, "quasi-zealous":3, "quasimodo":4, "quatercentenary":6, "quaternaries":4, "quaternary":4, "quaternary":4, "quaternary ammonium compound":10, "quaternate":3, "quaternion":4, "quaternity":4, "quatorze":2, "quatorzes":3, "quatre":2, "quatre bras":3, "quaver":2, "quaverer":3, "quaveringly":4, "quaverous":3, "quavery":3, "que":1, "quean":1, "queanish":2, "queanlike":2, "queasier":3, "queasiest":3, "queasily":3, "queasiness":3, "queasy":2, "quechua":2, "quechuan":2, "queen":1, "queen anne's bounty":4, "queen charlotte islands":5, "queen consort":3, "queen dowager":4, "queen elizabeth islands":7, "queen mother":3, "queen of puddings":4, "queen olive":3, "queen regnant":3, "queen regent":3, "queen substance":3, "queen's counsel":3, "queen's county":3, "queen's english":3, "queen's evidence":4, "queen's highway":3, "queen's proctor":3, "queen's regulations":5, "queen's shilling":3, "queen's-flower":2, "queen-of-the-meadow":2, "queen-of-the-prairie":2, "queens":1, "queensberry rules":4, "queensland":2, "queensland lungfish":4, "queensland nut":3, "queenstown":2, "queenborough in sheppey":6, "queencake":2, "queendom":2, "queenfish":2, "queenfishes":3, "queenhood":2, "queenie":2, "queening":2, "queenless":2, "queenlike":2, "queenlier":3, "queenliest":3, "queenliness":3, "queenly":2, "queer":1, "queer-bashing":2, "quell":1, "quellable":3, "queller":2, "quelimane":4, "quelpart":2, "quelquechose":3, "quench":1, "quenchable":3, "quenchableness":4, "quencher":2, "quenchless":2, "quenchlessly":3, "quenchlessness":3, "quentin":2, "quenton":2, "quern":1, "quercetic":3, "quercetin":3, "quercia":2, "quercine":2, "quercitin":3, "quercitron":3, "quersprung":2, "querulous":3, "querurying":4, "ques":1, "quest":1, "quester":2, "questingly":3, "quesnay":2, "quesnel":2, "question":2, "question mark":3, "question master":4, "question time":3, "questionaries":4, "questionary":4, "questionability":6, "questionable":4, "questionableness":5, "questionably":4, "questioner":3, "questioning":3, "questioningly":4, "questionless":3, "questionnaire":3, "questor":2, "questorship":3, "quetsch":1, "quetta":2, "quetzal":2, "quetzalcoatl":5, "queue":1, "queuer":2, "queuing":2, "quey":1, "quebec":2, "quebecker":3, "quebecois":2, "quebecer":3, "quebecois":3, "quebracho":3, "quebrada":3, "quemoy":2, "queneau":2, "quenelle":2, "querist":2, "query":2, "queryingly":4, "quertaro":5, "quertaro":4, "quezal":2, "quezaltenango":5, "quezon city":4, "quezon y molina":6, "quibble":2, "quibbler":2, "quibbling":2, "quibblingly":3, "quibd":3, "quibus":2, "quiche":1, "quichua":2, "quick":1, "quick assets":3, "quick-change artist":3, "quick-firfreezing":3, "quick-firfroze":2, "quick-firfrozen":3, "quick-firing":2, "quick-setting":2, "quick-tempered":2, "quick-witted":2, "quicken":2, "quicker":2, "quickhatch":2, "quickie":2, "quicklime":2, "quickly":2, "quickness":2, "quicksand":2, "quickset":2, "quicksilver":3, "quicksilvery":4, "quickstep":2, "quickwittedness":4, "quickwork":2, "quid":1, "quidde":2, "quiddity":3, "quidnunc":2, "quiff":1, "quill":1, "quill":1, "quiller":2, "quillfish":2, "quillfishes":3, "quilling":2, "quillwort":2, "quilt":1, "quilted":2, "quilter":2, "quilting":2, "quillai":2, "quiller-couch":2, "quillet":2, "quilleted":3, "quillon":2, "quilmes":2, "quim":1, "quimper":2, "quin":1, "quince":1, "quinn":1, "quint":1, "quinte":1, "quinze":1, "quinazoline":4, "quinacrine":3, "quincentenary":5, "quincunx":2, "quincuncial":3, "quincuncially":4, "quincy":2, "quincy":2, "quindecagon":4, "quindecaplet":4, "quindecennial":5, "quindecillionth":4, "quinhydrone":3, "quinic acid":4, "quinia":3, "quinidine":3, "quinnat salmon":4, "quinoid":2, "quinol":2, "quinoxalin":4, "quinoxaline":4, "quinoline":3, "quinonoid":3, "quinquagenaries":5, "quinquagenary":5, "quinquagesima":5, "quinquagesimal":5, "quinquagenarian":6, "quinquennial":4, "quinquennium":4, "quinquecentenary":6, "quinquefid":3, "quinquefoil":3, "quinquefoliate":5, "quinquepartite":4, "quinquereme":3, "quinquevalence":4, "quinquevalent":4, "quinsied":2, "quinsy":2, "quintain":2, "quintal":2, "quintan":2, "quintant":2, "quintana roo":5, "quintessence":3, "quintessential":4, "quintessentially":5, "quintet":2, "quintette":2, "quintero":3, "quintic":2, "quintile":2, "quintilian":3, "quintillion":3, "quintillionth":3, "quinton":2, "quinton":2, "quintus":2, "quintuple":3, "quintuplet":3, "quintuplicate":4, "quintuplicated":5, "quintuplicating":5, "quintuplication":5, "quintuplity":4, "quip":1, "quipping":2, "quippish":2, "quippishness":3, "quippu":2, "quipster":2, "quire":1, "quirk":1, "quirkier":3, "quirkiest":3, "quirkily":3, "quirkiness":3, "quirky":2, "quirt":1, "quiring":2, "quirinal":3, "quist":1, "quisling":2, "quit":1, "quitch":1, "quite":1, "quits":1, "quitclaim":2, "quitrent":2, "quittance":2, "quittable":3, "quittor":2, "quiver":2, "quiverer":3, "quiverful":3, "quiveringly":4, "quivery":3, "quixote":2, "quixotic":3, "quixotism":3, "quixotical":4, "quixotically":5, "quiz":1, "quizmaster":3, "quizzable":3, "quizzer":2, "quizzes":2, "quizzing":2, "quizzical":3, "quizzicality":5, "quizzically":4, "quizzicalness":4, "quiberon":3, "quiescence":3, "quiescent":3, "quiescently":4, "quiescency":4, "quiet":2, "quieten":3, "quietener":4, "quieter":3, "quietism":3, "quietist":3, "quietistic":4, "quietly":3, "quietness":3, "quietude":3, "quietus":3, "quinarii":4, "quinarius":4, "quinate":2, "quinary":3, "quinine":2, "quinina":3, "quino":2, "quinoidal":3, "quinoidine":3, "quinone":2, "quinonimine":4, "quinoa":3, "quinua":2, "quipu":2, "quirinus":3, "quirites":3, "quito":2, "qum":1, "qumran":2, "qungur":2, "quo":1, "quo warranto":4, "quod":1, "quod erat demonstrandum":7, "quodlibet":3, "quodlibetz":3, "quodlibetic":4, "quodlibetical":5, "quodlibetically":6, "quoin":1, "quoit":1, "quoits":1, "quokka":2, "quondam":2, "quonset hut":3, "quorum":2, "quot":1, "quote":1, "quoteworthy":3, "quoth":1, "quotha":2, "quotable":3, "quoted":2, "quoter":2, "quoting":2, "quoties":3, "quorum":2, "quota":2, "quotation":3, "quotation mark":4, "quotidian":4, "quotidianly":5, "quotidianness":5, "quotient":2, "qur'an":2, "qutb":1, "qubec":3, "qubecois":3, "quran":2, "qmran":3, "r-color":2, "r-colored":2, "r-coloring":3, "r-less":1, "r-quality":3, "r-rna":1, "raab":1, "raaf":1, "rab":1, "rab":1, "rabban":2, "rabbath ammon":4, "rabbanim":3, "rabbet":2, "rabbeted":3, "rabbeting":3, "rabbi":2, "rabbin":2, "rabbinate":3, "rabbinic":3, "rabbinic":3, "rabbinism":3, "rabbinist":3, "rabbinite":3, "rabbinitic":4, "rabbinical":4, "rabbit":2, "rabbit fever":4, "rabbit punch":3, "rabbit-foot":2, "rabbit-proof fence":3, "rabbiter":3, "rabbitfish":3, "rabbitfishes":4, "rabbito":3, "rabbitoh":3, "rabbitry":3, "rabble":2, "rabble-rouse":2, "rabble-rouser":3, "rabble-rousing":3, "rabbler":2, "rabblement":3, "rabelais":3, "rabelaisian":5, "rabic":2, "rabid":2, "rabidity":4, "rabidly":3, "rabidness":3, "rabot":2, "rac":1, "race":1, "race":1, "race meeting":3, "race relations":4, "race riot":3, "raceabout":3, "racecard":2, "racecourse":2, "racegoer":3, "racehorse":2, "racerunner":3, "racetrack":2, "raceway":2, "rachides":3, "rachmanism":3, "rachmaninoff":4, "rachmaninov":4, "rack":1, "rack railway":3, "rack-and-pinion":2, "rack-renter":2, "rackboard":2, "racket":2, "racket press":3, "racket-tail":2, "rackets":2, "rackett":2, "racketeer":3, "racketlike":3, "rackety":3, "rackham":2, "rackle":2, "rackwork":2, "raccoon":2, "raccoon dog":3, "racer":2, "races":2, "racemise":3, "racemism":3, "racemize":3, "racemization":5, "racemose":3, "racemous":3, "racemously":4, "racemule":3, "racing":2, "racism":2, "racist":2, "racier":3, "raciest":3, "racily":3, "raciness":3, "raconteur":3, "racquet":2, "racy":2, "rad":1, "rada":1, "radcliffe":2, "raddle":2, "raddled":2, "raddleman":3, "radford":2, "radish":2, "radishlike":3, "radical":3, "radical axis":5, "radical sign":4, "radicalism":4, "radically":4, "radicalness":4, "radicand":3, "radicant":3, "radicel":3, "radices":3, "radicle":3, "radicly":3, "radnor":2, "radnorshire":3, "radula":3, "radular":3, "rae":1, "raec":1, "raeburn":2, "raeford":2, "raenell":2, "raetic":2, "raf":1, "raff":1, "raffish":2, "raffishly":3, "raffishness":3, "raft":1, "rafter":2, "rafvr":1, "rafael":3, "raffee":2, "rafferty":3, "rafferty's rules":4, "raffia":3, "raffinate":3, "raffinose":3, "raffle":2, "raffles":2, "raffles":2, "rafflesia":3, "rafflesia":4, "rafflesiaceous":5, "rag":1, "rage":1, "rags":1, "ragamuffin":4, "ragbag":2, "ragbolt":2, "ragfish":2, "ragfishes":3, "ragged":2, "ragged robin":4, "ragged school":3, "raggedly":3, "raggedness":3, "raggedy":3, "raggee":2, "ragging":2, "raggle":2, "raggle-taggle":3, "raggy":2, "ragi":2, "raging":2, "raglan":2, "raglan":2, "ragman":2, "ragnaror ragnarok":6, "ragnark":4, "ragpicker":3, "ragtag":2, "ragtime":2, "ragtimey":3, "ragweed":2, "ragwork":2, "ragworm":2, "ragwort":2, "rah":1, "rah-rah":1, "rahman":2, "raid":1, "raider":2, "rail":1, "rail-splitter":2, "railcar":2, "railer":2, "railhead":2, "railing":2, "railingly":3, "raillery":3, "railroad":2, "railroader":3, "railroading":3, "railway":2, "railwayed":2, "railwayless":3, "railwayman":3, "rain":1, "rain shadow":3, "rains":1, "rains":1, "rainband":2, "rainbird":2, "rainbow":2, "rainbow bird":3, "rainbow bridge":3, "rainbow trout":3, "rainbows":2, "rainbowlike":3, "rainbowy":3, "raincheck":2, "raincoat":2, "raindrop":2, "rainfall":2, "rainforest":3, "rainier":3, "rainiest":3, "rainily":3, "raininess":3, "rainless":2, "rainlessness":3, "rainmaker":3, "rainmaking":3, "rainout":2, "rainproof":2, "rainstorm":2, "rainwater":3, "rainwater pipe":4, "rainwear":2, "rainy":2, "rainy day":3, "raise":1, "raised":1, "raiseable":3, "raisable":3, "raiser":2, "raising":2, "raiment":2, "raimondi":3, "rainer":2, "rainier":2, "rainier":3, "rainier iii":4, "raisin":2, "raisiny":3, "raison d'tre":4, "raj":1, "raj":1, "rajkot":2, "rajpoot":2, "rajput":2, "rajputana":4, "rake":1, "raked":1, "rakehell":2, "raker":2, "raking":2, "rakish":2, "rakishly":3, "rakishness":3, "rale":1, "rall":1, "ralph":1, "rals":1, "rallentando":4, "rallied":2, "ralline":2, "rallier":3, "ralliform":3, "rally":2, "rally round":3, "rallye":2, "rallycross":3, "rallying":3, "ralston":2, "ram":1, "ram":1, "ram":1, "ram-air turbine":3, "ramc":1, "ramp":1, "rampantly":3, "rampingly":3, "ramsden":2, "ramsgate":2, "ramadan":3, "ramazan":3, "rambam":2, "rambert":2, "rambla":2, "ramble":2, "rambler":2, "rambling":2, "ramblingly":3, "ramblingness":3, "rambouillet":3, "rambunctious":3, "rambutan":3, "ramee":2, "ramentaceous":4, "ramekin":3, "ramequin":3, "rameses":3, "rameses ii":4, "rameses iii":4, "ramie":2, "ramified":3, "ramification":5, "ramiform":3, "ramify":3, "ramifying":4, "ramjet":2, "ramjet engine":4, "ramlike":2, "rammer":2, "ramming":2, "rammish":2, "rammishness":3, "rammohun":3, "rampage":2, "rampaged":2, "rampager":3, "rampaging":3, "rampant":2, "rampart":2, "rampageous":3, "rampick":2, "rampike":2, "rampion":3, "rampur":2, "ramrod":2, "ramrodded":3, "ramrodding":3, "ramsay":2, "ramses":2, "ramses ii":3, "ramses iii":3, "ramsey":2, "ramshackle":3, "ramshackleness":4, "ramson":2, "ramsons":2, "ramstam":2, "ramtil":2, "ramulose":3, "ramulous":3, "ran":1, "ran":1, "ran":1, "rance":1, "ranch":1, "rancher":2, "rancherie":3, "ranchless":2, "ranchlike":2, "ranchman":2, "rand":1, "rand":1, "randers":2, "randies":2, "randy":2, "rang":1, "range":1, "ranged":1, "rangefinder":3, "ranger":2, "ranger":2, "ranger guide":3, "ranging":2, "ranging pole":3, "rangier":3, "rangiest":3, "rangpur":2, "rangy":2, "rank":1, "rank":1, "rank-and-filer":2, "ranker":2, "ranking":2, "rankish":2, "rankless":2, "rankly":2, "rankness":2, "rant":1, "ranter":2, "rantingly":3, "rancagua":3, "ranchero":3, "ranchi":2, "rancho":2, "rancid":2, "rancidity":4, "rancidly":3, "rancidness":3, "rancor":2, "rancorous":3, "rancorously":4, "rancorousness":4, "rancour":2, "rancoured":2, "randan":2, "randie":2, "randolph":2, "random":2, "random access":4, "randomise":3, "randomize":3, "randomly":3, "randomness":3, "randy":2, "rangoon":2, "ranjit singh":3, "ranket":2, "rankett":2, "rankin":2, "rankine":2, "rankine scale":3, "rankle":2, "ransack":2, "ransacker":3, "ranseur":2, "ransom":2, "ransom":2, "ransome":2, "ransomer":3, "rantoul":2, "ranula":3, "ranular":3, "raoc":1, "rap":1, "rape":1, "rapeoil":2, "rapeseed":2, "raphael":3, "raphaelle":3, "raphia":3, "raphides":3, "rapp":1, "rappist":2, "rapt":1, "rapid":2, "rapid eye movement":5, "rapid fire":3, "rapid-fire":2, "rapids":2, "rapidly":3, "rapine":2, "raping":2, "rapist":2, "rapidan":3, "raploch":2, "rapparee":3, "rappee":2, "rappel":2, "rappelled":2, "rappelling":3, "rapper":2, "rapping":2, "rapport":2, "rapporteur":3, "rapprochement":3, "rapscallion":3, "raptor":2, "raptorial":4, "rapture":2, "raptureless":3, "rapturous":3, "rapturously":4, "rapturousness":4, "raptus":2, "rare":1, "rarebit":2, "rarely":2, "rareness":2, "rareripe":2, "rarer":2, "rarest":2, "rarefaction":4, "rarefactional":5, "rarefactive":4, "rarefied":3, "rarefiable":5, "rarefication":5, "rarefier":4, "rarefy":3, "rarefying":4, "raring":2, "raritan":3, "rarity":3, "ras":1, "rasc":1, "rase":1, "rash":1, "rasht":1, "rasher":2, "rashlike":2, "rashly":2, "rask":1, "rasp":1, "raspberry":3, "rasper":2, "rasping":2, "raspings":2, "raspingly":3, "raspingness":3, "raspier":3, "raspiest":3, "raspy":2, "rasbora":3, "rascal":2, "rascality":4, "rascallike":3, "rascally":3, "rascasse":2, "raser":2, "rasing":2, "raskolnik":3, "raskolniks":3, "raskolniki":4, "rasmussen":3, "rasophore":3, "raspatory":4, "rasputin":3, "rasse":2, "rastafarian":5, "raster":2, "rastle":2, "rastus":2, "rat":1, "rat kangaroo":4, "rat-catcher":2, "rat-kangaroo":3, "rat-stripper":2, "rat-tat":1, "ratch":1, "ratchet":2, "rate":1, "rate of exchange":4, "rates":1, "rateability":5, "rateable":3, "rateable value":5, "rateableness":4, "rateably":3, "ratepayer":3, "ratepaying":3, "rath":1, "ratha":1, "rathe":1, "rathely":2, "ratheness":2, "rathskeller":3, "rathbone":2, "rather":2, "rato":1, "rats":1, "ratsbane":2, "ratskeller":3, "ratal":2, "ratability":5, "ratable":3, "ratable value":5, "ratableness":4, "ratably":3, "ratafee":3, "ratafia":4, "rataplan":3, "rataplanned":3, "rataplanning":4, "ratatat":3, "ratatat-tat":3, "ratbag":2, "ratbaggery":4, "ratbite fever":4, "ratcatcher":3, "rated":2, "rater":2, "ratfink":2, "ratfish":2, "rathaus":2, "rathole":2, "rathuser":4, "rating":2, "ratisbon":3, "ratite":2, "ratified":3, "ratificationist":6, "ratifier":4, "ratify":3, "ratifying":4, "ratin":3, "ratin":4, "ratlam":2, "ratlike":2, "ratlin":2, "ratline":2, "rattail":2, "rattan":2, "ratted":2, "ratteen":2, "ratten":2, "rattener":3, "rattening":3, "ratter":2, "ratting":2, "rattish":2, "rattier":3, "rattiest":3, "rattigan":3, "rattle":2, "rattle-bush":2, "rattlebox":3, "rattlebrain":3, "rattlebrained":3, "rattlehead":3, "rattleheaded":4, "rattlepate":3, "rattlesnake":3, "rattlesnake plantain":5, "rattletrap":3, "rattling":2, "rattlingly":3, "rattly":2, "ratton":2, "rattoon":2, "rattrap":2, "ratty":2, "raught":1, "raunchy":2, "raucity":3, "raucous":2, "raucously":3, "raucousness":3, "raurich":2, "rauschenburg":3, "rauschenbusch":3, "rauwolfia":4, "ravc":1, "rave":1, "ravelin":2, "ravage":2, "ravaged":2, "ravagement":3, "ravager":3, "ravaging":3, "ravel":2, "raveler":3, "raveling":3, "raveller":3, "ravelling":3, "ravelly":3, "ravelment":3, "raven":2, "ravening":3, "raveningly":4, "ravenous":3, "ravenously":4, "raver":2, "ravin":2, "raving":2, "ravish":2, "ravishedly":3, "ravisher":3, "ravishing":3, "ravishingly":4, "ravishment":3, "raw":1, "raw material":5, "rawlplug":2, "rawsthorne":2, "rawboned":2, "rawhide":2, "rawish":2, "rawishness":3, "rawlings":2, "rawlins":2, "rawlinson":3, "rawly":2, "rawness":2, "ray":1, "ray":1, "ray flower":3, "rayne":1, "rayburn":2, "rayleigh":2, "rayleigh disc":3, "rayless":2, "raylessness":3, "raylet":2, "raymond":2, "raymondville":3, "raynelle":2, "rayner":2, "rayon":2, "rayonny":3, "rayville":2, "raze":1, "razz":1, "razzmatazz":3, "razee":2, "razer":2, "razing":2, "razzia":3, "razzle-dazzle":3, "raamses":3, "rabal":2, "rabat":2, "rabaul":2, "rabato":3, "rabi":2, "rabi":2, "rabies":2, "rabia":3, "rabinowitz":4, "raceme":2, "racemed":2, "racemic":3, "racemic acid":5, "racemiform":4, "rachel":2, "rachidian":4, "rachilla":3, "rachillae":3, "rachis":2, "rachises":3, "rachitic":3, "rachiform":3, "rachitis":3, "racial":2, "racial unconscious":5, "racialism":3, "racialist":3, "racialistic":4, "racially":3, "racine":2, "racinage":3, "racon":2, "racoon":2, "radar":2, "radar beacon":4, "radar trap":3, "radarman":3, "radarscope":3, "radeau":2, "radectomy":4, "radetzky":3, "radha":2, "radhakrishnan":4, "radiculitis":5, "radiculose":4, "radix":2, "radix point":3, "radial":3, "radial engine":5, "radial symmetry":6, "radial tyre":4, "radial velocity":7, "radial-ply":3, "radian":3, "radiance":3, "radiant":3, "radiant efficiency":7, "radiant energy":6, "radiant exitance":6, "radiant flux":4, "radiant heat":4, "radiant heating":5, "radiant intensity":7, "radiantly":4, "radiancy":4, "radiate":3, "radiated":4, "radiating":4, "radiable":4, "radiably":4, "radiation":4, "radiation pattern":6, "radiation sickness":6, "radiational":5, "radiative":4, "radiator":4, "radiatory":5, "radiatus":4, "radiguet":3, "radii":3, "radio":3, "radio astronomy":7, "radio beam":4, "radio beacon":5, "radio compass":5, "radio control":5, "radio frequency":6, "radio interferometer":9, "radio source":4, "radio spectrum":5, "radio star":4, "radio station":5, "radio telescope":6, "radio valve":4, "radio wave":4, "radio window":5, "radio-opaque":4, "radioed":3, "radiographer":5, "radiography":5, "radiologist":5, "radiology":5, "radiolysis":5, "radiometer":5, "radiometry":5, "radios":3, "radioscopy":5, "radioactinium":7, "radioactive":5, "radioactive decay":7, "radioactive series":7, "radioactively":6, "radioactivity":7, "radioactivate":6, "radioactivated":7, "radioactivating":7, "radioautography":7, "radioautograph":6, "radiobiologist":7, "radiobiology":7, "radiobiological":8, "radiobroadcast":5, "radiobroadcasted":6, "radiobroadcaster":6, "radiobroadcasting":6, "radiocarbon":5, "radiocarbon dating":7, "radiochemist":5, "radiochemistry":6, "radiochemical":6, "radiocommunication":8, "radiodiagnosis":7, "radioelement":6, "radiofrequency":6, "radiogenic":5, "radiogram":4, "radiograph":4, "radiographic":5, "radiographically":7, "radioing":4, "radioiron":5, "radioisotope":6, "radioisotopic":7, "radiolarian":6, "radiologic":5, "radiological":6, "radiologically":7, "radiolocation":6, "radiolucence":5, "radiolucent":5, "radiolucency":6, "radioluminescence":7, "radioluminescent":7, "radioman":4, "radiometric":5, "radiometeorograph":8, "radiomicrometer":7, "radionuclide":5, "radiopacity":6, "radiopaque":4, "radiophare":4, "radiophone":4, "radiophonic":5, "radiophosphorus":6, "radiophoto":5, "radiophotography":7, "radiophotogram":6, "radiophotograph":6, "radioscope":4, "radioscopic":5, "radiosensitive":6, "radiosonde":4, "radiostrontium":6, "radiosurgery":6, "radiosymmetrical":7, "radiotelegram":6, "radiotelegraph":6, "radiotelegraphic":7, "radiotelephone":6, "radiotelephoned":6, "radiotelephonic":7, "radiotelephoning":7, "radioteletype":6, "radiotelegraphy":7, "radiotelemetry":7, "radiotelephony":7, "radiothermy":5, "radiotherapist":6, "radiotherapy":6, "radiothermy":5, "radiothorium":6, "radiotoxic":5, "radiotracer":5, "radiotransparent":6, "radiotransparency":7, "radium":3, "radium therapy":6, "radius":3, "radius of curvature":7, "radius vector":5, "radom":2, "radome":2, "radon":2, "rafael":3, "rafer":2, "rafrachissoir":5, "raga":2, "ragout":2, "ragusa":3, "rahab":2, "raia":2, "raja":2, "rajab":2, "rajah":2, "rajas":2, "rajasic":3, "rajasthan":3, "rajasthani":4, "rajendra":3, "rajya sabha":4, "rakata":3, "rakee":2, "raki":2, "ralegh":2, "raleigh":2, "rama":2, "ramal":2, "raman effect":4, "ramark":2, "ramat gan":3, "ramachandra":4, "ramakrishna":4, "ramanujan":4, "ramayana":4, "rameau":2, "ramentum":3, "rami":2, "ramillies":3, "ramon":2, "ramon":2, "ramoon":2, "ramose":2, "ramous":2, "ramona":3, "ramus":2, "rame":3, "ramn":3, "ranee":2, "rani":2, "ranunculaceous":5, "ranunculi":4, "ranunculus":4, "ranunculuses":5, "raob":2, "raoul":2, "rapa nui":4, "rapacity":4, "rapacki":3, "rapallo":3, "rapacious":3, "rapaciously":4, "raphe":2, "raphide":2, "raphis":2, "rapidity":4, "rapier":3, "rapiered":3, "rara avis":4, "raree show":3, "rarotonga":4, "rarotonga":4, "rasa":2, "rashi":2, "rashid":2, "rashidov":3, "rason":2, "rasorial":4, "rasure":2, "rata":2, "ratal":2, "ratan":2, "ratatouille":3, "rateen":2, "ratel":2, "rateuses":3, "rather":2, "rathenau":3, "ratine":2, "ratio":2, "ration":2, "rations":2, "rational":3, "rational number":5, "rationale":3, "rationalise":4, "rationalised":4, "rationalism":4, "rationaliser":5, "rationalising":5, "rationalize":4, "rationalized":4, "rationalizer":5, "rationalizing":5, "rationality":5, "rationalization":6, "rationally":4, "rationalness":4, "ratine":3, "ratio":3, "ratiocinate":5, "ratiocinated":6, "ratiocinating":6, "ratiocination":6, "ratiocinator":6, "ratios":3, "raton":2, "ratoon":2, "ravana":3, "ravel":2, "raven":2, "raven":2, "ravenswood":3, "ravenna":3, "ravine":2, "raviney":3, "ravigote":3, "ravioli":4, "ravonelle":3, "rawalpindi":4, "rawin":2, "rawinsonde":3, "raya":2, "rayah":2, "razee":2, "razeed":2, "razeeing":3, "razoo":2, "razor":2, "razor-billed auk":3, "razor-cut":2, "razor-shell":2, "razorback":3, "razorbill":3, "razorfish":3, "razorfishes":4, "razorless":3, "ral":3, "rbe":1, "rca":1, "rcaf":1, "rcd":1, "rch":1, "rcm":1, "rcmp":1, "rcn":1, "rco":1, "rcp":1, "rcpt":1, "rcs":1, "rct":1, "rct":1, "rcvs":1, "re-act":1, "re-cede":1, "re-collect":2, "re-collection":3, "re-cover":2, "re-create":2, "re-created":3, "re-creating":3, "re-creation":3, "re-creator":3, "re-echo":2, "re-educate":3, "re-education":4, "re-enlistment":3, "re-enter":2, "re-entering angle":5, "re-entrance":2, "re-entrant":2, "re-entry":2, "re-examine":3, "re-export":2, "re-exporter":3, "re-exportation":4, "re-form":1, "re-fund":1, "re-laid":1, "re-lay":1, "re-pose":1, "re-present":2, "re-record":2, "re-sign":1, "re-soluble":3, "re-sort":1, "re-up":1, "reach":1, "reachable":3, "reacher":2, "read":1, "read":1, "read into":3, "reade":1, "readability":5, "readable":3, "readablendwriting":3, "readably":3, "reader":2, "readership":3, "readied":2, "reading":2, "reading":2, "readier":3, "readiest":3, "readily":3, "readiness":3, "ready":2, "ready money":4, "ready reckoner":5, "ready-made":2, "ready-mix":2, "ready-mixed":2, "ready-to-wear":2, "ready-witted":3, "ready-wittedly":4, "ready-wittedness":4, "readying":3, "realm":1, "ream":1, "reamer":2, "rean":1, "reap":1, "reapable":3, "reaper":2, "rear":1, "rear admiral":4, "rear-view mirror":3, "rearguard":2, "rearmost":2, "rearmouse":2, "rearward":2, "rearwards":2, "rearwardness":3, "reast":1, "reave":1, "reaving":2, "reason":2, "reasoned":2, "reasonedly":3, "reasonability":6, "reasonable":4, "reasonableness":5, "reasonably":4, "reasoner":3, "reasoning":3, "reasoningly":4, "reasonless":3, "reasonsured":3, "reasonsuring":4, "reb":1, "rebbe":2, "rebbelled":2, "rebbelling":3, "rebel":2, "rebeldom":3, "rebellike":3, "reboant":3, "rec":1, "rec'd":1, "rec't":1, "recd":1, "rechabite":3, "recit":1, "reck":1, "reckless":2, "recklinghausen":4, "reckon":2, "reckonable":4, "reckoner":3, "reckoning":3, "rect":1, "rect":1, "recce":2, "recco":2, "recipe":3, "reciprocity":5, "reciprocity failure":7, "recitatif":4, "recitation":4, "recitative":4, "recitativo":5, "reclamation":4, "reclinate":3, "reclination":4, "reclivate":3, "recluse":2, "recognise":3, "recognised":3, "recogniser":4, "recognising":4, "recognize":3, "recognized":3, "recognizable":5, "recognizably":5, "recognizer":4, "recognizing":4, "recognition":4, "recollect":3, "recollected":4, "recollectedly":5, "recollectedness":5, "recollection":4, "recollective":4, "recollectively":5, "recollectiveness":5, "recommend":3, "recommendable":5, "recommendatory":6, "recommender":4, "recommendation":5, "recompense":3, "recompensed":3, "recompensing":4, "recompensable":5, "reconcile":3, "reconciled":3, "reconcilement":4, "reconcilability":7, "reconcilable":5, "reconcilableness":6, "reconcilably":5, "reconciler":4, "reconciling":4, "reconciliatory":7, "recondite":3, "reconditely":4, "reconditeness":4, "reconnoitre":4, "record":2, "record-changer":3, "record-player":3, "recordless":3, "recreance":3, "recreant":3, "recreantly":4, "recreancy":4, "recreate":3, "recreation":4, "recreation ground":5, "recreational":5, "recreative":4, "recreatively":5, "recreativeness":5, "recreator":4, "recreatory":5, "recrement":3, "recta":2, "rectal":2, "rectangle":3, "rectangular":4, "rectangular coordinates":8, "rectangular hyperbola":8, "rectangularity":6, "rectangularly":5, "rectectomy":4, "recti":2, "rectified":3, "rectification":5, "rectifier":4, "rectify":3, "rectifying":4, "rectilineal":5, "rectilinear":5, "rectitude":3, "recto":2, "rector":2, "rectocele":3, "rectorial":4, "rectory":3, "rectrix":2, "rectrices":3, "rectricial":3, "rectum":2, "rectus":2, "recusant":3, "recusancy":4, "red":1, "red":1, "red admiral":4, "red algae":3, "red biddy":3, "red brigades":3, "red carpet":3, "red cedar":3, "red china":3, "red clover":3, "red coral":3, "red corpuscle":4, "red crescent":3, "red duster":3, "red ensign":3, "red giant":3, "red herring":3, "red indian":4, "red mullet":3, "red ochre":3, "red osier":3, "red packet":3, "red pepper":3, "red planet":3, "red river":3, "red salmon":3, "red setter":3, "red snapper":3, "red spider":3, "red squirrel":3, "red-alder":2, "red-blooded":2, "red-bloodedness":3, "red-dog":1, "red-dogger":2, "red-facedly":3, "red-figure":2, "red-handed":2, "red-headed":2, "red-hot":1, "red-hot poker":3, "red-legged partridge":4, "red-letter":2, "red-letter day":3, "red-pencil":2, "red-penciled":2, "red-pencilled":2, "red-penciling":3, "red-pencilling":3, "red-water":2, "redd":1, "redded":2, "redding":2, "rede":1, "redupl":1, "redback spider":4, "redbird":2, "redbone":2, "redbreast":2, "redbrick":2, "redbridge":2, "redbud":2, "redbug":2, "redcap":2, "redcoat":2, "redcurrant":3, "redden":2, "redder":2, "reddest":2, "redding":2, "redding":2, "reddish":2, "redditch":2, "reddle":2, "reddledogged":3, "reddledogging":4, "reddleman":3, "reded":2, "redeye":2, "redfield":2, "redfin":2, "redfish":2, "redfishes":3, "redford":2, "redgrave":2, "redhandedness":4, "redhead":2, "redhibitory":5, "redhibition":4, "redhorse":2, "reding":2, "redingote":3, "redintegrate":4, "redintegrated":5, "redintegrating":5, "redintegration":5, "redintegrative":5, "redivivus":4, "redlands":2, "redleg":2, "redleg":2, "redly":2, "redmond":2, "redneck":2, "redness":2, "redolence":3, "redolent":3, "redolently":4, "redolency":4, "redowa":3, "redpoll":2, "redroe":2, "redroot":2, "redshank":2, "redskin":2, "redstart":2, "redstone":2, "redtapism":3, "redtop":2, "reduzate":3, "redware":2, "redwing":2, "redwood":2, "redwud":2, "reed":1, "reed":1, "reed bunting":3, "reed organ":3, "reed warbler":3, "reedsburg":2, "reedsport":2, "reedbird":2, "reedbuck":2, "reeding":2, "reedier":3, "reediest":3, "reediness":3, "reedley":2, "reedling":2, "reedy":2, "reef":1, "reef":1, "reefer":2, "reeffish":2, "reeffishes":3, "reefing jacket":4, "reek":1, "reeker":2, "reekingly":3, "reeky":2, "reel":1, "reeler":2, "reem":1, "reen":1, "reencounter":3, "reest":1, "reeve":1, "reeving":2, "reebok":2, "reeda":2, "reefer":2, "ref":1, "refer":1, "refl":1, "reft":1, "referee":3, "reference":3, "reference book":4, "referenced":3, "referencing":4, "referent":3, "referendum":4, "referential":4, "reffing":2, "reffo":2, "refluence":3, "refluent":3, "reformation":4, "reformation":4, "refuge":2, "refuged":2, "refuging":3, "refuse":2, "refugee":3, "refutably":4, "refutation":4, "reg":1, "reg":1, "regd":1, "regt":1, "reggae":2, "reggie":2, "reggio di calabria":6, "reggio nell'emilia":5, "reggy":2, "registh":2, "register":3, "register ton":4, "registered":3, "registered post":4, "registerable":5, "registerer":4, "registrant":3, "registrar":3, "registrarship":4, "registrate":3, "registrated":4, "registrating":4, "registrability":6, "registrable":4, "registration":4, "registration number":6, "registrational":5, "registry":3, "registry office":5, "regicide":3, "regicidal":4, "regimen":3, "regiment":3, "regimental":4, "regimentals":4, "regimentally":5, "regimentation":5, "reglet":2, "regma":2, "regmata":3, "regnal":2, "regnant":2, "rego":2, "regolith":3, "regosol":3, "regular":3, "regularise":4, "regularize":4, "regularizer":5, "regularity":5, "regularization":6, "regularly":4, "regularness":4, "regulate":3, "regulated":4, "regulating":4, "regulable":4, "regulation":4, "regulative":4, "regulatively":5, "regulator":4, "reguli":3, "reguline":3, "regulus":3, "regulus":3, "reguluses":4, "reich":1, "reichsbank":2, "reichsfhrer":4, "reichsmark":2, "reichsmark":2, "reichsrat":2, "reichsrath":2, "reichstag":2, "reichsthaler":3, "reichenberg":3, "reichstein":2, "reid":1, "reif":1, "reign":1, "reign of terror":4, "reik":1, "reims":1, "rein":1, "reins":1, "reindeer":2, "reindeer lake":3, "reindeer moss":3, "reinhardt":2, "reinhold":2, "reis":1, "reist":1, "reith":1, "reive":1, "reiver":2, "reiving":2, "reichenbach":3, "reichenberg":3, "reigate":2, "reimarus":3, "reinecke":3, "rel":1, "relative":3, "relative aperture":6, "relative atomic mass":7, "relative density":6, "relative frequency":6, "relative humidity":7, "relative majority":7, "relative molecular mass":8, "relative permeability":9, "relative permittivity":8, "relativeness":4, "relativise":4, "relativism":4, "relativist":4, "relativistic":5, "relativize":4, "relativity":5, "relegate":3, "relegated":4, "relegating":4, "relegable":4, "relegation":4, "relevance":3, "relevant":3, "relevantly":4, "relevancy":4, "relic":2, "relict":2, "relique":2, "relish":2, "relishable":4, "relishingly":4, "reliquaries":4, "reliquary":4, "reluctivimined":5, "reluctivimining":6, "reluctivity":5, "rem":1, "rem":1, "reme":1, "remanence":3, "remanent":3, "remblai":2, "rembrandt":2, "rembrandtesque":3, "rembrandtish":3, "remedied":3, "remediless":4, "remedy":3, "remedying":4, "remington":3, "remiform":3, "remiges":3, "remigrant":3, "reminisce":3, "reminisced":3, "reminiscing":4, "reminiscence":4, "reminiscent":4, "remnant":2, "remontoir":3, "remontoire":3, "remora":3, "remscheid":2, "remsen":2, "rend":1, "render":2, "rending":2, "rendible":3, "rennes":1, "rensselaer":3, "rensselaerite":4, "rent":1, "rente":1, "rental":2, "rentability":5, "rentable":3, "renter":2, "renaissance":3, "renard":2, "renardine":3, "rencontre":3, "render":2, "renderable":4, "renderer":3, "rendering":3, "rendezvous":3, "rendition":3, "rendu":2, "rendzina":3, "renegade":3, "renfrew":2, "renfrewshire":3, "renga":2, "reniform":3, "rennet":2, "rennie":2, "rennin":2, "renovate":3, "renovated":4, "renovating":4, "renovation":4, "renovative":4, "renovator":4, "rentier":2, "renton":2, "renvers":4, "renvoi":2, "rep":1, "rep":1, "repp":1, "repr":1, "rept":1, "repub":1, "repartee":3, "repartition":4, "reparable":4, "reparably":4, "reparation":4, "repertoire":3, "repertory":4, "repertory company":7, "repechage":3, "repetend":3, "repetition":4, "repetitious":4, "repetitiousness":5, "replica":3, "replicate":3, "replicated":4, "replication":4, "reportorial":5, "reportorially":6, "repplier":2, "reprehend":3, "reprehendable":5, "reprehender":4, "reprehension":4, "reprehensibility":7, "reprehensible":5, "reprehensibleness":6, "reprehensibly":5, "represent":3, "representative":5, "representatively":6, "representativeness":6, "representation":5, "representational":6, "representationalism":7, "representationalist":7, "representationalistic":8, "representationism":6, "reprimand":3, "reprimander":4, "reprimandingly":5, "reprobate":3, "reprobated":4, "reprobating":4, "reprobation":4, "reprobationary":6, "reprobative":4, "reprobatively":5, "reptant":2, "reptile":2, "reptilelike":3, "reptilia":4, "reptilian":4, "reptiloid":3, "reputability":6, "reputable":4, "reputableness":5, "reputably":4, "reputation":4, "reputationless":5, "req":1, "requiem":3, "requiem":3, "requiem shark":4, "requiescat":4, "requisite":3, "requisitely":4, "requisiteness":4, "requisition":4, "requisitionary":6, "requisitioner":5, "requisitionist":5, "reredos":2, "reremouse":2, "res":1, "res adjudicata":6, "res gestae":3, "res ipsa loquitur":6, "res judicata":5, "res publica":4, "resh":1, "resht":1, "resp":1, "rest":1, "rester":2, "restful":2, "restfully":3, "restfulness":3, "restharrow":3, "resting":2, "resting place":3, "restless":2, "restlessly":3, "restlessness":3, "reszke":2, "rescue":2, "rescued":2, "rescuing":3, "reserpine":3, "reservaserved":4, "reservaserving":5, "reservation":4, "reservoir":3, "reseda":3, "resedaceous":4, "resignation":4, "resin":2, "resinate":3, "resiniferous":5, "resinified":4, "resinify":4, "resinifying":5, "resinoid":3, "resinous":3, "resinously":4, "resinousness":4, "resiny":3, "residence":3, "resident":3, "resident commissioner":7, "residentship":4, "residenaries":5, "residency":4, "residential":4, "residentiary":5, "residue":3, "resipiscence":4, "resnais":2, "resnatron":3, "resorcinol":4, "resorcinolphthalein":7, "resolute":3, "resolutely":4, "resoluteness":4, "resolution":4, "resolutioner":5, "resolutionist":5, "resonance":3, "resonant":3, "resonant cavity":6, "resonantly":4, "resonate":3, "resonated":4, "resonating":4, "resonation":4, "resonator":4, "respirable":4, "respite":2, "respited":3, "respiting":3, "respiration":4, "respirational":5, "respirator":4, "respiratory":5, "respirometry":5, "ressentiment":4, "restaurant":3, "restaurant car":4, "restaurateur":4, "restive":2, "restively":3, "restiveness":3, "restiform":3, "restitution":4, "restitutive":4, "restitutory":5, "reston":2, "restoration":4, "restoration":4, "restorationism":5, "resurrect":3, "resurrection":4, "resurrection":4, "resurrection plant":5, "resurrectional":5, "resurrectionary":6, "resurrectionism":5, "resurrectionist":5, "resurrective":4, "ret":1, "retch":1, "retd":1, "retributory":4, "rets currach":3, "reticent":3, "reticle":3, "reticule":3, "retina":3, "retinaculum":5, "retinae":3, "retinas":3, "retinene":3, "retinite":3, "retinitis":4, "retinol":3, "retinoscopy":5, "retinoscope":4, "retinue":3, "retinued":3, "retribution":4, "retro":2, "retro-operative":5, "retro-rock":2, "retroussage":3, "retrouss":4, "retroact":3, "retroaction":4, "retroactive":4, "retroactive inhibition":8, "retrobition":4, "retrobulbar":4, "retrocede":3, "retroceded":4, "retroceding":4, "retrocession":4, "retrocessive":4, "retrochoir":3, "retrodirective":5, "retrofire":3, "retrofit":3, "retroflection":4, "retroflex":3, "retroflexed":3, "retroflexion":4, "retrograde":3, "retrogradely":4, "retrograded":4, "retrograding":4, "retrogradingly":5, "retrogradation":5, "retrogradatory":6, "retrogress":3, "retrogression":4, "retrogressive":4, "retrogressively":5, "retroject":3, "retrolental":4, "retropack":3, "retrorocket":4, "retroserrate":4, "retroserrulate":5, "retrospect":3, "retrospection":4, "retrospective":4, "retrospectively":5, "retrospectiveness":5, "retroversion":4, "retrovertruded":5, "retrovertruding":5, "retsina":3, "retted":2, "retting":2, "reuchlin":2, "reutlingen":3, "reuben":2, "reuter":2, "reuther":2, "rev":1, "rev":1, "rev counter":3, "revd":1, "reveverberatory":6, "reveille":3, "revel":2, "reveled":2, "revelled":2, "reveling":3, "revelling":3, "revelry":3, "reverence":3, "reverence":3, "reverencer":4, "reverend":3, "reverend":3, "reverend mother":5, "reverendship":4, "reverent":3, "reverential":4, "reverentially":5, "reverentiality":7, "reverie":3, "revery":3, "revelation":4, "revelation":4, "revelational":5, "revelationist":5, "revelator":4, "revenant":3, "revenue":3, "revenue cutter":5, "revenue tariff":5, "revenued":3, "revenual":4, "revenuer":4, "reviviscence":4, "reviviscent":4, "reviviscency":5, "revocability":6, "revocable":4, "revocableness":5, "revocably":4, "revocation":4, "revocative":4, "revolute":3, "revolution":4, "revolutionaries":6, "revolutionarily":7, "revolutionariness":7, "revolutionary":6, "revolutionary":6, "revolutionary calendar":9, "revolutionary wars":7, "revolutionise":5, "revolutionised":5, "revolutionist":5, "revolutionising":6, "revolutionize":5, "revolutionized":5, "revolutionizer":6, "revolutionizing":6, "revving":2, "rex":1, "rexane":2, "rexana":3, "rexburg":2, "rexist":2, "rexmond":2, "rexroth":2, "reynard":2, "reynolds":2, "reynoldsburg":3, "reynoldsville":3, "reykjavik":3, "reymont":2, "reynaud":2, "reynolds number":4, "reynosa":3, "rez-de-chausse":3, "rez-de-chausses":3, "re-enforce":3, "rea silvia":5, "reabsorb":3, "reabsorption":4, "react":2, "reaccede":3, "reacceded":4, "reacceding":4, "reaccelerate":5, "reaccelerated":6, "reaccelerating":6, "reaccent":3, "reaccentuate":5, "reaccentuated":6, "reaccentuating":6, "reaccept":3, "reacceptance":4, "reaccession":4, "reacclaim":3, "reacclimate":4, "reacclimated":5, "reacclimating":5, "reacclimatize":5, "reacclimatized":5, "reacclimatizing":6, "reacclimatization":7, "reaccommodate":5, "reaccommodated":6, "reaccommodating":6, "reaccompanied":5, "reaccompany":5, "reaccompanying":6, "reaccredit":4, "reaccuse":3, "reaccused":3, "reaccusing":4, "reaccustom":4, "reaccumulate":5, "reaccumulated":6, "reaccumulating":6, "reaccumulation":6, "reaccusation":5, "reacknowledge":4, "reacknowledged":4, "reacknowledging":5, "reacknowledgment":5, "reacquaint":3, "reacquaintance":4, "reacquire":3, "reacquired":3, "reacquiring":4, "reacquisition":5, "reactance":3, "reactant":3, "reaction":3, "reaction engine":5, "reaction formation":6, "reaction turbine":5, "reactionarism":5, "reactionary":5, "reactionaryism":6, "reactionism":4, "reactionist":4, "reactive":3, "reactively":4, "reactivate":4, "reactivated":5, "reactivating":5, "reactivation":5, "reactor":3, "readd":2, "readaptation":5, "readdition":4, "readdress":3, "readdrest":3, "readdressing":4, "readjourn":3, "readjournment":4, "readjust":3, "readjustable":5, "readjuster":4, "readjustment":4, "readjudicate":5, "readjudicated":6, "readjudicating":6, "readjudication":6, "readmission":4, "readmit":3, "readmittance":4, "readmitted":4, "readmitting":4, "readvertise":4, "readvertised":4, "readvertisement":5, "readvertising":5, "readvertize":4, "readvertized":4, "readvertizing":5, "readvise":3, "readvised":3, "readvising":4, "readvocate":4, "readvocated":5, "readvocating":5, "readvocation":5, "reaffect":3, "reaffiliate":5, "reaffiliated":6, "reaffiliating":6, "reaffiliation":6, "reaffirm":3, "reaffirmation":5, "reafforest":4, "reaffront":3, "reaggregate":4, "reaggregated":5, "reaggregating":5, "reaggregation":5, "reagitate":4, "reagitated":5, "reagitating":5, "reagitation":5, "real":2, "real number":4, "real part":3, "real presence":4, "real tennis":4, "real wages":4, "real-time":2, "reals":2, "realestate":4, "realgar":3, "realienate":4, "realienated":5, "realienating":5, "realienation":5, "realise":3, "realised":3, "realism":3, "realist":3, "realiser":4, "realising":4, "realistic":4, "realistically":6, "realize":3, "realized":3, "realizability":7, "realizable":5, "realizableness":6, "realizably":5, "realizer":4, "realizing":4, "realisation":5, "reality":4, "reallege":3, "realleged":3, "realleging":4, "reallegation":5, "realliance":4, "reallot":3, "reallotment":4, "reallotted":4, "reallotting":4, "reallocate":4, "reallocated":5, "reallocating":5, "reallocation":5, "really":3, "realpolitik":5, "realpolitik":5, "realter":3, "realterable":5, "realterableness":6, "realteration":5, "realtor":3, "realty":3, "reanalyze":4, "reanalyzed":4, "reanalyzable":6, "reanalyzing":5, "reanchor":3, "reanimation":5, "reannex":3, "reannexation":5, "reannounce":3, "reannounced":3, "reannouncement":4, "reannouncing":4, "reannotate":4, "reannotated":5, "reannotating":5, "reannotation":5, "reantagonize":5, "reantagonized":5, "reantagonizing":6, "reappeal":3, "reappear":3, "reappearance":4, "reapplaud":3, "reapplied":3, "reappliance":4, "reapplication":5, "reapply":3, "reapplying":4, "reappoint":3, "reappointment":4, "reapportion":4, "reapportionment":5, "reappraise":3, "reappraised":3, "reappraisal":4, "reappraising":4, "reapprehend":4, "reapprehension":5, "reapproach":3, "reapproachable":5, "reapprove":3, "reapproved":3, "reapproval":4, "reapproving":4, "reappropriate":5, "reappropriated":6, "reappropriating":6, "reappropriation":6, "rearm":2, "rearbitrate":4, "rearbitrated":5, "rearbitrating":5, "rearbitration":5, "reargue":3, "reargued":3, "rearguing":4, "reargument":4, "rearrange":3, "rearranged":3, "rearrangeable":5, "rearrangement":4, "rearranging":4, "rearrest":3, "rearticulate":5, "rearticulated":6, "rearticulating":6, "rearticulation":6, "reascend":3, "reascent":3, "reassemble":4, "reassembly":4, "reassent":3, "reassert":3, "reassertion":4, "reassess":3, "reassessment":4, "reassign":3, "reassignment":4, "reassignation":5, "reassimilate":5, "reassimilated":6, "reassimilating":6, "reassimilation":6, "reassist":3, "reassistance":4, "reassort":3, "reassortment":4, "reassociate":5, "reassociated":6, "reassociating":6, "reassociation":6, "reassume":3, "reassumed":3, "reassumption":4, "reassuming":4, "reassure":3, "reassurement":4, "reassurance":4, "reassuredly":5, "reassurer":4, "reassuringly":5, "reated":3, "reating":3, "reattach":3, "reattachable":5, "reattachment":4, "reattack":3, "reattain":3, "reattainment":4, "reattempt":3, "reattest":3, "reattire":3, "reattired":3, "reattiring":4, "reattract":3, "reattraction":4, "reaudit":3, "reaudition":4, "reaumur":3, "reauthenticate":5, "reauthenticated":6, "reauthenticating":6, "reauthentication":6, "reauthorize":4, "reauthorized":4, "reauthorizing":5, "reauthorization":6, "reabandon":4, "reabridge":3, "reabridged":3, "reabridging":4, "reacidified":5, "reacidification":7, "reacidify":5, "reacidifying":6, "readapt":3, "readaptability":7, "readaptable":5, "readaptive":4, "readopt":3, "readoption":4, "readorn":3, "readorning":4, "readornment":4, "reagent":3, "reales":3, "realign":3, "realignment":4, "reamalgamate":5, "reamalgamated":6, "reamalgamating":6, "reamalgamation":6, "reamass":3, "reamassment":4, "reamend":3, "reamendment":4, "reanalysis":5, "reanoint":3, "reanointment":4, "reapologize":5, "reapologized":5, "reapologizing":6, "reapology":5, "rearise":3, "rearisen":4, "rearising":4, "rearose":3, "rearouse":3, "rearoused":3, "rearousal":4, "rearousing":4, "reata":3, "reavow":3, "reavowal":4, "reawake":3, "reawaked":3, "reawaken":4, "reawakening":5, "reba":2, "rebab":2, "rebait":2, "rebake":2, "rebaked":2, "rebaking":3, "rebale":2, "rebaled":2, "rebalance":3, "rebalanced":3, "rebalancing":4, "rebaling":3, "reballot":3, "reballoted":4, "reballoting":4, "rebandage":3, "rebandaged":3, "rebandaging":4, "rebank":2, "rebaptism":3, "rebaptize":3, "rebaptized":3, "rebaptizing":4, "rebarbative":4, "rebate":2, "rebatement":3, "rebathe":2, "rebathed":2, "rebathing":3, "rebated":3, "rebating":3, "rebato":3, "rebec":2, "rebeck":2, "rebecca":3, "rebekah":3, "rebel":2, "rebellion":3, "rebellious":3, "rebelliously":4, "rebelliousness":4, "rebellow":3, "rebend":2, "rebending":3, "rebent":2, "rebiddable":4, "rebill":2, "rebind":2, "rebinding":3, "rebirth":2, "rebleach":2, "reblend":2, "reblended":3, "reblending":3, "reblent":2, "reblister":3, "reblock":2, "rebloom":2, "reblossom":3, "reblown":2, "reboard":2, "reboil":2, "rebolt":2, "rebop":2, "rebore":2, "reborn":2, "rebound":2, "rebounder":3, "rebosa":3, "reboso":3, "rebote":3, "rebozo":3, "rebrace":2, "rebraced":2, "rebracing":3, "rebrand":2, "rebred":2, "rebreed":2, "rebreeding":3, "rebrew":2, "rebrighten":3, "rebroadcast":3, "rebroaden":3, "rebrush":2, "rebuckle":3, "rebudget":3, "rebudgeted":4, "rebudgeting":4, "rebuff":2, "rebuffable":4, "rebuffably":4, "rebuild":2, "rebuilded":3, "rebuilder":3, "rebuilding":3, "rebuke":2, "rebuked":2, "rebuking":3, "reburied":3, "reburial":4, "rebury":3, "reburying":4, "rebus":2, "rebut":2, "rebuttal":3, "rebuttable":4, "rebutted":3, "rebutter":3, "rebutting":3, "rebutton":3, "recage":2, "recaged":2, "recaging":3, "recalk":2, "recall":2, "recallable":4, "recalcitrance":4, "recalcitrant":4, "recalcitrancy":5, "recalcitrate":4, "recalcitrated":5, "recalcitrating":5, "recalcitration":5, "recalculate":4, "recalculated":5, "recalculating":5, "recalculation":5, "recalesce":3, "recampaign":3, "recane":2, "recaned":2, "recant":2, "recanter":3, "recantingly":4, "recancel":3, "recanceled":3, "recancelled":3, "recanceling":4, "recancellation":5, "recancelling":4, "recaning":3, "recap":2, "recapped":2, "recapitalize":5, "recapitalized":5, "recapitalizing":6, "recapitalization":7, "recappable":4, "recapping":3, "recaption":3, "recapture":3, "recaptured":3, "recapturing":4, "recarve":2, "recarved":2, "recarving":3, "recarburizer":5, "recarburization":6, "recarpet":3, "recarried":3, "recarry":3, "recarrying":4, "recast":2, "recaster":3, "recasting":3, "recatalog":4, "recatalogue":4, "recatalogued":4, "recataloguing":5, "recategorize":5, "recategorized":5, "recategorizing":6, "recaution":3, "recable":3, "recalesce":3, "recalesced":3, "recalescing":4, "recalescence":4, "recamier":3, "recapitulate":5, "recapitulated":5, "recapitulating":6, "recapitulation":6, "recapitulative":6, "recapitulatory":7, "recede":2, "receded":3, "receding":3, "receipt":2, "receiptor":3, "receive":2, "received":2, "received pronunciation":7, "receivability":6, "receivable":4, "receivableness":5, "receiver":3, "receivership":4, "receiving":3, "receiving order":5, "recelebrate":4, "recelebrated":5, "recelebrating":5, "recelebration":5, "recent":2, "recent":2, "recently":3, "recentness":3, "recency":3, "recension":3, "recensor":3, "recentralize":4, "recentralized":4, "recentralizing":5, "recentralization":6, "recept":2, "receptacle":4, "reception":3, "reception room":4, "receptionism":4, "receptionist":4, "receptive":3, "receptibility":6, "receptor":3, "receptual":4, "receptually":5, "recercel":5, "recercele":5, "recertified":4, "recertification":6, "recertify":4, "recertifying":5, "recess":2, "recession":3, "recessional":4, "recessive":3, "recessively":4, "recessiveness":4, "recement":3, "rechallenge":3, "rechallenged":3, "rechallenging":4, "rechannel":3, "rechanneled":3, "rechannelled":3, "rechanneling":4, "rechannelling":4, "recharge":2, "recharged":2, "rechargeable":4, "recharger":3, "recharging":3, "rechart":2, "recharter":3, "recheck":2, "recherch":3, "rechoose":2, "rechoosing":3, "rechose":2, "rechosen":3, "rechristen":3, "recidivate":4, "recidivated":5, "recidivating":5, "recidivism":4, "recidivist":4, "recidivistic":5, "recidivous":4, "recipience":4, "recipient":4, "reciprocal":4, "reciprocality":6, "reciprocally":5, "reciprocalness":5, "reciprocate":4, "reciprocated":5, "reciprocating":5, "reciprocating engine":7, "reciprocation":5, "reciprocative":5, "reciprocator":5, "reciprocatory":6, "recircle":3, "recirculate":4, "recirculated":5, "recirculating":5, "recirculation":5, "recite":2, "recital":3, "recitable":4, "recitative":4, "recited":3, "reciter":3, "reciting":3, "recife":3, "recision":3, "reclad":2, "reclaim":2, "reclaimant":3, "reclaimable":4, "reclaimer":3, "reclasp":2, "reclass":2, "reclassification":6, "reclean":2, "recleanse":2, "recleansed":2, "recleansing":3, "reclimb":2, "reclimbed":2, "reclimbing":3, "recline":2, "reclined":2, "reclinable":4, "recliner":3, "reclining":3, "recloseable":4, "reclosable":4, "reclothe":2, "reclothing":3, "recluse":2, "reclusion":3, "reclusive":3, "recoat":2, "recode":2, "recoded":3, "recoding":3, "recodified":4, "recodification":6, "recodify":4, "recodifying":5, "recognisance":4, "recognisee":4, "recognisor":4, "recognitive":4, "recognizance":4, "recognizee":4, "recognizor":4, "recoil":2, "recoilingly":4, "recoin":2, "recoinage":3, "recolor":3, "recoloration":5, "recolonise":4, "recolonised":4, "recolonising":5, "recolonize":4, "recolonized":4, "recolonizing":5, "recolonisation":6, "recolonization":6, "recomb":2, "recombine":3, "recombined":3, "recombining":4, "recombination":5, "recomfort":3, "recommence":3, "recommenced":3, "recommencement":4, "recommencing":4, "recommission":4, "recommit":3, "recommitment":4, "recommittal":4, "recommitted":4, "recommitting":4, "recompare":3, "recompared":3, "recomparing":4, "recomparison":4, "recompensate":4, "recompensated":5, "recompensating":5, "recompensatory":6, "recompile":3, "recompiled":3, "recompiling":4, "recompilation":5, "recompose":3, "recompound":3, "recomposition":5, "recompute":3, "recomputed":4, "recomputing":4, "recomputation":5, "recon":2, "reconceal":3, "reconcealment":4, "reconcentrate":4, "reconcentrated":5, "reconcentrating":5, "reconcentration":5, "recondemn":3, "recondemnation":5, "recondense":3, "recondensed":3, "recondensing":4, "recondensation":5, "recondite":3, "recondition":4, "reconduct":3, "reconfer":3, "reconferred":3, "reconferring":4, "reconfine":3, "reconfined":3, "reconfining":4, "reconfirm":3, "reconfirmation":5, "reconfiscate":4, "reconfiscated":5, "reconfiscating":5, "reconform":3, "reconfront":3, "reconfrontation":5, "reconfuse":3, "reconfused":3, "reconfusing":4, "reconfusion":4, "reconnaissance":4, "reconnect":3, "reconnection":4, "reconnoissance":4, "reconnoiter":4, "reconnoiterer":5, "reconnoitre":4, "reconquer":3, "reconquest":3, "reconsent":3, "reconsecrate":4, "reconsecrated":5, "reconsecrating":5, "reconsecration":5, "reconsider":4, "reconsideration":6, "reconsign":3, "reconsignment":4, "reconsole":3, "reconsoled":3, "reconsoling":4, "reconsolidate":5, "reconsolidated":6, "reconsolidating":6, "reconsolidation":6, "reconstitute":4, "reconstituted":5, "reconstitution":5, "reconstruct":3, "reconstructed":4, "reconstruction":4, "reconstruction":4, "reconstructional":5, "reconstructionaryn":6, "reconstructionism":5, "reconstructionist":5, "reconstructive":4, "reconstructively":5, "reconstructiveness":5, "reconstructible":5, "reconsult":3, "reconsultation":5, "recontact":3, "recontemplate":4, "recontemplated":5, "recontemplating":5, "recontemplation":5, "recontend":3, "recontest":3, "recontract":3, "recontraction":4, "reconvene":3, "reconvened":3, "reconvening":4, "reconvention":4, "reconverge":3, "reconverged":3, "reconverging":4, "reconvert":3, "reconvergence":4, "reconversion":4, "reconveyance":4, "reconvict":3, "reconviction":4, "recook":2, "recool":2, "recopied":3, "recopy":3, "recopying":4, "record":2, "recordable":4, "recorded delivery":7, "recorder":3, "recording":3, "recording angel":5, "recorde":3, "recoronation":5, "recorrect":3, "recost":2, "recostume":3, "recostumed":3, "recostuming":4, "recount":2, "recountal":3, "recounsel":3, "recounseled":3, "recounselled":3, "recounseling":4, "recounselling":4, "recoup":2, "recoupable":4, "recoupment":3, "recourse":2, "recover":3, "recoverable":5, "recoverableness":6, "recoverer":4, "recoveries":4, "recovery":4, "recoagulate":5, "recoagulated":6, "recoagulating":6, "recoagulation":6, "recrate":2, "recrated":3, "recrating":3, "recriminate":4, "recrimination":5, "recriminative":5, "recriminator":5, "recriminatory":6, "recriticize":4, "recriticized":4, "recriticizing":5, "recross":2, "recrown":2, "recruit":2, "recruitable":4, "recruiter":3, "recruitment":3, "recrudesce":3, "recrudesced":3, "recrudescing":4, "recrudescence":4, "recrudescent":4, "recrudescency":5, "recrystallise":4, "recrystallised":4, "recrystallising":5, "recrystallize":4, "recrystallized":4, "recrystallizing":5, "recrystallization":6, "recultivate":4, "recultivated":5, "recultivating":5, "recultivation":5, "recumbent":3, "recur":2, "recurve":2, "recurved":2, "recurving":3, "recurrence":3, "recurrent":3, "recurrent fever":5, "recurrently":4, "recurring decimal":6, "recurringly":4, "recursion":3, "recursive":3, "recurvate":3, "recut":2, "recutting":3, "recuperate":4, "recuperation":5, "recuperative":5, "recuperativeness":6, "recuperator":5, "recuperatory":6, "recycle":3, "redact":2, "redaction":3, "redactional":4, "redactor":3, "redamage":3, "redamaged":3, "redamaging":4, "redan":2, "redare":2, "redared":2, "redarn":2, "redaring":3, "redate":2, "redated":3, "redating":3, "redeal":2, "redealt":2, "redealing":3, "redebit":3, "redeclaration":5, "redecorate":4, "redecorated":5, "redecorating":5, "redecoration":5, "rededicate":4, "rededicated":5, "rededicating":5, "rededication":5, "redeed":2, "redeem":2, "redeemability":6, "redeemable":4, "redeemableness":5, "redeemably":4, "redeemer":3, "redeemer":3, "redeeming":3, "redefinition":5, "redelegate":4, "redelegated":5, "redelegating":5, "redelegation":5, "redemption":3, "redemptional":4, "redemptioner":4, "redemptionless":4, "redemptible":4, "redemptorist":4, "redemptory":4, "redemonstrate":4, "redemonstrated":5, "redemonstrating":5, "redemonstration":5, "redesignate":4, "redesignated":5, "redesignating":5, "redesignation":5, "redebate":3, "redebated":4, "redebating":4, "redecay":3, "redeceive":3, "redeceived":3, "redeceiving":4, "redecide":3, "redecided":4, "redeciding":4, "redecision":4, "redeclare":3, "redeclared":3, "redeclaring":4, "redecline":3, "redeclined":3, "redeclining":4, "redefeat":3, "redefied":3, "redefine":3, "redefined":3, "redefining":4, "redefy":3, "redefying":4, "redelete":3, "redeleted":4, "redeleting":4, "redeliberate":5, "redeliberated":6, "redeliberating":6, "redeliberation":6, "redeliver":4, "redeliverer":5, "redeliveries":5, "redelivery":5, "redemand":3, "redemandable":5, "redenied":3, "redenial":4, "redeny":3, "redenying":4, "redepend":3, "redeploy":3, "redeployment":4, "redeposit":4, "redepreciate":5, "redepreciated":6, "redepreciating":6, "redepreciation":6, "redescend":3, "redescent":3, "redescribe":3, "redescribed":3, "redescribing":4, "redescription":4, "redesert":3, "redesign":3, "redetermine":4, "redetermined":4, "redetermining":5, "redevelop":4, "redeveloper":5, "redevelopment":5, "redevelopment area":8, "redictate":3, "redictated":4, "redictating":4, "redid":2, "redifferentiate":6, "redifferentiated":7, "redifferentiating":7, "redifferentiation":7, "rediffuse":3, "rediffused":3, "rediffusing":4, "rediffusion":4, "rediffusion":4, "redig":2, "redigged":2, "redigging":3, "redip":2, "redipt":2, "redipping":3, "redisburse":3, "redisbursed":3, "redisbursement":4, "redisbursing":4, "redischarge":3, "redischarged":3, "redischarging":4, "rediscipline":4, "redisciplined":4, "redisciplining":5, "rediscover":4, "rediscoveries":5, "rediscovery":5, "rediscuss":3, "rediscussion":4, "redisinfect":4, "redismiss":3, "redismissal":4, "redispatch":3, "redisperse":3, "redispersed":3, "redispersing":4, "redispersal":4, "redisplay":3, "redispose":3, "redisposed":3, "redisposing":4, "redisposition":5, "redispute":3, "redisputed":4, "redisputing":4, "redissect":3, "redissection":4, "redissolve":3, "redissolved":3, "redissolving":4, "redissoluble":5, "redissolubleness":6, "redissolution":5, "redistill":3, "redistillable":5, "redistillation":5, "redistinguish":4, "redistribute":4, "redistributed":5, "redistributing":5, "redistrict":3, "redistribution":5, "redia":3, "redigest":3, "redigestion":4, "redilate":3, "redilated":4, "redilating":4, "redirect":3, "redivert":3, "redivide":3, "redivided":4, "redividing":4, "redivision":4, "redivorce":3, "redivorced":3, "redivorcing":4, "redo":2, "redock":2, "redocket":3, "redocketed":4, "redocketing":4, "redocument":4, "redominate":4, "redominated":5, "redominating":5, "redon":2, "redone":2, "redoubt":2, "redoubtable":4, "redoubtableness":5, "redoubtably":4, "redoubted":3, "redound":2, "redouble":3, "redoubler":3, "redox":2, "redoing":3, "redraft":2, "redraw":2, "redrawn":2, "redrawer":3, "redrawing":3, "redress":2, "redressable":4, "redresser":3, "redressible":4, "redressor":3, "redrew":2, "redried":2, "redrill":2, "redrive":2, "redriving":3, "redriven":3, "redroop":2, "redrove":2, "redrug":2, "redrugged":2, "redrugging":3, "redry":2, "redrying":3, "reduce":2, "reduced":2, "reduced level":4, "reducer":2, "reduct":2, "reducer":3, "reducing":3, "reducing agent":5, "reducing glass":4, "reducibility":6, "reducibleness":5, "reducibly":4, "reductase":3, "reduction":3, "reduction division":6, "reduction formula":6, "reductional":4, "reductionism":4, "reductive":3, "reductively":4, "reductio ad absurdum":8, "reductor":3, "redundant":3, "redundantly":4, "redundancy":4, "redust":2, "reduplicate":4, "reduplicated":5, "reduplicating":5, "reduplication":5, "reduplicative":5, "reduplicatively":6, "reduviid":4, "redye":2, "redyed":2, "redying":3, "reearn":2, "reedit":3, "reedified":4, "reedify":4, "reedifying":5, "reeducate":4, "reeducated":5, "reeducating":5, "reeducation":5, "reeed":2, "reeeing":3, "reelevate":4, "reelevated":5, "reelevating":5, "reelevation":5, "reeligibility":7, "reeligible":5, "reeligibleness":6, "reemanate":4, "reemanated":5, "reemanating":5, "reembark":3, "reembarcation":5, "reembarkation":5, "reembellish":4, "reembodied":4, "reembody":4, "reembodying":5, "reembrace":3, "reembraced":3, "reembracing":4, "reemigrate":4, "reemigrated":5, "reemigrating":5, "reemigration":5, "reemphasis":4, "reemphasize":4, "reemphasized":4, "reemphasizing":5, "reemploy":3, "reemployment":4, "reenact":3, "reenactment":4, "reenaction":4, "reenclose":3, "reenclosed":3, "reenclosing":4, "reencounter":4, "reencourage":4, "reencouraged":4, "reencouragement":5, "reencouraging":5, "reendorse":3, "reendorsed":3, "reendorsement":4, "reendorsing":4, "reendow":3, "reendowment":4, "reenergize":4, "reenergized":4, "reenergizing":5, "reenforce":3, "reenforced":3, "reenforcing":4, "reengage":3, "reengaged":3, "reengagement":4, "reengaging":4, "reengrave":3, "reengraved":3, "reengraving":4, "reengross":3, "reenjoin":3, "reenjoy":3, "reenjoyment":4, "reenlarge":3, "reenlarged":3, "reenlargement":4, "reenlarging":4, "reenlighten":4, "reenlightenment":5, "reenlistment":4, "reenslave":3, "reenslaved":3, "reenslaving":4, "reenter":3, "reentrance":3, "reentranced":3, "reentrancing":4, "reentrant":3, "reentry":3, "reestablish":4, "reestablishment":5, "reestimate":4, "reestimated":5, "reestimating":5, "reestimation":5, "reevidence":4, "reevidenced":4, "reevidencing":5, "reexamine":4, "reexamined":4, "reexamining":5, "reexcavate":4, "reexcavated":5, "reexcavating":5, "reexcavation":5, "reexchange":3, "reexchanged":3, "reexchanging":4, "reexercise":4, "reexercised":4, "reexercising":5, "reexecute":4, "reexecuted":5, "reexecuting":5, "reexecution":5, "reexhibit":4, "reexhibition":5, "reexpand":3, "reexpansion":4, "reexpel":3, "reexpelled":3, "reexpelling":4, "reexperiment":5, "reexperience":5, "reexperienced":5, "reexperiencing":6, "reexplain":3, "reexplanation":5, "reexplicate":4, "reexplicated":5, "reexplicating":5, "reexplication":5, "reexplore":3, "reexplored":3, "reexploring":4, "reexploration":5, "reexport":3, "reexporter":4, "reexportation":5, "reexpose":3, "reexposed":3, "reexposing":4, "reexposition":5, "reexposure":4, "reexpress":3, "reexpression":4, "reexsprt":4, "reeject":3, "reelect":3, "reelection":4, "reemerge":3, "reemerged":3, "reemerging":4, "reemergence":4, "reemergent":4, "reemersion":4, "reemission":4, "reemit":3, "reemitted":4, "reemitting":4, "reenunciate":5, "reenunciated":6, "reenunciating":6, "reenunciation":6, "reenumerate":5, "reenumerated":6, "reenumerating":6, "reenumeration":6, "reequip":3, "reequipped":3, "reequipping":4, "reerect":3, "reerection":4, "reerupt":3, "reeruption":4, "reevacuate":5, "reevacuated":6, "reevacuating":6, "reevacuation":6, "reevaluate":5, "reevaluated":6, "reevaluating":6, "reevaluation":6, "reevasion":4, "reface":2, "refaced":2, "refacing":3, "refashion":3, "refasten":3, "refamiliarize":5, "refamiliarized":5, "refamiliarizing":6, "refamiliarization":7, "refect":2, "refection":3, "refectory":4, "refectory table":6, "refed":2, "refederalize":5, "refederalized":5, "refederalizing":6, "refederalization":7, "refederate":4, "refederated":5, "refederating":5, "refederation":5, "refeed":2, "refeeding":3, "refeel":2, "refeeling":3, "refelt":2, "refer":2, "referred":2, "referred pain":3, "referral":3, "referring":3, "refertilize":4, "refertilized":4, "refertilizing":5, "refertilizable":6, "refertilization":6, "refile":2, "refiled":2, "refill":2, "refillable":4, "refilm":2, "refiling":3, "refilter":3, "refind":2, "refinding":3, "refine":2, "refined":2, "refinement":3, "refinedly":4, "refinedness":4, "refineries":4, "refinery":4, "refining":3, "refinish":3, "refire":2, "refired":2, "refiring":3, "refit":2, "refix":2, "refixed":2, "refixing":3, "refinance":3, "refinanced":3, "refinancing":4, "reflate":2, "reflated":3, "reflating":3, "reflation":3, "reflect":2, "reflectance":3, "reflecting telescope":6, "reflectingly":4, "reflectible":4, "reflectance":3, "reflection":3, "reflection density":6, "reflection factor":5, "reflective":3, "reflectively":4, "reflectiveness":4, "reflectivity":5, "reflectometer":5, "reflector":3, "reflectorize":4, "reflectorized":4, "reflectorizing":5, "reflet":2, "reflex":2, "reflex arc":3, "reflex camera":5, "reflexion":3, "reflexional":4, "reflexive":3, "reflexively":4, "reflexiveness":4, "reflexivity":5, "reflexly":3, "reflexness":3, "refloat":2, "reflow":2, "reflower":3, "reflorescence":4, "reflux":2, "refold":2, "reforecast":3, "reforecasted":4, "reforecasting":4, "reforge":2, "reforged":2, "reforgeable":4, "reforging":3, "reform":2, "reform bill":3, "reform judaism":5, "reformed":2, "reformed":2, "reformability":6, "reformable":4, "reformableness":5, "reformative":4, "reformatively":5, "reformativeness":5, "reformatory":5, "reformedly":4, "reformer":3, "reformingly":4, "reformism":3, "reformistic":4, "reforest":3, "reforfeit":3, "reforfeiture":4, "reformulate":4, "reformulated":5, "reformulating":5, "reformulation":5, "refortified":4, "refortification":6, "refortify":4, "refortifying":5, "reforward":3, "refound":2, "refocus":3, "refocused":3, "refocussed":3, "refocusing":4, "refocussing":4, "refract":2, "refractable":4, "refractedly":4, "refractedness":4, "refracting telescope":6, "refraction":3, "refractional":4, "refractive":3, "refractive index":5, "refractively":4, "refractiveness":4, "refractivity":5, "refractometer":5, "refractometry":5, "refractor":3, "refractometric":5, "refractorily":5, "refractoriness":5, "refractory":4, "refracture":3, "refractured":3, "refracturable":5, "refracturing":4, "refrain":2, "refrainer":3, "refrainment":3, "reframe":2, "reframed":2, "reframing":3, "refrangible":4, "refreeze":2, "refresh":2, "refreshen":3, "refresher":3, "refresher course":4, "refreshful":3, "refreshfully":4, "refreshing":3, "refreshingly":4, "refreshingness":4, "refreshment":3, "refried":2, "refrigerant":4, "refrigerate":4, "refrigerated":5, "refrigerating":5, "refrigeration":5, "refrigerative":5, "refrigerator":5, "refrigeratory":6, "refringence":3, "refringent":3, "refringency":4, "refroze":2, "refrozen":3, "refrustrate":3, "refrustrated":4, "refrustrating":4, "refry":2, "refrying":3, "refulgence":3, "refulgent":3, "refulgently":4, "refulgentness":4, "refulgency":4, "refunction":3, "refund":2, "refundable":4, "refunder":3, "refundment":3, "refurbish":3, "refurnish":3, "refuse":2, "refused":2, "refusal":3, "refusable":4, "refuser":3, "refusing":3, "refute":2, "refutal":3, "refutative":4, "refutatory":5, "refuted":3, "refuter":3, "refuting":3, "refuel":3, "refueled":3, "refuelled":3, "refueling":4, "refuelling":4, "refugium":4, "refutability":6, "refutable":4, "regain":2, "regain":2, "regainable":4, "regainer":3, "regal":2, "regale":2, "regaled":2, "regaling":3, "regality":4, "regally":3, "regalness":3, "regalvanize":4, "regalvanized":4, "regalvanizing":5, "regalvanization":6, "regamble":3, "regan":2, "regard":2, "regardant":3, "regardable":4, "regardful":3, "regardfully":4, "regardfulness":4, "regarding":3, "regardless":3, "regardant":3, "regarment":3, "regarnish":3, "regarrison":4, "regather":3, "regatta":3, "regauge":2, "regauged":2, "regauging":3, "regave":2, "regalia":4, "regear":2, "regel":2, "regelled":2, "regelling":3, "regensburg":3, "regent":2, "regency":3, "regency":3, "regenerate":4, "regenerateness":5, "regenerated":5, "regenerating":5, "regenerable":5, "regeneracy":5, "regeneration":5, "regenerative":5, "regenerative cooling":7, "regeneratively":6, "regenerator":5, "reger":2, "regerminate":4, "regerminated":5, "regerminating":5, "regermination":5, "regerminative":5, "reges":2, "regelate":3, "regelated":4, "regelating":4, "regelation":4, "regie-book":2, "regild":2, "regilded":3, "regilding":3, "regilt":2, "regime":2, "regin":2, "region":2, "regional":3, "regional enteritis":7, "regionalism":4, "regionalist":4, "regionalistic":5, "regionalize":4, "regionalized":4, "regionalizing":5, "regionally":4, "regird":2, "regirded":3, "regirding":3, "regis":2, "regive":2, "regiven":3, "regiving":3, "regina":3, "regina":3, "regiomontanus":6, "regius professor":6, "reglaze":2, "reglazed":2, "reglazing":3, "regle":2, "reglorified":4, "reglorification":6, "reglorify":4, "reglorifying":5, "reglue":2, "reglued":2, "regluing":3, "regorge":2, "regorged":2, "regorging":3, "regovern":3, "regovernment":4, "regrab":2, "regrabbed":2, "regrabbing":3, "regrade":2, "regraded":3, "regrading":3, "regraft":2, "regrant":2, "regraph":2, "regrasp":2, "regrate":2, "regrated":3, "regrater":3, "regrating":3, "regradate":3, "regradated":4, "regradating":4, "regradation":4, "regrease":2, "regreased":2, "regreasing":3, "regreet":2, "regress":2, "regression":3, "regressive":3, "regressively":4, "regressiveness":4, "regressor":3, "regret":2, "regretable":4, "regretableness":5, "regretably":4, "regretful":3, "regretfully":4, "regretfulness":4, "regrettable":4, "regrettableness":5, "regrettably":4, "regretteloss":3, "regretter":3, "regrettingly":4, "regrew":2, "regrind":2, "regrinding":3, "regrip":2, "regript":2, "regripping":3, "reground":2, "regroup":2, "regrow":2, "regrown":2, "regrowth":2, "regrowing":3, "reguarantee":4, "reguaranteed":4, "reguaranteeing":5, "reguaranty":4, "reguide":2, "reguided":3, "reguiding":3, "regurgitate":4, "regurgitated":5, "regurgitating":5, "regurgitation":5, "rehammer":3, "rehang":2, "rehanged":2, "rehanging":3, "rehandle":3, "reharden":3, "reharmonize":4, "reharmonized":4, "reharmonizing":5, "reharness":3, "reharvest":3, "rehash":2, "rehaul":2, "rehabilitate":5, "rehabilitated":6, "rehabilitating":6, "rehabilitation":6, "rehabilitative":6, "rehear":2, "reheard":2, "rehearse":2, "rehearsed":2, "rehearsal":3, "rehearsable":4, "rehearser":3, "rehearsing":3, "rehearing":3, "reheat":2, "reheater":3, "reheating":3, "reheel":2, "rehem":2, "rehemmed":2, "rehemming":3, "rehid":2, "rehide":2, "rehidden":3, "rehiding":3, "rehinge":2, "rehinged":2, "rehinging":3, "rehire":2, "rehired":2, "rehiring":3, "rehone":2, "rehoned":2, "rehoning":3, "rehonor":3, "rehospitalize":5, "rehospitalized":5, "rehospitalizing":6, "rehospitalization":7, "rehoboam":4, "rehoboam":4, "rehung":2, "rehumanize":4, "rehumanized":4, "rehumanizing":5, "rehumanization":6, "rehumiliate":5, "rehumiliated":6, "rehumiliating":6, "rehumiliation":6, "rehypnotize":4, "rehypnotized":4, "rehypnotizing":5, "rehypothecate":5, "rehypothecated":6, "rehypothecating":6, "reice":2, "reiced":2, "reicing":3, "reignite":3, "reignited":4, "reigniting":4, "reignition":4, "reillustrate":4, "reillustrated":5, "reillustrating":5, "reillustration":5, "reilluminate":5, "reilluminated":6, "reilluminating":6, "reillumination":6, "reimage":3, "reimaged":3, "reimaging":4, "reimburse":3, "reimbursed":3, "reimbursing":4, "reimplant":3, "reimplantation":5, "reimplement":4, "reimplied":3, "reimply":3, "reimplying":4, "reimport":3, "reimportation":5, "reimpose":3, "reimposed":3, "reimposing":4, "reimposition":5, "reimpregnate":4, "reimpregnated":5, "reimpregnating":5, "reimpress":3, "reimpression":4, "reimprint":3, "reimprison":4, "reimprisonment":5, "reink":2, "reinaugurate":5, "reinaugurated":6, "reinaugurating":6, "reinauguration":6, "reincarnate":4, "reincarnation":5, "reincarnationist":6, "reincite":3, "reincited":4, "reinciting":4, "reincline":3, "reinclined":3, "reinclining":4, "reinclude":3, "reincluded":4, "reincluding":4, "reinclusion":4, "reincorporate":5, "reincorporated":6, "reincorporating":6, "reincrease":3, "reincreased":3, "reincreasing":4, "reincur":3, "reincurred":3, "reincurring":4, "reindex":3, "reindict":3, "reindictment":4, "reindicate":4, "reindicated":5, "reindicating":5, "reindication":5, "reindoctrinate":5, "reindoctrinated":6, "reindoctrinating":6, "reindoctrination":6, "reindorse":3, "reindorsed":3, "reindorsement":4, "reindorsing":4, "reinduce":3, "reinduced":3, "reinducement":4, "reinduct":3, "reinducing":4, "reinduction":4, "reindulge":3, "reindulged":3, "reindulging":4, "reindulgence":4, "reindustrialize":6, "reindustrialized":6, "reindustrializing":7, "reindustrialization":8, "reinfect":3, "reinfection":4, "reinfer":3, "reinferred":3, "reinferring":4, "reinfest":3, "reinfestation":5, "reinfiltrate":4, "reinfiltrated":5, "reinfiltrating":5, "reinfiltration":5, "reinflame":3, "reinflamed":3, "reinflaming":4, "reinflate":3, "reinflatable":5, "reinflated":4, "reinflating":4, "reinflation":4, "reinfluence":4, "reinfluenced":4, "reinfluencing":5, "reinforce":3, "reinforced concrete":5, "reinforcement":4, "reinforcer":4, "reinform":3, "reinfuse":3, "reinfused":3, "reinfusing":4, "reinfusion":4, "reinhabit":4, "reinherit":4, "reinject":3, "reinjure":3, "reinjured":3, "reinjuring":4, "reinjuries":4, "reinjury":4, "reinoculate":5, "reinoculated":6, "reinoculating":6, "reinoculation":6, "reinquire":3, "reinquired":3, "reinquiries":4, "reinquiring":4, "reinquiry":4, "reinscribe":3, "reinscribed":3, "reinscribing":4, "reinsert":3, "reinsertion":4, "reinsist":3, "reinspect":3, "reinspection":4, "reinspire":3, "reinspired":3, "reinspiring":4, "reinspiration":5, "reinstall":3, "reinstallment":4, "reinstallation":5, "reinstalment":4, "reinstate":3, "reinstatement":4, "reinstated":4, "reinstating":4, "reinstation":4, "reinstator":4, "reinstitute":4, "reinstituted":5, "reinstituting":5, "reinstitution":5, "reinstruct":3, "reinstruction":4, "reinsure":3, "reinsured":3, "reinsurance":4, "reinsurer":4, "reinsuring":4, "reinsulate":4, "reinsulated":5, "reinsulating":5, "reinter":3, "reinterred":3, "reinterest":4, "reinterment":4, "reinterpret":4, "reinterpretation":6, "reinterring":4, "reinterrogate":5, "reinterrogated":6, "reinterrogating":6, "reinterrogation":6, "reinterrupt":4, "reinterruption":5, "reintervene":4, "reintervened":4, "reintervening":5, "reintervention":5, "reinterview":4, "reintegrate":4, "reintegrated":5, "reintegrating":5, "reintegration":5, "reintrench":3, "reintrenchment":4, "reintroduce":4, "reintroduced":4, "reintroducing":5, "reintroduction":5, "reinvade":3, "reinvaded":4, "reinvading":4, "reinvasion":4, "reinvent":3, "reinvention":4, "reinvest":3, "reinvestment":4, "reinvestigate":5, "reinvestigated":6, "reinvestigating":6, "reinvestigation":6, "reinvigorate":5, "reinvigorated":6, "reinvigorating":6, "reinvigoration":6, "reinvite":3, "reinvited":4, "reinviting":4, "reinvitation":5, "reinvoke":3, "reinvoked":3, "reinvoking":4, "reinvolve":3, "reinvolved":3, "reinvolvement":4, "reinvolving":4, "reirrigate":4, "reirrigated":5, "reirrigating":5, "reirrigation":5, "reissue":3, "reissued":3, "reissuable":5, "reissuing":4, "reiterant":4, "reiterate":4, "reiterative":5, "reidentified":5, "reidentification":7, "reidentify":5, "reidentifying":6, "reify":3, "reisolate":4, "reisolated":5, "reisolating":5, "reisolation":5, "reitemize":4, "reitemized":4, "reitemizing":5, "rejail":2, "reject":2, "rejectable":4, "rejectee":3, "rejecter":3, "rejection":3, "rejective":3, "rejeopardize":4, "rejeopardized":4, "rejeopardizing":5, "rejig":2, "rejigger":3, "rejoice":2, "rejoiced":2, "rejoiceful":3, "rejoicing":3, "rejoin":2, "rejoinder":3, "rejudge":2, "rejudged":2, "rejudgement":3, "rejudging":3, "rejudgment":3, "rejustified":4, "rejustification":6, "rejustify":4, "rejustifying":5, "rejuvenate":4, "rejuvenated":5, "rejuvenating":5, "rejuvenesce":4, "rejuvenescence":5, "rejuvenise":4, "rejuvenised":4, "rejuvenising":5, "rejuvenize":4, "rejuvenized":4, "rejuvenizing":5, "rekindle":3, "reknead":2, "reknit":2, "reknitted":3, "reknitting":3, "reknock":2, "reknot":2, "reknotted":3, "reknotting":3, "relace":2, "relaced":2, "relacing":3, "relacquer":3, "relaid":2, "relance":2, "relanced":2, "relancing":3, "reland":2, "relapse":2, "relapsable":4, "relapser":3, "relapsing fever":5, "relatch":2, "relate":2, "relatability":6, "relatable":4, "related":3, "relatedness":4, "relater":3, "relating":3, "relaunch":2, "relaunder":3, "relax":2, "relaxant":3, "relaxalaid":4, "relaxalaying":5, "relaxation":4, "relaxative":4, "relaxatory":4, "relaxedly":4, "relaxedness":4, "relaxer":3, "relaxin":3, "relay":2, "relay fast":3, "relay race":3, "relaying":3, "relabel":3, "relabeled":3, "relabelled":3, "relabeling":4, "relabelling":4, "reladle":3, "relation":3, "relations":3, "relational":4, "relationless":4, "relationship":4, "relator":3, "relatum":3, "relead":2, "relearn":2, "relearnt":2, "relearning":3, "release":2, "released":2, "releasability":6, "releasable":4, "releaser":3, "releasing":3, "releasible":4, "relend":2, "relending":3, "relent":2, "relentingly":4, "relentless":3, "relentlessly":4, "relentlessness":4, "relet":2, "reletter":3, "reletting":3, "relevel":3, "releveled":3, "relevelled":3, "releveling":4, "relevelling":4, "relever":3, "relevied":3, "relevy":3, "relevying":4, "relev":4, "reliberate":4, "reliberated":5, "reliberating":5, "relied":2, "relief":2, "relief map":3, "reliefer":3, "reliefless":3, "relieve":2, "relieved":2, "relievable":4, "relievedly":4, "reliever":3, "relieving":3, "relight":2, "relighted":3, "relighting":3, "religiose":4, "religiosity":6, "relimit":3, "reline":2, "relined":2, "relink":2, "relining":3, "relinquish":3, "relinquisher":4, "relinquishment":4, "reliquefied":4, "reliquefy":4, "reliquefying":5, "reliquiae":4, "reliquidate":4, "reliquidated":5, "reliquidating":5, "reliquidation":5, "relist":2, "relisten":3, "relit":2, "relitigate":4, "relitigated":5, "relitigating":5, "relitigation":5, "relive":2, "relived":2, "relivable":4, "reliving":3, "reliance":3, "reliant":3, "reliantly":4, "reliable":4, "relicense":3, "relicensed":3, "relicensing":4, "relier":3, "religieuse":3, "religieux":3, "religion":3, "religionism":4, "religionist":4, "religionistic":5, "religious":3, "religiously":4, "religiousness":4, "religiose":4, "reload":2, "reloan":2, "relose":2, "relost":2, "relosing":3, "relower":3, "relocate":3, "relocated":4, "relocating":4, "relocation":4, "reluct":2, "reluctance":3, "reluctant":3, "reluctantly":4, "reluctancy":4, "relume":2, "relubricate":4, "relubricated":5, "relubricating":5, "relucent":3, "relumine":3, "rely":2, "relying":3, "remagnetize":4, "remagnetized":4, "remagnetizing":5, "remagnetization":6, "remagnified":4, "remagnify":4, "remagnifying":5, "remail":2, "remaim":2, "remain":2, "remains":2, "remainder":3, "remainderman":4, "remainmade":3, "remainmaking":4, "remake":2, "remaker":3, "reman":2, "remand":2, "remand home":3, "remanned":2, "remanifest":4, "remanifestation":6, "remanning":3, "remanufacture":5, "remanufactured":5, "remanufacturing":6, "remap":2, "remapped":2, "remapping":3, "remark":2, "remarkable":4, "remarker":3, "remarque":2, "remarque":2, "remarket":3, "remarriage":3, "remarried":3, "remarry":3, "remarrying":4, "remarshal":3, "remarshaled":3, "remarshalled":3, "remarshaling":4, "remarshalling":4, "remaster":3, "remasteries":4, "remastery":4, "remasticate":4, "remasticated":5, "remasticating":5, "remastication":5, "rematch":2, "rematerialize":6, "rematerialized":6, "rematerializing":7, "rematerialization":8, "rematriculate":5, "rematriculated":6, "rematriculating":6, "remeasure":3, "remeasured":3, "remeasurement":4, "remeasuring":4, "remelt":2, "remember":3, "rememberer":4, "remembrance":3, "remembrance sunday":5, "remembrancer":4, "remembrancer":4, "rememorize":4, "rememorized":4, "rememorizing":5, "remend":2, "remention":3, "remerge":2, "remerged":2, "remerging":3, "remex":2, "remedial":4, "remediate":4, "remediated":5, "remediating":5, "remediable":5, "remediableness":6, "remediably":5, "remediation":5, "remigial":4, "remill":2, "remillable":4, "remilitarize":5, "remilitarized":5, "remilitarizing":6, "remilitarization":7, "remind":2, "remindful":3, "remint":2, "remingle":3, "remise":2, "remised":2, "remiss":2, "remissly":3, "remissness":3, "remising":3, "remission":3, "remissively":4, "remissiveness":4, "remissibility":6, "remissible":4, "remissibleness":5, "remit":2, "remital":3, "remittal":3, "remittance":3, "remittance man":4, "remittable":4, "remitted":3, "remittee":3, "remittence":3, "remittent":3, "remittently":4, "remittency":4, "remitter":3, "remitting":3, "remittor":3, "remix":2, "remixt":2, "remixing":3, "remigrate":3, "remigrated":4, "remigrating":4, "remigration":4, "remodel":3, "remodeled":3, "remodelled":3, "remodeler":4, "remodeling":4, "remodelling":4, "remodified":4, "remodification":6, "remodify":4, "remodifying":5, "remodulate":4, "remodulated":5, "remodulating":5, "remold":2, "remollified":4, "remollify":4, "remollifying":5, "remonetise":4, "remonetised":4, "remonetising":5, "remonetize":4, "remonetized":4, "remonetizing":5, "remonetization":6, "remonstrance":3, "remonstrance":3, "remonstrant":3, "remonstrant":3, "remonstrate":3, "remonstratingly":5, "remonstration":4, "remonstrative":4, "remonstratively":5, "remonstrator":4, "remontant":3, "remorse":2, "remorseful":3, "remorsefully":4, "remorsefulness":4, "remorseless":3, "remorselessly":4, "remorselessness":4, "remortgage":3, "remortgaged":3, "remortgaging":4, "remote":2, "remote control":4, "remote-control":3, "remotely":3, "remoteness":3, "remoter":3, "remotest":3, "remould":2, "remount":2, "remove":2, "removed":2, "removal":3, "removalist":4, "removability":6, "removable":4, "removableness":5, "removably":4, "removedly":4, "removedness":4, "remover":3, "removing":3, "remobilize":4, "remobilized":4, "remobilizing":5, "remobilization":6, "remolade":3, "remotion":3, "remultiplied":4, "remultiplication":6, "remultiply":4, "remultiplying":5, "remus":2, "remuda":3, "remunerate":4, "remunerability":7, "remunerable":5, "remunerably":5, "remuneration":5, "remunerative":5, "remuneratively":6, "remunerativeness":6, "remunerator":5, "rena":2, "renail":2, "renaissance":3, "renaissance":3, "renaissance man":4, "renal":2, "renal pelvis":4, "rename":2, "renamed":2, "renaming":3, "renan":2, "renascence":3, "renascence":3, "renascent":3, "renault":2, "renavigate":4, "renavigated":5, "renavigating":5, "renavigation":5, "renata":3, "renationalize":5, "renationalized":5, "renationalizing":6, "renege":2, "renegue":2, "reneger":3, "reneutralize":4, "reneutralized":4, "reneutralizing":5, "renew":2, "renewal":3, "renewedly":4, "renewer":3, "renegate":3, "renegated":4, "renegating":4, "renegado":4, "renegation":4, "renegotiate":5, "renegotiated":6, "renegotiating":6, "renegotiable":6, "renegotiation":6, "reni":2, "renin":2, "renitence":3, "renitent":3, "renitency":4, "reno":2, "renoir":2, "renominate":4, "renominated":5, "renominating":5, "renomination":5, "renormalize":4, "renormalized":4, "renormalizing":5, "renormalization":6, "renounce":2, "renounced":2, "renounceable":4, "renouncement":3, "renouncer":3, "renouncing":3, "renourish":3, "renourishment":4, "renown":2, "renowned":2, "renownedly":4, "renownedness":4, "renownless":3, "renotarize":4, "renotarized":4, "renotarizing":5, "renotation":4, "renotice":3, "renoticed":3, "renoticing":4, "renotified":4, "renotification":6, "renotify":4, "renotifying":5, "renullified":4, "renullification":6, "renullify":4, "renullifying":5, "renumber":3, "renunciable":5, "renunciation":5, "renunciative":5, "renunciatory":6, "renumerate":4, "renumerated":5, "renumerating":5, "ren":3, "rene":3, "reobject":3, "reoblige":3, "reobliged":3, "reobliging":4, "reobligate":4, "reobligated":5, "reobligating":5, "reobligation":5, "reobserve":3, "reobserved":3, "reobserving":4, "reobservation":5, "reobtain":3, "reobtainable":5, "reoccur":3, "reoccurred":3, "reoccurrence":4, "reoccurring":4, "reoccupation":5, "reoccupied":4, "reoccupy":4, "reoccupying":5, "reoffend":3, "reoffer":3, "reoil":2, "reoperate":4, "reoperated":5, "reoperating":5, "reoperation":5, "reoppose":3, "reopposed":3, "reopposing":4, "reoppress":3, "reorchestrate":4, "reorchestrated":5, "reorchestrating":5, "reorchestration":5, "reordain":3, "reorder":3, "reorganise":4, "reorganised":4, "reorganising":5, "reorganize":4, "reorganized":4, "reorganizer":5, "reorganizing":5, "reorganization":6, "reorient":4, "reornament":4, "reoutfit":3, "reoutfitted":4, "reoutfitting":4, "reoutline":3, "reoutlined":3, "reoutlining":4, "reoxidise":4, "reoxidised":4, "reoxidising":5, "reoxidize":4, "reoxidized":4, "reoxidizing":5, "reopen":3, "reorientate":5, "reorientated":6, "reorientating":6, "reorientation":6, "repack":2, "repackage":3, "repackaged":3, "repackaging":4, "repacified":4, "repacify":4, "repacifying":5, "repad":2, "repadded":3, "repadding":3, "repaginate":4, "repaginated":5, "repaginating":5, "repagination":5, "repaint":2, "repair":2, "repairable":4, "repairableness":5, "repairer":3, "repairman":3, "repand":2, "repanel":3, "repaneled":3, "repanelled":3, "repaneling":4, "repanelling":4, "repark":2, "reparative":4, "reparatory":5, "repast":2, "repaste":2, "repasted":3, "repasting":3, "repassage":3, "repatch":2, "repatriate":4, "repattern":3, "repave":2, "repaved":2, "repaving":3, "repawn":2, "repay":2, "repayable":4, "repayment":3, "repaper":3, "repatriate":4, "repatriated":5, "repatriating":5, "repatrol":3, "repatrolled":3, "repatrolling":4, "repatronize":4, "repatronized":4, "repatronizing":5, "repeal":2, "repeal":2, "repealability":6, "repealable":4, "repealableness":5, "repealer":3, "repeat":2, "repeatability":6, "repeatable":4, "repeated":3, "repeatedly":4, "repeater":3, "repeating decimal":6, "repeddle":3, "repel":2, "repelled":2, "repellant":3, "repellantly":4, "repellence":3, "repellent":3, "repellently":4, "repellency":4, "repeller":3, "repelling":3, "repellingly":4, "repellingness":4, "repen":2, "repenned":2, "repent":2, "repentance":3, "repentant":3, "repentantly":4, "repenning":3, "repeople":3, "reperceive":3, "reperceived":3, "reperceiving":4, "reperception":4, "repercussion":4, "repercussive":4, "repercussively":5, "repercussiveness":5, "reperform":3, "reperformance":4, "reperforator":5, "repetitive":4, "repetitively":5, "repetitiveness":5, "repenalize":4, "repenalized":4, "repenalizing":5, "reperuse":3, "reperused":3, "reperusing":4, "reperusal":4, "repetiteur":4, "repetition":4, "rephotograph":4, "rephrase":2, "rephrased":2, "rephrasing":3, "repic":2, "repick":2, "repin":2, "repine":2, "repined":2, "repinned":2, "repiner":3, "repining":3, "repinning":3, "repique":2, "replace":2, "replaced":2, "replacement":3, "replacing":3, "replan":2, "replane":2, "replaned":2, "replanned":2, "replant":2, "replaning":3, "replanning":3, "replaster":3, "replate":2, "replated":3, "replating":3, "replay":2, "replead":2, "repleader":3, "repledge":2, "repledged":2, "repledging":3, "replenish":3, "replete":2, "repletely":3, "repleteness":3, "replevin":3, "replevisable":5, "replevy":3, "repletion":3, "repletive":3, "repletively":4, "replier":3, "replot":2, "replotted":3, "replotting":3, "replow":2, "replowed":2, "replowing":3, "replume":2, "replumed":2, "repluming":3, "replunge":2, "replunged":2, "replunging":3, "reply":2, "repoint":2, "repolish":3, "repone":2, "reponder":3, "repopularize":5, "repopularized":5, "repopularizing":6, "repopularization":7, "repopulate":4, "repopulated":5, "repopulating":5, "repopulation":5, "report":2, "report stage":3, "reportage":3, "reportable":4, "reported speech":4, "reportedly":4, "reporter":3, "reportion":3, "reportorial":5, "repose":2, "reposed":2, "reposeful":3, "reposefully":4, "reposefulness":4, "repost":2, "repostpone":3, "repostponed":3, "repostponing":4, "reposal":3, "reposedly":4, "reposedness":4, "reposer":3, "reposing":3, "reposit":3, "repositories":5, "repository":5, "repository":5, "reposposed":3, "reposposing":4, "repossess":3, "repossession":4, "repossessor":4, "repostulate":4, "repostulated":5, "repostulating":5, "repostulation":5, "repot":2, "repour":2, "repouss":3, "repoussage":3, "repouss":4, "repolarize":4, "repolarized":4, "repolarizing":5, "repolarization":6, "reposition":4, "repractice":3, "repracticed":3, "repracticing":4, "repraise":2, "repraised":2, "repraising":3, "repremise":3, "repremised":3, "repremising":4, "repress":2, "represser":3, "repressible":4, "repression":3, "repressive":3, "repressively":4, "repressiveness":4, "repressor":3, "reprepare":3, "reprepared":3, "repreparing":4, "represcribe":3, "represcribed":3, "represcribing":4, "reprice":2, "repriced":2, "repricing":3, "reprieve":2, "reprieved":2, "reprieving":3, "reprime":2, "reprimed":2, "repriming":3, "reprint":2, "reprinter":3, "reprise":2, "reprisal":3, "repro":2, "reproach":2, "reproachable":4, "reproachableness":5, "reproachably":4, "reproacher":3, "reproachful":3, "reproachfully":4, "reproachfulness":4, "reproachingly":4, "reproachless":3, "reproachlessness":4, "reprobe":2, "reprobed":2, "reprobing":3, "reprocess":3, "reprocessed":3, "reproclamation":5, "reprography":4, "repromise":3, "repromised":3, "repromising":4, "repromulgate":4, "repromulgated":5, "repromulgating":5, "reproof":2, "reproofless":3, "reprosecute":4, "reprosecuted":5, "reprosecuting":5, "reprove":2, "reproved":2, "reproval":3, "reprovable":4, "reprovableness":5, "reproven":3, "reproving":3, "reprovproving":4, "reproceed":3, "reproclaim":3, "reproduce":3, "reproduced":3, "reproducer":4, "reproducing":4, "reproducibility":7, "reproducible":5, "reproduction":4, "reproduction proof":5, "reproductive":4, "reproductively":5, "reproductiveness":5, "reprogram":3, "reproject":3, "repromulgation":5, "reproportion":4, "repropose":3, "reproposed":3, "reproposing":4, "reprotest":3, "reprovision":4, "reprune":2, "repruned":2, "repruning":3, "republic":3, "republish":3, "republishable":5, "republican":4, "republican":4, "republican party":6, "republicanise":5, "republicanised":5, "republicanism":5, "republicaniser":6, "republicanising":6, "republicanize":5, "republicanizer":6, "republicanization":7, "republication":5, "repugn":2, "repugnance":3, "repugnant":3, "repugnancy":4, "repulse":2, "repulsed":2, "repulser":3, "repulsing":3, "repulsion":3, "repulsive":3, "repulsively":4, "repulsiveness":4, "repunctuate":4, "repunctuated":5, "repunctuating":5, "repunctuation":5, "repunish":3, "repunishable":5, "repunishment":4, "repurchase":3, "repurpose":3, "repurposed":3, "repurposing":4, "repursue":3, "repursued":3, "repursuing":4, "repute":2, "reputed":3, "reputedly":4, "repudiate":4, "repudiated":5, "repudiating":5, "repudiation":5, "repudiatory":6, "repurified":4, "repurification":6, "repurify":4, "repurifying":5, "requalified":4, "requalification":6, "requalify":4, "requalifying":5, "request":2, "request stop":3, "requestion":3, "requicken":3, "require":2, "required":2, "requirement":3, "requiring":3, "requite":2, "requitement":3, "requital":3, "requitable":4, "requited":3, "requiter":3, "requiting":3, "requote":2, "requoted":3, "requoting":3, "rerank":2, "rerate":2, "rerated":2, "rerating":3, "reradiate":4, "reradiated":5, "reradiating":5, "reradiation":5, "reread":2, "rereading":3, "rereel":2, "reregister":4, "reregistration":5, "reregulate":4, "reregulated":5, "reregulating":5, "reregulation":5, "rerent":2, "rerental":3, "rerise":2, "rerisen":3, "rerising":3, "reroll":2, "rerose":2, "reroute":2, "rerouted":3, "rerouting":3, "rerun":2, "resaddle":3, "resail":2, "resale":2, "resale price maintenance":6, "resaleable":4, "resalt":2, "resalable":4, "resample":3, "resanction":3, "resat":2, "resaw":2, "resawyer":3, "resalute":3, "resaluted":4, "resaluting":4, "reschedule":3, "rescheduled":3, "rescheduling":4, "reschool":2, "rescind":2, "rescission":3, "rescissible":4, "rescissory":4, "rescript":2, "rescrub":2, "rescrubbed":2, "rescrubbing":3, "rescrutinize":4, "rescrutinized":4, "rescrutinizing":5, "rescrutiny":4, "reseal":2, "resealable":4, "research":2, "researcher":3, "researchist":3, "reseat":2, "reseau":2, "reseason":3, "resect":2, "resection":3, "resectional":4, "reseed":2, "reseek":2, "reseeking":3, "resegregate":4, "resegregated":5, "resegregating":5, "resegregation":5, "reseize":2, "reseized":2, "reseizing":3, "reseizure":3, "resell":2, "reseller":3, "reselling":3, "resemblance":3, "resemblant":3, "resemble":3, "resemblingly":4, "resend":2, "resending":3, "resent":2, "resentful":3, "resentfully":4, "resentfulness":4, "resentment":3, "resensation":4, "resensitize":4, "resensitized":4, "resensitizing":5, "resensitization":6, "resentence":3, "resentenced":3, "resentencing":4, "reseparate":4, "reseparated":5, "reseparating":5, "reseparation":5, "reserve":2, "reserve bank":3, "reserve currency":5, "reserve price":3, "reserved":2, "reserved list":3, "reserved occupation":6, "reserveless":3, "reservable":4, "reservedly":4, "reservedness":4, "reservice":3, "reserviced":3, "reservicing":4, "reserving":3, "reservist":3, "reserpine":3, "reset":2, "resetter":3, "resetting":3, "resettle":3, "resettlement":4, "resew":2, "resewing":3, "resecure":3, "resecured":3, "resecuring":4, "reseda":3, "reselect":3, "reselection":4, "reshake":2, "reshaken":3, "reshaking":3, "reshape":2, "reshare":2, "reshared":2, "resharpen":3, "resharing":3, "reshave":2, "reshaved":2, "reshaving":3, "reshew":2, "reshift":2, "reshine":2, "reshined":2, "reshingle":3, "reshining":3, "reshipment":3, "reshod":2, "reshoe":2, "reshoeing":3, "reshook":2, "reshoot":2, "reshooting":3, "reshorten":3, "reshot":2, "reshoulder":3, "reshow":2, "reshower":3, "reshuffle":3, "reshut":2, "reshutting":3, "resicken":3, "reside":2, "resided":3, "resider":3, "residing":3, "residual":4, "residuary":5, "residuum":4, "resift":2, "resight":2, "resign":2, "resigned":2, "resignal":3, "resignaled":3, "resignalled":3, "resignaling":4, "resignalling":4, "resile":2, "resilement":3, "resilience":3, "resilient":3, "resiliently":4, "resiliency":4, "resilient":4, "resilver":3, "resimmer":3, "resinification":6, "resist":2, "resistance":3, "resistance":3, "resistance thermometer":7, "resistance welding":5, "resistant":3, "resistantly":4, "resistate":3, "resister":3, "resistingly":4, "resistibility":6, "resistible":4, "resistibleness":5, "resistibly":4, "resistless":3, "resistlessly":4, "resistlessness":4, "resistencia":4, "resistive":3, "resistively":4, "resistiveness":4, "resistivity":5, "resistor":3, "resit":2, "resitting":3, "resituate":4, "resituated":5, "resituating":5, "resketch":2, "reslander":3, "resmooth":2, "resoak":2, "resoften":3, "resoil":2, "resold":2, "resolve":2, "resolved":2, "resolvability":6, "resolvable":4, "resolvableness":5, "resolvedly":4, "resolvedness":4, "resolver":3, "resolving":3, "resolving power":5, "resolder":3, "resolubility":6, "resoluble":4, "resolubleness":5, "resolutive":4, "resolvent":3, "resorb":2, "resorbence":3, "resorbent":3, "resorption":3, "resorptive":3, "resort":2, "resought":2, "resound":2, "resoundingly":4, "resource":2, "resourceful":3, "resourcefully":4, "resourcefulness":4, "resow":2, "resowed":2, "resowing":3, "resolicit":4, "resolicitation":6, "resolidification":7, "resolidify":5, "respace":2, "respaced":2, "respacing":3, "respade":2, "respaded":3, "respading":3, "respect":2, "respectability":6, "respectable":4, "respecter":3, "respectful":3, "respectfully":4, "respectfulness":4, "respecting":3, "respecified":4, "respecification":6, "respecify":4, "respecifying":5, "respective":3, "respectively":4, "respectiveness":4, "respice":2, "respiced":2, "respicing":3, "respire":2, "respirability":6, "respirable":4, "respirableness":5, "respiratory quotient":7, "respighi":3, "resplendence":3, "resplendent":3, "resplendently":4, "resplendency":4, "resplice":2, "respliced":2, "resplicing":3, "respond":2, "respondence":3, "respondent":3, "respondency":4, "response":2, "responseless":3, "responser":3, "responsa":3, "responsion":3, "responsive":3, "responsively":4, "responsiveness":4, "responsibility":6, "responsible":4, "responsibleness":5, "responsibly":4, "responsor":3, "responsory":4, "responsum":3, "respray":2, "respread":2, "respreading":3, "respring":2, "respringing":3, "resprinkle":3, "resprung":2, "resquander":3, "restab":2, "restabbed":2, "restabbing":3, "restack":2, "restaff":2, "restage":2, "restaged":2, "restaging":3, "restain":2, "restamp":2, "restart":2, "restate":2, "restatement":3, "restated":3, "restating":3, "restabilize":4, "restabilized":4, "restabilizing":5, "restabilization":6, "restable":3, "restation":3, "resterilize":4, "resterilized":4, "resterilizing":5, "resterilization":6, "restimulate":4, "restimulated":5, "restimulating":5, "restimulation":5, "resting":2, "restinging":3, "restipulate":4, "restipulated":5, "restipulating":5, "restipulation":5, "restir":2, "restirred":2, "restirring":3, "restitch":2, "restock":2, "restore":2, "restored":2, "restorable":4, "restorableness":5, "restorative":4, "restorer":3, "restoring":3, "restraighten":3, "restrain":2, "restraint":2, "restraint of trade":4, "restrainability":6, "restrainable":4, "restrainedly":4, "restrainer":3, "restrainingly":4, "restrap":2, "restrapped":2, "restrapping":3, "restrengthen":3, "restress":2, "restricken":3, "restrict":2, "restricted":3, "restrictedly":4, "restrictedness":4, "restriction":3, "restrictive":3, "restrictive practice":5, "restrictively":4, "restrictiveness":4, "restrike":2, "restriking":3, "restring":2, "restringer":3, "restringing":3, "restrive":2, "restriven":3, "restriving":3, "restrove":2, "restructure":3, "restructured":3, "restructuring":4, "restrung":2, "restudied":3, "restudies":3, "restudy":3, "restudying":4, "restuff":2, "restung":2, "restyle":2, "restyled":2, "restyling":3, "resubject":3, "resubjection":4, "resublimate":4, "resublimated":5, "resublimating":5, "resublimation":5, "resubmerge":3, "resubmerged":3, "resubmerging":4, "resubmission":4, "resubmit":3, "resubmitted":4, "resubmitting":4, "resubscribe":3, "resubscribed":3, "resubscribing":4, "resubscription":4, "resubstantiate":5, "resubstantiated":6, "resubstantiating":6, "resubstantiation":6, "resuit":2, "result":2, "resultant":3, "resultingly":4, "resulfurize":4, "resulfurized":4, "resulfurizing":5, "resulphurize":4, "resulphurized":4, "resulphurizing":5, "resume":2, "resumed":2, "resumption":3, "resumptive":3, "resumptively":4, "resumable":4, "resumer":3, "resuming":3, "resummon":3, "resummons":3, "resummonable":5, "resupplied":3, "resupply":3, "resupplying":4, "resuppress":3, "resuppression":4, "resurge":2, "resurged":2, "resurging":3, "resurface":3, "resurfaced":3, "resurfacing":4, "resurgam":3, "resurgence":3, "resurgent":3, "resurvey":3, "resuscitate":4, "resuscitated":5, "resuscitating":5, "resuscitable":5, "resuscitation":5, "resuscitative":5, "resuscitator":5, "resuspend":3, "resuspension":4, "resume":3, "resupine":3, "resupinate":4, "reswallow":3, "reswear":2, "reswearing":3, "resweep":2, "resweeping":3, "resweeten":3, "reswell":2, "reswept":2, "reswore":2, "resymbolize":4, "resymbolized":4, "resymbolizing":5, "resymbolization":6, "resynthesis":4, "resynthesize":4, "resynthesized":4, "resynthesizing":5, "resynthetize":4, "resystematize":5, "resystematized":5, "resystematizing":6, "retabulate":4, "retabulated":5, "retabulating":5, "retack":2, "retail":2, "retailer":3, "retain":2, "retained object":4, "retainer":3, "retaining wall":4, "retake":2, "retaker":3, "retaliate":4, "retaliated":5, "retaliating":5, "retaliation":5, "retaliative":5, "retaliator":5, "retaliatory":6, "retallied":3, "retally":3, "retallying":4, "retan":2, "retanned":2, "retanning":3, "retape":2, "retaped":2, "retaping":3, "retar":2, "retard":2, "retardant":3, "retardate":3, "retardative":4, "retarded":3, "retarder":3, "retardment":3, "retarred":2, "retardation":4, "retariff":3, "retarring":3, "retaste":2, "retasted":3, "retasting":3, "retaught":2, "retax":2, "retaxation":4, "retable":3, "rete":2, "reteach":2, "reteaching":3, "retear":2, "retearing":3, "retell":2, "retelling":3, "retelegraph":4, "retelephone":4, "retelevise":4, "retem":2, "retemper":3, "retene":2, "retention":3, "retentionist":4, "retentive":3, "retentivity":5, "retest":2, "retestified":4, "retestify":4, "retestifying":5, "retestimony":5, "retepore":3, "rethank":2, "rethatch":2, "rethaw":2, "rethicken":3, "rethink":2, "rethinking":3, "rethought":2, "rethread":2, "rethreaten":3, "rethresh":2, "reticular":4, "reticularly":5, "reticulate":4, "reticulately":5, "reticulated":5, "reticulating":5, "reticulation":5, "reticulocyte":5, "reticuloendothelial":9, "reticulum":4, "reticulum":4, "retie":2, "retied":2, "retighten":3, "retile":2, "retiled":2, "retill":2, "retiling":3, "retime":2, "retimed":2, "retiming":3, "retin":2, "retinge":2, "retinged":2, "retingeing":3, "retinging":3, "retinned":2, "retint":2, "retinning":3, "retire":2, "retired":2, "retiredly":3, "retiredness":3, "retirement":3, "retiree":3, "retirer":3, "retiring":3, "retiringly":4, "retia":3, "retial":3, "retiarii":5, "retiarius":5, "retiary":4, "retiform":3, "retir":4, "retitle":3, "retoast":2, "retold":2, "retool":2, "retore":2, "retorn":2, "retort":2, "retorter":3, "retorsion":3, "retortion":3, "retouch":2, "retouchable":4, "retoucher":3, "retouchtraced":3, "retouchtracing":4, "retotal":3, "retotaled":3, "retotalled":3, "retotaling":4, "retrace":2, "retraced":2, "retrack":2, "retract":2, "retractability":6, "retractable":4, "retractibility":6, "retractible":4, "retracing":3, "retractation":4, "retractile":3, "retractility":5, "retraction":3, "retractively":4, "retractiveness":4, "retractor":3, "retrad":2, "retrade":2, "retraded":3, "retrading":3, "retrain":2, "retral":2, "retrally":3, "retraltreading":4, "retraltrod":3, "retraltrodden":4, "retransfer":3, "retransferred":3, "retransference":4, "retransferring":4, "retranslate":3, "retranslated":4, "retranslating":4, "retranslation":4, "retransmission":4, "retransmit":3, "retransmitted":4, "retransmitting":4, "retransplant":3, "retransplantation":5, "retranscribe":3, "retranscribed":3, "retranscribing":4, "retranscription":4, "retraverse":3, "retraversed":3, "retraversing":4, "retread":2, "retreaded":3, "retreading":3, "retreat":2, "retreatal":3, "retreatingness":4, "retreative":3, "retrench":2, "retrenchment":3, "retributive":4, "retributively":5, "retried":2, "retrieve":2, "retrieved":2, "retrieval":3, "retrievable":4, "retriever":3, "retrieving":3, "retrial":3, "retrorse":2, "retrorsely":3, "retrouss":3, "retrusion":3, "retrusive":3, "retry":2, "retrying":3, "retune":2, "retuned":2, "retuning":3, "returf":2, "return":2, "return crease":3, "return ticket":4, "returnable":4, "returnee":3, "returning officer":6, "retuse":2, "retwine":2, "retwined":2, "retwining":3, "retwist":2, "retype":2, "retyped":2, "retyping":3, "retying":3, "reunion":3, "reunionism":4, "reunionist":4, "reunionistic":5, "reupholster":4, "reupholsterer":5, "reupholsteries":5, "reupholstery":5, "reus":2, "reuse":2, "reused":2, "reuseable":4, "reusability":6, "reusable":4, "reusing":3, "reutter":3, "reutterance":4, "reunite":3, "reunitable":5, "reunited":4, "reuniter":4, "reuniting":4, "reunified":4, "reunification":6, "reunify":4, "reunifying":5, "reutilise":4, "reutilised":4, "reutilising":5, "reutilize":4, "reutilized":4, "reutilizing":5, "reutilization":6, "revaccinate":4, "revaccinated":5, "revaccinating":5, "revaccination":5, "reval":2, "revalidate":4, "revalidated":5, "revalidating":5, "revalidation":5, "revalorise":4, "revalorize":4, "revalue":3, "revalued":3, "revaluate":4, "revaluated":5, "revaluating":5, "revaluation":5, "revaluing":4, "revamp":2, "revamper":3, "revampment":3, "revanche":2, "revanchism":3, "revarnish":3, "revacate":3, "revacated":4, "revacating":4, "revaporize":4, "revaporized":4, "revaporizing":5, "revaporization":6, "reveal":2, "revealed religion":5, "revealability":6, "revealable":4, "revealableness":5, "revealedly":4, "revealer":3, "revealingly":4, "revealingness":4, "revealment":3, "revegetate":4, "revegetated":5, "revegetating":5, "revegetation":5, "reveille":3, "revelative":4, "revelatory":5, "revend":2, "revenge":2, "revenged":2, "revengeful":3, "revengefully":4, "revengefulness":4, "revengeless":3, "revenger":3, "revenging":3, "revengingly":4, "reventilate":4, "reventilated":5, "reventilating":5, "reventilation":5, "revere":2, "revere":2, "revered":2, "revers":2, "reverse":2, "reverse transcriptase":5, "reverse-charge":2, "reversely":3, "reversedly":4, "reverser":3, "reversing light":4, "reversibility":6, "reversible":4, "reversibleness":5, "reversibly":4, "revert":2, "reverter":3, "revertibility":6, "revertible":4, "reverable":4, "reverberantly":5, "reverberate":4, "reverberated":5, "reverberating":5, "reverberation":5, "reverberation time":6, "reverberative":5, "reverberator":5, "reverberatory":6, "reverberatory furnace":8, "reverer":3, "revering":3, "reverified":4, "reverification":6, "reverify":4, "reverifying":5, "reversal":3, "reversion":3, "reversional":4, "reversioner":4, "reverso":3, "revertive":3, "revertively":4, "revest":2, "revet":2, "revetment":3, "revetted":3, "revetting":3, "reveto":3, "revetoed":3, "revetoing":4, "revictual":3, "revictualed":3, "revictualled":3, "revictualing":4, "revictualling":4, "review":2, "review copy":4, "reviewability":6, "reviewable":4, "reviewless":3, "revile":2, "reviled":2, "revilement":3, "reviler":3, "reviling":3, "revilingly":4, "revindicate":4, "revindicated":5, "revindicating":5, "revindication":5, "revise":2, "revised":2, "revised standard version":6, "revised version":4, "revisal":3, "revising":3, "revisit":3, "revisitable":5, "revisitation":5, "revisualize":5, "revisualized":5, "revisualizing":6, "revisualization":7, "revive":2, "revived":2, "revival":3, "revivalism":4, "revivalist":4, "revivalistic":5, "revivability":6, "revivable":4, "revivably":4, "reviver":3, "reviving":3, "revivingly":4, "revivified":4, "revivification":6, "revivify":4, "revivifying":5, "revibrant":3, "revibrate":3, "revibrated":4, "revibrating":4, "revibration":4, "reviolate":4, "reviolated":5, "reviolating":5, "reviolation":5, "revision":3, "revisional":4, "revisionary":5, "revisionism":4, "revisionist":4, "revisory":4, "revitalise":4, "revitalised":4, "revitalising":5, "revitalize":4, "revitalized":4, "revitalizing":5, "revitalisation":6, "revitalization":6, "revivor":3, "revoice":2, "revoiced":2, "revoicing":3, "revoke":2, "revoked":2, "revokable":4, "revoking":3, "revolt":2, "revolter":3, "revolting":3, "revoltingly":4, "revolve":2, "revolved":2, "revolver":3, "revolving":3, "revolving credit":5, "revolving door":4, "revolving fund":4, "revolvingly":4, "revote":2, "revoted":3, "revoting":3, "revoyage":3, "revoyaged":3, "revoyaging":4, "revue":2, "revulsant":3, "revulsion":3, "revulsionary":5, "revulsive":3, "revulsively":4, "revuist":3, "rewa-rewa":3, "rewake":2, "rewaken":3, "rewaking":3, "rewan":2, "reward":2, "rewarding":3, "rewarm":2, "rewarn":2, "rewarrant":3, "rewash":2, "rewax":2, "rewager":3, "rewater":3, "reweaken":3, "rewear":2, "rewearing":3, "reweave":2, "reweaved":2, "reweaving":3, "rewed":2, "rewedded":3, "rewedding":3, "reweigh":2, "reweld":2, "rewet":2, "rewetted":3, "rewetting":3, "rewiden":3, "rewin":2, "rewind":2, "rewinded":3, "rewinding":3, "rewinning":3, "rewire":2, "rewired":2, "rewirable":4, "rewiring":3, "rewoke":2, "rewon":2, "reword":2, "rewore":2, "rework":2, "reworking":3, "rewound":2, "rewrap":2, "rewrapt":2, "rewrapping":3, "rewrite":2, "rewrite rule":3, "rewriter":3, "rewriting":3, "rewritten":3, "rewrote":2, "rewrought":2, "reyoke":2, "reyoked":2, "reyoking":3, "rezone":2, "rezoned":2, "rezoning":3, "recho":4, "reducate":5, "reducation":6, "renlist":4, "renlistment":5, "renter":4, "rentrance":4, "rexport":4, "rexporter":5, "rexportation":6, "rfc":1, "rgs":1, "rgt":1, "rh factor":3, "rh negative":4, "rh positive":4, "rh-negative":3, "rh-positive":3, "rha":1, "rhabdomancy":4, "rhabdomyoma":5, "rhadamanthine":4, "rhadamanthus":4, "rhadamanthys":4, "rhaetian":2, "rhaetian alps":3, "rhaetic":2, "rhaetia":3, "rhaeto-romance":3, "rhamadhan":3, "rhamnaceous":3, "rhamnes":2, "rhamphotheca":4, "rhapsodic":3, "rhapsodise":3, "rhapsodist":3, "rhapsodistic":4, "rhapsodize":3, "rhapsodized":3, "rhapsodizing":4, "rhapsody":3, "rhatany":3, "rhachis":2, "rhachises":3, "rhachides":3, "rhagon":2, "rhagonoid":3, "rhd":1, "rhee":1, "rheims":1, "rhein":1, "rheingau":2, "rheingold":2, "rheinhessen":3, "rheinland":2, "rheinland-pfalz":2, "rheita":2, "rhenish":2, "rheo":1, "rhet":1, "rhetoric":3, "rhetorician":4, "rheum":1, "rheumic":2, "rheumier":3, "rheumiest":3, "rheumily":3, "rheuminess":3, "rheumy":2, "rheumatic":3, "rheumatic fever":5, "rheumatics":3, "rheumatically":5, "rheumatism":3, "rheumatism-root":3, "rheumatoid":3, "rheumatoid arthritis":6, "rheumatoidal":4, "rheumatoidally":5, "rheumatology":5, "rhexes":2, "rhexis":2, "rheydt":1, "rhea":2, "rhea":2, "rhea silvia":5, "rhebok":2, "rheda":2, "rhematic":3, "rhemish":2, "rhene":2, "rhenic":2, "rhenium":3, "rheologist":4, "rheology":4, "rheometer":4, "rheometry":4, "rheotropism":4, "rheobase":3, "rheologic":4, "rheometric":4, "rheopexy":4, "rheoscope":3, "rheoscopic":4, "rheostat":3, "rheostatic":4, "rheotactic":4, "rheotaxis":4, "rheotron":3, "rheotrope":3, "rheotropic":4, "rhesian":2, "rhesus":2, "rhesus baby":4, "rhesus factor":4, "rhesus monkey":4, "rhetian":2, "rhetic":2, "rhetor":2, "rhetorical":4, "rhetorical question":6, "rhetorician":4, "rhg":1, "rhigmus":2, "rhigolene":3, "rhine":1, "rhineland":2, "rhineland-palatinate":5, "rhinelander":3, "rhinestone":2, "rhiannon":3, "rhinal":2, "rhinaria":4, "rhinarium":4, "rhinencephalon":5, "rhinencephalic":5, "rhinitis":3, "rhino":2, "rhinoceros":4, "rhinoceros beetle":6, "rhinoceros bird":5, "rhinoceroses":5, "rhinocerotic":5, "rhinologist":4, "rhinology":4, "rhinorrhea":4, "rhinorrhoea":4, "rhinoscopy":4, "rhinocerial":5, "rhinologic":4, "rhinoplastic":4, "rhinoplasty":4, "rhinoscope":3, "rhizogenous":4, "rhizoid":2, "rhizome":2, "rhizomatous":4, "rhizophagous":4, "rhizopodan":4, "rhizopodous":4, "rhizotomy":4, "rhizobia":4, "rhizobium":4, "rhizocarpic":4, "rhizocarpous":4, "rhizocephalan":5, "rhizocephalous":5, "rhizogenic":4, "rhizomorph":3, "rhizomorphoid":4, "rhizomorphous":4, "rhizopod":3, "rhizopus":3, "rhizopus":3, "rhizosphere":3, "rho":1, "rhode island":3, "rhode island red":4, "rhodes":1, "rhodes scholarship":4, "rhodolite":3, "rhodonite":3, "rhodope":3, "rhodope mountains":5, "rhoecus":2, "rhoeo":2, "rhoetus":2, "rhomb":1, "rhombencephalon":5, "rhombi":2, "rhombic":2, "rhombic aerial":5, "rhombical":3, "rhomboid":2, "rhomboidal":3, "rhomboidally":4, "rhombohedral":4, "rhombohedron":4, "rhombus":2, "rhombuses":3, "rhonchial":3, "rhonchus":2, "rhonda":2, "rhondda":2, "rhoda":2, "rhodamine":3, "rhode":2, "rhodesia":3, "rhodesia and nyasaland":8, "rhodesian":3, "rhodesian front":4, "rhodesian man":4, "rhodesian ridgeback":5, "rhodesoid":3, "rhodic":2, "rhodian":3, "rhodinal":3, "rhodium":3, "rhodopsin":3, "rhodos":2, "rhodochrosite":4, "rhododendron":4, "rhodolite":3, "rhodonite":3, "rhodopis":3, "rhodora":3, "rhodus":2, "rhotacism":3, "rhotacistic":4, "rhotic":2, "rhs":1, "rhumb":1, "rhumba":2, "rhumbatron":3, "rhubarb":2, "rhyme":1, "rhyme royal":3, "rhymester":2, "rhyming":2, "rhyming slang":3, "rhynchocephalian":6, "rhynchocephalian":5, "rhythm":1, "rhythm method":3, "rhythm section":3, "rhythmless":2, "rhythmic":2, "rhythmics":2, "rhythmist":2, "rhythmical":3, "rhyacolite":4, "rhyolite":3, "rhyolitic":4, "rhyton":2, "rib":1, "riba":1, "ribald":2, "ribaldly":3, "ribaldry":3, "riband":2, "ribband":2, "ribbentrop":3, "ribbing":2, "ribble":2, "ribble-rabble":3, "ribbon":2, "ribbon development":6, "ribbon strip":3, "ribbon worm":3, "ribbonfish":3, "ribbonlike":3, "ribbonwood":3, "ribbony":3, "ribgrass":2, "ribicoff":3, "ribless":2, "riblike":2, "ribwort":2, "ric":1, "rice":1, "rice":1, "rice paper":3, "ricebird":2, "rich":1, "rich":1, "richthofen":3, "richard":2, "richard i":3, "richard ii":3, "richard iii":3, "richards":2, "richardson":3, "riches":2, "richebourg":3, "richelieu":3, "richelieu river":5, "richfield":2, "richie":2, "richland":2, "richlands":2, "richly":2, "richmond":2, "richness":2, "richter":2, "richter scale":3, "richweed":2, "rick":1, "rick":1, "rickets":2, "rickettsia":4, "rickettsiae":4, "rickettsial":4, "rickettsial disease":6, "ricketiness":4, "rickety":3, "rickey":2, "rickie":2, "rickle":2, "rickohaw":2, "rickrack":2, "ricksha":2, "rickshaw":2, "rickwood":2, "ricky":2, "rics":1, "riccardo":3, "ricci":2, "riccio":2, "riccioli":4, "riccius":3, "ricer":2, "ricing":2, "ricinoleic acid":7, "ricinolein":5, "ricochet":3, "ricochetted":4, "ricrac":2, "rictus":2, "rid":1, "ride":1, "ridge":1, "ridgecrest":2, "ridgefield":2, "ridgelike":2, "ridgeling":2, "ridgepole":2, "ridgepoled":2, "ridgetree":2, "ridgeway":2, "ridgewood":2, "ridgel":2, "ridgil":2, "ridging":2, "ridgier":3, "ridgiest":3, "ridgling":2, "ridgway":2, "ridgy":2, "ridability":5, "ridable":3, "riddance":2, "ridden":2, "ridder":2, "riddle":2, "rider":2, "ridgel":2, "riding":2, "riding breeches":4, "riding crop":3, "riding habit":4, "riding lamp":3, "ridicule":3, "ridiculed":3, "ridiculer":4, "ridiculing":4, "ridley":2, "ridley":2, "riefenstahl":3, "riel":1, "riempie":2, "riesling":2, "riesling":2, "rietveld":2, "riebeckite":3, "riemann":2, "riemannian geometry":8, "rieti":2, "rif":1, "rife":1, "rifely":2, "rifeness":2, "riff":1, "riff":1, "riffi":2, "riffraff":2, "rift":1, "rift valley":3, "riftless":2, "riffle":2, "riffler":2, "rifi":2, "rifle green":3, "rig":1, "rig-veda":2, "right":1, "right angle":3, "right ascension":4, "right about":3, "right away":3, "right honorable":5, "right reverend":4, "right triangle":4, "right-angled triangle":5, "right-about":2, "right-footer":2, "right-handed":2, "right-handedly":3, "right-handedness":3, "right-hander":2, "right-minded":2, "right-mindedly":3, "right-mindedness":3, "right-winger":2, "rights":1, "rights issue":3, "rightable":3, "rightabout":3, "rightabout-face":3, "righten":2, "righteous":2, "righteously":3, "righteousness":3, "rightful":2, "rightfully":3, "rightfulness":3, "righties":2, "rightish":2, "rightism":2, "rightist":2, "rightly":2, "rightness":2, "righto":2, "rightward":2, "rightwards":2, "righty":2, "rigsdag":2, "rigsdaler":3, "rigadoon":3, "rigamarole":4, "rigatoni":4, "rigger":2, "rigging":2, "rigging loft":3, "rigid":2, "rigid-frame":2, "rigmarole":3, "rigol":2, "rigor":2, "rigor mortis":4, "rigorism":3, "rigorist":3, "rigoristic":4, "rigorous":3, "rigorously":4, "rigolet":3, "rigoletto":4, "rigveda":3, "rigvedic":3, "riis":1, "rijksdaaler":3, "rijn":1, "rijswijk":2, "riksdag":2, "riksm'":2, "riksmaal":2, "rikisha":3, "rikshaw":2, "rile":1, "rill":1, "rillet":2, "riling":2, "rilke":2, "rillet":2, "rillette":2, "rillettes":2, "rim":1, "rim":1, "rime":1, "rimester":2, "rimbaud":2, "rimer":2, "rimfire":2, "riming":2, "rimier":3, "rimiest":3, "rimini":3, "rimless":2, "rimming":2, "rimple":2, "rimrock":2, "rimsky-korsakov":4, "rimstone":2, "rimy":2, "rin":1, "rind":1, "rindless":2, "rindy":2, "ring":1, "ring":1, "ring circuit":3, "ring finger":3, "ring ouzel":3, "ring-a-lievio":3, "ring-necked pheasant":3, "ringed":1, "ringed plover":3, "ringbolt":2, "ringbone":2, "ringdove":2, "ringer":2, "ringer's solution":5, "ringers":2, "ringgit":2, "ringhals":2, "ringhalses":3, "ringing":2, "ringing tone":3, "ringingly":3, "ringingness":3, "ringleader":3, "ringless":2, "ringlet":2, "ringleted":3, "ringlike":2, "ringmaster":3, "ringneck":2, "ringsail":2, "ringside":2, "ringster":2, "ringtail":2, "ringwood":2, "ringworm":2, "rink":1, "rinse":1, "rinsing":2, "rinceau":2, "rinderpest":3, "rinforzando":4, "ringent":2, "rip":1, "rip":1, "rip":1, "rip van winkle":4, "rip-roaring":2, "ripe":1, "ripely":2, "ripeness":2, "ripcord":2, "ripen":2, "riping":2, "ripley":2, "ripon":2, "ripper":2, "ripping":2, "rippingly":3, "rippingness":3, "ripple":2, "ripple mark":3, "rippler":2, "ripplet":2, "ripply":2, "riprap":2, "riprapped":2, "riprapping":3, "ripsaw":2, "ripsnorter":3, "riptide":2, "ripuarian":5, "rise":1, "rise above":3, "rishi":2, "risk":1, "risk capital":4, "risker":2, "riskier":3, "riskiest":3, "riskiness":3, "riskless":2, "risky":2, "riss":1, "risen":2, "riser":2, "rising":2, "rising trot":3, "risibility":5, "risible":3, "risqu":2, "rissole":2, "rissoles":2, "rissol":4, "rit":1, "rite":1, "rite of passage":4, "riteless":2, "ritelessness":3, "rittman":2, "ritz":1, "ritzier":3, "ritziest":3, "ritzily":3, "ritziness":3, "ritzy":2, "rita":2, "ritter":2, "ritter":2, "ritters":2, "ritual":3, "ritualise":4, "ritualism":4, "ritualist":4, "ritualistic":5, "ritualistically":7, "ritualize":4, "ritualized":4, "ritualizing":5, "ritualization":6, "ritually":4, "riv":1, "rive":1, "rivage":2, "riven":2, "river":2, "river horse":3, "rivers":2, "riverbank":3, "riverbank":3, "riverdale":3, "riverhead":3, "riverhead":3, "riverine":3, "riverless":3, "riverlike":3, "riverside":3, "riverton":3, "riverview":3, "rivet":2, "riveted":3, "riveter":3, "riveting":3, "rivetless":3, "rivetted":3, "rivetting":3, "riving":2, "riviera":4, "rivulet":3, "rivulus":3, "rix-dollar":2, "rizar":2, "rizzar":2, "rizzio":2, "ria":2, "rial":2, "rialto":3, "rialto":3, "riant":2, "riantly":3, "riata":3, "ribat":2, "ribeirto":4, "ribera":3, "ribose":2, "riboflavin":4, "riboflavine":4, "ribonuclease":5, "ribonucleic acid":7, "riboso":3, "ribosome":3, "ribosomal rna":5, "ribozo":3, "ricardo":3, "ricercar":3, "ricercare":4, "ricercari":4, "ricercata":4, "richard":2, "richet":2, "richier":2, "ricin":2, "ricotta":3, "rident":2, "ridiculosity":6, "ridiculous":4, "ridiculously":5, "ridiculousness":5, "ridotto":3, "riel":2, "riel":2, "rienzi":3, "rienzo":3, "rifacimento":5, "rifle":2, "rifle grenade":4, "rifle range":3, "rifler":2, "riflebird":3, "rifleman":3, "riflemanship":4, "riflery":3, "rifling":2, "riga":2, "rigaudon":3, "rigatoni":4, "rigel":2, "rigi":2, "rigidified":4, "rigidify":4, "rigidifying":5, "rigil kent":3, "rigor":2, "rijeka":3, "riley":2, "riley":2, "rilievi":3, "rilievo":3, "rima":2, "rimini":3, "rimose":2, "rimosely":3, "rimosity":4, "rimous":2, "rimouski":3, "rimu":2, "rina":2, "rio":2, "rio branco":4, "rio de janeiro":6, "rio grande":3, "riot":2, "riot act":3, "rioter":3, "riotingly":4, "riotist":3, "riotistic":4, "riotous":3, "riotously":4, "riotousness":4, "riobitsu":4, "riparian":4, "ripidolite":4, "ripieno":3, "ripost":2, "riposte":2, "riposted":3, "riposting":3, "risorgimento":5, "risotto":3, "risus sardonicus":6, "rita":2, "ritardando":4, "ritenuto":4, "ritornello":4, "rival":2, "rivaled":2, "rivalled":2, "rivaling":3, "rivalling":3, "rivalrousness":4, "rivalry":3, "rivera":3, "riviere":3, "riyadh":2, "riyal":2, "riza":2, "rizal":2, "rly":1, "rma":1, "rmm":1, "rms":1, "rms":1, "rna":1, "rnas":1, "rnli":1, "rnr":1, "rnvr":1, "rnzaf":1, "rnzn":1, "roach":1, "roaches":2, "road":1, "road agent":3, "road metal":3, "road-hoggish":2, "road-hoggism":2, "roadability":5, "roadbed":2, "roadblock":2, "roadholding":3, "roadhouse":2, "roadhouses":3, "roadless":2, "roadlessness":3, "roadroller":3, "roadrunner":3, "roadstead":2, "roadster":2, "roadway":2, "roadwork":2, "roadworthy":3, "roak":1, "roam":1, "roan":1, "roar":1, "roarer":2, "roaring":2, "roaring forties":4, "roaringly":3, "roast":1, "roastable":3, "roaster":2, "roasting":2, "roastingly":3, "roadus":2, "rob":1, "rob":1, "robbe-grillet":2, "robe":1, "robe-de-chambre":2, "robes-de-chambre":2, "robespierre":2, "robeless":2, "robeson":2, "roband":2, "robalo":3, "robben island":4, "robber":2, "robber crab":3, "robber fly":3, "robberies":3, "robbery":3, "robbia":2, "robbin":2, "robbing":2, "robbins":2, "robbinsdale":3, "rober":2, "robert":2, "robert i":3, "robertson":3, "robin":2, "robin":2, "robin hood":3, "robin's-egg blue":3, "robing room":3, "robinson":3, "robinette":3, "roborant":3, "robson":2, "robyn":2, "roc":1, "roc":1, "roche moutonn":4, "rochdale":2, "rochester":3, "rochet":2, "rock":1, "rock":1, "rock bottom":3, "rock candy":3, "rock crystal":3, "rock garden":3, "rock hopper":3, "rock lobster":3, "rock melon":3, "rock pigeon":3, "rock salmon":3, "rock-bottom":2, "rockabilly":4, "rockable":3, "rockaway":3, "rockaway":3, "rockdale":2, "rocker":2, "rocker arm":3, "rockered":2, "rockeries":3, "rockery":3, "rocket":2, "rocket engine":4, "rocketeer":3, "rocketer":3, "rocketry":3, "rocketsonde":3, "rockefeller":4, "rocketeer":3, "rockfish":2, "rockfishes":3, "rockford":2, "rockhampton":3, "rockies":2, "rocking chair":3, "rocking horse":3, "rocking stone":3, "rockingham":3, "rockingly":3, "rockier":3, "rockiest":3, "rockiness":3, "rockland":2, "rockledge":2, "rockling":2, "rockmart":2, "rockne":2, "rockoon":2, "rockport":2, "rockrose":2, "rockshaft":2, "rockville":2, "rockweed":2, "rockwell":2, "rockwood":2, "rocky":2, "rocky":2, "rocky mountain goat":5, "rocky mountains":4, "rocambole":3, "rod":1, "rod":1, "rode":1, "rodger":2, "rodgers":2, "rodded":2, "roddie":2, "rodding":2, "roddy":2, "roderick":3, "roderica":4, "rodless":2, "rodlike":2, "rodney":2, "rodomontade":4, "rodomontaded":5, "rodomontading":5, "roe":1, "roentgen":2, "roentgen":2, "roentgen equivalent man":7, "roentgen ray":3, "roentgenise":3, "roentgenize":3, "roentgenography":5, "roentgenologist":5, "roentgenology":5, "roentgenometer":5, "roentgenoscopy":5, "roentgenogram":4, "roentgenograph":4, "roentgenographic":5, "roentgenographically":7, "roentgenologic":5, "roentgenologically":7, "roentgenopaque":4, "roentgenoscope":4, "roentgenoscopic":5, "roentgenotherapy":6, "roethke":2, "roebuck":2, "roemer":2, "roemer":2, "roerich":2, "roeselare":4, "rogue":1, "rogues' gallery":4, "rogatory":4, "roger":2, "roger":2, "rogers":2, "roil":1, "roilier":3, "roiliest":3, "roily":2, "roister":2, "roisterer":3, "roisterous":3, "roisterously":4, "roister":2, "rok":1, "rok":1, "roke":1, "role":1, "role-playing":2, "rolf":1, "rolfe":1, "roll":1, "roll of honor":4, "rollable":3, "rollaway":3, "rollback":2, "rollbar":2, "roller":2, "roller bearing":4, "roller coaster":4, "roller skate":3, "roller towel":4, "roller-skate":2, "rolling":2, "rolling hitch":3, "rolling mill":3, "rolling pin":3, "rolling stock":3, "rolling stone":3, "rolling stones":3, "rollingly":3, "rollmop":2, "rollneck":2, "rollskated":3, "rollskating":3, "rolltop":2, "rollway":2, "rolph":1, "rolland":2, "roller derby":4, "rollick":2, "rollicker":3, "rollicking":3, "rollickingly":4, "rollickingness":4, "rollicksome":3, "rollo":2, "rollock":2, "rom":1, "rom":1, "rom":1, "rome":1, "romeward":2, "romp":1, "romper":2, "rompers":2, "rompingly":3, "rompish":2, "rompishly":3, "rompishness":3, "romanes":3, "romany":3, "romberg":2, "romish":2, "romishly":3, "romishness":3, "rommany":3, "rommel":2, "romney":2, "romney marsh":3, "romulus":3, "roncevaux":2, "ronde":1, "rone":1, "ronggeng":2, "roncesvalles":3, "ronco":2, "rondeau":2, "rondel":2, "rondelle":2, "rondelet":3, "rondo":2, "rondure":2, "rondnia":4, "rondnia":3, "ronkonkoma":4, "ronni":2, "ronnie":2, "ronny":2, "ronquil":2, "ronsard":2, "ronyon":2, "roo":1, "rood":1, "roof":1, "roof garden":3, "roofer":2, "roofing":2, "roofless":2, "rooflike":2, "rooftree":2, "rook":1, "rookeries":3, "rookery":3, "rookie":2, "rookier":3, "rookiest":3, "rooky":2, "room":1, "room service":3, "room temperature":5, "room-and-pillar":2, "roomer":2, "roomette":2, "roomful":2, "roomies":2, "rooming house":3, "roomier":3, "roomiest":3, "roomily":3, "roominess":3, "roommate":2, "roomy":2, "roorbach":2, "roorback":2, "roose":1, "roost":1, "roost":1, "rooster":2, "roosterfish":3, "roosterfishes":4, "roosing":2, "root":1, "root":1, "root canal":3, "root climber":3, "root nodule":3, "root position":4, "rootage":2, "rooted":2, "rooter":2, "rooti":2, "rootle":2, "rootless":2, "rootlessness":3, "rootlet":2, "rootlike":2, "rootstalk":2, "rootstock":2, "rootworm":2, "rooty":2, "rooving":2, "roodepoort-maraisburg":5, "rooing":2, "rooinek":3, "roosevelt":3, "rooseveltian":5, "rope":1, "rope dancer":3, "ropeable":3, "ropedance":2, "ropedancer":3, "ropedancing":3, "ropemaker":3, "ropemaking":3, "ropewalk":2, "ropewalker":3, "ropeway":2, "ropable":3, "roper":2, "roperies":3, "ropery":3, "roping":2, "ropier":3, "ropiest":3, "ropily":3, "ropiness":3, "ropy":2, "roque":1, "roquefort":2, "roquelaure":3, "rort":1, "rorqual":2, "rorschach test":3, "rose":1, "rose":1, "rose apple":3, "rose acacia":4, "rose campion":4, "rose chafer":3, "rose geranium":5, "rose mallow":3, "rose of jericho":5, "rose of sharon":4, "rose window":3, "rose-colored":2, "rose-water":2, "roseanna":3, "rosebay":2, "roseberry":3, "rosebery":3, "rosebud":2, "rosebud":2, "roseburg":2, "rosebush":2, "rosecrans":2, "rosefish":2, "rosefishes":3, "rosehip":2, "roseless":2, "roselike":2, "rosemaries":3, "rosemary":3, "rosemarie":3, "roseville":2, "rosewall":2, "rosewood":2, "rosh hashana":4, "rosh hashanah":4, "rospa":1, "ross":1, "ross":1, "ross and cromarty":5, "ross dependency":5, "ross island":3, "rosse":1, "rossford":2, "rossville":2, "rost":1, "rosace":2, "rosan":2, "rosanne":2, "rosaniline":4, "rosalind":3, "roscian":3, "roscius":3, "roscoe":2, "roscoelite":3, "roscommon":3, "rosellen":3, "roset":2, "rosin":2, "rosin oil":3, "rosing":2, "rosinante":4, "rosinweed":3, "rosiny":3, "rosily":3, "rosinante":4, "roskilde":3, "roslyn":2, "rossellini":4, "rossetti":3, "rossini":3, "rossiya":3, "rostand":2, "rostella":3, "rostellum":3, "roster":2, "rostock":2, "rostov":2, "rostov-on-don":2, "rostra":2, "rostral":2, "rostrated":3, "rostrocarinate":5, "rostropovich":4, "rostrum":2, "roswell":2, "rosy":2, "rosy finch":3, "rot":1, "rote":1, "rothesay":2, "rotherham":3, "rothermere":3, "rothko":2, "rothschild":2, "rotte":1, "rottweiler":3, "rotgut":2, "rotl":2, "rotproof":2, "rotta":2, "rotted":2, "rotten":2, "rotten borough":4, "rottenstone":3, "rotter":2, "rotterdam":3, "rotting":2, "rouche":1, "rouge":1, "rouge dragon":3, "rough":1, "rough breathing":3, "rough diamond":4, "rough passage":3, "rough puff pastry":4, "rough-and-ready":2, "rough-and-tumble":2, "rough-legged buzzard":4, "rough-spoken":2, "rough-spoken":2, "roughage":2, "roughcast":2, "roughcastdried":3, "roughcastdrying":4, "roughcaster":3, "roughcasting":3, "roughdry":2, "roughen":2, "roughener":3, "rougher":2, "roughhewn":2, "roughhewing":3, "roughhouse":2, "roughing-in":2, "roughish":2, "roughly":2, "roughneck":2, "roughness":2, "roughrider":3, "roughshod":2, "roughstring":2, "rouging":2, "rounce":1, "round":1, "round angle":3, "round robin":3, "round table":3, "round table":3, "round-shouldered":2, "round-table":2, "round-trip ticket":3, "round-tripper":2, "roundsman":2, "roundabout":3, "rounded":2, "roundedly":3, "roundedness":3, "rounder":2, "rounders":2, "roundhead":2, "roundheaded":3, "roundheadedness":4, "roundhouse":2, "roundhouses":3, "rounding":2, "roundish":2, "roundishness":3, "roundlet":2, "roundline":2, "roundly":2, "roundness":2, "roundup":2, "roundworm":2, "roundel":2, "roundelay":3, "roup":1, "roupet":2, "roupier":3, "roupily":3, "roupy":2, "rouse":1, "rouseabout":3, "roust":1, "roustabout":3, "rousedness":3, "rouser":2, "rousing":2, "rousingly":3, "rousseau":2, "rousseauism":3, "rousseauist":3, "rousseauistic":4, "rousseauite":3, "roussel":2, "roussillon":3, "rout":1, "route":1, "routeman":2, "routemarch":2, "routh":1, "routed":2, "router":2, "routing":2, "roux":1, "rouault":2, "roubaix":2, "rouble":2, "roucou":2, "roue":2, "rouen":2, "rouget de lisle":4, "roulade":2, "rouleau":2, "roulers":2, "roulette":2, "rouletted":3, "rouletting":3, "roumania":4, "roumanian":4, "roumelia":4, "routine":2, "routinely":3, "routinism":3, "routinist":3, "routinize":3, "routinized":3, "routinizing":4, "rou":3, "rove":1, "rove beetle":3, "rove-over":2, "roven":2, "rover":2, "rover":2, "rover scout":3, "roving":2, "roving commission":5, "rovingness":3, "row":1, "row over":3, "rowe":1, "rowte":1, "rowted":2, "rowting":2, "rowan":2, "rowable":3, "rowboat":2, "rowdily":3, "rowdiness":3, "rowdy":2, "rowdyish":3, "rowdyishly":4, "rowdyishness":4, "rowdyism":3, "rowel":2, "roweled":2, "rowelled":2, "roweling":3, "rowelling":3, "rowen":2, "rower":2, "rowing boat":3, "rowing machine":4, "rowlandson":3, "rowlock":2, "roxane":2, "roxana":3, "roxas y acuna":6, "roxburgh":2, "roxburghshire":3, "roxi":2, "roxie":2, "royce":1, "royal":2, "royal":2, "royal air force":4, "royal assent":4, "royal academy":6, "royal blue":3, "royal commission":5, "royal duke":3, "royal engineers":5, "royal fern":3, "royal flush":3, "royal highness":4, "royal icing":4, "royal institution":6, "royal jelly":4, "royal marines":4, "royal navy":4, "royal palm":3, "royal poinciana":6, "royal purple":4, "royal road":3, "royal society":6, "royal standard":4, "royal tennis":4, "royal victorian order":8, "royal warrant":4, "royal worcester":4, "royale":2, "royalise":3, "royalised":3, "royalism":3, "royalist":3, "royalising":4, "royalistic":4, "royalize":3, "royalized":3, "royalizing":4, "royalization":5, "royally":3, "royalty":3, "royersford":3, "royette":2, "rozener":2, "rozzer":2, "roald":2, "roanoke":3, "roanoke island":5, "robert":2, "roberta":3, "roberto":3, "roberval":3, "robinia":4, "robinson":3, "robigo":3, "robigus":3, "robina":3, "roble":2, "robomb":2, "roborant":3, "robot":2, "robot bomb":3, "robotize":3, "robotized":3, "robotizing":4, "robotization":5, "robotlike":3, "roboam":3, "roburite":3, "robus":2, "robust":2, "robustly":3, "robustness":3, "robustious":3, "robustiously":4, "roca":2, "rocaille":2, "rochelle":2, "rochelle powder":4, "rochelle salt":3, "rocinante":4, "rococo":3, "rodent":2, "rodent operative":6, "rodenticide":4, "rodenticide":4, "rodez":2, "rodeo":3, "rodeos":3, "rodi":2, "rodin":2, "rodolphe":2, "rodzinski":3, "rogation":3, "rogation days":4, "roger-ducasse":3, "roget":2, "rogier":3, "rogueries":3, "roguery":3, "roguing":2, "roguish":2, "roguishly":3, "roguishness":3, "rojak":2, "rojas":2, "roland":2, "roly-poly":3, "roma":2, "romain":2, "romaine":2, "romains":2, "roman":2, "roman":2, "roman alphabet":5, "roman arch":3, "roman calendar":5, "roman candle":4, "roman catholic":5, "roman catholic church":6, "roman catholicism":6, "roman collar":4, "roman empire":4, "roman holiday":5, "roman law":3, "roman mile":3, "roman nose":3, "roman numerals":5, "roman pace":3, "roman-fleuve":2, "roman-nosed":2, "romance":2, "romance":2, "romancer":3, "romans":2, "romansch":2, "romansh":2, "romanesque":3, "romanic":3, "romanise":3, "romanised":3, "romanism":3, "romanist":3, "romanising":4, "romanistic":4, "romanize":3, "romanizer":4, "romanization":5, "romantic":3, "romantically":5, "romanticalness":5, "romanticise":4, "romanticism":4, "romanticist":4, "romanticistic":5, "romanticize":4, "romanticized":4, "romanticizing":5, "romanticization":6, "romaunt":2, "romagna":3, "romaic":3, "romaji":3, "romaji":3, "romania":3, "romania":4, "romanian":4, "romano":3, "romanov":3, "romanus":3, "romane-conti":5, "romeo":3, "romero":3, "romish":2, "romulo":3, "romyko":3, "romnia":4, "rone":2, "roneo":3, "ronin":2, "roquet":2, "roraima":3, "roris":2, "rory":2, "ros":2, "rosa":2, "rosanilin":4, "rosaniline":4, "rosaria":4, "rosarian":4, "rosarium":4, "rosariums":4, "rosary":3, "rosabel":3, "rosaceous":3, "rosalie":3, "rosamond":3, "rosamund":3, "rosario":3, "rosary":3, "roselle":2, "roselle":2, "rosella":3, "rosenberg":3, "rosenberger":4, "rosenkavalier":5, "rosenwald":3, "rosery":3, "rosette":2, "rosette":2, "rosetta":3, "rosetta stone":4, "roseate":3, "rosemaling":4, "roseola":4, "roseolar":4, "rosie":2, "rosie lee":3, "rosicrucian":4, "rosina":3, "rosita":3, "rostovtzeff":3, "rosy":2, "roszak":2, "ros":3, "rota":2, "rota":2, "rotarian":4, "rotarianism":5, "rotate":2, "rotatable":4, "rotatably":4, "rotameter":4, "rotary":3, "rotary club":4, "rotary engine":5, "rotary plough":4, "rotary press":4, "rotation":3, "rotational":4, "rotative":3, "rotatively":4, "rotator":3, "rotators":3, "rotatores":4, "rotatory":4, "rotenone":3, "roti":2, "rotifera":4, "rotiferal":4, "rotisserie":4, "rotifer":3, "roto":2, "rotor":2, "rotorcraft":3, "rotos":2, "rotogravure":4, "rotorua":4, "rototiller":4, "rotund":2, "rotundness":3, "rotunda":3, "roturier":3, "rovaniemi":5, "rover":2, "rowan":2, "roy":2, "rozi":2, "rpc":1, "rpm":1, "rps":1, "rpt":1, "rsa":1, "rsfsr":1, "rsgb":1, "rsj":1, "rsl":1, "rsm":1, "rsr":1, "rsv":1, "rsvp":1, "rtl":1, "rtr":1, "rtt":1, "rtty":1, "rub":1, "rub along":3, "rub' al khali":4, "rube":1, "rubtsovsk":2, "rubaboo":3, "rubber":2, "rubber band":3, "rubber cement":4, "rubber cheque":3, "rubber goods":3, "rubber plant":3, "rubber shoes":3, "rubber tree":3, "rubber-faced":2, "rubber-stamp":2, "rubberise":3, "rubberised":3, "rubberising":4, "rubberize":3, "rubberized":3, "rubberizing":4, "rubberneck":3, "rubbery":3, "rubbing":2, "rubbish":2, "rubbisy":3, "rubble":2, "rubblework":3, "rubblier":3, "rubbliest":3, "rubbly":2, "rubbra":2, "rubby":2, "rubdown":2, "rubstone":2, "ruc":1, "ruche":1, "ruching":2, "ruck":1, "rucksack":2, "ruckus":2, "ruction":2, "rudd":1, "rude":1, "rude":1, "rudely":2, "rudeness":2, "rudbeckia":4, "rudder":2, "rudderfish":3, "rudderfishes":4, "rudderhead":3, "rudderlike":3, "rudderpost":3, "rudderstock":3, "ruddier":3, "ruddiest":3, "ruddily":3, "ruddiness":3, "ruddle":2, "ruddleman":3, "ruddock":2, "ruddy":2, "ruddy duck":3, "rudish":2, "rudyard":2, "rue":1, "rue":1, "rueful":2, "ruff":1, "ruffe":1, "ruffed":1, "rufflike":2, "ruffian":3, "ruffianism":4, "ruffianly":4, "ruffle":2, "ruffled":2, "ruffler":2, "ruffly":2, "rug":1, "rug-cutter":2, "rug-cutting":2, "rugby":2, "rugby":2, "rugby football":4, "rugby league":3, "rugby union":4, "rugged":2, "ruggedise":3, "ruggedize":3, "ruggedly":3, "rugger":2, "ruggiero":3, "rugging":2, "ruglike":2, "ruhr":1, "ruin":1, "ruisdael":2, "rule":1, "rules":1, "ruler":2, "ruling":2, "rum":1, "rum":1, "rump":1, "rump parliament":4, "rumpless":2, "rumba":2, "rumble":2, "rumble seat":3, "rumbler":2, "rumblingly":3, "rumbly":2, "rumbustious":3, "rumford":2, "rumless":2, "rummage":2, "rummage out":3, "rummage sale":3, "rummaged":2, "rummager":3, "rummaging":3, "rummer":2, "rummy":2, "rumpelstiltskin":4, "rumple":2, "rumpus":2, "rumpus room":3, "rumpuses":3, "rumrunner":3, "rumrunning":3, "rumsey":2, "run":1, "run after":3, "run across":3, "run along":3, "run around":3, "run away":3, "run into":3, "run over":3, "run-around":2, "run-in":1, "run-of-paper":2, "run-on":1, "run-up":1, "runch":1, "rundbogenstil":4, "rundlet":2, "rundstedt":2, "rune":1, "runed":1, "runelike":2, "runesmith":2, "rung":1, "runt":1, "runtish":2, "runtishly":3, "runtishness":3, "runtier":3, "runtiest":3, "runtiness":3, "runty":2, "runabout":3, "runagate":3, "runback":2, "runcible spoon":4, "runcinate":3, "runcorn":2, "rundi":2, "rundle":2, "rundown":2, "runkle":2, "runlet":2, "runnel":2, "runner":2, "runner bean":3, "runner-up":2, "runners-up":2, "runnemede":3, "running":2, "running board":3, "running head":3, "running light":3, "running mate":3, "running rigging":4, "running stitch":3, "running-birch":2, "runnier":3, "runniest":3, "runny":2, "runnymede":3, "runoff":2, "runout":2, "runround":2, "runway":2, "runyon":2, "rupture":2, "rupturable":4, "rus":1, "ruse":1, "rush":1, "rushee":2, "rusher":2, "rushing":2, "rushingly":3, "rushier":3, "rushiest":3, "rushmore":2, "rushville":2, "rushwork":2, "rushy":2, "rusk":1, "rusk":1, "russ":1, "russes":2, "russki":2, "russky":2, "rust":1, "rust bucket":3, "rust-colored":2, "rustier":3, "rustiest":3, "rustily":3, "rustiness":3, "rustproof":2, "rusty":2, "ruskin":2, "ruskinian":4, "russell":2, "russell diagram":5, "russellite":3, "russellville":3, "russet":2, "russetish":3, "russetlike":3, "russety":3, "russelyn":3, "russia":2, "russia leather":4, "russian":2, "russian dressing":4, "russian empire":4, "russian orthodox church":6, "russian revolution":6, "russian roulette":4, "russian salad":4, "russian turkestan":5, "russian wolfhound":4, "russian zone":3, "russianise":3, "russianised":3, "russianising":4, "russianize":3, "russianized":3, "russianizing":4, "russianization":5, "russo-japanese war":5, "russophil":3, "russophile":3, "russophobe":3, "russophobia":5, "rustic":2, "rusticly":3, "rusticness":3, "rustin":2, "rustical":3, "rustically":4, "rusticalness":4, "rusticate":3, "rusticated":4, "rusticating":4, "rustication":4, "rusticator":4, "rustle":2, "rustle up":3, "rustler":2, "rustlingly":3, "rustre":2, "rustred":2, "rusty":2, "rut":1, "ruth":1, "ruth":1, "rutherford":3, "rutherford":3, "rutherfordton":4, "rutherfordium":5, "rutherfurd":3, "ruthful":2, "ruthfully":3, "ruthfulness":3, "ruthlee":2, "ruthless":2, "ruthlessly":3, "ruthlessness":3, "rutland":2, "rutlandshire":3, "rutledge":2, "rutted":2, "rutting":2, "ruttish":2, "ruttishness":3, "ruttier":3, "ruttiest":3, "ruttily":3, "ruttiness":3, "rutty":2, "ruysdael":2, "ruyter":2, "ruanda-urundi":5, "rubasse":2, "rubato":3, "rubella":3, "rubellite":3, "rubens":2, "rubenism":3, "rubenist":3, "rubeniste":3, "rubescence":3, "rubescent":3, "rubefaction":4, "rubefacient":4, "rubefy":3, "rubeola":4, "rubeolar":4, "rubidic":3, "rubidium":4, "rubidium-strontium dating":8, "rubied":2, "rubiginose":4, "rubiginous":4, "rubinstein":3, "rubiaceous":4, "rubicelle":3, "rubicon":3, "rubicund":3, "rubicundity":5, "rubious":3, "ruble":2, "rubric":2, "rubrically":4, "rubricate":3, "rubricated":4, "rubricating":4, "rubrication":4, "rubricator":4, "rubrician":3, "ruby":2, "ruby":2, "ruby silver":4, "ruby spinel":4, "rubye":2, "rubn":3, "ruby":3, "rudaceous":3, "rudenture":3, "ruderal":3, "rudesheimer":4, "ruderal":3, "rudiment":3, "rudimental":4, "rudimentarily":6, "rudimentariness":6, "rudimentary":5, "rudolf":2, "rudolf i":3, "rudolph":2, "rudolph i":3, "rudulph":2, "rudy":2, "ruer":2, "rufescence":3, "rufescent":3, "rufisque":2, "rufino":3, "ruford":2, "rufous":2, "rufus":2, "ruga":2, "rugose":2, "rugosely":3, "rugosity":4, "rugulose":3, "ruin":2, "ruing":2, "ruinable":4, "ruination":4, "ruiner":3, "ruinous":3, "ruinously":4, "ruinousness":4, "rumal":2, "rumanite":3, "rumania":4, "rumanian":4, "rumen":2, "rumelia":4, "rumi":2, "rumina":3, "ruminant":3, "ruminantly":4, "ruminate":3, "ruminated":4, "ruminating":4, "rumor":2, "rumor":2, "rumormonger":4, "rumour":2, "rumourmonger":4, "runic":2, "rupee":2, "rupert":2, "rupiah":3, "rural":2, "rural dean":3, "rural district":4, "rural science":4, "ruralise":3, "ruralised":3, "ruralism":3, "ruralist":3, "ruralising":4, "ruralize":3, "ruralized":3, "ruralizing":4, "rurality":4, "ruralization":5, "rurik":2, "ruritania":5, "ruse":2, "rutabaga":4, "rutaceous":3, "ruthenic":3, "ruthenia":4, "ruthenian":4, "ruthenious":4, "ruthenium":4, "rutile":2, "rutin":2, "rutilant":3, "rutilated":4, "ruturing":3, "ruwenzori":4, "rwa":1, "rwanda":2, "rwd":1, "rwy":1, "ryazan":2, "rychard":2, "rye":1, "rye":1, "ryegrass":2, "ryeland":2, "ryke":1, "rynd":1, "ryswick":2, "ryukyu":2, "ryunosuke":4, "ryurik":2, "ryal":2, "rybinsk":2, "rydal":2, "ryder":2, "ryley":2, "ryot":2, "ryobu shinto":5, "ryokan":3, "ryukyu islands":5, "rgnault":3, "rpertoire":4, "raumur":4, "rcamier":4, "rchauff":5, "rclame":3, "rgence":3, "rgime":3, "rgisseur":4, "rjane":3, "rmoulade":4, "rptiteur":6, "rsistant":4, "rsistante":4, "rsum":5, "runion":4, "ro":3, "rmulo":4, "rti":3, "rntgen":3, "rntgenize":4, "rntgenized":4, "rntgenizing":5, "rntgenography":6, "rntgenologist":6, "rntgenology":6, "rntgenoscopy":6, "rntgenographic":6, "rntgenographically":8, "rntgenologic":6, "rntgenoscope":5, "rntgenoscopic":6, "rnne":3, "raumur":3, "raumur scale":4, "rchauff":3, "rclame":2, "rdhos":2, "rgen":2, "rgen":2, "rgenise":3, "rgenize":3, "rgenology":5, "rgenogram":4, "rgenograph":4, "rgenopaque":4, "rgenoscope":4, "rgenotherapy":6, "rgime":2, "rgisseur":3, "rmoulade":3, "ro bravo":4, "ro de oro":5, "ro muni":4, "ro negro":4, "rsum":3, "runion":3, "s level":3, "s-r connection":4, "saar":1, "saarbrcken":4, "saarbren":3, "saarland":2, "saadi":2, "saare":2, "saaremaa":3, "saarinen":3, "sab":1, "sabc":1, "sabadilla":4, "sabaoth":3, "sabatini":4, "sabaton":3, "sabbat":2, "sabbat":2, "sabbath":2, "sabbath school":3, "sabbathless":3, "sabbathlike":3, "sabbatic":3, "sabbatical":4, "sabbatical":4, "sabbatical year":5, "sabbatically":5, "sabbaticalness":5, "sabbatarian":5, "sabbatization":5, "sabine":2, "sabot":2, "sabotage":3, "sabotaged":3, "sabotaging":4, "saboteur":3, "sabulose":3, "sabulosity":5, "sabulous":3, "sac":1, "sac":1, "sachs":1, "sachsen":2, "sack":1, "sack-coated":2, "sackbut":2, "sackcloth":2, "sackclothed":2, "sacker":2, "sackful":2, "sacking":2, "sacklike":2, "sackville":2, "sackville-west":2, "sacque":1, "sacaton":3, "sacbut":2, "saccharic":3, "saccharic acid":5, "saccharify":4, "saccharase":3, "saccharate":3, "saccharide":3, "sacchariferous":5, "saccharimeter":5, "saccharimetry":5, "saccharin":3, "saccharine":3, "saccharinely":4, "saccharinity":5, "saccharization":5, "saccharoid":3, "saccharoidal":4, "saccharometer":5, "saccharometry":5, "saccharose":3, "saccharofarinaceous":7, "saccharolytic":5, "saccharometric":5, "sacco":2, "saccule":2, "saccular":3, "sacculate":3, "sacculated":4, "sacculation":4, "sacculus":3, "sacerdotal":4, "sacerdotalism":5, "sacerdotalist":5, "saclike":2, "sacra":2, "sacrament":3, "sacramental":4, "sacramentalism":5, "sacramentalist":5, "sacramentality":6, "sacramentally":5, "sacramentalness":5, "sacramentarian":6, "sacramento":4, "sacrist":2, "sacristan":3, "sacristy":3, "sacrifice":3, "sacrificeable":5, "sacrificer":4, "sacrificial":4, "sacrificial anode":6, "sacrilege":3, "sacrilegious":4, "sacrilegiously":5, "sacrilegiousness":5, "sacrobosco":4, "sacroiliac":5, "sacrosanct":3, "sacrosanctness":4, "sacrosanctity":5, "sacrosciatic":5, "sacrum":2, "sad":1, "sade":1, "sadden":2, "saddhu":2, "saddle":2, "saddle block":3, "saddle horse":3, "saddle roof":3, "saddle soap":3, "saddle-backed":2, "saddle-sore":2, "saddler":2, "saddleries":3, "saddlery":3, "saddleback":3, "saddlebag":3, "saddlebill":3, "saddlebow":3, "saddlecloth":3, "saddlelike":3, "saddlesore":3, "saddletree":3, "sadducee":3, "sadduceeism":4, "sadducean":4, "sadism":2, "sadist":2, "sadiron":3, "sadly":2, "sadness":2, "sadomasochism":5, "sadware":2, "sae":1, "saehrimnir":3, "safe":1, "safe period":4, "safe-blower":2, "safe-breaker":2, "safe-conduct":2, "safe-deposit":3, "safeguard":2, "safekeeping":3, "safelight":2, "safely":2, "safeness":2, "safety":2, "safety belt":3, "safety curtain":4, "safety factor":4, "safety film":3, "safety fuse":3, "safety glass":3, "safety islands":4, "safety lamp":3, "safety match":3, "safety pin":3, "safety razor":4, "safety valve":3, "safety-deposit":4, "safr":1, "saffian":3, "safflower":3, "safford":2, "saffron":2, "safranin":3, "safranine":3, "safrol":2, "safrole":2, "sag":1, "sage":1, "sage":1, "sage":1, "sage derby":3, "sagebrush":2, "sagely":2, "sagamore":3, "sagbut":2, "sager":2, "sagest":2, "saggar":2, "sagger":2, "sagging":2, "sagittal":3, "sagittal suture":5, "sagittally":4, "sagittaries":4, "sagittary":4, "sagittate":3, "sagittarii":5, "sagittarius":5, "saguenay":3, "saice":1, "said":1, "sail":1, "sail-over":2, "sailboat":2, "sailcloth":2, "sailer":2, "sailfish":2, "sailfishes":3, "sailing":2, "sailing boat":3, "sailing ship":3, "sailless":2, "sailmaker":3, "sailor":2, "sailor hat":3, "sailor suit":3, "sailor's-choice":2, "sailorfishes":4, "sailoring":3, "sailorlike":3, "sailorly":3, "sailplane":2, "sailplaned":2, "sailplaning":3, "sain":1, "saint":1, "saint agnes's eve":4, "saint albans":3, "saint anthony's cross":5, "saint anthony's fire":5, "saint austell":3, "saint augustine":4, "saint bernard":3, "saint bernard pass":4, "saint catharines":4, "saint christopher":4, "saint christopher-nevis-anguilla":7, "saint croix river":4, "saint david's":3, "saint elmo's fire":4, "saint elias mountains":6, "saint george's channel":4, "saint gotthard":3, "saint helens":3, "saint helier":3, "saint helena":4, "saint james's palace":4, "saint kilda":3, "saint kitts-nevis-anguilla":5, "saint laurent":3, "saint lawrence":3, "saint lawrence seaway":5, "saint leger":3, "saint leonard":3, "saint louis":3, "saint luke's summer":4, "saint lucia":4, "saint martin":3, "saint martin's summer":5, "saint moritz":3, "saint peter's":3, "saint petersburg":4, "saint pten":3, "saint swithin's day":4, "saint thomas":3, "saint valentine's day":5, "saint vincent":3, "saint vitus's dance":4, "saint-brieuc":2, "saint-denis":2, "saint-exupery":4, "saint-exupry":5, "saint-etienne":2, "saint-laurent":2, "saint-louis":2, "saint-maur-des-foss":2, "saint-mihiel":2, "saint-nazaire":2, "saint-quentin":2, "saint-simon":2, "saint-simonism":3, "saint-simonianism":5, "saint-milion":3, "saintsbury":3, "saintdom":2, "sainted":2, "sainthood":2, "saintless":2, "saintlier":3, "saintliest":3, "saintlily":3, "saintliness":3, "saintly":2, "saintpaulia":4, "sainfoin":2, "saith":1, "saithe":1, "saiga":2, "saigon":2, "saionji":3, "saipan":2, "saishu":2, "saishuto":3, "saiva":2, "sake":1, "sakharov":3, "sakkara":3, "sakkoi":2, "sakkos":2, "sakta":2, "saktas":2, "sakti":2, "saktism":2, "sal":1, "sal":1, "sal ammoniac":5, "sal soda":3, "sal volatile":5, "sale":1, "sale":1, "sale and return":4, "sales":1, "sales promotion":4, "sales resistance":4, "salesclerk":2, "salesgirl":2, "salesman":2, "salesmanship":3, "salespeople":3, "salesperson":3, "salesroom":2, "saleability":5, "saleable":3, "saleably":3, "saleroom":2, "salisbury":3, "salisbury plain":4, "salk":1, "salmon":2, "salmon":2, "salmon pink":3, "salmon trout":3, "salmonberry":4, "salmonlike":3, "salt":1, "salt":1, "salt away":3, "salt lake city":4, "salt-and-pepper":2, "salts":1, "saltbox":2, "saltbush":2, "saltcellar":3, "saltchuck":2, "saltchucker":3, "salted":2, "salter":2, "saltern":2, "saltfish":2, "saltgrass":2, "saltish":2, "saltishly":3, "saltishness":3, "saltier":3, "saltily":3, "saltiness":3, "saltless":2, "saltness":2, "saltpan":2, "saltpeter":3, "saltpetre":3, "saltwater":3, "saltworks":2, "saltwort":2, "salty":2, "salve":1, "salvable":3, "salving":2, "salzburg":2, "salzgitter":3, "salad":2, "salad days":3, "salad dressing":4, "salability":5, "salable":3, "salably":3, "saladin":3, "salamanca":4, "salamander":4, "salamanderlike":5, "salamandrin":4, "salamandrine":4, "salaminian":5, "salamis":3, "salaried":3, "salary":3, "salaryless":4, "salazar":3, "salchow":2, "salduba":3, "salep":2, "salet":2, "salebrous":3, "saleratus":4, "salford":2, "salic":2, "salic":2, "salic law":3, "salimeter":4, "salinger":3, "salinger":3, "salique":2, "salicaceous":4, "salicin":3, "salicornia":5, "salicylaldehyde":6, "salicylic":4, "salicylic acid":6, "salified":3, "salify":3, "salifying":4, "salinometer":5, "salivary":4, "salivary gland":5, "salivate":3, "salivation":4, "salivator":4, "sallee":2, "sallenders":3, "sallet":2, "sallie":2, "sallied":2, "sallier":3, "sallisaw":3, "sallow":2, "sallowish":3, "sallowness":3, "sallowy":3, "sallust":2, "sally":2, "sally":2, "sally army":4, "sally lunn":3, "sallye":2, "sallying":3, "salmacis":3, "salmagundi":4, "salmagundi":4, "salmagundy":4, "salmanazar":4, "salmi":2, "salmis":2, "salmonella":4, "salmonellae":4, "salmonoid":3, "salol":2, "salop":2, "salomon":3, "salopette":3, "salpa":2, "salpinx":2, "salpinx":2, "salpingectomy":5, "salpinges":3, "salpingitic":4, "salpingian":4, "salpingitis":4, "salpingostomy":5, "salpingotomy":5, "salpingostomatomy":7, "salpicon":3, "salpiform":3, "salpiglossis":4, "salsify":3, "salta":2, "saltant":2, "saltando":3, "saltarello":4, "saltation":3, "saltato":3, "saltatorial":5, "saltatory":4, "salten":2, "saltier":2, "saltillo":3, "saltine":2, "saltire":2, "saltireways":3, "saltirewise":3, "salticid":3, "saltigrade":3, "salto":2, "saltus":2, "saltuses":3, "salutarily":5, "salutariness":5, "salutary":4, "salutation":4, "salutational":5, "salutationless":5, "salvage":2, "salvaged":2, "salvageable":4, "salvager":3, "salvaging":3, "salvarsan":3, "salvability":5, "salvableness":4, "salvably":3, "salvador":3, "salvation":3, "salvation army":5, "salvational":4, "salvationism":4, "salvationist":4, "salvationist":4, "salvator":3, "salvatore":3, "salvatore":4, "salve":2, "salver":2, "salverform":3, "salvia":3, "salvini":3, "salvo":2, "salvo":2, "salvor":2, "salween":2, "salyut":2, "sam":1, "sam":1, "sam":1, "same":1, "sameness":2, "samos":1, "samp":1, "sampson":2, "samariform":4, "samba":2, "sambaed":2, "sambar":2, "sambaing":3, "sambhar":2, "sambhur":2, "sambo":2, "sambre":2, "sambuk":2, "sambur":2, "sambuca":3, "samfoo":2, "samhita":3, "samiel":2, "samite":2, "samisen":3, "samkhya":2, "samlet":2, "sammartini":4, "sammy":2, "sammy":2, "samnite":2, "samnium":3, "samoset":3, "samothrace":3, "samovar":3, "samoyed":3, "samoyedic":4, "sampan":2, "samphire":2, "sample":2, "sampler":2, "sampling":2, "sampo":2, "samsara":3, "samshu":2, "samson":2, "samsun":2, "samuel":3, "samurai":3, "san":1, "san antonio":5, "san bernardino":5, "san bernardino pass":6, "san cristbal":4, "san diego":4, "san fernando":4, "san francisco":4, "san francisco bay":5, "san ildefonso":5, "san jos":3, "san jose":3, "san jose scale":4, "san juan bautista":5, "san juan islands":4, "san juan mountains":4, "san luis potos":6, "san mart":3, "san marino":4, "san pedro sula":5, "san remo":3, "san salvador":4, "san salvador island":6, "san sebasti":4, "san stefano":4, "sanction":2, "sanction mark":3, "sanctionable":4, "sanctionative":4, "sanctioner":3, "sanctionless":3, "sanctified":3, "sanctifiable":5, "sanctifiableness":6, "sanctifiably":5, "sanctification":5, "sanctifier":4, "sanctify":3, "sanctifyingly":5, "sanctimonious":5, "sanctimoniously":6, "sanctimoniousness":6, "sanctimony":4, "sanctitude":3, "sanctity":3, "sanctum":2, "sanctum sanctorum":5, "sanctus":2, "sanctus bell":3, "sanctuaried":4, "sanctuaries":4, "sanctuary":4, "sand":1, "sand":1, "sand castle":3, "sand dollar":3, "sand hopper":3, "sand lizard":3, "sand martin":3, "sand painting":3, "sand viper":3, "sand-floated":2, "sand-groper":2, "sandhya":2, "sandbag":2, "sandbagged":2, "sandbagging":3, "sandbank":2, "sandblast":2, "sandblaster":3, "sandblindness":2, "sandbox":2, "sandbox tree":3, "sandbug":2, "sandbur":2, "sandburg":2, "sandculture":3, "sanded":2, "sander":2, "sanderling":3, "sandfish":2, "sandfishes":3, "sandfly":2, "sandglass":2, "sandgrouse":2, "sandhog":2, "sandhurst":2, "sandier":3, "sandiest":3, "sandless":2, "sandlike":2, "sandlot":2, "sandman":2, "sandpaper":3, "sandpapery":4, "sandpiper":3, "sandpit":2, "sandpiper":3, "sandpoint":2, "sandroller":3, "sandsoap":2, "sandstone":2, "sandstorm":2, "sandwich":2, "sandwich":2, "sandwich board":3, "sandwich cake":3, "sandwich compound":4, "sandwich course":3, "sandwich islands":4, "sandwich man":3, "sandwich tern":3, "sandworm":2, "sandwort":2, "sandy":2, "sandy blight":3, "sane":1, "sanely":2, "saneness":2, "sang":1, "sangh":1, "sanger":2, "sanglier":3, "sank":1, "sankt polten":3, "sannyasi":3, "sannyasin":3, "sans":1, "sans":1, "sans serif":3, "sans-culotte":2, "sans-culottes":2, "sans-culottic":3, "sans-culottide":3, "sans-culottides":3, "sans-culottish":3, "sans-culottism":3, "sans-culottist":3, "sansk":1, "sant":1, "santbech":2, "sanative":3, "sanatoria":5, "sanatorium":5, "sanatoriums":5, "sanatory":4, "sanbenito":4, "sanborn":2, "sancus":2, "sandal":2, "sandaled":2, "sandalled":2, "sandaling":3, "sandalling":3, "sandalwood":3, "sandalwood island":5, "sandakan":3, "sandarac":3, "sandarach":3, "sander":2, "sandersville":3, "sandhi":2, "sandiver":3, "sandor":2, "sandra":2, "sandrakottos":4, "sandringham":3, "sandro":2, "sandron":2, "sandrocottus":4, "sandusky":3, "sandy":2, "saner":2, "sanest":2, "sanforise":3, "sanforize":3, "sanforized":3, "sangallensis":4, "sangallo":3, "sangaree":3, "sangha":2, "sango":2, "sangraal":2, "sangreal":3, "sangria":3, "sanguicolous":4, "sanguiferous":4, "sanguine":2, "sanguinely":3, "sanguineness":3, "sanguineous":4, "sanguineousness":5, "sanguinolent":4, "sanguinolency":5, "sanguivorous":4, "sanguification":5, "sanguinaria":5, "sanguinarily":5, "sanguinariness":5, "sanguinary":4, "sanhedrin":3, "sanicle":3, "sanidine":3, "sanidinic":4, "sanitarian":5, "sanitarily":5, "sanitariness":5, "sanitarium":5, "sanitary":4, "sanitary belt":5, "sanitary engineering":8, "sanitary towel":6, "sanitarium":5, "sanitation":4, "sanitise":3, "sanitised":3, "sanitiser":4, "sanitising":4, "sanitize":3, "sanitized":3, "sanitizer":4, "sanitizing":4, "sanitization":5, "sanity":3, "sanjak":2, "sankara":3, "sankey":2, "sankhya":2, "sanmicheli":4, "sanserif":3, "sansevieria":5, "sanskrit":2, "sanskritic":3, "sanskritist":3, "sansom":2, "sanson-flamsteed projection":6, "sansovino":4, "santa":2, "santa ana":4, "santa anna":4, "santa ana":4, "santa catalina":6, "santa catarina":6, "santa claus":3, "santa clara":4, "santa cruz":3, "santa fe":3, "santa fe trail":4, "santa gertrudis":5, "santa isabel":5, "santa marta":4, "santa maura":4, "santa maria":5, "santal":2, "santana":3, "santander":3, "santalaceous":4, "santar":3, "santaria":4, "santarm":4, "santayana":4, "santee":2, "santims":2, "santir":2, "santiago":4, "santiago de compostela":9, "santiago de cuba":7, "santiago del estero":8, "santimi":3, "santo domingo":5, "santonica":4, "santos":2, "santos-dumont":3, "santonin":3, "saorstat":2, "saorstat eireann":4, "sap":1, "sapanwood":3, "sapajou":3, "saphead":2, "sapheaded":3, "sapheadedness":4, "sapid":2, "sapidness":3, "sapindaceous":4, "sapless":2, "saplessness":3, "sapling":2, "sapodilla":4, "saponaceous":4, "saponaceousness":5, "saponin":3, "saponite":3, "saporific":4, "saporosity":5, "saporous":3, "sapotaceous":4, "sappanwood":3, "sapper":2, "sapphic":2, "sapphic ode":3, "sapphire":2, "sapphire":2, "sapphirine":3, "sapphism":2, "sapphira":3, "sappho":2, "sapping":2, "sappier":3, "sappiest":3, "sappiness":3, "sapporo":3, "sappy":2, "saprobe":2, "saprogenic":4, "saprogenous":4, "saprolegnia":5, "saprolite":3, "sapropel":3, "sapropelic":4, "saprophyte":3, "saprophytic":4, "saprophytically":6, "saprozoic":4, "sapsago":3, "sapsucker":3, "sapwood":2, "saqqara":3, "sar":1, "sarcenet":2, "sard":1, "sarge":1, "sark":1, "sarkless":2, "sarre":1, "sarsenet":2, "sarthe":1, "sara":2, "sarah":2, "saraband":3, "sarabande":3, "saracen":3, "saracenic":4, "saracenism":4, "saracenlike":4, "saragossa":4, "sarasota":4, "sarcasm":2, "sarcastic":3, "sarcastical":4, "sarcastically":5, "sarcina":3, "sarcode":2, "sarcoid":2, "sarcoidosis":4, "sarcology":4, "sarcophagous":4, "sarcophagus":4, "sarcous":2, "sarcoadenoma":6, "sarcoadenomas":6, "sarcoadenomata":7, "sarcocarp":3, "sarcocarcinoma":6, "sarcocarcinomas":6, "sarcocarcinomata":7, "sarcoenchondroma":6, "sarcoenchondromas":6, "sarcoenchondromata":7, "sarcolemma":4, "sarcolemmas":4, "sarcolemmata":5, "sarcolemmic":4, "sarcolemmous":4, "sarcological":5, "sarcoma":3, "sarcomatoid":4, "sarcomatosis":5, "sarcophagic":4, "sarcophile":3, "sarcoplasm":3, "sardar":2, "sardanapallos":5, "sardanapalos":5, "sardanapalus":5, "sardes":2, "sardegna":3, "sardine":2, "sardinia":4, "sardinian":4, "sardis":2, "sardian":3, "sardius":3, "sardonic":3, "sardonically":5, "sardonicism":4, "sardonyx":3, "sardou":2, "sargasso":3, "sargasso sea":4, "sargasso weed":4, "sargassum":3, "sargassumfish":4, "sargassumfishes":5, "sargent":2, "sargo":2, "sargon ii":3, "sargodha":3, "sarka":2, "sarkis":2, "sarky":2, "sarmatia":4, "sarmatian":4, "sarment":2, "sarmentose":3, "sarmentous":3, "sarmentum":3, "sarnath":2, "sarnen":2, "sarnia":3, "sarnoff":2, "sarpanch":2, "sarpedon":3, "sarraute":2, "sarracenia":5, "sarraceniaceous":6, "sarrazin":3, "sarrusophone":4, "sarrusophone":4, "sarsaparilla":5, "sarsen":2, "sarto":2, "sartor":2, "sartorial":4, "sartorially":5, "sartorii":4, "sartorius":4, "sartre":2, "sarum":2, "sarum use":3, "sarvodaya":4, "sash":1, "sash window":3, "sask":1, "sass":1, "sasin":2, "saskatchewan":4, "saskatoon":3, "saskatoon":3, "sassaby":3, "sassafras":3, "sassafras oil":4, "sassanid":3, "sassanids":3, "sassari":3, "sassasanidae":5, "sasserides":4, "sassetta":3, "sassenach":3, "sassier":3, "sassiest":3, "sassoon":2, "sassy":2, "sassywood":3, "sastruga":3, "sat":1, "sat":1, "sat":1, "sat-chit-ananda":3, "satb":1, "satchel":2, "sate":1, "sattva":2, "sattvic":2, "satcitananda":3, "sated":2, "satellite":3, "satellitic":4, "satellitium":5, "satin":2, "satin stitch":3, "satin-flower":3, "sating":2, "satinflower":4, "satinleaf":3, "satinlike":3, "satinpod":3, "satinwood":3, "satiny":3, "satire":2, "satisfaction":4, "satisfactional":5, "satisfactionless":5, "satisfactorily":6, "satisfactoriness":6, "satisfactory":5, "satisfied":3, "satisfiable":5, "satisfier":4, "satisfy":3, "satisfyingly":5, "satisfyingness":5, "satinet":3, "satinette":3, "satirise":3, "satirised":3, "satirist":3, "satiriser":4, "satirising":4, "satirize":3, "satirized":3, "satirizing":4, "satirisation":5, "satsuma":3, "saturn":2, "saturday":3, "saturdays":3, "saturnalia":5, "saturnalian":5, "saturnalias":5, "saturnine":3, "saturnism":3, "saturant":3, "saturate":3, "saturated":4, "saturater":4, "saturability":6, "saturable":4, "saturation":4, "saturator":4, "satyagraha":4, "satyagraha":4, "satyagrahi":4, "satyaloka":4, "satyriasis":5, "sau":1, "sauce":1, "sauceboat":2, "saucebox":2, "sauceless":2, "saucepan":2, "sauch":1, "saucing":2, "saucy":2, "saud":1, "sauerkraut":2, "saugh":1, "sauk":1, "saul":1, "sault sainte marie":4, "sauncier":3, "saunciest":3, "sauncy":2, "saunder":2, "saundra":2, "saunter":2, "saurischian":4, "saussure":2, "saussurite":3, "saussuritic":4, "saucer":2, "saucier":3, "sauciest":3, "saucy":2, "saudi arabia":6, "sauerbraten":4, "sauerkraut":3, "sauger":2, "saugerties":3, "saugus":2, "sauna":2, "saurashtra":3, "saurel":2, "saurian":3, "sauropod":3, "saury":2, "sausage":2, "sausage dog":3, "sausage roll":3, "sausagelike":3, "saut":2, "sauternes":2, "saut":3, "sav":1, "save":1, "save":1, "saveable":3, "saveableness":4, "savage":2, "savage":2, "savage island":4, "savagely":3, "savageness":3, "savagery":3, "savagism":3, "savable":3, "savableness":4, "savarin":3, "saver":2, "saveloy":3, "savin":2, "savine":2, "saving":2, "savings account":4, "savings bank":3, "savingly":3, "savior":2, "savior":2, "saviorhood":3, "saviorship":3, "saviour":2, "saviour":2, "saviourhood":3, "saviourship":3, "savonarola":5, "savvy":2, "saw":1, "saw palmetto":4, "sawn":1, "sawbill":2, "sawbones":2, "sawbuck":2, "sawder":2, "sawdust":2, "sawdustish":3, "sawdusty":3, "sawer":2, "sawfish":2, "sawfly":2, "sawhorse":2, "sawing":2, "sawlike":2, "sawmill":2, "sawney":2, "sawpit":2, "sawyer":2, "sax":1, "sax":1, "saxe":1, "saxe-altenburg":3, "saxe-coburg-gotha":3, "saxe-meiningen":3, "saxe-weimar-eisenach":4, "saxhorn":2, "saxicoline":4, "saxicolous":4, "saxifrage":3, "saxifragaceous":5, "saxo grammaticus":6, "saxon":2, "saxon blue":3, "saxonic":3, "saxonism":3, "saxonite":3, "saxonically":5, "saxonian":4, "saxony":3, "saxony":3, "saxophone":3, "saxophonic":4, "saxophonist":4, "saxtuba":3, "say":1, "say":1, "say-so":1, "saye":1, "sayre":1, "sayreville":2, "sayable":3, "sayer":2, "sayers":2, "sayest":2, "sayid":2, "saying":2, "sayyid":2, "sazerac":3, "sazerac":3, "saba":2, "sabaean":3, "sabah":2, "sabadell":3, "sabalo":3, "sabatier":3, "sabayon":3, "sabellian":4, "saber":2, "saberlike":3, "sabean":3, "sabin":2, "sabin":2, "sabine":2, "sabina":3, "sable":2, "sable":2, "sable antelope":5, "sablefish":3, "sablefishes":4, "saboted":2, "sabora":3, "saboraim":4, "sabra":2, "sabre":2, "sabre-toothed tiger":4, "sabretache":3, "saburo":3, "sacellum":3, "sacha":2, "sachem":2, "sachemdom":3, "sachemic":3, "sachemship":3, "sacher-masoch":3, "sachet":2, "sacral":2, "sacraria":4, "sacrarial":4, "sacrarium":4, "sacred":2, "sacred college":4, "sacred cow":3, "sacred heart":3, "sacred mushroom":4, "sacring":2, "sacring bell":3, "sacroiliac":5, "sacrum":2, "sadat":2, "sadaqat":3, "sade":2, "sadhaka":3, "sadhe":2, "sadhika":3, "sadhu":2, "sadi":2, "sadi":2, "sadie":2, "sadistic":3, "sadistically":5, "sadoc":2, "sadowa":3, "sadye":2, "safar":2, "safari":3, "safari jacket":5, "safari park":4, "safari suit":4, "safavi":3, "safavid":3, "safawid":3, "safi":2, "safid rud":3, "saga":2, "sagacity":4, "sagacious":3, "sagaciously":4, "sagaciousness":4, "saghalien":3, "sagitta":3, "sagittae":3, "sagittiform":4, "sago":2, "sago grass":3, "sago palm":3, "saguache":2, "saguaro":3, "saguia el hamra":6, "sagunto":3, "saguntum":3, "sahaptin":3, "sahara":3, "saharan":3, "saharian":4, "sahara":3, "saharanpur":4, "saheb":2, "sahib":2, "sahib":2, "sahitya akademi":7, "sahuaro":3, "said":2, "sais":2, "saida":3, "saitis":3, "sakai":2, "sakai":2, "sake":2, "saker":2, "sakhalin":3, "saki":2, "saki":2, "sakor saki":4, "sakuntala":4, "sakyamuni":4, "sak":3, "sal":2, "salaam":2, "salaamlike":3, "salacity":4, "salade":2, "salal":2, "salambria":4, "salacia":3, "salacious":3, "salaciously":4, "salaciousness":4, "salado":3, "salami":3, "salem":2, "salerno":3, "salesian":3, "salicylate":4, "salieri":3, "saliferous":4, "saline":2, "salina":3, "salinity":4, "salish":2, "salishan":3, "salian":3, "salicet":3, "salicin":3, "salicine":3, "salicional":4, "salida":3, "salience":3, "salient":3, "saliently":4, "salientian":5, "salina":3, "salina":3, "salinas":3, "saliva":3, "salon":2, "salon music":4, "salonica":4, "saloon":2, "saloop":2, "salome":3, "salonica":4, "salonika":4, "salopian":4, "salus":2, "salute":2, "saluted":3, "saluter":3, "saluting":3, "salubrious":4, "salubriously":5, "salubriousness":5, "salubrity":4, "salugi":3, "saluki":3, "salutatoria":6, "salutatorian":6, "salutatorily":6, "salutatorium":6, "salutatory":5, "salute":3, "sama-veda":3, "samain":2, "samaj":2, "saman":2, "samantha":3, "samar":2, "samaria":4, "samaritan":4, "samaritanism":5, "samarium":4, "samarkand":3, "samarra":3, "samarskite":3, "samadhi":3, "samanid":3, "samara":3, "samara":3, "samarang":3, "samech":2, "samekh":2, "samh'in":2, "samhain":2, "samizdat":3, "samia":3, "samian":3, "samian ware":4, "samithi":3, "samiti":3, "samos":2, "samoa":3, "samoa islands":5, "samoan":3, "samocellular":5, "samothrake":4, "samuel":3, "sanaa":2, "sanies":3, "sanious":3, "sanusi":3, "saon":2, "sapanwood":3, "sapele":3, "saphar":2, "saphena":3, "saphenous":3, "sapidity":4, "sapir":2, "sapience":3, "sapient":3, "sapiently":4, "sapiency":4, "sapiential":4, "sapientially":5, "saponified":4, "saponification":6, "saponifier":5, "saponify":4, "saponifying":5, "sapor":2, "sapour":2, "sapota":3, "sapraemia":4, "sapremic":3, "sapremia":4, "saprogenous":4, "saprophagous":4, "sarah":2, "saran":2, "saransk":2, "sarangi":3, "sarasvati":4, "saragat":3, "sarajevo":4, "sarape":3, "saratov":3, "sarawak":3, "sari":2, "sarong":2, "saronic":3, "saronic gulf":4, "saros":2, "saros":2, "sarouk":2, "saroyan":3, "saruk":2, "sasame-yuki":4, "sasebo":3, "saseno":3, "sasha":2, "sashay":2, "sasin":2, "sastruga":3, "satai":2, "satan":2, "satang":2, "satanic":3, "satanism":3, "satanist":3, "satanical":4, "satanically":5, "satanicalness":5, "satay":2, "sateen":2, "satem":2, "satie":2, "satiric":3, "satirical":4, "satirically":5, "satiricalness":5, "satiate":3, "satiated":4, "satiating":4, "satiability":6, "satiable":4, "satiableness":5, "satiably":4, "satiation":4, "satiety":4, "satori":3, "satrap":2, "satrapy":3, "satsuma":3, "satsuma ware":4, "satu-mare":3, "saturnian":4, "saturniid":4, "satyr":2, "satyr play":3, "satyric":3, "satyrlike":3, "satyromania":6, "satyromaniac":6, "satyrid":3, "satyriasis":5, "sava":2, "savaii":3, "savant":2, "savants":2, "savanna":3, "savanna":3, "savannah":3, "savannah":3, "savate":2, "savoie":2, "savoir-faire":2, "savoir-vivre":3, "savor":2, "savorer":3, "savoringly":4, "savorier":4, "savoriest":4, "savorless":3, "savorous":3, "savory":3, "savour":2, "savouringly":4, "savourier":4, "savouriest":4, "savourily":4, "savouriness":4, "savourless":3, "savourous":3, "savoury":3, "savoy":2, "savoy":2, "savoy alps":3, "savoyard":3, "savoyards":3, "savoyvied":3, "savoyvier":4, "savoyviest":4, "savoyvying":4, "savona":3, "sayan mountains":4, "sayonara":4, "sayo":3, "sas":3, "satic":4, "scab":1, "scabbard":2, "scabbard fish":3, "scabbardless":3, "scabbedness":3, "scabbing":2, "scabbier":3, "scabbiest":3, "scabbily":3, "scabbiness":3, "scabble":2, "scabby":2, "scabicide":3, "scabicidal":4, "scabland":2, "scablike":2, "scabrous":2, "scabrously":3, "scabrousness":3, "scad":1, "scaffold":2, "scaffolding":3, "scag":1, "scagliola":3, "scald":1, "scaldfish":2, "scaldic":2, "scale":1, "scale insect":3, "scaled":1, "scales":1, "scaleboard":2, "scalelike":2, "scall":1, "scalled":1, "scalp":1, "scalper":2, "scalping":2, "scalpless":2, "scalage":2, "scalable":3, "scalableness":4, "scalably":3, "scalawag":3, "scalawaggery":5, "scalawaggy":4, "scaler":2, "scaling":2, "scaling ladder":4, "scalier":3, "scaliest":3, "scaliger":3, "scaliness":3, "scallawaggy":4, "scallion":2, "scallop":2, "scalloper":3, "scalloping":3, "scallopini":4, "scallywag":3, "scalpel":2, "scaly":2, "scaly anteater":5, "scamp":1, "scamper":2, "scampingly":3, "scampish":2, "scampishly":3, "scampishness":3, "scammoniate":4, "scammony":3, "scampi":2, "scan":1, "scan":1, "scand":1, "scant":1, "scantier":3, "scantiest":3, "scantily":3, "scantiness":3, "scantling":2, "scantly":2, "scantness":2, "scanty":2, "scandal":2, "scandalise":3, "scandalised":3, "scandaliser":4, "scandalising":4, "scandalize":3, "scandalized":3, "scandalizer":4, "scandalizing":4, "scandalization":5, "scandalmonger":4, "scandalously":4, "scandalousness":4, "scandaroon":3, "scandent":2, "scanderbeg":3, "scandic":2, "scandia":3, "scandia":3, "scandian":3, "scandinavia":5, "scandinavian":5, "scandinavian shield":6, "scandium":3, "scannable":3, "scanner":2, "scanning":2, "scansion":2, "scansorial":4, "scanties":2, "scape":1, "scapegoat":2, "scapegoatism":3, "scapegrace":2, "scapewheel":2, "scaphoid":2, "scaphocephalism":5, "scaphocephaly":5, "scaphocephalic":5, "scaphopod":3, "scapa flow":3, "scapolite":3, "scapula":3, "scapular":3, "scapularies":4, "scapulary":4, "scapulohumeral":6, "scar":1, "scarce":1, "scarcely":2, "scarcement":2, "scarceness":2, "scarcer":2, "scarcest":2, "scare":1, "scarecrow":2, "scarecrowish":3, "scarecrowy":3, "scaremonger":3, "scaremongering":4, "scarf":1, "scarfer":2, "scarfless":2, "scarflike":2, "scarfpin":2, "scarfskin":2, "scarp":1, "scarpe":1, "scarph":1, "scarper":2, "scarsdale":2, "scart":1, "scarves":1, "scarab":2, "scarabaean":4, "scarabaeid":4, "scarabaeiform":5, "scarabaeoid":4, "scarabaeus":4, "scaraboid":3, "scaramouch":3, "scaramouche":3, "scarborough":2, "scarborough":3, "scarcity":3, "scarer":2, "scaring":2, "scaringly":3, "scarier":3, "scariest":3, "scarified":3, "scarification":5, "scarificator":5, "scarifier":4, "scarify":3, "scarifying":4, "scariose":3, "scarious":3, "scarlatti":3, "scarlatina":4, "scarlatinal":4, "scarlatinoid":4, "scarlatinous":4, "scarless":2, "scarlet":2, "scarlet fever":4, "scarlet hat":3, "scarlet letter":4, "scarlet pimpernel":5, "scarlet runner":4, "scarlet tanager":5, "scarlet woman":4, "scarron":2, "scary":2, "scat":1, "scathe":1, "scatheless":2, "scathelessly":3, "scathing":2, "scatt":1, "scatologic":4, "scatted":2, "scatter":2, "scatter pin":3, "scatter rug":3, "scatter-gun":2, "scatteredly":3, "scatteredness":3, "scatterable":4, "scatterbrain":3, "scatterbrained":3, "scatterbrains":3, "scatterer":3, "scattering":3, "scatteringly":4, "scattershot":3, "scatting":2, "scatty":2, "scaup":1, "scauper":2, "scavenge":2, "scavenger":3, "scabies":2, "scabietic":4, "scabious":3, "scabiosa":4, "scabrous":2, "scafell pike":3, "scalade":2, "scalar":2, "scalar product":4, "scalare":3, "scalariform":4, "scalado":3, "scalene":2, "scalenohedral":5, "scalenohedron":5, "scalenus":3, "scaloppine":4, "scaloppini":4, "scamander":3, "scamandrius":4, "scamillus":3, "scaphopodous":4, "scapiform":3, "scapose":2, "scatology":4, "scatophagous":4, "scatophagy":4, "scatoscopy":4, "scatoma":3, "scatomas":3, "scatomata":4, "scd":1, "sce":1, "scelp":1, "scend":1, "scene":1, "scent":1, "scentless":2, "scentlessness":3, "scendentality":5, "sceneries":3, "scenery":3, "scepter":2, "scepterless":3, "sceptic":2, "sceptic":2, "sceptical":3, "sceptically":4, "scepticism":3, "sceptral":2, "sceptre":2, "scenarist":3, "scenario":4, "scenarios":4, "scenic":2, "scenic railway":4, "scenographer":4, "scenography":4, "scenographic":4, "scenographically":6, "sch":1, "sch":1, "schacht":1, "schaerbeek":2, "schaffhausen":3, "schappe":2, "scharnhorst":2, "scharwenka":3, "schary":2, "schatchen":2, "schaumburg-lippe":3, "schav":1, "schadenfreude":3, "schechter":2, "schedule":2, "scheduled castes":3, "scheduled territories":6, "schedular":3, "scheel":1, "scheelite":2, "scheele":2, "schefferite":3, "scheidt":1, "schein":1, "scheiner":2, "scheldt":1, "schelling":2, "scheme":1, "schemeful":2, "schemeless":2, "schemer":2, "scheming":2, "schemingly":3, "scherm":1, "scherzando":3, "scherzo":2, "schedius":3, "scheherazade":5, "schema":2, "schematic":3, "schematically":5, "schemata":3, "schematise":3, "schematised":3, "schematism":3, "schematiser":4, "schematising":4, "schematize":3, "schenectady":4, "scheveningen":4, "schiaparelli":4, "schiavone":3, "schick":1, "schickard":2, "schiedam":2, "schiffli":2, "schiller":2, "schiller":2, "schillerize":3, "schillerized":3, "schillerizing":4, "schillerization":5, "schilling":2, "schippers":2, "schipperke":3, "schism":1, "schismless":2, "schist":1, "schismatic":3, "schismatical":4, "schistose":2, "schistosity":4, "schistous":2, "schistosis":3, "schistosome":3, "schistosomiasis":6, "schiz":1, "schizo":2, "schizoid":2, "schizocarp":3, "schizocarpic":4, "schizocarpous":4, "schizogenesis":5, "schizogenic":4, "schizogenetic":5, "schizogenetically":7, "schizogonic":4, "schizomycete":4, "schizomycetic":5, "schizomycetous":5, "schizomycosis":5, "schizophrene":3, "schizophrenic":4, "schizophrenia":5, "schizophyte":3, "schizophytic":4, "schizophyceous":4, "schizopod":3, "schizothymic":4, "schizothymia":5, "schipa":2, "schizogamy":4, "schizogenous":4, "schizogenously":5, "schizogonous":4, "schizogony":4, "schizont":2, "schizopodous":4, "schleiden":2, "schleiermacher":4, "schlep":1, "schlepp":1, "schlepper":2, "schlesinger":3, "schleswig":2, "schleswig-holstein":3, "schlegel":2, "schlemiel":2, "schlemihl":2, "schlesien":3, "schlieffen":2, "schliemann":2, "schlieren":2, "schlimazl":2, "schlimazel":3, "schlock":1, "schmaltzier":3, "schmaltziest":3, "schmaltzy":2, "schmalzier":3, "schmalziest":3, "schmalzy":2, "schmeling":2, "schmidt":1, "schmidt telescope":4, "schmo":1, "schmoosing":2, "schmoozing":2, "schmuck":1, "schnaps":1, "schnapper":2, "schnauzer":2, "schnabel":2, "schnecke":2, "schnecken":2, "schneider":2, "schneiderman":3, "schnitzler":2, "schnitzel":2, "schnook":1, "schnorkel":2, "schnorkle":2, "schnorrer":2, "schnozzle":2, "schoenberg":2, "schoenius":3, "scholar":2, "scholarch":2, "scholarless":3, "scholarship":3, "schomberger":3, "schongauer":3, "school":1, "school welfare officer":6, "schools":1, "schoolbag":2, "schoolbook":2, "schoolboy":2, "schoolboyish":3, "schoolchild":2, "schoolchildren":3, "schoolcraft":2, "schoolfellow":3, "schoolgirl":2, "schoolgirlish":3, "schoolhouse":2, "schoolhouses":3, "schoolie":2, "schooling":2, "schoolma'am":2, "schoolman":2, "schoolman":2, "schoolmarm":2, "schoolmaster":3, "schoolmastership":4, "schoolmate":2, "schoolmistress":3, "schoolroom":2, "schoolteacher":3, "schoolteaching":3, "schoolwork":2, "schoolyard":2, "schooner":2, "schorl":1, "schorlaceous":3, "schottky noise":3, "schottische":2, "schouten islands":4, "schofield":2, "schola cantorum":5, "scholastholiast":3, "scholastic":3, "scholastical":4, "scholastically":5, "scholasticate":4, "scholasticism":4, "scholia":3, "scholiast":3, "scholiastic":4, "scholium":3, "schopenhauer":4, "schopenhauerism":5, "schrank":1, "schrecklichkeit":3, "schreiner":2, "schreinerize":3, "schreinerized":3, "schreinerizing":4, "schrik":1, "schryari":3, "schrdinger":4, "schrdinger":3, "schrdinger equation":6, "schuit":1, "schul":1, "schulberg":2, "schumpeter":3, "schurz":1, "schuschnigg":2, "schuss":1, "schutzstaffel":3, "schuyt":1, "schuyler":2, "schubert":2, "schumacher":3, "schuman":2, "schumann":2, "schumacher":3, "schwa":1, "schwann":1, "schwarzkopf":2, "schwarzwald":2, "schwaben":2, "schweinfurt":2, "schweitzer":2, "schwenkfelder":3, "schwerin":2, "schwitters":2, "schynbald":2, "schmberger":4, "schnbein":3, "schnberg":3, "schberg":2, "sci":1, "sci-fi":1, "scientific":2, "scilicet":3, "scilla":2, "scilla":2, "scillies":2, "scillonian":4, "scilly isles":3, "scilly islands":4, "scimitar":3, "scimitared":3, "scimiter":3, "scincoid":2, "scincoidian":4, "scintigraphy":4, "scintilla":3, "scintillant":3, "scintillantly":4, "scintillate":3, "scintillated":4, "scintillating":4, "scintillatingly":5, "scintillation":4, "scintillation counter":6, "scintillator":4, "scintillometer":5, "scipio":3, "scirophoria":5, "scirrhi":2, "scirrhoid":2, "scirrhosity":4, "scirrhous":2, "scirrhus":2, "scissel":2, "scissile":2, "scission":2, "scissor":2, "scissors":2, "scissors kick":3, "scissorlike":3, "scissure":2, "scituate":3, "scivvy":2, "sciaenid":3, "sciaenoid":3, "sciamachy":4, "sciatic":3, "sciatica":4, "sciatically":5, "science":2, "science fiction":4, "scientist":2, "scienter":3, "sciential":3, "scientific":4, "scientific method":6, "scientific socialism":7, "scientism":3, "scientist":3, "scientist":3, "scientistic":4, "scientistically":6, "scientology":5, "sciomachy":4, "scion":2, "sciosophist":4, "sciosophy":4, "sciolism":3, "sciomancy":4, "scioto":3, "scire facias":5, "sciurine":3, "sciuroid":3, "sclaff":1, "sclaffer":2, "sclent":1, "sclerometric":4, "sclera":2, "sclerectomy":4, "sclerenchymatous":5, "sclerenchyma":4, "sclerema":3, "sclerite":2, "scleritic":3, "scleriasis":4, "scleritis":3, "scleroid":2, "sclerometer":4, "sclerosed":2, "sclerotic":3, "sclerotomy":4, "sclerous":2, "scleroblast":3, "scleroblastic":4, "sclerocauly":4, "scleroderma":4, "sclerodermatitis":6, "sclerodermatous":5, "sclerodermitis":5, "scleroma":3, "scleromas":3, "scleromata":4, "sclerophyll":3, "sclerophyllous":4, "sclerophylly":4, "scleroprotein":4, "sclerosal":3, "sclerosis":3, "sclerotial":3, "sclerotin":3, "sclerotized":3, "sclerotitis":4, "sclerotium":4, "sclerotization":5, "sclerotome":3, "sclerotomic":4, "scoff":1, "scoffer":2, "scoffingly":3, "scofflaw":2, "scoke":1, "scold":1, "scoldable":3, "scolder":2, "scoldingly":3, "scolecite":3, "scollop":2, "scolops":2, "scolopendrid":4, "scolopendrine":4, "scolopes":3, "scolophore":3, "scombrid":2, "scombroid":2, "sconce":1, "sconcing":2, "scone":1, "scone":1, "sconcheon":2, "scoop":1, "scooper":2, "scoopful":2, "scoopingly":3, "scoot":1, "scooter":2, "scop":1, "scope":1, "scopes":1, "scopeeion":2, "scopeless":2, "scoptophilic":4, "scoptophilia":5, "scopula":3, "scorch":1, "scorched earth policy":5, "scorcher":2, "scorchingly":3, "score":1, "scoresby":2, "scoreboard":2, "scorecard":2, "scorekeeper":3, "scorekeeping":3, "scoreless":2, "scorepad":2, "scorn":1, "scorner":2, "scornful":2, "scornfully":3, "scornfulness":3, "scorningly":3, "scorbutic":3, "scorbutical":4, "scorbutically":5, "scordatura":4, "scordature":4, "scoring":2, "scorpaenid":3, "scorpaenoid":3, "scorper":2, "scorpio":3, "scorpioid":3, "scorpion":3, "scorpion":3, "scorpion fish":4, "scorpion fly":4, "scorpion grass":4, "scorpionfish":4, "scorpionfishes":5, "scorpionfly":4, "scorpionic":4, "scorpius":3, "scot":1, "scot":1, "scotch":1, "scotch":1, "scotch pancake":3, "scotch terrier":4, "scotch woodcock":3, "scotch-irish":2, "scotchman":2, "scots":1, "scotsman":2, "scott":1, "scottsbluff":2, "scottsboro":3, "scottsburg":2, "scottsdale":2, "scottsville":2, "scottdale":2, "scotland":2, "scotland yard":3, "scotmas":2, "scotmata":3, "scotti":2, "scottie":2, "scottish":2, "scottish gaelic":4, "scottish terrier":5, "scotticism":3, "scotty":2, "scoundrel":2, "scoundrelly":3, "scour":1, "scourge":1, "scourger":2, "scourging":2, "scourgingly":3, "scourer":2, "scouring":2, "scouring rush":3, "scourings":2, "scouse":1, "scouse":1, "scout":1, "scout":1, "scouth":1, "scouter":2, "scouthood":2, "scouting":2, "scouting":2, "scoutingly":3, "scoutmaster":3, "scow":1, "scowl":1, "scowler":2, "scowlful":2, "scowlingly":3, "scofield":2, "scolex":2, "scoleces":3, "scolia":3, "scolion":3, "scoliotic":4, "scolioma":4, "scoliosis":4, "scolopophore":4, "scopas":2, "scopate":2, "scopolamine":4, "scopoline":3, "scopophilic":4, "scopophilia":5, "scopophiliac":5, "scopus":2, "scoria":3, "scoriae":3, "scoriaceous":4, "scorified":3, "scorify":3, "scorifying":4, "scoter":2, "scotia":2, "scotia":2, "scotism":2, "scotist":2, "scotistic":3, "scotistical":4, "scotomatous":4, "scotopic":3, "scotoma":3, "scotopia":4, "scotus":2, "scr":1, "scrabble":2, "scrabble":2, "scrabbler":2, "scrag":1, "scragging":2, "scraggier":3, "scraggiest":3, "scraggily":3, "scragginess":3, "scraggly":2, "scraggy":2, "scraich":1, "scram":1, "scramb":1, "scramasax":3, "scramasaxe":3, "scramble":2, "scrambled eggs":3, "scrambler":2, "scramming":2, "scran":1, "scrannel":2, "scranton":2, "scrap":1, "scrape":1, "scrape togetheror up":5, "scrapeage":2, "scrapable":3, "scrapbook":2, "scraper":2, "scraperboard":3, "scrapheap":2, "scrapie":2, "scraping":2, "scrapingly":3, "scrapper":2, "scrapping":2, "scrappingly":3, "scrappier":3, "scrappiest":3, "scrappily":3, "scrappiness":3, "scrapple":2, "scrappy":2, "scratch":1, "scratch":1, "scratch togetheror up":5, "scratch-coated":2, "scratchable":3, "scratchably":3, "scratchboard":2, "scratchcard":2, "scratcher":2, "scratches":2, "scratchier":3, "scratchiest":3, "scratchless":2, "scratchlike":2, "scratchy":2, "scrawl":1, "scrawler":2, "scrawlier":3, "scrawliest":3, "scrawliness":3, "scrawly":2, "scrawnier":3, "scrawniest":3, "scrawnily":3, "scrawniness":3, "scrawny":2, "screak":1, "screaky":2, "scream":1, "screamer":2, "screaming-meemies":3, "screamingly":3, "scree":1, "screech":1, "screecher":2, "screeching":2, "screechingly":3, "screed":1, "screen":1, "screen memory":4, "screen process":3, "screen-wiper":2, "screening":2, "screenings":2, "screeno":2, "screenplay":2, "screw":1, "screw propeller":4, "screwed":1, "screwable":3, "screwball":2, "screwdriver":3, "screwer":2, "screwhead":2, "screwless":2, "screwlike":2, "screwplate":2, "screwworm":2, "screwy":2, "scriabin":2, "scribe":1, "scribe":1, "scribeship":2, "scribal":2, "scribanne":2, "scribble":2, "scribbler":2, "scribblingly":3, "scriber":2, "scribing":2, "scrim":1, "scrimp":1, "scrimpier":3, "scrimpiest":3, "scrimpy":2, "scrimmage":2, "scrimmaged":2, "scrimmager":3, "scrimmaging":3, "scrimshank":2, "scrimshaw":2, "scrinia":3, "scrinium":3, "scrip":1, "scrip issue":3, "script":1, "script":1, "scriptwriter":3, "scriptwriting":3, "scripless":2, "scriptoria":4, "scriptorium":4, "scriptoriums":4, "scripture":2, "scripture":2, "scriptural":3, "scripturally":4, "scripturalness":4, "scrivener":2, "scrod":1, "scroddled":2, "scrofula":3, "scrofulous":3, "scrofulously":4, "scrofulousness":4, "scrog":1, "scroggy":2, "scroll":1, "scrollwork":2, "scrooge":1, "scroop":1, "scrophulariaceous":6, "scrouge":1, "scrounger":2, "scrobiculate":4, "scrobiculated":5, "scrotal":2, "scrotum":2, "scrub":1, "scrub typhus":3, "scrubbable":3, "scrubbed":2, "scrubber":2, "scrubbing":2, "scrubbier":3, "scrubbiest":3, "scrubbily":3, "scrubboard":2, "scrubby":2, "scrubland":2, "scrubwoman":3, "scrubwomen":3, "scruff":1, "scruffier":3, "scruffiest":3, "scruffy":2, "scrum":1, "scrump":1, "scrumptious":2, "scrumptiously":3, "scrumptiousness":3, "scrumpy":2, "scrummage":2, "scrummager":3, "scrunch":1, "scruple":2, "scrupleless":3, "scrupulosity":5, "scrupulous":3, "scrupulously":4, "scrutability":5, "scrutable":3, "scrutator":3, "scrutineer":3, "scrutinise":3, "scrutinised":3, "scrutinising":4, "scrutinize":3, "scrutinizer":4, "scrutinizingly":5, "scrutinization":5, "scrutiny":3, "scrutoire":2, "scry":1, "scud":1, "scudded":2, "scudding":2, "scuff":1, "scuffle":2, "scufflingly":3, "sculk":1, "sculker":2, "scull":1, "scullduggery":4, "sculler":2, "sculp":1, "sculpt":1, "sculpsit":2, "sculptor":2, "sculptor":2, "sculptoris":3, "sculptress":2, "sculpture":2, "sculptured":2, "sculpturesque":3, "sculpturing":3, "sculdudderies":4, "sculduddery":4, "sculduggery":4, "sculleries":3, "scullery":3, "scullin":2, "scullion":2, "sculpin":2, "scum":1, "scumble":2, "scumbling":2, "scumboard":2, "scumless":2, "scumlike":2, "scumming":2, "scummier":3, "scummiest":3, "scummy":2, "scunge":1, "scungy":2, "scuncheon":2, "scunner":2, "scunthorpe":2, "scup":1, "scupper":2, "scuppernong":3, "scurf":1, "scurfier":3, "scurfiest":3, "scurried":2, "scurrile":2, "scurrility":4, "scurrilous":3, "scurrilously":4, "scurrilousness":4, "scurry":2, "scurrying":3, "scurvily":3, "scurviness":3, "scurvy grass":3, "scut":1, "scutch":1, "scutcheon":2, "scute":1, "scutcheonlike":3, "scutter":2, "scuttle":2, "scuttlebutt":3, "scuba":2, "scudo":2, "scudry":4, "scuta":2, "scutage":2, "scutate":2, "scutari":3, "scutellate":3, "scutellated":4, "scutellation":4, "scutelliform":4, "scutellum":3, "scuti":2, "scutiform":3, "scutum":2, "scutum":2, "scyelite":2, "scylaceus":4, "scylla":2, "scythe":1, "scytheless":2, "scythelike":2, "scything":2, "scythia":3, "scythian":3, "scyphate":2, "scyphistoma":4, "scyphiform":3, "scyphozoa":4, "scyphozoan":4, "scyphus":2, "scyros":2, "sdrs":1, "se tenant":3, "se'nnight":2, "se-nore":1, "sea":1, "sea anchor":3, "sea anemone":5, "sea biscuit":3, "sea butterfly":4, "sea captain":3, "sea cucumber":4, "sea eagle":3, "sea elephant":4, "sea gooseberry":4, "sea holly":3, "sea islands":3, "sea ladder":3, "sea lamprey":3, "sea lavender":4, "sea lawyer":3, "sea letter":3, "sea lettuce":3, "sea level":3, "sea lily":3, "sea lion":3, "sea milkwort":3, "sea onion":3, "sea otter":3, "sea power":3, "sea purslane":3, "sea ranger":3, "sea raven":3, "sea robin":3, "sea scorpion":4, "sea serpent":3, "sea swallow":3, "sea tangle":3, "sea urchin":3, "sea-ear":1, "sea-island":2, "sea-island cotton":4, "sea-poacher":2, "seal":1, "sealed":1, "sealed orders":3, "sealant":2, "sealable":3, "sealer":2, "sealeries":3, "sealery":3, "sealing wax":3, "seallike":2, "sealskin":2, "sealyham terrier":6, "seam":1, "seamer":2, "seamier":3, "seamiest":3, "seaminess":3, "seamless":2, "seamlessly":3, "seamlessness":3, "seamstress":2, "seamy":2, "sean":1, "seanad ann":4, "sear":1, "search":1, "search party":3, "search warrant":3, "searchable":3, "searchableness":4, "searcher":2, "searching":2, "searchingly":3, "searchingness":3, "searchlight":2, "seat":1, "seato":1, "seater":2, "seating":2, "seatless":2, "seatwork":2, "seabee":2, "seaboard":2, "seaborg":2, "seaborne":2, "seacoast":2, "seacoating":2, "seacock":2, "seadog":2, "seadrome":2, "seafarer":3, "seafaring":3, "seafighter":3, "seafood":2, "seaford":2, "seafowl":2, "seafront":2, "seagirt":2, "seagoing":3, "seakale beet":3, "seakindliness":4, "seaman":2, "seamanlike":3, "seamanship":3, "seamark":2, "seamount":2, "seaplane":2, "seaport":2, "seaquake":2, "searoving":3, "seascape":2, "seascout":2, "seascouting":3, "seashell":2, "seashore":2, "seasick":2, "seasickness":3, "seaside":2, "seaside":2, "seasnail":2, "season":2, "season ticket":4, "seasonedly":3, "seasonal":3, "seasonally":4, "seasonalness":4, "seasonable":4, "seasonableness":5, "seasonably":4, "seasoner":3, "seasoning":3, "seasonless":3, "seaton valley":4, "seatrain":2, "seawan":2, "seaward":2, "seawards":2, "seaware":2, "seaway":2, "seaweed":2, "seaworthiness":4, "seaworthy":3, "seborrhea":4, "seborrheal":4, "seborrheic":4, "seborrhoea":4, "sec":1, "sec'y":1, "secam":1, "sech":1, "sect":1, "secy":1, "secateurs":3, "secchi":2, "secco":2, "second":2, "second advent":4, "second ballot":4, "second banana":5, "second chamber":4, "second childhood":4, "second class":3, "second coming":4, "second cousin":4, "second empire":4, "second estate":4, "second fiddle":4, "second floor":3, "second growth":3, "second hand":3, "second international":7, "second lieutenant":5, "second man":3, "second mate":3, "second mortgage":4, "second nature":4, "second person":4, "second reading":4, "second republic":5, "second sight":3, "second string":3, "second thought":3, "second wind":3, "second world war":4, "second-best":2, "second-class":2, "second-degree burn":4, "second-guess":2, "second-hand":2, "second-rate":2, "second-story":3, "seconda":2, "secondarily":5, "secondary":4, "secondary accent":6, "secondary cell":5, "secondary color":6, "secondary emission":7, "secondary modern school":7, "secondary processes":7, "secondary school":5, "secondary sexual characteristic":12, "secondary stress":5, "seconder":3, "secondly":3, "secondrater":4, "secondsightedness":5, "secobarbital":5, "secretaries-general":6, "secretarial":5, "secretariat":5, "secretariate":5, "secretary":4, "secretary bird":5, "secretary of state":6, "secretary-general":6, "secretaryship":5, "secretary":4, "sectarian":4, "sectarianise":5, "sectarianised":5, "sectarianism":5, "sectarianising":6, "sectarianize":5, "sectarianized":5, "sectarianizing":6, "sectarianly":5, "sectary":3, "sectary":3, "sectile":2, "section":2, "section mark":3, "sectional":3, "sectionalise":4, "sectionalised":4, "sectionalism":4, "sectionalist":4, "sectionalising":5, "sectionalize":4, "sectionalized":4, "sectionalizing":5, "sectionalization":6, "sectionally":4, "sector":2, "sectoral":3, "sectorial":4, "secundine":3, "secundines":3, "secular":3, "secularise":4, "secularised":4, "secularism":4, "secularist":4, "seculariser":5, "secularising":5, "secularistic":5, "secularize":4, "secularizer":5, "secularity":5, "secularization":6, "secularly":4, "sed-festival":3, "sedge":1, "sedge warbler":3, "sedged":1, "sedgemoor":2, "sedgier":3, "sedgiest":3, "sedgwick":2, "sedgy":2, "sedative":3, "seddon":2, "sedentarily":5, "sedentary":4, "sedecias":4, "sediment":3, "sedimental":4, "sedimentarily":6, "sedimentary":5, "sedimentation":5, "sedimentologist":6, "sedimentology":6, "sedimentologic":6, "sedrah":2, "sedrahs":2, "sedroth":2, "sedulous":3, "sedulously":4, "sedulousness":4, "see":1, "see about":3, "see into":3, "see over":3, "seed":1, "seed capsule":3, "seed coral":3, "seed money":3, "seed oyster":3, "seed potato":4, "seed vessel":3, "seedsman":2, "seedbed":2, "seedcake":2, "seedcase":2, "seeder":2, "seedier":3, "seediest":3, "seedily":3, "seediness":3, "seedless":2, "seedlessness":3, "seedlike":2, "seedling":2, "seedman":2, "seedtime":2, "seedy":2, "seek":1, "seeker":2, "seeking":2, "seel":1, "seem":1, "seemer":2, "seeming":2, "seemlier":3, "seemliest":3, "seemliness":3, "seemly":2, "seen":1, "seep":1, "seepage":2, "seer":1, "seeress":2, "seersucker":3, "seethe":1, "seethingly":3, "seeable":3, "seeableness":4, "seebeck":2, "seebeck effect":4, "seecatch":2, "seeger":2, "seeing":2, "seeland":2, "seelily":3, "seely":2, "seesaw":2, "segment":2, "segmental":3, "segmentally":4, "segmentary":4, "segmentate":3, "segmentation":4, "segmentation cavity":7, "segner":2, "segreant":3, "segregate":3, "segregated":4, "segregatedly":5, "segregatedness":5, "segregating":4, "segregable":4, "segregation":4, "segregational":5, "segregationist":5, "segregator":4, "sei":1, "seiche":1, "seidlitz powder":4, "seif":1, "seignior":2, "seigniorage":3, "seignioral":3, "seigniories":3, "seine":1, "seine":1, "seine-maritime":3, "seine-saint-denis":2, "seiner":2, "seining":2, "seise":1, "seism":1, "seiser":2, "seising":2, "seismal":2, "seismic":2, "seismism":2, "seismical":3, "seismographer":4, "seismography":4, "seismology":3, "seismologist":4, "seismology":4, "seismometry":4, "seismogram":3, "seismograph":3, "seismographic":4, "seismologic":4, "seismologically":6, "seismoscope":3, "seismoscopic":4, "seistan":2, "seize":1, "seizable":3, "seizer":2, "seizing":2, "seicento":3, "seigneur":2, "seigneurs":2, "seigneury":3, "seigneurial":4, "seignior":2, "seigniorage":3, "seigniory":3, "seignorial":4, "seiren":2, "seishin":2, "seisin":2, "seisure":2, "seizin":2, "seizor":2, "seizure":2, "sejm":1, "sekhmet":2, "sekondi":3, "sel":1, "self":1, "self-abhorrence":3, "self-abnegation":4, "self-absorbe":2, "self-absorption":3, "self-acting":2, "self-accused":2, "self-accuser":3, "self-accusing":3, "self-accusation":4, "self-accusative":4, "self-accusatory":5, "self-action":2, "self-actualizing":5, "self-actualization":6, "self-actuating":4, "self-addressed":2, "self-adjusting":3, "self-administered":4, "self-administering":5, "self-admiring":3, "self-admiration":4, "self-adulation":4, "self-advancement":3, "self-advertisement":4, "self-advertising":4, "self-afflicting":3, "self-affrighted":3, "self-aggrandizement":4, "self-aggrandizing":4, "self-amputation":4, "self-analytical":5, "self-analyzed":3, "self-annealing":3, "self-annihilation":5, "self-annulling":3, "self-antithesis":4, "self-apparent":3, "self-applauding":3, "self-applause":2, "self-appointed":2, "self-appointed":3, "self-appreciating":5, "self-appreciation":5, "self-approved":2, "self-approval":3, "self-approving":3, "self-approbation":4, "self-assertion":3, "self-assertive":3, "self-assertively":4, "self-assertiveness":4, "self-assigned":2, "self-assumed":2, "self-assumption":3, "self-assuming":3, "self-assured":2, "self-assurance":3, "self-assuredness":4, "self-attachment":3, "self-authorized":3, "self-authorizing":4, "self-abandon":3, "self-abandonment":4, "self-abasement":3, "self-abominating":5, "self-abomination":5, "self-abuse":2, "self-adorning":3, "self-adornment":3, "self-alighing":3, "self-alignment":3, "self-alinement":3, "self-alining":3, "self-amendment":3, "self-amusement":3, "self-analysis":4, "self-aware":2, "self-balanced":2, "self-banished":2, "self-banishment":3, "self-baptizer":3, "self-benefit":3, "self-benefiting":4, "self-begotten":3, "self-betrayal":3, "self-betraying":3, "self-bias":2, "self-blinded":2, "self-canceled":2, "self-cancelled":2, "self-castigating":4, "self-castigation":4, "self-catalyst":3, "self-catering":3, "self-catalysis":4, "self-centered":2, "self-centeredly":3, "self-centeredness":3, "self-centred":2, "self-centredly":3, "self-centredness":3, "self-changing":2, "self-chastise":2, "self-chastised":2, "self-chastisement":3, "self-chastising":3, "self-cleaning":2, "self-clearance":2, "self-closing":2, "self-cocker":2, "self-cocking":2, "self-cognition":3, "self-cognizance":3, "self-collected":3, "self-collectedness":4, "self-colored":2, "self-combating":3, "self-combustion":3, "self-command":2, "self-commendation":4, "self-commitment":3, "self-committal":3, "self-committing":3, "self-communication":5, "self-complacently":4, "self-complacency":4, "self-composed":2, "self-composedly":4, "self-composedness":4, "self-comprehending":4, "self-conceit":2, "self-conceited":3, "self-conceitedly":4, "self-conceitedness":4, "self-concept":2, "self-concern":2, "self-condemned":2, "self-condemning":3, "self-condemnation":4, "self-condemnatory":5, "self-conditioned":3, "self-conditioning":4, "self-confessed":2, "self-confinement":3, "self-confining":3, "self-confidence":3, "self-confident":3, "self-confidently":4, "self-conflict":2, "self-congratulation":5, "self-conquest":2, "self-conscious":2, "self-consciously":3, "self-consciousness":3, "self-conserving":3, "self-conservation":4, "self-consequence":3, "self-consistent":3, "self-consistently":4, "self-consistency":4, "self-consoling":3, "self-constituted":4, "self-constituting":4, "self-consumption":3, "self-consuming":3, "self-contained":2, "self-containedly":4, "self-containedness":4, "self-contaminating":5, "self-contamination":5, "self-contempt":2, "self-content":2, "self-contentedly":4, "self-contentedness":4, "self-contentment":3, "self-contradiction":4, "self-control":2, "self-controlled":2, "self-controlling":3, "self-convicted":3, "self-cooking":2, "self-correcting":3, "self-correction":3, "self-corrective":3, "self-created":3, "self-creating":3, "self-creation":3, "self-critical":3, "self-critically":4, "self-criticism":3, "self-cruelty":3, "self-cutting":2, "self-damnation":3, "self-dedicated":4, "self-dedication":4, "self-definition":4, "self-degradation":4, "self-deprecating":4, "self-deprecatingly":5, "self-deprecation":4, "self-deprivation":4, "self-debasement":3, "self-deceit":2, "self-deceived":2, "self-deceiving":3, "self-deception":3, "self-defence":2, "self-defense":2, "self-defencive":3, "self-defensive":3, "self-defining":3, "self-deflated":3, "self-deflation":3, "self-deifying":4, "self-dejection":3, "self-delight":2, "self-delusion":3, "self-demagnetizing":5, "self-denial":3, "self-denyingly":4, "self-dependence":3, "self-dependent":3, "self-dependency":4, "self-depending":3, "self-depraved":2, "self-depreciation":5, "self-depreciative":5, "self-deprived":2, "self-depriving":3, "self-derived":2, "self-deserving":3, "self-desertion":3, "self-design":2, "self-designer":3, "self-desire":2, "self-despair":2, "self-destroyed":2, "self-destroyer":3, "self-destroying":3, "self-detaching":3, "self-determined":3, "self-determining":4, "self-determinism":4, "self-determination":5, "self-developing":4, "self-development":4, "self-devised":2, "self-devotedly":4, "self-devotedness":4, "self-devouring":3, "self-devotion":3, "self-differentiating":6, "self-differentiation":6, "self-diffusion":3, "self-diffusive":3, "self-disapproval":4, "self-disapprobation":5, "self-discernment":3, "self-discipline":3, "self-disclosed":2, "self-disclosure":3, "self-discoloration":5, "self-discontented":4, "self-discovery":4, "self-discrepant":3, "self-discrimination":5, "self-disdain":2, "self-disengaging":4, "self-disgrace":2, "self-disgraced":2, "self-disgracing":3, "self-disgust":2, "self-dislike":2, "self-disliked":2, "self-disparagement":4, "self-disparaging":4, "self-dispatch":2, "self-display":2, "self-displeased":2, "self-disposal":3, "self-dispraise":2, "self-disquieting":4, "self-dissatisfaction":5, "self-dissatisfied":4, "self-dissecting":3, "self-dissection":3, "self-disserving":3, "self-disservice":3, "self-dissolved":2, "self-dissociation":5, "self-dissolution":4, "self-distinguishing":4, "self-distrust":2, "self-dialog":3, "self-dialogue":3, "self-digestion":3, "self-dilated":3, "self-dilation":3, "self-directed":3, "self-directing":3, "self-direction":3, "self-directive":3, "self-director":3, "self-divided":3, "self-division":3, "self-doctrine":2, "self-dominance":3, "self-dominion":3, "self-donation":3, "self-dramatizing":4, "self-dramatization":5, "self-driven":2, "self-duplicating":4, "self-duplication":4, "self-easing":2, "self-educated":4, "self-education":4, "self-effacement":3, "self-effacing":3, "self-effacingly":4, "self-effacingness":4, "self-emptiness":3, "self-emptying":3, "self-employed":2, "self-employment":3, "self-enamored":3, "self-enclosed":2, "self-endearing":3, "self-energy":3, "self-engrossed":2, "self-engrossment":3, "self-enjoyment":3, "self-enriching":3, "self-enrichment":3, "self-entertaining":4, "self-entertainment":4, "self-escape":2, "self-essence":2, "self-esteem":2, "self-estimate":3, "self-estimation":4, "self-estrangement":3, "self-evident":3, "self-exaggerated":5, "self-exaggeration":5, "self-exalted":3, "self-exalting":3, "self-exaltation":4, "self-examining":4, "self-examination":5, "self-excited":3, "self-exciter":3, "self-exclusion":3, "self-exculpation":4, "self-excuse":2, "self-excused":2, "self-excusing":3, "self-exertion":3, "self-executing":4, "self-exhibited":4, "self-exhibition":4, "self-exile":2, "self-exiled":2, "self-existence":3, "self-existent":3, "self-expanded":3, "self-expanding":3, "self-expansion":3, "self-expatriation":5, "self-explaining":3, "self-explanatory":5, "self-explication":4, "self-exploited":3, "self-exploiting":3, "self-exposed":2, "self-exposing":3, "self-exposure":3, "self-expressive":3, "self-expression":3, "self-extermination":5, "self-extolled":2, "self-exulting":3, "self-exultation":4, "self-elaborated":5, "self-elaboration":5, "self-elation":3, "self-elected":3, "self-election":3, "self-emitted":3, "self-erected":3, "self-evaluation":5, "self-evolved":2, "self-evolving":3, "self-farming":2, "self-fearing":2, "self-feeder":2, "self-fermentation":4, "self-fertilization":5, "self-felicitation":5, "self-figured":2, "self-filling":2, "self-fitting":2, "self-flagellation":4, "self-flattering":3, "self-flattery":3, "self-flowing":2, "self-folding":2, "self-fondness":2, "self-forbidden":3, "self-forgetful":3, "self-forgetfully":4, "self-forgetfulness":4, "self-forgetting":3, "self-forgettingly":4, "self-formation":3, "self-forsaken":3, "self-focused":2, "self-focussed":2, "self-focusing":3, "self-focussing":3, "self-friction":2, "self-frighted":2, "self-fruition":3, "self-fulfilling":3, "self-fulfillment":3, "self-fulfilment":3, "self-furnished":2, "self-gauging":2, "self-generated":4, "self-given":2, "self-giving":2, "self-glazing":2, "self-glorified":3, "self-glorification":5, "self-glorifying":4, "self-glory":2, "self-glorying":3, "self-gotten":2, "self-governed":2, "self-governing":3, "self-government":3, "self-gratification":5, "self-gratulation":4, "self-gratulatory":5, "self-guarded":2, "self-guidance":2, "self-hardened":2, "self-hardening":3, "self-harming":2, "self-hatred":2, "self-healing":2, "self-heating":2, "self-hitting":2, "self-homicide":3, "self-honored":2, "self-holiness":3, "self-humbling":2, "self-humiliating":5, "self-humiliation":5, "self-hypnotic":3, "self-hypnosis":3, "self-hypnotism":3, "self-hypnotized":3, "self-ignite":2, "self-ignited":3, "self-igniting":3, "self-ignition":3, "self-ignorance":3, "self-ignorant":3, "self-illustrative":4, "self-illumined":3, "self-image":2, "self-imitation":4, "self-immolating":4, "self-immolation":4, "self-immurement":3, "self-immuring":3, "self-immunity":4, "self-impairable":4, "self-impairing":3, "self-imparting":3, "self-impedance":3, "self-important":3, "self-impregnated":4, "self-impregnating":4, "self-impregnation":4, "self-impregnator":4, "self-improvement":3, "self-improvable":4, "self-improver":3, "self-improving":3, "self-impulsion":3, "self-inclosed":2, "self-inclusive":3, "self-incriminating":5, "self-incrimination":5, "self-incurred":2, "self-indignation":4, "self-induced":2, "self-inductance":3, "self-induction":3, "self-indulgent":3, "self-inflation":3, "self-inflicted":3, "self-initiated":5, "self-initiative":5, "self-injurious":4, "self-injury":3, "self-inoculated":5, "self-inoculation":5, "self-insignificance":5, "self-inspected":3, "self-inspection":3, "self-instructed":3, "self-instructing":3, "self-instruction":3, "self-instructor":3, "self-insufficiency":5, "self-insured":2, "self-insurance":3, "self-insurer":3, "self-intelligible":5, "self-intensified":4, "self-intensifying":5, "self-interest":3, "self-interested":4, "self-interestedness":5, "self-interpreted":4, "self-interpreting":4, "self-interpretive":4, "self-interrogation":5, "self-interrupting":4, "self-intersecting":4, "self-integrating":4, "self-integration":4, "self-intoxication":5, "self-introduction":4, "self-intruder":3, "self-invented":3, "self-invention":3, "self-invited":3, "self-issued":2, "self-issuing":3, "self-identification":6, "self-identity":4, "self-idolater":4, "self-idolatry":4, "self-idolized":3, "self-idolizing":4, "self-ionization":5, "self-irony":3, "self-justification":5, "self-justifying":4, "self-killer":2, "self-killing":2, "self-kindness":2, "self-kindled":2, "self-knowledge":2, "self-lacerating":4, "self-laceration":4, "self-lashing":2, "self-laudatory":4, "self-laudation":3, "self-leveler":3, "self-leveling":3, "self-leveller":3, "self-levelling":3, "self-levied":2, "self-levitation":4, "self-lighting":2, "self-liking":2, "self-limited":3, "self-liquidating":4, "self-loading":2, "self-loathing":2, "self-locking":2, "self-locating":3, "self-lubricated":4, "self-lubricating":4, "self-lubrication":4, "self-luminosity":5, "self-luminous":3, "self-maceration":4, "self-mailer":2, "self-maintained":2, "self-maintaining":3, "self-maintenance":3, "self-making":2, "self-manifest":3, "self-manifestation":5, "self-mastered":2, "self-mastering":3, "self-mastery":3, "self-matured":2, "self-measurement":3, "self-merit":2, "self-mediating":4, "self-minded":2, "self-mistrust":2, "self-mortification":5, "self-mover":2, "self-moving":2, "self-motion":2, "self-multiplied":3, "self-multiplying":4, "self-murder":2, "self-murdered":2, "self-murderer":3, "self-mutilation":4, "self-naughting":2, "self-neglect":2, "self-neglectful":3, "self-neglecting":3, "self-nourished":2, "self-nourishing":3, "self-nourishment":3, "self-objectification":6, "self-oblivion":4, "self-oblivious":4, "self-observed":2, "self-observation":4, "self-obsessed":2, "self-obsession":3, "self-occupation":4, "self-occupied":3, "self-offence":2, "self-offense":2, "self-offered":2, "self-oiling":2, "self-operator":4, "self-oppression":3, "self-oppressive":3, "self-oppressor":3, "self-ordained":2, "self-ordainer":3, "self-outlaw":2, "self-outlawed":2, "self-ownership":3, "self-oxidation":4, "self-opened":2, "self-opener":3, "self-opening":3, "self-opinioned":3, "self-opinionated":5, "self-originated":5, "self-originating":5, "self-origination":5, "self-painter":2, "self-pampered":2, "self-pampering":3, "self-panegyric":4, "self-paying":2, "self-penetrability":6, "self-penetration":4, "self-perceiving":3, "self-perception":3, "self-perceptive":3, "self-perfecting":3, "self-perfectibility":6, "self-performed":2, "self-permission":3, "self-perpetuating":5, "self-perpetuation":5, "self-perplexed":2, "self-persuasion":3, "self-pictured":2, "self-pitiful":3, "self-pitifulness":4, "self-pity":2, "self-pityingly":4, "self-planted":2, "self-player":2, "self-playing":2, "self-pleaser":2, "self-pleasing":2, "self-pointed":2, "self-poisoner":3, "self-policy":3, "self-politician":4, "self-pollinated":4, "self-pollination":4, "self-pollution":3, "self-posting":2, "self-postponement":3, "self-possessed":2, "self-possession":3, "self-powered":2, "self-policing":3, "self-praising":2, "self-preference":3, "self-preparation":4, "self-presentation":4, "self-preservation":4, "self-precipitation":5, "self-preoccupation":5, "self-prepared":2, "self-prescribed":2, "self-presented":3, "self-preservation":4, "self-pretended":3, "self-primer":2, "self-priming":2, "self-prizing":2, "self-profit":2, "self-propagated":4, "self-propagating":4, "self-propagation":4, "self-proving":2, "self-proclaimed":2, "self-proclaiming":3, "self-procured":2, "self-procurement":3, "self-procuring":3, "self-produced":2, "self-production":3, "self-professed":2, "self-projection":3, "self-pronouncing":3, "self-propelled":2, "self-propulsion":3, "self-provision":3, "self-punished":2, "self-punisher":3, "self-punishing":3, "self-punishment":3, "self-punitive":3, "self-purifying":4, "self-quotation":3, "self-raising":2, "self-rating":2, "self-reading":2, "self-reckoning":3, "self-recollection":4, "self-recollective":4, "self-rectifying":4, "self-reference":3, "self-reformation":4, "self-registering":4, "self-registration":4, "self-regulated":4, "self-regulating":4, "self-regulatory":5, "self-relish":2, "self-representation":5, "self-reputation":4, "self-reverence":3, "self-reverent":3, "self-revelation":4, "self-reacting":3, "self-realization":5, "self-reconstruction":4, "self-recording":3, "self-recrimination":5, "self-reduction":3, "self-reduplication":5, "self-refinement":3, "self-refining":3, "self-reflection":3, "self-reflective":3, "self-reform":2, "self-refuted":3, "self-refuting":3, "self-regard":2, "self-regarding":3, "self-relation":3, "self-reliance":3, "self-reliant":3, "self-reliantly":4, "self-renounced":2, "self-renouncement":3, "self-renouncing":3, "self-renunciation":5, "self-renunciatory":6, "self-repeating":3, "self-repellent":3, "self-repellency":4, "self-repose":2, "self-repressed":2, "self-repressing":3, "self-repression":3, "self-reproach":2, "self-reproachful":3, "self-reproaching":3, "self-reproducing":4, "self-reproduction":4, "self-repulsive":3, "self-resentment":3, "self-resigned":2, "self-resourceful":3, "self-resourcefulness":4, "self-respect":2, "self-respecting":3, "self-resplendent":3, "self-responsibility":6, "self-restoring":3, "self-restraint":2, "self-restraining":3, "self-restricted":3, "self-restriction":3, "self-retired":2, "self-revealed":2, "self-revealing":3, "self-revelatory":5, "self-righteous":2, "self-righteously":3, "self-righteousness":3, "self-rigorous":3, "self-rising":2, "self-ruin":2, "self-ruined":2, "self-sacrifice":3, "self-safety":2, "self-sanctification":5, "self-satisfaction":4, "self-satisfied":3, "self-satisfying":4, "self-satirist":3, "self-schooling":2, "self-scourging":2, "self-scrutinized":3, "self-scrutinizing":4, "self-scrutiny":3, "self-sealing":2, "self-searching":2, "self-sedimented":4, "self-sedimentation":5, "self-seeker":2, "self-seeking":2, "self-service":2, "self-security":4, "self-sequestered":3, "self-shadowed":2, "self-shadowing":3, "self-shelter":2, "self-sheltered":2, "self-shining":2, "self-significance":4, "self-similar":3, "self-sinking":2, "self-soothing":2, "self-sounding":2, "self-sovereignty":4, "self-solicitude":4, "self-sophistication":5, "self-spacing":2, "self-spitted":2, "self-starter":2, "self-starting":2, "self-stability":4, "self-stabilized":3, "self-stabilizing":4, "self-stimulated":4, "self-stimulating":4, "self-stimulation":4, "self-stripper":2, "self-subdued":2, "self-subdual":3, "self-subjection":3, "self-subjugating":4, "self-subjugation":4, "self-subordained":3, "self-subordinating":5, "self-subordination":5, "self-subsistence":3, "self-subsistent":3, "self-subsisting":3, "self-subsidation":4, "self-subversive":3, "self-sufficing":3, "self-sufficient":3, "self-sufficiently":4, "self-suggestion":3, "self-support":2, "self-supporting":3, "self-suppressing":3, "self-suppression":3, "self-suppressive":3, "self-survey":2, "self-surveyed":2, "self-surviving":3, "self-survivor":3, "self-suspended":3, "self-suspicion":3, "self-suspicious":3, "self-sustained":2, "self-sustaining":3, "self-sustainment":3, "self-sustentation":4, "self-sustenance":3, "self-tapping":2, "self-taxation":3, "self-teacher":2, "self-teaching":2, "self-tempted":2, "self-tenderness":3, "self-terminating":4, "self-terminative":4, "self-testing":2, "self-thinning":2, "self-threading":2, "self-tightening":3, "self-tipping":2, "self-tiring":2, "self-tolerant":3, "self-torment":2, "self-tormented":3, "self-tormenting":3, "self-tormentingly":4, "self-tormentor":3, "self-torture":2, "self-tortured":2, "self-torturing":3, "self-training":2, "self-transformed":2, "self-transformation":4, "self-treated":2, "self-treatment":2, "self-triturating":4, "self-trial":2, "self-troubled":2, "self-troubling":2, "self-trusting":2, "self-tuition":3, "self-unconscious":3, "self-understanding":4, "self-understood":3, "self-undoing":3, "self-union":2, "self-unloader":3, "self-unloading":3, "self-unveiling":3, "self-unworthiness":4, "self-upbraiding":3, "self-uniform":3, "self-unity":3, "self-usurp":2, "self-validating":4, "self-valued":2, "self-valuation":4, "self-valuing":3, "self-variance":3, "self-variation":4, "self-varying":3, "self-vaunted":2, "self-vaunting":2, "self-vendition":3, "self-ventilated":4, "self-vexation":3, "self-vindicated":4, "self-vindicating":4, "self-vindication":4, "self-vivisector":4, "self-violence":3, "self-violent":3, "self-vulcanizing":4, "self-warranting":3, "self-watchfulness":3, "self-weariness":3, "self-weary":2, "self-weighted":2, "self-whipper":2, "self-whipping":2, "self-willedly":2, "self-willedness":2, "self-winding":2, "self-witness":2, "self-witnessed":2, "self-working":2, "self-worship":2, "self-worshiper":3, "self-worshiping":3, "self-worshipper":3, "self-worshipping":3, "self-worthiness":3, "self-wounded":2, "self-wounding":2, "self-writing":2, "self-written":2, "selfheal":2, "selfhood":2, "selfhypnotization":6, "selfish":2, "selfishly":3, "selfishness":3, "selfless":2, "selflessly":3, "selflessness":3, "selfmovement":3, "selfness":2, "selfpropelling":4, "selfrespectful":4, "selfrestrained":3, "selfsame":2, "selfsameness":3, "selfseekingness":4, "selfsustainingly":5, "selfwaelf-will":2, "sell":1, "seller":2, "sellers' market":4, "selling":2, "selling race":3, "selling-plater":3, "sellout":2, "seltzer":2, "selves":1, "selznick":2, "selaginella":5, "selden":2, "seldom":2, "selenga":3, "selenate":3, "selenide":3, "selenite":3, "selenitic":4, "selenodesy":5, "selenographer":5, "selenographist":5, "selenography":5, "seljuk":2, "seljukian":4, "selkirk":2, "selkirk mountains":4, "selkirkshire":3, "sella":2, "sellers":2, "sellersburg":3, "sellotape":3, "selma":2, "selsyn":2, "selva":2, "selvage":2, "selvedge":2, "selwyn":2, "sem":1, "sem":1, "semi-abstract":2, "semmes":1, "sempstress":2, "semaphore":3, "semaphored":3, "semaphoric":4, "semaphoring":4, "semaphorical":5, "sematology":5, "semblance":2, "semblable":3, "semblably":3, "sembrich":2, "semel":2, "sememe":2, "semele":3, "semi":2, "semi-abstraction":3, "semi-aridity":4, "semi-bantu":3, "semi-illiterate":5, "semi-illiteracy":6, "semi-illuminated":6, "semi-impressionistic":6, "semi-independent":5, "semi-indirect":4, "semi-inductive":4, "semi-industrial":5, "semi-industrialized":6, "semi-indurate":4, "semi-indurated":5, "semi-inhibited":5, "semi-insoluble":5, "semi-instinctive":4, "semi-intellectual":6, "semi-intellectualized":7, "semi-intelligent":5, "semi-internal":4, "semi-internalized":5, "semi-intoxication":6, "semi-ironic":4, "semi-ironical":5, "semi-isolated":5, "semirussian":3, "semite":2, "semiabsorbent":5, "semiacademic":6, "semiacademical":7, "semiacid":4, "semiacrobatic":6, "semiactive":4, "semiadhesive":5, "semiagricultural":7, "semialcoholic":6, "semiallegoric":6, "semiallegorical":7, "semianaesthetic":6, "semianarchism":5, "semianarchist":5, "semianarchistic":6, "semianalytic":6, "semianalytical":7, "semianatomic":6, "semianatomical":7, "semiandrogenous":6, "semianesthetic":6, "semiangle":4, "semiangular":5, "semianimal":5, "semianimate":5, "semianimated":6, "semiannual":5, "semiannually":6, "semianthropologic":7, "semianthropological":8, "semiarchitectural":7, "semiarid":4, "semiarticulate":6, "semiautonomous":6, "semiautomatic":6, "semiautomatically":8, "semiacetic":5, "semiacidic":5, "semiacidified":6, "semiacidulated":7, "semialuminous":6, "semiaquatic":5, "semibald":3, "semibelted":4, "semibiographic":6, "semibiographical":7, "semibiologic":6, "semibiological":7, "semiblasphemous":5, "semibleached":3, "semiboiled":3, "semibold":3, "semibouffant":4, "semibourgeois":4, "semibreve":3, "semibureaucratic":6, "semibureaucratically":8, "semicabalistic":6, "semicabalistical":7, "semicalcined":4, "semicapitalistic":7, "semicapitalistically":9, "semicarved":3, "semicarbonate":5, "semicaricatural":7, "semicatalyst":5, "semicatalytic":6, "semicathartic":5, "semicellulose":5, "semicellulous":5, "semicentennial":6, "semicentenaries":6, "semicentenary":6, "semichaotic":5, "semichaotically":7, "semichemical":5, "semicircle":4, "semicircular":5, "semicircular canal":7, "semicircularly":6, "semicircularness":6, "semicivilized":5, "semicivilization":7, "semiclassical":5, "semiclerical":5, "semiclinical":5, "semiclosed":3, "semicolloid":4, "semicolloidal":5, "semicolloquial":6, "semicomatose":5, "semicombined":4, "semicomic":4, "semicomical":5, "semicommercial":5, "semicommunicative":7, "semiconcealed":4, "semiconditioned":5, "semiconduction":5, "semiconductor":5, "semiconfinement":5, "semiconformist":5, "semiconformity":6, "semiconical":5, "semiconscious":4, "semiconsciously":5, "semiconsciousness":5, "semiconservative":6, "semicontinuous":6, "semiconventional":6, "semiconventionality":8, "semiconvergence":5, "semiconvergent":5, "semiconversion":5, "semicordate":4, "semicotton":4, "semicolon":4, "semicolonial":6, "semicoma":4, "semicretin":4, "semicrystalline":5, "semicultivated":6, "semicultured":4, "semicured":3, "semicylinder":5, "semicynical":5, "semicylindrical":6, "semidaily":4, "semidangerous":5, "semideaf":3, "semidefinite":5, "semidesert":4, "semidecay":4, "semidecayed":4, "semidecadent":5, "semidefensive":5, "semidefined":4, "semideification":7, "semidelirium":6, "semidemented":5, "semidependence":5, "semidependent":5, "semidestruction":5, "semidestructive":5, "semidetached":4, "semideterministic":7, "semidictatorial":7, "semidisabled":5, "semidiameter":6, "semidiaphanous":6, "semidigested":5, "semidirect":4, "semidiurnal":5, "semidivided":5, "semidivine":4, "semidivision":5, "semidivisive":5, "semidome":3, "semidomed":3, "semidormant":4, "semidomestic":5, "semidomestically":7, "semidomesticated":7, "semidomestication":7, "semidramatic":5, "semidramatical":6, "semidry":3, "semidrying":4, "semiductile":4, "semidurables":5, "semielevated":6, "semielliptic":5, "semielliptical":6, "semiempirical":6, "semienclosure":5, "semiepic":4, "semiepical":5, "semiexclusive":5, "semiexecutive":6, "semiexhibitionist":7, "semiexpanded":5, "semiexpansible":6, "semiexperimental":7, "semiexposed":4, "semiexpositive":6, "semiexpository":7, "semiexposure":5, "semiexpressionistic":7, "semiexternal":5, "semiexternalized":6, "semielastic":5, "semielastically":7, "semiemotional":6, "semierect":4, "semifiction":4, "semifictional":5, "semifictionalized":6, "semifigurative":6, "semifine":3, "semifinished":4, "semifitted":4, "semifixed":3, "semifinal":4, "semifinalist":5, "semifloating":4, "semifluid":4, "semifluidity":6, "semiformed":3, "semiformal":4, "semifossilized":5, "semifrontier":4, "semifunctional":5, "semifunctionalism":6, "semifurnished":4, "semifused":3, "semifuturistic":6, "semigeometric":6, "semigeometrical":7, "semiglaze":3, "semiglazed":3, "semiglobular":5, "semiglobularly":6, "semigod":3, "semigovernmental":6, "semigroup":3, "semihard":3, "semihardened":4, "semiherbaceous":5, "semiheretic":5, "semiheretical":6, "semihistoric":5, "semihistorical":6, "semihibernation":6, "semihostile":4, "semihostility":6, "semihumanism":5, "semihumanistic":6, "semihumanized":5, "semihumanitarian":8, "semihysterical":6, "semihyperbolic":6, "semiintoxicated":7, "semijocular":5, "semijudicial":5, "semijuridic":5, "semijuridical":6, "semilegendary":6, "semilegislative":6, "semiliberal":5, "semiliberalism":6, "semiliquid":4, "semiliterate":5, "semiliquidity":6, "semiluxury":5, "semilucent":4, "semiluminous":5, "semilunar":4, "semilunar valve":5, "semilunate":4, "semilunated":5, "semilyric":4, "semilyrical":5, "semimagical":5, "semimagnetic":5, "semimagnetical":6, "semimanagerial":7, "semimanneristic":6, "semimanufactured":6, "semimat":3, "semimathematical":7, "semimatt":3, "semimatte":3, "semimalignant":5, "semimalicious":5, "semimarine":4, "semimaterialistic":8, "semimature":4, "semimaturity":6, "semimechanistic":6, "semimembranous":5, "semimetaphoric":6, "semimetaphorical":7, "semimechanical":6, "semimedicinal":6, "semimetallic":5, "semimild":3, "semimineral":5, "semimineralized":6, "semiministerial":7, "semimoderate":5, "semimonthly":4, "semimoralistic":6, "semimountainous":5, "semimobile":4, "semimonarchic":5, "semimonarchical":6, "semimonopolistic":7, "semimystic":4, "semimystical":5, "semimythic":4, "semimythical":5, "seminal":3, "seminar":3, "seminarcotic":5, "seminaries":4, "seminarial":5, "seminarian":5, "seminarrative":5, "seminary":4, "seminaked":4, "seminasal":4, "seminasality":6, "semination":4, "seminationalism":6, "seminationalistic":7, "seminationalized":6, "seminervous":4, "semineurotic":5, "semineurotically":7, "semineutral":4, "semineutrality":6, "seminiferous":5, "seminivorous":5, "seminocturnal":5, "seminole":3, "seminormal":4, "seminormality":6, "seminoma":4, "seminomad":4, "seminomadic":5, "seminomadism":5, "seminomadically":7, "seminomas":4, "seminomata":5, "seminude":3, "seminudity":5, "semiobjective":5, "semioblivious":6, "semiofficial":5, "semiofficially":6, "semioptimistic":6, "semioptimistically":8, "semioratorical":7, "semiorganic":5, "semiorganically":7, "semiorthodox":5, "semiorthodoxly":6, "semioxygenized":6, "semiopacity":6, "semiopen":4, "semioriental":6, "semioval":4, "semiovate":4, "semioviparous":6, "semipacifist":5, "semipacifistic":6, "semipalmate":4, "semipalmated":5, "semiparalytic":6, "semiparalyzed":5, "semiparasite":5, "semiparasitic":6, "semiparasitism":6, "semipaste":3, "semipassive":4, "semipastoral":5, "semipathologic":6, "semipathological":7, "semipatterned":4, "semipagan":4, "semipaganish":5, "semiparalysis":6, "semiparochial":6, "semipatriot":5, "semipatriotic":6, "semipatriotically":8, "semipeace":3, "semipeaceful":4, "semipendent":4, "semipendulous":5, "semiperceptive":5, "semipermanent":5, "semipermeability":8, "semipermeable":6, "semipervious":5, "semipetrified":5, "semipedantic":5, "semipedantical":6, "semiphenomenal":6, "semiphilosophic":6, "semiphilosophical":7, "semiphosphorescence":6, "semiphosphorescent":6, "semiphrenetic":5, "semipictorial":6, "semipious":4, "semiplastic":4, "semipneumatic":5, "semipneumatical":6, "semipoisonous":5, "semipolitician":6, "semipopular":5, "semipopularized":6, "semipopularity":7, "semiporcelain":4, "semiporcelain":5, "semipostal":4, "semipolitical":6, "semipractical":5, "semiprecious":4, "semipreserved":4, "semiprimitive":5, "semiprivate":4, "semiprivacy":5, "semipro":3, "semiprone":3, "semipropagandist":6, "semiproven":4, "semiproductive":5, "semiproductivity":7, "semiprofane":4, "semiprofanity":6, "semiprofessional":6, "semiprofessionally":7, "semiprogressive":5, "semiprotected":5, "semiprotective":5, "semiprovincial":5, "semipsychotic":5, "semipsychologic":6, "semipsychological":7, "semipublic":4, "semipurposive":5, "semipunitive":5, "semipunitory":6, "semiquaver":4, "semiradical":5, "semirare":3, "semiraw":3, "semirationalized":6, "semirebel":4, "semiresinous":5, "semiresiny":5, "semiresolute":5, "semirevolution":6, "semirevolutionary":8, "semirevolutionist":7, "semireactionary":7, "semirealistic":6, "semirealistically":8, "semirebellion":5, "semirebellious":5, "semirefined":4, "semireflex":4, "semireflexive":5, "semirelief":4, "semireligious":5, "semirepublic":5, "semirepublican":6, "semirespectability":8, "semirespectable":6, "semiretired":4, "semiretirement":5, "semireverberatory":8, "semirhythmic":4, "semirhythmical":5, "semirigid":4, "semirigorous":5, "semiround":3, "semiromantic":5, "semiromantically":7, "semirural":4, "semiruralism":5, "semisavage":4, "semisacred":4, "semisaline":4, "semisatiric":5, "semisatirical":6, "semischolastic":5, "semischolastically":7, "semisentimental":6, "semisentimentalized":7, "semisecret":4, "semisecrecy":5, "semiserious":5, "semiseriously":6, "semiseriousness":6, "semishade":3, "semiskilled":3, "semislave":3, "semisolemn":4, "semisolid":4, "semisomnambulistic":7, "semisomnolence":5, "semisomnolent":5, "semisocialism":5, "semisocialist":5, "semisocialistic":6, "semisocialistically":8, "semisolemnity":6, "semispeculation":6, "semispeculative":6, "semisphere":3, "semispheric":4, "semispherical":5, "semispontaneous":6, "semistiff":3, "semistimulating":6, "semistratified":5, "semisubterranean":7, "semisuccess":4, "semisuccessful":5, "semisuburban":5, "semisupernatural":7, "semisweet":3, "semisynthetic":5, "semitailored":4, "semitextural":5, "semitheatric":5, "semitheatrical":6, "semitheatricalism":7, "semitheological":7, "semitism":3, "semitist":3, "semito-hamitic":5, "semitone":3, "semitonal":4, "semitonally":5, "semitonic":4, "semitrailer":4, "semitrained":3, "semitransparently":6, "semitransparentness":6, "semitransparency":6, "semitraditional":6, "semitropic":4, "semitropics":4, "semitropical":5, "semitropically":6, "semitruthful":4, "semituberous":5, "semiundressed":4, "semiurban":4, "semivitreous":5, "semivolatile":5, "semivolcanic":5, "semivolcanically":7, "semivoluntary":6, "semivowel":4, "semivocal":4, "semivocalic":5, "semivulcanized":5, "semiwarfare":4, "semiweekly":4, "semiwild":3, "semiyearly":4, "semolina":4, "sempach":2, "semper fidelis":5, "semper paratus":5, "sempiternal":4, "semplice":3, "sempre":2, "sen":1, "sen":1, "sen":1, "send":1, "sendable":3, "sendee":2, "sender":2, "sending":2, "sendoff":2, "sense":1, "sense datum":3, "sense organ":3, "sense perception":4, "senseless":2, "senselessly":3, "senselessness":3, "sensing":2, "sent":1, "senti":2, "senarmontite":4, "senate":2, "senate":2, "senary":3, "senator":3, "senatorship":4, "senatobia":5, "senatorial":5, "senatorially":6, "sendai":2, "sendal":2, "seneca":3, "senecan":3, "senega":3, "senegal":3, "senegambia":5, "senegambian":5, "seneschal":3, "senghor":2, "senior":2, "senior":2, "senior citizen":5, "senior common room":5, "seniority":4, "senlac":2, "senna":2, "sennacherib":4, "sennar":2, "sennet":2, "sennett":2, "sennight":2, "sennit":2, "sensa":2, "sensate":2, "sensation":3, "sensational":4, "sensationalise":5, "sensationalised":5, "sensationalism":5, "sensationalising":6, "sensationally":5, "sensationism":4, "sensationist":4, "sensationistic":5, "sensationless":4, "sensillum":3, "sensiltised":3, "sensiltising":4, "sensibilia":5, "sensibility":5, "sensible":3, "sensible horizon":6, "sensibleness":4, "sensibly":3, "sensitise":3, "sensitiser":4, "sensitive":3, "sensitive plant":4, "sensitively":4, "sensitiveness":4, "sensitivity":5, "sensitize":3, "sensitized":3, "sensitizer":4, "sensitizing":4, "sensitization":5, "sensitometer":5, "sensitometry":5, "sensitometric":5, "sensitometrically":7, "sensor":2, "sensomotor":4, "sensoria":4, "sensorial":4, "sensorimotor":5, "sensorium":4, "sensoriums":4, "sensory":3, "sensory deprivation":7, "sensum":2, "sensual":3, "sensualism":4, "sensualist":4, "sensualistic":5, "sensualize":4, "sensualized":4, "sensualizing":5, "sensuality":5, "sensualization":6, "sensually":4, "sensualness":4, "sensuous":3, "sentence":2, "sentence connector":5, "sentence stress":3, "sentence substitute":5, "sentenced":2, "sentencer":3, "sentencing":3, "sentential function":5, "sententially":4, "sententious":3, "sententiously":4, "sententiousness":4, "sententiosity":6, "sentience":2, "sentiently":2, "sentiency":3, "sentient":3, "sentiment":3, "sentimental":4, "sentimental value":6, "sentimentless":4, "sentimental":4, "sentimentalise":5, "sentimentalism":5, "sentimentalist":5, "sentimentaliser":6, "sentimentalize":5, "sentimentalized":5, "sentimentalizing":6, "sentimentality":6, "sentimentalization":7, "sentinel":3, "sentinellike":4, "sentinelship":4, "sentry":2, "sentry box":3, "senza":2, "seoul":1, "sep":1, "sep":1, "sept":1, "sept":1, "sepal":2, "sepaline":3, "separate":3, "separate school":4, "separates":3, "separately":4, "separateness":4, "separated":4, "separating":4, "separatist":4, "separability":6, "separable":4, "separableness":5, "separably":4, "separation":4, "separationist":5, "separatism":4, "separatist":4, "separative":4, "separatively":5, "separativeness":5, "separator":4, "separatory":5, "separatrix":4, "separatrices":5, "seppa":2, "seppuku":3, "sepsis":2, "septa":2, "septal":2, "septaria":4, "septarian":4, "septariate":4, "septarium":4, "septate":2, "septavalent":4, "septectomy":4, "september":3, "september massacre":6, "septembrist":3, "septempartite":4, "septemvir":3, "septemvirs":3, "septemviral":4, "septemvirate":4, "septemviri":4, "septendecillion":5, "septendecillionth":5, "septennial":4, "septennially":5, "septennium":4, "septentrion":4, "septentrional":5, "septet":2, "septette":2, "septenary":4, "septic":2, "septic tank":3, "septicity":4, "septifragal":4, "septifragally":5, "septillion":3, "septillionth":3, "septime":2, "septicaemic":4, "septicaemia":5, "septically":4, "septicemic":4, "septicemia":5, "septicidal":4, "septicidal":4, "septilateral":5, "septimal":3, "septimana":4, "septivalent":4, "septolet":3, "septum":2, "septuplet":3, "septuagenaries":6, "septuagenary":6, "septuagesima":6, "septuagenarian":7, "septuagint":4, "septuagintal":5, "septuor":3, "septuple":3, "septuplicate":4, "septuplity":4, "sepulcher":3, "sepulchre":3, "sepulture":3, "seq":1, "seqq":1, "ser":1, "serb":1, "sercq":1, "sere":1, "serf":1, "serfdom":2, "serfish":2, "serfishly":3, "serfishness":3, "serflike":2, "serge":1, "serge":1, "sert":1, "serv":1, "serve":1, "servant":2, "servantless":3, "servantlike":3, "servable":3, "server":2, "service":2, "serviced":2, "serviceability":6, "serviceable":4, "serviceableness":5, "serviceably":4, "serviceberry":4, "serviceman":3, "servicing":3, "serving":2, "seral":2, "seraph":2, "seraphs":2, "seraphlike":3, "serapea":4, "serapeum":4, "serapeums":4, "seraphim":3, "serapis":3, "serbia":3, "serbian":3, "serbo-croat":3, "serbo-croatian":4, "serbonian":4, "serdab":2, "seremban":3, "serendip":3, "serendipity":5, "serenade":3, "serenaded":4, "serenader":4, "serenading":4, "serenata":4, "serge":2, "sergeant":2, "sergeant at arms":4, "sergeant at law":4, "sergeant major":4, "sergeantfish":3, "sergeantfishes":4, "sergeanty":3, "sergestus":3, "sergipe":3, "sericteria":5, "sericterium":5, "serif":2, "serin":2, "serine":2, "seriph":2, "serialisation":6, "sericate":3, "sericin":3, "sericite":3, "sericitic":4, "sericulture":4, "sericultural":5, "sericulturist":5, "seriema":4, "serigraph":3, "seriplane":3, "serjeant":2, "serjeant at arms":4, "serjeant at law":4, "serjeanty":3, "serkin":2, "serlio":2, "sermon":2, "sermonise":3, "sermonised":3, "sermonising":4, "sermonize":3, "sermonized":3, "sermonizer":4, "sermonizing":4, "sermonically":5, "serow":2, "serotine":3, "serotonin":4, "serpasil":3, "serpens":2, "serpent":2, "serpentine":3, "serpentinize":4, "serpentinized":4, "serpentinizing":5, "serpentinization":6, "serpentiform":4, "serpiginous":4, "serpigo":3, "serpukhov":3, "serpulid":3, "serrate":2, "serrated":3, "serrating":3, "serranid":3, "serranoid":3, "serratia":3, "serration":3, "serrature":3, "serried":2, "serriedly":3, "serriedness":3, "serriform":3, "serrulate":3, "serrulated":4, "serrulation":4, "serrurerie":4, "serry":2, "serrying":3, "sertorius":4, "sertularian":5, "serval":2, "servetianism":4, "servetus":3, "service":2, "service":2, "service area":5, "service ceiling":4, "service charge":3, "service industry":5, "service line":3, "service module":4, "service road":3, "service station":4, "service tree":3, "serviceable":4, "serviceberry":4, "serviceman":3, "services":3, "servile":2, "servile work":3, "servilely":3, "servileness":3, "servility":4, "servite":2, "servia":3, "servian":3, "servient tenement":6, "serviette":3, "servitor":3, "servitude":3, "servo":2, "servo-croatian":4, "servoed":2, "servocontrol":4, "servoing":3, "servomechanism":5, "servomechanism":5, "servomechanical":6, "servomechanically":7, "servomotor":4, "sesame":3, "sesamoid":3, "sescuncia":4, "sesquipedal":4, "sesquialtera":5, "sesquicarbonate":5, "sesquicentennial":6, "sesquicentennially":7, "sesquioxide":4, "sesquipedality":6, "sesquipedalian":6, "sesquiplane":3, "sesquiterpene":4, "sesshu":2, "sessile":2, "sessile oak":3, "sessility":4, "session":2, "sessions":2, "sessions":2, "sessional":3, "sesterce":2, "sestertia":4, "sestertium":4, "sestertius":4, "sestet":2, "sestina":3, "sestos":2, "set":1, "set":1, "set":1, "set about":3, "set against":3, "set aside":3, "set chisel":3, "set theory":4, "set-in":1, "set-off":1, "set-up":1, "seth":1, "sett":1, "setline":2, "setscrew":2, "settee":2, "setter":2, "setting":2, "setting lotion":4, "setting rule":3, "settle":2, "settle down":3, "settle for":3, "settle in":3, "settle with":3, "settledly":3, "settledness":3, "settler":2, "settleability":6, "settleable":4, "settlement":3, "settling":2, "settlings":2, "settlor":2, "setule":2, "setup":2, "setula":3, "setulose":3, "setulous":3, "seuss":1, "seurat":2, "seven":2, "seven against thebes":5, "seven deadly sins":5, "seven seas":3, "seven years' war":4, "seven-eleven":4, "seven-sisters":3, "seven-spot":2, "seven-up":2, "seven-year itch":3, "sevens":2, "seventh":2, "seventh chord":3, "seventh heaven":4, "seventh-day":2, "seventh-day":2, "seventh-day adventist":5, "seventhly":3, "sevenbark":3, "sevener":3, "sevenfold":3, "seventeen":3, "seventeen-year locust":5, "seventeenth":3, "seventieth":4, "seventy":3, "seventy-eight":3, "seventy-eighth":3, "seventy-fifth":3, "seventy-first":3, "seventy-four":3, "seventy-fourth":3, "seventy-nine":3, "seventy-ninth":3, "seventy-seven":4, "seventy-seventh":4, "seventy-six":3, "seventy-sixth":3, "seventy-third":3, "seventy-two":3, "sever":2, "severn":2, "several":3, "severally":4, "severalty":4, "severance":3, "severance pay":4, "severable":4, "severies":3, "severinus":4, "severy":3, "sew":1, "sewn":1, "sewage":2, "sewage farm":3, "seward":2, "seward peninsula":6, "sewable":3, "sewell":2, "sewer":2, "sewerage":3, "sewerless":3, "sewerlike":3, "sewing":2, "sewing machine":4, "sex":1, "sex appeal":3, "sex chromosome":4, "sex hormone":3, "sex linkage":3, "sex-limited":3, "sex-limited":3, "sex-linkage":2, "sexed":1, "sext":1, "sexagenaries":5, "sexagenary":5, "sexangular":4, "sexagesima":5, "sexagesimal":5, "sexagenarian":6, "sexavalent":4, "sexcentenaries":5, "sexcentenary":5, "sexdecillion":4, "sexennial":4, "sexennially":5, "sexfoil":2, "sexism":2, "sexist":2, "sexier":3, "sexiest":3, "sexily":3, "sexiness":3, "sexivalent":4, "sexless":2, "sexlessness":3, "sexologist":4, "sexology":4, "sexological":5, "sexpartite":3, "sexpot":2, "sextain":2, "sextan":2, "sextans":2, "sextant":2, "sextantis":3, "sextern":2, "sextet":2, "sextette":2, "sextic":2, "sextile":2, "sextillion":3, "sextillionth":3, "sexto":2, "sexton":2, "sextodecimo":5, "sextolet":3, "sextuplet":3, "sextus":2, "sextuple":3, "sextuplet":3, "sextuplicate":4, "sexual":3, "sexual intercourse":6, "sexual reproduction":7, "sexual selection":6, "sexualize":4, "sexualized":4, "sexualizing":5, "sexualisation":6, "sexuality":5, "sexualization":6, "sexy":2, "seychelles":2, "seyfert galaxy":5, "seyhan":2, "seymour":2, "seance":2, "seattle":3, "seami":3, "sebacic":3, "sebacic acid":5, "sebastian":3, "sebastiano":4, "sebastopol":4, "sebaceous":3, "sebaceous glands":4, "sebiferous":4, "seboim":3, "sebring":2, "sebum":2, "secant":2, "secantly":3, "secede":2, "secern":2, "secernent":3, "secernment":3, "secession":3, "secessional":4, "secessionism":4, "secessionist":4, "seclude":2, "secluded":3, "secludedly":4, "secludedness":4, "seclusion":3, "seclusive":3, "seclusively":4, "seclusiveness":4, "second":2, "seconde":2, "secondo":3, "secret":2, "secret agent":4, "secret police":4, "secret service":4, "secret service":4, "secret society":6, "secret-service":3, "secrete":2, "secretly":3, "secretness":3, "secrecy":3, "secretaire":3, "secretin":3, "secretion":3, "secretionary":5, "secretive":3, "secretively":4, "secretory":4, "secrte":3, "secund":2, "secundly":3, "secunda":3, "secunderabad":5, "secundum":3, "secundus":3, "secure":2, "securely":3, "securable":4, "security":4, "security council":6, "security risk":5, "sedan":2, "sedan":2, "sedan chair":3, "sedate":2, "sedately":3, "sedateness":3, "sedated":3, "sedating":3, "sedalia":4, "sedation":3, "seder":2, "sedilia":4, "sedile":3, "sedilia":4, "sedition":3, "seditious":3, "seditiously":4, "seditiousness":4, "sedro-woolley":3, "seduce":2, "seduced":2, "seduceable":4, "seducer":3, "seducing":3, "seducingly":4, "seducive":3, "seducible":4, "seduction":3, "seductive":3, "seductively":4, "seductiveness":4, "seductress":3, "sedum":2, "sedulity":4, "seer":2, "seferis":3, "seferiades":5, "segar":2, "segni":2, "segni":2, "segno":2, "sego":2, "segovia":4, "segr":3, "segue":2, "seguidilla":4, "seguidillas":4, "segura":3, "sejant":2, "sejant-erect":3, "sejanus":3, "sejeant":2, "sejeant-erect":3, "sekos":2, "selah":2, "selah":2, "selamlik":3, "selangor":3, "selachian":4, "seladang":3, "select":2, "selectance":3, "selectee":3, "selectly":3, "selectman":3, "selectness":3, "selectable":4, "selection":3, "selective":3, "selective attention":6, "selective service":5, "selectively":4, "selectiveness":4, "selectivity":5, "selector":3, "selemnus":3, "seler":2, "seleucia":3, "seleucid":3, "seleucia":4, "seleucidae":4, "seleucidan":4, "seleucus i":4, "selena":3, "selene":3, "selenic":3, "selenic acid":5, "selenious":4, "selenious acid":6, "selenium":4, "selenium cell":5, "selenography":5, "selenology":5, "selenous":3, "selenodont":4, "selenodonty":5, "selenograph":4, "selenographic":5, "selenographically":7, "selenomorphology":7, "selenotropic":5, "selenotropism":5, "selig":2, "selim":2, "selinsgrove":3, "selichoth":3, "selihoth":3, "semaise":2, "semainier":3, "semainiers":3, "semang":2, "semanteme":3, "semantic":3, "semantics":3, "semantically":5, "semantician":4, "semanticist":4, "sematic":3, "semaleus":4, "semarang":3, "semasiologist":6, "semasiology":6, "semasiological":7, "semasiologically":8, "semeiologist":5, "semeiology":5, "semeiotic":4, "semeiotics":4, "semeiotical":5, "semeiologic":5, "semen":2, "semester":3, "semestral":3, "semestrial":4, "semeroe":3, "semeru":3, "semiramis":4, "semis":2, "semite":2, "semitic":3, "semitics":3, "semiology":5, "semiotic":4, "semiotics":4, "semiotical":5, "semipalatinsk":5, "semor sem":4, "semnov":4, "sena":2, "senatus consultum":6, "senescence":3, "senescent":3, "senefelder":4, "senhor":2, "senhoras":3, "senhorita":4, "senile":2, "senility":4, "senor":2, "senussi":3, "senussism":3, "senussian":4, "senusi":3, "senusism":3, "senusian":4, "seoul":2, "sepaled":2, "sepalled":2, "sepaloid":3, "sepaline":3, "sepaloid":3, "sephardi":3, "sephardic":3, "sephardim":3, "sepharvites":3, "sephora":3, "sepia":3, "sepiolite":4, "sepoy":2, "sepoy rebellion":5, "sepulchral":3, "sepulchrally":4, "sequacity":4, "sequacious":3, "sequaciously":4, "sequel":2, "sequence":2, "sequence of tenses":5, "sequencer":3, "sequent":2, "sequently":3, "sequential":3, "sequential access":5, "sequentially":4, "sequentiality":6, "sequester":3, "sequestered":3, "sequestral":3, "sequestrant":3, "sequestrate":3, "sequestrated":4, "sequestrating":4, "sequestrable":4, "sequestration":4, "sequestrator":4, "sequestrectomy":5, "sequestrum":3, "sequela":3, "sequin":2, "sequined":2, "sequoia":3, "sequoia national park":7, "sequoya":3, "sequoyah":3, "sera":2, "seraglio":3, "seraglios":3, "serai":2, "serail":2, "seram":2, "serang":2, "seraphic":3, "seraphical":4, "seraphically":5, "seraphicalness":5, "serafin":3, "seraglio":4, "serai":3, "serais":3, "serajevo":4, "serapis":3, "serein":2, "serene":2, "serenely":3, "sereneness":3, "serenitatis":5, "serenity":4, "serenity":4, "serena":3, "serena":3, "serenata":4, "series":2, "series-wound":2, "serigrapher":4, "serigraphy":4, "seringa":3, "seringapatam":5, "serial":3, "serial correlation":7, "serial number":5, "serialise":4, "serialised":4, "serialism":4, "serialist":4, "serialising":5, "serialize":4, "serialized":4, "serializing":5, "serialization":6, "serially":4, "seriate":3, "seriatim":4, "sericeous":3, "serious":3, "seriously":4, "seriousness":4, "seriocomic":5, "seriocomical":6, "seriocomically":7, "serologist":4, "serology":4, "serosity":4, "serotinal":4, "serotinous":4, "serous":2, "serous fluid":4, "serous membrane":4, "serov":2, "serologic":4, "serologically":6, "seromucous":4, "seroresistant":5, "serosa":3, "serositis":4, "serotherapist":5, "serotherapy":5, "serum":2, "serum albumin":5, "serum globulin":5, "serum hepatitis":6, "serum sickness":4, "serums":2, "serumal":3, "sesostris":3, "sesotho":3, "seta":2, "setal":2, "setaria":4, "setaceous":3, "setaceously":4, "setiferous":4, "setigerous":4, "setiform":3, "seto naikai":4, "seton":2, "seton":2, "setose":2, "setbal":4, "setbal":3, "sevan":2, "sevastopol":4, "severe":2, "severely":3, "severeness":3, "severer":3, "severest":3, "severity":4, "severnaya zemlya":6, "seversky":3, "severini":4, "severo":3, "severus":3, "seville":2, "seville orange":4, "sewan":2, "sewellel":3, "sezession":3, "seora":4, "seoras":4, "seorita":5, "sfax":1, "sferics":2, "sforza":2, "sforzando":3, "sforzato":3, "sfumato":3, "sfz":1, "sgabello":3, "sgd":1, "sgp":1, "sgraffito":3, "sgt":1, "sha":1, "shaaban":2, "shabbas":2, "shabbat":2, "shabbier":3, "shabbiest":3, "shabbily":3, "shabbiness":3, "shabby":2, "shabby-genteel":3, "shack":1, "shackle":2, "shackler":2, "shackleton":3, "shacko":2, "shad":1, "shade":1, "shades":1, "shadeful":2, "shadeless":2, "shadelessness":3, "shadberry":3, "shadblow":2, "shadbush":2, "shadchan":2, "shaddock":2, "shaded":2, "shading":2, "shadier":3, "shadiest":3, "shadily":3, "shadiness":3, "shadow":2, "shadow mask":3, "shadow play":3, "shadow test":3, "shadow-box":2, "shadowed":2, "shadower":3, "shadowgraph":3, "shadowgraphic":4, "shadowgraphist":4, "shadowgraphy":4, "shadowiness":4, "shadowland":3, "shadowless":3, "shadowlike":3, "shadowy":3, "shadrach":2, "shadwell":2, "shady":2, "shaef":1, "shaft":1, "shaft feather":3, "shaftesbury":3, "shafting":2, "shaftless":2, "shaftlike":2, "shaftway":2, "shafter":2, "shag":1, "shaganappi":4, "shagbark":2, "shagging":2, "shaggier":3, "shaggiest":3, "shaggily":3, "shagginess":3, "shaggy":2, "shaggy cap":3, "shaggy dog story":5, "shaglike":2, "shah":1, "shah jahan":3, "shahansha":3, "shahdom":2, "shahjahanpur":4, "shaitan":2, "shake":1, "shakeable":3, "shakedown":2, "shakefork":2, "shakeout":2, "shakespeare":2, "shakespearean":4, "shakespearean sonnet":6, "shakespeareanism":5, "shakespearian":4, "shakespearianism":5, "shakhty":2, "shakable":3, "shaken":2, "shaker":2, "shakers":2, "shaking":2, "shaking palsy":4, "shakingly":3, "shakier":3, "shakiest":3, "shako":2, "shakspere":2, "shaksperian":4, "shaksperianism":5, "shakta":2, "shakti":2, "shaktism":2, "shaky":2, "shale":1, "shalelike":2, "shall":1, "shalt":1, "shalloon":2, "shallop":2, "shallot":2, "shallow":2, "shallowly":3, "shallowness":3, "shalwar":2, "sham":1, "shame":1, "shameably":3, "shamefaced":2, "shamefacedly":4, "shamefacedness":4, "shameful":2, "shameless":2, "shamelessly":3, "shamelessness":3, "shaman":2, "shamba":2, "shamble":2, "shambles":2, "shaming":2, "shammai":2, "shammas":2, "shammash":2, "shammashim":3, "shammer":2, "shammes":2, "shammy":2, "shamoyed":2, "shamoying":3, "shampoo":2, "shampooed":2, "shampooer":3, "shampooing":3, "shamrock":2, "shamrock":2, "shamrock-pea":2, "shamshir":2, "shan":1, "shan't":1, "shang":1, "shanghai":2, "shanghai":2, "shanghaied":2, "shanghaiing":3, "shank":1, "shanks's pony":3, "shankpiece":2, "shandrydan":3, "shandy":2, "shandygaff":3, "shangaan":2, "shango":2, "shangri-la":2, "shankar":2, "shankara":3, "shankaracharya":5, "shannon":2, "shannontown":3, "shanny":2, "shansi":2, "shantey":2, "shanti":2, "shantied":2, "shantih":2, "shantow":2, "shantung":2, "shantung":2, "shanty":2, "shantying":3, "shantylike":3, "shantytown":3, "shape":1, "shape":1, "shaped":1, "shapeable":3, "shapeless":2, "shapelessly":3, "shapelessness":3, "shapelier":3, "shapeliest":3, "shapely":2, "shapable":3, "shapen":2, "shaping":2, "shapka":2, "shapley":2, "shapshaping":3, "shaptin":2, "shard":1, "share":1, "share certificate":5, "share premium":4, "shareable":3, "sharecrop":2, "sharecropped":2, "sharecropper":3, "sharecropping":3, "sharefarmer":3, "shareholder":3, "shark":1, "shark patrol":3, "shark siren":3, "sharklike":2, "sharkskin":2, "sharksucker":3, "sharp":1, "sharp":1, "sharp-nosedly":2, "sharp-nosedness":2, "sharp-setness":2, "sharp-sighted":2, "sharp-sightedly":3, "sharp-sightedness":3, "sharp-witted":2, "sharp-wittedness":3, "sharpsburg":2, "sharpsville":2, "sharpbill":2, "sharpen":2, "sharper":2, "sharpfreezing":3, "sharpfroze":2, "sharpfrozen":3, "sharpie":2, "sharpies":2, "sharply":2, "sharpness":2, "sharpshooter":3, "sharpshooting":3, "sharpy":2, "sharable":3, "shardana":3, "sharen":2, "sharer":2, "sharleen":2, "sharon":2, "sharonville":3, "sharra":2, "sharrie":2, "sharyn":2, "shashlick":2, "shashlik":2, "shaslik":2, "shasta":2, "shasta daisy":4, "shastra":2, "shastracara":4, "shastraik":3, "shastrik":2, "shatt-al-arab":2, "shatter":2, "shatterer":3, "shatteringly":4, "shatterproof":3, "shaun":1, "shave":1, "shaveling":2, "shavetail":2, "shavable":3, "shaven":2, "shaver":2, "shavie":2, "shaving":2, "shaw":1, "shaw":1, "shawl":1, "shawl collar":3, "shawlless":2, "shawllike":2, "shawm":1, "shawn":1, "shawnee":2, "shawwal":2, "shay":1, "shays":1, "shaba":2, "shaban":2, "shabuoth":3, "shacharith":3, "shadai":2, "shadoof":2, "shaduf":2, "shadyside":3, "shagreen":2, "shahaptian":4, "shahaptians":4, "shahada":3, "shaharith":3, "shaka":2, "shakuntala":4, "shakudo":3, "shalom":2, "shalom aleichem":5, "shamal":2, "shaman":2, "shamanic":3, "shamanism":3, "shamanist":3, "shamanistic":4, "shamo":2, "shamus":2, "shapiro":3, "shara":2, "sharaf":2, "sharaku":3, "sharet":2, "shari":2, "sharif":2, "shari'ah":3, "sharia":3, "sharon":2, "shavian":3, "shavuot":3, "shavuoth":3, "shawano":3, "shazar":2, "shcheglovsk":2, "shcherbakov":3, "she":1, "she'd":1, "she'll":1, "she's":1, "she-devil":2, "she-oak":1, "sheading":2, "sheaf":1, "sheaflike":2, "shealing":2, "shear":1, "sheared":1, "shears":1, "shearer":2, "shearhog":2, "shearing":2, "shearlegs":2, "shearless":2, "shearling":2, "shearwater":3, "sheath":1, "sheathe":1, "sheathbill":2, "sheather":2, "sheathing":2, "sheathier":3, "sheathiest":3, "sheathless":2, "sheathlike":2, "sheathy":2, "sheatfish":2, "sheatfishes":3, "sheave":1, "sheaves":1, "shed":1, "shedable":3, "sheddable":3, "shedder":2, "shedding":2, "shedlike":2, "sheen":1, "sheen":1, "sheene":1, "sheenies":2, "sheenier":3, "sheeniest":3, "sheenless":2, "sheenly":2, "sheeny":2, "sheep":1, "sheep sorrel":3, "sheep station":3, "sheep's fescue":3, "sheep's sorrel":3, "sheepshead":2, "sheepberry":3, "sheepcote":2, "sheepdog":2, "sheepdog trial":4, "sheepfold":2, "sheephead":2, "sheepherder":3, "sheepherding":3, "sheepish":2, "sheepishly":3, "sheepishness":3, "sheepless":2, "sheeplike":2, "sheepshank":2, "sheepshanks":2, "sheepshearing":3, "sheepskin":2, "sheepwalk":2, "sheepweed":2, "sheer":1, "sheers":1, "sheerlegs":2, "sheerness":2, "sheet":1, "sheet anchor":3, "sheet lightning":3, "sheet metal":3, "sheet music":3, "sheeting":2, "sheetless":2, "sheetlike":2, "sheefish":2, "sheefishes":3, "sheelah":2, "sheeler":2, "sheeney":2, "sheenie":2, "sheffield":2, "sheik":1, "sheikh":1, "sheikhdom":2, "sheikdom":2, "sheiklike":2, "sheitlen":2, "sheila":2, "sheitan":2, "sheitel":2, "shejuled":2, "shejuling":3, "shekel":2, "shelf":1, "shell":1, "shell jacket":3, "shelled":1, "shellback":2, "shellbark":2, "shellfire":2, "shellfish":2, "shellflower":3, "shellier":3, "shelliest":3, "shellproof":2, "shelly":2, "shelve":1, "shelves":1, "shelver":2, "shelving":2, "shelby":2, "shelbyville":3, "sheldrake":2, "shelduck":2, "shellack":2, "shellacking":3, "shelley":2, "shelleyan":3, "shellie":2, "shellian":3, "shelta":2, "shelter":2, "shelter tent":3, "shelterer":3, "shelteringly":4, "shelterless":3, "shelterlessness":4, "sheltie":2, "shelton":2, "shelty":2, "shem":1, "shembe":2, "shemite":2, "shemitic":3, "shend":1, "shending":2, "shenandoah":4, "shenandoah national park":8, "shensi":2, "shenstone":2, "shenyang":2, "shepard":2, "shepherd":2, "shepherd dog":3, "shepherd's needle":4, "shepherd's pie":3, "shepherd's weatherglass":5, "shepherd's-purse":2, "shepherd's-scabious":4, "shepherdess":3, "sherd":1, "sherard":2, "sherardise":3, "sherardize":3, "sheraton":3, "sherbet":2, "sherbrooke":2, "sheri":2, "sheriff":2, "sheriff court":3, "sheridan":3, "sherley":2, "sherlock":2, "sherlock":2, "sherman":2, "sherod":2, "sherpa":2, "sherrie":2, "sherrill":2, "sherrington":3, "sherris":2, "sherry":2, "sherry":2, "shertok":2, "sherwani":3, "sherwood":2, "sherwood forest":4, "shetland":2, "shetland islands":4, "shetland pony":4, "shetland sheepdog":4, "shetland wool":3, "sheugh":1, "sheveret":3, "shew":1, "shewbread":2, "shea":2, "sheba":2, "shebang":2, "shebat":2, "shebean":2, "shebeen":2, "shebeening":3, "sheboygan":3, "shechem":2, "shechina":3, "shechinah":3, "shechitah":3, "shegetz":2, "shehab":2, "shehitah":3, "shekinah":3, "shelagh":2, "shelepin":3, "shema":2, "shemaal":2, "shemitic":3, "shenanigan":4, "sheol":2, "shereef":2, "sherif":2, "sheria":3, "shevat":2, "shf":1, "shf":1, "shh":1, "shibbeen":2, "shibboleth":3, "shicker":2, "shickered":2, "shied":1, "shiel":1, "shield":1, "shield of david":4, "shielder":2, "shieldless":2, "shieldlessly":3, "shieldlessness":3, "shieldlike":2, "shieling":2, "shift":1, "shiftable":3, "shifting cultivation":6, "shifting spanner":4, "shiftingly":3, "shiftingness":3, "shiftier":3, "shiftiest":3, "shiftily":3, "shiftiness":3, "shiftless":2, "shifty":2, "shihchiachuang":3, "shihkiachwang":3, "shiksa":2, "shilh":1, "shill":1, "shilha":2, "shillala":3, "shillelagh":3, "shilling":2, "shilling mark":3, "shillington":3, "shillong":2, "shilly-shallied":3, "shilly-shallies":3, "shilly-shally":3, "shilly-shallying":4, "shillyshally":4, "shim":1, "shimmer":2, "shimmeringly":4, "shimmery":3, "shimmied":2, "shimming":2, "shimmy":2, "shimmying":3, "shin":1, "shin":1, "shine":1, "shinnston":2, "shinbone":2, "shindig":2, "shindy":2, "shiner":2, "shingishu":3, "shingle":2, "shingler":2, "shingles":2, "shingly":2, "shining":2, "shiningly":3, "shinier":3, "shiniest":3, "shinily":3, "shininess":3, "shinkin":2, "shinleaf":2, "shinnery":3, "shinnied":2, "shinning":2, "shinny":2, "shinnying":3, "shinplaster":3, "shinto":2, "shintoism":3, "shintoist":3, "shintoistic":4, "shinty":2, "shiny":2, "ship":1, "ship chandler":3, "ship money":3, "ship's biscuit":3, "ship's papers":3, "shipboard":2, "shipboy":2, "shipbuilder":3, "shipentine":3, "shipfitter":3, "shipka pass":3, "shiplap":2, "shipless":2, "shiplessly":3, "shipload":2, "shipman":2, "shipmaster":3, "shipmate":2, "shipment":2, "shipowner":3, "shippable":3, "shippen":2, "shippensburg":3, "shipper":2, "shipping":2, "shipping clerk":3, "shipping ton":3, "shippon":2, "shipshape":2, "shipway":2, "shipworm":2, "shipwreck":2, "shipwright":2, "shipyard":2, "shire":1, "shirk":1, "shirker":2, "shirr":1, "shirt":1, "shirtband":2, "shirting":2, "shirtless":2, "shirtmaker":3, "shirtmaking":3, "shirtsleeve":2, "shirtwaist":2, "shirtwaister":3, "shirty":2, "shirlee":2, "shirleen":2, "shirlene":2, "shirley":2, "shirlie":2, "shish kebab":3, "shishya":2, "shit":1, "shithead":2, "shittah":2, "shittim":2, "shittim wood":3, "shitting":2, "shittier":3, "shittiest":3, "shittiness":3, "shitty":2, "shiv":1, "shive":1, "shively":2, "shivaree":3, "shiver":2, "shiverer":3, "shivery":3, "shiah":2, "shiai":2, "shibah":2, "shibasaburo":5, "shibuichi-doshi":5, "shicer":2, "shier":2, "shiest":2, "shigella":3, "shigellae":3, "shii":2, "shiism":2, "shiite":2, "shikar":2, "shikaree":3, "shikari":3, "shikibu":3, "shikoku":3, "shiloh":2, "shily":2, "shimal":2, "shimazaki":4, "shimei":2, "shimonoseki":5, "shinar":2, "shinichiro":4, "shir":2, "shiraz":2, "shiralee":3, "shir":3, "shirlands":3, "shiva":2, "shivah":2, "shivaism":3, "shivaist":3, "shivaistic":4, "shivoo":2, "shizuoka":4, "shkotzim":2, "shkod":2, "shkodra":2, "shkodr":3, "shlemiel":2, "shluh":1, "shm":1, "shmo":1, "shnaps":1, "shnook":1, "shoad":1, "shoal":1, "shoat":1, "shock":1, "shock absorber":4, "shock therapy":4, "shocker":2, "shockheaded":3, "shocking":2, "shockingly":3, "shockingness":3, "shockley":2, "shockproof":2, "shockstall":2, "shod":1, "shodden":2, "shoddily":3, "shoddiness":3, "shoddy":2, "shoe":1, "shoe leather":3, "shoebill":2, "shoeblack":2, "shoehorn":2, "shoeing":2, "shoelace":2, "shoeless":2, "shoemaker":2, "shoemaker":3, "shoemaking":3, "shoeshine":2, "shoeshop":2, "shoestring":2, "shoetree":2, "shog":1, "shogging":2, "shole":1, "shone":1, "shoo":1, "shoo-in":1, "shook":1, "shool":1, "shoon":1, "shoot":1, "shooter":2, "shooting box":3, "shooting brake":3, "shooting gallery":5, "shooting iron":4, "shooting script":3, "shooting star":3, "shooting stick":3, "shoofly pie":3, "shoogle":2, "shooing":2, "shop":1, "shop assistant":4, "shop around":3, "shop steward":3, "shopful":2, "shopgirl":2, "shopkeeper":3, "shoplifter":3, "shoplifting":3, "shopman":2, "shopper":2, "shopping":2, "shopping centre":4, "shopping precinct":4, "shopsoiled":2, "shoptalk":2, "shopwalker":3, "shopwindow":3, "shopwoman":3, "shopwomen":3, "shopworn":2, "shore":1, "shore":1, "shore patrol":3, "shoreless":2, "shoreline":2, "shoreview":2, "shoreward":2, "shorewards":2, "shorewood":2, "shorn":1, "short":1, "short":1, "short account":3, "short circuit":3, "short covering":4, "short division":4, "short hundredweight":4, "short jenny":3, "short story":3, "short subject":3, "short-changer":2, "short-circuit":2, "short-commons":2, "short-dated":2, "short-handed":2, "short-livedness":2, "short-order":2, "short-sighted":2, "short-sightedness":3, "short-spoken":2, "short-story":2, "short-tempered":2, "short-term memory":4, "short-waisted":2, "short-winded":2, "shorts":1, "shortage":2, "shortbread":2, "shortcake":2, "shortchanged":2, "shortchanging":3, "shortcoming":3, "shortcut":2, "shorten":2, "shortener":3, "shortening":3, "shorter catechism":5, "shortfall":2, "shorthand":2, "shorthand typist":4, "shortheaded":3, "shorthorn":2, "shorthorn":2, "shortie":2, "shorties":2, "shortish":2, "shortly":2, "shortness":2, "shortstop":2, "shortwave":2, "shorty":2, "shoran":2, "shoring":2, "shortia":3, "shostakovich":4, "shot":1, "shot tower":3, "shot-blasting":2, "shot-putter":2, "shote":1, "shott":1, "shotgun":2, "shotgun wedding":4, "shotgunned":2, "shotgunning":3, "shotted":2, "shotten":2, "shotting":2, "shotwell":2, "should":1, "shouldest":2, "shouldn't":2, "shouldna":2, "shoulder":2, "shoulder blade":3, "shoulder pad":3, "shoulder patch":3, "shoulder strap":3, "shouse":1, "shout":1, "shove":1, "shove-ha'penny":3, "shove-halfpenny":3, "shovel":2, "shovel hat":3, "shovel-hatted":3, "shoveled":2, "shovelled":2, "shovelboard":3, "shoveler":3, "shovelful":3, "shovelhead":3, "shoveling":3, "shoveller":3, "shovelling":3, "shovelnose":3, "shover":2, "shoving":2, "show":1, "show business":3, "show copy":3, "show stopper":3, "show trial":3, "show-offish":2, "showd":1, "shown":1, "showboat":2, "showbread":2, "showcase":2, "showdown":2, "shower":2, "showers":2, "showeriness":4, "showerless":3, "showerlike":3, "showerproof":3, "showery":3, "showfolk":2, "showgirl":2, "showing":2, "showier":3, "showiest":3, "showily":3, "showiness":3, "showjumping":3, "showman":2, "showmanly":3, "showmanship":3, "showoffishness":4, "showpiece":2, "showplace":2, "showroom":2, "showstopper":3, "showy":2, "shoa":2, "shochet":2, "shochets":2, "shochetim":3, "shoer":2, "shofar":2, "shogun":2, "shogunal":3, "shogunate":3, "shohet":2, "shoji":2, "sholapur":3, "sholom":2, "sholokhov":3, "shona":2, "shophar":2, "shoshone":3, "shoshonean":4, "shoshoni":3, "shoshonian":4, "shostakovich":4, "showa":2, "shpt":1, "shr":1, "shraddha":2, "shrank":1, "shrapnel":2, "shreadhead":2, "shreading":2, "shred":1, "shredded":2, "shredder":2, "shredding":2, "shredless":2, "shredlike":2, "shreveport":2, "shrew":1, "shrewd":1, "shrewdie":2, "shrewdly":2, "shrewdness":2, "shrewsbury":3, "shrewish":2, "shrewishly":3, "shrewishness":3, "shrewlike":2, "shrewmouse":2, "shriek":1, "shrieker":2, "shriekingly":3, "shrieky":2, "shrieve":1, "shrieval":2, "shrievalty":3, "shrieving":2, "shrieval":2, "shrift":1, "shrike":1, "shrill":1, "shrillness":2, "shrilly":2, "shrimp":1, "shrimper":2, "shrimplike":2, "shrine":1, "shrineless":2, "shrinelike":2, "shrink":1, "shrinkage":2, "shrinkable":3, "shrinker":2, "shrinking":2, "shrinkingly":3, "shriner":2, "shrining":2, "shrive":1, "shrivel":2, "shriven":2, "shriving":2, "shriver":2, "shroff":1, "shropshire":2, "shroud":1, "shrouding":2, "shroudless":2, "shroudlike":2, "shrove":1, "shrove tuesday":3, "shrovetide":2, "shrub":1, "shrubberies":3, "shrubbery":3, "shrubbier":3, "shrubbiest":3, "shrubbiness":3, "shrubby":2, "shrug":1, "shrugging":2, "shrunk":1, "shrunken":2, "shtg":1, "shuck":1, "shucks":1, "shucker":2, "shudder":2, "shuddering":3, "shudderingly":4, "shuddery":3, "shudna":2, "shuffle":2, "shuffle off":3, "shuffleboard":3, "shufflingly":3, "shufty":2, "shuggy":2, "shul":1, "shulwar":2, "shun":1, "shunt":1, "shunter":2, "shunnable":3, "shunner":2, "shunning":2, "shush":1, "shusher":2, "shut":1, "shut-in":1, "shute":1, "shutdown":2, "shuteye":2, "shutoff":2, "shutout":2, "shutter":2, "shuttering":3, "shuttle":2, "shuttle armature":5, "shuttlecock":3, "shuttlelike":3, "shufu":2, "shuha":2, "shulamite":3, "shulamite":3, "shumal":2, "shushan":2, "shuzo":2, "shwa":1, "shy":1, "shyer":2, "shyest":2, "shying":2, "shylock":2, "shyly":2, "shyness":2, "shypoo":2, "shyster":2, "si unit":3, "sian":1, "siang":1, "siangtan":2, "sib":1, "sib":1, "sibb":1, "sibilance":3, "sibilant":3, "sibilantly":4, "sibilancy":4, "sibilate":3, "sibilated":4, "sibilating":4, "sibilation":4, "sibling":2, "sibship":2, "sibyl":2, "sibyl":2, "sibylle":2, "sibylline books":4, "sic":1, "sic":1, "sic passim":3, "sice":1, "sick":1, "sick headache":3, "sickbay":2, "sicken":2, "sickener":3, "sickening":3, "sickeningly":4, "sicker":2, "sickert":2, "sickie":2, "sicking":2, "sickle":2, "sickle cell anaemia":7, "sickle feather":4, "sickle medick":4, "sickle-cell":2, "sickle-hocked":2, "sicklebill":3, "sicklemic":3, "sickleweed":3, "sicklied":2, "sicklier":3, "sickliest":3, "sickliness":3, "sickly":2, "sicklying":3, "sickness":2, "sickness benefit":5, "sickroom":2, "siccative":3, "sicilies":3, "sicily":3, "sicyon":3, "sicyonian":5, "sid":1, "side":1, "side effect":3, "side whiskers":3, "side-saddle":2, "side-splitting":2, "side-stepper":2, "side-valve engine":3, "side-wheeler":2, "side-whiskered":2, "sidesman":2, "sideband":2, "sidebar":2, "sideboard":2, "sideboards":2, "sidebone":2, "sidebones":2, "sideburns":2, "sidecar":2, "sidechair":2, "sidecheck":2, "sidehead":2, "sidehill":2, "sidekick":2, "sideless":2, "sidelight":2, "sideline":2, "sidelines":2, "sideling":2, "sidelong":2, "sideman":2, "sidesaddle":3, "sideshake":2, "sideshow":2, "sideslip":2, "sidespin":2, "sidesplitting":3, "sidesplittingly":4, "sidestep":2, "sidestick":2, "sidestroke":2, "sideswipe":2, "sideswiped":2, "sideswiper":3, "sideswiping":3, "sidetrack":2, "sidewalk":2, "sidewall":2, "sideward":2, "sidewards":2, "sideway":2, "sideways":2, "sidewheel":2, "sidewheeler":3, "sidewinder":3, "sidewise":2, "siddhartha":3, "siddons":2, "siddur":2, "siddurim":3, "sided":2, "siderite":3, "siderographer":5, "siderography":5, "siderotic":4, "siderocyte":4, "siderographic":5, "siderolite":4, "sideroscope":4, "siderosis":4, "siderostat":4, "siderostatic":5, "siding":2, "sidney":2, "sidra":2, "sidrah":2, "sidrahs":2, "sidroth":2, "siege":1, "siege perilous":4, "siegeable":3, "siegbahn":2, "siegfried":2, "siegfried line":3, "sieging":2, "sienkiewicz":3, "sieve":1, "sievelike":2, "sieving":2, "siemens":2, "siemens":2, "siena":2, "siepi":2, "sievers":2, "siey":2, "sift":1, "sifter":2, "siftings":2, "sig":1, "sig":1, "sigh":1, "sight":1, "sightable":3, "sighted":2, "sighter":2, "sightless":2, "sightlessly":3, "sightlessness":3, "sightlier":3, "sightliest":3, "sightliness":3, "sightliread":3, "sightlireading":4, "sightly":2, "sightscreen":2, "sightsee":2, "sigher":2, "sighful":2, "sighfully":3, "sighless":2, "sighlike":2, "sign":1, "sign away":3, "sign language":3, "sign manual":4, "signboard":2, "signpost":2, "sigsbee":2, "siggeir":2, "sigil":2, "sigilistic":4, "sigillary":4, "sigillate":3, "sigillation":4, "sigismund":3, "sigla":2, "siglos":2, "sigma":2, "sigma-ring":2, "sigmate":2, "sigmation":3, "sigmatism":3, "sigmoid":2, "sigmoid flexure":4, "sigmoidoscope":4, "sigmoidal":3, "sigmoidally":4, "sigmund":2, "signa":2, "signal":2, "signal box":3, "signal-to-noise ratio":5, "signaled":2, "signalled":2, "signaling":3, "signalise":3, "signalised":3, "signalising":4, "signalize":3, "signalized":3, "signalizing":4, "signalling":3, "signally":3, "signalman":3, "signalment":3, "signatory":4, "signature":3, "signature tune":4, "signatureless":4, "signet":2, "signet ring":3, "signetur":3, "significs":3, "significance":4, "significant":4, "significant digits":6, "significant figures":6, "significancy":5, "significative":5, "significatively":6, "significativeness":6, "signified":3, "signification":5, "signify":3, "signifying":4, "signory":3, "signy":2, "sigrid":2, "sigurd":2, "sigyn":2, "sike":1, "sikh":1, "sikhism":2, "siker":2, "sikkim":2, "sild":1, "sile":1, "silk":1, "silk cotton":3, "silk-cotton tree":3, "silk-hatted":2, "silk-screen printing":3, "silkalene":3, "silkaline":3, "silken":2, "silkier":3, "silkiest":3, "silkily":3, "silkiness":3, "silklike":2, "silkolene":3, "silkoline":3, "silkscreen":2, "silkweed":2, "silkworm":2, "silky":2, "silky oak":3, "sill":1, "sillcock":2, "silsbee":2, "silt":1, "siltier":3, "siltiest":3, "siltstone":2, "silty":2, "silhouette":3, "silhouetted":4, "silhouetting":4, "silica":3, "silica":3, "silica gel":4, "silica glass":4, "silicate":3, "silication":4, "silicide":3, "siliciferous":5, "silicle":3, "silicon":3, "silicon carbide":5, "silicon controlled rectifier":9, "silicone":3, "silicotic":4, "silicosis":4, "siliqua":3, "sillanpaa":3, "sillanp":5, "sillabub":3, "siller":2, "sillibub":3, "sillily":3, "sillimanite":4, "sillimanite":4, "silliness":3, "silly":2, "silly season":4, "silplated":3, "silplating":3, "siltation":3, "silures":3, "silva":2, "silvan":2, "silvana":3, "silvanity":4, "silvanus":3, "silver":2, "silver":2, "silver age":3, "silver bell":3, "silver birch":3, "silver bromide":4, "silver certificate":6, "silver chloride":4, "silver fir":3, "silver fox":3, "silver frost":3, "silver iodide":5, "silver lining":4, "silver maple":4, "silver medal":4, "silver nitrate":4, "silver plate":3, "silver screen":3, "silver standard":4, "silver thaw":3, "silver-eye":2, "silver-plate":2, "silver-rag":2, "silver-tongued":2, "silvern":2, "silverberry":4, "silverer":3, "silverfish":3, "silverfishes":4, "silverise":3, "silverised":3, "silverish":3, "silverising":4, "silverize":3, "silverized":3, "silverizer":4, "silverizing":4, "silverleaf":3, "silverless":3, "silverlike":3, "silverly":3, "silverness":3, "silverpoint":3, "silverrod":3, "silverside":3, "silversmith":3, "silversmithing":4, "silvertail":3, "silverton":3, "silverware":3, "silverweed":3, "silverwork":3, "silvery":3, "silverius":4, "silvicolous":4, "silvis":2, "silvia":3, "silviculture":4, "silvicultural":5, "silviculturally":6, "silviculturist":5, "silvius":3, "sim":1, "simms":1, "simp":1, "simply":2, "simpson desert":4, "sims":1, "simsbury":3, "simarouba":4, "simaroubaceous":5, "simaruba":4, "simarubaceous":5, "simba":2, "simbirsk":2, "simchath torah":4, "simeon":3, "simeon stylites":6, "simeonism":4, "simferopol":4, "simhath torah":4, "simian":3, "simianity":5, "similar":3, "similarity":5, "similarly":4, "simile":3, "simious":3, "simiousness":4, "simitar":3, "simla":2, "simmel":2, "simmer":2, "simmer down":3, "simmeringly":4, "simnel cake":3, "simois":3, "simoisius":5, "simpatico":4, "simpelius":4, "simper":2, "simple":2, "simple fraction":4, "simple fracture":4, "simple fruit":3, "simple harmonic motion":7, "simple interest":5, "simple machine":4, "simple microscope":5, "simple sentence":4, "simple simon":4, "simple tense":3, "simple-faced":2, "simple-hearted":3, "simple-minded":3, "simplex":2, "simpleton":3, "simplicity":4, "simplism":2, "simplistic":3, "simplistically":5, "simplicidentate":5, "simplicius":4, "simplified":3, "simplify":3, "simplifying":4, "simplon":2, "simplon pass":3, "simply":2, "simply-connected":4, "simpulum":3, "simsim":2, "simul":2, "simulcast":3, "simultaneous":5, "simultaneous equations":8, "simulant":3, "simular":3, "simulate":3, "simulated":4, "simulating":4, "simulacral":4, "simulacre":4, "simulacrum":4, "simulation":4, "simulative":4, "simulatively":5, "simulator":4, "simulatory":5, "sin":1, "sin":1, "since":1, "sind":1, "sine":1, "sing":1, "singe":1, "singeing":2, "singability":5, "singable":3, "singableness":4, "singer":2, "singer":2, "singing":2, "singingfish":3, "singingfishes":4, "singingly":3, "singsong":2, "singspiel":2, "singspiel":2, "sinh":1, "sink":1, "sinkage":2, "sinker":2, "sinkerless":3, "sinkhole":2, "sinking":2, "sinking fund":3, "sins":1, "sint maarten":3, "sinalbin":3, "sinanthropus":4, "sinarquist":3, "sinapine":3, "sinapism":3, "sinbad":2, "sincere":2, "sincerely":3, "sincereness":3, "sincerity":4, "sincipita":4, "sincipital":4, "sinciput":3, "sinciputs":3, "sinclair":2, "sindhi":2, "sindon":2, "sinew":2, "sinewiness":4, "sinewless":3, "sinewy":3, "sinfiotli":3, "sinfjotli":3, "sinfonietta":4, "sinfonia":4, "sinful":2, "sinfully":3, "sinfulness":3, "singapore":3, "singhalese":3, "single":2, "single bond":3, "single entry":4, "single file":3, "single sideband transmission":7, "single tax":3, "single ticket":4, "single-acting":3, "single-action":3, "single-bank":2, "single-barrel":3, "single-barreled":3, "single-barrelled":3, "single-blind":2, "single-block":2, "single-breasted":3, "single-cross":2, "single-decker":3, "single-end":2, "single-entry":3, "single-foot":2, "single-handed":3, "single-handedly":4, "single-hearted":3, "single-heartedness":4, "single-lens reflex":4, "single-minded":3, "single-mindedness":4, "single-phase":2, "single-space":2, "single-step":2, "single-tax":2, "single-tongue":2, "single-track":2, "single-valued":3, "singles":2, "singlet":2, "singleness":3, "singlestick":3, "singlesticker":4, "singleton":3, "singletree":3, "singly":2, "singultation":4, "singultous":3, "singultus":3, "singultuses":4, "singular":3, "singularise":4, "singularize":4, "singularized":4, "singularizing":5, "singularity":5, "singularization":6, "singularly":4, "singularness":4, "sinhailien":3, "sinhalese":3, "sinhalite":3, "sinister":3, "sinisterly":4, "sinisterness":4, "sinistrad":3, "sinistral":3, "sinistrality":5, "sinistrally":4, "sinistrocular":5, "sinistrocularity":7, "sinistrorse":3, "sinistrorsely":4, "sinistrous":3, "sinistrodextral":5, "sinistrogyration":6, "sinistrogyric":5, "sinicize":3, "sinicized":3, "sinicizing":4, "sinicization":5, "sinified":3, "sinification":5, "sinify":3, "sinifying":4, "sinigrin":3, "sinkiang":2, "sinkiang-uighur autonomous region":9, "sinless":2, "sinlessly":3, "sinlessness":3, "sinlike":2, "sinner":2, "sinnet":2, "sinning":2, "sinningly":3, "sinningness":3, "sinopis":3, "sinter":2, "sinton":2, "sinuate":3, "sinuately":4, "sinuated":4, "sinuating":4, "sinuation":4, "sinuosity":5, "sinuous":3, "sinuously":4, "sinuousness":4, "sion":1, "sioux":1, "siouan":2, "siobhan":2, "sip":1, "sipe":1, "siphnos":2, "siper":2, "siping":2, "sippar":2, "sipper":2, "sippet":2, "sipping":2, "sippingly":3, "sir":1, "sir":1, "sir-reverence":3, "sire":1, "sireless":2, "sirdar":2, "siree":2, "sirius":3, "sirloin":2, "sirrah":2, "sirree":2, "sirsalis":3, "sirup":2, "sirupy":3, "sirvente":2, "sis":1, "sis":1, "siscowet":3, "sisera":3, "siskin":2, "sisley":2, "sismondi":3, "sisseton":3, "sissie":2, "sissified":3, "sissonne":2, "sissy":2, "sissyish":3, "sister":2, "sister-in-law":2, "sisterhood":3, "sisterless":3, "sisterlike":3, "sisterliness":4, "sisterly":3, "sistine":2, "sistine chapel":4, "sistroid":2, "sistrum":2, "sisyphean":4, "sisyphus":3, "sit":1, "sit over":3, "sit under":3, "sit-in":1, "sit-up":1, "sit-upon":2, "site":1, "sith":1, "sitzkrieg":2, "sitzmark":2, "sitatunga":4, "sitcom":2, "sited":2, "sitfast":2, "sithole":3, "siting":2, "sitka":2, "sitka spruce":3, "sitkan":2, "sitten":2, "sitter":2, "sitter":2, "sitting":2, "sitting bull":3, "sitting duck":3, "sitting room":3, "sitting tenant":4, "sitting trot":3, "situate":3, "situated":4, "situating":4, "situation":4, "situation comedy":7, "situational":5, "situationally":6, "situla":3, "situlae":3, "situtunga":4, "sitwell":2, "six":1, "six":1, "six counties":3, "six nations":3, "six-footer":2, "six-gun":1, "six-shooter":2, "sixte":1, "sixth":1, "sixthly":2, "sixain":2, "sixfold":2, "sixmo":2, "sixpence":2, "sixpences":3, "sixpenny":3, "sixteen":2, "sixteenth":2, "sixteenth note":3, "sixteenmo":3, "sixteenpenny":4, "sixtieth":3, "sixtus v":3, "sixty":2, "sixty-eight":2, "sixty-first":2, "sixty-five":2, "sixty-four":2, "sixty-fourth note":3, "sixty-fourmo":3, "sixty-nine":2, "sixty-ninth":2, "sixty-one":2, "sixty-second":3, "sixty-seventh":3, "sixty-six":2, "sixty-sixth":2, "sixty-third":2, "sixty-three":2, "sixtypenny":4, "size":1, "sized":1, "sizeable":3, "sizeableness":4, "sizeably":3, "sizar":2, "sizarship":3, "sizable":3, "sizableness":4, "sizably":3, "sizer":2, "sizing":2, "sizier":3, "siziest":3, "siziness":3, "sizy":2, "sizzle":2, "sizzler":2, "sizzlingly":3, "sicle":3, "sial":2, "sialagogue":4, "sialagogic":5, "sialkot":3, "sialogogue":4, "siam":2, "siamoise":3, "sian":2, "sialid":3, "sialoid":3, "sialogogic":5, "siamang":3, "siamese":3, "siamese cat":4, "siamese fighting fish":6, "siamese twins":4, "siber":2, "sibelius":4, "siberite":3, "siberia":4, "siberian":4, "sibiu":3, "sibylic":3, "sibyllic":3, "sicanian":4, "sicilian":3, "sicilian vespers":6, "siciliana":5, "siciliano":5, "sicilia":3, "sicle":2, "sicyon":3, "siderite":3, "siderolite":4, "siderophilin":5, "siderosis":4, "siderostat":4, "sidereal":4, "sidereal day":5, "sidereal hour":5, "sidereal month":5, "sidereal time":5, "sidereal year":5, "sidereally":5, "sidero":3, "sidi ifni":4, "sidi-bel-abb":3, "sidi-bel-abbs":4, "sidle":2, "sidlingly":3, "sidon":2, "sidur":2, "siena":3, "sienese":3, "sienna":3, "sierra":3, "sierra leone":6, "sierra madre":5, "sierra morena":6, "sierra nevada":6, "siesta":3, "sifaka":3, "siganid":3, "sigismund":3, "signac":2, "signior":2, "signor":2, "signorina":4, "signory":3, "signora":3, "signore":3, "signorelli":4, "signori":3, "signorina":4, "signorino":4, "sigrid":2, "sihanouk":3, "sika":2, "sikang":2, "sikandarabad":5, "sikhara":3, "siking":2, "sikorsky":3, "sikra":2, "silage":2, "silas":2, "silastic":3, "silence":2, "silenced":2, "silencer":3, "silencing":3, "silent":2, "silent majority":6, "silent partner":4, "silently":3, "silentness":3, "silex":2, "silenus":3, "silesia":3, "silesia":3, "silesian":3, "silesia":4, "silesia":4, "silicic":3, "silicic acid":5, "silicified":4, "silicification":6, "silicify":4, "silicifying":5, "silicium":4, "siliculose":4, "silique":2, "siliceous":3, "silicious":3, "silicium":4, "siliqua":3, "silo":2, "siloed":2, "siloxane":3, "siloam":3, "siloing":3, "silone":3, "silundum":3, "silures":3, "silurid":3, "silurian":4, "sima":2, "simar":2, "similitude":4, "simionato":4, "simon":2, "simon magus":4, "simon peter":4, "simon zelotes":5, "simon-pure":2, "simons":2, "simonist":3, "simonize":3, "simonized":3, "simonizing":4, "simonides":4, "simoom":2, "simoon":2, "simoleon":4, "simoniac":4, "simoniacal":5, "simoniacally":6, "simonov":3, "simony":3, "simulcast":3, "simulcasting":4, "simultaneity":6, "simultaneous":5, "simultaneously":6, "simultaneousness":6, "simn":3, "sina":2, "sinai":2, "sinal":2, "sinan":2, "sinarquista":4, "sinas":2, "sinaitic":4, "sinaloa":4, "sinatra":3, "sine":2, "sine die":4, "sine prole":4, "sine qua non":4, "sinecure":3, "sinecureship":4, "sinecurism":4, "sinecurist":4, "singan":2, "sining":2, "sinis":2, "sinitic":3, "sinicism":3, "siniju":3, "sino-tibetan":4, "sinologist":4, "sinology":4, "sinon":2, "sinologue":3, "sinopia":4, "sinorespiratory":7, "sinus":2, "sinuses":3, "sinusitis":4, "sinuslike":3, "sinusoid":3, "sinusoidal":4, "sinusoidal projection":7, "sinusoidally":5, "sinuiju":4, "sion":2, "siphon":2, "siphon bottle":4, "siphonage":3, "siphonal":3, "siphonic":3, "siphonless":3, "siphonlike":3, "siphonostele":4, "siphonophorous":5, "siphonophore":4, "sipidity":4, "siple":2, "sipunculid":4, "siqueiros":3, "sirach":2, "siraj-ud-daula":3, "siracusa":4, "siren":2, "sirenic":3, "sirenical":4, "sirenically":5, "sirenlike":3, "siret":2, "sirena":3, "sirenian":4, "sirenum":3, "siris":2, "siriasis":4, "siricius":4, "sirimavo":4, "sirocco":3, "sirop":2, "sisal":2, "sisinnius":4, "sita":2, "sitar":2, "sitarist":3, "sitella":3, "sitology":4, "sitosterol":4, "sitomania":5, "sitsang":2, "situs":2, "siva":2, "sivan":2, "sivas":2, "sivaism":3, "sivaist":3, "sivaistic":4, "siver":2, "siwash":2, "siwash":2, "sjaelland":2, "sjambok":2, "sjd":1, "sjland":2, "skagerrak":3, "skagway":2, "skald":1, "skaldic":2, "skaldship":2, "skaneateles":5, "skat":1, "skate":1, "skate over":3, "skateable":3, "skateboard":2, "skatemobile":3, "skatepark":2, "skated":2, "skater":2, "skating":2, "skatole":2, "skaw":1, "skagen":2, "skara brae":3, "skatoscopy":4, "skean":1, "skeat":1, "skee":1, "skeech":1, "skeet":1, "skeeing":2, "skeg":1, "skeif":1, "skeigh":1, "skeighish":2, "skein":1, "skelf":1, "skelp":1, "skeleton":3, "skeleton key":4, "skeletonise":4, "skeletonised":4, "skeletonising":5, "skeletonize":4, "skeletonizer":5, "skeletonization":6, "skeletonless":4, "skeletonlike":4, "skellum":2, "skelly":2, "skelmersdale":3, "skelton":2, "sken":1, "skep":1, "skepful":2, "skeptic":2, "skeptic":2, "skeptical":3, "skepticism":3, "skeptophylaxis":5, "skeptophylaxia":6, "skerrick":2, "skerry":2, "sket":1, "sketch":1, "sketchability":5, "sketchable":3, "sketchbook":2, "sketcher":2, "sketchingly":3, "sketchily":3, "sketchiness":3, "sketchlike":2, "sketchy":2, "skew":1, "skew-symmetric":3, "skewback":2, "skewbald":2, "skewer":2, "skewerwood":3, "skewing":2, "skewness":2, "skewwhiff":2, "skedaddle":3, "skedaddler":3, "skene":2, "skete":2, "ski":1, "skiatook":2, "skid":1, "skidbladnir":3, "skiddoo":2, "skiddooed":2, "skiddooing":3, "skidlid":2, "skidpan":2, "skidproof":2, "skidway":2, "skiech":1, "skied":1, "skiff":1, "skiffless":2, "skiffle":2, "skikda":2, "skill":1, "skill-lessness":2, "skilled":1, "skillful":2, "skillfully":3, "skillfulness":3, "skilful":2, "skilfully":3, "skilfulness":3, "skillet":2, "skilletfish":3, "skilletfishes":4, "skilling":2, "skillion":3, "skilly":2, "skim":1, "skimp":1, "skimpily":3, "skimpiness":3, "skimpy":2, "skimble-scamble":3, "skimmer":2, "skimming":2, "skimmings":2, "skimmia":3, "skin":1, "skin diving":3, "skin effect":3, "skin friction":3, "skin-diver":2, "skink":1, "skinking":2, "skinned":1, "skint":1, "skindipt":2, "skindipping":3, "skinflint":2, "skinflintily":4, "skinflintiness":4, "skinflinty":3, "skinful":2, "skinhead":2, "skinless":2, "skinlike":2, "skinner":2, "skinner":2, "skinner box":3, "skinneries":3, "skinnery":3, "skinning":2, "skinnier":3, "skinniest":3, "skinniness":3, "skinny":2, "skinny-dip":2, "skinny-dipper":3, "skintight":2, "skintle":2, "skip":1, "skip":1, "skip distance":3, "skipp":1, "skipdent":2, "skipjack":2, "skipper":2, "skipper":2, "skippet":2, "skippie":2, "skipping":2, "skipping-rope":2, "skippingly":3, "skippy":2, "skipton":2, "skipway":2, "skirl":1, "skirling":2, "skirr":1, "skirt":1, "skirter":2, "skirting":2, "skirting board":3, "skirtless":2, "skirtlike":2, "skirmish":2, "skirmisher":3, "skirnir":2, "skirophoria":5, "skirret":2, "skit":1, "skite":1, "skited":2, "skiting":2, "skitishly":3, "skitter":2, "skittish":2, "skittishness":3, "skittle":2, "skittle out":3, "skive":1, "skiver":2, "skivies":2, "skiving":2, "skivvy":2, "skivy":2, "skiagrapher":4, "skiamachy":4, "skiascopy":4, "skiable":3, "skiagraph":3, "skiagraphic":4, "skiagraphically":6, "skiascope":3, "skiatron":3, "skibob":2, "skien":2, "skiing":2, "skijorer":3, "skijoring":3, "skimo":2, "skiograph":3, "skiplane":2, "sklent":1, "skoal":1, "skokiaan":3, "skollie":2, "skolly":2, "skookum":2, "skopje":2, "skoplje":2, "skouth":1, "skowhegan":3, "skokie":2, "skr":1, "skreegh":1, "skrymir":2, "skt":1, "skuld":1, "skulk":1, "skulker":2, "skulkingly":3, "skull":1, "skull and crossbones":4, "skullcap":2, "skullduggery":4, "skulduggery":4, "skunk":1, "skunk cabbage":3, "skunkweed":2, "skutterudite":4, "skua":2, "skutari":3, "sky":1, "sky marker":3, "sky pilot":3, "skye":1, "skye terrier":4, "skyborne":2, "skycap":2, "skydive":2, "skydived":2, "skydiver":3, "skydiving":3, "skydove":2, "skyey":2, "skying":2, "skyjack":2, "skyjacker":3, "skylab":2, "skylark":2, "skylarker":3, "skyless":2, "skylight":2, "skylike":2, "skyline":2, "skylined":2, "skylining":3, "skyphos":2, "skypipe":2, "skyrocket":3, "skyros":2, "skysail":2, "skyscape":2, "skyscraper":3, "skyscraping":3, "skysweeper":3, "skyward":2, "skywards":2, "skyway":2, "skywrite":2, "skywriter":3, "skywriting":3, "skywritten":3, "skywrote":2, "skros":2, "slab":1, "slab-sided":2, "slabber":2, "slabbery":3, "slack":1, "slack water":3, "slacks":1, "slacken":2, "slacker":2, "slackingly":3, "slackly":2, "slackness":2, "slade":1, "slade":1, "slag":1, "slagging":2, "slaggier":3, "slaggiest":3, "slaggy":2, "slain":1, "slaister":2, "slake":1, "slakeable":3, "slakeless":2, "slakable":3, "slaker":2, "slaking":2, "slam":1, "slamming":2, "slang":1, "slanging match":3, "slangier":3, "slangiest":3, "slangily":3, "slanginess":3, "slangy":2, "slank":1, "slant":1, "slantly":2, "slantways":2, "slantwise":2, "slander":2, "slanderously":4, "slanderousness":4, "slap":1, "slap-up":1, "slapdash":2, "slaphappy":3, "slapjack":2, "slapper":2, "slapping":2, "slapshot":2, "slapstick":2, "slash":1, "slash pocket":3, "slashing":2, "slashingly":3, "slask":1, "slat":1, "slatch":1, "slate":1, "slather":2, "slated":2, "slater":2, "slating":2, "slatington":3, "slatier":3, "slatiest":3, "slatiness":3, "slatted":2, "slattern":2, "slatternly":3, "slatting":2, "slaty":2, "slaughter":2, "slaughterer":3, "slaughterhouse":3, "slaughteringly":4, "slaughterman":3, "slaughterously":4, "slav":1, "slav":1, "slave":1, "slave cylinder":4, "slave river":3, "slave-driver":2, "slaveholder":3, "slaveholding":3, "slaver":2, "slavery":3, "slavey":2, "slavic":2, "slaving":2, "slavish":2, "slavishly":3, "slavishness":3, "slavism":2, "slavkov":2, "slavocracy":4, "slavocrat":3, "slavocratic":4, "slavophil":3, "slavophile":3, "slavophobe":3, "slavophobia":5, "slaw":1, "slay":1, "slaying":2, "slalom":2, "slater":2, "slaton":2, "slavenska":3, "slavonic":3, "slavonically":5, "slavophilism":4, "slavonia":4, "slbm":1, "sld":1, "sleave":1, "sleaving":2, "sleazier":3, "sleaziest":3, "sleazily":3, "sleaziness":3, "sleazy":2, "sled":1, "sledge":1, "sledge-hammer":2, "sledgehammer":3, "sledging":2, "sledded":2, "sledding":2, "sledlike":2, "sleek":1, "sleeken":2, "sleeker":2, "sleekit":2, "sleekier":3, "sleekiest":3, "sleeky":2, "sleep":1, "sleep":1, "sleep around":3, "sleep movement":3, "sleeps":1, "sleepcoat":2, "sleeper":2, "sleepers":2, "sleepful":2, "sleeping":2, "sleeping bag":3, "sleeping car":3, "sleeping draught":3, "sleeping partner":4, "sleeping pill":3, "sleeping policeman":5, "sleeping sickness":4, "sleepier":3, "sleepiest":3, "sleepily":3, "sleepiness":3, "sleepless":2, "sleeplessly":3, "sleeplessness":3, "sleeplike":2, "sleepwalk":2, "sleepwalker":3, "sleepwear":2, "sleepy":2, "sleepyhead":3, "sleet":1, "sleetier":3, "sleetiest":3, "sleetiness":3, "sleety":2, "sleeve":1, "sleeveless":2, "sleevelike":2, "sleeving":2, "sleigh":1, "sleight":1, "sleigher":2, "sleipnir":2, "slender":2, "slenderise":3, "slenderize":3, "slenderized":3, "slenderizing":4, "slenderization":5, "slenderly":3, "slenderness":3, "slept":1, "slesvig":2, "sleswick":2, "sleuth":1, "sleuthhound":2, "sleuthlike":2, "slew":1, "slewed":1, "sley":1, "slezsko":2, "slice":1, "sliceable":3, "slick":1, "slickenside":3, "slicker":2, "slickered":2, "slickly":2, "slickness":2, "slickpaper":3, "slicer":2, "slicing":2, "slicingly":3, "slide":1, "slide fastener":4, "slide over":3, "slide trombone":3, "slide-action":2, "slideway":2, "slidable":3, "slidableness":4, "slidden":2, "slider":2, "sliding":2, "sliding scale":3, "sliding seat":3, "slidingly":3, "slier":1, "sliest":1, "slight":1, "slighter":2, "slighting":2, "slightingly":3, "slightly":2, "slim":1, "slim":1, "slime":1, "slimpsy":2, "slimier":3, "slimiest":3, "slimline":2, "slimmer":2, "slimmest":2, "slimming":2, "slimsy":2, "slimy":2, "sling":1, "slingback":2, "slinger ring":3, "slingshot":2, "slink":1, "slinking":2, "slinkingly":3, "slinkier":3, "slinkiest":3, "slinky":2, "slip":1, "slip-on":1, "slip-up":1, "slipcase":2, "slipcover":3, "slipknot":2, "slipless":2, "slipnoose":2, "slipover":3, "slippage":2, "slipper":2, "slipper bath":3, "slipper satin":4, "slipperier":4, "slipperiest":4, "slipperlike":3, "slipperwort":3, "slippery":3, "slippery dip":4, "slippery elm":4, "slippingly":3, "slippier":3, "slippiest":3, "slippiness":3, "slippy":2, "slipsheet":2, "slipshod":2, "slipslop":2, "slipsole":2, "slipstick":2, "slipstone":2, "slipstream":2, "slipware":2, "slipway":2, "slit":1, "slit pocket":3, "slither":2, "slithery":3, "slitless":2, "slitlike":2, "slitting":2, "sliver":2, "sliverlike":3, "slivovic":3, "slivovitz":3, "slivowitz":3, "slier":2, "sliest":2, "sligo":2, "slily":2, "sloan":1, "sloane":1, "sloat":1, "slob":1, "slobber":2, "slobberer":3, "slobbery":3, "sloe":1, "slog":1, "slogger":2, "slogging":2, "sloid":1, "sloke":1, "sloking":2, "sloop":1, "sloot":1, "slop":1, "slop around":3, "slope":1, "sloping":2, "slopingly":3, "slopingness":3, "slopping":2, "sloppier":3, "sloppiest":3, "sloppily":3, "sloppiness":3, "sloppy":2, "sloppy joe":3, "slopshop":2, "slopwork":2, "slosh":1, "sloshed":1, "sloshier":3, "sloshiest":3, "sloshily":3, "sloshiness":3, "sloshy":2, "slot":1, "slot machine":3, "slote":1, "sloth":1, "slothful":2, "slothfully":3, "slothfulness":3, "slotted":2, "slotter":2, "slotting":2, "slouch":1, "sloucher":2, "slouchingly":3, "slouchier":3, "slouchiest":3, "slouchily":3, "slouchiness":3, "slouchy":2, "slough":1, "slough":1, "sloughiness":3, "sloughy":2, "sloven":2, "slovenlier":4, "slovenliness":4, "slovenly":3, "slow":1, "slow handclap":3, "slow motion":3, "slow-moving":2, "slow-motion":2, "slow-up":1, "slow-witted":2, "slowcoach":2, "slowdown":2, "slowly":2, "slowness":2, "slowpoke":2, "slowworm":2, "slocum":2, "slogan":2, "sloganeer":3, "slovak":2, "slovakia":4, "slovakia":4, "slovene":2, "slovensko":3, "slovenia":4, "slr":1, "slub":1, "slubber":2, "slubberdegullion":6, "slubberingly":4, "slubbing":2, "sludge":1, "sludgier":3, "sludgiest":3, "sludgy":2, "slue":1, "sluff":1, "slug":1, "slugabed":3, "slugfest":2, "sluggard":2, "slugger":2, "slugging":2, "sluggish":2, "sluggishly":3, "sluggishness":3, "sluglike":2, "sluice":1, "sluicegate":2, "sluicelike":2, "sluiceway":2, "sluicing":2, "sluit":1, "slum":1, "slump":1, "slump":1, "slumber":2, "slumber party":4, "slumberer":3, "slumberland":3, "slumberless":3, "slumberous":3, "slumberously":4, "slumberousness":4, "slumbery":3, "slumbrous":2, "slumgullion":3, "slumlord":2, "slummer":2, "slumming":2, "slummier":3, "slummiest":3, "slummy":2, "slung":1, "slunk":1, "slur":1, "slurp":1, "slurried":2, "slurring":2, "slurry":2, "slurrying":3, "slurvian":3, "slush":1, "slushier":3, "slushiest":3, "slushily":3, "slushiness":3, "slushy":2, "slut":1, "sluttish":2, "sluttishly":3, "sluttishness":3, "slutty":2, "sly":1, "slype":1, "slyly":2, "slyness":2, "smack":1, "smacker":2, "smackeroo":3, "smackeroos":3, "smacking":2, "small":1, "small calorie":4, "small capital":4, "small circle":3, "small intestine":4, "small letter":3, "small pica":3, "small potatoes":4, "small-minded":2, "small-mindedly":3, "small-mindedness":3, "smallage":2, "smallboy":2, "smallclothes":2, "smallholding":3, "smallish":2, "smallmouth bass":3, "smallpox":2, "smallsword":2, "smalt":1, "smaltine":2, "smaltite":2, "smallage":2, "smallens":2, "smalto":2, "smarm":1, "smarmy":2, "smart":1, "smart aleck":3, "smart money":3, "smart-aleck":2, "smart-alecky":3, "smarten":2, "smartie":2, "smartingly":3, "smartish":2, "smartly":2, "smarty":2, "smarty-pants":2, "smaragd":2, "smash":1, "smashed":1, "smashable":3, "smasher":2, "smashing":2, "smatch":1, "smatter":2, "smatterer":3, "smattering":3, "smatteringly":4, "smaze":1, "smaragdine":3, "smaragdite":3, "sme":1, "smear":1, "smearcase":2, "smearer":2, "smearier":3, "smeariest":3, "smeariness":3, "smeary":2, "smeaton":2, "smectic":2, "smedley":2, "smeek":1, "smeeky":2, "smegma":2, "smell":1, "smellable":3, "smeller":2, "smelling":2, "smelling salts":3, "smellier":3, "smelliest":3, "smelliness":3, "smelly":2, "smelt":1, "smelter":2, "smelteries":3, "smeltery":3, "smelter":2, "smethwick":2, "smew":1, "smetana":3, "smidgen":2, "smidgin":2, "smiercase":2, "smile":1, "smileless":2, "smilelessly":3, "smiling":2, "smintheus":3, "smirch":1, "smirchless":2, "smirk":1, "smirker":2, "smirkingly":3, "smit":1, "smitch":1, "smite":1, "smith":1, "smith":1, "smithers":2, "smithereens":3, "smitheries":3, "smithery":3, "smithfield":2, "smithson":2, "smithsonite":3, "smithsonian institution":8, "smithy":2, "smiter":2, "smitten":2, "smittle":2, "smitty":2, "smilax":2, "smilacaceous":4, "smock":1, "smocking":2, "smocklike":2, "smog":1, "smoke":1, "smoke":1, "smoke-eater":2, "smoked rubber":3, "smokeable":3, "smokechaser":3, "smokeho":2, "smokehouse":2, "smokejack":2, "smokejumper":3, "smokeless":2, "smokeless powder":4, "smokeless zone":3, "smokelessly":3, "smokelessness":3, "smokelike":2, "smokeproof":2, "smokestack":2, "smoker":2, "smoking":2, "smoking jacket":4, "smoking room":3, "smoking-concert":3, "smokier":3, "smokiest":3, "smoko":2, "smokos":2, "smoky":2, "smoky mountains":4, "smoky quartz":3, "smolt":1, "smolder":2, "smollett":2, "smooch":1, "smoodge":1, "smoodger":2, "smoodging":2, "smooth":1, "smooth breathing":3, "smooth muscle":3, "smooth over":3, "smooth-shaven":2, "smooth-spoken":2, "smooth-spoken":2, "smoothable":3, "smoothbore":2, "smoothen":2, "smoother":2, "smoothhound":2, "smoothie":2, "smoothies":2, "smoothing iron":4, "smoothly":2, "smoothness":2, "smoothy":2, "smorgasbord":3, "smorzando":3, "smote":1, "smother":2, "smothered mate":3, "smotherable":4, "smothery":3, "smoulder":2, "smoking":2, "smoko":2, "smolensk":2, "smorebro":3, "smriti":2, "smriti":2, "smudge":1, "smudgeless":2, "smudgedly":3, "smudging":2, "smudgily":3, "smudginess":3, "smug":1, "smugger":2, "smuggest":2, "smuggle":2, "smuggler":2, "smugly":2, "smugness":2, "smut":1, "smutch":1, "smutchier":3, "smutchiest":3, "smutchless":2, "smutchy":2, "smuts":1, "smutted":2, "smutting":2, "smuttier":3, "smuttiest":3, "smuttily":3, "smuttiness":3, "smutty":2, "smyrna":2, "smyrnean":3, "smytrie":2, "smrgasbord":4, "snack":1, "snackette":2, "snaffle":2, "snag":1, "snagging":2, "snaggier":3, "snaggiest":3, "snaggle-toothed":2, "snaggletooth":3, "snaggy":2, "snaglike":2, "snail":1, "snailfish":2, "snailfishes":3, "snailflower":3, "snailing":2, "snaillike":2, "snake":1, "snake charmer":3, "snake river":3, "snakes and ladders":4, "snakebird":2, "snakebite":2, "snakeblenny":3, "snakefish":2, "snakefishes":3, "snakefly":2, "snakehead":2, "snakelike":2, "snakemouth":2, "snakeroot":2, "snakeskin":2, "snakestone":2, "snakeweed":2, "snaking":2, "snakier":3, "snakiest":3, "snakily":3, "snakiness":3, "snaky":2, "snap":1, "snap fastener":4, "snap-on":1, "snapback":2, "snapdragon":3, "snaphead":2, "snapless":2, "snapline":2, "snapout":2, "snappable":3, "snapper":2, "snapper up":3, "snapperback":3, "snapping":2, "snapping beetle":4, "snapping turtle":4, "snappingly":3, "snappish":2, "snappishly":3, "snappishness":3, "snappier":3, "snappiest":3, "snappily":3, "snappiness":3, "snappy":2, "snapshot":2, "snapshotted":3, "snapshotting":3, "snare":1, "snareless":2, "snarf":1, "snarl":1, "snarler":2, "snarlingly":3, "snarly":2, "snarer":2, "snaring":2, "snaringly":3, "snash":1, "snatch":1, "snatchable":3, "snatcher":2, "snatchingly":3, "snatchier":3, "snatchiest":3, "snatchily":3, "snatchy":2, "snath":1, "snathe":1, "snazzier":3, "snazziest":3, "snazziness":3, "snazzy":2, "snafu":2, "sncc":1, "sncf":1, "sneak":1, "sneak preview":3, "sneakbox":2, "sneaker":2, "sneakers":2, "sneaking":2, "sneakier":3, "sneakiest":3, "sneakily":3, "sneakiness":3, "sneaky":2, "sneck":1, "snecked":1, "snecker":2, "sned":1, "sneer":1, "sneerer":2, "sneerful":2, "sneerfulness":3, "sneeringly":3, "sneerless":2, "sneesh":1, "sneeze":1, "sneezewort":2, "sneezing":2, "snefru":2, "snell":1, "snellius":3, "snib":1, "snick":1, "snicker":2, "snickersnee":3, "snicket":2, "snide":1, "snideness":2, "snider":2, "snidest":2, "sniff":1, "sniffer":2, "sniffingly":3, "sniffish":2, "sniffily":3, "sniffiness":3, "sniffier":3, "sniffiest":3, "sniffle":2, "sniffler":2, "sniffles":2, "sniffy":2, "snifter":2, "snig":1, "snigger":2, "sniggerer":3, "sniggeringly":4, "snigging":2, "sniggle":2, "snip":1, "snipe":1, "snipe'sbill":2, "snipesbill":2, "snipefish":2, "snipelike":2, "snips":1, "sniper":2, "sniperscope":3, "sniping":2, "snippet":2, "snippetiness":4, "snippety":3, "snippier":3, "snippiest":3, "snippily":3, "snippiness":3, "snippy":2, "snit":1, "snitch":1, "snitcher":2, "snitchier":3, "snitchiest":3, "snitchy":2, "snivel":2, "sniveler":3, "sniveller":3, "snivelly":3, "snively":3, "snob":1, "snobol":1, "snobberies":3, "snobbery":3, "snobbish":2, "snobbism":2, "snobbily":3, "snobbiness":3, "snod":1, "snodly":2, "snog":1, "snollygoster":4, "snood":1, "snook":1, "snooker":2, "snool":1, "snoop":1, "snooper":2, "snooperscope":3, "snoopier":3, "snoopiest":3, "snoopy":2, "snoose":1, "snoot":1, "snootful":2, "snootier":3, "snootiest":3, "snootily":3, "snootiness":3, "snooty":2, "snooze":1, "snoozer":2, "snoozing":2, "snoozy":2, "snore":1, "snort":1, "snorter":2, "snortingly":3, "snoring":2, "snorkel":2, "snorri sturluson":5, "snot":1, "snottily":3, "snottiness":3, "snotty":2, "snout":1, "snout beetle":3, "snouted":2, "snoutless":2, "snoutlike":2, "snow":1, "snow":1, "snow bunting":3, "snow devil":3, "snow leopard":3, "snow-in-summer":2, "snow-on-the-mountain":2, "snowk":1, "snowball":2, "snowball tree":3, "snowbell":2, "snowberry":3, "snowbird":2, "snowblink":2, "snowbound":2, "snowbush":2, "snowcap":2, "snowcapped":2, "snowcreep":2, "snowdon":2, "snowdonia":4, "snowdrift":2, "snowdrop":2, "snowdrop tree":3, "snowfall":2, "snowfield":2, "snowflake":2, "snowier":3, "snowiest":3, "snowily":3, "snowiness":3, "snowless":2, "snowlike":2, "snowman":2, "snowmast":2, "snowmobile":3, "snowpack":2, "snowplough":2, "snowplow":2, "snowshed":2, "snowshoe":2, "snowshoe hare":3, "snowshoed":2, "snowshoeing":3, "snowshoer":3, "snowslide":2, "snowstorm":2, "snowy":2, "snowy egret":4, "snowy mountains":4, "snowy owl":3, "snowy river":4, "snohomish":3, "snp":1, "snr":1, "snr":1, "snub":1, "snubber":2, "snubbing":2, "snubbingly":3, "snubbier":3, "snubbiest":3, "snubbiness":3, "snubby":2, "snuck":1, "snuff":1, "snuffbox":2, "snuffingly":3, "snuffier":3, "snuffiest":3, "snuffiness":3, "snuffy":2, "snuffer":2, "snuffle":2, "snuffler":2, "snuffles":2, "snufflingly":3, "snuffly":2, "snug":1, "snugger":2, "snuggerie":3, "snuggeries":3, "snuggery":3, "snuggest":2, "snuggies":2, "snugging":2, "snuggle":2, "snugly":2, "snugness":2, "sny":1, "snye":1, "snying":2, "so-so":1, "soak":1, "soakage":2, "soakaway":3, "soaker":2, "soakingly":3, "soane":1, "soap":1, "soap bubble":3, "soap opera":4, "soapbark":2, "soapberry":3, "soapbox":2, "soapfish":2, "soapfishes":3, "soapi":2, "soapier":3, "soapiest":3, "soapily":3, "soapless":2, "soaplike":2, "soapolallie":4, "soaprock":2, "soapstone":2, "soapsuds":2, "soapsudsy":3, "soapwort":2, "soapy":2, "soar":1, "soarability":5, "soarable":3, "soarer":2, "soaring":2, "soaringly":3, "soares":2, "sob":1, "sob sister":3, "sob story":3, "sobber":2, "sobbing":2, "sobbingly":3, "soc":1, "soc":1, "sociol":1, "sock":1, "sock away":3, "sockdolager":4, "sockdologer":4, "sockeroo":3, "socket":2, "socket wrench":3, "socketless":3, "sockeye":2, "sockless":2, "socklessness":3, "socko":2, "socage":2, "socager":3, "soccage":2, "soccer":2, "socman":2, "socrates":3, "sod":1, "sodbuster":3, "sodden":2, "soddenly":3, "soddenness":3, "soddy":2, "sodless":2, "sodom":2, "sodomite":3, "sodomite":3, "sodomitically":6, "sodomy":3, "soemba":2, "soembawa":3, "soenda islands":4, "soenda strait":3, "soekarno":3, "soerabaja":4, "soft":1, "soft chancre":3, "soft furnishings":4, "soft landing":3, "soft palate":3, "soft shoulder":3, "soft-centred":2, "soft-cover":2, "soft-focus":2, "soft-headed":2, "soft-headedness":3, "soft-hearted":2, "soft-heartedness":3, "soft-pedal":2, "soft-pedaled":2, "soft-pedalled":2, "soft-pedaling":3, "soft-pedalling":3, "soft-shelled turtle":3, "soft-soaper":2, "soft-spoken":2, "softball":2, "softboard":2, "softhead":2, "softhearted":3, "softie":2, "softish":2, "softly":2, "softness":2, "software":2, "softwood":2, "softy":2, "soffit":2, "soffritto":3, "softa":2, "soften":2, "soften up":3, "softener":3, "sogat":1, "sogdian":3, "sogdiana":4, "soggy":2, "soh":1, "soi-disant":2, "soil":1, "soil conservation":5, "soilage":2, "soilure":2, "soissons":2, "soixante-neuf":2, "soign":2, "soign":3, "soigne":3, "soiree":2, "soire":3, "soke":1, "sokeman":2, "sokemanry":3, "sol":1, "sol":1, "sol-fa":1, "sol-faist":2, "sold":1, "sole":1, "soleless":2, "solely":2, "solepiece":2, "soleplate":2, "solve":1, "solvate":2, "solvable":3, "solvableated":5, "solvableating":5, "solvation":3, "solver":2, "solving":2, "solace":2, "solaced":2, "solacement":3, "solacing":3, "solanaceous":4, "soldan":2, "soldan":2, "solder":2, "soldering iron":5, "soldier":2, "soldier of fortune":5, "soldier on":3, "soldier orchid":4, "soldierfish":3, "soldierfishes":4, "soldieries":3, "soldierly":3, "soldiership":3, "soldiery":3, "soldo":2, "solemn":2, "solemnly":3, "solemnness":3, "solemnise":3, "solemnize":3, "solemnized":3, "solemnizer":4, "solemnizing":4, "solemnization":5, "solecism":3, "soledad":3, "solf":2, "solfatara":4, "solfataric":4, "solfeggio":3, "solfeggio":4, "solferino":4, "solferino":4, "solfge":3, "solid":2, "solid angle":4, "solid fuel":4, "solid geometry":6, "solid-looking":3, "solid-state":2, "solid-state physics":4, "solidillu":4, "solidly":3, "solidness":3, "solidomind":4, "solidungulate":5, "soling":2, "solipsism":3, "solidarily":5, "solidarity":5, "solidary":4, "solidago":4, "solidarize":4, "solidarized":4, "solidarizing":5, "solidus":3, "solifidian":5, "solifluction":4, "solifluxion":4, "soliman":3, "soliped":3, "solitaire":3, "solitaries":4, "solitary":4, "solitary confinement":7, "solitude":3, "solitudinous":5, "sollar":2, "solleret":3, "sollicker":3, "sollicking":3, "sollie":2, "solly":2, "solmisation":4, "solmization":4, "solonchak":3, "solomon":3, "solomon islands":5, "solomon islands pidgin":7, "solomon's seal":4, "solomonic":4, "solomonian":5, "solonets":3, "solonetz":3, "solstice":2, "solstitial":3, "solti":2, "solute":2, "solubilise":4, "solubilize":4, "solubility":5, "soluble":3, "soluble glass":4, "soluble rna":4, "solubleness":4, "solubly":3, "solutizer":4, "solvay":2, "solvay process":4, "solvent":2, "solvency":3, "solvolysis":4, "solvolytic":4, "solway firth":3, "solyman":3, "solymi":3, "solzhenitsyn":4, "som":1, "some":1, "somebodies":3, "somebody":3, "someday":2, "somedeal":2, "somehow":2, "someone":2, "someplace":2, "something":2, "sometime":2, "sometimes":2, "someway":2, "someways":2, "somewhat":2, "somewhere":2, "somewheres":2, "somewhile":2, "somewhither":3, "somewhy":2, "somewise":2, "somme":1, "somber":2, "somberly":3, "somberness":3, "sombre":2, "sombrely":3, "sombreness":3, "sombrero":3, "sombreros":3, "sombrous":2, "somersworth":3, "somerdale":3, "somersault":3, "somerset":3, "somerset":3, "somersetshire":4, "somerville":3, "sommelier":3, "sommeliers":3, "somnambulance":4, "somnambulant":4, "somnambulate":4, "somnambulated":5, "somnambulating":5, "somnambulation":5, "somnambulator":5, "somnambulism":4, "somnambulist":4, "somnambulistic":5, "somni":2, "somniferous":4, "somniferously":5, "somnific":3, "somniloquist":4, "somniloquous":4, "somniloquy":4, "somnifacient":4, "somniorum":4, "somnolence":3, "somnolent":3, "somnolently":4, "somnolency":4, "somnus":2, "son":1, "son":1, "son et lumiere":5, "son of sirach":4, "sonde":1, "sondheim":2, "sone":1, "song":1, "song cycle":3, "song of solomon":5, "songbird":2, "songfest":2, "songful":2, "songfully":3, "songfulness":3, "songka":2, "songkok":2, "songless":2, "songlike":2, "songster":2, "songstress":2, "songwriter":3, "sons of freedom":4, "sonatina":4, "sondage":2, "sonderclass":3, "sondra":2, "songhai":2, "sonic":2, "sonic barrier":5, "sonic boom":3, "sonic depth finder":5, "sonics":2, "sonless":2, "sonlike":2, "sonnet":2, "sonneteer":3, "sonnetise":3, "sonnetised":3, "sonnetising":4, "sonnetize":3, "sonnetized":3, "sonnetizing":4, "sonnetization":5, "sonny":2, "sonny":2, "sonorant":3, "sonobuoy":3, "sonship":2, "sonsie":2, "sonsy":2, "soo canals":3, "sook":1, "sool":1, "soom":1, "soon":1, "soong":1, "sooner":2, "sooner":2, "soot":1, "sooth":1, "soothe":1, "soother":2, "soothfast":2, "soothfastly":3, "soothfastness":3, "soothing":2, "soothingly":3, "soothingness":3, "soothly":2, "soothsaid":2, "soothsay":2, "soothsayer":3, "soothsaying":3, "sootier":3, "sootiest":3, "sootily":3, "sootiness":3, "sooty":2, "sooty mould":3, "soochow":2, "sooey":2, "soogee":2, "soogee-moogee":3, "soogeed":2, "soogeeing":3, "soony":2, "sop":1, "sop":1, "sophism":2, "sophist":2, "sophister":3, "sophistry":3, "sophocles":3, "sophoclean":4, "sophomore":3, "sophomoric":4, "soporiferous":5, "soporiferously":6, "soporiferousness":6, "soporific":4, "soporous":3, "sopping":2, "soppier":3, "soppiest":3, "soppiness":3, "soppy":2, "sorb":1, "sorb":1, "sorbic":2, "sorbic acid":4, "sorbian":3, "sore":1, "sorehead":2, "soreheadedly":4, "soreheadedness":4, "sorely":2, "soreness":2, "sorn":1, "sorner":2, "sorption":2, "sort":1, "sortable":3, "sortably":3, "sorter":2, "sorbet":2, "sorbefacient":4, "sorbian":3, "sorbitol":3, "sorbo rubber":4, "sorbol":2, "sorbonne":2, "sorbonist":3, "sorbose":2, "sorcerer":3, "sorceress":3, "sorceries":3, "sorcerous":3, "sorcerously":4, "sorcery":3, "sordello":3, "sordid":2, "sordidness":3, "sordino":3, "sorer":2, "sorest":2, "sorgho":2, "sorghum":2, "sorgo":2, "soricine":3, "sorites":3, "soroban":3, "sorrel":2, "sorrel tree":3, "sorrentine":3, "sorrento":3, "sorrier":3, "sorriest":3, "sorrily":3, "sorriness":3, "sorrow":2, "sorrower":3, "sorrowfully":4, "sorrowfulness":4, "sorrowless":3, "sorry":2, "sortie":2, "sortilege":3, "sortilegic":4, "sortition":3, "sos":1, "sosnowiec":3, "sospita":3, "sostenuto":4, "sostenuto pedal":6, "sot":1, "sotted":2, "sottie":2, "sottish":2, "sottishly":3, "sottishness":3, "sotto voce":4, "sou":1, "sou marqu":3, "sou'wester":3, "souffle":2, "soufflot":2, "souffl":3, "souffled":3, "souffling":4, "sough":1, "sought":1, "sought-after":2, "soughfully":3, "soughless":2, "souk":1, "soul":1, "soul":1, "soul-destroying":3, "soul-searching":2, "soult":1, "soulful":2, "soulfully":3, "soulfulness":3, "soulless":2, "soullike":2, "sound":1, "sound":1, "sound barrier":4, "sound effect":3, "sound mixer":3, "sound ranging":3, "sound spectrograph":4, "soundable":3, "soundboard":2, "soundbox":2, "sounder":2, "sounding":2, "sounding board":3, "sounding lead":3, "sounding line":3, "soundingly":3, "soundingness":3, "soundless":2, "soundlessly":3, "soundlessness":3, "soundly":2, "soundness":2, "soundpost":2, "soundproof":2, "soundproofing":3, "soundtrack":2, "soup":1, "soup kitchen":3, "soupbone":2, "soupcon":2, "soupfin":2, "soupfin shark":3, "soupier":3, "soupiest":3, "soupless":2, "souplike":2, "soupmeat":2, "soupspoon":2, "soupy":2, "sour":1, "sour":1, "sour cherry":3, "source":1, "source program":3, "sourceful":2, "sourcefulness":3, "sourceless":2, "sourdine":2, "sourdough":2, "sourish":2, "sourly":2, "sourness":2, "sourpuss":2, "soursop":2, "sourwood":2, "souse":1, "sousing":2, "souslik":2, "soustelle":2, "south":1, "south":1, "south africa":4, "south african":4, "south african dutch":5, "south australia":5, "south america":5, "south american trypanosomiasis":12, "south arabia":5, "south carolina":5, "south china sea":4, "south dakota":4, "south georgia":3, "south glamorgan":4, "south holland":3, "south island":3, "south korea":4, "south orkney islands":5, "south saskatchewan":5, "south sea bubble":4, "south sea islands":4, "south shetland islands":5, "south tyrol":3, "south vietnam":4, "south west africa":5, "south yorkshire":3, "south-southeast":2, "south-southwest":2, "south-southwestward":3, "south-southwestwardly":4, "southampton":3, "southampton island":5, "southbound":2, "southbridge":2, "southdown":2, "southeast":2, "southeast":2, "southeast asia":4, "southeast by east":4, "southeast by south":4, "southeaster":3, "southeastern":3, "southeasterner":4, "southeasterly":4, "southeastward":3, "southeastwards":3, "southeastwardly":4, "southend-on-sea":2, "souther":2, "southern":2, "southern":2, "southern alps":3, "southern british english":6, "southern cross":3, "southern hemisphere":5, "southern lights":3, "southern rhodesia":6, "southern sotho":4, "southern uplands":4, "southern yemen":4, "southerner":3, "southerner":3, "southernliness":4, "southernly":3, "southernmost":3, "southernwood":3, "southerliness":4, "southerly":3, "southerly buster":5, "southfield":2, "southgate":2, "southing":2, "southington":3, "southland":2, "southlander":3, "southmont":2, "southmost":2, "southpaw":2, "southport":2, "southron":2, "southward":2, "southwards":2, "southwark":2, "southwest":2, "southwest":2, "southwest by south":4, "southwest by west":4, "southwester":3, "southwestern":3, "southwesterner":4, "southwesterly":4, "southwestward":3, "southwestwards":3, "southwestwardly":4, "souter":2, "soutter":2, "soubise":2, "soubrette":2, "soubrettish":3, "soubresaut":3, "soubriquet":3, "souchong":2, "soudan":2, "soudanese":3, "souderton":3, "soufri":2, "soufrire":3, "souphanourong":4, "soupire":3, "souple":2, "sousa":2, "sousaphone":3, "sousaphonist":4, "soutache":2, "soutane":2, "souter":2, "souterrain":3, "soutenu":3, "southey":2, "soutine":2, "souvenir":3, "sovereign":3, "sovereignly":4, "sovereignty":4, "sovkhoz":2, "sovran":2, "sow":1, "sow thistle":3, "sown":1, "sowans":2, "sowback":2, "sowbelly":3, "sowbread":2, "sowcar":2, "sowens":2, "sowing":2, "sowlike":2, "sox":1, "soy":1, "soya":2, "soya bean":3, "soybean":2, "soyinka":3, "sozzled":2, "soave":3, "sober":2, "sober-headed":3, "sober-minded":3, "sober-mindedness":4, "sobers":2, "soberer":3, "soberingly":4, "soberly":3, "soberness":3, "sobersided":4, "sobeit":3, "sobieski":3, "sobor":2, "sobranje":3, "sobriety":4, "sobriquet":3, "sobriquetical":5, "soche":2, "sochi":2, "social":2, "social accounting":5, "social anthropology":7, "social assistance":5, "social climber":4, "social contract":4, "social credit":4, "social democrat":5, "social democratic party":8, "social democracy":6, "social evolution":6, "social insurance":5, "social organization":7, "social psychology":6, "social science":4, "social secretary":6, "social services":5, "social security":6, "social work":3, "social-minded":3, "social-mindedly":4, "social-mindedness":4, "social-service":3, "socialise":3, "socialised":3, "socialism":3, "socialist":3, "socialist international":8, "socialising":4, "socialistic":4, "socialistically":6, "socialite":3, "socialize":3, "socialized":3, "socializer":4, "socializing":4, "socialisation":5, "socialization":5, "sociability":5, "sociable":3, "sociableness":4, "sociably":3, "socialist labor party":7, "socinian":4, "socinianism":5, "sociality":5, "societal":4, "society":4, "society islands":6, "society of friends":6, "society of jesus":7, "socinus":3, "sociologism":5, "sociologist":5, "sociologistic":6, "sociologistically":8, "sociologize":5, "sociologized":5, "sociologizing":6, "sociology":5, "sociometry":5, "sociopathy":5, "sociobiology":7, "socioculturally":7, "socioeconomic":7, "socioeconomically":9, "sociogenesis":6, "sociogenic":5, "sociogenetic":6, "sociogram":4, "sociolinguistics":6, "sociological":6, "sociologically":7, "sociopath":4, "sociopathic":5, "sociopolitical":7, "sociopsychological":8, "socle":2, "socorro":3, "socotra":3, "socotran":3, "socratic":3, "socratic irony":6, "socratic method":5, "socratically":5, "socred":2, "soda":2, "soda ash":3, "soda biscuit":4, "soda bread":3, "soda fountain":4, "soda jerk":3, "soda lime":3, "soda nitre":4, "soda pop":3, "soda siphon":4, "soda water":4, "soda-lime":2, "sodality":4, "sodaless":3, "sodalite":3, "sodamide":3, "sodium":3, "sodium benzoate":6, "sodium bicarbonate":7, "sodium carbonate":6, "sodium chlorate":5, "sodium chloride":5, "sodium cyanide":6, "sodium dichromate":6, "sodium fluoroacetate":9, "sodium glutamate":6, "sodium hydroxide":6, "sodium hyposulphite":7, "sodium lamp":4, "sodium nitrate":5, "sodium pentothal":6, "sodium perborate":6, "sodium peroxide":6, "sodium phosphate":5, "sodium propionate":7, "sodium silicate":6, "sodium sulphate":5, "sodium thiosulphate":7, "sodium-vapour lamp":5, "sodoma":3, "soever":3, "sofa":2, "sofa bed":3, "sofa-bed":2, "sofaed":2, "sofar":2, "sofaing":3, "sofia":3, "sofiya":3, "soho":2, "soho":2, "soja":2, "sojourn":2, "soken":2, "sokoto":3, "sokotra":3, "sola":2, "solan":2, "solan goose":3, "solander":3, "solar":2, "solar apex":4, "solar cell":3, "solar constant":4, "solar day":3, "solar eclipse":4, "solar flare":3, "solar furnace":4, "solar month":3, "solar myth":3, "solar plexus":4, "solar system":4, "solar wind":3, "solar year":3, "solarimeter":5, "solarise":3, "solarism":3, "solarist":3, "solarize":3, "solarized":3, "solarizing":4, "solaria":4, "solarium":4, "solariums":4, "solarization":5, "solano":3, "solanum":3, "solatia":4, "solatium":4, "solemnify":4, "solemnity":4, "solent":2, "solenodon":4, "solesmes":2, "soleure":2, "solenoid":3, "solenoidal":4, "solenoidally":5, "soli":2, "solicit":3, "solicitor":4, "solicitor general":7, "solicitorship":5, "solicitous":4, "solicitude":4, "solidified":4, "solidifiability":8, "solidifiable":6, "solidifiableness":7, "solidification":6, "solidifier":5, "solidify":4, "solidifying":5, "soliloquise":4, "soliloquised":4, "soliloquising":5, "soliloquisingly":6, "soliloquize":4, "soliloquized":4, "soliloquizing":5, "soliloquy":4, "solingen":3, "solifidianism":6, "solifluction":4, "solihull":3, "solim":3, "solimena":4, "solimes":4, "solo":2, "solo man":3, "solo stop":3, "solo whist":3, "solon":2, "soloist":3, "soloistic":4, "solothurn":3, "solum":2, "solus":2, "solute":2, "solution":3, "solution set":4, "solutional":4, "solutrean":4, "solutus":3, "soma":2, "soma":2, "somatic":3, "somatic cell":4, "somali":3, "somalia":4, "somalian":4, "somaliland":4, "somata":3, "somatism":3, "somatist":3, "somatologist":5, "somatology":5, "somatogenic":5, "somatogenetic":6, "somatologic":5, "somatologically":7, "somatoplasm":4, "somatopleure":4, "somatopleural":5, "somatopleuric":5, "somatotonic":5, "somatotonia":6, "somatotype":4, "somite":2, "somoza":3, "sonant":2, "sonantal":3, "sonar":2, "sonarman":3, "sonagram":3, "sonata":3, "sonata form":4, "sonia":2, "soniferous":4, "sonometer":4, "sonority":4, "sonobuoy":3, "sonoma":3, "sonora":3, "sonoran":3, "sonorant":3, "sonorous":3, "sonorously":4, "sonorousness":4, "sophar":2, "sopher":2, "sopherim":3, "sophi":2, "sophie":2, "sophistic":3, "sophistical":4, "sophistically":5, "sophisticalness":5, "sophisticate":4, "sophisticated":5, "sophisticating":5, "sophistication":5, "sophia":3, "sophrosyne":4, "sophy":2, "sopor":2, "soprano":3, "sopranos":3, "sopranino":4, "soprano":3, "soprano clef":4, "sora":2, "soralium":4, "sorata":3, "sorel":2, "soredia":4, "sorediate":4, "soredium":4, "sori":2, "soritical":4, "sorites":3, "soroptimist":4, "sororate":3, "sororicide":4, "sorority":4, "sorocaba":4, "sorokin":3, "sorosis":3, "sorus":2, "sosigenes":4, "soter":2, "soteriology":6, "sothic":2, "sothic year":3, "sothis":2, "sotho":2, "sotie":2, "sotiris":3, "sotol":2, "sovetsk":2, "soviet":3, "soviet":3, "soviet central asia":7, "soviet russia":5, "soviet union":5, "soviet zone":4, "soviets":3, "sovietdom":4, "sovietise":4, "sovietise":4, "sovietised":4, "sovietism":4, "sovietism":4, "sovietising":5, "sovietize":4, "sovietization":6, "sowar":2, "soweto":3, "soyuz":2, "sozin":2, "spa":1, "spa":1, "spaak":1, "spaatz":1, "space":1, "space capsule":3, "space heater":3, "space lattice":3, "space medicine":4, "space opera":4, "space platform":3, "space shuttle":3, "space station":3, "space writer":3, "space-saving":2, "space-time continuum":5, "spaceband":2, "spacecraft":2, "spaceless":2, "spaceman":2, "spaceport":2, "spaceship":2, "spacesuit":2, "spacewalk":2, "spacewoman":3, "spackle":2, "spacer":2, "spacing":2, "spade":1, "spade guinea":3, "spadefish":2, "spadeful":2, "spadelike":2, "spadework":2, "spader":2, "spae":1, "spaetzle":2, "spaeing":2, "spag":1, "spain":1, "spake":1, "spale":1, "spall":1, "spallation":3, "spaller":2, "spalding":2, "spallanzani":4, "spalpeen":2, "spam":1, "span":1, "span":1, "span of apprehension":6, "spang":1, "spangler":2, "spank":1, "spanker":2, "spanking":2, "spankingly":3, "spans":1, "spancel":2, "spanceled":2, "spancelled":2, "spanceling":3, "spancelling":3, "spandau":2, "spandex":2, "spandrel":2, "spandril":2, "spangle":2, "spangly":2, "spaniard":2, "spaniel":2, "spaniellike":3, "spanish":2, "spanish armada":5, "spanish america":6, "spanish bayonet":5, "spanish cedar":4, "spanish civil war":5, "spanish fly":3, "spanish guinea":4, "spanish guitar":4, "spanish inquisition":6, "spanish mackerel":4, "spanish main":3, "spanish moss":3, "spanish morocco":5, "spanish omelette":4, "spanish onion":4, "spanish paprika":5, "spanish rice":3, "spanish sahara":5, "spanish west africa":6, "spanish windlass":4, "spanish-american":5, "spanish-american war":6, "spanner":2, "spanning":2, "spanworm":2, "spar":1, "spar":1, "spare":1, "spareable":3, "sparely":2, "spareness":2, "sparerib":2, "sparge":1, "sparger":2, "sparging":2, "spark":1, "spark":1, "spark chamber":3, "spark transmitter":4, "sparks":1, "sparks":1, "sparker":2, "sparking plug":3, "sparkishly":3, "sparkishness":3, "sparkless":2, "sparklessly":3, "sparklet":2, "sparklike":2, "sparkplug":2, "sparkplugged":2, "sparkplugging":3, "sparse":1, "sparsely":2, "sparseness":2, "sparser":2, "sparsest":2, "sparable":3, "sparer":2, "sparest":2, "sparid":2, "sparing":2, "sparingly":3, "sparingness":3, "sparkle":2, "sparkler":2, "sparkling wine":3, "sparlike":2, "sparling":2, "sparoid":2, "sparring":2, "sparring partner":4, "sparrow":2, "sparrow hawk":3, "sparrowgrass":3, "sparrowhawk":3, "sparrowless":3, "sparrowlike":3, "sparry":2, "sparsity":3, "sparta":2, "spartan":2, "spartanburg":3, "spartanic":3, "spartanism":3, "spartanically":5, "spartanly":3, "spartacism":3, "spartacist":3, "spartacus":3, "sparteine":3, "spartiate":3, "sparver":2, "spasm":1, "spasmodic":3, "spasmodical":4, "spasmodically":5, "spasmolysant":4, "spasmolysis":4, "spasmodism":3, "spasmodist":3, "spasmolytic":4, "spasmophile":3, "spasmophilic":4, "spasmophilia":5, "spassky":2, "spastic":2, "spat":1, "spatchcock":2, "spate":1, "spathe":1, "spathic":2, "spathose":2, "spathulate":3, "spatted":2, "spatter":2, "spatterdash":3, "spatterdashed":3, "spatterdock":3, "spatteringly":4, "spatterware":3, "spatting":2, "spatula":3, "spatulate":3, "spaulder":2, "spavin":2, "spavined":2, "spawn":1, "spawner":2, "spay":1, "spayad":2, "spacial":2, "spacially":3, "spacious":2, "spaciously":3, "spaciousness":3, "spaciality":5, "spadix":2, "spadiceous":3, "spadices":3, "spaer":2, "spaghetti":3, "spaghetti western":5, "spagyric":3, "spagyrical":4, "spahee":2, "spahi":2, "spalato":3, "spanaemic":3, "spanaemia":4, "spanemic":3, "spathaceous":3, "spathose":2, "spathous":2, "spatial":2, "spatially":3, "spatiality":5, "spatiography":5, "spatiotemporal":6, "spatiotemporal":6, "spavied":2, "spaviet":2, "speak":1, "speak-easeasies":3, "speak-easy":2, "speakable":3, "speakableness":4, "speakably":3, "speakeasy":3, "speaker":2, "speaker":2, "speakership":3, "speaking":2, "speaking clock":3, "speaking in tongues":4, "speaking trumpet":4, "speaking tube":3, "spean":1, "spear":1, "spearer":2, "spearean":3, "spearfish":2, "spearfish":2, "spearfishes":3, "spearhead":2, "spearman":2, "spearmint":2, "spearwort":2, "speaker":2, "spec":1, "speck":1, "speckedness":3, "speckle":2, "speckled trout":3, "speckless":2, "specklessly":3, "specklessness":3, "specs":1, "specified":3, "specifiable":5, "specification":5, "specificative":5, "specificatively":6, "specifier":4, "specify":3, "specifying":4, "specimen":3, "spectacular":4, "spectacularity":6, "spectacularly":5, "spectacle":3, "spectacled":3, "spectacles":3, "spectacleless":4, "spectaclelike":4, "spectator":3, "spectator sport":4, "spectatorial":5, "spectatress":3, "specter":2, "spectra":2, "spectral":2, "spectral luminous efficiency":9, "spectral type":3, "spectrality":4, "spectrally":3, "spectralness":3, "spectre":2, "spectrographer":4, "spectrography":4, "spectrology":4, "spectrometer":4, "spectrometry":4, "spectroscopist":4, "spectroscopy":4, "spectrobolometer":6, "spectrobolometric":6, "spectrochemistry":5, "spectrochemical":5, "spectrocolorimetry":7, "spectrogram":3, "spectrograph":3, "spectrographic":4, "spectrographically":6, "spectroheliogram":6, "spectroheliograph":6, "spectroheliographic":7, "spectrohelioscope":6, "spectrohelioscopic":7, "spectrological":5, "spectrologically":6, "spectrometric":4, "spectrophotometer":6, "spectrophotometry":6, "spectrophotometric":6, "spectrophotometrically":8, "spectropolarimeter":7, "spectropolariscope":6, "spectroradiometer":7, "spectroscope":3, "spectroscopic":4, "spectroscopic analysis":8, "spectroscopically":6, "spectrum":2, "spectrum analysis":6, "specular":3, "specularly":4, "speculate":3, "speculated":4, "speculating":4, "speculation":4, "speculative":4, "speculatively":5, "speculativeness":5, "speculator":4, "speculum":3, "speculum metal":5, "sped":1, "spee":1, "speech":1, "speech community":5, "speech-reading":2, "speechify":3, "speechless":2, "speechlessly":3, "speechlessness":3, "speechmaker":3, "speechmaking":3, "speechway":2, "speed":1, "speed limit":3, "speedball":2, "speedboat":2, "speedboating":3, "speeded":2, "speeder":2, "speedful":2, "speedfully":3, "speedfulness":3, "speeding":2, "speedingly":3, "speedingness":3, "speedier":3, "speediest":3, "speedily":3, "speediness":3, "speedless":2, "speedo":2, "speedometer":4, "speedster":2, "speedwalk":2, "speedway":2, "speedway":2, "speedwell":2, "speedwriting":3, "speedy":2, "speel":1, "speer":1, "speil":1, "speiss":1, "speicher":2, "spelk":1, "spell":1, "spellable":3, "spellbind":2, "spellbinder":3, "spellbinding":3, "spellbound":2, "spelldown":2, "speller":2, "spelling":2, "spelling bee":3, "spelling pronunciation":7, "spellingly":3, "spellman":2, "spelt":1, "spellican":3, "spelter":2, "spence":1, "spence":1, "spend":1, "spends":1, "spendable":3, "spender":2, "spending":2, "spending money":4, "spendthrift":2, "spengler":2, "spent":1, "spenborough":3, "spencer":2, "spencer":2, "spencer gulf":3, "spencerian":4, "spencerianism":5, "spender":2, "spenser":2, "spenserian":4, "spenserian sonnet":6, "spenserian stanza":6, "spere":1, "sperm":1, "spermine":2, "spermary":3, "spermatic":3, "spermatic cord":4, "spermatic fluid":5, "spermatocyte":4, "spermatogenesis":6, "spermatogonia":6, "spermatogonial":6, "spermatogonium":6, "spermatophore":4, "spermatophyte":4, "spermaceti":4, "spermacetilike":5, "spermary":3, "spermatheca":4, "spermatid":3, "spermatia":4, "spermatium":4, "spermatogenous":5, "spermatoid":3, "spermatophoral":5, "spermatorrhea":5, "spermatorrhoea":5, "spermatocytal":5, "spermatophyte":4, "spermatophytic":5, "spermatozoa":5, "spermatozoal":5, "spermatozoan":5, "spermatozoic":5, "spermatozoid":5, "spermatozoon":5, "spermatozon":6, "spermic":2, "spermicide":3, "spermiogenesis":6, "spermous":2, "spermogonia":5, "spermogonium":5, "spermophile":3, "spermophyte":3, "spermophytic":4, "sperry":2, "sperrylite":3, "spessartine":3, "spessartite":3, "spessartite":3, "spew":1, "spewer":2, "spey":1, "speyer":2, "special":2, "special assessment":5, "special branch":3, "special case":3, "special constable":5, "special delivery":6, "special drawing rights":5, "special effects":4, "special jury":4, "special licence":4, "special pleading":4, "special privilege":5, "special sort":3, "specialise":3, "specialised":3, "specialism":3, "specialist":3, "specialising":4, "specialistic":4, "specialize":3, "specialized":3, "specializing":4, "specialization":5, "specially":3, "specialty":3, "specie":2, "specie point":3, "species":2, "specific":3, "specific gravity":6, "specific heat capacity":8, "specific impulse":5, "specific performance":6, "specific resistance":6, "specific viscosity":7, "specific volume":5, "specific-gravity":5, "specious":2, "speciously":3, "speciousness":3, "speciality":5, "speciation":4, "speciosity":5, "spelaean":3, "spelaeology":5, "spelaites":4, "spelean":3, "speleology":5, "spelunker":3, "spenard":2, "spener":2, "speos":2, "spero":2, "sperone":3, "sphacelation":4, "sphacelism":3, "sphacelus":3, "sphaeristeria":5, "sphaeristerium":5, "sphagnous":2, "sphagnum":2, "sphalerite":3, "sphene":1, "sphere":1, "sphere of influence":5, "sphereless":2, "spherelike":2, "spheral":2, "spheric":2, "spherics":2, "sphering":2, "spherical":3, "spherical aberration":7, "spherical angle":5, "spherical coordinates":7, "spherical geometry":7, "spherical polygon":6, "spherical trigonometry":8, "spherical triangle":6, "sphericality":5, "spherically":4, "spherule":2, "spherular":3, "spherulate":3, "spherulite":3, "spherulitic":4, "sphery":2, "sphenic":2, "sphenographer":4, "sphenographist":4, "sphenography":4, "sphenoid":2, "sphenoid bone":3, "sphenoidal":3, "sphenodon":3, "sphenogram":3, "sphenographic":4, "spherality":4, "sphericity":4, "spheroid":2, "spheroidal":3, "spheroidic":3, "spheroidicity":5, "spherometer":4, "sphincter":2, "sphincteral":3, "sphincterial":4, "sphinx":1, "sphinx":1, "sphinxes":2, "sphinges":2, "sphingine":2, "sphingomyelin":5, "sphingosine":3, "sphragistics":3, "sphygmic":2, "sphygmography":4, "sphygmoid":2, "sphygmogram":3, "sphygmograph":3, "sphygmographic":4, "sphygmomanometric":6, "sphygmomanometer":6, "sphygmus":2, "spic":1, "spice":1, "spice islands":3, "spiceable":3, "spiceberry":3, "spicebush":2, "spiceless":2, "spicelike":2, "spicewood":2, "spicey":2, "spick":1, "spiccato":3, "spicery":3, "spicing":2, "spicier":3, "spiciest":3, "spicily":3, "spiciness":3, "spicule":2, "spicula":3, "spicular":3, "spiculate":3, "spiculum":3, "spicy":2, "spiel":1, "spieler":2, "spier":1, "spiegel":2, "spiegeleisen":4, "spif":1, "spiffier":3, "spiffiest":3, "spiffily":3, "spiffiness":3, "spiffy":2, "spiffing":2, "spifflicate":3, "spiffy":2, "spiflicate":3, "spiflicated":4, "spignel":2, "spigot":2, "spik":1, "spike":1, "spike lavender":4, "spike-pitcher":2, "spikedace":2, "spikedaces":3, "spikefish":2, "spikefishes":3, "spikelet":2, "spikelike":2, "spikenard":2, "spiker":2, "spikier":3, "spikiest":3, "spikily":3, "spikiness":3, "spiky":2, "spile":1, "spill":1, "spill over":3, "spillage":2, "spilling":2, "spillover":3, "spillpipe":2, "spillway":2, "spilt":1, "spilth":1, "spiling":2, "spilikin":3, "spillikin":3, "spillikins":3, "spin":1, "spin bowler":3, "spin stabilization":6, "spin-drier":2, "spin-dryer":2, "spine":1, "spine-bashing":2, "spine-chiller":2, "spineless":2, "spinelessly":3, "spinelessness":3, "spinelike":2, "spink":1, "spinach":2, "spinach-rhubarb":3, "spinachlike":3, "spinacene":3, "spincaster":3, "spindale":2, "spindle":2, "spindle tree":3, "spindle-legged":3, "spindle-shanked":2, "spindleage":3, "spindlelegs":3, "spindlelike":3, "spindleshanks":3, "spindling":2, "spindlier":3, "spindliest":3, "spindly":2, "spindried":2, "spindrift":2, "spindrying":3, "spinet":2, "spingarn":2, "spinier":3, "spiniest":3, "spinifex":3, "spininess":3, "spinnability":5, "spinnable":3, "spinnaker":3, "spinner":2, "spinneret":3, "spinnerette":3, "spinneries":3, "spinnery":3, "spinney":2, "spinning":2, "spinning jenny":4, "spinning mule":3, "spinning top":3, "spinning wheel":3, "spinningly":3, "spinny":2, "spinproof":2, "spinster":2, "spinsterhood":3, "spinsterish":3, "spinthariscopic":5, "spinthariscope":4, "spinulose":3, "spiny":2, "spiny anteater":5, "spiny lobster":4, "spiny-finned":2, "spire":1, "spired":1, "spires":1, "spireless":2, "spirelet":2, "spirt":1, "spiral":2, "spiracle":3, "spiring":2, "spirit":2, "spirit":2, "spirit gum":3, "spirit lamp":3, "spirit level":4, "spirit varnish":4, "spirits of ammonia":6, "spirits of hartshorn":5, "spirits of salt":4, "spirits of turpentine":6, "spirits of wine":4, "spirited":3, "spiritedly":4, "spiritedness":4, "spiritism":3, "spiritist":3, "spiritistic":4, "spiritless":3, "spiritlessly":4, "spiritlessness":4, "spiritlike":3, "spiritual":4, "spiritual bouquet":6, "spiritual incest":6, "spiritualise":5, "spiritualised":5, "spiritualism":5, "spiritualist":5, "spiritualising":6, "spiritualistic":6, "spiritualistically":8, "spiritualize":5, "spirituality":6, "spiritualization":7, "spiritualty":5, "spirituel":4, "spirituous":4, "spirituously":5, "spirituousness":5, "spiritous":3, "spiritus asper":5, "spiritus lenis":5, "spiritualiser":6, "spiritualizer":6, "spirket":2, "spirketing":3, "spirketting":3, "spirula":3, "spiry":2, "spissatus":3, "spissus":2, "spit":1, "spit and polish":4, "spit-and-polish":2, "spitchcock":2, "spite":1, "spiteful":2, "spitefully":3, "spitefulness":3, "spiteless":2, "spitsbergen":3, "spitz":1, "spitz":1, "spitzbergen":3, "spitzenberg":3, "spitzenburg":3, "spital":2, "spitball":2, "spitballer":3, "spited":2, "spitfire":2, "spithead":2, "spiting":2, "spitsticker":3, "spitter":2, "spitteler":3, "spitting":2, "spitting distance":4, "spitting image":4, "spitting snake":3, "spittle":2, "spittle insect":4, "spittlebug":3, "spittoon":2, "spiv":1, "spica":2, "spica":2, "spicate":2, "spider":2, "spider crab":3, "spider mite":3, "spider monkey":4, "spider orchid":4, "spider phaeton":4, "spider-hunting wasp":4, "spiderhunter":4, "spiderlet":3, "spiderling":3, "spiderman":3, "spiderweb":3, "spiderwebbed":3, "spiderwebbing":4, "spiderwort":3, "spidery":3, "spier":2, "spilosite":3, "spina":2, "spina bifida":5, "spinal":2, "spinal anaesthesia":6, "spinal canal":4, "spinal column":4, "spinal cord":3, "spinaceous":3, "spinel":2, "spinelle":2, "spinescent":3, "spiniferous":4, "spinigerous":4, "spinode":2, "spinose":2, "spinosely":3, "spinosity":4, "spinous":2, "spinoza":3, "spinozism":3, "spinozist":3, "spinozistic":4, "spinule":2, "spira":2, "spiracular":4, "spiraea":3, "spiral":2, "spiral galaxy":5, "spiral of archimedes":7, "spiral staircase":4, "spiral-bound":2, "spiraled":2, "spiralled":2, "spiraling":3, "spirality":4, "spiralling":3, "spirally":3, "spirant":2, "spirantism":3, "spirantize":3, "spirantized":3, "spirantizing":4, "spirantization":5, "spirantal":3, "spirantic":3, "spiracle":3, "spireme":2, "spirea":3, "spiriferous":4, "spirillar":3, "spirillum":3, "spiritoso":4, "spirituel":4, "spirituelle":4, "spiroid":2, "spirometer":4, "spirometry":4, "spirochaete":3, "spirochaetosis":5, "spirochete":3, "spirochetotic":5, "spirochetosis":5, "spirograph":3, "spirographic":4, "spirogyra":4, "spirometric":4, "spironolactone":5, "splake":1, "splanchnic":2, "splanchnicectomy":5, "splanchnology":4, "splanchnologic":4, "splanchnopleure":3, "splash":1, "splashback":2, "splashboard":2, "splashdown":2, "splasher":2, "splashingly":3, "splashier":3, "splashiest":3, "splashiness":3, "splashy":2, "splat":1, "splatter":2, "splay":1, "splayfoot":2, "spleen":1, "spleenful":2, "spleenfully":3, "spleenish":2, "spleenier":3, "spleeniest":3, "spleenwort":2, "spleeny":2, "splendent":2, "splendid":2, "splendidly":3, "splendidness":3, "splendiferous":4, "splendiferously":5, "splendiferousness":5, "splendor":2, "splendorous":3, "splendour":2, "splendrous":2, "splenic":2, "spleuchan":2, "spleughan":2, "splenectomize":4, "splenectomized":4, "splenectomizing":5, "splenectomy":4, "splenetic":3, "splenetical":4, "splenetically":5, "splenial":3, "splenii":3, "splenitis":3, "splenius":3, "splenomegaly":5, "splenomegalia":6, "splice":1, "spliceable":3, "splicer":2, "splicing":2, "spline":1, "splint":1, "splining":2, "splinter":2, "splinter group":3, "splinterless":3, "splintery":3, "split":1, "split":1, "split decision":4, "split infinitive":5, "split personality":6, "split second":3, "split ticket":3, "split-level":2, "split-screen technique":3, "splits":1, "splittail":2, "splittable":3, "splitter":2, "splitting":2, "splodge":1, "splore":1, "splosh":1, "splotch":1, "splurge":1, "splurgily":3, "splurgy":2, "splutter":2, "splutterer":3, "spock":1, "spode":1, "spode":1, "spodumene":3, "spohr":1, "spoil":1, "spoils":1, "spoils system":3, "spoilsman":2, "spoilt":1, "spoilage":2, "spoilable":3, "spoiler":2, "spoilfive":2, "spoiling":2, "spoilless":2, "spoilsport":2, "spoke":1, "spokesman":2, "spokeswoman":3, "spokeswomen":3, "spokeless":2, "spokeshave":2, "spokewise":2, "spoking":2, "sponge":1, "spongefly":2, "spongeless":2, "spongelike":2, "sponger":2, "spongingly":3, "spongioblast":4, "spondaic":3, "spondaical":4, "spondee":2, "spondulicks":3, "spondulix":3, "spondylitic":4, "spondylitis":4, "spongillafly":4, "spongin":2, "spongier":3, "spongiest":3, "spongioblast":4, "spongioblastic":5, "spongocoel":3, "spongy":2, "sponsion":2, "sponson":2, "sponsor":2, "spontaneity":5, "spontaneous":4, "spontaneous combustion":7, "spontaneous generation":8, "spontaneous recovery":8, "spontaneously":5, "spontaneousness":5, "spontini":3, "spontoon":2, "spoof":1, "spoofery":3, "spook":1, "spookier":3, "spookiest":3, "spookily":3, "spookiness":3, "spooky":2, "spool":1, "spoollike":2, "spoom":1, "spoon":1, "spoonback":2, "spoonbill":2, "spoondrift":2, "spooner":2, "spoonerism":3, "spooney":2, "spoonfed":2, "spoonfeeding":3, "spoonful":2, "spoonies":2, "spoonier":3, "spooniest":3, "spoonily":3, "spooniness":3, "spoonless":2, "spoonlike":2, "spoony":2, "spoor":1, "spore":1, "sport":1, "sports":1, "sports jacket":3, "sportscast":2, "sportsman":2, "sportsmanlike":3, "sportsmanliness":4, "sportsmanly":3, "sportsmanship":3, "sportswear":2, "sportswoman":3, "sportability":5, "sporter":2, "sportful":2, "sportfully":3, "sportfulness":3, "sporting":2, "sporting house":3, "sportier":3, "sportiest":3, "sportily":3, "sportiness":3, "sportless":2, "sporty":2, "sporades":3, "sporing":2, "sporran":2, "sportive":2, "sportively":3, "sportiveness":3, "sporule":2, "sporular":3, "sporulate":3, "sporulated":4, "sporulating":4, "sporulation":4, "spot":1, "spot-on":1, "spotswood":2, "spotless":2, "spotlessly":3, "spotlessness":3, "spotlight":2, "spotlike":2, "spottable":3, "spotted":2, "spotted crake":3, "spotted dick":3, "spotted fever":4, "spotted flycatcher":5, "spotted sandpiper":5, "spottedly":3, "spottedness":3, "spotter":2, "spotting":2, "spottier":3, "spottiest":3, "spottily":3, "spottiness":3, "spotty":2, "spouse":1, "spousehood":2, "spouseless":2, "spousal":2, "spousally":3, "spousing":2, "spousta":2, "spout":1, "spouted":2, "spouter":2, "spoutless":2, "spoutlike":2, "spokane":2, "spoken":2, "spoliate":3, "spoliated":4, "spoliating":4, "spoliation":4, "sporadic":3, "sporadical":4, "sporadically":5, "sporadicalness":5, "sporal":2, "sporangia":4, "sporangial":4, "sporangium":4, "sporadicity":5, "sporicide":3, "sporogenous":4, "sporogony":4, "sporoid":2, "sporocarp":3, "sporocyst":3, "sporocystic":4, "sporocyte":3, "sporogenesis":5, "sporogonia":5, "sporogonial":5, "sporogonium":5, "sporophore":3, "sporophoric":4, "sporophyl":3, "sporophyll":3, "sporophyllary":5, "sporophyte":3, "sporophytic":4, "sporotrichotic":5, "sporotrichosis":5, "sporozoan":4, "sporozoite":4, "spp":1, "spqr":1, "spr":1, "spraddle":2, "spraddle-legged":3, "sprag":1, "spragging":2, "sprain":1, "sprang":1, "sprat":1, "sprattle":2, "sprauchle":2, "sprawl":1, "spray":1, "sprayer":2, "sprayful":2, "sprayfully":3, "sprayless":2, "spraylike":2, "spread":1, "spread eagle":3, "spread-eagle":2, "spread-eagleism":3, "spread-eagleist":3, "spreader":2, "sprechgesang":3, "sprechgesang":3, "sprechstimme":3, "sprechstimme":3, "spree":1, "spree":1, "sprig":1, "sprightful":2, "sprightlier":3, "sprightliest":3, "sprightliness":3, "sprightly":2, "sprigging":2, "spriggier":3, "spriggiest":3, "spriggy":2, "sprigtail":2, "spring":1, "spring":1, "spring balance":3, "spring chicken":3, "spring fever":3, "spring onion":3, "spring-cleaning":2, "spring-loaded":2, "springe":1, "springs":1, "springald":2, "springboard":2, "springbok":2, "springbok":2, "springbuck":2, "springdale":2, "springer":2, "springer spaniel":4, "springfield":2, "springfield rifle":4, "springhaas":2, "springhalt":2, "springhead":2, "springhill":2, "springhouse":2, "springing":2, "springingly":3, "springier":3, "springiest":3, "springily":3, "springiness":3, "springless":2, "springlet":2, "springlike":2, "springlock":2, "springtail":2, "springtide":2, "springtime":2, "springwood":2, "springy":2, "sprinkler":2, "sprint":1, "sprinkle":2, "sprinkler":2, "sprinkler system":4, "sprinkling":2, "sprinklingly":3, "sprit":1, "sprite":1, "spritehood":2, "spriteless":2, "spritelike":2, "spritz":1, "spritsail":2, "sprier":2, "spriest":2, "sprocket":2, "sprout":1, "spruce":1, "sprucely":2, "spruceness":2, "sprucer":2, "sprucest":2, "sprucing":2, "sprue":1, "spruik":1, "spruiker":2, "spruit":1, "sprung":1, "spruance":2, "spruik":2, "spry":1, "spryer":2, "spryest":2, "spryly":2, "spt":1, "spud":1, "spud island":3, "spud-bashing":2, "spudder":2, "spue":1, "spug":1, "spuggy":2, "spume":1, "spuming":2, "spun":1, "spun sugar":3, "spunk":1, "spunkie":2, "spunkies":2, "spunkier":3, "spunkiest":3, "spunkily":3, "spunkiness":3, "spunkless":2, "spunky":2, "spunware":2, "spur":1, "spur-rowel":2, "spurge":1, "spurge laurel":3, "spurn":1, "spurred":1, "spurrite":2, "spurt":1, "spurter":2, "spurgeon":2, "spurless":2, "spurlike":2, "spurrer":2, "spurrey":2, "spurring":2, "spurrier":3, "spurry":2, "spurtive":2, "spurtively":3, "spurtle":2, "sputnik":2, "sputter":2, "spuing":2, "spumans":2, "spumante":3, "spumescent":3, "spumone":3, "spumoni":3, "spurious":3, "spuriously":4, "spuriousness":4, "sputum":2, "spy":1, "spyglass":2, "spying":2, "sptzle":3, "sprer":3, "sqq":1, "squab":1, "squabbier":3, "squabbiest":3, "squabble":2, "squabbler":2, "squabblingly":3, "squabby":2, "squacco":2, "squad":1, "squadded":2, "squadder":2, "squadding":2, "squadron":2, "squadron leader":4, "squall":1, "squaller":2, "squalid":2, "squalidly":3, "squalidness":3, "squallier":3, "squalliest":3, "squally":2, "squalor":2, "squamulose":3, "squander":2, "square":1, "square away":3, "square bracket":3, "square matrix":3, "square measure":3, "square number":3, "square piano":4, "square shooter":3, "square-bashing":2, "square-jointed":2, "square-rigger":2, "square-shouldered":2, "squareface":2, "squarehead":2, "squarelike":2, "squarely":2, "squareness":2, "squaretail":2, "squaretoed":2, "squarable":3, "squarer":2, "squarest":2, "squaring":2, "squarish":2, "squarishly":3, "squarrose":2, "squarrosely":3, "squash":1, "squashes":2, "squashier":3, "squashiest":3, "squashily":3, "squashiness":3, "squashy":2, "squassation":3, "squat":1, "squatly":2, "squatness":2, "squatted":2, "squatter":2, "squatter sovereignty":6, "squatterdom":3, "squatting":2, "squattily":3, "squattiness":3, "squattocracy":4, "squaw":1, "squawk":1, "squawker":2, "squawbush":2, "squawfish":2, "squawfishes":3, "squawroot":2, "squalene":2, "squalidity":4, "squama":2, "squamate":2, "squamation":3, "squamose":2, "squamosely":3, "squamoseness":3, "squamous":2, "squamously":3, "squamousness":3, "squamosal":3, "squeak":1, "squeaker":2, "squeakingly":3, "squeakier":3, "squeakiest":3, "squeaky":2, "squeal":1, "squealer":2, "squeamish":2, "squeamishly":3, "squeamishness":3, "squeeze":1, "squeezer":2, "squeezing":2, "squeezingly":3, "squeegee":2, "squeegeed":2, "squeegeeing":3, "squeg":1, "squegging":2, "squelch":1, "squelcher":2, "squelchingly":3, "squelchingness":3, "squeteague":2, "squib":1, "squibbing":2, "squid":1, "squiffer":2, "squiffy":2, "squiggle":2, "squiggly":2, "squill":1, "squillgee":2, "squillgeed":2, "squillgeeing":3, "squilgee":2, "squilgeed":2, "squilgeeing":3, "squilla":2, "squillagee":3, "squillageed":3, "squillageeing":4, "squinch":1, "squint":1, "squinter":2, "squintingly":3, "squintingness":3, "squinty":2, "squinancy":3, "squinnied":2, "squinny":2, "squinnying":3, "squire":1, "squire":1, "squirearch":2, "squirearchal":3, "squirearchical":4, "squirearchy":3, "squiredom":2, "squireless":2, "squirelike":2, "squireling":2, "squirm":1, "squirmingly":3, "squirmier":3, "squirmiest":3, "squirmy":2, "squirt":1, "squirter":2, "squirting cucumber":5, "squirtingly":3, "squirarch":2, "squirarchical":4, "squirarchy":3, "squirfishes":3, "squirrel":2, "squirrel cage":3, "squirrel corn":3, "squirrel monkey":4, "squirrel's-ear":2, "squirrel-tail grass":3, "squirreled":2, "squirrelled":2, "squirrelfish":3, "squirreling":3, "squirrelish":3, "squirrellike":3, "squirrelling":3, "squirrelly":3, "squirrely":3, "squish":1, "squishier":3, "squishiest":3, "squishy":2, "squit":1, "squiz":1, "squireen":2, "squshier":3, "squshiest":3, "squshy":2, "squush":1, "sra":1, "src":1, "sri":1, "sri lanka":3, "srinagar":3, "srinivasa":4, "sro":1, "srta":1, "sruti":2, "srbija":3, "ssb":1, "ssc":1, "sse":1, "ssensuosity":5, "ssm":1, "ssn":1, "ssr":1, "sst":1, "ssw":1, "st andrew's cross":4, "st andrews":3, "st-germain-des-prs":3, "st-germain-en-laye":2, "st-james's-flower":2, "st-joseph's-wand":2, "st-milion":5, "st-tienne":3, "sta":1, "sta":1, "stab":1, "stabbing":2, "stabbingly":3, "stablish":2, "stacc":1, "stacher":2, "stachering":3, "stack":1, "stack against":3, "stacked":1, "stacker":2, "stackering":3, "stackfreed":2, "stackless":2, "stackyard":2, "staccato":3, "stacte":2, "stade":1, "stadtholder":3, "staddle":2, "staddlestone":3, "stadholder":3, "stadholderate":4, "stadholdership":4, "stadle":2, "staff":1, "staff college":3, "staff of aesculapius":7, "staff officer":4, "staff sergeant":3, "staffs":1, "staffer":2, "staffman":2, "staffa":2, "stafford":2, "staffordshire":3, "staffordshire terrier":6, "stag":1, "stag beetle":3, "stag party":3, "stage":1, "stage direction":4, "stage effect":3, "stage manager":4, "stage whisper":3, "stage-manage":2, "stage-managed":2, "stage-managing":3, "staged":1, "stageable":3, "stageably":3, "stagecoach":2, "stagecraft":2, "stagehand":2, "stagey":2, "stagg":1, "stager":2, "stagey":2, "stagflation":3, "staggard":2, "staggart":2, "stagger":2, "staggers":2, "staggerbush":3, "staggerer":3, "staggeringly":4, "staggie":2, "stagging":2, "staggy":2, "staghound":2, "staging":2, "staging area":5, "stagier":3, "stagiest":3, "stagily":3, "staginess":3, "stagiritic":4, "staglike":2, "stagnance":2, "stagnant":2, "stagnantly":3, "stagnancy":3, "stagnate":2, "stagnated":3, "stagnating":3, "stagnation":3, "stagnatory":4, "stagy":2, "stagyrite":3, "stahlhelm":2, "staid":1, "staidly":2, "staidness":2, "stain":1, "staines":1, "stainability":5, "stainable":3, "stainableness":4, "stainably":3, "stainer":2, "stainful":2, "stainless":2, "stainless steel":3, "stainlessness":3, "stair":1, "stairs":1, "staircase":2, "stairhead":2, "stairless":2, "stairlike":2, "stairway":2, "stairwell":2, "stake":1, "stakeout":2, "staking":2, "stale":1, "stalely":2, "stalemate":2, "stalemated":3, "stalemating":3, "staleness":2, "stalk":1, "stalked":1, "stalkable":3, "stalker":2, "stalking-horse":2, "stalkingly":3, "stalkless":2, "stalky":2, "stall":1, "stallage":2, "stalling angle":4, "stalactite":3, "stalactitically":6, "stalagmite":3, "stalagmitic":4, "stalagmitically":6, "stalagmometer":5, "staler":2, "stalest":2, "staling":2, "stallion":2, "stalwart":2, "stalwartly":3, "stalwartness":3, "stalworth":2, "stammrel":2, "stamp":1, "stamp duty":3, "stamper":2, "stamping ground":3, "stamba":2, "stamboul":2, "stambul":2, "stamford":2, "stamford bridge":3, "stamin":2, "stamina":3, "staminal":3, "staminate":3, "staminiferous":5, "staminigerous":5, "staminode":3, "staminodia":5, "staminodium":5, "staminody":4, "stammel":2, "stammer":2, "stammerer":3, "stammeringly":4, "stammeringness":4, "stamnos":2, "stampede":2, "stampedable":4, "stampeded":3, "stampeder":3, "stampeding":3, "stampedingly":4, "stan":1, "stance":1, "stanch":1, "stanchable":3, "stancher":2, "stanchless":2, "stanchlessly":3, "stand":1, "stand over":3, "stand-offish":2, "stand-offishly":3, "stand-offishness":3, "standard":2, "standard candle":4, "standard cell":3, "standard cost":3, "standard deviation":6, "standard gauge":3, "standard of living":5, "standard time":3, "standard-bearer":3, "standard-bearership":4, "standard-bred":2, "standard-gage":2, "standard-gaged":2, "standard-gauge":2, "standard-gauged":2, "standardise":3, "standardize":3, "standardized":3, "standardizable":5, "standardizer":4, "standardizing":4, "standardization":5, "standee":2, "standfast":2, "standing":2, "standing army":4, "standing committee":5, "standing order":4, "standing rigging":4, "standing wave":3, "standish":2, "standoff":2, "standoffish":3, "standoffishly":4, "standout":2, "standpipe":2, "standpoint":2, "standstill":2, "stane":1, "stang":1, "stank":1, "stans":1, "stanchion":2, "standish":2, "stanford":2, "stanford-binet test":4, "stanhope":2, "stanhope":2, "staning":2, "stanislavski":4, "stanislavsky":4, "stanlee":2, "stanleigh":2, "stanley":2, "stanley falls":3, "stanley pool":3, "stanleyville":3, "stannate":2, "stannaries":3, "stannary":3, "stannic":2, "stannic sulphide":4, "stanniferous":4, "stannite":2, "stannous":2, "stannum":2, "stanton":2, "stanza":2, "stanzaed":2, "stanzaic":3, "staph":1, "staphylorrhaphic":5, "staphylorrhaphy":5, "staphylotomy":5, "staphylococci":5, "staphylococcus":5, "staphylomatic":5, "staphyloplastic":5, "staphyloplasty":5, "star":1, "star chamber":3, "star connection":4, "star of bethlehem":5, "star of david":4, "star sapphire":3, "star thistle":3, "star-apple":2, "star-of-bethlehem":3, "star-of-jerusalem":4, "star-spangled":2, "star-spangled banner":4, "star-studded":2, "starch":1, "starch-reduced":2, "starchily":3, "starchiness":3, "starchless":2, "starchlike":2, "starchy":2, "stare":1, "stark":1, "stark":1, "stark-naked":2, "stark-naked":2, "starkly":2, "starkness":2, "starkville":2, "starr":1, "starred":1, "stars-of-bethlehem":3, "stars-of-jerusalem":4, "start":1, "starter":2, "starting block":3, "starting gate":3, "starting grid":3, "starting price":3, "starting stalls":3, "startingly":3, "starve":1, "starvedly":2, "starveling":2, "starver":2, "starving":2, "starboard":2, "stardom":2, "stardust":2, "starfish":2, "starfishes":3, "starflower":3, "stargaze":2, "staring":2, "staringly":3, "starless":2, "starlessly":3, "starlessness":3, "starlet":2, "starlight":2, "starlighted":3, "starlike":2, "starling":2, "starnose":2, "starring":2, "starrier":3, "starriest":3, "starrily":3, "starriness":3, "starry":2, "starry-eyed":2, "startle":2, "startler":2, "startlingly":3, "starvation":3, "starwort":2, "stash":1, "stassfurtite":3, "stasimetric":4, "stasimon":3, "stassen":2, "stat":1, "state":1, "state capitalism":5, "state prison":3, "state services":4, "state socialism":4, "state trooper":3, "state's evidence":4, "states":1, "states general":4, "states-general":3, "statesboro":3, "statesman":2, "statesmanlike":3, "statesmanly":3, "statesmanship":3, "stateable":3, "statecraft":2, "statehood":2, "statehouse":2, "stateless":2, "statelessness":3, "statelier":3, "stateliest":3, "stateliness":3, "stately":2, "stately home":3, "statement":2, "statement of claim":4, "stateroom":2, "stateside":2, "statewide":2, "statampere":3, "statable":3, "stated":2, "statedly":3, "staten island":4, "statfarad":3, "stathenry":3, "static":2, "static line":3, "static tube":3, "statics":2, "stating":2, "statism":2, "statist":2, "statistician":4, "statical":3, "statically":4, "statohm":2, "statolatry":4, "statoblast":3, "statocyst":3, "statolith":3, "statolithic":4, "statoscope":3, "statue":2, "statue of liberty":6, "statued":2, "statueless":3, "statuelike":3, "stature":2, "statute":2, "statute book":3, "statute law":3, "statute mile":3, "statute of limitations":7, "statute of westminster":6, "statuary":3, "statuary":4, "statuesque":3, "statuette":3, "statutable":4, "statutorily":5, "statutory":4, "statutory declaration":8, "statutory rape":5, "statvolt":2, "staumeral":2, "staumrel":2, "staunch":1, "staunton":2, "staudinger":3, "staurolite":3, "staurolitic":4, "stauropegia":5, "stauropegion":5, "stauroscope":3, "stauroscopic":4, "stauroscopically":6, "stave":1, "staves":1, "stavesacre":3, "staveable":3, "stavable":3, "staving":2, "stavropol":3, "staw":1, "stay":1, "stay stitching":3, "stays":1, "stayable":3, "staybolt":2, "stayer":2, "staying":2, "staying power":4, "staysail":2, "staaries":3, "stabat mater":4, "stabile":2, "stability":4, "stabilivolt":4, "stabilise":3, "stabilised":3, "stabiliser":4, "stabilising":4, "stabilize":3, "stabilized":3, "stabilizer":4, "stabilizing":4, "stabiliser":4, "stabilization":5, "stabilizer":4, "stable":2, "stable door":3, "stable fly":3, "stableboy":3, "stableman":3, "stableness":3, "stabling":2, "stably":2, "stabroek":2, "stacey":2, "stadimeter":4, "stadia":3, "stadiometer":5, "stadium":3, "stadiums":3, "stagira":3, "stagirite":3, "stakhanovism":4, "stakhanovite":4, "stalactite":3, "stalactiform":4, "stalag":2, "stalagmite":3, "stalagmometric":5, "stalin":2, "stalin peak":3, "stalinsk":2, "stalinabad":4, "stalingrad":3, "stalinism":3, "stalinist":3, "stalinabad":4, "stalino":3, "stalinogrod":4, "stamen":2, "stamens":2, "stamineal":4, "stanislao":4, "stanislaww":5, "stanovoi":3, "stanovoi range":4, "stanovoy range":4, "stapes":2, "stapedez":3, "stapedial":4, "stapelia":4, "staple":2, "stapler":2, "stara zagora":5, "stasidia":4, "stasidion":4, "stasis":2, "statant":2, "stater":2, "station":2, "station house":3, "station wagon":4, "station-to-station":3, "stational":3, "stationaries":4, "stationary":4, "stationary engine":6, "stationary orbit":6, "stationary point":5, "stationary wave":5, "stationer":3, "stationers' company":6, "stationery":4, "stationmaster":4, "statistic":3, "statistics":3, "statistical":4, "statistical mechanics":7, "statistically":5, "stative":2, "statius":3, "stator":2, "status":2, "status quo":3, "status symbol":4, "stavanger":3, "stbd":1, "std":1, "std":1, "ste":1, "stead":1, "steadfast":2, "steadfastly":3, "steadfastness":3, "steadies":2, "steading":2, "steadier":3, "steadiest":3, "steadily":3, "steadiness":3, "steady":2, "steady state":3, "steady-going":3, "steady-state theory":5, "steadyingly":4, "steak":1, "steak tartare":3, "steakhouse":2, "steakhouses":3, "steal":1, "stealth":1, "stealthful":2, "stealthfully":3, "stealthier":3, "stealthiest":3, "stealthily":3, "stealthiness":3, "stealthless":2, "stealthy":2, "stealage":2, "stealability":5, "stealable":3, "stealer":2, "stealing":2, "steam":1, "steam iron":3, "steam jacket":3, "steam organ":3, "steam turbine":3, "steam whistle":3, "steam-boiler":2, "steam-engine":2, "steam-heated":2, "steam-jacketed":3, "steam-roller":2, "steam-shovel":2, "steam-turbine":2, "steamboat":2, "steamer":2, "steamerless":3, "steamie":2, "steamier":3, "steamiest":3, "steamily":3, "steaminess":3, "steamless":2, "steampipe":2, "steamroller":3, "steamship":2, "steamtight":2, "steamtightness":3, "steamy":2, "stearate":2, "stearin":2, "stearine":2, "stech":1, "stecher":2, "stechhelm":2, "stedfast":2, "stedfastly":3, "stedfastness":3, "steed":1, "steedless":2, "steedlike":2, "steek":1, "steel":1, "steel":1, "steel engraving":4, "steel guitar":3, "steel-die printing":3, "steele":1, "steels":1, "steelhead":2, "steeliness":3, "steelless":2, "steellike":2, "steelmaker":3, "steelmaking":3, "steelman":2, "steelwork":2, "steelworks":2, "steelworker":3, "steelyard":2, "steen":1, "steenbok":2, "steening":2, "steep":1, "steepen":2, "steeper":2, "steer":1, "steersman":2, "steerage":2, "steerageway":3, "steerer":2, "steering committee":5, "steering gear":3, "steering wheel":3, "steeve":1, "steeving":2, "steeple":2, "steepled":2, "steeplebush":3, "steeplechase":3, "steeplechaser":4, "steeplechasing":4, "steeplejack":3, "steepleless":3, "steeplelike":3, "stefansson":3, "stefana":3, "stefanie":3, "steffan":2, "steffens":2, "stegh":1, "stegodon":3, "stegodont":3, "stegomyia":4, "stegosaur":3, "stegosaurus":4, "stein":1, "stein":1, "steinbeck":2, "steinberg":2, "steinbok":2, "steinheil":2, "steinmetz":2, "steichen":2, "steier":2, "steiermark":3, "steiner":2, "steinitz":2, "stelazine":3, "stella":2, "stellar":2, "stellarator":4, "stellate":2, "stellately":3, "stellated":3, "stelliferous":4, "stellionate":3, "stellite":2, "stelliform":3, "stellify":3, "stellular":3, "stellularly":4, "stem":1, "stem-winder":2, "stemmed":1, "stemhead":2, "stemless":2, "stemlike":2, "stemma":2, "stemmer":2, "stemmeries":3, "stemmery":3, "stemming":2, "stemson":2, "stemware":2, "stench":1, "stenchful":2, "stencil":2, "stenciled":2, "stencilled":2, "stenciler":3, "stenciling":3, "stenciller":3, "stencilling":3, "stendhal":2, "stendhalian":4, "steno":2, "stenos":2, "stenochoric":4, "stenograph":3, "stenographic":4, "stenohaline":4, "stenopaeic":4, "stenopaic":4, "stenopetalous":5, "stenopeic":4, "stenophyllous":4, "stenothermal":4, "stenothermophile":5, "stenothermophilic":6, "stenotopic":4, "stenotropic":4, "stenotype":3, "stenotype":3, "stenotypic":4, "stenotypist":4, "stenotypy":4, "stentor":2, "stentor":2, "stentorian":4, "stentoriously":5, "step":1, "step-and-repeat":2, "step-in":1, "step-on":1, "step-parent":2, "step-up":1, "stephanite":3, "stephanie":3, "stephanotis":4, "steppe":1, "steppes":1, "stepbrother":3, "stepchild":2, "stepdame":2, "stepdance":2, "stepdancer":3, "stepdancing":3, "stepdaughter":3, "stepfather":3, "stepfatherly":4, "stephead":2, "stepladder":3, "stepless":2, "steplike":2, "stepmother":3, "stepparent":3, "steppenwolf":3, "stepper":2, "stepping":2, "stepping stone":3, "steppingstone":3, "stepsister":3, "stepson":2, "stepstool":2, "stepteria":4, "steptoe":2, "stepwise":2, "ster":1, "stere":1, "stern":1, "stern":1, "stern-chaser":2, "stern-wheeler":2, "sterne":1, "sternbergia":4, "sternforemost":3, "sternmost":2, "sternpost":2, "sternson":2, "sternward":2, "sternwards":2, "sternway":2, "sternwheel":2, "sternwheeler":3, "stercoraceous":4, "stercoricolous":5, "stercorous":3, "sterculiaceous":5, "stereognostic":5, "stereognosis":5, "stereography":5, "stereometry":5, "stereophony":5, "stereopter":4, "stereoptican":5, "stereoptician":5, "stereopticon":5, "stereoscopist":5, "stereotomist":5, "stereotomy":5, "stereotropism":5, "stereobate":4, "stereobatic":5, "stereocamera":6, "stereochemistry":6, "stereochemically":7, "stereochrome":4, "stereochromatic":6, "stereochromatically":8, "stereochromic":5, "stereochromically":7, "stereochromy":5, "stereogram":4, "stereograph":4, "stereographic":5, "stereographically":7, "stereoisomerism":7, "stereoisomer":6, "stereoisomeric":7, "stereomicroscopy":7, "stereomicroscope":6, "stereopair":4, "stereophonic":5, "stereophonically":7, "stereophotography":7, "stereophotograph":6, "stereoscope":4, "stereoscopic":5, "stereoscopical":6, "stereotactic":5, "stereotactically":7, "stereotaxis":5, "stereotomic":5, "stereotype":4, "stereotyped":4, "stereotyping":5, "stereotypy":5, "steric":2, "sterigma":3, "sterigmatic":4, "sterile":2, "sterilely":3, "sterical":3, "sterically":4, "sterilant":3, "sterilise":3, "sterilised":3, "sterilisable":5, "steriliser":4, "sterilising":4, "sterilize":3, "sterilized":3, "sterilizability":6, "sterilizable":5, "sterilizing":4, "sterilisation":5, "sterilization":5, "sterlet":2, "sterling":2, "sterling":2, "sterling area":5, "sterling silver":4, "sterlingly":3, "sterlingness":3, "sterlitamak":4, "sternal":2, "sternite":2, "sternitic":3, "sternocleidomastoid":6, "sternocostal":4, "sternum":2, "sternutation":4, "sternutative":4, "sternutator":4, "sternutatory":5, "steroid":2, "sterol":2, "sterope":3, "steropes":3, "stertor":2, "stertorous":3, "stertorously":4, "stertorousness":4, "stet":1, "stethoscope":3, "stethoscoped":3, "stethoscopic":4, "stethoscopical":5, "stethoscopically":6, "stetson":2, "stetson":2, "stetted":2, "stettin":2, "stetting":2, "stettinius":4, "steubenville":3, "steve":1, "stevinus":3, "stew":1, "stewed":1, "steward":2, "stewardess":3, "stewardship":3, "stewart":2, "stewart island":4, "stewbum":2, "stewpan":2, "stewpot":2, "stey":1, "steyr":1, "steapsin":3, "stearic":3, "stearic acid":5, "stearrhea":4, "stearrhoea":4, "stearin":3, "stearine":3, "stearoptene":4, "steatite":3, "steatitic":4, "steatolysis":5, "steatorrhea":5, "steatorrhoea":5, "steatopygic":5, "steatopyga":5, "steatopygia":6, "steatopygy":5, "stefan":2, "stefania":4, "steger":2, "stela":2, "stelae":2, "stelar":2, "stele":2, "stenographer":4, "stenographist":4, "stenography":4, "stenophagous":4, "stenosed":2, "stenosis":3, "stephania":4, "stephen":2, "stephens":2, "stephenson":3, "stephenville":3, "steradian":4, "stereography":5, "stereometry":5, "stereopsis":4, "stereopticon":5, "stereoscopy":5, "stereotomy":5, "stereotropism":5, "stereobate":4, "stereochemistry":6, "stereochrome":4, "stereochromy":5, "stereogram":4, "stereograph":4, "stereoisomerism":7, "stereoisomer":6, "stereophonic":5, "stereoscope":4, "stereoscopic":5, "stereoscopical":6, "stereospecific":6, "stereospecific catalyst":9, "stereospecific polymer":9, "stereotaxis":5, "stereotype":4, "stereotyped":4, "stereotypy":5, "stereovision":5, "steric":2, "sterigma":3, "sterigmata":4, "sterility":4, "sterical":3, "stethometry":4, "stethoscopist":4, "stethoscopy":4, "steven":2, "stevens":2, "stevensgraph":3, "stevenage":3, "stevengraph":3, "stevenson":3, "stevedore":3, "stevedore's knot":4, "stevedored":3, "stevedoring":4, "stevin":2, "stg":1, "stge":1, "sth":1, "sthenelus":3, "sthenic":2, "sthenias":3, "sthenius":3, "sthenia":3, "stheno":2, "sti":1, "stibine":2, "stibial":3, "stibium":3, "stibnite":2, "stich":1, "stichic":2, "stichometric":4, "stichometrically":6, "stichomythic":4, "stichomythia":5, "stichomythstichous":5, "stick":1, "stick aroundor about":5, "stick insect":3, "stick together":4, "stick-to-it-iveness":2, "stickability":5, "stickable":3, "stickboat":2, "sticker":2, "sticket":2, "stickful":2, "sticking":2, "sticking plaster":4, "stickit":2, "stickier":3, "stickiest":3, "stickily":3, "stickiness":3, "stickjaw":2, "stickle":2, "stickler":2, "stickless":2, "stickleback":3, "sticklike":2, "stickney":2, "stickout":2, "stickpin":2, "stickseed":2, "sticktight":2, "stickum":2, "stickup":2, "stickweed":2, "stickwork":2, "sticky":2, "sticky end":3, "sticky wicket":4, "sticky willie":4, "sticky-fingered":3, "stickybeak":3, "stieglitz":2, "stiegel":2, "stiff":1, "stiffen":2, "stiffish":2, "stiffly":2, "stiffneckedly":4, "stiffneckedness":4, "stiffness":2, "stigma":2, "stigmasterol":4, "stigmatic":3, "stigmatical":4, "stigmatise":3, "stigmatism":3, "stigmatiser":4, "stigmatize":3, "stigmatized":3, "stigmatizer":4, "stigmatizing":4, "stigmatization":5, "stigmatypy":4, "stijl":1, "stile":1, "still":1, "still":1, "still-hunter":2, "stillbirth":2, "stillborn":2, "stiller":2, "stillson wrench":3, "stillwater":3, "stilt":1, "stilted":2, "stilbene":2, "stilbestrol":3, "stilbite":2, "stilboestrol":3, "stilicho":3, "stillage":2, "stillicide":3, "stilliform":3, "stilly":2, "stilton":2, "stilwell":2, "stime":1, "stimson":2, "stimulant":3, "stimulate":3, "stimulated":4, "stimulater":4, "stimulating":4, "stimulatingly":5, "stimulability":6, "stimulable":4, "stimulation":4, "stimulative":4, "stimulator":4, "stimuli":3, "stimulus":3, "sting":1, "stingaree":3, "stinger":2, "stinging":2, "stinging hair":3, "stinging nettle":4, "stingingly":3, "stingingness":3, "stingless":2, "stingray":2, "stingy":2, "stink":1, "stinkaroo":3, "stinker":2, "stinkeroo":3, "stinkhorn":2, "stinking":2, "stinking badger":4, "stinking iris":4, "stinking smut":3, "stinko":2, "stinkpot":2, "stinkstone":2, "stinkweed":2, "stinkwood":2, "stint":1, "stintedly":3, "stintedness":3, "stinter":2, "stintingly":3, "stintless":2, "stingier":3, "stingiest":3, "stingily":3, "stinginess":3, "stingo":2, "stingy":2, "stinnes":2, "stinnett":2, "stipe":1, "stipitate":3, "stipitiform":4, "stipple":2, "stippler":2, "stippling":2, "stipule":2, "stipular":3, "stipulate":3, "stipulated":4, "stipulating":4, "stipulation":4, "stipulator":4, "stipulatory":5, "stipuliform":4, "stir":1, "stir":1, "stirk":1, "stirps":1, "stirabout":3, "stirless":2, "stirlessly":3, "stirlessness":3, "stirling":2, "stirling's formula":5, "stirlingshire":3, "stirpes":2, "stirpiculture":4, "stirpicultural":5, "stirpiculturist":5, "stirrable":3, "stirring":2, "stirringly":3, "stirrup":2, "stirrup bone":3, "stirrup cup":3, "stirrup pump":3, "stirrupless":3, "stirruplike":3, "stitch":1, "stitcher":2, "stitching":2, "stitchlike":2, "stitchwort":2, "stithied":2, "stithies":2, "stithy":2, "stithying":3, "stiborius":4, "sticharia":4, "sticharion":4, "stichometry":4, "stichomythy":4, "stichomythia":5, "stifle":2, "stifler":2, "stifling":2, "stiletto":3, "stilettoed":3, "stilettoing":4, "stilyaga":3, "stimied":2, "stimy":2, "stimying":3, "stipel":2, "stipellate":3, "stipend":2, "stipendless":3, "stipendiaries":5, "stipendiary":5, "stipes":2, "stipo":2, "stiria":3, "stiritis":3, "stiver":2, "stk":1, "stoat":1, "stoating":2, "stob":1, "stock":1, "stock":1, "stock certificate":5, "stock company":4, "stock exchange":3, "stock market":3, "stock saddle":3, "stocks":1, "stockade":2, "stockaded":3, "stockading":3, "stockateer":3, "stockbreeder":3, "stockbroker":3, "stockbroker belt":4, "stockbrokerage":4, "stocker":2, "stockfish":2, "stockhausen":3, "stockholder":3, "stockholm":2, "stockhorn":2, "stocking":2, "stocking cap":3, "stocking filler":4, "stocking frame":3, "stocking mask":3, "stocking stitch":3, "stockinged":2, "stockingless":3, "stockish":2, "stockishly":3, "stockishness":3, "stockist":2, "stockier":3, "stockiest":3, "stockily":3, "stockiness":3, "stockinet":3, "stockjobber":3, "stockless":2, "stocklike":2, "stockman":2, "stockpile":2, "stockpiled":2, "stockpiler":3, "stockpiling":3, "stockport":2, "stockpot":2, "stockrider":3, "stockroom":2, "stocktaking":3, "stockton":2, "stockton-on-tees":2, "stockwood":2, "stocky":2, "stockyard":2, "stoccado":3, "stoccata":3, "stodge":1, "stodging":2, "stodgier":3, "stodgiest":3, "stodgy":2, "stodoechiometry":5, "stoechiology":5, "stoechiometry":5, "stoechiometric":5, "stoechiometrically":7, "stoit":1, "stoicheiology":5, "stoicheiometry":5, "stoicheiometric":5, "stoicheiometrically":7, "stoichiology":5, "stoichiometry":5, "stoichiometric":5, "stoichiometrical":6, "stoichiometrically":7, "stoke":1, "stoke-upon-trent":2, "stokes":1, "stokes":1, "stokehold":2, "stokehole":2, "stokely":2, "stoker":2, "stoking":2, "stol":1, "stole":1, "stolen":2, "stolid":2, "stollen":2, "stomp":1, "stomper":2, "stompingly":3, "stomach":2, "stomach pump":3, "stomach worm":3, "stomach-achy":3, "stomachache":3, "stomacher":3, "stomachy":3, "stomack":2, "stomatal":3, "stomatous":3, "stomatoplasty":5, "stomatopod":4, "stone":1, "stone":1, "stone boiling":3, "stone bramble":3, "stone curlew":3, "stone marten":3, "stone parsley":3, "stone roller":3, "stone-lily":2, "stoned":1, "stones":1, "stoneable":3, "stoneblindness":3, "stoneboat":2, "stonecast":2, "stonecat":2, "stonechat":2, "stonecrop":2, "stonecutter":3, "stonecutting":3, "stonefish":2, "stonefishes":3, "stonefly":2, "stoneground":2, "stoneham":2, "stonehenge":2, "stoneless":2, "stonelessness":3, "stonelike":2, "stonemason":3, "stonemasonry":4, "stoneroller":3, "stonewall":2, "stonewalling":3, "stoneware":2, "stonework":2, "stoneworker":3, "stonewort":2, "stonk":1, "stonker":2, "stonkered":2, "stonable":3, "stoner":2, "stoney":2, "stoning":2, "stonier":3, "stoniest":3, "stonily":3, "stoniness":3, "stony":2, "stony coral":4, "stony-broke":2, "stony-faced":2, "stony-hearted":3, "stony-heartedly":4, "stony-heartedness":4, "stood":1, "stooge":1, "stooging":2, "stook":1, "stooker":2, "stool":1, "stool pigeon":3, "stoop":1, "stooper":2, "stoopingly":3, "stop":1, "stop chorus":3, "stop order":3, "stop payment":3, "stop-go":1, "stope":1, "stopes":1, "stopped":1, "stops":1, "stopt":1, "stopcock":2, "stoper":2, "stopgap":2, "stoping":2, "stopless":2, "stoplessness":3, "stoplight":2, "stopover":3, "stoppage":2, "stoppard":2, "stoppability":5, "stoppable":3, "stoppableness":4, "stoppably":3, "stopper":2, "stopperless":3, "stopping":2, "stopwatch":2, "stopwater":3, "store":1, "stores":1, "storefront":2, "storehouse":2, "storehouses":3, "storekeeper":3, "storekeepinged":3, "storeroom":2, "stork":1, "storksbill":2, "storklike":2, "storm":1, "storm":1, "storm centre":3, "storm collar":3, "storm lantern":3, "storm petrel":3, "storm warning":3, "storm window":3, "storm-trooper":2, "stormbound":2, "stormer":2, "stormier":3, "stormiest":3, "stormless":2, "stormlessly":3, "stormlessness":3, "stormlike":2, "stormproof":2, "stormtide":2, "stormy":2, "stormy petrel":4, "storrs":1, "storage":2, "storage battery":5, "storage capacity":6, "storage device":4, "storage heater":4, "storability":5, "storable":3, "storer":2, "storing":2, "storiated":4, "stornoway":3, "storthing":2, "storting":2, "stoss":1, "stoss":1, "stot":1, "stotter":2, "stoughton":2, "stound":1, "stoup":1, "stour":1, "stourbridge":2, "stoush":1, "stout":1, "stout":1, "stout-hearted":2, "stout-heartedly":3, "stout-heartedness":3, "stouthearted":3, "stoutish":2, "stoutly":2, "stoutness":2, "stove":1, "stove enamel":4, "stovepipe":2, "stovepipes":2, "stover":2, "stoving":2, "stow":1, "stow":1, "stowe":1, "stownlins":2, "stowp":1, "stowage":2, "stowaway":3, "stoa":2, "stoai":2, "stoas":2, "stochastic":3, "stochastically":5, "stogey":2, "stogy":2, "stoic":2, "stoic":2, "stoical":3, "stoicism":3, "stoicism":3, "stokesia":4, "stokowski":3, "stola":2, "stolen":2, "stolidity":4, "stolon":2, "stolonate":3, "stolonic":3, "stoloniferously":6, "stolonization":5, "stoloniferous":5, "stoma":2, "stomachic":3, "stomachical":4, "stomachically":5, "stomate":2, "stomatic":3, "stomata":3, "stomatal":3, "stomatitic":4, "stomatitis":4, "stomatologist":5, "stomatology":5, "stomatotomy":5, "stomatologic":5, "stomatopod":4, "stomodaea":4, "stomodaeum":4, "stomode":3, "stomodea":4, "stomodeum":4, "storax":2, "store b":3, "storey":2, "storey house":3, "storeyed":2, "storied":2, "storiette":3, "story":2, "story":2, "story line":3, "storyboard":3, "storybook":3, "storying":3, "storyteller":4, "storytelling":4, "storyville":3, "stoting":2, "stotinka":3, "stotious":2, "stover":2, "stp":1, "str":1, "straddle":2, "straddler":2, "straddlingly":3, "stradivarius":5, "strafe":1, "strafer":2, "strafford":2, "strafing":2, "straggle":2, "stragglier":3, "straggliest":3, "straight and narrow":4, "straight angle":3, "straight razor":3, "straight ticket":3, "straight-from-the-shoulder":2, "straight-lacedly":3, "straightaway":3, "straightedge":2, "straighten":2, "straighten out":3, "straighten up":3, "straightener":3, "straightforward":3, "straightforwards":3, "straightforwardly":4, "straightforwardness":4, "straightjacket":3, "straightly":2, "straightness":2, "straightway":2, "strain":1, "strain hardening":4, "strainedness":2, "strainer":2, "straining piece":3, "strainingly":3, "strainless":2, "strainlessly":3, "strait":1, "strait-lacedly":3, "strait-lacedness":3, "straits settlements":4, "straiten":2, "straitjacket":3, "straitlaced":2, "straitlacing":3, "straitly":2, "straitness":2, "strake":1, "stralsund":2, "strand":1, "strand":1, "strandloper":3, "strange":1, "strange particle":4, "strangely":2, "strangeness":2, "stranger":2, "strangest":2, "stranger":2, "stranger's gallery":5, "strangerlike":3, "strangle":2, "strangles":2, "stranglehold":3, "strangulate":3, "strangulated":4, "strangulating":4, "strangulable":4, "strangulation":4, "strangulative":4, "strangulatory":5, "strangury":3, "stranraer":2, "strap":1, "straphanger":3, "straphanging":3, "strapless":2, "straplike":2, "strappable":3, "strappado":3, "strapper":2, "strapping":2, "strass":1, "strassburg":2, "strasberg":2, "strasbourg":2, "strath":1, "strathclyde":2, "strathspey":2, "stratagem":3, "stratagemical":5, "stratagemically":6, "strategist":3, "strategy":3, "stratford-on-avon":3, "stratford-upon-avon":4, "stratified":3, "stratification":5, "stratificational grammar":8, "stratiform":3, "stratiformis":4, "stratify":3, "stratifying":4, "stratocrat":3, "stratocratic":4, "stratocumulus":5, "stratopause":3, "stratosphere":3, "stratospheric":4, "stratovision":4, "stratton":2, "straus":1, "strauss":1, "straw":1, "straw-colored":2, "strawberry":3, "strawberry blonde":4, "strawberry bush":4, "strawberry mark":4, "strawberry tomato":6, "strawberry tree":4, "strawberry-raspberry":5, "strawboard":2, "strawflower":3, "strawhat":2, "strawless":2, "strawlike":2, "strawworm":2, "stray":1, "strays":1, "strayer":2, "strabismus":3, "strabo":2, "strabotomy":4, "strachey":2, "stradella":3, "stradivari":4, "stramineously":5, "stramonium":4, "strata":2, "stratal":2, "strategic":3, "strategics":3, "strategical":4, "strategos":3, "strategus":3, "straticulate":4, "straticulation":5, "stratigrapher":4, "stratigraphy":4, "stratocracy":4, "stratous":2, "stratocumulus":5, "stratum":2, "stratus":2, "stravaig":2, "stravaiger":3, "stravinsky":3, "streak":1, "streakedly":2, "streakedness":2, "streaker":2, "streakier":3, "streakiest":3, "streakily":3, "streakiness":3, "streaklike":2, "streaky":2, "stream":1, "stream of consciousness":5, "stream-of-consciousness":3, "streamer":2, "streaming":2, "streamingly":3, "streamier":3, "streamiest":3, "streaminess":3, "streamless":2, "streamlet":2, "streamlike":2, "streamline":2, "streamline flow":3, "streamlined":2, "streamliner":3, "streamlining":3, "streamway":2, "streamy":2, "streator":2, "streek":1, "street":1, "street arab":3, "street piano":4, "streetcar":2, "streetlamp":2, "streetless":2, "streetlight":2, "streetlike":2, "streetwalker":3, "streetwalking":3, "streisand":2, "strengthen":2, "strengthener":3, "strengtheningly":4, "strenuosity":5, "strenuous":3, "strenuously":4, "strenuousness":4, "strep":1, "strepitant":3, "strepitous":3, "streptococcal":4, "streptococci":4, "streptococcus":4, "streptodornase":4, "streptokinase":4, "streptomyces":4, "streptomycin":4, "streptothricin":4, "stress":1, "stressful":2, "stressfully":3, "stresslessness":3, "stretch":1, "stretchability":5, "stretchable":3, "stretcher":2, "stretcher-bearer":3, "stretchier":3, "stretchiest":3, "stretchy":2, "stretford":2, "stretti":2, "stretto":2, "streusel":2, "streuselkuchen":4, "strew":1, "strewn":1, "strewth":1, "strega":2, "strelitzia":4, "stresemann":3, "strick":1, "stricken":2, "strickland":2, "strickle":2, "strict":1, "strictly":2, "striction":2, "stricture":2, "stride":1, "strider":2, "stridingly":3, "stridulant":3, "stridulate":3, "stridulated":4, "stridulating":4, "stridulation":4, "stridulatory":5, "stridulous":3, "stridulously":4, "stridulousness":4, "strife":1, "strifeful":2, "strifeless":2, "strigil":2, "strigilate":3, "strigiform":3, "strike":1, "strikeboard":2, "strikebound":2, "strikebreaker":3, "strikebreaking":3, "strikeover":3, "striker":2, "striking":2, "striking circle":4, "strindberg":2, "strine":1, "string":1, "string along":3, "string orchestra":4, "string quartet":3, "stringed instrument":4, "stringboard":2, "stringcourse":2, "stringer":2, "stringhalt":2, "stringhalted":3, "stringhaltedness":4, "stringhalty":3, "stringholder":3, "stringing":2, "stringiness":3, "stringless":2, "stringlike":2, "stringpiece":2, "stringy":2, "stringy-bark":2, "stringent":2, "stringently":3, "stringendo":3, "strip":1, "strip cartoon":3, "strip cropping":3, "strip lighting":3, "strip mining":3, "strip poker":3, "stripe":1, "striped":1, "stripeless":2, "striper":2, "striping":2, "stripier":3, "stripiest":3, "striplight":2, "stripling":2, "stripper":2, "stripping":2, "striptease":2, "stripteaser":3, "stripteuse":2, "stripy":2, "strive":1, "striven":2, "striver":2, "strivingly":3, "strix":1, "stria":2, "striate":2, "striated":3, "striating":3, "striation":3, "stridence":2, "strident":2, "stridency":3, "stridor":2, "striges":2, "strigose":2, "strimon":2, "strobe":1, "strobe lighting":3, "strobile":2, "strobilaceous":4, "strobiloid":3, "strode":1, "stroessner":2, "stroganoff":3, "stroke":1, "stroking":2, "stroll":1, "stroller":2, "strome":1, "stromboli":3, "stroming":2, "strong":1, "strong interaction":5, "strong waters":3, "strong-minded":2, "strong-mindedness":3, "strongsville":2, "strongbark":2, "strongbox":2, "stronghold":2, "strongish":2, "strongman":2, "strongness":2, "strongpoint":2, "strongroom":2, "strongyl":2, "strongyle":2, "strongylosis":4, "strontia":3, "strontian":3, "strontianite":4, "strontium":3, "strontium monoxide":6, "strontium unit":5, "strook":1, "strop":1, "strophic":2, "strophical":3, "strophically":4, "strophoid":2, "strophulus":3, "strops":1, "stroptruma":2, "stropping":2, "stroppy":2, "stroud":1, "stroudsburg":2, "strove":1, "strow":1, "strowing":2, "stroy":1, "strozza":2, "strozzi":2, "strobic":2, "strobile":2, "strobila":3, "strobilaceous":4, "strobilation":4, "strobilus":3, "stroboscopy":4, "stroboradiograph":6, "stroboscope":3, "stroboscopic":4, "strobotron":3, "stroganoff":3, "stroheim":2, "stroma":2, "stromatic":3, "stromatolite":4, "stromateid":4, "stromateoid":4, "strophanthin":3, "strophanthus":3, "strophe":2, "strophius":3, "strother":2, "struck":1, "struck measure":3, "strucken":2, "structure":2, "structured":2, "structurelessness":4, "structural":3, "structural formula":6, "structural linguistics":6, "structural psychology":7, "structural steel":4, "structuralism":4, "structuralist":4, "structurally":4, "structuring":3, "struggle":2, "struggle for existence":6, "struggler":2, "strugglingly":3, "strum":1, "strummer":2, "strumming":2, "strumpet":2, "strumpetlike":3, "strung":1, "strunt":1, "strut":1, "struthers":2, "strutted":2, "strutter":2, "strutting":2, "struttingly":3, "strudel":2, "struma":2, "struma":2, "strumectomy":4, "strumous":2, "strumousness":3, "struthious":3, "struve":2, "strychnic":2, "strychnine":2, "strychninism":3, "strychnia":3, "strymon":2, "stu":1, "stub":1, "stub axle":3, "stubbs":1, "stubbed":2, "stubber":2, "stubbing":2, "stubbiness":3, "stubble":2, "stubbled":2, "stubbly":2, "stubborn":2, "stubbornly":3, "stubbornness":3, "stubby":2, "stuck":1, "stucco":2, "stuccoed":2, "stuccoing":3, "stuccowork":3, "stuccoworker":4, "stud":1, "stud poker":3, "studbook":2, "studdie":2, "studding":2, "studdingsail":3, "studfish":2, "studfishes":3, "studhorse":2, "studied":2, "studiedly":3, "studiedness":3, "studies":2, "studiable":4, "studier":3, "studwork":2, "study":2, "studying":3, "stuff":1, "stuffed":1, "stuffing":2, "stuffing and stripping":5, "stuffing box":3, "stuffing nut":3, "stuffily":3, "stuffiness":3, "stuffy":2, "stuiver":2, "stull":1, "stultified":3, "stultify":3, "stultifying":4, "stum":1, "stump":1, "stumpage":2, "stumper":2, "stumpier":3, "stumpiest":3, "stumpily":3, "stumpiness":3, "stumpknocker":3, "stumpless":2, "stumplike":2, "stumpy":2, "stumble":2, "stumbler":2, "stumbling block":3, "stumming":2, "stun":1, "stung":1, "stunk":1, "stunt":1, "stuntingly":3, "stunty":2, "stunner":2, "stunning":2, "stunningly":3, "stuns'l":2, "stunsail":2, "stupe":1, "sturmabteilung":4, "sturt":1, "sturt":1, "sturty":2, "sturdied":2, "sturdier":3, "sturdiest":3, "sturdily":3, "sturdiness":3, "sturdy":2, "sturgeon":2, "sturmer":2, "stuttgart":2, "stutter":2, "stuyvesant":3, "stuart":2, "student":2, "student adviser":5, "student's t distribution":7, "studentless":3, "studentlike":3, "studentship":3, "studio":3, "studio couch":4, "studious":3, "studiously":4, "studiousness":4, "stuka":2, "stumer":2, "stupa":2, "stupendous":3, "stupendously":4, "stupendousness":4, "stupefaction":4, "stupefactive":4, "stupefacient":4, "stupefacient":5, "stupefied":3, "stupefy":3, "stupefying":4, "stupid":2, "stupidity":4, "stupidly":3, "stupidness":3, "stupor":2, "stuporous":3, "sty":1, "stye":1, "stygian":3, "style":1, "stylebook":2, "styleless":2, "stylelessness":3, "styling":2, "stylise":2, "stylised":2, "stylish":2, "stylist":2, "styliser":3, "stylising":3, "stylize":2, "stylized":2, "stylizer":3, "stylizing":3, "stylization":4, "stymphalides":4, "stymphalus":3, "stypsis":2, "styptic":2, "styptic pencil":4, "styptical":3, "styr":1, "styria":3, "styx":1, "stying":2, "stylar":2, "stylet":2, "stylistic":3, "stylistical":4, "stylistically":5, "stylite":2, "stylitic":3, "styliform":3, "stylography":4, "styloid":2, "stylops":2, "stylobate":3, "stylograph":3, "stylographic":4, "stylographical":5, "stylographically":6, "stylohyoid":4, "stylohyoidean":6, "stylohyoideus":6, "stylolite":3, "stylolitic":4, "stylonichia":5, "stylopise":3, "stylopize":3, "stylopodia":5, "stylopodium":5, "stylostixis":4, "stylus":2, "stymie":2, "stymied":2, "stymy":2, "stymying":3, "styrax":2, "styracaceous":4, "styrene":2, "stphane":3, "stfler":3, "stbark":2, "suave":1, "suaveness":2, "suavity":3, "suasion":2, "suasive":2, "suasiveness":3, "suasory":3, "sub":1, "sub judice":4, "sub rosa":3, "sub-andean":3, "sub-atlantic":3, "sub-carpathian":4, "sub-christian":2, "sub-himalayan":4, "sub-level":2, "sub-machine-gun":2, "sub-pontine":2, "sub-pyrenean":4, "subj":1, "subst":1, "subabbot":3, "subabsolute":4, "subacademic":5, "subacademical":6, "subaccount":3, "subacetabular":6, "subacetate":4, "subacid":3, "subacidly":4, "subacrid":3, "subacrodrome":4, "subadditive":4, "subadjacent":4, "subadministrate":5, "subadministrated":6, "subadministrating":6, "subadministration":6, "subadministrative":6, "subadministrator":6, "subadvocate":4, "subaerate":3, "subaerated":4, "subaerating":4, "subaeration":4, "subaerial":4, "subaffluence":4, "subaffluent":4, "subage":2, "subaggregate":4, "subaggregation":5, "subaggregative":5, "subalgebraic":5, "subalgebraist":5, "subalgebraical":6, "subalimentation":6, "suballiance":4, "subalmoner":4, "subalpine":3, "subaltern":3, "subalternate":4, "subalternation":5, "subalternity":5, "subantarctic":4, "subanconeal":5, "subangular":4, "subangularity":6, "subangulate":4, "subangulated":5, "subangulation":5, "subantique":3, "subantiquity":5, "subapostolic":5, "subapparent":4, "subappearance":4, "subappressed":3, "subapprobation":5, "subapprobative":5, "subapprobatory":6, "subaqua":3, "subarctic":3, "subarborescence":5, "subarborescent":5, "subarboreal":5, "subarboreous":5, "subarchesporial":6, "subarchitect":4, "subarcuate":4, "subarcuated":5, "subarea":4, "subareal":4, "subarid":3, "subarmor":3, "subartesian":4, "subarticulate":5, "subarticulation":6, "subarticulative":6, "subarticle":4, "subarytenoid":5, "subarytenoidal":6, "subascending":4, "subassemblage":4, "subassembly":4, "subassociation":6, "subassociational":7, "subassociative":6, "subastragalar":5, "subastral":3, "subastringent":4, "subattenuate":5, "subattenuated":6, "subattenuation":6, "subattorney":4, "subattorneyship":5, "subaudibility":6, "subaudible":4, "subaudibleness":5, "subaudition":4, "subauditor":4, "subaural":3, "subauricular":5, "subauriculate":5, "subautomatic":5, "subautomatically":7, "subaverage":4, "subaxile":3, "subaxillary":5, "subaxial":4, "subability":5, "subacidity":5, "subacidulous":5, "subacridity":5, "subacrodromous":5, "subacromial":5, "subacute":3, "subacutely":4, "subacuminate":5, "subacumination":6, "subadult":3, "subagent":3, "subagency":4, "subalate":3, "subalated":4, "subalary":4, "subanal":3, "subaquatic":4, "subaqueous":4, "subarachnoid":4, "subarousal":4, "subatomic":4, "subbailie":3, "subbailiff":3, "subbailiwick":4, "subballast":3, "subband":2, "subbank":2, "subbase":2, "subbasement":3, "subbass":2, "subbasal":3, "subbasaltic":4, "subbeadle":3, "subbing":2, "subbias":3, "subbranch":2, "subbranchial":4, "subbreed":2, "subbrigade":3, "subbroker":3, "subbronchial":4, "subbromid":3, "subbromide":3, "subbureau":3, "subcaecal":3, "subcalcareous":5, "subcaliber":4, "subcalibre":4, "subcallosal":4, "subcampanulate":5, "subcancellate":4, "subcancellous":4, "subcandid":3, "subcapsular":4, "subcaptain":3, "subcaptaincy":4, "subcaptainship":4, "subcarbide":3, "subcarbonaceous":5, "subcardinal":4, "subcarinate":4, "subcarinated":5, "subcartilaginous":6, "subcase":2, "subcash":2, "subcashier":3, "subcast":2, "subcaste":2, "subcasing":3, "subcategory":5, "subcause":2, "subcavity":4, "subcasino":4, "subcell":2, "subcentrally":4, "subception":3, "subcerebellar":5, "subcerebral":4, "subcelestial":4, "subcelestial":5, "subchairman":3, "subchamberer":4, "subchancel":3, "subchapter":3, "subchaser":3, "subcheliform":4, "subchief":2, "subchloride":3, "subchondral":3, "subchorioid":4, "subchorioidal":5, "subchorionic":5, "subchoroid":3, "subchoroidal":4, "subchronic":3, "subchronical":4, "subcinctoria":5, "subcinctorium":5, "subcircuit":3, "subcircular":4, "subcircularity":6, "subcities":3, "subcity":3, "subcivilized":4, "subcivilization":6, "subclan":2, "subclass":2, "subclause":2, "subclausal":3, "subclavate":3, "subclavicular":5, "subclavian":4, "subclavii":4, "subclavius":4, "subclerk":2, "subclerkship":3, "subclinical":4, "subclique":2, "subclimate":3, "subclimatic":4, "subclimax":3, "subcollector":4, "subcollectorship":5, "subcollegiate":4, "subcollegial":5, "subcommander":4, "subcommandership":5, "subcommendatory":6, "subcommended":4, "subcommendation":5, "subcommissaries":5, "subcommissarial":6, "subcommissary":5, "subcommissaryship":6, "subcommission":4, "subcommissioner":5, "subcommissionership":6, "subcompensate":4, "subcompensated":5, "subcompensating":5, "subcompensation":5, "subcompensational":6, "subcompensative":5, "subcompensatory":6, "subcomplete":3, "subcompletion":4, "subcompressed":3, "subconcave":3, "subconcavity":5, "subconcealed":3, "subconcession":4, "subconcessionaire":5, "subconcessionaries":6, "subconcessionary":6, "subconcessioner":5, "subconchoidal":4, "subconference":4, "subconferential":5, "subconformability":7, "subconformable":5, "subconformableness":6, "subconic":3, "subconical":4, "subconjunctive":4, "subconjunctival":5, "subconnate":3, "subconnation":4, "subconnect":3, "subconnectedly":5, "subconnivent":4, "subconscience":3, "subconscious":3, "subconsciously":4, "subconsciousness":4, "subconservator":5, "subconsideration":6, "subconstellation":5, "subconsul":3, "subconsulship":4, "subconsular":4, "subcontained":3, "subcontest":3, "subcontiguous":5, "subcontinent":4, "subcontinental":5, "subcontract":3, "subcontractor":4, "subcontraoctave":5, "subcontrary":4, "subcontrol":3, "subcontrolled":3, "subcontrolling":4, "subconvex":3, "subconvolute":4, "subcool":2, "subcoracoid":4, "subcordate":3, "subcordiform":4, "subcorneous":4, "subcornual":4, "subcorporation":5, "subcortex":3, "subcortical":4, "subcortically":5, "subcortices":4, "subcosta":3, "subcostae":3, "subcostal":3, "subcouncil":3, "subcover":3, "subcolumnar":4, "subcoriaceous":5, "subcorymbose":4, "subcranial":4, "subcreek":2, "subcrepitation":5, "subcrest":2, "subcreative":4, "subcrenate":3, "subcrenated":4, "subcrescentic":4, "subcriminal":4, "subcritical":4, "subcrossing":3, "subcruciform":4, "subcrystalline":4, "subcultrate":3, "subcultrated":4, "subculture":3, "subcultural":4, "subculturally":5, "subcurrent":3, "subcubic":3, "subcubical":4, "subcuboid":3, "subcuboidal":4, "subcuneus":4, "subcurate":3, "subcurator":4, "subcuratorship":5, "subcuratorial":6, "subcutaneous":5, "subcutaneously":6, "subcutaneousness":6, "subcuticular":5, "subcyaneous":5, "subcyanid":4, "subcyanide":4, "subcylindric":4, "subcylindrical":5, "subdate":2, "subdated":3, "subdating":3, "subdatary":4, "subdealer":3, "subdeacon":3, "subdeaconate":4, "subdebutante":4, "subdefinition":5, "subdelegate":4, "subdelegated":5, "subdelegating":5, "subdelegation":5, "subdeltaic":4, "subdeltoid":3, "subdeltoidal":4, "subdemonstrate":4, "subdemonstrated":5, "subdemonstrating":5, "subdemonstration":5, "subdendroid":3, "subdendroidal":4, "subdentate":3, "subdentated":4, "subdentation":4, "subdenticulate":5, "subdenticulated":6, "subdeputy":4, "subdermal":3, "subdermic":3, "subdevil":3, "subdeducible":5, "subdeliria":5, "subdelirium":5, "subdeliriums":5, "subdepartment":4, "subdepartmental":5, "subdeposit":4, "subdepository":6, "subdepot":3, "subdepressed":3, "subderivative":5, "subdie":2, "subdiscoid":3, "subdiscoidal":4, "subdistich":3, "subdistichous":4, "subdistinction":4, "subdistinctive":4, "subdistrict":3, "subdiaconal":5, "subdiaconate":5, "subdialect":4, "subdialectal":5, "subdiapason":5, "subdiapasonic":6, "subdiaphragmatic":6, "subdiaphragmatically":8, "subdichotomy":5, "subdilated":4, "subdirector":4, "subdirectorship":5, "subdivide":3, "subdivided":4, "subdividing":4, "subdivine":3, "subdivision":4, "subdoctor":3, "subdolichocephalism":7, "subdolichocephalous":7, "subdolichocephaly":7, "subdolichocephalic":7, "subdominant":4, "subdorsal":3, "subdruid":3, "subduce":2, "subduced":2, "subduct":2, "subducing":3, "subduction":3, "subdue":2, "subdued":2, "subduedly":3, "subduedness":3, "subdual":3, "subduable":4, "subduableness":5, "subduably":4, "subduer":3, "subduing":3, "subduingly":4, "subecho":3, "subechoes":3, "subectodermal":5, "subectodermic":5, "subedit":3, "subeditor":4, "subeditorial":6, "subeffective":4, "subelement":4, "subelemental":5, "subelliptic":4, "subelliptical":5, "subendorse":3, "subendorsed":3, "subendorsement":4, "subendorsing":4, "subendocardial":6, "subendothelial":6, "subengineer":4, "subentire":3, "subentitle":4, "subepiglottal":5, "subepiglottic":5, "subepithelial":6, "subepoch":3, "subescheator":4, "subessential":4, "subestuarine":5, "subevergreen":4, "subexaminer":5, "subexecutor":5, "subextensibility":7, "subextensible":5, "subexternal":4, "subelection":4, "subelongate":4, "subelongated":5, "subemarginate":5, "subemarginated":6, "subequal":3, "subequality":5, "subequatorial":6, "subequilateral":6, "suberect":3, "subesophageal":6, "subface":2, "subfactor":3, "subfactory":4, "subfalcate":3, "subfalcial":4, "subfalciform":4, "subfamily":4, "subfascial":4, "subfastigiate":5, "subfastigiated":6, "subfacies":4, "subferryman":4, "subfestive":3, "subfebrile":3, "subfield":2, "subfigure":3, "subfissure":3, "subfibrous":3, "subflexuose":4, "subflexuous":4, "subfloor":2, "subflooring":3, "subflora":3, "subflush":2, "subforeman":3, "subforemanship":4, "subform":2, "subformative":4, "subformation":4, "subfossil":3, "subfossorial":5, "subfoliar":4, "subfoliate":4, "subfoliation":5, "subfraction":3, "subfractional":4, "subfractionary":5, "subframe":2, "subfreezing":3, "subfreshman":3, "subfrontal":3, "subfulgent":3, "subfunction":3, "subfunctional":4, "subfusc":2, "subfumigation":5, "subfusiform":4, "subganoid":3, "subgape":2, "subgaped":2, "subgaping":3, "subgens":2, "subgenera":4, "subgenital":4, "subgentes":3, "subgerminal":4, "subgelatinization":7, "subgelatinoid":5, "subgelatinous":5, "subgeneric":4, "subgeniculate":5, "subgeniculation":6, "subgenus":3, "subgeometric":5, "subgeometrical":6, "subglabrous":3, "subglacial":3, "subglacially":4, "subglacial":4, "subglenoid":3, "subglobular":4, "subglobularity":6, "subglossal":3, "subglottal":3, "subglottic":3, "subgloboid":3, "subglobose":3, "subglobosity":5, "subglobous":3, "subglumaceous":4, "subgod":2, "subgoverness":4, "subgovernor":4, "subgovernorship":5, "subgrade":2, "subgranular":4, "subgranularity":6, "subgrin":2, "subgroup":2, "subgular":3, "subgyre":2, "subgyri":3, "subgyrus":3, "subhall":2, "subharmonic":4, "subhatcheries":4, "subhatchery":4, "subhead":2, "subheading":3, "subheadquarters":4, "subheadwaiter":4, "subhealth":2, "subhemispheric":5, "subhemispherical":6, "subherd":2, "subhexagonal":5, "subhedral":3, "subhepatic":4, "subhero":3, "subhirsute":3, "subhooked":2, "subhorizontal":5, "subhouse":2, "subhuman":3, "subhumeral":4, "subhumid":3, "subhysteria":5, "subhyalin":4, "subhyaline":4, "subhyaloid":4, "subhymenial":5, "subhymenium":5, "subhyoid":3, "subhyoidean":5, "subhypothesis":5, "subicteric":4, "subicterical":5, "subilia":4, "subilium":4, "subimbricate":4, "subimbricated":5, "subimbricative":5, "subimposed":3, "subimpressed":3, "subincandescent":5, "subincision":4, "subincomplete":4, "subindex":3, "subinfection":4, "subinfer":3, "subinferred":3, "subinferring":4, "subinfeud":3, "subinfeudate":4, "subinfeudated":5, "subinfeudating":5, "subinfeudation":5, "subinfeudatory":6, "subinferior":5, "subinflammation":5, "subinflammatory":6, "subinfluent":4, "subinform":3, "subinitial":4, "subinsert":3, "subinsertion":4, "subinspector":4, "subinspectorship":5, "subintegumental":6, "subintegumentary":7, "subintention":4, "subintentional":5, "subintercessor":5, "subinternal":4, "subinterval":4, "subintestinal":5, "subintimal":4, "subintroduce":4, "subintroduced":4, "subintroducing":5, "subintroduction":5, "subintroductive":5, "subintroductory":6, "subinvolute":4, "subinvoluted":5, "subirrigate":4, "subirrigated":5, "subirrigating":5, "subidea":4, "subideal":4, "subiodide":4, "subitem":3, "subjack":2, "subjacent":3, "subjacently":4, "subjacency":4, "subject":2, "subject catalogue":5, "subject matter":4, "subject-raising":3, "subjection":3, "subjectional":4, "subjective":3, "subjective idealism":7, "subjectively":4, "subjectivism":4, "subjectivity":5, "subjectified":4, "subjectification":6, "subjectify":4, "subjectifying":5, "subjoin":2, "subjoint":2, "subjoinder":3, "subjudge":2, "subjudgeship":3, "subjugular":4, "subjunction":3, "subjunctive":3, "subjunctively":4, "subjunior":3, "subjudicial":4, "subjudiciaries":6, "subjudiciary":6, "subjugal":3, "subjugate":3, "subjugated":4, "subjugating":4, "subjugable":4, "subjugation":4, "subjugator":4, "subking":2, "subkingdom":3, "sublanceolate":5, "sublapleased":3, "sublapleasing":4, "sublapsarianism":6, "sublabial":4, "sublabially":5, "sublaciniate":5, "sublacustrine":4, "sublacunose":4, "sublanate":3, "sublaryngal":4, "sublaryngeal":5, "subleader":3, "sublease":2, "sublecturer":4, "sublegislation":5, "sublegislature":5, "sublenticular":5, "sublenticulate":5, "sublessee":3, "sublessor":3, "sublet":2, "sublethal":3, "sublid":2, "sublieutenant":4, "sublieutenancy":5, "sublighted":3, "sublime":2, "sublime porte":3, "sublimed":2, "sublimely":3, "sublimeness":3, "sublimer":3, "subliming":3, "subliminal":4, "subliminal advertising":8, "subliminal perception":7, "subliminally":5, "sublimity":4, "sublinear":4, "sublingual":3, "sublittoral":4, "sublibrarian":5, "sublibrarianship":6, "sublicense":3, "sublicensed":3, "sublicensing":4, "sublimate":3, "sublimable":4, "sublimableness":5, "sublimation":4, "sublimational":5, "sublobular":4, "sublong":2, "subloral":3, "sublot":2, "sublumbar":3, "sublustrous":3, "subluxation":4, "sublunar":3, "sublunary":4, "sublunate":3, "sublunated":4, "submaid":2, "submammary":4, "subman":2, "submanager":4, "submanagership":5, "submanor":3, "submarginal":4, "submarginally":5, "submarshal":3, "submaster":3, "submaxilla":4, "submaxillae":4, "submaxillary":5, "submaxillary gland":6, "submaximal":4, "submanic":3, "submania":4, "submaniacal":5, "submarine":3, "submariner":4, "submatrix":3, "submatrices":4, "submeaning":3, "submeeting":3, "submember":3, "submembranaceous":5, "submembranous":4, "submental":3, "submerge":2, "submerged":2, "submerging":3, "submergible":4, "submerse":2, "submersed":2, "submersing":3, "submersibility":6, "submersible":4, "submergence":3, "submergibility":6, "submergible":4, "submersion":3, "submetaphoric":5, "submetaphorical":6, "submedial":4, "submedian":4, "submediant":4, "submediation":5, "submediocre":5, "submeningeal":5, "submetallic":4, "submiliary":5, "submind":2, "subministrant":4, "subminiature":5, "subminiature camera":8, "subminiaturise":6, "subminiaturize":6, "subminiaturized":6, "subminiaturizing":7, "subminiaturization":8, "subminimal":4, "submiss":2, "submission":3, "submissive":3, "submissively":4, "submissiveness":4, "submit":2, "submitted":3, "submitting":3, "submicroscopic":5, "submicroscopical":6, "submicroscopically":7, "submolecule":4, "submontane":3, "submontanely":4, "submortgage":3, "submountain":3, "submolecular":5, "submultiple":4, "submundane":3, "submuscular":4, "submucous":3, "submucosa":4, "submucronate":4, "submucronated":5, "submuriate":4, "subnarcotic":4, "subnatural":4, "subnacreous":4, "subnasal":3, "subnet":2, "subneural":3, "subnitrate":3, "subnitrated":4, "subnodulose":4, "subnodulous":4, "subnormal":3, "subnote":2, "subnotation":4, "subnotational":5, "subnotochordal":5, "subnude":2, "subnumber":3, "subnuclei":4, "subnucleus":4, "subnucleuses":5, "subnutritious":4, "suboblique":3, "subobscure":3, "subobsolete":4, "subobtuse":3, "subocular":4, "suboesophageal":6, "suboffice":3, "subofficer":4, "subofficial":4, "subolive":3, "subopposite":4, "suboptic":3, "suboptical":4, "suboptimum":4, "suborn":2, "suborner":3, "suborbicular":5, "suborbicularity":7, "suborbiculate":5, "suborbiculated":6, "suborbital":4, "suborbital":4, "suborder":3, "subordinal":4, "subordinaries":5, "subordinary":5, "subordinate":4, "subordinate clause":5, "subordinately":5, "subordinated":5, "subordinating conjunction":8, "subordination":5, "subordinationism":6, "subordinative":5, "suborganic":4, "suborganically":6, "subornation":4, "subornative":4, "suboxide":3, "subocean":3, "suboceanic":5, "subopaque":3, "suboral":3, "subovarian":5, "subovate":3, "suboverseer":5, "subovoid":3, "subpackage":3, "subpallial":4, "subpalmate":3, "subpalmated":4, "subpanel":3, "subpar":2, "subpart":2, "subparallel":4, "subparagraph":4, "subparalytic":5, "subparliament":4, "subpartition":4, "subpartitioned":4, "subpartitionment":5, "subparty":3, "subpass":2, "subpastor":3, "subpastorship":4, "subpattern":3, "subpavement":3, "subpagoda":4, "subparietal":5, "subpatellar":4, "subpatron":3, "subpatronal":4, "subpatroness":4, "subpectinate":4, "subpectinated":5, "subpectination":5, "subpectoral":4, "subpellucid":4, "subpellucidity":6, "subpeltate":3, "subpeltated":4, "subpentagonal":5, "subpericardiac":6, "subpericardial":6, "subpericranial":6, "subperiosteal":6, "subperitoneal":6, "subpermanent":4, "subpetiolate":5, "subpetiolated":6, "subpeduncle":4, "subpeduncled":4, "subpeduncular":5, "subpedunculate":5, "subpedunculated":6, "subpena":3, "subperiod":4, "subpetrosal":4, "subpharyngal":4, "subpharyngeal":5, "subphosphate":3, "subphratry":3, "subphrenic":3, "subphylar":3, "subphylum":3, "subpiston":3, "subpial":3, "subpilose":3, "subpilosity":5, "subplant":2, "subplantigrade":4, "subplacenta":4, "subplacental":4, "subpleural":3, "subplexal":3, "subplot":2, "subplow":2, "subpoena":3, "subpool":2, "subpopular":4, "subpopulation":5, "subport":2, "subporphyritic":5, "subpost":2, "subpostmaster":4, "subpostmastership":5, "subpostscript":3, "subpolar":3, "subpolygonal":5, "subpredicate":4, "subpredication":5, "subpredicative":5, "subpreceptor":4, "subpreceptorate":5, "subpreceptoral":5, "subpreceptorial":6, "subprefect":3, "subprefectorial":6, "subprefecture":4, "subprehensile":4, "subprehensility":6, "subpreputial":4, "subprincipal":4, "subprimary":4, "subprior":3, "subprioress":4, "subpriorship":4, "subproblem":3, "subproctor":3, "subproctorship":4, "subproctorial":5, "subprofitable":5, "subprofitableness":6, "subprovince":3, "subprofessional":5, "subprofessor":4, "subprofessorate":5, "subprofessorship":5, "subprofessoriate":6, "subproportional":5, "subprostatic":4, "subprotector":4, "subprotectorship":5, "subprovincial":4, "subpulmonary":5, "subpulverizer":5, "subpurlin":3, "subpubescent":4, "subpubic":3, "subpyramidic":5, "subpyramidical":6, "subpyriform":4, "subpyramidal":5, "subquadrangular":5, "subquadrate":3, "subquality":4, "subquarter":3, "subquarterly":4, "subquestion":3, "subquinquefid":4, "subrace":2, "subradical":4, "subradular":4, "subrail":2, "subrange":2, "subradiance":4, "subradiancy":5, "subradiate":4, "subradiative":5, "subramose":3, "subramous":3, "subreader":3, "subreason":3, "subrectal":3, "subrectangular":5, "subrector":3, "subrectory":4, "subreference":4, "subregular":4, "subregularity":6, "subreniform":4, "subreption":3, "subreptitious":4, "subreputable":5, "subretinal":4, "subrebellion":4, "subregent":3, "subregion":3, "subregional":4, "subrelation":4, "subreligion":4, "subrepand":3, "subrepent":3, "subreport":3, "subretractile":4, "subrhombic":3, "subrhombical":4, "subrhomboid":3, "subrhomboidal":4, "subrictal":3, "subrigid":3, "subring":2, "subrigidity":5, "subroot":2, "subrostral":3, "subroutine":3, "subrogate":3, "subrogated":4, "subrogating":4, "subrogation":4, "subrotund":3, "subrotundity":5, "subrule":2, "subruler":3, "subsale":2, "subsample":3, "subsaturated":5, "subsaturation":5, "subsacral":3, "subsaline":3, "subsalinity":5, "subsatiric":4, "subsatirical":5, "subscapular":4, "subscapulary":5, "subschedule":3, "subscheme":2, "subschool":2, "subscience":3, "subscleral":3, "subsclerotic":4, "subscribe":2, "subscribed":2, "subscribable":4, "subscriber":3, "subscriber trunk dialling":7, "subscribership":4, "subscribing":3, "subscript":2, "subscription":3, "subscription concert":5, "subscription library":6, "subscripture":3, "subsect":2, "subsecretaries":5, "subsecretarial":6, "subsecretary":5, "subsecretaryship":6, "subsection":3, "subsegment":3, "subsellia":4, "subsellium":4, "subsensation":4, "subsensual":4, "subsensuous":4, "subsept":2, "subseptate":3, "subserve":2, "subserved":2, "subserving":3, "subserrate":3, "subserrated":4, "subservience":4, "subservient":4, "subserviently":5, "subserviency":5, "subsessile":3, "subset":2, "subsewer":3, "subsecurity":5, "subsequence":3, "subsequent":3, "subsequently":4, "subseries":3, "subserous":3, "subshaft":2, "subsheriff":3, "subshire":2, "subshrub":2, "subsibilance":4, "subsibilant":4, "subsibilancy":5, "subside":2, "subsidence":3, "subsider":3, "subsidiaries":5, "subsidiarily":6, "subsidiariness":6, "subsidiary":5, "subsidiary coin":6, "subsidiary company":8, "subsilicate":4, "subsimian":4, "subsimious":4, "subsimple":3, "subsinuous":4, "subsist":2, "subsistence":3, "subsistence allowance":6, "subsistence farming":5, "subsistence level":5, "subsistent":3, "subsizar":3, "subsizarship":4, "subsidise":3, "subsidize":3, "subsidizable":5, "subsidizer":4, "subsidization":5, "subsidy":3, "subsmile":2, "subsneer":2, "subsoil":2, "subsolid":3, "subsonic":3, "subsort":2, "subsorter":3, "subsovereign":4, "subsocial":3, "subsocially":4, "subsolar":3, "subspace":2, "subspatulate":4, "subspecialist":4, "subspecialize":4, "subspecialized":4, "subspecializing":5, "subspecialization":6, "subspecialty":4, "subspecies":3, "subsphere":2, "subspheric":3, "subspherical":4, "subsphenoid":3, "subsphenoidal":4, "subspinose":3, "subspinous":3, "subspiral":3, "subsplenial":4, "subspontaneous":5, "subsquadron":3, "substage":2, "substance":2, "substandard":3, "substandardize":4, "substandardized":4, "substandardizing":5, "substandardization":6, "substantial":3, "substantialise":4, "substantialism":4, "substantialize":4, "substantially":4, "substantialness":4, "substantive":3, "substantive rank":4, "substantively":4, "substantiveness":4, "substantivise":4, "substantivize":4, "substantiality":6, "substantiate":4, "substantiated":5, "substantiating":5, "substantiation":5, "substantiative":5, "substantiator":5, "substantival":4, "substantivally":5, "substation":3, "substernal":3, "substituent":4, "substitute":3, "substituted":4, "substituting":4, "substitution":4, "substitutional":5, "substitutionally":6, "substitutionary":6, "substitutive":4, "substitutively":5, "substock":2, "substore":2, "substoreroom":3, "substory":3, "substrate":2, "substratosphere":4, "substratospheric":5, "substrata":3, "substratum":3, "substriate":3, "substriated":4, "substruction":3, "substructional":4, "substructure":3, "substructural":4, "subsulcus":3, "subsulfate":3, "subsulfid":3, "subsulfide":3, "subsulphate":3, "subsulphid":3, "subsulphide":3, "subsume":2, "subsumed":2, "subsumption":3, "subsumable":4, "subsuming":3, "subsurety":3, "subsuperficial":5, "subsyndicate":4, "subsyndication":5, "subsynod":3, "subsynodal":4, "subsynodic":4, "subsynodical":5, "subsynovial":5, "subtangent":3, "subtarsal":3, "subtaxer":3, "subteen":2, "subtegminal":4, "subtegumental":5, "subtegumentary":6, "subtemperate":4, "subtemporal":4, "subtend":2, "subtenant":3, "subtenancy":4, "subtentacular":5, "subtenure":3, "subtepid":3, "subterminal":4, "subterfuge":3, "subterminal":4, "subternatural":5, "subterrain":3, "subterrane":3, "subterraneanize":6, "subterraneanized":6, "subterraneanizing":7, "subterranean":5, "subterraneanly":6, "subterraneously":6, "subterraqueous":5, "subterrene":3, "subterrestrial":5, "subterritorial":6, "subterritory":5, "subtertian":3, "subtext":2, "subtepidity":5, "subterete":3, "subtetanic":4, "subtetanical":5, "subthalamic":4, "subthoracic":4, "subthoracal":4, "subthrill":2, "subtile":2, "subtilely":3, "subtileness":3, "subtilise":3, "subtilised":3, "subtiliser":4, "subtilising":4, "subtilize":3, "subtilized":3, "subtilizing":4, "subtitular":4, "subtilis":3, "subtitle":3, "subtle":2, "subtleness":3, "subtlety":3, "subtly":2, "subtonic":3, "subtopic":3, "subtorrid":3, "subtower":3, "subtopia":4, "subtotal":3, "subtotaled":3, "subtotalled":3, "subtotaling":4, "subtotalling":4, "subtotem":3, "subtotemic":4, "subtract":2, "subtracter":3, "subtraction":3, "subtractive":3, "subtractive process":5, "subtranslucence":4, "subtranslucent":4, "subtranslucency":5, "subtransparent":4, "subtransverse":3, "subtransversal":4, "subtrapezoid":4, "subtrapezoidal":5, "subtrahend":3, "subtread":2, "subtreasurer":4, "subtreasurership":5, "subtreasury":4, "subtrench":2, "subtribe":2, "subtribal":3, "subtrigonal":4, "subtriplicate":4, "subtriplicated":5, "subtriplication":5, "subtriangular":5, "subtriangularity":7, "subtriangulate":5, "subtrifid":3, "subtrihedral":4, "subtriquetrous":4, "subtrochlear":4, "subtrochleariform":6, "subtropics":3, "subtropical":4, "subtrochanteric":5, "subtrunk":2, "subtruncate":3, "subtruncated":4, "subtruncation":4, "subtunnel":3, "subturriculate":5, "subturriculated":6, "subtubiform":4, "subtunic":3, "subtutor":3, "subtutorship":4, "subtwined":2, "subtympanitic":5, "subtype":2, "subtypical":4, "subultimate":4, "subumbellar":4, "subumbellate":4, "subumbellated":5, "subumbelliferous":6, "subumbilical":5, "subumbonal":4, "subumbonate":4, "subuncinal":4, "subuncinate":4, "subuncinated":5, "subunequal":4, "subungual":3, "suburb":2, "suburban":3, "suburbanise":4, "suburbanised":4, "suburbanising":5, "suburbanite":4, "suburbanize":4, "suburbanized":4, "suburbanizing":5, "suburbanization":6, "suburbia":4, "suburbicarian":6, "suburies":3, "subursine":3, "subunit":3, "subuniverse":4, "subuniversal":5, "suburethral":4, "subutopian":5, "subvaginal":4, "subvassal":3, "subvassalage":4, "subvariety":5, "subvein":2, "subvene":2, "subvened":2, "subvening":3, "subvention":3, "subventionary":5, "subventral":3, "subventricular":5, "subventricous":4, "subvert":2, "subverter":3, "subvermiform":4, "subversion":3, "subversive":3, "subversively":4, "subversiveness":4, "subversivism":4, "subvertebral":4, "subvertebrate":4, "subverticilate":5, "subverticilated":6, "subvertical":4, "subvestment":3, "subvesicular":5, "subvicar":3, "subvicarship":4, "subvillain":3, "subvirile":3, "subvisible":4, "subvitreous":4, "subvitalised":4, "subvitalized":4, "subvitalisation":6, "subvitalization":6, "subvocal":3, "subwar":2, "subwarden":3, "subwardenship":4, "subway":2, "subwealthy":3, "subwink":2, "subworker":3, "subworkman":3, "subzero":3, "subzone":2, "subzonal":3, "subzonary":4, "subzygomatic":5, "such":1, "suchlike":2, "suck":1, "sucks":1, "sucker":2, "suckerfish":3, "suckerfishes":4, "suckerlike":3, "suckfish":2, "sucking":2, "sucking louse":3, "suckle":2, "suckler":2, "suckling":2, "suckling":2, "succah":2, "succahs":2, "succeed":2, "succeedable":4, "succeeder":3, "succeedingly":4, "succentor":3, "success":2, "successful":3, "successfully":4, "successfulness":4, "successless":3, "successlessly":4, "successlessness":4, "succession":3, "succession state":4, "successive":3, "successively":4, "successiveness":4, "successor":3, "successoral":4, "succedanea":5, "succedaneous":5, "succedaneum":5, "succinct":2, "succinctly":3, "succinctness":3, "succinctoria":5, "succinctorium":5, "succinate":3, "succinic":3, "succinic acid":5, "succinate":3, "succinylsulfathiazole":8, "succinylsulphathiazole":8, "succor":2, "succorer":3, "succory":3, "succoth":2, "succoth":2, "succour":2, "succourable":4, "succourer":3, "succory":3, "succotash":3, "succumb":2, "succumber":3, "succursal":3, "succuss":2, "succussion":3, "succuba":3, "succubous":3, "succubus":3, "succulence":3, "succulent":3, "succulently":4, "succulency":4, "suction":2, "suction pump":3, "suction stop":3, "suctional":3, "suctoria":4, "suctorial":4, "sudd":1, "suds":1, "sudbury":3, "sudburian":4, "sudden":2, "sudden death":3, "suddenly":3, "suddenness":3, "sue":1, "sue":1, "suede":1, "sueded":2, "sueding":2, "suetonius":4, "suevian":3, "suf":1, "suff":1, "suff":1, "suffr":1, "suffer":2, "suffern":2, "sufferance":3, "sufferable":4, "sufferableness":5, "sufferably":4, "sufferer":3, "suffering":3, "suffice":2, "sufficed":2, "sufficing":3, "suffix":2, "suffixal":3, "suffixion":3, "sufficient":3, "sufficiency":4, "sufflate":2, "sufflated":3, "sufflating":3, "sufflation":3, "suffolk":2, "suffolk punch":3, "suffocate":3, "suffocated":4, "suffocating":4, "suffrage":2, "suffragan":3, "suffragette":3, "suffragettism":4, "suffragist":3, "suffruticose":4, "suffuse":2, "suffused":2, "suffusedly":3, "suffusing":3, "suffumigate":4, "suffumigated":5, "suffumigating":5, "suffumigation":5, "suffusion":3, "suffusive":3, "sug":1, "sugg":1, "sugh":1, "sugar":2, "sugar apple":4, "sugar beet":3, "sugar bird":3, "sugar bush":3, "sugar cane":3, "sugar candy":4, "sugar corn":3, "sugar glider":4, "sugar gum":3, "sugar loaf":3, "sugar loaf mountain":5, "sugar maple":4, "sugar of lead":4, "sugar of milk":4, "sugar pine":3, "sugar-cane":2, "sugar-candy":3, "sugar-coat":2, "sugar-loaf":2, "sugar-loafed":2, "sugar-teat":2, "sugar-tit":2, "sugared":2, "sugarbush":3, "sugarhouse":3, "sugarhouses":4, "sugariness":4, "sugarless":3, "sugarlike":3, "sugarplum":3, "sugary":3, "suggest":2, "suggestedness":4, "suggester":3, "suggestingly":4, "suggestibility":6, "suggestible":4, "suggestibleness":5, "suggestibly":4, "suggestion":3, "suggestive":3, "suggestively":4, "suggestiveness":4, "sui":1, "suisse":1, "suit":1, "suite":1, "suitable":3, "suitably":3, "suitcase":2, "suited":2, "suiting":2, "suitor":2, "suiy":2, "sukkah":2, "sukkahs":2, "sukkoth":2, "sukkoth":2, "sulfantimonide":5, "sulfarsphenamine":5, "sulfarsenide":4, "sulk":1, "sulker":2, "sulkies":2, "sulkier":3, "sulkiest":3, "sulky":2, "sulphantimonide":5, "sulpharsenide":4, "sulzberger":3, "sulcate":2, "sulcated":3, "sulcation":3, "sulcus":2, "sulfa":2, "sulfate":2, "sulfated":3, "sulfating":3, "sulfatize":3, "sulfatized":3, "sulfatizing":4, "sulfaguanidine":5, "sulfamerazine":5, "sulfanilamide":5, "sulfapyrazine":5, "sulfapyridine":5, "sulfathiazole":5, "sulfation":3, "sulfite":2, "sulfitic":3, "sulfinyl":3, "sulfisoxazole":5, "sulfone":2, "sulfonamide":4, "sulfonic":3, "sulfonmethane":4, "sulfonal":3, "sulfonate":3, "sulfonated":4, "sulfonating":4, "sulfonation":4, "sulfonyl":3, "sulfur":2, "sulfur-bottom":3, "sulfurous":3, "sulfurously":4, "sulfurousness":4, "sulfuryl":3, "sulfuret":3, "sulfureted":4, "sulfureting":4, "sulfuretted":4, "sulfuretting":4, "sulfureous":4, "sulfureously":5, "sulfureousness":5, "sulfuric":3, "sulfurize":3, "sulfurized":3, "sulfurizing":4, "sulfurization":5, "sulla":2, "sullage":2, "sullen":2, "sullenly":3, "sullenness":3, "sullied":2, "sulliable":4, "sullivan":3, "sully":2, "sully":2, "sully-prudhomme":3, "sullying":3, "sulpha":2, "sulpha drug":3, "sulphate":2, "sulphated":3, "sulphating":3, "sulphatize":3, "sulphatized":3, "sulphatizing":4, "sulphatization":5, "sulphadiazine":5, "sulphamerazine":5, "sulphanilamide":5, "sulphapyrazine":5, "sulphapyridine":5, "sulphathiazole":5, "sulphation":3, "sulphide":2, "sulphite":2, "sulphinyl":3, "sulphisoxazole":5, "sulphone":2, "sulphonamide":4, "sulphonic":3, "sulphonic acid":5, "sulphonmethane":4, "sulphonate":3, "sulphonated":4, "sulphonating":4, "sulphonation":4, "sulphonium":4, "sulphonium compound":6, "sulphonyl":3, "sulphur":2, "sulphur":2, "sulphur dioxide":5, "sulphur trioxide":5, "sulphur-bottom":3, "sulphur-flower":3, "sulphurate":3, "sulphurous":3, "sulphurous acid":5, "sulphurously":4, "sulphurousness":4, "sulphuryl":3, "sulphurate":3, "sulphurated":4, "sulphurating":4, "sulphuration":4, "sulphurator":4, "sulphuret":3, "sulphuretted hydrogen":7, "sulphureous":4, "sulphuric":3, "sulphuric acid":5, "sulphurise":3, "sulphurize":3, "sulphurized":3, "sulphurizing":4, "sulphydryl":3, "sulpician":3, "sultan":2, "sultana":3, "sultanate":3, "sultanabad":4, "sultanic":3, "sultanlike":3, "sultanship":3, "sultrier":3, "sultriest":3, "sultrily":3, "sultriness":3, "sultry":2, "sum":1, "sump":1, "sumpter":2, "sumption":2, "sumptuary":4, "sumptuary law":5, "sumptuous":3, "sumptuously":4, "sumptuousness":4, "sumba":2, "sumbawa":3, "summa":2, "summa cum laude":5, "summae":2, "summand":2, "summarist":3, "summarily":4, "summariness":4, "summary":3, "summary offence":5, "summability":5, "summanus":3, "summarise":3, "summarised":3, "summariser":4, "summarising":4, "summarize":3, "summarized":3, "summarizable":5, "summarizer":4, "summarizing":4, "summarisation":5, "summarization":5, "summary":3, "summation":3, "summational":4, "summer":2, "summer cypress":4, "summer pudding":4, "summer school":3, "summer solstice":4, "summer-sweet":2, "summerhouse":3, "summerhouses":4, "summerliness":4, "summerly":3, "summersault":3, "summerset":3, "summerside":3, "summertime":3, "summertree":3, "summerville":3, "summerweight":3, "summerwood":3, "summing":2, "summing-up":2, "summit":2, "summit":2, "summital":3, "summitless":3, "summitry":3, "summon":2, "summons":2, "summonses":3, "summonable":4, "summoner":3, "summum bonum":4, "sumner":2, "sumter":2, "sun":1, "sun":1, "sun bittern":3, "sun parlor":3, "sun-god":1, "sundsvall":2, "sung":1, "sung":1, "sungkiang":2, "sunk":1, "sunken":2, "sunn":1, "sunback":2, "sunbake":2, "sunbaked":2, "sunbathe":2, "sunbathed":2, "sunbather":3, "sunbathing":3, "sunbeam":2, "sunbeamed":2, "sunbeamy":3, "sunberry":3, "sunbird":2, "sunbonnet":3, "sunbonneted":4, "sunbow":2, "sunbreak":2, "sunbreaker":3, "sunburn":2, "sunburnt":2, "sunburning":3, "sunburst":2, "sunburst pleats":3, "sunbury-on-thames":3, "sunda islands":4, "sunda strait":3, "sundae":2, "sunday":2, "sunday best":3, "sunday painter":4, "sunday punch":3, "sunday school":3, "sunday-go-to-meeting":3, "sundays":2, "sundaylike":3, "sunder":2, "sunderance":3, "sunderland":3, "sundew":2, "sundial":3, "sundog":2, "sundown":2, "sundowner":3, "sundress":2, "sundries":2, "sundrily":3, "sundriness":3, "sundrops":2, "sundry":2, "sundry shop":3, "sunfast":2, "sunfish":2, "sunfishes":3, "sunflower":3, "sungari":3, "sunglass":2, "sunglasses":3, "sunglow":2, "sungrebe":2, "sunhat":2, "sunket":2, "sunless":2, "sunlessly":3, "sunlessness":3, "sunlight":2, "sunlike":2, "sunlit":2, "sunna":2, "sunni":2, "sunnite":2, "sunnier":3, "sunniest":3, "sunnily":3, "sunniness":3, "sunny":2, "sunny side":3, "sunny-side up":3, "sunnyside":3, "sunnyvale":3, "sunproof":2, "sunray":2, "sunray pleats":3, "sunrise":2, "sunroof":2, "sunroom":2, "sunset":2, "sunshade":2, "sunshine":2, "sunshine roof":3, "sunshineless":3, "sunshiny":3, "sunspot":2, "sunspotted":3, "sunspottedness":4, "sunstar":2, "sunstone":2, "sunstroke":2, "sunsuit":2, "suntan":2, "suntans":2, "suntrap":2, "sunup":2, "sunward":2, "sunwards":2, "sunwise":2, "sunyata":3, "suovetaurilia":6, "sup":1, "super":1, "superl":1, "supp":1, "suppl":1, "supr":1, "supt":1, "supt":1, "superaltar":4, "supper":2, "supper club":3, "supperless":3, "suppertime":3, "suppedanea":5, "suppedaneum":5, "supping":2, "supplant":2, "supplanter":3, "supplantation":4, "supple":2, "supplejack":3, "supplely":3, "supplement":3, "supplementer":4, "supplemental":4, "supplementally":5, "supplementary":5, "supplementary angle":7, "supplementary benefit":8, "suppleness":3, "suppletion":3, "suppletive":3, "suppletorily":5, "suppletory":4, "supplied":2, "suppliance":3, "suppliant":3, "suppliantly":4, "suppliantness":4, "suppliable":4, "supplicant":3, "supplicate":3, "supplicated":4, "supplicating":4, "supplication":4, "supplicatory":5, "supplier":3, "supply":2, "supplying":3, "support":2, "supportability":6, "supportable":4, "supportableness":5, "supportably":4, "supporter":3, "supporting":3, "supportingly":4, "supportive":3, "supportive therapy":6, "supportless":3, "supportlessly":4, "suppose":2, "supposed":2, "supposal":3, "supposedly":4, "supposing":3, "suppositive":4, "suppositively":5, "supposititious":5, "suppository":5, "supposition":4, "suppositional":5, "suppositionally":6, "suppositionless":5, "suppositious":4, "suppress":2, "suppression":3, "suppressive":3, "suppressor grid":4, "suppurate":3, "suppurated":4, "suppurating":4, "suppuration":4, "suppurative":4, "supp":3, "suq":1, "sur":1, "sur":1, "sur-royal":2, "surd":1, "sure":1, "sure-enough":2, "sure-footed":2, "sure-footedness":3, "surely":2, "sureness":2, "surety":2, "surf":1, "surf scoter":3, "surfable":3, "surfbird":2, "surfboard":2, "surfboarder":3, "surfboarding":3, "surfboat":2, "surfcasting":3, "surfer":2, "surffish":2, "surffishes":3, "surfie":2, "surfing":2, "surfiest":3, "surflike":2, "surfperch":2, "surfperches":3, "surfrider":3, "surfriding":3, "surfsurfier":4, "surfy":2, "surg":1, "surge":1, "surgeless":2, "surging":2, "surgy":2, "surt":1, "surtsey":2, "surv":1, "surbase":2, "surbased":2, "surcease":2, "surcharge":2, "surcharger":3, "surcingle":3, "surcoat":2, "surculose":3, "surer":2, "surest":2, "surface":2, "surface friction drag":5, "surface mail":3, "surface noise":3, "surface plate":3, "surface structure":4, "surface tension":4, "surface-active":3, "surface-printing":3, "surface-to-air":2, "surface-to-surface":3, "surface-to-underwater":5, "surfaced":2, "surfaceless":3, "surfacer":3, "surfacing":3, "surfactant":3, "surfeit":2, "surgeon":2, "surgeon general":5, "surgeon's knot":3, "surgeoncy":3, "surgeonfish":3, "surgeonfishes":4, "surgeonless":3, "surgery":3, "surgical":3, "surgical boot":4, "surgical spirit":5, "surgically":4, "surjection":3, "surlily":3, "surliness":3, "surly":2, "surmise":2, "surmisedly":3, "surmisable":4, "surmiser":3, "surmount":2, "surmountable":4, "surmountableness":5, "surmounter":3, "surmullet":3, "surname":2, "surpass":2, "surpassable":4, "surpassingly":4, "surpassingness":4, "surpassing":3, "surplice":2, "surpliced":2, "surplus":2, "surplusage":3, "surprint":2, "surprise":2, "surprised":2, "surprisal":3, "surprisedly":4, "surpriser":3, "surprising":3, "surprisingly":4, "surprisingness":4, "surra":2, "surrender":3, "surrenderer":4, "surreptitious":4, "surrey":2, "surrey":2, "surreal":3, "surrealism":4, "surrealism":4, "surrealist":4, "surrealistic":5, "surrealistically":7, "surrebuttal":4, "surrebutter":4, "surrejoinder":4, "surround":2, "surroundedly":4, "surrounder":3, "surrounding":3, "surroundings":3, "surrogate":3, "surrogateship":4, "surrogated":4, "surrogating":4, "surrogation":4, "surrogit":3, "sursum corda":4, "surtax":2, "surtout":2, "surtr":2, "surveillance":3, "surveillant":3, "survey":2, "surveyable":4, "surveying":3, "surveyor":3, "surveyor's chain":4, "surveyor's level":5, "surveyor's measure":5, "surveyorship":4, "survive":2, "survived":2, "survival":3, "survivability":6, "survivable":4, "surviving":3, "survivor":3, "survivorship":4, "susah":1, "suss":1, "susceptance":3, "susceptive":3, "susceptivity":5, "susceptibility":6, "susceptible":4, "suslik":2, "suslov":2, "suspect":2, "suspectedness":4, "suspecter":3, "suspectible":4, "suspectless":3, "suspend":2, "suspended animation":7, "suspended sentence":5, "suspender":3, "suspender belt":4, "suspenderless":4, "suspendibility":6, "suspendible":4, "suspense":2, "suspense account":4, "suspension":3, "suspension bridge":4, "suspension point":4, "suspensive":3, "suspensively":4, "suspensiveness":4, "suspensibility":6, "suspensible":4, "suspensoid":3, "suspensor":3, "suspensory":4, "suspire":2, "suspired":2, "suspiring":3, "suspicion":3, "suspicionful":4, "suspicionless":4, "suspicious":3, "suspiciously":4, "suspiciousness":4, "suspiration":4, "susquehanna":4, "sussex":2, "sussex spaniel":4, "susso":2, "sustain":2, "sustainable":4, "sustainedly":4, "sustainer":3, "sustaining pedal":5, "sustaining program":5, "sustainingly":4, "sustainment":3, "sustentacular":5, "sustentation":4, "sustentational":5, "sustentative":4, "sustention":3, "sustenance":3, "sustenanceless":4, "suth":1, "sutherland":3, "sutherland falls":4, "suttner":2, "sutcliffe":2, "sutlej":2, "sutler":2, "sutlership":3, "sutta":2, "suttee":2, "sutton":2, "sutton coldfield":4, "sutton hoo":3, "sutton-in-ashfield":3, "surez":3, "suability":5, "suable":3, "suably":3, "suakin":3, "subah":2, "subahdar":3, "subadar":3, "suberic":3, "suberic acid":5, "suberin":3, "suberise":3, "suberised":3, "suberising":4, "suberize":3, "suberization":5, "suberose":3, "suberous":3, "subereous":4, "subito":3, "subotica":4, "subulate":3, "sucaryl":3, "sucrase":2, "sucre":2, "sucre":2, "sucrier":3, "sucriers":3, "sucrose":2, "sudan":2, "sudanic":3, "sudarium":4, "sudafed":3, "sudanese":3, "sudatio":4, "sudationes":5, "sudatoria":5, "sudatorium":5, "sudatory":4, "sudermann":3, "sudeten":3, "sudeten mountains":5, "sudetenland":4, "sudetes":3, "sudor":2, "sudoriferous":5, "sudoriferousness":6, "sudorific":4, "sudoriparous":5, "sudra":2, "suer":2, "suet":2, "suet pudding":4, "suety":3, "suez":2, "suez canal":4, "sufi":2, "sufism":2, "sufistic":3, "sufu":2, "sugar daddy":4, "sugar diabetes":6, "sugi":2, "suharto":3, "sui generis":5, "sui juris":4, "suing":2, "suint":2, "suicide":3, "suicidal":4, "suicidally":5, "suicided":4, "suimate":3, "suji-muji":3, "sukarnapura":5, "sukarno":3, "sukarno peak":4, "sukhumi":3, "sukiyaki":4, "sulawesi":4, "suleiman":3, "suleiman i":4, "sulu":2, "sulu archipelago":7, "sulu sea":3, "sumac":2, "sumac":2, "sumach":2, "sumatra":3, "sumatran":3, "sumer":2, "sumerian":4, "sumerologist":5, "sumerology":5, "sumi":2, "sumi-e":2, "sumo":2, "sumo":2, "sumoist":3, "sumy":2, "sunay":2, "suo jure":4, "suo loco":4, "suomi":3, "super":2, "super-duper":3, "super-royal":3, "super-smooth":2, "superb":2, "superbly":3, "superbness":3, "superabhor":4, "superabnormal":5, "superabstract":4, "superabsurd":4, "superabsurdity":6, "superaccommodating":7, "superaccomplished":5, "superaccrue":4, "superaccrued":4, "superaccruing":5, "superaccumulate":6, "superaccumulated":7, "superaccumulating":7, "superaccumulation":7, "superaccurate":5, "superacknowledgment":6, "superacquisition":6, "superactive":4, "superactivity":6, "superactivate":5, "superactivated":6, "superactivating":6, "superadd":3, "superaddition":5, "superadditional":6, "superadequate":5, "superadjacent":5, "superadministration":7, "superadmirable":6, "superadmirableness":7, "superadmiration":6, "superaerial":5, "superaerodynamics":7, "superaesthetical":6, "superaffiliation":7, "superaffluence":5, "superaffluent":5, "superaffusion":5, "superaggravation":6, "superagitation":6, "superalimentation":7, "superalkalinity":7, "superallowance":5, "superambition":5, "superambitious":5, "superangelic":5, "superangelically":7, "superanimal":5, "superanimality":7, "superannuate":5, "superannuated":6, "superannuating":6, "superannuation":6, "superannuity":6, "superappreciation":7, "superaqual":4, "superarctic":4, "superarbiter":5, "superarduous":5, "superarrogance":5, "superarrogant":5, "superartificial":6, "superartificiality":9, "superaspiration":6, "superassertion":5, "superassociate":6, "superassume":4, "superassumed":4, "superassumption":5, "superassuming":5, "superastonish":5, "superastonishment":6, "superattachment":5, "superattainable":6, "superattainableness":7, "superattendant":5, "superattraction":5, "superattractive":5, "superauditor":5, "superaverage":5, "superaxillary":6, "superability":6, "superable":4, "superableness":5, "superably":4, "superabominable":7, "superabominableness":8, "superabomination":7, "superabound":4, "superabundance":5, "superabundantly":6, "superachievement":5, "superacidity":6, "superacidulated":7, "superacromial":6, "superacute":4, "superadaptable":6, "superadaptableness":7, "superadorn":4, "superadornment":5, "superagency":5, "superagrarian":6, "superapology":6, "superaqueous":5, "superaward":4, "superbazaar":4, "superbazar":4, "superbenefit":5, "superbelief":4, "superbelievable":6, "superbelievableness":7, "superbeloved":4, "superbenevolence":6, "superbenevolent":6, "superbenign":4, "superbias":4, "superblessed":3, "superblessedness":5, "superblunder":4, "superbold":3, "superbomb":3, "superbrain":3, "superbrave":3, "superbrute":3, "superbuild":3, "superbusily":5, "superbusy":4, "supercabinet":5, "supercalender":5, "supercalifragilisticexpialidocious":14, "supercandid":4, "supercanonization":7, "supercanopy":5, "supercapital":5, "supercaption":4, "supercargo":4, "supercarpal":4, "supercatholic":5, "supercatastrophic":6, "supercausal":4, "supercaution":4, "supercavitation":6, "supercanine":4, "supercanonical":6, "supercapability":7, "supercapable":5, "supercapableness":6, "supercatastrophe":6, "supercatholically":7, "supercensure":4, "supercerebellar":6, "superceremonious":7, "supercelestial":5, "supercerebral":5, "supercharge":3, "supercharged":3, "supercharger":4, "supercharging":4, "supercharger":4, "superchemical":5, "superchivalrous":5, "supercilia":5, "superciliary":6, "supercilious":5, "superciliously":6, "superciliousness":6, "supercilium":5, "supercivil":4, "supercivilized":5, "supercivilization":7, "superclaim":3, "superclass":3, "superclassified":5, "supercombination":6, "supercommendation":6, "supercommentaries":6, "supercommentary":6, "supercommentator":6, "supercommercial":5, "supercompetition":6, "supercomplex":4, "supercomplexity":6, "supercompression":5, "supercomprehension":6, "superconduction":5, "superconductive":5, "superconductivity":7, "superconductor":5, "superconfirmation":6, "superconfidence":5, "superconfident":5, "superconformable":6, "superconformableness":7, "superconformist":5, "superconformity":6, "superconfused":4, "superconfusion":5, "supercongested":5, "supercongestion":5, "superconservative":6, "superconsecrated":6, "superconsequence":5, "superconstitutional":7, "supercontest":4, "supercontribution":6, "supercontrol":4, "supercool":3, "supercordial":4, "supercorporation":6, "supercoincidence":6, "supercoincident":6, "supercolossal":5, "supercolumnar":5, "supercredit":4, "supercretaceous":5, "supercrime":3, "supercriminal":5, "supercritic":4, "supercritical":5, "supercritically":6, "supercriticalness":6, "supercrowned":3, "supercultivated":6, "superculture":4, "supercurious":5, "supercynical":5, "supercycle":4, "superdainty":4, "superdanger":4, "superdebt":3, "superdecorated":6, "superdecoration":6, "superdeficit":5, "superdelegate":5, "superdelicate":5, "superdemonstration":6, "superdemocratic":6, "superdemocratically":8, "superdense theory":6, "superdensity":5, "superdevilish":5, "superdeclamatory":7, "superdeity":5, "superdejection":5, "superdemand":4, "superdemonic":5, "superdeposit":5, "superdesirous":5, "superdevelopment":6, "superdevotion":5, "superdifficult":5, "superdiscount":4, "superdistention":5, "superdistribution":6, "superdividend":5, "superdiabolical":7, "superdiplomacy":6, "superdirection":5, "superdivine":4, "superdivision":5, "superdoctor":4, "superdominant":5, "superdomineering":6, "superdose":3, "superdonation":5, "superdramatist":5, "superdreadnought":4, "superdubious":5, "superduplication":6, "superdural":4, "superearthly":4, "supereducated":6, "supereducation":6, "supereffective":5, "supereffluence":5, "supereffluent":5, "superelegance":5, "superelegant":5, "superelegancy":6, "superelementary":7, "superelevated":6, "superelevation":6, "supereligibility":8, "supereligible":6, "supereligibleness":7, "supereloquence":5, "supereloquent":5, "supereminence":5, "supereminent":5, "supereminently":6, "superemphasis":5, "superemphasize":5, "superemphasized":5, "superemphasizing":6, "superendorse":4, "superendorsed":4, "superendorsement":5, "superendorsing":5, "superendow":4, "superenergetic":6, "superenergetically":8, "superenforcement":5, "superengrave":4, "superengraved":4, "superengraving":5, "superenrollment":5, "superepic":4, "superepoch":4, "supererogate":5, "supererogated":6, "supererogating":6, "supererogation":6, "supererogator":6, "superestablish":5, "superestablishment":6, "superethical":5, "superette":3, "superevidence":5, "superevident":5, "superexacting":5, "superexalt":4, "superexaltation":6, "superexaminer":6, "superexceed":4, "superexcellence":5, "superexcellent":5, "superexcellency":6, "superexceptional":6, "superexcitement":5, "superexcited":5, "superexcitation":6, "superexcrescence":5, "superexcrescent":5, "superexert":4, "superexertion":5, "superexpand":4, "superexpansion":5, "superexpectation":6, "superexpenditure":6, "superexplicit":5, "superexport":4, "superexpression":5, "superexpressive":5, "superexquisite":5, "superextend":4, "superextension":5, "superextol":4, "superextoll":4, "superextreme":4, "superextremity":6, "supereconomy":6, "superego":4, "superelaborate":6, "superelastic":5, "superelastically":7, "superelated":5, "superequivalent":6, "supererogatory":7, "superether":4, "superevangelical":7, "superfamily":5, "superfantastic":5, "superfantastically":7, "superfarm":3, "superfee":3, "superfeminine":5, "superfemininity":7, "superfervent":4, "superfecundation":6, "superfecundity":6, "superfemale":4, "superfetate":4, "superfetation":5, "superfine":3, "superfinical":5, "superfissure":4, "superfit":3, "superfitted":4, "superfitting":4, "superfix":3, "superfibrination":6, "superficial":4, "superficially":5, "superficies":4, "superficies":5, "superfinance":4, "superfinanced":4, "superfinancing":5, "superfinite":4, "superfleet":3, "superflexion":4, "superflux":3, "superfluid":4, "superfluidity":6, "superfluity":5, "superfluous":4, "superfolly":4, "superfort":3, "superformal":4, "superformation":5, "superformidable":6, "superformidableness":7, "superfortress":4, "superfortunate":5, "superfoliaceous":6, "superfoliation":6, "superfructified":5, "superfulfill":4, "superfulfillment":5, "superfunction":4, "superfunctional":5, "superfuse":3, "superfused":3, "superfusing":4, "superfusion":4, "supergaiety":5, "supergalaxies":5, "supergalaxy":5, "supergallant":4, "supergalactic":5, "supergene":3, "supergenerosity":7, "supergenerous":5, "supergenual":5, "supergeneric":5, "supergenerically":7, "supergiant":4, "superglacial":5, "superglottal":4, "superglottic":4, "superglorious":5, "supergoddess":4, "supergoodness":4, "supergovern":4, "supergraduate":5, "supergrant":3, "supergratified":5, "supergratification":7, "supergratify":5, "supergratifying":6, "supergravitate":5, "supergravitated":6, "supergravitating":6, "supergravitation":6, "superguarantee":5, "superguaranteed":5, "superguaranteeing":6, "supergun":3, "supergyre":3, "superhandsome":4, "superheartily":5, "superheartiness":5, "superhearty":4, "superheat":3, "superheater":4, "superheresy":5, "superhet":3, "superheterodyne":6, "superheterodyne receiver":9, "superhero":4, "superheroic":5, "superheroically":7, "superhigh frequency":6, "superhighway":4, "superhistoric":5, "superhistorical":6, "superhive":3, "superhumeral":5, "superhuman":4, "superhumanize":5, "superhumanized":5, "superhumanizing":6, "superhumanity":6, "superhumanly":5, "superhypocrite":5, "superignorant":5, "superillustrate":5, "superillustrated":6, "superillustrating":6, "superillustration":6, "superimpend":4, "superimpersonal":6, "superimplied":4, "superimply":4, "superimplying":5, "superimportant":5, "superimpose":4, "superimposed":4, "superimposing":5, "superimposition":6, "superimprobable":6, "superimprobableness":7, "superimproved":4, "superincentive":5, "superinclination":6, "superinclusive":5, "superincomprehensible":8, "superincomprehensibleness":9, "superincrease":4, "superincreased":4, "superincreasing":5, "superincumbence":5, "superincumbent":5, "superincumbently":6, "superincumbency":6, "superindependence":6, "superindependent":6, "superindictment":5, "superindifference":6, "superindifferent":6, "superindignant":5, "superindividual":7, "superindividualism":8, "superindividualist":8, "superinduce":4, "superinduced":4, "superinducing":5, "superinduction":5, "superindulgence":5, "superindulgent":5, "superindustrious":6, "superindustry":5, "superinfer":4, "superinferred":4, "superinference":5, "superinferring":5, "superinfinite":5, "superinfirmity":6, "superinfluence":5, "superinfluenced":5, "superinfluencing":6, "superinformal":5, "superinformality":7, "superinfuse":4, "superinfused":4, "superinfusing":5, "superingenious":5, "superingenuity":7, "superinitiative":7, "superinjection":5, "superinjustice":5, "superinnocence":5, "superinnocent":5, "superinquisitive":6, "superinscribe":4, "superinscribed":4, "superinscribing":5, "superinscription":5, "superinsist":4, "superinsistence":5, "superinsistent":5, "superintellectual":7, "superintend":4, "superintendence":5, "superintendent":5, "superintendency":6, "superintense":4, "superintendent":5, "superintensity":6, "superintolerable":7, "superintolerableness":8, "superinundation":6, "superinvolution":6, "superirritability":8, "superideal":5, "superjacent":4, "superjustification":7, "superjudicial":5, "superjurisdiction":6, "superknowledge":4, "superlactation":5, "superlaborious":6, "superlaryngeal":5, "superlative":4, "superlatively":5, "superlativeness":5, "superlenient":5, "superlie":3, "superlikelihood":5, "superline":3, "superliner":4, "superload":3, "superlogical":5, "superlogicality":7, "superloyal":4, "superlocal":4, "superlucky":4, "superlunar":4, "superluxurious":6, "superlunar":4, "superlunary":5, "supermagnificent":6, "supermale":3, "supermalate":4, "superman":3, "supermanifest":5, "supermarginal":5, "supermarket":4, "supermarvelous":5, "supermasculine":5, "supermasculinity":7, "supermathematical":7, "supermarine":4, "supermaterial":6, "supermedicine":5, "supermental":4, "supermentality":6, "supermetropolitan":7, "supermechanical":6, "supermedial":5, "supermediocre":6, "supermilitary":6, "supermixture":4, "supermodest":4, "supermoisten":4, "supermolecule":5, "supermolten":4, "supermoral":4, "supermorose":4, "supermotility":6, "supermundane":4, "supermunicipal":6, "supermystery":5, "supernal":3, "supernally":4, "supernatural":5, "supernaturalise":6, "supernaturalised":6, "supernaturalism":6, "supernaturalising":7, "supernaturalistic":7, "supernaturalize":6, "supernaturalized":6, "supernaturalizing":7, "supernaturally":6, "supernaturalness":6, "supernatant":4, "supernatation":5, "supernation":4, "supernational":5, "supernationalism":6, "supernationalist":6, "supernationally":6, "supernegligence":5, "supernegligent":5, "supernecessity":6, "supernormal":4, "supernormality":6, "supernormally":5, "supernotable":5, "supernotableness":6, "supernova":4, "supernumeraries":6, "supernumerary":6, "supernumerous":5, "supernutrition":5, "superobject":4, "superobjection":5, "superobjectionable":7, "superobligation":6, "superobstinate":5, "superoccipital":6, "superocular":5, "superoffensive":5, "superofficious":5, "superopposition":6, "superoptimal":5, "superoptimist":5, "superorbital":5, "superordain":4, "superorder":4, "superordinary":6, "superordinate":5, "superordinated":6, "superordinating":6, "superordination":6, "superorganic":5, "superorganization":7, "superornament":5, "superornamental":6, "superoutput":4, "superoxalate":5, "superoxide":4, "superoxygenate":6, "superoxygenated":7, "superoxygenating":7, "superoxygenation":7, "superobese":4, "superobedience":6, "superobedient":6, "superoratorical":7, "superparamount":5, "superparasite":5, "superparasitic":6, "superparasitism":6, "superparliamentary":7, "superpassage":4, "superpatience":4, "superpatient":4, "superpatriot":5, "superpatriotic":6, "superpatriotism":6, "superpatriotically":8, "superperfect":4, "superperfection":5, "superperson":4, "superpersonal":5, "superpetrous":4, "superpetrosal":5, "superphosphate":4, "superphysical":5, "superphysiposed":5, "superphysiposing":6, "superpiety":5, "superpious":4, "superplausible":5, "superplausibleness":6, "superpolymer":5, "superpopulated":6, "superpopulation":6, "superpose":3, "superposable":5, "superpositive":5, "superpossition":5, "superpower":4, "superpowered":4, "superpolite":4, "superposition":5, "superpraise":3, "superpraised":3, "superpraising":4, "superpreparation":6, "superprecarious":6, "superprecise":4, "superprepared":4, "superprobability":7, "superprosperous":5, "superproduce":4, "superproduced":4, "superproducing":5, "superproduction":5, "superproportion":5, "superpublicity":6, "superpure":3, "superpurgation":5, "superpurity":5, "superqualified":5, "superqualify":5, "superqualifying":6, "superquote":3, "superquoted":4, "superquoting":4, "superrace":3, "superradical":5, "superrational":5, "superreformation":6, "superregistration":6, "superregulation":6, "superreaction":5, "superrefine":4, "superrefined":4, "superrefinement":5, "superrefining":5, "superreflection":5, "superreform":4, "superregal":4, "superregenerative":7, "superreliance":5, "superremuneration":7, "superrenal":4, "superrequirement":5, "superrespectable":6, "superrespectableness":7, "superrespectability":8, "superresponsibility":8, "superresponsible":6, "superresponsibleness":7, "superrestriction":5, "superreward":4, "superrighteous":4, "superromantic":5, "superromantically":7, "supersacerdotal":6, "supersacrifice":5, "supersafe":3, "supersafety":4, "supersaint":3, "supersaintly":4, "supersalesman":4, "supersalesmanship":5, "supersanction":4, "supersanguine":4, "supersanguinity":6, "supersanity":5, "supersarcasm":4, "supersarcastic":5, "supersarcastically":7, "supersatisfaction":6, "supersatisfied":5, "supersatisfy":5, "supersatisfying":6, "supersaturate":5, "supersaturated":6, "supersaturating":6, "supersaturation":6, "supersacral":4, "supersacred":4, "supersagacious":5, "superscandal":4, "superscandalous":5, "superscholarly":5, "superscientific":6, "superscientifically":8, "superscribe":3, "superscribed":3, "superscribing":4, "superscript":3, "superscription":4, "superseaman":4, "supersecular":5, "supersede":3, "supersedable":5, "superseded":4, "superseder":4, "superseding":4, "superseniority":6, "supersensible":5, "supersensibly":5, "supersensitise":5, "supersensitised":5, "supersensitiser":6, "supersensitising":6, "supersensitive":5, "supersensitiveness":6, "supersensitize":5, "supersensitized":5, "supersensitizing":6, "supersensory":5, "supersensual":5, "supersensualism":6, "supersensualist":6, "supersensualistic":7, "supersensuality":7, "supersensually":6, "supersensuous":5, "supersentimental":6, "superseptal":4, "superservice":4, "superserviceable":6, "superserviceableness":7, "superserviceably":6, "supersession":4, "supersex":3, "supersecret":4, "supersecretion":5, "supersecretive":5, "supersecure":4, "supersedure":4, "superselection":5, "superseraphic":5, "superseraphical":6, "superserious":5, "supersevere":4, "superseverity":6, "supershipment":4, "supersignificant":6, "supersimplicity":6, "supersimplified":5, "supersimplify":5, "supersimplifying":6, "supersincerity":6, "supersingular":5, "supersize":3, "supersilent":4, "supersmart":3, "supersoil":3, "supersolemn":4, "supersonic":4, "supersonics":4, "supersovereign":5, "supersovereignty":6, "supersolar":4, "supersolemnity":6, "supersolicit":5, "supersolicitation":7, "superspecification":7, "superspecialize":5, "superspecialized":5, "superspecializing":6, "superspecies":4, "supersphenoid":4, "supersphenoidal":5, "superspiritual":6, "superspirituality":8, "supersquamosal":5, "superstage":3, "superstamp":3, "superstandard":4, "superstar":3, "superstate":3, "superstatesman":4, "superstimulate":5, "superstimulated":6, "superstimulating":6, "superstimulation":6, "superstition":4, "superstitious":4, "superstoical":5, "superstrain":3, "superstratum":4, "superstrenuous":5, "superstrict":3, "superstrong":3, "superstruct":3, "superstructure":4, "superstructural":5, "superstylish":4, "supersublimated":6, "supersubsist":4, "supersubstantial":5, "supersubtilized":5, "supersubtle":4, "supersubtlety":5, "supersufficient":5, "supersufficiency":6, "supersulfate":4, "supersulfuized":5, "supersulfuizing":6, "supersulfureted":6, "supersulfurize":5, "supersulphate":4, "supersulphuized":5, "supersulphuizing":6, "supersulphureted":6, "supersulphurize":5, "supersurprise":4, "supersuspicion":5, "supersuspicious":5, "supersweet":3, "supersympathetic":6, "supersympathy":5, "supersyndicate":5, "supersystem":4, "supertanker":4, "supertartrate":4, "supertax":3, "supertempt":3, "supertemptation":5, "supertemporal":5, "supertension":4, "superterrestrial":6, "superthankful":4, "superthorough":4, "supertoleration":6, "supertonic":4, "supertower":4, "supertotal":4, "supertragedy":5, "supertragic":4, "supertragically":6, "supertrain":3, "supertranscendent":5, "supertreason":4, "supertrivial":5, "supertunic":4, "supertutelary":6, "superugly":4, "superurgent":4, "superurgency":5, "superunit":4, "superunity":5, "superuniverse":5, "superuniversal":6, "supervalue":4, "supervalued":4, "supervaluing":5, "supervast":3, "supervene":3, "supervened":3, "supervenience":4, "supervenient":4, "supervening":4, "supervestment":4, "supervexation":5, "supervenosity":6, "supervictorious":6, "supervictory":5, "supervigilance":5, "supervigilant":5, "supervigorous":5, "supervirulent":5, "supervise":3, "supervised":3, "supervising":4, "supervision":4, "supervisor":4, "supervisory":4, "supervisual":5, "supervital":4, "supervitality":6, "supervolition":5, "supervoluminous":6, "superwager":4, "superwealthy":4, "superwise":3, "superwoman":4, "superwomen":4, "superworldliness":5, "superworldly":4, "superwrought":3, "superyacht":3, "superzealous":4, "superi":3, "superior":4, "superior":4, "superior court":5, "superior planet":6, "superiority":6, "superiority complex":8, "supine":2, "supinely":3, "supineness":3, "supinate":3, "supinated":4, "supinating":4, "supination":4, "supinator":4, "suplex":2, "supr":2, "supra":2, "supraglottal":4, "suprahepatic":5, "supralapsarian":6, "supralapsarianism":7, "supraliminal":5, "supraliminally":6, "supramolecular":6, "supranatural":5, "supranaturalism":6, "supranaturalist":6, "supranaturalistic":7, "supranational":5, "supranationalism":6, "supraorbital":5, "supraprotest":4, "suprarational":5, "suprarenalin":5, "suprarenal":4, "suprarenal gland":5, "suprasegmental":5, "supratemporal":5, "supravaginal":5, "supreme":2, "supreme being":4, "supreme commander":5, "supreme court":3, "supreme sacrifice":5, "supreme soviet":5, "supremely":3, "supremeness":3, "supremacist":4, "supremacy":4, "suprematism":4, "supremo":3, "supremum":3, "suprme":3, "suqutra":3, "sura":2, "surah":2, "sural":2, "surat":2, "surat":2, "surabaja":4, "surabaya":4, "surakarta":4, "suribachi":4, "suricate":3, "surinam":3, "surinam toad":4, "suruses":3, "susa":2, "susah":2, "susan":2, "susanne":2, "susanna":3, "susannah":3, "susanowo":4, "susette":2, "sushi":2, "susi":2, "susie":2, "susian":3, "susiana":4, "susu":2, "susu":2, "susurrant":3, "susurrate":3, "susurration":4, "susurrous":3, "susurrus":3, "susy":2, "susy-q":2, "sutra":2, "suture":2, "sutured":2, "sutural":3, "suturally":4, "suturing":3, "suva":2, "suvorov":3, "suwannee":3, "suzan":2, "suzann":2, "suzanne":2, "suzerain":3, "suzerainty":4, "suzie":2, "suzuki":3, "svalbard":2, "svarabhakti":4, "svedberg":2, "svelte":1, "svelter":2, "sveltest":2, "sverdlovsk":2, "svetlana":3, "sverige":3, "svizzera":3, "swa":1, "swab":1, "swabber":2, "swabbing":2, "swacked":1, "swaddle":2, "swaddling clothes":3, "swag":1, "swage":1, "swagsman":2, "swager":2, "swagger":2, "swagger stick":3, "swaggering":3, "swaggeringly":4, "swaggi":2, "swagging":2, "swaging":2, "swagman":2, "swain":1, "swainish":2, "swale":1, "swallet":2, "swallow":2, "swallow dive":3, "swallow hole":3, "swallow-tailed":2, "swallow-tailed coat":3, "swallowable":4, "swallower":3, "swallowlike":3, "swallowtail":3, "swallowwort":3, "swam":1, "swamp":1, "swamp buggy":3, "swamp cypress":3, "swamp fever":3, "swamper":2, "swampier":3, "swampiest":3, "swampland":2, "swampless":2, "swampy":2, "swammerdam":3, "swan":1, "swan":1, "swan maiden":3, "swan-upping":2, "swang":1, "swank":1, "swankier":3, "swankiest":3, "swankily":3, "swankiness":3, "swanky":2, "swansdown":2, "swanherd":2, "swanlike":2, "swannery":3, "swansea":2, "swanskin":2, "swanson":2, "swap":1, "swapper":2, "swapping":2, "sward":1, "swarf":1, "swarm":1, "swarmer":2, "swart":1, "swarth":1, "swarthier":3, "swarthiest":3, "swarthily":3, "swarthiness":3, "swarthmore":2, "swarthness":2, "swarthy":2, "swartzite":2, "swarthout":2, "swash":1, "swash letter":3, "swashbuckler":3, "swashbucklering":4, "swashbuckling":3, "swasher":2, "swashingly":3, "swastika":3, "swastikaed":3, "swat":1, "swat":1, "swatch":1, "swath":1, "swathe":1, "swatheable":3, "swathable":3, "swather":2, "swats":1, "swatted":2, "swatter":2, "swatting":2, "sway":1, "swayable":3, "swayback":2, "swayer":2, "swayful":2, "swayingly":3, "swabia":3, "swabian":3, "swadeshi":3, "swahili":3, "swahilian":4, "swami":2, "swamy":2, "swanee":2, "swaraj":2, "swarajism":3, "swarajist":3, "swati":2, "swatow":2, "swazi":2, "swazi territory":6, "swaziland":3, "sweal":1, "swear":1, "swearer":2, "swearing":2, "swearingly":3, "swearword":2, "sweat":1, "sweatband":2, "sweatbox":2, "sweated":2, "sweater":2, "sweater girl":3, "sweating":2, "sweating sickness":4, "sweatier":3, "sweatiest":3, "sweatily":3, "sweatiness":3, "sweatless":2, "sweatshop":2, "sweatweed":2, "sweaty":2, "swede":1, "swede":1, "swedish":2, "sweep":1, "sweep-second":2, "sweeps":1, "sweepable":3, "sweepback":2, "sweeper":2, "sweeping":2, "sweepings":2, "sweepingly":3, "sweepingness":3, "sweepier":3, "sweepiest":3, "sweepstake":2, "sweepstakes":2, "sweepy":2, "sweer":1, "sweet":1, "sweet":1, "sweet alyssum":4, "sweet basil":3, "sweet cherry":3, "sweet chestnut":3, "sweet cicely":4, "sweet cider":3, "sweet clover":3, "sweet marjoram":4, "sweet pepper":3, "sweet potato":4, "sweet william":3, "sweet woodruff":3, "sweet-scented":2, "sweet-tempered":2, "sweet-temperedness":3, "sweetbells":2, "sweetbread":2, "sweetbriar":3, "sweetbrier":3, "sweeten":2, "sweetener":3, "sweetening":3, "sweetheart":2, "sweetheart agreement":5, "sweetie":2, "sweetiewife":3, "sweeting":2, "sweetleaf":2, "sweetless":2, "sweetlike":2, "sweetly":2, "sweetman":2, "sweetmeal":2, "sweetmeat":2, "sweetness":2, "sweetsop":2, "sweetwater":3, "sweetweed":2, "sweelinck":2, "sweeny":2, "sweeny":2, "swell":1, "swelled-headedness":3, "swellfish":2, "swellfishes":3, "swellhead":2, "swellheaded":3, "swellheadedness":4, "swelling":2, "swelter":2, "sweltering":3, "swelteringly":4, "swept":1, "sweptback":2, "sweptwing":2, "swerve":1, "swervable":3, "swerver":2, "sweven":2, "sweyn":1, "sweden":2, "swedenborg":3, "swedenborgism":4, "swedenborgism":4, "swedenborgian":5, "swedenborgianism":6, "swedish":2, "swedish massage":4, "swedish mile":3, "swg":1, "swift":1, "swift":1, "swift-footed":2, "swifter":2, "swiftie":2, "swiftlet":2, "swiftly":2, "swiftness":2, "swifty":2, "swig":1, "swigger":2, "swigging":2, "swill":1, "swiller":2, "swim":1, "swim bladder":3, "swimmable":3, "swimmeret":3, "swimming":2, "swimming bath":3, "swimming costume":4, "swimming pool":3, "swimmingly":3, "swimmingness":3, "swimsuit":2, "swine":1, "swine fever":3, "swine vesicular disease":7, "swineherd":2, "swineherdship":3, "swinepox":2, "swing":1, "swinge":1, "swingeing":2, "swingeingly":3, "swingable":3, "swingback":2, "swingboat":2, "swinger":2, "swinging":2, "swinging door":3, "swinging voter":4, "swingingly":3, "swingometer":4, "swingtree":2, "swink":1, "swinker":2, "swinking":2, "swinburne":2, "swindle":2, "swindle sheet":3, "swindled":2, "swindler":2, "swindleable":4, "swindlingly":3, "swindon":2, "swingle":2, "swinglebar":3, "swingletree":3, "swinish":2, "swinishly":3, "swinishness":3, "swinnerton":3, "swinney":2, "swipe":1, "swipes":1, "swiping":2, "swipple":2, "swirl":1, "swirlingly":3, "swirlier":3, "swirliest":3, "swirly":2, "swish":1, "swishingly":3, "swishier":3, "swishiest":3, "swishy":2, "swiss":1, "swiss muslin":3, "swisser":2, "swit":1, "switch":1, "switch-hitter":2, "switchback":2, "switchblade":2, "switchblade knife":3, "switchboard":2, "switcher":2, "switcherhit":3, "switcherhitting":4, "switcheroo":3, "switchgirl":2, "switchlike":2, "switchman":2, "switchover":3, "switchyard":2, "swith":1, "swither":2, "swithin":2, "swithun":2, "switz":1, "switzer":2, "switzerland":3, "switzerland":3, "swive":1, "swivel":2, "swivel chair":3, "swivel pin":3, "swiveled":2, "swivelled":2, "swiveling":3, "swivelling":3, "swiveltail":3, "swivet":2, "swizzle":2, "swizzle stick":3, "swiple":2, "swob":1, "swobbing":2, "swoln":1, "swollen":2, "swollen head":3, "swollenly":3, "swollenness":3, "swonk":1, "swonken":2, "swoon":1, "swoop":1, "swoose":1, "swoosh":1, "swooses":2, "swop":1, "swopping":2, "sword":1, "sword bayonet":4, "sword lily":3, "sword of damocles":5, "sword-bearer":2, "swordsman":2, "swordsmanship":3, "swordbearer":3, "swordbill":2, "swordcraft":2, "swordfish":2, "swordfishes":3, "swordless":2, "swordlike":2, "swordman":2, "swordmanship":3, "swordplay":2, "swordplayer":3, "swordstick":2, "swordtail":2, "swore":1, "sworn":1, "swot":1, "swotted":2, "swotter":2, "swotting":2, "swound":1, "swoyersville":3, "swum":1, "swung":1, "swy":1, "sybaris":3, "sybarite":3, "sybarite":3, "sybaritic":4, "sybaritism":4, "sybaritical":5, "sybaritically":6, "sybil":2, "syce":1, "sycamine":3, "sycamore":3, "sycamore":3, "sycophant":3, "sycophancy":4, "sycophantic":4, "sycophantically":6, "syd":1, "sydney":2, "sydney silky":4, "sydneysider":4, "syke":1, "syktyvkar":3, "syl":1, "syll":1, "sylph":1, "sylphic":2, "sylphid":2, "sylphidine":3, "sylphish":2, "sylphlike":2, "sylphy":2, "sylacauga":4, "syleus":3, "syllabic":3, "syllabically":5, "syllabicate":4, "syllabicated":5, "syllabicating":5, "syllabication":5, "syllabified":4, "syllabification":6, "syllabify":4, "syllabifying":5, "syllabography":5, "syllabogram":4, "syllabaries":4, "syllabary":4, "syllabi":3, "syllabise":3, "syllabised":3, "syllabism":3, "syllabising":4, "syllabize":3, "syllabized":3, "syllabizing":4, "syllable":3, "syllabub":3, "syllabus":3, "syllabus":3, "syllabuses":4, "syllagised":3, "syllagising":4, "syllepsis":3, "syllogia":3, "syllogise":3, "syllogism":3, "syllogiser":4, "syllogistic":4, "syllogistical":5, "syllogistically":6, "syllogize":3, "syllogizer":4, "sylphon":2, "sylva":2, "sylvan":2, "sylvana":3, "sylvanite":3, "sylvatic":3, "sylvania":4, "sylvanus":3, "sylvester":3, "sylvin":2, "sylvine":2, "sylvite":2, "sylvia":3, "sylviculture":4, "sylvius":3, "sym":1, "symptom":2, "symptomatology":6, "symptomless":3, "symptomatic":4, "symptomatical":5, "symptomatically":6, "symptosis":3, "symbiont":3, "symbiotic":4, "symbiotically":6, "symbiosis":4, "symbol":2, "symboled":2, "symbolled":2, "symbolic":3, "symbolic logic":5, "symbolics":3, "symboling":3, "symbolise":3, "symbolised":3, "symbolism":3, "symbolist":3, "symbolist movement":5, "symbolising":4, "symbolistic":4, "symbolistical":5, "symbolistically":6, "symbolize":3, "symbolized":3, "symbolizing":4, "symbolical":4, "symbolical books":5, "symbolically":5, "symbolicalness":5, "symbolling":3, "symbologist":4, "symbology":4, "symmachus":3, "symmetalism":4, "symmetallism":4, "symmetric":3, "symmetric matrix":5, "symmetrical":4, "symmetrically":5, "symmetricalness":5, "symmetrise":3, "symmetrised":3, "symmetrising":4, "symmetrize":3, "symmetrized":3, "symmetrizing":4, "symmetrization":5, "symmetry":3, "symonds":2, "sympathetectomy":6, "sympatric":3, "sympathectomy":5, "sympathetic":4, "sympathetic ink":5, "sympathetic magic":6, "sympathetical":5, "sympathin":3, "sympathise":3, "sympathised":3, "sympathiser":4, "sympathising":4, "sympathize":3, "sympathizer":4, "sympathizingly":5, "sympatholytic":5, "sympathomimetic":6, "sympathy":3, "sympathy strike":4, "sympetalous":4, "symphile":2, "symphonic":3, "symphonic poem":5, "symphonically":5, "symphonette":3, "symphonise":3, "symphonised":3, "symphonist":3, "symphonising":4, "symphonize":3, "symphonized":3, "symphonizing":4, "symphonia":4, "symphonious":4, "symphoniously":5, "symphonization":5, "symphony":3, "symphony orchestra":6, "symphyseal":4, "symphysial":4, "symphystic":3, "symphysis":3, "symplegades":4, "symploce":3, "sympodial":4, "sympodially":5, "sympodium":4, "symposia":4, "symposiac":4, "symposiarch":4, "symposium":4, "symposiums":4, "syn":1, "sync":1, "sync-generator":4, "synd":1, "syne":1, "synge":1, "syngman":2, "synop":1, "synaeresis":4, "synaesthetic":4, "synaesthesia":4, "synaesthesia":5, "synalgia":3, "synapse":2, "synapsis":3, "synaptene":3, "synaptic":3, "synaptically":5, "synarchy":3, "synarth":3, "synarthrosis":4, "synaxaria":5, "synaxarium":5, "synaxary":4, "synaxes":3, "synaxis":3, "synagog":3, "synagogue":3, "synagogical":5, "synalepha":4, "synaloepha":4, "synanon":3, "syncarp":2, "syncarpous":3, "syncarpy":3, "synchro":2, "synchro-cyclot":4, "synchronic":3, "synchronical":4, "synchronically":5, "synchronoscope":4, "synchrocyclotron":5, "synchroflash":3, "synchromesh":3, "synchronise":3, "synchronised":3, "synchronism":3, "synchroniser":4, "synchronising":4, "synchronistic":4, "synchronistical":5, "synchronistically":6, "synchronize":3, "synchronized":3, "synchronizer":4, "synchronizing":4, "synchronization":5, "synchronous":3, "synchronous converter":6, "synchronous machine":5, "synchronous motor":5, "synchronous orbit":5, "synchronously":4, "synchronousness":4, "synchroscope":3, "synchrotron":3, "synchrotron radiation":7, "synclastic":3, "syncline":2, "synclinal":3, "synclinorium":5, "syncom":2, "syncopate":3, "syncopated":4, "syncopation":4, "syncopator":4, "syncope":3, "syncretic":3, "syncretise":3, "syncretism":3, "syncretize":3, "syncretized":3, "syncretizing":4, "syncrisis":3, "syncytium":4, "syncytial":3, "syndactyl":3, "syndactyle":3, "syndactylism":4, "syndactyli":4, "syndactylus":4, "syndesmotic":4, "syndesmosis":4, "syndet":2, "syndetic":3, "syndetical":4, "syndetically":5, "synderesis":4, "syndesis":3, "syndeton":3, "syndic":2, "syndicship":3, "syndicalism":4, "syndicalist":4, "syndicalistic":5, "syndicate":3, "syndicated":4, "syndicating":4, "syndiotactic":5, "syndrome":2, "syndromic":3, "synechia":4, "synechiae":4, "synecdochic":4, "synecdochically":6, "synecdoche":4, "synecologic":5, "synecologically":7, "synectics":3, "syneresis":4, "synergetic":4, "synergism":3, "synergist":3, "synergistic":4, "synergistically":6, "synergy":3, "synesthetic":4, "synesthesia":4, "synesthesia":5, "synechist":3, "synechistic":4, "synecious":3, "synecology":5, "synesis":3, "syngamic":3, "syngamy":3, "syngenesis":4, "synizesis":4, "synkaryon":4, "synnema":3, "synnemata":4, "synod":2, "synodal":3, "synodic":3, "synodic month":4, "synodical":4, "synodically":5, "synoecete":3, "synoecious":3, "synoeciousness":4, "synoekete":3, "synoicous":3, "synoicousness":4, "synonymise":4, "synonymised":4, "synonymising":5, "synonymize":4, "synonymized":4, "synonymizing":5, "synonymous":4, "synonymously":5, "synonymousness":5, "synonymy":4, "synophthalmia":5, "synopsis":3, "synopsise":3, "synopsised":3, "synopsising":4, "synopsize":3, "synopsized":3, "synopsizing":4, "synoptic":3, "synoptist":3, "synoptistic":4, "synosteosis":5, "synostotic":4, "synostotically":6, "synostosis":4, "synonym":3, "synonymic":4, "synonymical":5, "synonymity":5, "synovia":4, "synovial":4, "synovially":5, "synovitis":4, "synsacral":3, "synsepalous":4, "syntactic":3, "syntactics":3, "syntactical":4, "syntactically":5, "syntagm":2, "syntagma":3, "syntality":4, "syntax":2, "synteresis":4, "synthetic":3, "synthetic rubber":5, "synthetical":4, "synthesis":3, "synthesist":3, "synthesize":3, "synthesized":3, "synthesizer":4, "synthesizing":4, "synthesization":5, "synthetise":3, "synthetised":3, "synthetism":3, "synthetism":3, "synthetiser":4, "synthetising":4, "synthetizer":4, "synthol":2, "syntonic":3, "syntonical":4, "syntonically":5, "syntonise":3, "syntonised":3, "syntonising":4, "syntonize":3, "syntonized":3, "syntonizer":4, "syntonizing":4, "syntonization":5, "syntonous":3, "syntrophoblastic":5, "syntype":2, "syntypic":3, "syph":1, "syphilis":3, "syphilitically":6, "syphilize":3, "syphilized":3, "syphilizing":4, "syphilisation":5, "syphilization":5, "syphiloid":3, "syphilologist":5, "syphilology":5, "syphiloma":4, "syr":1, "syr":1, "syr darya":3, "syracuse":3, "syrinx":2, "syrinx":2, "syria":3, "syriac":3, "syrian":3, "syrphid":2, "syrtis major":4, "syrup":2, "syruplike":3, "syrupy":3, "syst":1, "syssarcosis":4, "systaltic":3, "system":2, "systemless":2, "systems analysis":6, "systems engineering":6, "systematic":4, "systematics":4, "systematical":5, "systematise":4, "systematised":4, "systematism":4, "systematist":4, "systematiser":5, "systematising":5, "systematize":4, "systematized":4, "systematizer":5, "systematizing":5, "systematization":6, "systematology":6, "systemic":3, "systemise":3, "systemised":3, "systemiser":4, "systemising":4, "systemize":3, "systemized":3, "systemizable":5, "systemizer":4, "systemizing":4, "systemisation":5, "systemization":5, "systemoid":3, "systole":3, "syzran":2, "syzygy":3, "syble":2, "sycee":2, "sycee silver":4, "sychaeus":3, "sycon":2, "syconium":4, "sycophantishly":5, "sycosis":3, "syene":3, "syenite":3, "syenitic":4, "symaethis":3, "symington":3, "symons":2, "synapte":3, "synaxaria":5, "synaxarion":5, "synetic":3, "synoetic":3, "sypher":2, "syphon":2, "syracuse":3, "syringe":2, "syringeful":3, "syringa":3, "syringes":3, "syringeal":4, "syringomyelic":6, "syringomyelia":7, "syzygial":4, "szabadka":3, "szczecin":2, "szell":1, "szechwan":2, "szeged":2, "szewinska":3, "szigeti":3, "szilard":2, "szold":1, "szombathely":3, "szymanowski":4, "szymanowski":4, "sndor":3, "sance":3, "skou":3, "svign":5, "smmering":4, "sderblom":4, "srchrjcharged":5, "srchrjcharging":6, "srmised":3, "srmising":4, "srta":3, "schow":2, "srac":2, "svign":3, "t distribution":5, "t number":3, "t'ai-yan":2, "t'other":2, "t-bevel":2, "t-group":1, "t-junction":2, "t-man":1, "t-number":2, "t-shirt":1, "t-stop":1, "ta'en":1, "ta-ta":1, "taal":1, "taata":2, "tab":1, "tab":1, "tab":1, "tabard":2, "tabarded":3, "tabanid":3, "tabaret":3, "tabbied":2, "tabbing":2, "tabbinet":3, "tabby":2, "tabby":2, "tabbying":3, "tabernacle":4, "tabernacular":5, "tabid":2, "tabinet":3, "tabitha":3, "tabla":2, "tablature":3, "tableau":2, "tableaux":2, "tablet":2, "tableted":3, "tableting":3, "tabletted":3, "tabletting":3, "tablinum":3, "tabloid":2, "tabouret":3, "taboret":3, "taborin":3, "tabret":2, "tabula rasa":5, "tabular":3, "tabularise":4, "tabularised":4, "tabularising":5, "tabularize":4, "tabularized":4, "tabularizing":5, "tabularization":6, "tabularly":4, "tabulate":3, "tabulated":4, "tabulating":4, "tabulable":4, "tabulation":4, "tabulator":4, "tace":1, "tache":1, "tacheometer":5, "tacheometry":5, "tachina fly":4, "tachogram":3, "tachograph":3, "tachypnea":4, "tachypneic":4, "tachypnoea":4, "tachypnoeic":4, "tachyauxetic":5, "tachyauxesis":5, "tachycardia":5, "tachygraph":3, "tachygraphic":4, "tachygraphically":6, "tachylite":3, "tachylyte":3, "tachyon":3, "tachyphylactic":5, "tachyphylaxis":5, "tachyphylaxia":6, "tack":1, "tack hammer":3, "tacker":2, "tacket":2, "tacketed":3, "tackey":2, "tackies":2, "tackier":3, "tackiest":3, "tackiness":3, "tackle":2, "tackler":2, "tackless":2, "tackling":2, "tacky":2, "tact":1, "tactful":2, "tactless":2, "tactlessly":3, "tactlessness":3, "tacamahac":4, "tacit":2, "tacitly":3, "tacitness":3, "tacitean":4, "taciturn":3, "taciturnity":5, "taciturnly":4, "tacitus":3, "tacmahack":3, "tacna-arica":4, "tacnode":2, "taconite":3, "tacpoint":2, "tacquet":2, "tactic":2, "tactics":2, "tactile":2, "taction":2, "tactical":3, "tactically":4, "tactician":3, "tactus":2, "tactual":3, "tactually":4, "tad":1, "tad":1, "taddeo":3, "tadema":3, "tadmor":2, "tadpole":2, "tae":1, "tael":1, "taedium vitae":5, "taegu":2, "taejon":2, "taenidia":4, "taenidial":4, "taenidium":4, "taenite":2, "taenia":3, "taeniacide":4, "taeniacidal":5, "taeniafuge":4, "taeniasis":4, "taffrail":2, "taft":1, "taffeta":3, "taffia":3, "taffy":2, "taffy":2, "tafia":3, "tag":1, "taggard":2, "tagger":2, "taggers":2, "tagging":2, "taglike":2, "taglock":2, "tagmeme":2, "tagmemics":3, "tagmemic":3, "tagmemics":3, "tagrag":2, "tahr":1, "tahlequah":3, "tahseeldar":3, "tahsil":2, "tahsildar":3, "tai":1, "taig":1, "taiglach":2, "tail":1, "tail covert":3, "tail rotor":3, "tail-heavy":2, "taille":1, "tails":1, "tailback":2, "tailband":2, "tailboard":2, "tailcoat":2, "tailer":2, "tailfirst":2, "tailgate":2, "tailgated":3, "tailgater":3, "tailgating":3, "tailing":2, "tailings":2, "taillamp":2, "tailless":2, "taillessly":3, "taillessness":3, "taillight":2, "taillike":2, "tailpiece":2, "tailpipe":2, "tailplane":2, "tailrace":2, "tailshaft":2, "tailskid":2, "tailspin":2, "tailstock":2, "tailwater":3, "tailwind":2, "tain":1, "taine":1, "taint":1, "taintless":2, "taintlessly":3, "taintlessness":3, "taichu":2, "taichung":2, "taiden":2, "taiga":2, "taihoku":3, "taikyu":2, "tailor":2, "tailor's chalk":3, "tailor's-tack":2, "tailor-made":2, "tailor-make":2, "tailored":2, "tailorbird":3, "taimade":2, "taimaking":3, "taimyr peninsula":6, "tainan":2, "taino":2, "taipan":2, "taipei":2, "taiping":2, "taira":2, "taisho":2, "taiwan":2, "taiwan strait":3, "taiwanese":3, "taiyuan":3, "taiyan":3, "taj":1, "taj mahal":3, "take":1, "take after":3, "take aback":3, "take apart":3, "take over":3, "take-in":1, "take-over":2, "take-up":1, "takeaway":3, "takedown":2, "takeoff":2, "takeover":3, "takamatsu":4, "taken":2, "taker":2, "taker-in":2, "takin":2, "taking":2, "tal-laisim":2, "talc":1, "talcing":2, "talcose":2, "talcous":2, "tale":1, "talesman":2, "talebearer":3, "talebearing":3, "talk":1, "talk about":3, "talk into":3, "talkability":5, "talkable":3, "talkathon":3, "talkative":3, "talkatively":4, "talkativeness":4, "talker":2, "talkfest":2, "talkie":2, "talking book":3, "talking-to":2, "talkier":3, "talkiest":3, "talky":2, "tall":1, "tall poppy":3, "tally":1, "tallboy":2, "tallchief":2, "tallness":2, "talapoin":3, "talbot":2, "talca":2, "talcahuano":4, "talcott":2, "talcum":2, "talcum powder":4, "talent":2, "talent scout":3, "talented":3, "talisman":3, "talismanic":4, "talismanically":6, "taliesin":4, "taligrade":3, "talion":3, "taliped":3, "talipes":3, "talipot":3, "talipot palm":4, "tallage":2, "talladega":4, "tallahassee":4, "tallapoosa":4, "talleyrand-prigord":6, "talleyrand-prigord":5, "tallied":2, "tallin":2, "talling":2, "tallinn":2, "tallis":2, "tallith":2, "tallitoth":3, "tallow":2, "tallow wood":3, "tallowiness":4, "tallowlike":3, "tallowy":3, "tallulah":3, "tally":2, "tallys":2, "tallyho":3, "tallyho'd":3, "tallyhoing":4, "tallying":3, "tallyman":3, "tallyshop":3, "talmud":2, "talmudism":3, "talmudist":3, "talon":2, "taloned":2, "talthybius":4, "talweg":2, "talys":2, "tam":1, "tam":1, "tam":1, "tam-o'-shanter":2, "tam-tam":1, "tame":1, "tameability":5, "tameable":3, "tameableness":4, "tameless":2, "tamelessly":3, "tamelessness":3, "tammlie":2, "tamp":1, "tamping":2, "tamping mad":3, "tamandu":3, "tamable":3, "tamarack":3, "tamarin":3, "tamarind":3, "tamarindo":4, "tamarisk":3, "tamasine":3, "tambac":2, "tambo":2, "tambour":2, "tamboura":3, "tamboura":3, "tambourin":3, "tambourine":3, "tambov":2, "tambora":3, "tambur":2, "tamburlaine":3, "tambura":3, "tamer":2, "tamerlane":3, "tamest":2, "tamil":2, "taming":2, "tamis":2, "tamises":2, "tammany hall":4, "tammanyism":4, "tammanyite":4, "tammerfors":3, "tammie":2, "tammuz":2, "tammy":2, "tammy":2, "tampa":2, "tampan":2, "tamper":2, "tamperer":3, "tampere":3, "tampico":3, "tampion":3, "tampon":2, "tamponade":3, "tamponage":3, "tampur":2, "tamworth":2, "tan":1, "tang":1, "tang":1, "tangier":3, "tangiest":3, "tangshan":2, "tanguile":3, "tangy":2, "tanh":1, "tank":1, "tank engine":3, "tank farming":3, "tank wagon":3, "tanked":1, "tankage":2, "tankard":2, "tanker":2, "tankful":2, "tankless":2, "tanklike":2, "tankship":2, "tannhuser":4, "tannhser":3, "tanager":3, "tanagra":3, "tanagrine":3, "tanana":3, "tanaquil":3, "tanbark":2, "tanbur":2, "tancred":2, "tandem":2, "tandem-compound":3, "tandjungpriok":4, "tandoori":3, "tanga":2, "tanga":2, "tanganyika":4, "tanganyikan":4, "tangent":2, "tangent galvanometer":7, "tangent-saw":2, "tangency":3, "tangential":3, "tangelo":3, "tangerine":3, "tangier":2, "tangibility":5, "tangible":3, "tangibleness":4, "tangibly":3, "tangle":2, "tangled":2, "tangler":2, "tangleberry":4, "tanglement":3, "tangly":2, "tango":2, "tangoreceptor":5, "tangram":2, "tanguy":2, "tania":2, "tanist":2, "tanistry":3, "taniness":3, "tanjore":2, "tanjungpandan":4, "tanjungpriok":4, "tanka":2, "tanna":2, "tannage":2, "tannate":2, "tannable":3, "tannaim":3, "tannaitic":4, "tannenberg":3, "tanner":2, "tannery":3, "tannic":2, "tannin":2, "tanning":2, "tannish":2, "tansawn":2, "tansawing":3, "tansy":2, "tanta":2, "tantalic":3, "tantalic acid":5, "tantalate":3, "tantalise":3, "tantalised":3, "tantaliser":4, "tantalising":4, "tantalisingly":5, "tantalite":3, "tantalize":3, "tantalizing":4, "tantalizingly":5, "tantalization":5, "tantalous":3, "tantalum":3, "tantalus":3, "tantalus":3, "tantaluses":4, "tantamount":3, "tantara":3, "tantivies":3, "tantivy":3, "tanto":2, "tantra":2, "tantric":2, "tantrik":2, "tantrism":2, "tantrist":2, "tantrika":3, "tantrum":2, "tanya":2, "tanzania":4, "tao":1, "taos":1, "taoist":2, "taoistic":3, "tap":1, "tap water":3, "tap-dancer":2, "tape":1, "tape machine":3, "tape measure":3, "tape recorder":4, "tape recording":4, "tape-record":2, "tapeless":2, "tapelike":2, "tapeline":2, "tapeman":2, "tapeworm":2, "taphephobia":5, "taps":1, "tapaculo":4, "tapadera":4, "taper":2, "tapestried":3, "tapestry":3, "tapestrying":4, "taphole":2, "taphouse":2, "tapis":2, "tapioca":4, "tapioca-plant":4, "tapiolite":4, "tapley":2, "tappable":3, "tapper":2, "tappet":2, "tapping":2, "tappit-hen":2, "taproom":2, "taproot":2, "tapsal-teerie":3, "tapsie-teerie":3, "tapster":2, "tar":1, "tarbes":1, "tarde":1, "tare":1, "targe":1, "tarlton":2, "tarn":1, "tarn":1, "tarn-et-garonne":2, "tarnkappe":3, "tarp":1, "tart":1, "tartish":2, "tartishly":3, "tartlet":2, "tartly":2, "tartness":2, "tara":2, "tarantism":3, "tarantist":3, "tarantella":4, "taradiddle":4, "taranis":3, "tarbell":2, "tarboosh":2, "tarboro":3, "tarbouche":2, "tarbrush":2, "tarbush":2, "tarbuttite":3, "tardenoisian":5, "tardieu":2, "tardier":3, "tardiest":3, "tardigrade":3, "tardo":2, "tardy":2, "tarentism":3, "target":2, "target language":4, "target man":3, "targeteer":3, "targetless":3, "targitaus":4, "targum":2, "targums":2, "targumic":3, "targumist":3, "tarheel":2, "tariff":2, "tariffless":3, "taring":2, "tarkington":3, "tarlac":2, "tarlatan":3, "tarletan":3, "tarmac":2, "tarn":2, "tarnal":2, "tarnation":3, "tarne":2, "tarnish":2, "tarnishable":4, "tarnopol":3, "tarnw":3, "tarpan":2, "tarpaulin":3, "tarpeia":3, "tarpeian rock":4, "tarpon":2, "tarquin":2, "tarradiddle":4, "tarragon":3, "tarragona":4, "tarrasa":3, "tarried":2, "tarring":2, "tarriance":3, "tarrier":3, "tarry":2, "tarrying":3, "tarsal":2, "tarshish":2, "tarsia":3, "tarsier":3, "tarski":2, "tarsometatarsus":6, "tarsus":2, "tarsus":2, "tartan":2, "tartana":3, "tartar":2, "tartar":2, "tartar emetic":5, "tartar sauce":3, "tartar steak":3, "tartarean":4, "tartaric":3, "tartaric acid":5, "tartarise":3, "tartarize":3, "tartarizing":4, "tartarian":4, "tartarization":5, "tartarous":3, "tartarus":3, "tartary":3, "tartini":3, "tartrate":2, "tartrated":3, "tartrazine":3, "tartu":2, "tartufe":2, "tartuffe":2, "tartuffery":4, "tarzan":2, "tas":1, "tashkend":2, "tashkent":2, "tashlich":2, "task":1, "taskless":2, "taskmaster":3, "taskmastership":4, "taskmistress":3, "taskwork":2, "tass":1, "tass":1, "tasse":1, "tassie":2, "taste":1, "tasteful":2, "tastefully":3, "tastefulness":3, "tasteless":2, "tastelessly":3, "tastelessness":3, "tasted":2, "taster":2, "tasting":2, "tastily":3, "tastiness":3, "tasty":2, "tasimetric":4, "tasker":2, "tasman":2, "tasman sea":3, "tasmania":4, "tasmanian":4, "tasmanian devil":6, "tasmanian wolf":5, "tassel":2, "tasseled":2, "tasselled":2, "tasseler":3, "tasseling":3, "tasseller":3, "tasselling":3, "tasselly":3, "tasset":2, "tassie":2, "tassie":2, "tasso":2, "tassy":2, "tat":1, "tate":1, "tatler":2, "tatouay":3, "tatted":2, "tatter":2, "tattered":2, "tatterdemalion":5, "tattersall":3, "tattie":2, "tatting":2, "tattily":3, "tattiness":3, "tattle":2, "tattler":2, "tattletale":3, "tattlingly":3, "tattoo":2, "tattooed":2, "tattooer":3, "tattooing":3, "tattooist":3, "tatty":2, "tatty-peelin":3, "tau":1, "tauchnitz":2, "taught":1, "taunt":1, "taunter":2, "tauntingly":3, "taunton":2, "taupe":1, "taussig":2, "taut":1, "tauten":2, "taupo":2, "tauranga":3, "tauri":2, "taurine":2, "tauriform":3, "tauromachy":4, "taurobolia":5, "taurobolium":5, "tauromachian":5, "tauromaquia":4, "taurus":2, "taurus mountains":4, "tautog":2, "tautologise":4, "tautologised":4, "tautologism":4, "tautologist":4, "tautologising":5, "tautologize":4, "tautologized":4, "tautologizing":5, "tautologously":5, "tautology":4, "tautology":4, "tautomerism":4, "tautomerize":4, "tautomerized":4, "tautomerizable":6, "tautomerizing":5, "tautomerization":6, "tautochrone":3, "tautological":5, "tautologically":6, "tautomer":3, "tautomeric":4, "tautonym":3, "tav":1, "tavr":1, "tavern":2, "taverner":3, "taverner":3, "tavernless":3, "taverner":3, "taw":1, "taws":1, "tawse":1, "tawdrier":3, "tawdriest":3, "tawdrily":3, "tawdriness":3, "tawdry":2, "tawer":2, "tawie":2, "tawney":2, "tawney":2, "tawnier":3, "tawniest":3, "tawny":2, "tawny owl":3, "tawpy":2, "tawyer":2, "tax":1, "tax avoidance":4, "tax evasion":4, "tax haven":3, "tax return":3, "tax shelter":3, "tax-deductible":4, "tax-exempt":2, "taxability":5, "taxable":3, "taxableness":4, "taxably":3, "taxaceous":3, "taxation":3, "taxational":4, "taxeme":2, "taxgathering":4, "taxi":2, "taxi truck":3, "taxied":2, "taxies":2, "taxis":2, "taxite":2, "taxitic":3, "taxicab":3, "taxidermal":4, "taxidermic":4, "taxidermist":4, "taxidermy":4, "taxiing":3, "taxila":3, "taximeter":4, "taxiplane":3, "taxiway":3, "taxon":2, "taxonomer":4, "taxonomist":4, "taxonomy":4, "taxonomic":4, "taxonomically":6, "taxpaid":2, "taxpayer":3, "taxpaying":3, "taxying":3, "tay":1, "tay":1, "taylor":2, "taylor's series":4, "taylorite":3, "taylorville":3, "taymyr peninsula":6, "tayra":2, "tayside region":4, "tazewell":2, "tazza":2, "taal":2, "tabasco":3, "taber":2, "tabes":2, "tabes dorsalis":5, "tabescence":3, "tabescent":3, "tabi":2, "table":2, "table bay":3, "table d'hote":3, "table licence":4, "table mountain":4, "table money":4, "table napkin":4, "table salt":3, "table tennis":4, "table wine":3, "table-d'hte":3, "table-hop":2, "table-hopper":3, "table-turning":3, "tableau vivant":4, "tablecloth":3, "tableful":3, "tableland":3, "tablespoon":3, "tablespoonful":4, "tableware":3, "tabling":2, "taboo":2, "tabooed":2, "tabooing":3, "tabor":2, "tabor":2, "taborer":3, "taborite":3, "tabour":2, "tabourer":3, "tabriz":2, "tabu":2, "tacet":2, "tachi":2, "tachisme":2, "tachistoscope":4, "tachistoscopic":5, "tachistoscopically":7, "tachometer":4, "tachygrapher":4, "tachygraphist":4, "tachygraphy":4, "tachymeter":4, "tachymetry":4, "tachysterol":4, "tacloban":3, "taco":2, "tacoma":3, "tacoman":3, "tacubaya":4, "tadeus":3, "tadjik":2, "tadzhik":2, "tadzhiki":3, "tadzhikistan":4, "tafilalet":4, "tafilelt":3, "taganrog":3, "tagalog":3, "tagliarini":4, "tagliatelle":4, "tagore":2, "tagus":2, "tahina":3, "tahiti":3, "tahitian":3, "tahoe":2, "tahopped":2, "tahopping":3, "tahoka":3, "taif":2, "tajik":2, "tajo":2, "taka":2, "takao":2, "takahe":3, "takamatsu":4, "takoradi":4, "taku":2, "talaemenes":4, "talaing":2, "talaria":4, "talassio":4, "talara":3, "taler":2, "tales":2, "talien":2, "taliesin":4, "talooka":3, "talos":2, "taluk":2, "talus":2, "taluses":3, "taluka":3, "tama":2, "tamandu":3, "tamandua":3, "tamandua":4, "tamar":2, "tamara":3, "tamas":2, "tamasic":3, "tamaulipas":4, "tamale":3, "tamale":3, "tamara":3, "tamarao":3, "tamarau":3, "tamasha":3, "tamatave":3, "tamayo":3, "tamesada":4, "tamil nadu":4, "tana":2, "tana":2, "tanach":2, "tananarive":4, "tanaron":3, "tane":2, "taney":2, "tanis":2, "tao":2, "taoism":3, "tapa":2, "tapas":2, "tapaj":3, "tapajs":4, "taper":2, "taperer":3, "taperingly":4, "taperstick":3, "tapetal":3, "tapetum":3, "taphiae":3, "tapir":2, "tarai":2, "tarantas":3, "tarantass":3, "taranto":3, "tarantula":4, "tarantula nebula":7, "taraxacum":4, "tarabulus el gharb":6, "tarabulus esh sham":6, "taradiddle":4, "taramasalata":6, "tarapoto":4, "tarata":3, "tarawa":3, "tarentum":3, "tarim":2, "tarija":3, "taro":2, "tarok":2, "tarot":2, "tarogato":4, "taruntius":3, "tasajillo":4, "tashi lama":4, "tashusai":3, "tasimeter":4, "tasimetry":4, "tatar":2, "tatar strait":3, "tatarian":4, "tatami":3, "tatary":3, "tater":2, "tathagata":4, "tathata":3, "tati":2, "tatiana":3, "tatius":2, "tatra mountains":4, "tatum":2, "tavares":3, "tavel":2, "tbilisi":3, "tbs":1, "tbsp":1, "tchaikovsky":3, "tcheckup":2, "tchervonetz":3, "tchervovontzi":4, "tchekhov":2, "tcherepnin":3, "te deum":3, "te igitur":4, "te kanawa":4, "te-hee":1, "tea":1, "tea biscuit":3, "tea cosy":3, "tea service":3, "tea towel":3, "tea trolley":3, "tea wagon":3, "tea-maker":2, "tea-of-heaven":2, "tea-table":2, "teach":1, "teacher":2, "teacherless":3, "teachership":3, "teaching":2, "teaching aid":3, "teaching fellow":4, "teaching machine":4, "teak":1, "teakwood":2, "teal":1, "team":1, "team spirit":3, "team teaching":3, "teamer":2, "teammate":2, "teamster":2, "teamwork":2, "tear":1, "tear away":3, "tear into":3, "tear-jerker":2, "tears":1, "tearable":3, "tearableness":4, "teardown":2, "teardrop":2, "tearer":2, "tearful":2, "tearfully":3, "tearfulness":3, "tearing":2, "tearingly":3, "tearier":3, "teariest":3, "tearily":3, "teariness":3, "tearjerker":3, "tearless":2, "tearlessly":3, "tearlessness":3, "teary":2, "tease":1, "teasable":3, "teasableness":4, "teasdale":2, "teaser":2, "teasing":2, "teasingly":3, "teat":1, "teaberry":3, "teacake":2, "teacart":2, "teacup":2, "teacupful":3, "teagarden":3, "teahouse":2, "teahouses":3, "teakettle":3, "tealess":2, "teaneck":2, "teapot":2, "teapoy":2, "tearoom":2, "teasel":2, "teaseler":3, "teaseller":3, "teashop":2, "teaspoon":2, "teaspoonful":3, "teataster":3, "teatime":2, "teazel":2, "teazeled":2, "teazelled":2, "teazeling":3, "teazelling":3, "teazle":2, "tech":1, "techier":3, "techiest":3, "techily":3, "techiness":3, "technetium":4, "technic":2, "technics":2, "technique":2, "technical":3, "technical college":5, "technical knockout":5, "technical sergeant":5, "technicality":5, "technically":4, "technicalness":4, "technician":3, "technicolor":4, "technocracy":4, "technography":4, "technologist":4, "technology":4, "technocrat":3, "technologic":4, "technologically":6, "technostructure":4, "techy":2, "tecassir":3, "tecmessa":3, "tecton":2, "tectonic":3, "tectonics":3, "tectonically":5, "tectorial membrane":6, "tectrix":2, "tectrices":3, "tectricial":3, "ted":1, "ted":1, "tedded":2, "tedder":2, "tedder":2, "teddie":2, "tedding":2, "teddy":2, "teddy":2, "teddy bear":3, "teddy boy":3, "teddy girl":3, "tee":1, "teel":1, "teem":1, "teemer":2, "teeming":2, "teemingly":3, "teemingness":3, "teen":1, "teen-ager":2, "teens":1, "teentsy-weentsy":3, "teenage":2, "teenaged":2, "teenager":3, "teensie-weensie":3, "teensy":2, "teensy-weensy":3, "tees":1, "teesside":2, "teeth":1, "teethe":1, "teether":2, "teething":2, "teething ring":3, "teething troubles":4, "teethless":2, "teethridge":2, "teeing":2, "teenie-weenie":3, "teenier":3, "teeniest":3, "teeny":2, "teeny-weeny":3, "teenybopper":4, "teepee":2, "teeter":2, "teeter-totter":3, "teeterboard":3, "teetotal":3, "teetotaler":4, "teetotalism":4, "teetotalist":4, "teetotaller":4, "teetotally":4, "teetotum":3, "tef":1, "teff":1, "teflon":2, "teg":1, "tegmen":2, "tegmina":3, "tegminal":3, "teguguria":5, "tegula":3, "tegular":3, "tegularly":4, "tegument":3, "teh":1, "teiglach":2, "teil":1, "teilhard de chardin":5, "teind":1, "teide":2, "tekakwitha":4, "tekel":2, "teknonymous":4, "teknonymously":5, "teknonymy":4, "tektite":2, "tektosilicate":5, "tel":1, "tel aviv":3, "tele":1, "teleg":1, "tell":1, "tell":1, "tell apart":3, "tell el amarna":5, "teller":2, "tellership":3, "telling":2, "tellingly":3, "telltale":2, "telltalely":3, "telaesthesia":5, "telangiectatic":6, "telangiectasis":6, "telangiectasia":7, "telanthropus":4, "telautography":5, "telautograph":4, "telautographic":5, "telamon":3, "telamon":3, "telamones":4, "telanaipura":5, "telchines":3, "tele":2, "telegnostic":4, "telegnosis":4, "telencephalon":5, "telencephalic":5, "telesteria":5, "telesthetic":4, "telesthesia":4, "telesthesia":5, "telex":2, "telex":2, "teleboides":4, "telecast":3, "telecommunication":7, "telecommunications":7, "telecourse":3, "teledu":3, "telefilm":3, "telegenic":4, "telegonic":4, "telegram":3, "telegrammatic":5, "telegrammic":4, "telegraph":3, "telegraph plant":4, "telegraphese":4, "telegraphic":4, "telegraphical":5, "telegraphically":6, "telegu":3, "telekinesis":5, "telemark":3, "telemechanics":5, "telemotor":4, "teleologist":5, "teleology":5, "teleost":3, "teleostean":5, "telepathic":4, "telepathically":6, "telephassa":4, "telephone":3, "telephone box":4, "telephone directory":7, "telephone number":5, "telephoned":3, "telephonic":4, "telephoning":4, "telephonically":6, "telephonograph":5, "telephoto":4, "telephoto lens":5, "telephotography":6, "telephotometer":6, "telephotographic":6, "telephus":3, "teleplasm":3, "teleplasmic":4, "teleplay":3, "teleport":3, "teleprinter":4, "teleprompter":4, "teleran":3, "teleran":3, "telescope":3, "telescoped":3, "telescopic":4, "telescopic sight":5, "telescoping":4, "telescopical":5, "telescopically":6, "telescopii":5, "telescopium":5, "telescript":3, "telesis":3, "telespectroscope":5, "telestereoscope":6, "telethermometer":6, "telethermometry":6, "telethon":3, "teletranscription":5, "teletube":3, "teletype":3, "teletypesetter":5, "teletypewriter":5, "teletypist":4, "televise":3, "television":4, "television tube":5, "televisional":5, "televisionally":6, "televisionary":6, "televisor":4, "telewriter":4, "telfer":2, "telferage":3, "telford":2, "telford":2, "telic":2, "telically":4, "teller":2, "tellin":2, "tello":2, "telloh":2, "tellus":2, "tellurate":3, "telluric":3, "telluric acid":5, "telluride":3, "tellurise":3, "tellurite":3, "tellurize":3, "tellurized":3, "tellurizing":4, "tellurian":4, "tellurion":4, "tellurium":4, "tellurometer":5, "tellurous":3, "telly":2, "telodynamic":5, "telolecithal":5, "telophase":3, "telophasic":4, "telotaxis":4, "telpher":2, "telpherage":3, "telphusa":3, "telson":2, "telsonic":3, "telstar":2, "telugu":3, "temp":1, "tempt":1, "temptable":3, "tempter":2, "tempting":2, "temptingly":3, "temptingness":3, "temptress":2, "temptation":3, "temblor":2, "temblores":3, "temerarious":5, "temerariously":6, "temerariousness":6, "temesv":3, "temesvr":4, "temenus":3, "temne":2, "tempe":2, "tempel":2, "temper":2, "tempered":2, "tempera":3, "temperance":3, "temperate":3, "temperate zone":4, "temperately":4, "temperateness":4, "temperament":4, "temperamental":5, "temperameperamentally":9, "temperature":4, "temperature gradient":7, "temperature-humidity index":9, "tempest":2, "tempest-tossed":2, "tempest-tost":2, "tempestates":4, "tempestuous":4, "tempestuously":5, "tempestuousness":5, "tempi":2, "templar":2, "template":2, "temple":2, "temple":2, "temple of artemis":6, "templed":2, "templet":2, "templelike":3, "templon":2, "tempo":2, "temporal":3, "temporal bone":4, "temporal lobe":4, "temporality":5, "temporally":4, "temporalness":4, "temporaries":4, "temporarily":5, "temporariness":5, "temporary":4, "temporise":3, "temporised":3, "temporiser":4, "temporising":4, "temporisingly":5, "temporize":3, "temporized":3, "temporizer":4, "temporizing":4, "temporizingly":5, "temporization":5, "temporomaxillary":7, "tempus fugit":4, "tempura":3, "ten":1, "ten commandments":4, "ten-gallon hat":3, "tench":1, "tenches":2, "tend":1, "tendance":2, "tenn":1, "tense":1, "tense logic":3, "tenseless":2, "tenselessly":3, "tenselessness":3, "tensely":2, "tenseness":2, "tenser":2, "tensest":2, "tensing":2, "tent":1, "tent caterpillar":5, "tenth":1, "tenthly":2, "tentage":2, "tented":2, "tentie":2, "tentier":3, "tentiest":3, "tentless":2, "tentlike":2, "tentmaker":3, "tenty":2, "tenace":2, "tenant":2, "tenant farmer":4, "tenant-in-chief":2, "tenantable":4, "tenantless":3, "tenantlike":3, "tenantry":3, "tenancy":3, "tenability":5, "tenable":3, "tenableness":4, "tenably":3, "tendencious":3, "tendenciously":4, "tendenciousness":4, "tendency":3, "tendential":3, "tendentially":4, "tendentious":3, "tendentiously":4, "tendentiousness":4, "tender":2, "tender-hearted":3, "tender-heartedly":4, "tenderability":6, "tenderer":3, "tenderfoot":3, "tenderhearted":4, "tenderheartedness":5, "tenderise":3, "tenderised":3, "tenderiser":4, "tenderising":4, "tenderize":3, "tenderized":3, "tenderizer":4, "tenderizing":4, "tenderization":5, "tenderloin":3, "tenderly":3, "tenderness":3, "tendinous":3, "tendon":2, "tendril":2, "tendrillar":3, "tendrilly":3, "tendrilous":3, "tenerife":3, "teneriffe":3, "tenes":2, "tenet":2, "tenebrae":3, "tenebrific":4, "tenebrism":3, "tenebrist":3, "tenebrous":3, "tenebrousness":4, "tenedos":3, "tenement":3, "tenemental":4, "tenerife":3, "tenfold":2, "tengri khan":3, "tengri nor":3, "teniers":2, "tennantite":3, "tenner":2, "tennessee":3, "tennessee valley authority":9, "tennessee walking horse":6, "tennesseean":4, "tennessean":4, "tenniel":2, "tennis":2, "tennis ball":3, "tennis elbow":4, "tennis shoe":3, "tenno":2, "tennyson":3, "tennysonian":5, "tenn":3, "tenon":2, "tenon saw":3, "tenoner":3, "tenor":2, "tenorless":3, "tenonitis":4, "tenorite":3, "tenositis":4, "tenpenny":3, "tenpin":2, "tenpin bowling":4, "tenpins":2, "tenpounder":3, "tenrec":2, "tensegrity":4, "tensile":2, "tensile strength":3, "tensilely":3, "tensileness":3, "tensility":4, "tensimeter":4, "tension":2, "tensional":3, "tensionless":3, "tensive":2, "tensibility":5, "tensible":3, "tensibleness":4, "tensibly":3, "tensiometer":5, "tensity":3, "tenson":2, "tensor":2, "tensorial":4, "tentacular":4, "tentaculated":5, "tentaculoid":4, "tentacle":3, "tentacled":3, "tentaclelike":4, "tentation":3, "tentative":3, "tenter":2, "tenterhook":3, "tentoria":4, "tentorial":4, "tentorium":4, "tenure":2, "tenues":3, "tenuis":3, "tenuous":3, "tenuously":4, "tenuousness":4, "tenurial":4, "tenurially":5, "tenzing":2, "tenzing norgay":4, "tephra":2, "tephrite":2, "tephritic":3, "tephroite":3, "tepefy":3, "tepid":2, "tepidness":3, "ter":1, "terce":1, "term":1, "term insurance":4, "terms":1, "termer":2, "termless":2, "termly":2, "termor":2, "tern":1, "terne":1, "terpsichore":4, "terpsichorean":5, "terpsichorean":5, "terr":1, "terreplein":2, "terse":1, "terseness":2, "terser":2, "tersest":2, "teraph":2, "terahertz":3, "terahertzes":4, "teratism":3, "teratogeny":5, "teratoid":3, "teratology":5, "teratogenesis":6, "teratogenic":5, "teratogenetic":6, "teratoma":4, "terbic":2, "terbia":3, "terbium":3, "terbium metal":5, "terbium oxide":5, "terborch":2, "terceira":3, "tercel":2, "tercentennial":5, "tercentenary":5, "tercet":2, "terence":2, "terephthalate":4, "terephthalic acid":6, "terebene":3, "terebinth":3, "terebinic":4, "terebinthine":4, "tergal":2, "tergite":2, "tergiversant":4, "tergiversate":4, "tergiversation":5, "tergiversator":5, "tergiversatory":6, "tergum":2, "terhune":2, "teriyaki":4, "termagant":3, "termer":2, "terminism":3, "termite":2, "termitic":3, "terminal":3, "terminal velocity":7, "terminally":4, "terminate":3, "terminated":4, "terminating":4, "terminability":6, "terminable":4, "terminableness":5, "terminably":4, "termination":4, "terminational":5, "terminatively":5, "terminator":4, "terminatory":5, "terminist":3, "terministic":4, "terminologist":5, "terminology":5, "terminologically":7, "terminus":3, "terminus":3, "terminus a quo":5, "terminus ad quem":5, "termitaria":5, "termitarium":5, "termor":2, "terna":2, "ternaries":3, "ternate":2, "ternately":3, "ternary":3, "ternary form":4, "ternate":3, "terni":2, "ternion":3, "ternopol":3, "terotechnology":6, "terpene":2, "terpeneless":3, "terpenic":3, "terpineol":4, "terra":2, "terra alba":4, "terra cotta":4, "terra firma":4, "terra incognita":6, "terra sigillata":6, "terra-cotta":3, "terrace":2, "terraced":2, "terraced house":3, "terraceless":3, "terracing":3, "terrain":2, "terrane":2, "terrarium":4, "terras":2, "terrazzo":3, "terramara":4, "terramare":4, "terramycin":4, "terrapin":3, "terraqueous":4, "terrel":2, "terrence":2, "terrene":2, "terrestrial":4, "terrestrial guidance":6, "terrestrial telescope":7, "terrestrially":5, "terret":2, "terri":2, "terricolous":4, "terrific":3, "terrifically":5, "terrigenous":4, "terrine":2, "terribilit":6, "terrible":3, "terribleness":4, "terribly":3, "terrier":3, "terrier":3, "terrified":3, "terrifier":4, "terrify":3, "terrifying":4, "terrifyingly":5, "territorial":5, "territorial":5, "territorial army":7, "territorial court":6, "territorial waters":7, "territorialise":6, "territorialised":6, "territorialism":6, "territorialist":6, "territorialising":7, "territorialize":6, "territorialized":6, "territorializing":7, "territoriality":7, "territorialization":8, "territorially":6, "territorian":5, "territory":4, "territory":4, "terror":2, "terror-stricken":3, "terror-struck":2, "terrorful":3, "terrorise":3, "terrorised":3, "terrorism":3, "terrorist":3, "terroriser":4, "terrorising":4, "terroristic":4, "terrorize":3, "terrorized":3, "terrorizer":4, "terrorizing":4, "terrorization":5, "terrorless":3, "terry":2, "terry":2, "terryville":3, "tersanctus":3, "tertial":2, "tertian":2, "tertianship":3, "tertiary":3, "tertiary college":5, "tertiaries":4, "tertiary":4, "tertium quid":4, "tertius":3, "tertullian":4, "tervalence":3, "tervalent":3, "tervalency":4, "terylene":3, "terza rima":4, "terzetto":3, "teschenite":3, "tess":1, "test":1, "test paper":3, "test pilot":3, "test-tube baby":3, "testability":5, "testable":3, "testee":2, "tester":2, "testingly":3, "testmatch":2, "tesla":2, "tesla":2, "tesla coil":3, "tessellate":3, "tessellated":4, "tessellating":4, "tessellation":4, "tessera":3, "tesseract":3, "tesserae":3, "tesselate":3, "tesselated":4, "tesselating":4, "tesselation":4, "tessie":2, "tessin":2, "tessitura":4, "tessituras":4, "tessiture":4, "testa":2, "testate":2, "testacean":3, "testaceous":3, "testament":3, "testament":3, "testamental":4, "testamentary":5, "testator":3, "testatrix":3, "tester":2, "testes":2, "testiculate":4, "testis":2, "testicle":3, "testified":3, "testification":5, "testifier":4, "testify":3, "testifying":4, "testimonial":5, "testimonialised":6, "testimonialising":7, "testimonialize":6, "testimonialized":6, "testimony":4, "testire":4, "teston":2, "testoon":2, "testosterone":4, "testone":3, "testudinal":4, "testudinarian":6, "testudinary":5, "testudinate":4, "testudines":4, "testudo":3, "testy":2, "tetched":1, "tetchier":3, "tetchiest":3, "tetchily":3, "tetchiness":3, "tetchy":2, "teth":1, "tether":2, "tetherball":3, "tetanise":3, "tetanised":3, "tetanising":4, "tetanize":3, "tetanized":3, "tetanizing":4, "tetanization":5, "tetanus":3, "tetany":3, "tetra":2, "tetrad":2, "tetrabasic":4, "tetrabasicity":6, "tetrabrach":3, "tetrabranchiate":5, "tetracaine":3, "tetracene":3, "tetrachloride":4, "tetrachloroethylene":7, "tetrachloromethane":6, "tetrachord":3, "tetracocci":4, "tetracoccus":4, "tetracyn":3, "tetracyclic":4, "tetracycline":4, "tetradrachm":3, "tetradrachma":4, "tetradrachmal":4, "tetraethyl":4, "tetraethyl lead":5, "tetrafluoroethylene":8, "tetragon":3, "tetragram":3, "tetragrammaton":5, "tetrahedral":4, "tetrahedrally":5, "tetrahedrite":4, "tetrahedron":4, "tetrahydrate":4, "tetrahydrated":5, "tetrahydric":4, "tetrahydroxy":5, "tetrahydropyrrole":6, "tetraiodopyrrole":7, "tetralite":3, "tetramer":3, "tetramethyldiarsine":7, "tetramethyldiarsine":7, "tetranitrate":4, "tetranitromethane":6, "tetraplegia":5, "tetraploid":3, "tetraploidy":4, "tetrapod":3, "tetrapodic":4, "tetrapylon":4, "tetraspore":3, "tetrasporic":4, "tetrasporangia":6, "tetrasporangium":6, "tetrastich":3, "tetrastichic":4, "tetrastylos":4, "tetrasyllabic":5, "tetrasyllable":5, "tetratomic":4, "tetravalence":4, "tetravalent":4, "tetravalency":5, "tetrazene":3, "tetrode":2, "tetryl":2, "tetter":2, "tetzel":2, "teughness":2, "teut":1, "teucer":2, "teucrian":3, "teuthis":2, "teuthras":2, "teuton":2, "teutonic":3, "teutonic order":5, "teutonise":3, "teutonised":3, "teutonism":3, "teutonist":3, "teutonising":4, "teutonize":3, "teutonized":3, "teutonizing":4, "teutonization":5, "teutoburger wald":5, "tew":1, "tewkesbury":3, "tex":1, "text":1, "textbook":2, "textbookish":3, "textless":2, "texarkana":4, "texas":2, "texas":2, "texas fever":4, "texas rangers":4, "texile":2, "textile":2, "texture":2, "textured":2, "texturing":3, "textual":3, "textual criticism":6, "textualism":4, "textualist":4, "textuaries":4, "textuary":4, "teyde":2, "tezcatlipoca":5, "tebet":2, "tecumseh":3, "tecumtha":3, "tedious":3, "tediousness":4, "tedium":3, "tefillin":3, "tegea":3, "tegeates":4, "tegucigalpa":5, "tegyrius":4, "tehachaheed":4, "tehachaheeing":5, "tehachapi":4, "teheran":3, "tehillim":3, "tehran":2, "tehuantepec":4, "tehuelche":3, "tehuelchean":4, "tejo":2, "tela":2, "telegonus":4, "telegony":4, "telegrapher":4, "telegraphist":4, "telegraphone":4, "telegraphy":4, "telemachus":4, "telemeter":4, "telemetry":4, "telephonist":4, "telephony":4, "telepathise":4, "telepathist":4, "telepathize":4, "telepathy":4, "telescopist":4, "telescopy":4, "telesphorus":4, "telestich":3, "teleutosori":5, "teleutosorus":5, "teleutospore":4, "teleutosporic":5, "telega":3, "telemann":3, "telemus":3, "telia":3, "telial":3, "teliospore":4, "teliosporic":5, "telium":3, "teloekbetoeng":4, "telomerisation":6, "telomerization":6, "telukbetung":4, "tema":2, "temerity":4, "temuco":3, "tenaculum":4, "tenail":2, "tenaille":2, "tenacious":3, "tenaim":3, "tenebrious":4, "tenebriousness":5, "tenesmus":3, "tenia":3, "teniae":3, "teniacide":4, "teniacidal":5, "teniafuge":4, "teniasis":4, "teno":2, "tenochtitl":4, "tenochtitln":5, "tenor clef":3, "tenorrhaphy":4, "tenotomist":4, "tenotomy":4, "tenuto":3, "teocalli":4, "teocallis":4, "teosinte":4, "tepal":2, "tepe":2, "tepee":2, "tephillin":3, "tepic":2, "tepidity":4, "tequila":3, "terah":2, "terai":2, "terass":2, "terebic":3, "terebic acid":5, "terentia":3, "tereshkova":4, "terete":2, "teredines":4, "teredo":3, "teredos":3, "terefah":3, "teresa":3, "teresian":3, "teresina":4, "tereus":3, "teruel":2, "tetanic":3, "tetanical":4, "tetanically":5, "tetartohedral":5, "tetartohedrally":6, "tetartohedrism":5, "tethys":2, "teton range":3, "tetracid":3, "tetradymite":4, "tetragonal":4, "tetragonally":5, "tetragonalness":5, "tetralogy":4, "tetramerism":4, "tetramerous":4, "tetrameter":4, "tetrandrous":3, "tetrapody":4, "tetrapterous":4, "tetrarch":2, "tetrarchate":3, "tetrarchic":3, "tetrastichous":4, "tetrazzini":4, "tetradynamous":5, "tetroxid":3, "tetroxide":3, "tetu":2, "tetun":3, "tevet":2, "tevere":3, "tezel":2, "thach":1, "thack":1, "thackeray":3, "thaddeus":3, "thadeus":3, "thae":1, "thai":1, "thailand":2, "thailander":3, "thak":1, "thalassocracy":5, "thalassographer":5, "thalassography":5, "thalattocracy":5, "thalamencephalon":6, "thalamencephalic":6, "thalamotomy":5, "thalamus":3, "thalli":2, "thallic":2, "thallious":3, "thallium":3, "thallo":2, "thalloid":2, "thallous":2, "thallophyte":3, "thallus":2, "thalweg":2, "thames":1, "thammuz":2, "thamyris":3, "than":1, "thane":1, "thank":1, "thanks":1, "thanksgiver":3, "thanksgiving":3, "thanksgiving day":4, "thankee":2, "thanker":2, "thankful":2, "thankfully":3, "thankfulness":3, "thankless":2, "thanklessly":3, "thanklessness":3, "thankworthy":3, "thant":1, "thanatopsis":4, "thanatos":3, "thanatotic":4, "thanatophobia":6, "thanet":2, "thanjavur":3, "thapsus":2, "thar":1, "thar desert":3, "tharm":1, "thare":2, "thargelia":4, "that":1, "that's":1, "that-away":2, "thatch":1, "thatch":1, "thatching":2, "thatchless":2, "thatchy":2, "thatcher":2, "thaumas":2, "thaumatology":5, "thaumatrope":3, "thaumaturge":3, "thaumaturgical":5, "thaumaturgy":4, "thaw":1, "thawless":2, "thayer":2, "thabana-ntlenyana":5, "thadentsonyane":5, "thais":2, "thakur":2, "thalassic":3, "thalassographic":5, "thalamia":4, "thalamium":4, "thaler":2, "thales":2, "thalidomide":4, "thalia":3, "thamar":2, "thamus":2, "thana":2, "thanom":2, "the":1, "the anouilh":3, "the guianas":4, "thebes":1, "thecla":2, "thee":1, "theelin":2, "theft":1, "theftproof":2, "thegn":1, "thegnly":2, "their":1, "theirs":1, "theirselves":2, "theiss":1, "theiler":2, "thekla":2, "thelma":2, "them":1, "theme":1, "themeless":2, "themselves":2, "then":1, "thence":1, "thenceforth":2, "thenceforward":3, "thenceforwards":3, "theol":1, "theos":1, "therap":1, "there":1, "there's":1, "thereafter":3, "thereat":2, "thereabout":3, "thereabouts":3, "thereagainst":3, "thereby":2, "therefor":2, "therefore":2, "therefrom":2, "therein":2, "thereinafter":4, "thereinto":3, "thereof":2, "thereon":2, "thereout":2, "thereto":2, "theretofore":3, "thereunder":3, "thereunto":3, "thereupon":3, "therewith":2, "therewithal":3, "therm":1, "therme":1, "thermaesthesia":4, "thermaesthesia":5, "thermalgesia":5, "thermel":2, "thermesthesia":4, "thermesthesia":5, "thermionics":4, "thermionically":6, "therapeutic":4, "therapeutics":4, "therapeutist":4, "therapeutical":5, "therapeutically":6, "therapist":3, "therapy":3, "theravada":4, "theravadin":4, "therblig":2, "therma":2, "thermae":2, "thermal":2, "thermal barrier":5, "thermal conductivity":7, "thermal efficiency":6, "thermal equator":5, "thermal neutron":4, "thermal reactor":5, "thermal shock":3, "thermalise":3, "thermalize":3, "thermally":3, "thermasia":4, "thermic":2, "thermistor":3, "thermit":2, "thermite":2, "thermite":2, "thermite process":4, "thermidor":3, "thermidorean":5, "thermidorian":5, "thermion":3, "thermionic":4, "thermionic current":6, "thermionic emission":7, "thermionic valve":5, "thermionics":4, "thermogenous":4, "thermography":4, "thermolysis":4, "thermometer":4, "thermometry":4, "thermopylae":4, "thermos":2, "thermos flask":3, "thermoanesthesia":6, "thermobarograph":5, "thermobarometer":6, "thermochemist":4, "thermochemistry":5, "thermochemical":5, "thermochemically":6, "thermocline":3, "thermoclinal":4, "thermocouple":4, "thermocurrent":4, "thermodiffusion":5, "thermoduric":4, "thermodynamic":5, "thermodynamic equilibrium":10, "thermodynamic temperature":9, "thermodynamics":5, "thermodynamical":6, "thermodynamically":7, "thermoelastic":5, "thermoelectric":5, "thermoelectric effect":7, "thermoelectricity":7, "thermoelectrical":6, "thermoelectrically":7, "thermoelectrometer":7, "thermoelectron":5, "thermoelectronic":6, "thermogalvanometer":7, "thermogenesis":5, "thermogenic":4, "thermogenetic":5, "thermogeography":6, "thermograph":3, "thermojunction":4, "thermolabile":4, "thermolability":6, "thermoluminescence":6, "thermoluminescent":6, "thermolytic":4, "thermomagnetic":5, "thermometric":4, "thermometrically":6, "thermomotive":4, "thermomotor":4, "thermonuclear":5, "thermonuclear bomb":6, "thermonuclear reaction":8, "thermophile":3, "thermophone":3, "thermophosphorescence":6, "thermophosphorescent":6, "thermopile":3, "thermoplastic":4, "thermoplasticity":6, "thermoscope":3, "thermoscopic":4, "thermoscopically":6, "thermosensitive":5, "thermosetting":4, "thermosiphon":4, "thermosphere":3, "thermostat":3, "thermostatic":4, "thermostatics":4, "thermostatically":6, "thermostability":6, "thermostable":4, "thermotactic":4, "thermotank":3, "thermotaxis":4, "thermotensile":4, "thermotherapy":5, "thermotropic":4, "thermotropism":4, "thersander":3, "thersilochus":4, "thersitical":4, "thersites":3, "these":1, "thess":1, "thesmia":3, "thesmophorus":4, "thesmophoric":4, "thesmophoria":5, "thesmophorian":5, "thespis":2, "thespiae":3, "thespian":3, "thespius":3, "thesproti":3, "thesprotia":3, "thesprotians":3, "thesprotis":3, "thessalonica":5, "thessalonian":5, "thessalonians":5, "thessalonike":5, "thessalonki":5, "thessalus":3, "thessaly":3, "thestius":3, "thestor":2, "thetford mines":3, "thetic":2, "thetical":3, "thetically":4, "thew":1, "they":1, "they'd":1, "they'll":1, "they're":1, "they've":1, "thea":2, "theaetetus":4, "theanthropism":4, "theanthropist":4, "thearchic":3, "thearchy":3, "theatre-in-the-round":2, "theatric":3, "theatrics":3, "theatrical":4, "theatricals":4, "theatricalise":5, "theatricalised":5, "theatricalising":6, "theatricalize":5, "theatricalized":5, "theatricalizing":6, "theatricality":6, "theatricalization":7, "theatrically":5, "theatticalism":5, "theaceous":3, "thearica":4, "theater":3, "theater-in-the-round":3, "theatine":3, "theatre":3, "theatre of cruelty":7, "theatre-in-the-round":3, "theatregoer":5, "theban":2, "thebaic":3, "thebaid":3, "thebaine":3, "thebe":2, "thebit":2, "theca":2, "thecal":2, "thecate":2, "thecia":3, "thecial":3, "thecium":3, "thecodont":3, "theda":2, "theia":2, "theine":2, "theism":2, "theist":2, "theistic":3, "theistical":4, "theistically":5, "thelitis":3, "thelonious":4, "thelytokous":4, "thema":2, "thematic":3, "thematically":5, "themata":3, "themis":2, "themiste":3, "themisto":3, "themistocles":4, "thenar":2, "thenardite":3, "theocracy":4, "theocrasy":4, "theocritean":5, "theocritus":4, "theoderic":4, "theodicean":5, "theodicy":4, "theodolite":4, "theodolitic":5, "theodoric":4, "theogonist":4, "theogony":4, "theolatry":4, "theologise":4, "theologised":4, "theologiser":5, "theologising":5, "theologize":4, "theologized":4, "theologizer":5, "theologizing":5, "theologization":6, "theology":4, "theomachy":4, "theonomy":4, "theono":5, "theophagy":4, "theophane":4, "theophany":4, "theophila":4, "theophilus":4, "theopathy":4, "theorbist":3, "theorbo":3, "theosophism":4, "theosophist":4, "theosophy":4, "theoxenius":5, "theobold":3, "theobromine":4, "theocentric":4, "theocentricity":6, "theocentrism":4, "theocentricism":5, "theoclymenus":5, "theocratic":4, "theocratically":6, "theodor":3, "theodore":3, "theodora":4, "theodorakis":5, "theodosian":4, "theodosia":5, "theodosius i":6, "theogonic":4, "theologue":3, "theologic":4, "theological":5, "theological virtues":7, "theologically":6, "theologian":5, "theomancy":4, "theomania":5, "theomaniac":5, "theomorphic":4, "theomorphism":4, "theophanic":4, "theophobia":5, "theophrastian":4, "theophrastus":4, "theophylline":4, "theorell":3, "theorem":3, "theoretic":4, "theoretics":4, "theoretical":5, "theoretically":6, "theorematic":5, "theoretician":5, "theorise":3, "theorised":3, "theorist":3, "theoriser":4, "theorising":4, "theorize":3, "theory":3, "theory of games":5, "theosophical":5, "theosophically":6, "theotocos":4, "theotocopoulos":6, "theotokos":4, "thera":2, "therapne":3, "therapsid":3, "theralite":3, "theresa":3, "therezina":4, "theridiid":4, "therian":3, "therianthropic":5, "therianthropism":5, "theriacal":4, "theriomorph":4, "theriomorphic":5, "theriomorphous":5, "theritas":3, "thero":2, "theroid":2, "therophyte":3, "theropod":3, "thesauri":3, "thesaurismosis":5, "thesaurus":3, "theseus":2, "thesis":2, "theta":2, "thetis":2, "theurgic":3, "theurgist":3, "theurgical":4, "theurgically":5, "theurgy":3, "thi":1, "thiatsi":2, "thiazi":2, "thick":1, "thick-witted":2, "thick-wittedly":3, "thick-wittedness":3, "thicken":2, "thickener":3, "thickening":3, "thicket":2, "thicketed":3, "thickety":3, "thickhead":2, "thickheaded":3, "thickleaf":2, "thickly":2, "thickness":2, "thickset":2, "thief":1, "thiensville":2, "thiers":1, "thieve":1, "thieveless":2, "thieveries":3, "thievery":3, "thievingly":3, "thievish":2, "thievishly":3, "thievishness":3, "thig":1, "thigh":1, "thighbone":2, "thigger":2, "thigging":2, "thigmotactic":4, "thigmotaxis":4, "thigmotropic":4, "thigmotropism":4, "thill":1, "thimble":2, "thimbleful":3, "thimblelike":3, "thimblerig":3, "thimblerigged":3, "thimblerigger":4, "thimblerigging":4, "thimbleweed":3, "thimblewit":3, "thimbu":2, "thimphu":2, "thin":1, "thine":1, "thing":1, "thing-in-itself":2, "thingamabob":4, "thingamajig":4, "thingstead":2, "thingumbob":3, "thingumabob":4, "thingumajig":4, "think":1, "think over":3, "thinkable":3, "thinkableness":4, "thinkably":3, "thinker":2, "thinking":2, "thinkingly":3, "thinly":2, "thinner":2, "thinness":2, "thinnish":2, "thir":1, "third":1, "third degree":3, "third dimension":4, "third estate":3, "third eyelid":3, "third international":6, "third order":3, "third party":3, "third person":3, "third reading":3, "third republic":4, "third-degree":2, "third-degree burn":3, "third-degreed":2, "third-degreeing":3, "thirdly":2, "thirdstream":2, "thirl":1, "thirlage":2, "thirlmere":2, "thirst":1, "thirster":2, "thirstier":3, "thirstiest":3, "thirstless":2, "thirstlessness":3, "thirsty":2, "thirteen":2, "thirteenth":2, "thirteenth chord":3, "thirtieth":3, "thirty":2, "thirty years' war":4, "thirty-eight":2, "thirty-eighth":2, "thirty-fifth":2, "thirty-first":2, "thirty-four":2, "thirty-fourth":2, "thirty-nine":2, "thirty-nine articles":5, "thirty-ninth":2, "thirty-one":2, "thirty-second":3, "thirty-second note":4, "thirty-seven":3, "thirty-seventh":3, "thirty-six":2, "thirty-third":2, "thirty-three":2, "thirty-two":2, "thirty-twomo":3, "thirtypenny":4, "this":1, "thisbe":2, "thistle":2, "thistledown":3, "thistlelike":3, "thistly":2, "thither":2, "thitherto":3, "thitherward":3, "thixotropic":4, "thia":2, "thiamin":3, "thiamine":3, "thiasos":3, "thiasus":3, "thiazine":3, "thiazol":3, "thiazole":3, "thimerosal":4, "thio":2, "thio-ether":3, "thiodamas":4, "thiol":2, "thiolacetic":5, "thiolic":3, "thionic":3, "thioalcohol":5, "thioaldehyde":5, "thioantimonate":6, "thioantimonite":6, "thioarsenate":5, "thioarsenite":5, "thioacetic":5, "thiobacilli":5, "thiobacillus":5, "thiocarbamide":5, "thiocyanic":5, "thiocyanic acid":7, "thiocyanogen":6, "thiocyanate":5, "thiocyano":5, "thioester":4, "thiofuran":4, "thionate":3, "thionation":4, "thionin":3, "thionine":3, "thionyl":3, "thiopental":4, "thiopental sodium":7, "thiopentone":4, "thiopentone sodium":7, "thiophen":3, "thiophene":3, "thiophenol":4, "thiosinamine":5, "thiosinamine":5, "thiosulfuric":5, "thiosulphate":4, "thiosulphuric acid":7, "thiouracil":5, "thiourea":5, "thira":2, "thjatsi":2, "thjazi":2, "tho":1, "thokk":1, "thole":1, "tholepin":2, "tholing":2, "thompson":2, "thompson sub-machine-gun":4, "thomas":2, "thomas of erceldoune":6, "thomas of woodstock":5, "thomas et":4, "thomas pis":4, "thomaston":3, "thomasville":3, "thomsen":2, "thomson":2, "thomson effect":4, "thong":1, "thonburi":3, "thor":1, "thorn":1, "thorn":1, "thorn apple":3, "thorne":1, "thornback":2, "thornbill":2, "thorndike":2, "thorndyke":2, "thornhead":2, "thornier":3, "thorniest":3, "thornless":2, "thornlessness":3, "thornlike":2, "thornton":2, "thorny":2, "thorp":1, "thorpe":1, "thorpe":1, "thorshavn":2, "thortveitite":3, "thorax":2, "thoracotomy":5, "thorburn":2, "thoric":2, "thorough":2, "thorough":2, "thorough bass":3, "thorough brace":3, "thoroughbred":3, "thoroughbred":3, "thoroughbredness":4, "thoroughfare":3, "thoroughgoing":4, "thoroughgoingly":5, "thoroughgoingness":5, "thoroughly":3, "thoroughness":3, "thoroughpaced":3, "thoroughpin":3, "thoroughwort":3, "thorstein":2, "thorvaldsen":3, "thorwaldsen":3, "those":1, "thoth":1, "thou":1, "though":1, "thought":1, "thought disorder":4, "thought transference":4, "thoughtful":2, "thoughtless":2, "thoughtlessly":3, "thoughtlessness":3, "thousand":2, "thousand guineas":4, "thousand island dressing":6, "thousand islands":4, "thousandth":2, "thousandfold":3, "thousandfoldly":4, "thowless":2, "thoas":2, "tholos":2, "tholus":2, "thomism":2, "thomist":2, "thomistic":3, "thomisid":3, "thoracic":3, "thoracic duct":4, "thorax":2, "thoraxes":3, "thoracal":3, "thoracectomy":5, "thoraces":3, "thoracopagus":5, "thoracostomy":5, "thoracotomy":5, "thoracolumbar":5, "thoracoplasty":5, "thorazine":3, "thoreau":2, "thoreauvian":4, "thorez":2, "thorite":2, "thoria":3, "thorianite":4, "thorium":3, "thorium dioxide":6, "thorium series":5, "thoron":2, "thon":3, "thrace":1, "thrale":1, "thrall":1, "thrash":1, "thrasher":2, "thrashing":2, "thrasybulus":4, "thrave":1, "thraw":1, "thrawn":1, "thrawnly":2, "thrawnness":2, "thracian":2, "thracian":3, "thraco-phrygian":4, "thrasonical":4, "thrasonically":5, "thread":1, "threadbare":2, "threader":2, "threadfin":2, "threadfish":2, "threadfishes":3, "threadier":3, "threadiest":3, "threadiness":3, "threadless":2, "threadlike":2, "threadneedle street":4, "threadworm":2, "thready":2, "threap":1, "threaper":2, "threat":1, "threaten":2, "threatener":3, "threateningly":4, "threatful":2, "threatfully":3, "threatless":2, "three":1, "three rivers":3, "three-and-a-halfpenny":3, "three-color":2, "three-cornered":2, "three-d":1, "three-day measles":3, "three-decker":2, "three-dimensional":4, "three-gaited":2, "three-legged race":3, "three-masted":2, "three-master":2, "three-mile limit":3, "three-point landing":3, "three-poster":2, "three-quarter":2, "three-quarter binding":4, "three-ring circus":3, "three-sixty":2, "three-sticker":2, "three-wheeler":2, "threep":1, "threefold":2, "threepence":2, "threepenny bit":4, "threescore":2, "threesome":2, "thremmatology":5, "threnodist":3, "threnody":3, "thresh":1, "thresher":2, "threshing machine":4, "threshold":2, "threw":1, "threnode":2, "threnodial":4, "threonine":3, "thrice":1, "thrift":1, "thriftier":3, "thriftiest":3, "thriftily":3, "thriftless":2, "thriftlessly":3, "thriftlessness":3, "thriftshop":2, "thrifty":2, "thrill":1, "thriller":2, "thrillful":2, "thrilling":2, "thrillingly":3, "thrips":1, "thrippence":2, "thrive":1, "thriver":2, "thrivingly":3, "thro":1, "throat":1, "throat microphone":4, "throatier":3, "throatiest":3, "throatily":3, "throatiness":3, "throatlash":2, "throatlatch":2, "throatless":2, "throaty":2, "throb":1, "throbbing":2, "throbless":2, "throe":1, "throes":1, "thrombectomy":4, "thrombin":2, "thromboclasis":4, "thrombolysis":4, "thrombose":2, "thrombotic":3, "thromboclastic":4, "thrombocyte":3, "thromboembolism":5, "thrombogen":3, "thrombokinase":4, "thrombolytic":4, "thrombolysin":4, "thrombophlebitis":5, "thromboplastic":4, "thromboplastin":4, "thromboplastically":6, "thrombosis":3, "thrombus":2, "throne":1, "throneless":2, "throng":1, "throning":2, "throop":1, "throstle":2, "throttle":2, "throttler":2, "throttlebottom":4, "through":1, "through-composed":2, "through-ither":2, "through-other":2, "throughly":2, "throughout":2, "throughput":2, "throughway":2, "throve":1, "throw":1, "throw about":3, "throw over":3, "throw together":4, "thrown":1, "throwaway":3, "throwback":2, "thrower":2, "throwing stick":3, "throwster":2, "thronos":2, "thru":1, "thrum":1, "thrummer":2, "thrumming":2, "thrush":1, "thrushlike":2, "thrust":1, "thruster":2, "thrusting":2, "thrupenny bit":4, "thruput":2, "thruway":2, "thrymsa":2, "thud":1, "thudded":2, "thudding":2, "thuddingly":3, "thug":1, "thuggee":2, "thuggery":3, "thuggish":2, "thumb":1, "thumb-index":2, "thumb-sucker":2, "thumb-sucking":2, "thumber":2, "thumbikin":3, "thumbkin":2, "thumbless":2, "thumblike":2, "thumbnail":2, "thumbnut":2, "thumbprint":2, "thumbscrew":2, "thumbstall":2, "thumbtack":2, "thump":1, "thumping":2, "thumpingly":3, "thummim":2, "thun":1, "thunder":2, "thunder bay":3, "thunderbird":3, "thunderbolt":3, "thunderbox":3, "thunderclap":3, "thundercloud":3, "thunderclouds":3, "thunderer":3, "thunderhead":3, "thundering":3, "thunderous":3, "thunderously":4, "thunderpeal":3, "thundershower":4, "thundersquall":3, "thunderstick":3, "thunderstone":3, "thunderstorm":3, "thunderstricken":4, "thunderstruck":3, "thundery":3, "thurm":1, "thurs":1, "thursday":2, "thursday island":4, "thursdays":2, "thurber":2, "thurgau":2, "thurgood":2, "thurlow":2, "thurmont":2, "thurston":2, "thus":1, "thusly":2, "thucydides":4, "thuja":2, "thule":2, "thulia":3, "thulium":3, "thunen":2, "thuner see":3, "thuringer":3, "thuringia":4, "thuringian forest":6, "thurible":3, "thurifer":3, "thuya":2, "thwack":1, "thwacker":2, "thwart":1, "thwartedly":3, "thwarter":2, "thwing":1, "thy":1, "thyme":1, "thymbraeus":3, "thymelaeaceous":5, "thymic":2, "thymier":3, "thymiest":3, "thymy":2, "thyrse":1, "thyrsoid":2, "thyrsoidal":3, "thyrsus":2, "thysanuran":4, "thyssen":2, "thyatira":4, "thyestes":3, "thyiad":2, "thyiads":2, "thyiades":3, "thylacine":3, "thymi":2, "thymine":2, "thymidine":3, "thymoetes":3, "thymol":2, "thymus":2, "thymuses":3, "thyone":3, "thyratron":3, "thyratron":3, "thyristor":3, "thyroid":2, "thyroid gland":3, "thyroid-stimulating hormone":7, "thyroidectomy":5, "thyroiditis":4, "thyroidotomy":5, "thyroxin":3, "thyroxine":3, "thyroadenitis":6, "thyroarytenoid":6, "thyrocalcitonin":6, "thyrocarditis":5, "thyroria":4, "thyrorion":4, "thyrosis":3, "thyrotome":3, "thyrotoxicity":6, "thyrotoxicosis":6, "thyrotrophin":4, "thyrotropin":4, "thysanurous":4, "thyself":2, "thodore":4, "thophile":4, "thrse":4, "thtre-franais":7, "thringer":3, "thnard's blue":3, "thrsieux":3, "thsant":2, "thsos":2, "tiamat":2, "tibbett":2, "tibia":3, "tibiae":3, "tibial":3, "tibiotarsus":5, "tic":1, "tic douloureux":4, "tice":1, "tick":1, "tick fever":3, "tick trefoil":3, "tick-borne typhus":3, "tickepl":2, "ticker":2, "ticker tape":3, "ticket":2, "ticket of leave":4, "ticket-of-leave":2, "ticket-porter":3, "ticketless":3, "tickety-boo":3, "ticking":2, "tickle":2, "tickler":2, "tickler coil":3, "ticklish":2, "ticklishly":3, "ticklishness":3, "ticknor":2, "tickseed":2, "ticktack":2, "ticktock":2, "tide":1, "tide over":3, "tideful":2, "tidehead":2, "tideland":2, "tideless":2, "tidelessness":3, "tidelike":2, "tidemark":2, "tiderip":2, "tiderode":2, "tidewaiter":3, "tidewater":3, "tideway":2, "tidewater":3, "tidal":2, "tidal basin":4, "tidal wave":3, "tidally":3, "tidbit":2, "tiddler":2, "tiddledywinks":4, "tiddly":2, "tiddlywinks":3, "tided":2, "tiding":2, "tidings":2, "tie":1, "tie-dyeing":2, "tie-in":1, "tie-up":1, "tieck":1, "tied":1, "tientsin":2, "tier":1, "tierce":1, "tierce de picardie":5, "tierced":1, "tiercel":2, "tierceron":3, "tierra del fuego":5, "tieback":2, "tiebreaker":3, "tieclasp":2, "tiemannite":3, "tiemannite":3, "tiepin":2, "tiepolo":3, "tiff":1, "tiffany":3, "tiffany":3, "tiffany glass":4, "tiffin":2, "tiffin":2, "tiflis":2, "tifton":2, "tight":1, "tight-fisted":2, "tights":1, "tighten":2, "tightener":3, "tightfisted":3, "tightknit":2, "tightly":2, "tightness":2, "tightrope":2, "tightrope walker":4, "tightroped":2, "tightroping":3, "tightwad":2, "tiglath-pileser i":5, "tiglath-pileser iii":5, "tiglic":2, "tiglic acid":4, "tiglinic":3, "tiglon":2, "tike":1, "tikoloshe":3, "til":1, "tile":1, "tiled":1, "tilefish":2, "tilelike":2, "till":1, "tillage":2, "tillable":3, "tiller":2, "tillerman":3, "tillite":2, "tilt":1, "tilt hammer":3, "tilth":1, "tilthead":2, "tiltyard":2, "tilak":2, "tilburg":2, "tilbury":3, "tilbury":3, "tilda":2, "tilde":2, "tilden":2, "tildy":2, "tileries":3, "tilery":3, "tiling":2, "tiliaceous":4, "tilios":3, "tillandsia":4, "tillandsia":4, "tillamook":3, "tilli":2, "tillich":2, "tillie":2, "tillicum":3, "tillotson":3, "tilly":2, "tilly-fally":3, "tilsit":2, "tilton":2, "tim":1, "time":1, "time capsule":3, "time constant":3, "time deposit":4, "time exposure":4, "time immemorial":6, "time machine":3, "time series":3, "time sharing":3, "time signal":3, "time signature":4, "time study":3, "time trial":3, "time value":3, "time-binding":2, "time-consuming":3, "time-honored":2, "time-lapse photography":5, "time-sharing":2, "timecard":2, "timekeeper":3, "timekeeping":3, "timeless":2, "timeliness":3, "timely":2, "timeous":2, "timeously":3, "timepiece":2, "timepleaser":3, "timesaver":3, "timesaving":3, "timeserver":3, "timeserving":3, "timeservingness":4, "timetable":3, "timework":2, "timeworker":3, "timeworn":2, "timaru":3, "timbal":2, "timbale":2, "timber":2, "timber hitch":3, "timber line":3, "timber wolf":3, "timber-line":2, "timbered":2, "timberhead":3, "timbering":3, "timberjack":3, "timberland":3, "timberless":3, "timberwork":3, "timbery":3, "timberyard":3, "timbre":2, "timbrel":2, "timbreled":2, "timbrelled":2, "timbuktu":3, "timer":2, "timid":2, "timidly":3, "timidness":3, "timing":2, "timorous":3, "timorously":4, "timorousness":4, "timothy":3, "timothy":3, "timothy grass":4, "timpani":3, "tin":1, "tin lizzie":3, "tin pan alley":4, "tin soldier":3, "tin whistle":3, "tin-opener":3, "tin-pan":1, "tin-pot":1, "tinct":1, "tinctorial":4, "tinctorially":5, "tincture":2, "tinctured":2, "tincturing":3, "tine":1, "ting":1, "tinge":1, "tingley":2, "tinker":2, "tinned":1, "tint":1, "tinter":2, "tintless":2, "tintlessness":3, "tintometer":4, "tintometry":4, "tintometric":4, "tinamou":3, "tincal":2, "tindal":2, "tindale":2, "tinder":2, "tinderbox":3, "tinderlike":3, "tindery":3, "tinerer":3, "tinea":3, "tineal":3, "tineid":3, "tinfoil":2, "tinglass":2, "tingle":2, "tingler":2, "tinglingly":3, "tinglier":3, "tingliest":3, "tingly":2, "tinhorn":2, "tinia":3, "tinker's damn":3, "tinkle":2, "tinkler":2, "tinkling":2, "tinklingly":3, "tinklier":3, "tinkliest":3, "tinkly":2, "tinlike":2, "tinman":2, "tinning":2, "tinnient":3, "tinnier":3, "tinniest":3, "tinnily":3, "tinniness":3, "tinnitus":3, "tinny":2, "tinplate":2, "tinplated":3, "tinplating":3, "tinpot":2, "tinsel":2, "tinselled":2, "tinselling":3, "tinsmith":2, "tinstone":2, "tintack":2, "tintagel head":4, "tintinnabulary":6, "tintinnabulation":6, "tintinnabulum":5, "tintoretto":4, "tintype":2, "tinware":2, "tinwork":2, "tinworks":2, "tip":1, "tip-in":1, "tip-off":1, "tip-on":1, "tipburn":2, "tipcart":2, "tipcat":2, "tipless":2, "tippable":3, "tipper":2, "tipper truck":3, "tipperary":4, "tippet":2, "tippett":2, "tippecanoe":4, "tipping":2, "tippier":3, "tippiest":3, "tipple":2, "tippler":2, "tippy":2, "tipsier":3, "tipsiest":3, "tipsily":3, "tipsiness":3, "tipstaff":2, "tipster":2, "tipsy":2, "tipsy cake":3, "tiptoe":2, "tiptoed":2, "tiptoeing":3, "tipton":2, "tiptop":2, "tire":1, "tired":1, "tireless":2, "tirelessly":3, "tirelessness":3, "tiresome":2, "tirewoman":3, "tirewomen":3, "tiring":2, "tiring room":3, "tirol":2, "tirolese":3, "tirpitz":2, "tirrivee":3, "tirso de molina":6, "tirthankara":4, "tiruchirapalli":6, "tischendorf":3, "tishab b'ab":3, "tishri":2, "tisserand":3, "tissot":2, "tissue":2, "tissue culture":4, "tissue paper":4, "tissued":2, "tissual":3, "tissuey":3, "tissuing":3, "tiswin":2, "tit":1, "tit":1, "titan":1, "tithe":1, "titheless":2, "tithable":3, "tither":2, "tithing":2, "titbit":2, "titfer":2, "titillate":3, "titillated":4, "titillating":4, "titillatingly":5, "titillation":4, "titillative":4, "titivate":3, "titivated":4, "titivating":4, "titivation":4, "titivator":4, "titlark":2, "titman":2, "titmouse":2, "titter":2, "tittivate":3, "tittivated":4, "tittivating":4, "tittivation":4, "tittivator":4, "tittle":2, "tittle-tattle":3, "tittle-tattler":3, "tittup":2, "tittuped":2, "tittupped":2, "tittuping":3, "tittupping":3, "tittuppy":3, "titty":2, "titubant":3, "titubation":4, "titular":3, "titularies":4, "titularity":5, "titularly":4, "titulary":4, "tityus":3, "tiv":1, "tivoli":3, "tizwin":2, "tizzy":2, "tia juana":4, "tia maria":5, "tiara":3, "tiaraed":3, "tiaralike":4, "tiahuanaco":5, "tiber":2, "tiberinus":4, "tibesti":3, "tibesti massif":5, "tibet":2, "tibetan":3, "tibeto-burman":4, "tiberias":4, "tiberius":4, "tibullus":3, "tibur":2, "tical":2, "ticino":3, "ticonderoga":5, "tidied":2, "tidily":3, "tidiness":3, "tidying":3, "tidytips":3, "tier":2, "tiger":2, "tiger balm":3, "tiger beetle":4, "tiger cat":3, "tiger lily":4, "tiger moth":3, "tiger shark":3, "tiger snake":3, "tiger's-eye":2, "tigereye":3, "tigerfish":3, "tigerfishes":4, "tigerish":3, "tigerishly":4, "tigerishness":4, "tiglon":2, "tigon":2, "tigr":2, "tigress":2, "tigris":2, "tigrinya":3, "tigr":3, "tihua":2, "tihwa":2, "tijuana":3, "tiki":2, "tilapia":4, "timaeus":3, "timandra":3, "timarau":3, "timidity":4, "timisoara":4, "timocharis":4, "timocracy":4, "timon":2, "timor":2, "timor sea":3, "timour":2, "timocratic":4, "timoleon":4, "timoshenko":4, "timur":2, "tina":2, "tinier":3, "tiniest":3, "tinily":3, "tininess":3, "tiny":2, "tipi":2, "tirade":2, "tirailleur":3, "tiran":2, "tiran":3, "tirana":3, "tiresias":4, "tirich mir":3, "tiro":2, "tirol":2, "tiros":2, "tirolean":4, "tirunelveli":5, "tisa":2, "tisamenus":4, "tisane":2, "tiselius":4, "tisiphone":4, "tisza":2, "titan":2, "titan":2, "titanate":3, "titanesque":3, "titaness":3, "titanic":3, "titanic acid":5, "titanic oxide":5, "titaniferous":5, "titanism":3, "titanite":3, "titanically":5, "titanomachy":5, "titanous":3, "titanosaur":4, "titanothere":4, "titania":4, "titania":4, "titanium":4, "titanium dioxide":7, "titer":2, "tithonus":3, "titi":2, "titian":2, "titicaca":4, "title":2, "title deed":3, "title page":3, "title role":3, "titled":2, "titleholder":4, "titlist":2, "tito":2, "titograd":3, "titoism":3, "titoist":3, "titrant":2, "titrate":2, "titratable":4, "titrated":3, "titrating":3, "titrable":3, "titration":3, "titre":2, "titus":2, "titusville":3, "tiu":2, "tjirebon":3, "tko":1, "tlaxcala":3, "tlc":1, "tlemcen":2, "tlemsen":2, "tlepolemus":4, "tlingit":2, "tlinkit":2, "tmesis":2, "tng":1, "tnt":1, "to-be":1, "to-do":1, "to-morrow":2, "to-name":1, "toad":1, "toadeater":3, "toadfish":2, "toadfishes":3, "toadflax":2, "toadied":2, "toadies":2, "toadish":2, "toadishness":3, "toadless":2, "toadlike":2, "toadstone":2, "toadstool":2, "toady":2, "toadying":3, "toadyish":3, "toadyism":3, "toast":1, "toaster":2, "toastiest":3, "toastiness":3, "toastmaster":3, "tob":1, "tob":1, "tobe":1, "tocher":2, "toccata":3, "toccoa":3, "tocsin":2, "tod":1, "tod":1, "todd":1, "todt":1, "toddle":2, "toddler":2, "toddy":2, "toe":1, "toe-in":1, "toea":1, "toed":1, "toecap":2, "toehold":2, "toeless":2, "toelike":2, "toenail":2, "toeshoe":2, "toey":2, "toff":1, "toft":1, "toffee":2, "toffee-apple":3, "toffee-nosed":2, "toffy":2, "tog":1, "togue":1, "toggery":3, "togging":2, "toggle":2, "toggle iron":4, "toggle joint":3, "toggle switch":3, "toggler":2, "togliatti":4, "toil":1, "toile":1, "toilful":2, "toilfully":3, "toilsome":2, "toilsomely":3, "toilsomeness":3, "toilworn":2, "toilet":2, "toilet paper":4, "toilet set":3, "toilet water":4, "toilette":2, "toiletry":3, "toklas":2, "tokoloshe":3, "toksine":2, "told":1, "tole":1, "toleware":2, "toll":1, "tollbooth":2, "toller":2, "tollgate":2, "tollgatherer":4, "tollhouse":2, "tollhouses":3, "tollkeeper":3, "tollman":2, "tolbert":2, "tolbooth":2, "tolbutamide":4, "tolerance":3, "tolerant":3, "tolerate":3, "tolerability":6, "tolerable":4, "tolerableness":5, "tolerably":4, "toleration":4, "tolerationism":5, "tolerationist":5, "tolerative":4, "tolerator":4, "toling":2, "tolidine":3, "toller":2, "tollie":2, "tolly":2, "tolpuddle martyrs":5, "tolstoy":2, "tolstoyism":3, "tolstoyist":3, "toltec":2, "toltecan":3, "toluate":3, "toluene":3, "toluid":3, "toluide":3, "toluol":3, "toluyl":3, "tolyl":2, "tom":1, "tom":1, "tom and jerry":4, "tom collins":3, "tom-tom":1, "tomb":1, "tombless":2, "tomblike":2, "tombstone":2, "tome":1, "tompkins":2, "tomsk":1, "tomalley":3, "tomahawk":3, "tomahawk":3, "tomahawker":4, "tombac":2, "tombalbaye":4, "tombigbee":3, "tombouctou":3, "tomboy":2, "tombola":3, "tombolo":3, "tomcat":2, "tomcatted":3, "tomcatting":3, "tomcod":2, "tomfool":2, "tomfooleries":4, "tomfoolery":4, "tomfoolish":3, "tomfoolishness":4, "tommaso":3, "tommie":2, "tommy":2, "tommy":2, "tommy gun":3, "tommye":2, "tommyrot":3, "tompion":3, "tomtate":2, "tomtit":2, "ton":1, "ton-mileage":2, "ton-up":1, "tone":1, "tone cluster":3, "tone color":3, "tone control":3, "tone language":3, "tone poem":3, "toneless":2, "tonelessly":3, "tonelessness":3, "tong":1, "tongs":1, "tongue":1, "tongue twister":3, "tongue-lashing":2, "tongued":1, "tongues":1, "tonguefish":2, "tonguefishes":3, "tongueless":2, "tonguelike":2, "tonguing":2, "tonga":2, "tongking":2, "tongman":2, "tonk":1, "tonne":1, "tonal":2, "tonalist":3, "tonally":3, "tonbridge":2, "tondo":2, "toneme":2, "tonga":2, "tonga":2, "tongan":2, "tonic":2, "tonic accent":4, "tonic sol-fa":3, "toning":2, "tonish":2, "tonishly":3, "tonishness":3, "tonite":2, "tonically":4, "tonier":3, "toniest":3, "tonka bean":3, "tonkawa":3, "tonkin":2, "tonking":2, "tonle sap":3, "tonlet":2, "tonnage":2, "tonneau":2, "tonnish":2, "tonnishly":3, "tonnishness":3, "tonsil":2, "tonsilar":3, "tonsillar":3, "tonsillary":4, "tonsillectome":4, "tonsillectomy":5, "tonsillitic":4, "tonsillitis":4, "tonsillotomy":5, "tonsorial":4, "tonsure":2, "tontine":2, "tony":2, "too":1, "too-too":1, "took":1, "tooke":1, "tool":1, "tool-maker":2, "toolbox":2, "tooler":2, "toolholder":3, "tooling":2, "toolless":2, "toolmaker":2, "toolmaker":3, "toolmaking":3, "toolroom":2, "toolshed":2, "toom":1, "toombs":1, "toon":1, "toot":1, "tooth":1, "tooth powder":3, "toothed":1, "toothache":2, "toothache tree":3, "toothbrush":2, "toothier":3, "toothiest":3, "toothless":2, "toothlessly":3, "toothlessness":3, "toothlike":2, "toothpaste":2, "toothpick":2, "toothsome":2, "toothsomely":3, "toothsomeness":3, "toothwort":2, "toothy":2, "toots":1, "tooter":2, "tootsie":2, "tootsy":2, "tootsy-wootsies":3, "tootsy-wootsy":3, "toodle-oo":2, "toodle-pip":2, "tooele":3, "tootle":2, "toowoomba":3, "top":1, "top banana":4, "top dressing":3, "top-dog":1, "top-hat":1, "top-heavily":3, "top-heaviness":3, "top-heavy":2, "top-level":2, "top-secret":2, "tope":1, "toph":1, "topog":1, "tops":1, "toparch":2, "topcastle":3, "topcoat":2, "toper":2, "toper's-plant":2, "topflight":2, "topflighter":3, "topfull":2, "topgallant":3, "tophamper":3, "topic":2, "topic sentence":4, "toping":2, "topical":3, "topicality":5, "topically":4, "topknot":2, "topless":2, "toplessness":3, "topline":2, "topliner":3, "toploftily":4, "toploftiness":4, "toplofty":3, "topman":2, "topmast":2, "topmaul":2, "topminnow":3, "topmost":2, "topnotch":2, "topos":2, "topographic":4, "topographically":6, "topologic":4, "topological group":6, "topological space":6, "topologically":6, "toponym":3, "toponymic":4, "topotype":3, "topotypic":4, "topper":2, "toppenish":3, "topping":2, "topping lift":3, "topple":2, "toprail":2, "topsail":2, "topside":2, "topsides":2, "topsmelt":2, "topsoil":2, "topspin":2, "topsy-turvily":4, "topsy-turvy":3, "topsy-turvydom":4, "topsyturviness":5, "toque":1, "tor":1, "torc":1, "torch":1, "torchbearer":3, "torchier":3, "torchiest":3, "torchless":2, "torchlike":2, "torchwood":2, "torchy":2, "tore":1, "torn":1, "torque":1, "torque converter":4, "torr":1, "torse":1, "torsk":1, "tort":1, "tort-feasor":2, "torte":1, "torbanite":3, "torbay":2, "torbernite":3, "torch":2, "torchier":2, "torchiere":2, "torchon lace":3, "torchre":3, "tordesillas":4, "toreador":4, "toreador pants":5, "toric":2, "toric lens":3, "torment":2, "tormenter":3, "tormentil":3, "tormentor":3, "tornadic":3, "tornaria":4, "tornariae":4, "tornarias":4, "tornado":3, "tornadolike":4, "tornillo":3, "tornillos":3, "torpedo":3, "torpedo boat":4, "torpedo tube":4, "torpedo-boat destroyer":6, "torpedoed":3, "torpedoing":4, "torpedolike":4, "torpedoman":4, "torpid":2, "torpor":2, "torporific":4, "torquate":2, "torquay":2, "torquato":3, "torques":2, "torquemada":4, "torrance":2, "torre del greco":5, "torrens":2, "torrens title":4, "torrent":2, "torrential":3, "torres strait":3, "torrefy":3, "torreon":3, "torrid":2, "torrid zone":3, "torridity":4, "torridly":3, "torridness":3, "torricelli":4, "torricellian tube":6, "torricellian vacuum":8, "torrify":3, "torsade":2, "torsel":2, "torsi":2, "torsion":2, "torsion balance":4, "torsion bar":3, "torsibility":5, "torso":2, "torteau":2, "tortellini":4, "torten":2, "tortelier":3, "tortile":2, "tortilla":3, "tortillasllon":3, "tortillions":3, "tortillon":3, "tortious":2, "tortiously":3, "torticollis":4, "tortoise":2, "tortoise-core":2, "tortoise-shell":2, "tortoiseshell":3, "tortola":3, "tortoni":3, "tortricid":3, "torture":2, "tortured":2, "torturing":3, "tortuga":3, "tortuosity":5, "tortuous":3, "tortuously":4, "tortuousness":4, "torulosis":4, "tos":1, "tosh":1, "toss":1, "tosspot":2, "tossup":2, "tost":1, "tosca":2, "toscana":3, "toscanini":4, "tot":1, "tote":1, "tother":2, "totable":3, "toter":2, "toting":2, "totleben":3, "totted":2, "tottenham":3, "totter":2, "totterer":3, "tottering":3, "totting":2, "touch":1, "touch football":3, "touch system":3, "touch-tackle":2, "touched":1, "touchable":3, "touchableness":4, "touchback":2, "touchdown":2, "toucher":2, "touchhole":2, "touching":2, "touchingly":3, "touchingness":3, "touchier":3, "touchiest":3, "touchily":3, "touchiness":3, "touchline":2, "touchmark":2, "touchstone":2, "touchwood":2, "touchy":2, "tough":1, "tough-minded":2, "toughen":2, "toughener":3, "toughie":2, "toughies":2, "toughish":2, "toughly":2, "toughness":2, "toughy":2, "touggourt":2, "toul":1, "tour":1, "tours":1, "tourbillion":3, "tourcoing":2, "tourer":2, "touring car":3, "tourism":2, "tourist":2, "touristy":3, "touristic":3, "touristical":4, "touristically":5, "touristry":3, "tourmaline":3, "tourmalinic":4, "tournai":2, "tournay":2, "tournament":3, "tourneur":2, "tourney":2, "tournedos":3, "tourniquet":3, "tournois":2, "touse":1, "tousing":2, "toussaint l'ouverture":5, "tout":1, "tout ensemble":4, "touter":2, "toucan":2, "toucanet":3, "touch":2, "touch":3, "toulon":2, "toulouse":2, "toulouse-lautrec":3, "toupee":2, "tour":2, "touraine":2, "tourane":2, "touraco":3, "tourelle":2, "tour":3, "tousle":2, "touzle":2, "tow":1, "tow-colored":2, "tow-headed":2, "towardliness":3, "town":1, "town":1, "town crier":3, "town meeting":3, "town planning":3, "townes":1, "townsfolk":2, "townshend":2, "townsman":2, "townspeople":3, "townsville":2, "townswoman":3, "townswomen":3, "townee":2, "towner":2, "townhall clock":3, "townie":2, "townish":2, "townless":2, "townscape":2, "township":2, "townwear":2, "towny":2, "towage":2, "towable":3, "towbar":2, "towboat":2, "towel":2, "towel rail":3, "toweled":2, "towelled":2, "toweling":3, "towelling":3, "tower":2, "tower hamlets":4, "tower of london":5, "tower-mill":2, "towered":2, "towering":3, "towerless":3, "towerlike":3, "towerman":3, "towery":3, "towhead":2, "towhee":2, "towing path":3, "towkay":2, "towline":2, "towmond":2, "towmont":2, "towpath":2, "towrope":2, "towser":2, "towson":2, "towy":2, "tox":1, "toxaemic":3, "toxaemia":4, "toxalbumin":4, "toxaphene":3, "toxemic":3, "toxemia":4, "toxeus":3, "toxic":2, "toxicity":4, "toxin":2, "toxin-antitoxin":5, "toxically":4, "toxicant":3, "toxicologist":5, "toxicology":5, "toxicogenic":5, "toxicological":6, "toxicologically":7, "toxicosis":4, "toxiphobia":5, "toxoid":2, "toxophilite":4, "toxophilitic":5, "toxophily":4, "toxoplasmosis":5, "toy":1, "toy":1, "toynbee":2, "toyer":2, "toyless":2, "toylike":2, "tobacco":3, "tobacco mosaic virus":8, "tobaccoless":4, "tobacconist":4, "tobago":3, "tobey":2, "tobi":2, "tobie":2, "tobit":2, "tobias":3, "tobira":3, "toboggan":3, "tobol":2, "tobolsk":2, "tobruk":2, "toby":2, "toby":2, "toby jug":3, "tocantins":3, "tocharian":4, "tocology":4, "tocometer":4, "tocopherol":4, "tocodynamometer":7, "today":2, "tody":2, "toga":2, "toga virilis":5, "togaed":2, "togate":2, "togated":3, "together":3, "togetherness":4, "togliatti":3, "togo":2, "togoland":3, "togolander":4, "togolese":3, "toheroa":4, "tohubohu":4, "tojo":2, "tokay":2, "tokay":2, "token":2, "token money":4, "token payment":4, "token strike":3, "token vote":3, "tokenism":3, "tokharian":4, "tokio":3, "toklas":2, "tokology":4, "tokodynamometer":7, "tokonoma":4, "tokugawa":4, "tokugawa iyeyasu":8, "tokyo":2, "tokyo":3, "tokyoite":4, "tola":2, "tolan":2, "tolane":2, "toledo":3, "tolima":3, "tolu":2, "tolumnius":4, "toluca":3, "toluic":3, "toluic acid":5, "toluidine":4, "tomah":2, "toman":2, "tomatillo":4, "tomato":3, "tomentum":3, "tomia":3, "tomial":3, "tomium":3, "tomography":4, "tomorrow":3, "tomogram":3, "tomograph":3, "tomonaga":4, "tomoyuki":4, "tonalitive":4, "tonality":4, "tonette":2, "tonetic":3, "tonetics":3, "tonetically":5, "tonelada":4, "tonetician":4, "toni":2, "tonicity":4, "tonight":2, "tonometer":4, "tonus":2, "tony":2, "tony":2, "topaz":2, "topaze":2, "topazine":3, "topazolite":4, "topee":2, "topeka":3, "topelius":4, "tophaceous":3, "tophet":2, "topheth":2, "tophus":2, "topi":2, "topiaries":4, "topiary":4, "topographer":4, "topography":4, "topologist":4, "topology":4, "toponymy":4, "toquet":2, "tora":2, "torah":2, "toran":2, "torana":3, "torelli":3, "toreutic":3, "toreutics":3, "torero":3, "toreros":3, "tori":2, "torii":3, "torino":3, "toro":2, "toroid":2, "toroidal":3, "toroidally":4, "toronto":3, "torontonian":5, "torose":2, "torous":2, "toru":2, "torus":2, "tory":2, "toryish":3, "toryism":3, "total":2, "total depravity":6, "total eclipse":4, "total internal reflection":8, "total recall":4, "total serialism":6, "totaled":2, "totalled":2, "totaling":3, "totalise":3, "totaliser":4, "totalize":3, "totalizer":4, "totalitarian":6, "totalitarianism":7, "totalitarianize":7, "totalitarianized":7, "totalitarianizing":8, "totality":4, "totalization":5, "totalling":3, "totally":3, "totaquine":3, "totem":2, "totem pole":3, "totemic":3, "totemism":3, "totemist":3, "totemically":5, "totient":2, "totipotent":4, "totipalmate":4, "totipalmation":5, "tovarich":3, "tovarisch":3, "tovarish":3, "tovey":2, "towanda":3, "toward":2, "towards":2, "towardly":3, "towardness":3, "toyama":3, "toyon":2, "toyohiko":4, "toyotomi":4, "tpn":1, "tpr":1, "tra-la":1, "trabzon":2, "trace":1, "trace element":4, "traceability":5, "traceable":3, "traceableness":4, "traceably":3, "traceless":2, "tracelessly":3, "trachytoid":3, "track":1, "track record":3, "tracks":1, "trackable":3, "tracker":2, "tracking station":4, "tracklayer":3, "tracklaying":3, "trackless":2, "tracklessly":3, "tracklessness":3, "trackman":2, "tracksuit":2, "tract":1, "tracer":2, "tracer bullet":4, "traceried":3, "traceries":3, "tracery":3, "tracing":2, "tracing paper":4, "tractarianism":5, "tractate":2, "tractable":3, "tractile":2, "tractility":4, "traction":2, "traction engine":4, "tractor":2, "tractor-trailer":3, "tractrix":2, "tractrices":3, "trad":1, "trade":1, "trade acceptance":4, "trade cycle":3, "trade discount":3, "trade journal":3, "trade secret":3, "trade union":3, "trade-union":2, "trade-unionism":3, "trade-unionist":3, "trades union":3, "trades union congress":5, "trades-unionism":3, "trades-unionist":3, "tradesfolk":2, "tradesman":2, "tradespeople":3, "tradeswoman":3, "tradeswomen":3, "trademark":2, "trader":2, "tradership":3, "tradescantia":5, "trading estate":4, "trading post":3, "trading stamp":3, "traditive":3, "traditor":3, "traditores":4, "traffic":2, "traffic circle":4, "traffic court":3, "traffic island":4, "traffic jam":3, "traffic light":3, "traffic pattern":4, "traffic warden":4, "trafficked":2, "trafficker":3, "trafficking":3, "trafficability":6, "trafficable":4, "trafficless":3, "trafficator":4, "trafford":2, "tragacanth":3, "tragedy":3, "tragic":2, "tragic flaw":3, "tragic irony":5, "tragical":3, "tragically":4, "tragicalness":4, "tragicomedy":5, "tragicomic":4, "tragicomically":6, "tragopan":3, "trail":1, "trail away":3, "trailsman":2, "trailblazer":3, "trailblazing":3, "trailboard":2, "trailer":2, "trailer truck":3, "trailing arbutus":5, "trailing edge":3, "trailing vortex drag":5, "trailingly":3, "trailless":2, "train":1, "train spotter":3, "trainable":3, "trainband":2, "trainbearer":3, "trainee":2, "trainer":2, "training":2, "trainless":2, "trainline":2, "trainman":2, "trainpipe":2, "trainshed":2, "trainsick":2, "traipse":1, "traipsing":2, "trait":1, "traitor":2, "traitoress":3, "traitorous":3, "traitorously":4, "traitorousness":4, "traitorship":3, "tralles":1, "tram":1, "tramp":1, "tramcar":2, "tramless":2, "tramline":2, "trammeled":2, "trammelled":2, "trammeler":3, "trammeling":3, "trammeller":3, "trammelling":3, "trammie":2, "tramming":2, "trample":2, "trampler":2, "trampoline":3, "trampoliner":4, "trampolinist":4, "tramroad":2, "tramway":2, "tran-ural":2, "trance":1, "trancedly":2, "trancelike":2, "trancing":2, "trank":1, "tranquillize":2, "trans":1, "trans-african":3, "trans-algerian":4, "trans-alleghenian":5, "trans-antarctic":3, "trans-andean":3, "trans-andine":2, "trans-apennine":3, "trans-australian":3, "trans-austrian":3, "trans-adriatic":4, "trans-american":4, "trans-arabian":4, "trans-asiatic":4, "trans-balkan":2, "trans-baltic":2, "trans-carpathian":4, "trans-caspian":3, "trans-canadian":4, "trans-congo":2, "trans-cordilleran":4, "trans-danubian":4, "trans-euphrates":3, "trans-egyptian":3, "trans-germanic":3, "trans-grampian":3, "trans-himalayan":4, "trans-hispanic":3, "trans-indian":3, "trans-indus":2, "trans-iberian":4, "trans-iraq":2, "trans-iranian":4, "trans-jordan":2, "trans-jovian":3, "trans-libyan":3, "trans-liberian":4, "trans-manchurian":4, "trans-martian":2, "trans-mediterranean":6, "trans-mississippi":4, "trans-mississippian":5, "trans-mongolian":4, "trans-neptunian":4, "trans-new guinea phylum":5, "trans-niger":2, "trans-panamanian":5, "trans-paraguayan":4, "trans-persian":2, "trans-pyrenean":4, "trans-rhenish":2, "trans-sahara":3, "trans-saharan":3, "trans-saturnian":4, "trans-severn":2, "trans-siberian":4, "trans-siberian railway":6, "trans-stygian":3, "trans-tiber":2, "trans-tiberian":4, "trans-uralian":4, "trans-volga":2, "transl":1, "transp":1, "transact":2, "transaction":3, "transactional":4, "transactionally":5, "transactinide":4, "transactor":3, "transalpine":3, "transalpine gaul":4, "transannular":4, "transarctic":3, "transatlantic":4, "transatlantically":6, "transaudient":4, "transaquatic":4, "transbay":2, "transborder":3, "transcaucasia":4, "transcalent":3, "transcalency":4, "transceiver":3, "transcend":2, "transcendent":3, "transchange":2, "transchanged":2, "transchanger":3, "transchanging":3, "transchannel":3, "transcolor":3, "transcoloration":5, "transcondylar":4, "transcondyloid":4, "transcontinental":5, "transcontinentally":6, "transcorporeal":5, "transcrystalline":4, "transcultural":4, "transculturation":5, "transcurrent":3, "transcursive":3, "transcurvation":4, "transdermic":3, "transdesert":3, "transdialect":4, "transdiaphragmatic":6, "transdiurnal":4, "transduce":2, "transducer":3, "transduction":3, "transelement":4, "transelementate":5, "transelementated":6, "transelementating":6, "transelemental":5, "transelementary":6, "transelementation":6, "transempirical":5, "transessentiate":5, "transessentiated":6, "transessentiating":6, "transexperiential":6, "transequatorial":6, "transeunt":3, "transfashion":3, "transfeature":3, "transfeatured":3, "transfeaturing":4, "transfer":2, "transfer fee":3, "transfer list":3, "transfer payment":4, "transfer rna":3, "transferred":2, "transferable vote":4, "transferal":3, "transferase":3, "transferability":6, "transferable":4, "transferee":3, "transference":3, "transferential":4, "transferor":3, "transferral":3, "transferrable":4, "transferrer":3, "transferrin":3, "transferring":3, "transfigure":3, "transfigurement":4, "transfiguration":5, "transfiguration":5, "transfiltration":4, "transfix":2, "transfixion":3, "transfinite":3, "transfinite number":5, "transflux":2, "transfluent":3, "transfluvial":4, "transform":2, "transformable":4, "transformative":4, "transformer":3, "transformism":3, "transformist":3, "transformistic":4, "transformation":4, "transformational":5, "transformational grammar":7, "transformational rule":6, "transfrontal":3, "transfrontier":3, "transfuse":2, "transfusable":4, "transfuser":3, "transfusible":4, "transfusion":3, "transfusive":3, "transgress":2, "transgression":3, "transgressive":3, "transgressively":4, "transhuman":3, "transhumance":3, "transhumant":3, "transiliac":4, "transilluminate":5, "transilluminated":6, "transilluminating":6, "transillumination":6, "transilluminator":6, "transindividual":6, "transinsular":4, "transisthmian":4, "transit":2, "transit instrument":5, "transit theodolite":6, "transite":3, "transkei":2, "translate":2, "translatability":6, "translatable":4, "translatableness":5, "translation":3, "translational":4, "translationally":5, "translative":3, "translator":3, "translight":2, "transliterate":4, "translocate":3, "translocated":4, "translocating":4, "translocation":4, "translucence":3, "translucent":3, "translucently":4, "translucency":4, "translucid":3, "translucidus":4, "translunar":3, "translunary":4, "transmade":2, "transmake":2, "transmaking":3, "transmarginal":4, "transmarine":3, "transmaterial":5, "transmental":3, "transmethylation":5, "transmeridional":6, "transmission":3, "transmission density":6, "transmission line":4, "transmissive":3, "transmissively":4, "transmissiveness":4, "transmissivity":5, "transmissibility":6, "transmissible":4, "transmit":2, "transmittal":3, "transmittance":3, "transmittancy":4, "transmittable":4, "transmitted":3, "transmitter":3, "transmitting":3, "transmittible":4, "transmigrant":3, "transmigrate":3, "transmigrated":4, "transmigrating":4, "transmogrified":4, "transmogrification":6, "transmogrify":4, "transmogrifying":5, "transmold":2, "transmontane":3, "transmould":2, "transmundane":3, "transmuscle":3, "transmute":2, "transmutability":6, "transmutable":4, "transmutableness":5, "transmutably":4, "transmuted":3, "transmuter":3, "transmuting":3, "transmutation":4, "transmutual":4, "transnatural":4, "transnational":4, "transnationally":5, "transnormal":3, "transocular":4, "transorbital":4, "transoceanic":5, "transovarian":5, "transpalmar":3, "transparence":3, "transparent":3, "transparently":4, "transparentness":4, "transparency":4, "transparish":3, "transpassional":4, "transpacific":4, "transpadane":3, "transparietal":5, "transpatronized":4, "transpatronizing":5, "transpenetrable":5, "transpenetration":5, "transpeninsular":5, "transpeptidation":5, "transperitoneal":6, "transpersonal":4, "transphysical":4, "transpierce":2, "transplant":2, "transplanetary":5, "transpleural":3, "transpontine":3, "transport":2, "transport caf":4, "transported":3, "transporter bridge":4, "transportive":3, "transportation":4, "transpose":2, "transposed":2, "transposal":3, "transposability":6, "transposable":4, "transposer":3, "transposing":3, "transposing instrument":6, "transpositive":4, "transpour":2, "transpolar":3, "transponibility":6, "transponible":4, "transposition":4, "transpositional":5, "transprocess":3, "transpulmonary":5, "transrational":4, "transrectification":6, "transreal":3, "transriverine":4, "transsegmental":4, "transsensual":4, "transseptal":3, "transsexual":4, "transsexualism":5, "transsepulchral":4, "transshape":2, "transshaped":2, "transshaping":3, "transshift":2, "transship":2, "transshipped":2, "transshipment":3, "transshipping":3, "transsolid":3, "transsonic":3, "transstellar":3, "transthalamic":4, "transthoracic":4, "transtracheal":4, "transuranic":4, "transurethral":4, "transuterine":4, "transvaal":2, "transvalue":3, "transvalued":3, "transvaluation":5, "transvaluing":4, "transvection":3, "transverse":2, "transverse colon":4, "transverse flute":3, "transverse process":4, "transverse wave":3, "transversal":3, "transversally":4, "transvestism":3, "transvestite":3, "transvestitism":4, "tranter":2, "trangam":2, "trannie":2, "tranquil":2, "tranquil-ization":4, "tranquilize":3, "tranquilized":3, "tranquilizer":4, "tranquilizing":4, "tranquility":4, "tranquilization":5, "tranquillise":3, "tranquilliser":4, "tranquillize":3, "tranquillized":3, "tranquillizer":4, "tranquillizing":4, "tranquillity":4, "tranquillity":4, "tranquilly":3, "tranquilness":3, "transcend":2, "transcendence":3, "transcendent":3, "transcendency":4, "transcendingly":4, "transcendental":4, "transcendental meditation":8, "transcendentalism":5, "transcendentalist":5, "transcendentalistic":6, "transcendentalize":5, "transcendentalization":7, "transcendentally":5, "transcribe":2, "transcribed":2, "transcriber":3, "transcribing":3, "transcript":2, "transcription":3, "transcriptional":4, "transcriptionally":5, "transcriptive":3, "transcriptively":4, "transect":2, "transection":3, "transenna":3, "transennae":3, "transept":2, "tranship":2, "transhipped":2, "transhipment":3, "transhipping":3, "transience":2, "transient":2, "transiently":3, "transientness":3, "transiency":3, "transilience":4, "transilient":4, "transistor":3, "transistorise":4, "transistorize":4, "transistorized":4, "transistorizing":5, "transit camp":3, "transitable":4, "transient":3, "transition":3, "transition element":6, "transition temperature":7, "transitional":4, "transitionally":5, "transitionary":5, "transitive":3, "transitively":4, "transitiveness":4, "transitivity":5, "transitorily":5, "transitoriness":5, "transitory":4, "transitory action":6, "transitron":3, "transom":2, "transomed":2, "transonic":3, "transonic barrier":6, "transpicuous":4, "transpire":2, "transpired":2, "transpirable":4, "transpiratory":5, "transpiring":3, "transpiration":4, "transponder":3, "transponder":3, "transpondor":3, "transubstantial":4, "transubstantiate":5, "transubstantiated":6, "transubstantiating":6, "transubstantiation":6, "transubstantiationalist":8, "transude":2, "transuded":3, "transuding":3, "transudate":3, "transudation":4, "transudative":4, "transylvania":5, "transylvanian alps":6, "trap":1, "trap-door spider":3, "trapes":1, "traps":1, "trapse":1, "trapball":2, "trapezoid":3, "trapezoidal":4, "trapezophora":5, "trapezophoron":5, "traplike":2, "trapper":2, "trappean":3, "trapping":2, "trappings":2, "trappist":2, "trappier":3, "trappiest":3, "trappiness":3, "trappy":2, "traprock":2, "trapshooter":3, "trapshooting":3, "trash":1, "trash farming":3, "trashily":3, "trashiness":3, "trashy":2, "trass":1, "trasentine":3, "trasimenus":4, "trattoria":4, "trauchle":2, "trauma":2, "traumatic":3, "traumata":3, "traumatise":3, "traumatism":3, "traumatize":3, "traumatized":3, "traumatizing":4, "traumatization":5, "trave":1, "travail":2, "travancore":3, "travanit":3, "travel":2, "travel agency":5, "travel-sick":2, "traveled":2, "travelled":2, "travelable":4, "traveler":3, "traveler's-joy":3, "traveler's-tree":3, "traveling":3, "travellable":4, "traveller":3, "traveller's cheque":4, "traveller's joy":4, "travelling":3, "travelling salesman":5, "travelling wave":4, "traverse":2, "traversed":2, "traversing":3, "travertin":3, "travertine":3, "travestied":3, "travesty":3, "travestying":4, "trawl":1, "trawlability":5, "trawlable":3, "trawler":2, "tray":1, "traymobile":2, "trabecula":4, "trabecular":4, "trabeculate":4, "trabeate":3, "trabeated":4, "tracasserie":4, "trachea":3, "tracheae":3, "tracheal":3, "tracheation":4, "tracheid":3, "tracheide":3, "tracheidal":4, "tracheitis":4, "trachelia":4, "trachelium":4, "tracheostomy":5, "tracheoscopist":5, "tracheoscopy":5, "tracheostomy":5, "tracheotomist":5, "tracheotomy":5, "tracheobronchial":6, "tracheophyte":4, "tracheoscopic":5, "trachiniae":4, "trachle":2, "trachoma":3, "trachyte":2, "trachytic":3, "trachybasalt":4, "trachycarpous":4, "trachyspermous":4, "tracy":2, "tradition":3, "traditional":4, "traditionalism":5, "traditionalist":5, "traditionalistic":6, "traditionary":5, "traditionist":4, "traditionless":4, "traduce":2, "traduced":2, "traducement":3, "traducer":3, "traducing":3, "traducian":3, "traducianism":4, "traducianist":4, "traducianistic":5, "trafalgar":3, "tragedian":4, "tragedienne":4, "tragia":3, "tragion":3, "tragus":2, "traherne":2, "trajan":2, "traject":2, "trajection":3, "trajectory":4, "tralee":2, "tramontane":3, "tramontana":4, "trapan":2, "trapanned":2, "trapanner":3, "trapanning":3, "trapani":3, "trapeze":2, "trapezist":3, "trapezia":4, "trapezial":4, "trapeziform":4, "trapezium":4, "trapeziums":4, "trapezius":4, "trapeziuses":5, "trapezohedral":5, "trapezohedron":5, "trapunto":3, "trasimene":3, "trasimeno":4, "travail":2, "traversal":3, "traversable":4, "traverser":3, "traviata":3, "travois":2, "treacheries":3, "treacherous":3, "treacherously":4, "treacherousness":4, "treachery":3, "tread":1, "treader":2, "treading":2, "treadler":2, "treadmill":2, "treadplate":2, "treas":1, "treashouses":3, "treasure":2, "treasure hunt":3, "treasure-house":2, "treasure-trove":2, "treasured":2, "treasureless":3, "treasurable":4, "treasurer":3, "treasurer":3, "treasuries":3, "treasuring":3, "treasury":3, "treasury":3, "treasury bench":4, "treasury bill":4, "treasury bond":4, "treasury certificate":7, "treasury note":4, "treat":1, "treatment":2, "treacle":2, "treacle mustard":4, "treacleberry":4, "treacly":2, "treadle":2, "treason":2, "treasonable":4, "treasonableness":5, "treasonably":4, "treasonous":3, "treasonously":4, "treatise":2, "treaty":2, "treaty port":3, "treatyless":3, "trebbia":2, "trebizond":3, "trebuchet":3, "tree":1, "tree":1, "tree creeper":3, "tree kangaroo":4, "tree mallow":3, "tree of heaven":4, "tree runner":3, "tree sparrow":3, "tree surgery":4, "tree-surgeon":2, "treed":1, "treehopper":3, "treeing":2, "treelessness":3, "treelike":2, "treelined":2, "treenail":2, "treetop":2, "treewax":2, "tref":1, "treillage":2, "treitschke":2, "trek":1, "trekker":2, "trekking":2, "trellis":2, "trelliswork":3, "trematode":3, "trematoda":4, "tremble":2, "trembler":2, "trembles":2, "trembling poplar":4, "tremblier":3, "trembliest":3, "trembly":2, "tremor":2, "tremolant":3, "tremolite":3, "tremolitic":4, "tremolo":3, "tremulant":3, "tremulous":3, "tremulously":4, "tremulousness":4, "trench":1, "trench fever":3, "trench mortar":3, "trench warfare":3, "trenchant":2, "trenchantly":3, "trenchancy":3, "trencher":2, "trencherman":3, "trenches":2, "trend":1, "trendy":2, "trengganu":3, "trent":1, "trente et quarante":4, "trenchard":2, "trental":2, "trentino-alto adige":7, "trento":2, "trenton":2, "trentonian":4, "trepanation":4, "trepidation":4, "treponeme":3, "treponematous":5, "treponema":4, "treponemas":4, "treponemata":5, "treponematosis":6, "treponemiasis":6, "tres":1, "tress":1, "tressed":1, "tressier":3, "tressiest":3, "tressy":2, "trespass":2, "trespasser":3, "tressure":2, "tressured":2, "trestle":2, "trestletree":3, "trestlework":3, "tret":1, "treves":1, "trevithick":3, "trevor":2, "trew":1, "trews":1, "trey":1, "treble":2, "treble chance":3, "treble clef":3, "treblinka":3, "trebly":2, "trebucket":3, "trecento":3, "tredecillion":4, "tredecillionth":4, "treen":2, "treenware":3, "trefah":2, "trefoil":2, "trehala":3, "trehalose":3, "trelew":2, "tremendous":3, "tremendously":4, "tremendousness":4, "trenail":2, "trepan":2, "trepang":2, "trepanned":2, "trepanner":3, "trepanning":3, "trephine":2, "trephined":2, "trephining":3, "trevally":3, "trevelyan":3, "trevet":2, "trevette":2, "trevino":3, "treviso":3, "trh":1, "tri-city":2, "tribe":1, "tribesman":2, "tribeless":2, "tribelet":2, "tribade":2, "tribal":2, "tribalism":3, "tribalist":3, "tribally":3, "tribadism":3, "triblet":2, "tribune":2, "tribuneship":3, "tribute":2, "tribulation":4, "tribunate":3, "tribunicial":4, "tribunitial":4, "tributaries":4, "tributarily":5, "tributary":4, "trice":1, "trichite":2, "trichia":3, "trichinise":3, "trichinised":3, "trichinising":4, "trichinize":3, "trichinized":3, "trichinizing":4, "trichiniasis":5, "trichinization":5, "trichinopoly":5, "trichinous":3, "trichinosis":4, "trichion":3, "trichoid":2, "trichocyst":3, "trichogyne":3, "trichogynial":5, "trichomonad":4, "trichomonadal":5, "trichomoniasis":6, "trichonotid":4, "trichonympha":4, "trichotomic":4, "trick":1, "trick-or-treater":2, "trickeries":3, "trickery":3, "trickish":2, "trickishly":3, "trickishness":3, "trickier":3, "trickiest":3, "trickily":3, "trickiness":3, "trickle":2, "trickle charger":4, "trickless":2, "tricklingly":3, "tricksier":3, "tricksiest":3, "tricksome":2, "trickster":2, "trickstering":3, "tricksy":2, "tricktrack":2, "tricky":2, "tricing":2, "trictrac":2, "triduum":3, "tridymite":3, "tried":1, "trier":1, "triesnecker":3, "trig":1, "trigamist":3, "trigamous":3, "trigatron":3, "trigger":2, "trigger plant":3, "trigger-happy":3, "triggerfish":3, "triggerfishes":4, "triggerless":3, "trigging":2, "trigness":2, "trigonal":3, "trigonally":4, "trigonometer":5, "trigonometry":5, "trigonous":3, "trigonometric":5, "trigonometric function":7, "trigonometria":6, "trigonometrically":7, "trike":1, "trill":1, "trilafon":3, "trilby":2, "trilby":2, "trillion":2, "trillionth":2, "trillium":2, "trillium":3, "trilogy":3, "trim":1, "trimerous":3, "trimeter":3, "trimly":2, "trimmer":2, "trimmest":2, "trimming":2, "trine":1, "trincomalee":4, "trincomali":4, "trindle":2, "tringle":2, "trinidad":3, "trinidad and tobago":7, "trinidadian":5, "trinitarian":5, "trinitarianism":6, "trinity":3, "trinity":3, "trinity brethren":5, "trinity house":4, "trinity sunday":5, "trinity term":4, "trinket":2, "trinketer":3, "trinketry":3, "trinkum":2, "trip":1, "tripe":1, "triphthong":2, "triphthongal":3, "triphyline":3, "triphylite":3, "tripl":1, "triphammer":3, "triplicate":3, "triplicated":4, "triplicating":4, "triplication":4, "triploid":2, "triploidy":3, "triploblastic":4, "tripodal":3, "tripody":3, "tripoli":3, "tripoli":3, "tripolitania":6, "trippant":2, "tripper":2, "trippet":2, "tripping":2, "trippingly":3, "triptane":2, "tripterous":3, "triptolemos":4, "triptolemus":4, "triptych":2, "triptyque":2, "tripura":3, "tripwire":2, "triste":1, "tristful":2, "tristfully":3, "tristfulness":3, "triskaidekaphobia":7, "triskele":2, "triskelia":4, "triskelion":4, "trismegistus":4, "trismic":2, "trismus":2, "trismuses":3, "trisoctahedron":5, "trista":2, "tristam":2, "tristan":2, "tristan da cunha":5, "tristesse":2, "tristeza":3, "tristich":2, "tristichic":3, "tristichous":3, "tristichous":3, "tristram":2, "tristrem":2, "trite":1, "tritanope":3, "tritanopic":4, "tritanopia":5, "triter":2, "tritest":2, "tritiate":3, "triticale":4, "triticum":3, "tritium":3, "triturate":3, "triturated":4, "triturating":4, "triturable":4, "trituration":4, "triturator":4, "trivet":2, "trivette":2, "trivia":3, "trivial":3, "trivialise":4, "trivialised":4, "trivialism":4, "trivialising":5, "trivialize":4, "triviality":5, "trivially":4, "trivialness":4, "trivium":3, "trixie":2, "trixy":2, "triacetate":4, "triacid":3, "triad":2, "triad":2, "triadic":3, "triadism":3, "triadically":5, "triage":2, "trial":2, "trial and error":5, "trial balance":4, "trial balloon":4, "trial by battle":5, "trial by combat":5, "trial court":3, "trial-and-error":3, "trianda":3, "triangle":3, "triangle":3, "triangle of forces":6, "triangled":3, "triangular":4, "triangularity":6, "triangularly":5, "triangulate":4, "triangulately":5, "triangulated":5, "triangulating":5, "triangulation":5, "triangulator":5, "trianta":3, "triapsidal":4, "triarchy":3, "triaryl":3, "triaxial":4, "triaxiality":6, "triable":3, "triableness":4, "triacetyloleandomycin":10, "triadelphous":4, "triatomic":4, "triatomically":6, "triazin":3, "triazine":3, "triazo":3, "triazole":3, "triazolic":4, "tribadic":3, "tribasic":3, "tribology":4, "triboelectric":5, "triboelectricity":7, "triboluminescence":6, "triboluminescent":6, "tribrach":2, "tribrachic":3, "tribrachial":4, "tribromoacetaldehyde":8, "tribromoethanol":6, "tribunal":3, "tricarpellary":5, "tricentenary":5, "tricentennial":5, "triceps":2, "tricepses":3, "triceratops":4, "trichitic":3, "trichiasis":4, "trichina":3, "trichlorethylene":5, "trichloride":3, "trichloroacetaldehyde":8, "trichloroacetic acid":8, "trichloroethylene":6, "trichloromethane":5, "trichloronitromethane":7, "trichlorophenoxyacetic acid":11, "trichologist":4, "trichology":4, "trichome":2, "trichomic":3, "trichopteran":4, "trichotomously":5, "trichotomy":4, "trichosis":3, "trichroism":3, "trichromat":3, "trichromatic":4, "trichromatism":4, "trichromatopsia":6, "trichromic":3, "triclad":2, "triclinic":3, "triclinia":4, "triclinium":4, "tricolor":3, "tricolored":3, "tricorn":2, "tricorne":2, "tricornered":3, "tricostate":3, "tricot":2, "tricotine":3, "tricresol":3, "tricrotic":3, "tricrotism":3, "tricuspid":3, "tricuspidal":4, "tricuspidate":4, "tricycle":3, "tricyclic":3, "tridacna":3, "tridactyl":3, "tridactylous":4, "trident":2, "tridental":3, "tridentate":3, "tridentine":3, "tridentum":3, "tridimensional":5, "tridimensionality":7, "tridimensionally":6, "triens":2, "trient":2, "triennia":4, "triennial":4, "triennially":5, "triennium":4, "trienniums":4, "trientes":3, "trier":2, "trierarch":3, "trierarchy":4, "trieste":2, "triethyl":3, "triethylamine":5, "triecious":3, "trifacial":3, "trifid":2, "trifle":2, "trifler":2, "trifling":2, "triflingness":3, "trifluoperazine":6, "trifluoride":4, "trifluorochloromethane":8, "trifold":2, "triform":2, "triformed":2, "trifocal":3, "trifoliate":4, "trifoliated":5, "trifoliolate":5, "trifolium":4, "triforial":4, "triforiforia":6, "triforium":4, "trifurcate":3, "trifurcated":4, "trifurcon":3, "triga":2, "trigae":2, "trigeminal":4, "trigeminal nerve":5, "trigeminal neuralgia":7, "trigesimo-secundo":6, "triglyceride":4, "triglyph":2, "triglyphed":2, "triglyphic":3, "triglyphical":4, "trigo":2, "trigon":2, "trigone":2, "trigonum":3, "trigraph":2, "trigraphic":3, "trigre":3, "trihedral":3, "trihedron":3, "trihydrate":3, "trihydric":3, "trihydroxy":4, "triiodomethane":6, "triiodomethane":6, "triiodothyronine":7, "trijugate":3, "trijugous":3, "trilateral":4, "trilaterality":6, "trilaterally":5, "trilateration":5, "trilemma":3, "trilinear":4, "trilingual":3, "trilingualism":4, "trilingually":4, "trilith":2, "trilithon":3, "triliteral":4, "trilobed":2, "trilocular":4, "trilobate":3, "trilobated":4, "trilobite":3, "trimaran":3, "trimer":2, "trimeric":3, "trimester":3, "trimestral":3, "trimestrial":4, "trimethadione":5, "trimethylene":4, "trimethylglycine":5, "trimetric":3, "trimetric projection":6, "trimetrical":4, "trimetrogon":4, "trimetallic":4, "trimodal":3, "trimodality":5, "trimonthly":3, "trimorph":2, "trimorphic":3, "trimorphism":3, "trimorphous":3, "trimolecular":5, "trimotor":3, "trimotored":3, "trimurti":3, "trinal":2, "trinacria":4, "trinacrian":4, "trinary":3, "trination":3, "trinil man":3, "trinitrobenzene":5, "trinitrocresol":5, "trinitroglycerin":6, "trinitrophenylmethylnitramine":10, "trinitrophenol":5, "trinitrotoluene":6, "trinitrotoluol":6, "trinocular":4, "trinodal":3, "trinomial":4, "trinomially":5, "trio":2, "trio sonata":5, "triode":2, "trioecious":3, "trioecs":3, "triol":2, "trios":2, "triose":2, "trioxide":3, "triolet":3, "triolein":4, "tripalmitin":4, "tripart":2, "triparted":3, "tripartite":3, "tripartition":4, "tripelennamine":5, "tripersonal":4, "tripersonality":6, "tripetalous":4, "tripedal":3, "triphenylmethane":5, "triphibian":4, "triphibious":4, "triphosphate":3, "triphyllous":3, "tripinnate":3, "tripinnately":4, "tripinnated":4, "tripitaka":4, "tripitaka":4, "triplane":2, "triple":2, "triple alliance":5, "triple bond":3, "triple entente":4, "triple jump":3, "triple point":3, "triple-decker":3, "triple-header":3, "triple-nerved":2, "triple-tongue":2, "triplet":2, "triplex":2, "triplex":2, "tripletail":3, "triplicity":4, "triply":2, "tripod":2, "tripodic":3, "tripos":2, "triposes":3, "triquetra":3, "triquetrous":3, "triratna":3, "triradiate":4, "triradiately":5, "triradiated":5, "triradii":4, "triradius":4, "trireme":2, "trisa":2, "trisaccharide":4, "trisect":2, "trisepalous":4, "triseptate":3, "triserial":4, "trishaw":2, "trisomic":3, "trisomy":3, "trispast":2, "trispermous":3, "tristearin":3, "tristimulus values":6, "trisulphide":3, "trisyllabic":4, "trisyllabism":4, "trisyllabically":6, "trisyllable":4, "tritanopia":5, "tritheism":3, "tritheist":3, "tritheistic":4, "tritheistical":5, "trithing":2, "triton":2, "triton":2, "tritone":2, "tritogeneia":5, "tritonis":3, "triumph":2, "triumpher":3, "triumphal":3, "triumphal arch":4, "triumphant":3, "triumphantly":4, "triumvir":3, "triumvirs":3, "triumviral":4, "triumvirate":4, "triumviri":4, "triune":2, "triungulin":4, "triunitarian":6, "triunitarian":6, "trivalve":2, "trivandrum":3, "trivalence":3, "trivalent":3, "trivalency":4, "triweekly":3, "troat":1, "troche":1, "trochelminth":3, "trochilus":3, "trochilus":3, "trochlea":3, "trochlear":3, "trochlear nerve":4, "trochleariform":5, "trochophore":3, "trochosphere":3, "trod":1, "trode":1, "trodden":2, "troffer":2, "trog":1, "troglodyte":3, "troglodytic":4, "troglodytism":4, "troilism":2, "trois rivi":3, "trois-rivires":3, "troika":2, "troilus":2, "troke":1, "troking":2, "troll":1, "troller":2, "trolley":2, "trolley bus":3, "trolley car":3, "trolleyed":2, "trolleying":3, "trollied":2, "trollop":2, "trollope":2, "trollopean":4, "trollopian":4, "trollopy":3, "trolly":2, "trollying":3, "tromp":1, "trompe":1, "tromba marina":5, "trombidiasis":5, "trombidiosis":5, "trombone":2, "trombonist":3, "trommel":2, "tromometric":4, "tromso":2, "trondhjemite":3, "trondheim":2, "trondhjem":2, "trone":1, "troop":1, "troop carrier":4, "trooper":2, "troopship":2, "troostite":2, "troostite-martensite":4, "troostitic":3, "troosto-martensite":4, "trop":1, "trope":1, "trophallactic":4, "trophallaxis":4, "trophic":2, "trophically":4, "trophoblast":3, "trophoplasm":3, "trophoplasmatic":5, "trophoplasmic":4, "trophozoite":4, "tropic":2, "tropicbird":3, "tropical":3, "tropical year":4, "tropicalih":4, "tropicalise":4, "tropicalised":4, "tropicalising":5, "tropicalize":4, "tropicalized":4, "tropicalizing":5, "tropicalization":6, "tropologic":4, "tropologically":6, "tropopause":3, "tropophyte":3, "troposphere":3, "tropospheric":4, "troppo":2, "tros":1, "trossachs":2, "trot":1, "trot":1, "troth":1, "trothless":2, "trothplight":2, "trotline":2, "trotski":2, "trotsky":2, "trotskyism":3, "trotskyist":3, "trotskyist international":8, "trotskyite":3, "trotted":2, "trotter":2, "trotting":2, "trotty":2, "trotwood":2, "trough":1, "troughlike":2, "trounce":1, "trouncer":2, "trouncing":2, "troupe":1, "trouper":2, "trouping":2, "trouse":1, "trousperches":3, "trousseau":2, "trout":1, "troubadour":3, "trouble":2, "trouble spot":3, "trouble-shooter":3, "troubledly":3, "troubledness":3, "troubler":2, "troublemaker":4, "troublemaking":4, "troubleproof":3, "troubleshoot":3, "troubleshooted":4, "troubleshooter":4, "troubleshooting":4, "troubleshot":3, "troublesome":3, "troublesomely":4, "troublesomeness":4, "troublingly":3, "troublous":2, "troublously":3, "troublousness":3, "troupial":3, "trouser":2, "trouser suit":3, "trousers":2, "trouserless":3, "trouv":2, "trouvaille":2, "trouveur":2, "trouvelot":3, "trouville":2, "trouvre":3, "trove":1, "trow":1, "trowbridge":2, "trowel":2, "troweled":2, "trowelled":2, "troweler":3, "troweling":3, "troweller":3, "trowelling":3, "troy":1, "troy":1, "troyes":1, "troas":2, "trobriand islands":5, "trocar":2, "trochal":2, "trochanter":3, "trochanteric":4, "trochar":2, "trochaic":3, "trochaically":5, "trochee":2, "trochoid":2, "trochoidal":3, "trochoidally":4, "trogon":2, "trogonoid":3, "trojan":2, "trojan horse":3, "trojan war":3, "troland":2, "tromometer":4, "tromometry":4, "trona":2, "tropaea":3, "tropaean":3, "tropaeolin":4, "tropaeolum":4, "tropaia":3, "tropaion":3, "tropeolin":4, "trophi":2, "trophied":2, "trophy":2, "trophyless":3, "tropine":2, "tropism":2, "tropology":4, "tropophilous":4, "trotyl":2, "trover":2, "troyon":2, "trst":1, "truce":1, "truceless":2, "truck":1, "truck system":3, "truckage":2, "truckdriver":3, "trucker":2, "truckie":2, "trucking":2, "truckle":2, "truckle bed":3, "truckler":2, "trucklingly":3, "truckload":2, "truculence":3, "truculent":3, "truculently":4, "truculency":4, "trudge":1, "trudgen":2, "trudging":2, "true":1, "true":1, "true level":3, "true-hearted":2, "true-heartedness":3, "true-lovers' knot":3, "trueborn":2, "truehearted":3, "trueheartedness":4, "trueing":2, "truelove":2, "truelove knot":3, "trueness":2, "truffle":2, "truffled":2, "trug":1, "truk islands":3, "trull":1, "trullisatio":4, "trump":1, "trumps":1, "trumpery":3, "trumpless":2, "trumpet":2, "trumpet flower":4, "trumpet honeysuckle":6, "trumpet-leaf":2, "trumpet-tree":2, "trumpets":2, "trumpeter":3, "trumpeter swan":4, "trumpetfish":3, "trumpetfishes":4, "trumpetry":3, "trumpetweed":3, "trumpetwood":3, "trumscheit":2, "trunk":1, "trunk cabin":3, "trunks":1, "trunkfish":2, "trunkfishes":3, "trunkful":2, "trunkless":2, "truncate":2, "truncately":3, "truncated":3, "truncation":3, "truncheon":2, "trundle":2, "trundle bed":3, "trundler":2, "trundletail":3, "trunnel":2, "trunnion":2, "trunnioned":2, "truss":1, "trussed":1, "trusser":2, "trussing":2, "trussville":2, "trust":1, "trust account":3, "trust company":4, "trust territory":5, "trust-ingly":2, "trustability":5, "trustable":3, "trustbuster":3, "truster":2, "trustful":2, "trustfulness":3, "trusting":2, "trustingness":3, "trustily":3, "trustiness":3, "trustless":2, "trustlessly":3, "trustlessness":3, "trustworthily":4, "trustworthiness":4, "trustworthy":3, "trusty":2, "trustee":2, "trusteed":2, "trusteeing":3, "trusteeship":3, "trustor":2, "truth":1, "truth table":3, "truth-function":2, "truth-functional":3, "truth-functionally":4, "truth-value":2, "truthful":2, "truthless":2, "truthlessness":3, "truant":2, "truantly":2, "truancy":3, "trucial states":3, "trudeau":2, "trudi":2, "trudie":2, "trudy":2, "truer":2, "truest":2, "truing":2, "truism":2, "truistic":3, "truistical":4, "trujillo":3, "truly":2, "truman":2, "trumeau":2, "truro":2, "try":1, "tryparsamide":4, "trypaflavine":4, "trypanosome":4, "trypanosomic":5, "trypanosomal":5, "trypanosomiasis":7, "trypsin":2, "trypsinize":3, "trypsinogen":4, "tryptic":2, "tryptophan":3, "tryst":1, "trygon":2, "trying":2, "trying plane":3, "tryingly":3, "tryingness":3, "tryma":2, "trymata":3, "tryout":2, "tryparsamide":4, "trysail":2, "trmie":3, "trmies":3, "tsar":1, "tsardom":2, "tsarevitch":3, "tsarism":2, "tsarist":2, "tsade":2, "tsana":2, "tsarevna":3, "tsaristic":3, "tsaritsa":3, "tsaritsyn":3, "tsaritza":3, "tsarina":3, "tsaritsyn":3, "tschaikovsky":3, "tschaikowsky":3, "tschernosem":3, "tsetse":2, "tsetse fly":3, "tselinograd":4, "tsh":1, "tshiluba":3, "tshombe":2, "tsimshian":3, "tsingyuan":2, "tsinkiang":2, "tsiolkovsky":3, "tsiranana":4, "tsitsihaerh":3, "tsitsihar":3, "tsk":1, "tsonga":2, "tsotsi":2, "tsp":1, "tsuba":2, "tsuga":2, "tsugaru strait":4, "tsugouharu":4, "tsukahara":4, "tsunami":3, "tsunamic":3, "tsurugi":3, "tsushima":3, "tsutsugamushi disease":7, "tswana":2, "ttl":1, "tu quoque":3, "tuareg":2, "tub":1, "tub-thumper":2, "tube":1, "tubes":1, "tubeless tyre":3, "tubenose":2, "tuberose":2, "tubesnout":2, "tubbable":3, "tubber":2, "tubbing":2, "tubbier":3, "tubbiest":3, "tubbiness":3, "tubby":2, "tubing":2, "tublike":2, "tubman":2, "tubman":2, "tubular":3, "tuck":1, "tuck":1, "tuck away":3, "tuck-pointer":2, "tuckahoe":3, "tucker":2, "tucker":2, "tucker-bag":2, "tucker-box":2, "tuckerbox":3, "tucket":2, "tucson":2, "tues":1, "tuesday":2, "tuesdays":2, "tuff":1, "tuffaceous":3, "tuft":1, "tufted":2, "tufted duck":3, "tufter":2, "tufthunter":3, "tufthunting":3, "tufting":2, "tuffet":2, "tug":1, "tugboat":2, "tugger":2, "tugging":2, "tugless":2, "tuileries":3, "tull":1, "tulle":1, "tulle":1, "tullio":2, "tullia":3, "tullibee":3, "tully":2, "tulsa":2, "tulwar":2, "tum":1, "tump":1, "tumpline":2, "tumbes":2, "tumble":2, "tumble to":3, "tumble-down":2, "tumbler":2, "tumbler gear":3, "tumblebug":3, "tumblehome":3, "tumbleweed":3, "tumbling":2, "tumbrel":2, "tumbril":2, "tummeler":3, "tumming":2, "tummuler":3, "tummy":2, "tumwater":3, "tun":1, "tune":1, "tuneable":3, "tuneableness":4, "tuneably":3, "tuneful":2, "tunefully":3, "tunefulness":3, "tuneless":2, "tunelessly":3, "tunesmith":2, "tungstate":2, "tungsten":2, "tungsten lamp":3, "tungsten steel":3, "tungstenic":3, "tungstic":2, "tungstic acid":4, "tungstite":2, "tungstous":2, "tungting":2, "tunable":3, "tunableness":4, "tunably":3, "tunbridge wells":3, "tundish":2, "tundra":2, "tuner":2, "tungo":2, "tungus":2, "tunguses":3, "tungusic":3, "tunguska":3, "tuning":2, "tuning fork":3, "tuning key":3, "tunka":2, "tunker":2, "tunnage":2, "tunnel":2, "tunnel disease":4, "tunnel diode":4, "tunnel effect":4, "tunnel vault":3, "tunnel vision":4, "tunneled":2, "tunnelled":2, "tunneler":3, "tunneling":3, "tunneller":3, "tunnellike":3, "tunnelling":3, "tunney":2, "tunning":2, "tunny":2, "tuonela":3, "tuppence":2, "tuppenny":3, "tuque":1, "turd":1, "turf":1, "turf accountant":4, "turfier":3, "turfiest":3, "turfiness":3, "turfless":2, "turflike":2, "turfman":2, "turfy":2, "turk":1, "turk's-cap lily":3, "turkish":2, "turkish bath":3, "turkish coffee":4, "turkish delight":4, "turkish empire":4, "turkish towel":4, "turkish tobacco":5, "turkishly":3, "turkishness":3, "turkism":2, "turkman":2, "turkmen":2, "turkmenian":4, "turkmenistan":4, "turkoman":3, "turn":1, "turn against":3, "turn away":3, "turned comma":3, "turned period":4, "turnabout":3, "turnaround":3, "turnbuckle":3, "turncoat":2, "turncock":2, "turndown":2, "turner":2, "turneries":3, "turnery":3, "turnhall":2, "turning":2, "turning circle":4, "turning point":3, "turnkey":2, "turnoff":2, "turnout":2, "turnover":3, "turnpike":2, "turnsole":2, "turnspit":2, "turnstile":2, "turnstone":2, "turntable":3, "turntable ladder":5, "turnup":2, "turnverein":3, "turnwrest":2, "turnwrist":2, "turps":1, "turtlet":2, "turves":1, "turban":2, "turbaned":2, "turbanless":3, "turbanlike":3, "turbary":3, "turbellarian":5, "turbid":2, "turbidity":4, "turbidly":3, "turbidness":3, "turbine":2, "turbit":2, "turbidimeter":5, "turbidimetry":5, "turbidimetric":5, "turbidimetrically":7, "turbinal":3, "turbinate":3, "turbinated":4, "turbo":2, "turbo-electric":4, "turbot":2, "turbocar":3, "turbocharger":4, "turbofan":3, "turbogenerator":6, "turbojet":3, "turbojet engine":5, "turboprop":3, "turbosupercharged":5, "turbosupercharger":6, "turbulence":3, "turbulent":3, "turbulent flow":4, "turbulently":4, "turbulency":4, "turco":2, "turcoman":3, "turcophile":3, "turcophobia":5, "turdine":2, "turdiform":3, "turgent":2, "turgently":3, "turgency":3, "turgescent":3, "turgenev":3, "turgid":2, "turgidity":4, "turgidly":3, "turgidness":3, "turgite":2, "turgor":2, "turgot":2, "turion":3, "turkey":2, "turkey":2, "turkey buzzard":4, "turkey cock":3, "turkey oak":3, "turkey red":3, "turkey trot":3, "turkey-trot":2, "turkeyfish":3, "turkeyfishes":4, "turkestan":3, "turki":2, "turkic":2, "turkistan":3, "turko-tatar":3, "turkoman":3, "turkophil":3, "turkophile":3, "turkophobe":3, "turkophobia":5, "turku":2, "turmeric":3, "turmeric paper":5, "turmoil":2, "turner":2, "turnip":2, "turniplike":3, "turnus":2, "turpentine":3, "turpentine tree":4, "turpentined":3, "turpentinic":4, "turpentining":4, "turpeth":2, "turpin":2, "turpitude":3, "turquois":2, "turquoise":2, "turret":2, "turret lathe":3, "turreted":3, "turrethead":3, "turretless":3, "turriculated":5, "turrilite":3, "tursha":2, "turtle":2, "turtleback":3, "turtledove":3, "turtlehead":3, "turtleneck":3, "turtrotted":3, "turtrotting":3, "tusche":1, "tusche":2, "tush":1, "tushie":2, "tushies":2, "tushy":2, "tusk":1, "tusker":2, "tuskless":2, "tuscan":2, "tuscany":3, "tuscarora":4, "tusculum":3, "tussah":2, "tussal":2, "tussaud":2, "tusseh":2, "tusser":2, "tussis":2, "tussive":2, "tussle":2, "tussock":2, "tussock grass":3, "tussock moth":3, "tussocky":3, "tussor":2, "tussore":2, "tussur":2, "tut":1, "tutankhamen":4, "tutankhamon":4, "tutankhamun":4, "tutenkhamon":4, "tutsan":2, "tutted":2, "tutti":2, "tutti-frutti":3, "tutting":2, "tutto":2, "tuttutted":3, "tuttutting":3, "tutty":2, "tuvalu":1, "tuxedo":3, "tuxedo":3, "tuxtla gutirez":5, "tuart":2, "tuamotu archipelago":9, "tuatara":4, "tuba":2, "tubal":2, "tubal-cain":2, "tubalcain":3, "tubate":2, "tuber":2, "tubercle":3, "tubercle bacillus":6, "tubercular":4, "tubercularise":5, "tubercularised":5, "tubercularising":6, "tubercularize":5, "tubercularized":5, "tubercularizing":6, "tubercularization":7, "tubercularly":5, "tuberculate":4, "tuberculin":4, "tuberculinise":5, "tuberculinised":5, "tuberculinising":6, "tuberculinize":5, "tuberculinized":5, "tuberculinizing":6, "tuberculinization":7, "tuberculise":4, "tuberculised":4, "tuberculising":5, "tuberculize":4, "tuberculination":6, "tuberculoid":4, "tuberculose":4, "tuberculous":4, "tuberculocele":5, "tuberculoma":5, "tuberculomas":5, "tuberculomata":6, "tuberculosis":5, "tuberless":3, "tuberoid":3, "tuberose":3, "tuberosity":5, "tuberous":3, "tuberous-rooted":4, "tubifex":3, "tuboid":2, "tubule":2, "tubuai islands":5, "tubular":3, "tubulate":3, "tubulated":4, "tubulating":4, "tubulation":4, "tubulator":4, "tubulidentata":6, "tubuliflorous":5, "tubulous":3, "tubulously":4, "tubulure":3, "tubuphone":3, "tucana":3, "tucanae":3, "tuchun":2, "tuco-tuco":3, "tucotuco":4, "tucumcari":4, "tucum":3, "tucumn":4, "tucutucu":4, "tudor":2, "tufa":2, "tufaceous":3, "tugela":3, "tughrik":2, "tugrik":2, "tui":2, "tuinal":3, "tuition":3, "tuitional":4, "tuitionary":5, "tuitionless":4, "tula":2, "tulare":3, "tuladi":3, "tularaemic":4, "tularaemia":5, "tularemic":4, "tularemia":5, "tularosa":4, "tule":2, "tulia":2, "tulip":2, "tulip tree":3, "tuliplike":3, "tulipomania":6, "tulipwood":3, "tulu":3, "tular":4, "tumaco":3, "tumescent":3, "tumefaction":4, "tumefacient":5, "tumefied":3, "tumefy":3, "tumefying":4, "tumid":2, "tumidity":4, "tumidly":3, "tumidness":3, "tumor":2, "tumour":2, "tumult":2, "tumultuous":4, "tumultuously":5, "tumultuousness":5, "tumular":3, "tumuli":3, "tumulose":3, "tumulous":3, "tumulus":3, "tumuluses":4, "tuna":2, "tunic":2, "tunis":2, "tunica":3, "tunicate":3, "tunicated":4, "tunicle":3, "tunisia":3, "tunisia":4, "tupamaro":4, "tupelo":3, "tupelo":3, "tupi":2, "tupi-guarani":4, "tupi-guaranian":5, "tupian":3, "tupolev":3, "tupungato":4, "tup":3, "tura":2, "turandot":3, "turaco":3, "turanian":4, "tureen":2, "turenne":2, "turin":2, "turing machine":4, "turina":3, "turishcheva":4, "tutankhamen":4, "tutankhamun":4, "tutee":2, "tutelage":3, "tutelar":3, "tutenag":3, "tutiorism":4, "tutor":2, "tutoyer":3, "tutoyered":3, "tutoytoyed":4, "tutorial":4, "tutorial system":6, "tutu":2, "tutuila":4, "tutuilan":4, "tuva":2, "tuy":2, "tuyer":2, "tuyre":3, "tuyres":3, "tva":1, "tver":1, "twaddle":2, "twaddler":2, "twaddly":2, "twain":1, "twain":1, "twang":1, "twangle":2, "twat":1, "twattle":2, "twayblade":2, "tweak":1, "twee":1, "tweed":1, "tweed":1, "tweedsmuir":2, "tweeddale":2, "tweedier":3, "tweediest":3, "tweediness":3, "tweedy":2, "tweenies":2, "tweeny":2, "tweet":1, "tweeter":2, "tweeter-woofer":3, "tweeze":1, "tweezer":2, "tweezers":2, "tweezing":2, "tweedledum and tweedledee":7, "tweezers":2, "twelfth":1, "twelfthtide":2, "twelve":1, "twelve tables":3, "twelve-mile limit":3, "twelvefold":2, "twelvemo":2, "twelvemonth":2, "twelvepenny":3, "twelver":2, "twentieth":3, "twentieth man":4, "twenty":2, "twenty-eight":2, "twenty-eighth":2, "twenty-fifth":2, "twenty-first":2, "twenty-fivepenny":4, "twenty-four":2, "twenty-fourth":2, "twenty-fourmo":3, "twenty-nine":2, "twenty-ninth":2, "twenty-one":2, "twenty-seventh":3, "twenty-six":2, "twenty-sixth":2, "twenty-third":2, "twenty-twenty":3, "twenty-two":2, "twentyfold":3, "twentypenny":4, "twerp":1, "twi":1, "twi-nighter":2, "twice":1, "twickenham":3, "twicer":2, "twiddle":2, "twiddler":2, "twig":1, "twigging":2, "twiggier":3, "twiggiest":3, "twiggy":2, "twigless":2, "twiglike":2, "twill":1, "twin":1, "twin-engine":2, "twin-lens reflex":3, "twine":1, "twineable":3, "twinge":1, "twink":1, "twinned":1, "twins":1, "twinberry":3, "twinborn":2, "twiner":2, "twinflower":3, "twinkle":2, "twinkler":2, "twinkling":2, "twinning":2, "twirl":1, "twirler":2, "twirp":1, "twist":1, "twistability":5, "twistable":3, "twistedly":3, "twister":2, "twistingly":3, "twit":1, "twitch":1, "twite":1, "twitter":2, "twitterer":3, "twitteringly":4, "twittery":3, "twixt":1, "twibil":2, "twibill":2, "twier":2, "twilight":2, "twilight sleep":3, "twilight zone":3, "twining":2, "two":1, "two sicilies":4, "two-and-a-half international":6, "two-bit":1, "two-color":2, "two-cycle":2, "two-dimensional":4, "two-dimensionally":5, "two-facedly":3, "two-facedness":3, "two-fisted":2, "two-handed":2, "two-handedly":3, "two-handedness":3, "two-masted":2, "two-master":2, "two-name paper":3, "two-party system":4, "two-pot screamer":3, "two-seater":2, "two-sided":2, "two-sidedness":3, "two-sticker":2, "two-sticktimed":2, "two-sticktiming":3, "two-up":1, "two-wheeler":2, "twofer":2, "twofold":2, "twolegged":3, "twopence":2, "twopenny":3, "twosome":2, "twostepped":2, "twostepping":3, "twp":1, "twyer":2, "tychism":2, "tye":1, "tyg":1, "tyke":1, "tyler":2, "tymbal":2, "tympan":2, "tympanic":3, "tympanic bone":4, "tympanic membrane":5, "tympani":3, "tympanist":3, "tympanitic":4, "tympanites":4, "tympanitis":4, "tympanum":3, "tympany":3, "tyne":1, "tynemouth":2, "tyneside":2, "tyndale":2, "tyndall":2, "tyndall effect":4, "tyndareos":4, "tyndareus":4, "tyndaridae":4, "tynwald":2, "typ":1, "type":1, "type founder":3, "type metal":3, "type specimen":4, "type-caster":2, "typebar":2, "typecase":2, "typecast":2, "typecasting":3, "typeface":2, "typefoundry":3, "typeholder":3, "typescript":2, "typeset":2, "typesetter":3, "typesetting":3, "typewrite":2, "typewriter":3, "typewriting":3, "typewritten":3, "typewrote":2, "typhlitis":3, "typhlology":4, "typhlosis":3, "typo":1, "typog":1, "typw":1, "typal":2, "typic":2, "typing":2, "typist":2, "typical":3, "typicality":5, "typically":4, "typicalness":4, "typified":3, "typification":5, "typifier":4, "typify":3, "typifying":4, "tyr":1, "tyrant":1, "tyre":1, "tyre":1, "tyrr":1, "tyrannise":3, "tyrannised":3, "tyrannising":4, "tyrannisingly":5, "tyrannize":3, "tyrannizer":4, "tyrannizingly":5, "tyrannous":3, "tyrannously":4, "tyrannousness":4, "tyranny":3, "tyring":2, "tyrian":3, "tyrian purple":5, "tyrolese":3, "tyrrhenian sea":5, "tyrrhenum":3, "tyrrheus":3, "tyrrhus":2, "tyrtaeus":3, "tything":2, "tyum":1, "tyumen":2, "tyburn":2, "tyche":2, "tychistic":3, "tychius":3, "tycho":2, "tychopotamic":5, "tycoon":2, "tydeus":3, "tydides":3, "tying":2, "tyler":2, "tylopod":3, "tylosis":3, "typhoean":3, "typhoeus":3, "typhoid":2, "typhoid fever":4, "typhoidal":3, "typhoidin":3, "typhon":2, "typhon":2, "typhonic":3, "typhoon":2, "typhous":2, "typhogenic":4, "typhomalarial":6, "typhus":2, "typicon":3, "typikon":3, "typo":2, "typographer":4, "typography":4, "typologist":4, "typology":4, "typothetae":4, "typographic":4, "typographical":5, "typographically":6, "typological":5, "typologically":6, "tyrant":2, "tyrant flycatcher":5, "tyrannic":3, "tyrannical":4, "tyrannically":5, "tyrannicalness":5, "tyrannicide":4, "tyrannicidal":5, "tyrannosaur":4, "tyrannosaurus":5, "tyramine":3, "tyro":2, "tyro":2, "tyrol":2, "tyrone":2, "tyronic":3, "tyrocidine":4, "tyrolean":4, "tyrolienne":4, "tyroliennes":4, "tyrosine":3, "tyrosinase":4, "tyrothricin":4, "tyrus":2, "tyzine":2, "tzaddik":2, "tzaddikim":3, "tzar":1, "tzardom":2, "tzarevich":3, "tzarism":2, "tzarist":2, "tzarevna":3, "tzaristic":3, "tzaritza":3, "tzarina":3, "tzetze fly":3, "tzekung":2, "tzepo":2, "tzimmes":2, "tzigane":2, "tzigany":3, "tzitzith":2, "tzu-po":1, "trgu-mures":4, "tllez":3, "tnnies":3, "tbi":2, "tgu mure":4, "ttainder":3, "u-boat":1, "u-turn":1, "u/s":1, "uam":1, "uar":1, "uart":1, "ucca":1, "ucla":1, "uccello":3, "uda":1, "udgel":2, "udi":1, "udr":1, "udder":2, "udmurt":2, "uele":2, "ufo":1, "ugh":1, "ugli":2, "uglify":3, "uglily":3, "ugliness":3, "ugly":2, "ugly duckling":4, "ugsome":2, "ugsomeness":3, "uh-huh":1, "uhf":1, "uhde":2, "uhlan":2, "uhland":2, "uhrichsville":3, "uitlander":3, "uighur":2, "uigur":2, "uitzilopochtli":5, "ujjain":2, "ujpest":2, "uke":1, "ukr":1, "ullswater":3, "uller":2, "ullur":2, "ulm":1, "ult":1, "ultraviolet":2, "ulbricht":2, "ulcer":2, "ulcerate":3, "ulcerated":4, "ulcerating":4, "ulceration":4, "ulcerative":4, "ulcerous":3, "ulcerously":4, "ulcerousness":4, "ulfila":3, "ulfilas":3, "ullage":2, "ullage rocket":4, "ullaged":2, "ulmaceous":3, "ulna":2, "ulnar":2, "ulnar nerve":3, "ulpian":3, "ulric":2, "ulrich":2, "ulrica":3, "ulrika":3, "ulster":2, "ulster":2, "ulster defence association":9, "ulsterman":3, "ulterior":4, "ulteriorly":5, "ultima":3, "ultima":3, "ultima thule":5, "ultimate":3, "ultimate constituent":7, "ultimately":4, "ultimatum":4, "ultimo":3, "ultimogeniture":6, "ultor":2, "ultra":2, "ultra vires":4, "ultrabasic":4, "ultracentrifugal":6, "ultracentrifugally":7, "ultracentrifuge":5, "ultracentrifuged":5, "ultracentrifuging":6, "ultraconservative":6, "ultrafiche":3, "ultrafilter":4, "ultrafiltrate":4, "ultrafiltration":5, "ultrahigh frequency":6, "ultrahigh-frequency":5, "ultraism":3, "ultraist":3, "ultraistic":4, "ultramarine":4, "ultrametamorphism":6, "ultramicrometer":6, "ultramicroscopy":6, "ultramicrochemist":6, "ultramicrochemistry":7, "ultramicrochemical":7, "ultramicroscope":5, "ultramicroscopic":6, "ultramodern":4, "ultramontane":4, "ultramontanism":5, "ultramontanist":5, "ultramundane":4, "ultranationalism":6, "ultranationalistically":9, "ultranet":3, "ultrared":3, "ultrashort":3, "ultrasonic":4, "ultrasonics":4, "ultrasonically":6, "ultrasound":3, "ultrastructure":4, "ultrastructural":5, "ultratropical":5, "ultraviolet":5, "ultravirus":4, "ultraviruses":5, "ululant":3, "ululate":3, "ululated":4, "ululating":4, "ululation":4, "ulyanovsk":3, "ump":1, "umpsteen":2, "umpteen":2, "umpteenth":2, "umpy":2, "umbel":2, "umbellar":3, "umbellate":3, "umbellately":4, "umbellated":4, "umbellet":3, "umbelliferous":5, "umbellule":3, "umber":2, "umberto":3, "umberto i":4, "umbilical":4, "umbilical cord":5, "umbilically":5, "umbilicate":4, "umbilicated":5, "umbilication":5, "umbilici":4, "umbilicus":4, "umbiliform":4, "umble pie":3, "umbles":2, "umbonic":3, "umbonal":3, "umbonate":3, "umbra":2, "umbrage":2, "umbral":2, "umbrageous":3, "umbrageously":4, "umbrageousness":4, "umbrella":3, "umbrella bird":4, "umbrella plant":4, "umbrella stand":4, "umbrella tree":4, "umbrellaless":4, "umbrellalike":4, "umbrette":2, "umbriferously":5, "umbria":3, "umbrian":3, "umbriel":3, "umbrose":2, "umlaut":2, "umpire":2, "umpired":2, "umpiring":3, "umtali":3, "umteen":2, "umteenth":2, "un poco":3, "un-australian":3, "un-austrian":3, "un-american":4, "un-americanism":5, "un-brahminical":4, "un-christmaslike":3, "un-christianise":3, "un-christianised":3, "un-christianising":4, "un-christianize":3, "un-christianized":3, "un-christianizing":4, "un-christianlike":3, "un-christianly":3, "un-english":2, "un-eucharistic":4, "un-eucharistical":5, "un-european":4, "un-german":2, "un-jesuitic":4, "un-jesuitical":5, "un-latinised":3, "un-latinized":3, "un-negro":2, "un-victorian":4, "unb":1, "unbd":1, "unctad":1, "uncaria":4, "unction":2, "unctuosity":5, "unctuous":3, "unctuously":4, "undro":1, "undset":2, "unef":1, "unesco":1, "unger":2, "unicef":1, "unido":1, "unit":1, "univ":1, "univ":1, "uno":1, "unrra":1, "unrwa":1, "unabbreviated":6, "unabdicated":5, "unabdicating":5, "unabdicative":5, "unabducted":4, "unabhorred":3, "unabhorrently":5, "unabject":3, "unabjective":4, "unabjured":3, "unabjuratory":6, "unablative":4, "unabnegated":5, "unabnegating":5, "unabrogated":5, "unabrogable":5, "unabrogative":5, "unabruptly":4, "unabscessed":3, "unabsolved":3, "unabsorbed":3, "unabsorbable":5, "unabsorbent":4, "unabsorbing":4, "unabsorptive":4, "unabstentious":4, "unabstemious":5, "unabstracted":4, "unabstractive":4, "unaching":3, "unactable":4, "unacted":3, "unacting":3, "unacademic":5, "unacademical":6, "unacceding":4, "unaccelerated":6, "unaccelerative":6, "unaccentuated":6, "unacceptance":4, "unacceptant":4, "unacceptability":7, "unaccepted":4, "unacceptable":5, "unacceptableness":6, "unaccessional":5, "unaccessibility":7, "unaccessible":5, "unaccidental":5, "unacclaimed":3, "unacclivitous":5, "unacclivitously":6, "unacclimated":5, "unacclimatised":5, "unacclimatized":5, "unaccommodated":6, "unaccommodating":6, "unaccommodable":6, "unaccompanied":5, "unaccomplished":4, "unaccomplishable":6, "unaccordant":4, "unaccordable":5, "unaccorded":4, "unaccostable":5, "unaccosted":4, "unaccountability":7, "unaccountable":5, "unaccountableness":6, "unaccountably":5, "unaccounted":4, "unaccounted-for":4, "unaccoutered":4, "unaccoutred":4, "unaccredited":5, "unaccrued":3, "unaccused":3, "unaccusable":5, "unaccusing":4, "unaccustom":4, "unaccustomed":4, "unaccustomedness":5, "unaccumulated":6, "unaccumulable":6, "unaccumulative":6, "unaccurate":4, "unacknowledged":4, "unacknowledging":5, "unacquainted":4, "unacquired":3, "unacquirable":5, "unacquisitive":5, "unacquitted":4, "unacquiescent":5, "unacrimonious":6, "unactinic":4, "unactionable":5, "unactivated":5, "unactuated":5, "unaddable":4, "unadded":3, "unaddible":4, "unadamant":4, "unaddicted":4, "unaddled":3, "unaddressed":3, "unadduced":3, "unadduceable":5, "unadducible":5, "unadhering":4, "unadhesive":4, "unadjacent":4, "unadjoined":3, "unadjoining":4, "unadjourned":3, "unadjudged":3, "unadjunctive":4, "unadjustable":5, "unadjusted":4, "unadjudicated":6, "unadministered":5, "unadministrable":6, "unadministrative":6, "unadmired":3, "unadmirable":5, "unadmirableness":6, "unadmiring":4, "unadmissive":4, "unadmissible":5, "unadmissibleness":6, "unadmitted":4, "unadmonished":4, "unadmonitory":6, "unadulating":5, "unadulatory":6, "unadvancing":4, "unadvantaged":4, "unadvantageous":5, "unadventuring":5, "unadventurous":5, "unadverse":3, "unadvertised":4, "unadvised":3, "unadvisable":5, "unadvisableness":6, "unadvisedly":5, "unadvisedness":5, "unadvocated":5, "unaerated":4, "unaesthetic":4, "unaesthetical":5, "unaffable":4, "unaffableness":5, "unaffected":4, "unaffecting":4, "unaffiliated":6, "unaffirmed":3, "unaffixed":3, "unafflicted":4, "unafflicting":4, "unafforded":4, "unaffrighted":4, "unaffronted":4, "unaged":2, "unagglomerative":6, "unaggravated":5, "unaggravating":5, "unaggressive":4, "unaggregated":5, "unagile":3, "unaging":3, "unagitated":5, "unagricultural":6, "unaidable":4, "unaided":3, "unaiding":3, "unaimed":2, "unaiming":3, "unaired":2, "unairable":4, "unairily":4, "unaisled":2, "unalcoholised":5, "unalcoholized":5, "unaldermanly":5, "unalgebraical":6, "unalienated":5, "unalienating":5, "unalienable":5, "unalimentary":6, "unalimentative":6, "unallayed":3, "unallayable":5, "unalleged":3, "unallegedly":5, "unallergic":4, "unallegorical":6, "unallegorized":5, "unalleviated":6, "unalleviating":6, "unalleviative":6, "unallied":3, "unalliterated":6, "unalliterative":6, "unallotted":4, "unallowed":3, "unallowable":5, "unalloyed":3, "unallured":3, "unalluring":4, "unallusive":4, "unalphabetic":5, "unalphabetised":5, "unalphabetized":5, "unalphabetical":6, "unalterable":5, "unalterableness":6, "unalterably":5, "unaltering":4, "unalternated":5, "unalternating":5, "unamative":4, "unamatively":5, "unambiguous":5, "unambient":4, "unambitious":4, "unambulant":4, "unamicability":7, "unamicable":5, "unamicableness":6, "unammoniated":6, "unamorous":4, "unamortized":4, "unamplified":4, "unamplifiable":6, "unamputated":5, "unamputative":5, "unantlered":3, "unanxious":3, "unanarchic":4, "unanarchistic":5, "unanalogical":6, "unanalytic":5, "unanalytical":6, "unanalyzed":4, "unanalyzable":6, "unanalyzing":5, "unanchored":3, "unanecdotal":5, "unangered":3, "unangrily":4, "unangry":3, "unanguished":3, "unangular":4, "unanimated":5, "unanimating":5, "unannealed":3, "unannexed":3, "unannexable":5, "unannihilated":6, "unannihilable":6, "unannihilative":6, "unannihilatory":7, "unannounced":3, "unannoyed":3, "unannoying":4, "unannotated":5, "unannulled":3, "unannullable":5, "unannunciable":6, "unannunciative":6, "unanswerable":5, "unanswerableness":6, "unanswerably":5, "unanswering":4, "unantagonised":5, "unantagonisable":7, "unantagonising":6, "unantagonistic":6, "unantagonized":5, "unantagonizable":7, "unantagonizing":6, "unanthologized":5, "unanticipated":6, "unanticipating":6, "unanticipative":6, "unantiquated":5, "unapt":2, "unaptly":3, "unaptness":3, "unappalled":3, "unappalling":4, "unappareled":4, "unapparelled":4, "unapparent":4, "unappealed":3, "unappealable":5, "unappealableness":6, "unappealably":5, "unappealing":4, "unappeased":3, "unappeasable":5, "unappeasing":4, "unappended":4, "unappendaged":4, "unapperceived":4, "unapperceptive":5, "unappetising":5, "unappetizing":5, "unapplaudable":5, "unapplauded":4, "unapplauding":4, "unapplausive":4, "unapplied":3, "unappliable":5, "unapplicability":7, "unapplicable":5, "unapplicableness":6, "unapplicative":5, "unappliqud":5, "unappointable":5, "unappointed":4, "unapportioned":4, "unapposable":5, "unapposite":4, "unappraised":3, "unapprenticed":4, "unappreciated":6, "unappreciating":6, "unappreciable":6, "unappreciative":6, "unapprehendable":6, "unapprehended":5, "unapprehending":5, "unapprehensive":5, "unapprehensible":6, "unapprised":3, "unapproached":3, "unapproachability":7, "unapproachable":5, "unapproaching":4, "unapproved":3, "unapprovable":5, "unapproving":4, "unappropriated":6, "unappropriable":6, "unarched":2, "unarching":3, "unarchly":3, "unarm":2, "unarmed":2, "unartful":3, "unarbitrarily":6, "unarbitrary":5, "unarbitrated":5, "unarbitrative":5, "unarbored":3, "unarboured":3, "unarchitected":5, "unarchitectural":6, "unarduous":4, "unargued":3, "unarguable":5, "unargumentative":6, "unarithmetical":6, "unarmored":3, "unarmoured":3, "unarmorial":5, "unaromatic":5, "unaromatically":7, "unarraigned":3, "unarraignable":5, "unarranged":3, "unarrayed":3, "unarrestable":5, "unarrested":4, "unarresting":4, "unarrestive":4, "unarrived":3, "unarriving":4, "unarrogant":4, "unarrogated":5, "unarrogating":5, "unarticulate":5, "unarticulated":6, "unarticulative":6, "unarticulatory":7, "unartistic":4, "unartistically":6, "unarticled":4, "unartificial":5, "unasked":2, "unaskable":4, "unasking":3, "unasthmatic":4, "unascendant":4, "unascendable":5, "unascended":4, "unascendent":4, "unascertained":4, "unascertainable":6, "unascetic":4, "unascetically":6, "unascribed":3, "unaspersed":3, "unaspersive":4, "unasphalted":4, "unaspirated":5, "unassailed":3, "unassailable":5, "unassailableness":6, "unassailably":5, "unassailing":4, "unassassinated":6, "unassaultable":5, "unassaulted":4, "unassayed":3, "unassaying":4, "unassembled":4, "unassenting":4, "unassentive":4, "unasserted":4, "unassertive":4, "unassessed":3, "unassessable":5, "unassibilated":6, "unassiduous":5, "unassigned":3, "unassignable":5, "unassimilated":6, "unassimilating":6, "unassimilable":6, "unassimilative":6, "unassistant":4, "unassisted":4, "unassisting":4, "unassorted":4, "unassociated":6, "unassociable":6, "unassociative":6, "unassuageable":5, "unassuaging":4, "unassuasive":4, "unassumed":3, "unassumable":5, "unassuming":4, "unassumingly":5, "unassumingness":5, "unassured":3, "unassuredly":5, "unassuredness":5, "unassuring":4, "unastonished":4, "unathletic":4, "unathletically":6, "unatmospheric":5, "unatrophied":4, "unattached":3, "unattachable":5, "unattacked":3, "unattackable":5, "unattained":3, "unattainted":4, "unattainability":7, "unattainable":5, "unattainableness":6, "unattaining":4, "unattemptable":5, "unattempted":4, "unattempting":4, "unattempered":4, "unattendance":4, "unattendant":4, "unattended":4, "unattentive":4, "unattenuated":6, "unattested":4, "unattired":3, "unattractable":5, "unattracted":4, "unattracting":4, "unattractive":4, "unattributable":6, "unattributive":5, "unattuned":3, "unauctioned":3, "unaugmentable":5, "unaugmentative":5, "unaugmented":4, "unauspicious":4, "unaustere":3, "unaudacious":4, "unaudited":4, "unauditioned":4, "unauthentic":4, "unauthenticity":6, "unauthentical":5, "unauthenticated":6, "unauthorised":4, "unauthorized":4, "unauthoritative":6, "unautistic":4, "unautographed":4, "unautomatic":5, "unautomatically":7, "unautumnal":4, "unaveraged":4, "unavid":3, "unawed":2, "unawkward":3, "unawned":2, "unawful":3, "unaxed":2, "unaxised":3, "unaxiomatic":6, "unaxiomatically":8, "unaxled":3, "unabandoned":4, "unabandoning":5, "unabased":3, "unabashed":3, "unabashable":5, "unabashedly":5, "unabasing":4, "unabatable":5, "unabated":4, "unabatedly":5, "unabating":4, "unabetted":4, "unabetting":4, "unabiding":4, "unable":3, "unabolished":4, "unabolishable":6, "unaborted":4, "unabortive":4, "unabraded":4, "unabrasive":4, "unabridged":3, "unabused":3, "unabusable":5, "unabutting":4, "unabusive":4, "unacerbic":4, "unacerbically":6, "unacetic":4, "unachieved":3, "unachievable":5, "unacidic":4, "unacidulated":6, "unacoustic":4, "unacoustical":5, "unacuminous":5, "unadaptable":5, "unadapted":4, "unadaptive":4, "unadept":3, "unadoptable":5, "unadopted":4, "unadoptional":5, "unadoptive":4, "unadored":3, "unadorned":3, "unadornable":5, "unadornment":4, "unadorable":5, "unadorableness":6, "unadoring":4, "unadroit":3, "unadult":3, "unadulterate":5, "unadulterated":6, "unadulterous":5, "unafraid":3, "unagrarian":5, "unagreed":3, "unalacritous":5, "unalarmed":3, "unalarming":4, "unalerted":4, "unaligned":3, "unalignable":5, "unalike":3, "unamalgamated":6, "unamalgamating":6, "unamalgamable":6, "unamalgamative":6, "unamassed":3, "unamazed":3, "unamazedly":5, "unamazedness":5, "unameliorated":6, "unameliorable":6, "unameliorative":6, "unamendable":5, "unamended":4, "unamending":4, "unamerced":3, "unamerceable":5, "unamenable":5, "unamiable":5, "unamiableness":6, "unamused":3, "unamusable":5, "unamusing":4, "unanachronistic":6, "unanachronistical":7, "unanachronous":5, "unanaemic":4, "unanalagous":5, "unanalogized":5, "unanatomised":5, "unanatomisable":7, "unanatomized":5, "unanatomizable":7, "unaneled":3, "unanemic":4, "unanointed":4, "unaphasic":4, "unapologetic":6, "unapologetically":8, "unapologizing":6, "unapostatized":5, "unapostrophized":5, "unaproned":3, "unaristocratic":6, "unaristocratically":8, "unaroused":3, "unarousable":5, "unarousing":4, "unashamed":3, "unaspiring":4, "unatoned":3, "unatoning":4, "unavailed":3, "unavailability":7, "unavailable":5, "unavailableness":6, "unavailing":4, "unavailingly":5, "unavenged":3, "unavengeable":5, "unavenging":4, "unaverred":3, "unaverted":4, "unavoidability":7, "unavoidable":5, "unavoidableness":6, "unavoiding":4, "unavouched":3, "unavowable":5, "unavowableness":6, "unawake":3, "unawaked":3, "unawakable":5, "unawakening":5, "unawaking":4, "unawardable":5, "unawarded":4, "unaware":3, "unawares":3, "unawarely":4, "unawareness":4, "unbacked":2, "unbackward":3, "unbacterial":5, "unbadged":2, "unbadgered":3, "unbadgering":4, "unbaffled":3, "unbaffling":3, "unbagged":2, "unbailed":2, "unbailable":4, "unbait":2, "unbaked":2, "unbale":2, "unbaled":2, "unbalked":2, "unbalking":3, "unbalance":3, "unbalanced":3, "unbalanceable":5, "unbalancing":4, "unbalconied":4, "unbaling":3, "unballoted":4, "unbandage":3, "unbandaged":3, "unbandaging":4, "unbanded":3, "unbankable":4, "unbankableness":5, "unbanned":2, "unbangled":3, "unbanished":3, "unbannered":3, "unbantering":4, "unbaptised":3, "unbaptized":3, "unbar":2, "unbarbed":2, "unbarking":3, "unbarred":2, "unbarbarise":4, "unbarbarised":4, "unbarbarising":5, "unbarbarize":4, "unbarbarized":4, "unbarbarizing":5, "unbarbarous":4, "unbarbered":3, "unbargained":3, "unbarrable":4, "unbarreled":3, "unbarrelled":3, "unbarren":3, "unbarring":3, "unbarricade":4, "unbarricaded":5, "unbarricading":5, "unbartered":3, "unbartering":4, "unbase":2, "unbased":2, "unbashful":3, "unbasted":3, "unbasketlike":4, "unbastardised":4, "unbastardized":4, "unbastinadoed":5, "unbathed":2, "unbated":3, "unbating":3, "unbatted":3, "unbattered":3, "unbatterable":5, "unbattling":3, "unbay":2, "unbeached":2, "unbeaded":3, "unbeamed":2, "unbeaming":3, "unbeard":2, "unbearded":3, "unbearable":4, "unbearableness":5, "unbearably":4, "unbearing":3, "unbeatable":4, "unbeaten":3, "unbeaued":2, "unbeauteous":4, "unbeautified":4, "unbeautiful":4, "unbeaconed":3, "unbeckoned":3, "unbegged":2, "unbeggarly":4, "unbelt":2, "unbelligerent":5, "unbellicose":4, "unbench":2, "unbend":2, "unbendable":4, "unbending":3, "unbendingly":4, "unbendingness":4, "unbent":2, "unbeneficed":4, "unbenefited":5, "unbenefiting":5, "unbeneficial":5, "unberth":2, "unbet":2, "unbettered":3, "unbeveled":3, "unbevelled":3, "unbeclouded":4, "unbecoming":4, "unbedabbled":4, "unbedaubed":3, "unbedecked":3, "unbedimmed":3, "unbedizened":4, "unbedraggled":4, "unbefitting":4, "unbefriended":4, "unbegrudged":3, "unbeguiled":3, "unbeguiling":4, "unbehaving":4, "unbeheaded":4, "unbeheld":3, "unbeholdable":5, "unbeholden":4, "unbeknown":3, "unbeknownst":3, "unbelied":3, "unbelief":3, "unbelievable":5, "unbeliever":4, "unbelieving":4, "unbelievingly":5, "unbelievingness":5, "unbelonging":4, "unbeloved":3, "unbemoaned":3, "unbeneficent":5, "unbenevolence":5, "unbenevolent":5, "unbenign":3, "unbenignant":4, "unbenignity":5, "unbenumbed":3, "unbequeathed":3, "unbequeathable":5, "unbereaved":3, "unberouged":3, "unbeseeching":4, "unbeseeming":4, "unbeset":3, "unbesieged":3, "unbesmeared":3, "unbesmirched":3, "unbesmutted":4, "unbesought":3, "unbespoken":4, "unbesprinkled":4, "unbestowed":3, "unbetrayed":3, "unbetraying":4, "unbetrothed":3, "unbewailed":3, "unbewailing":4, "unbewildered":4, "unbewildering":5, "unbewitched":3, "unbewitching":4, "unbewrayed":3, "unbibulous":4, "unbickered":3, "unbickering":4, "unbid":2, "unbiddable":4, "unbidden":3, "unbigamous":4, "unbigoted":4, "unbilled":2, "unbillable":4, "unbilious":3, "unbilleted":4, "unbind":2, "unbinding":3, "unbinned":2, "unbirdlike":3, "unbirthday":3, "unbit":2, "unbiting":3, "unbitted":3, "unbitten":3, "unbitter":3, "unbitting":3, "unbiased":3, "unbiasedly":4, "unbiassed":3, "unbiographical":6, "unbiological":6, "unblacked":2, "unblackened":3, "unblade":2, "unbladed":3, "unblading":3, "unblamed":2, "unblamable":4, "unblamableness":5, "unblaming":3, "unblanched":2, "unblanketed":4, "unblasted":3, "unblasphemed":3, "unblazoned":3, "unbleached":2, "unbleaching":3, "unbled":2, "unbleeding":3, "unblemished":3, "unblemishable":5, "unblemishing":4, "unblenched":2, "unblenching":3, "unblendable":4, "unblended":3, "unblent":2, "unblessed":2, "unblessedness":4, "unblest":2, "unblighted":3, "unblindfolded":4, "unblinding":3, "unblinking":3, "unblinkingly":4, "unblissful":3, "unblistered":3, "unblock":2, "unblocked":2, "unblockaded":4, "unbloodily":4, "unbloodiness":4, "unbloody":3, "unbloomed":2, "unblossomed":3, "unblossoming":4, "unblotted":3, "unbloused":2, "unblown":2, "unblued":2, "unbluffed":2, "unbluffable":4, "unbluffing":3, "unblunted":3, "unblundering":4, "unblurred":2, "unblushing":3, "unblushingly":4, "unblushingness":4, "unblusterous":4, "unboarded":3, "unboasted":3, "unboastful":3, "unboasting":3, "unbobbed":2, "unbodied":3, "unboding":3, "unboggy":3, "unboiled":2, "unboisterous":4, "unbold":2, "unbolt":2, "unbolted":3, "unbolster":3, "unbolstered":3, "unbombed":2, "unbombarded":4, "unbombastic":4, "unbombastically":6, "unbondable":4, "unbonded":3, "unboned":2, "unbonnet":3, "unbonneted":4, "unbookish":3, "unbooted":3, "unbored":2, "unborn":2, "unborne":2, "unbordered":3, "unboring":3, "unborrowed":3, "unborrowing":4, "unbossed":2, "unbosom":3, "unbothered":3, "unbothering":4, "unbottle":3, "unbottom":3, "unbought":2, "unbound":2, "unbounded":3, "unboundedly":4, "unboundedness":4, "unbounteous":4, "unbountiful":4, "unbowdlerized":4, "unbowed":2, "unbowled":2, "unbowing":3, "unbox":2, "unboyish":3, "unbotanical":5, "unbrace":2, "unbraced":2, "unbraceleted":4, "unbracketed":4, "unbracing":3, "unbragging":3, "unbraid":2, "unbrailed":2, "unbranched":2, "unbranching":3, "unbranded":3, "unbrandied":3, "unbrave":2, "unbraved":2, "unbrawling":3, "unbrawny":3, "unbrazen":3, "unbreached":2, "unbreachable":4, "unbreachableness":5, "unbreaded":3, "unbreakable":4, "unbreakableness":5, "unbreaking":3, "unbreathed":2, "unbreathable":4, "unbreathing":3, "unbred":2, "unbreeched":2, "unbreezy":3, "unbrewed":2, "unbribed":2, "unbribable":4, "unbribing":3, "unbricked":2, "unbridged":2, "unbridgeable":4, "unbrief":2, "unbriefed":2, "unbright":2, "unbrightened":3, "unbrilliant":3, "unbrimming":3, "unbrined":2, "unbristled":3, "unbrittle":3, "unbridle":3, "unbridled":3, "unbroached":2, "unbroadcast":3, "unbroadcasted":4, "unbroadened":3, "unbroiled":2, "unbroke":2, "unbronzed":2, "unbrooch":2, "unbrooded":3, "unbrooding":3, "unbrothered":3, "unbrotherliness":5, "unbrotherly":4, "unbrought":2, "unbrowned":2, "unbrowsing":3, "unbrocaded":4, "unbroken":3, "unbrokenly":4, "unbrokenness":4, "unbruised":2, "unbrushed":2, "unbrushable":4, "unbrutise":3, "unbrutised":3, "unbrutising":4, "unbrutize":3, "unbrutized":3, "unbrutizing":4, "unbrutalise":4, "unbrutalised":4, "unbrutalising":5, "unbrutalize":4, "unbrutalized":4, "unbrutalizing":5, "unbuckle":3, "unbud":2, "unbudged":2, "unbudgeted":4, "unbudging":3, "unbudded":3, "unbudding":3, "unbuffed":2, "unbuffered":3, "unbuffeted":4, "unbuild":2, "unbuilding":3, "unbuilt":2, "unbullied":3, "unbullying":4, "unbumped":2, "unbumptious":3, "unbunched":2, "unbundled":3, "unbungling":3, "unbuoyed":2, "unbuoyant":3, "unburned":2, "unburnt":2, "unburnable":4, "unburning":3, "unburst":2, "unburstable":4, "unburden":3, "unburdensome":4, "unburglarized":4, "unburied":3, "unburlesqued":3, "unburly":3, "unburnished":3, "unburrowed":3, "unbusinesslike":4, "unbusily":4, "unbuskined":3, "unbustling":3, "unbutchered":3, "unbuttered":3, "unbutton":3, "unbuttressed":3, "unbuyable":4, "unbuying":3, "unbureaucratic":5, "unbureaucratically":7, "uncabined":3, "uncaged":2, "uncake":2, "uncaked":2, "uncaking":3, "uncalk":2, "uncalked":2, "uncalled":2, "uncalled-for":2, "uncalm":2, "uncalcareous":5, "uncalcined":3, "uncalcified":4, "uncalculated":5, "uncalculating":5, "uncalculable":5, "uncalculative":5, "uncalendared":4, "uncalibrated":5, "uncallous":3, "uncallused":3, "uncalmative":4, "uncalorific":5, "uncamped":2, "uncambered":3, "uncamouflaged":4, "uncampaigning":4, "uncamphorated":5, "uncaned":2, "uncanned":2, "uncanceled":3, "uncancelled":3, "uncancelable":5, "uncancellable":5, "uncancerous":4, "uncandid":3, "uncandied":3, "uncandled":3, "uncankered":3, "uncannily":4, "uncanniness":4, "uncanny":3, "uncanonise":4, "uncanonised":4, "uncanonising":5, "uncanonize":4, "uncanonized":4, "uncanonizing":5, "uncanonisation":6, "uncanonization":6, "uncanopied":4, "uncantoned":3, "uncanvassed":3, "uncap":2, "uncaped":2, "uncapped":2, "uncapitalised":5, "uncapitalistic":6, "uncapitalized":5, "uncapping":3, "uncapsized":3, "uncapsizable":5, "uncapsuled":3, "uncaptained":3, "uncaptioned":3, "uncaptious":3, "uncaptivated":5, "uncaptivating":5, "uncaptivative":5, "uncaptured":3, "uncapturable":5, "uncarded":3, "uncared-for":2, "uncarted":3, "uncarved":2, "uncaramelised":5, "uncaramelized":5, "uncarbonated":5, "uncarbonized":4, "uncarbureted":5, "uncarburetted":5, "uncardinally":5, "uncaring":3, "uncaricatured":5, "uncarnivorous":5, "uncaroled":3, "uncarolled":3, "uncarpentered":4, "uncarpeted":4, "uncarried":3, "uncartooned":3, "uncasemated":4, "uncashed":2, "uncask":2, "uncasked":2, "uncast":2, "uncascaded":4, "uncascading":4, "uncasketed":4, "uncastigated":5, "uncastigative":5, "uncastled":3, "uncastrated":4, "uncasual":4, "uncatchable":4, "uncatholic":4, "uncatholicity":6, "uncataloged":4, "uncatalogued":4, "uncatastrophic":5, "uncatastrophically":7, "uncatechized":4, "uncategorical":6, "uncategorised":5, "uncategorized":5, "uncatenated":5, "uncaught":2, "uncaused":2, "uncausal":3, "uncausable":4, "uncausative":4, "uncaustic":3, "uncaustically":5, "uncauterized":4, "uncautioned":3, "uncautious":3, "uncavalier":4, "uncavernous":4, "uncaviling":4, "uncavilling":4, "uncavitied":4, "uncabled":3, "uncacophonous":5, "uncadenced":3, "uncajoling":4, "uncalamitous":5, "uncalumniative":6, "uncalumnious":5, "uncanalized":4, "uncanonical":5, "uncanonically":6, "uncaparisoned":5, "uncapable":4, "uncapacious":4, "uncapering":4, "uncapitulated":6, "uncapitulating":6, "uncapricious":4, "uncaressed":3, "uncaressing":4, "uncarousing":4, "uncatered":3, "uncatering":4, "uncathartic":4, "uncatholical":5, "uncatholicise":5, "uncatholicised":5, "uncatholicising":6, "uncatholicize":5, "uncatholicized":5, "uncatholicizing":6, "unceased":2, "unceasing":3, "unceded":3, "unceilinged":3, "uncelebrated":5, "uncelebrating":5, "uncelibate":4, "uncensored":3, "uncensorable":5, "uncensorious":5, "uncensured":3, "uncensurable":5, "uncensuring":4, "uncentered":3, "uncentral":3, "uncentralised":4, "uncentralized":4, "uncentred":3, "uncentric":3, "uncentripetal":5, "uncentrical":4, "uncerebric":4, "unceremonial":6, "unceremonious":6, "unceremoniously":7, "unceremoniousness":7, "uncertain":3, "uncertainty":4, "uncertainty principle":7, "uncertificated":6, "uncertified":4, "uncertifiable":6, "uncertifying":5, "uncertitude":4, "uncelestial":4, "uncephalic":4, "uncerated":4, "unceriferous":5, "unchafed":2, "unchaffed":2, "unchaffing":3, "unchain":2, "unchained":2, "unchainable":4, "unchair":2, "unchalked":2, "unchalky":3, "unchallenged":3, "unchallengeable":5, "unchallenging":4, "unchambered":3, "unchamfered":3, "unchampioned":4, "unchanced":2, "unchanceable":4, "unchanged":2, "unchangeability":6, "unchangeable":4, "unchangeful":3, "unchanging":3, "unchanted":3, "unchancy":3, "unchanneled":3, "unchannelled":3, "unchannelized":4, "unchapped":2, "unchaperoned":4, "unchapleted":4, "unchapter":3, "unchaptered":3, "uncharge":2, "uncharged":2, "unchargeable":4, "uncharmed":2, "uncharmable":4, "uncharming":3, "uncharred":2, "uncharted":3, "uncharactered":4, "uncharacterised":5, "uncharacteristic":6, "uncharacteristically":8, "uncharacterized":5, "uncharily":4, "unchariot":4, "uncharitable":5, "uncharitableness":6, "uncharitably":5, "unchartered":3, "unchary":3, "unchased":2, "unchaste":2, "unchastely":3, "unchasteness":3, "unchastened":3, "unchastised":3, "unchastisable":5, "unchastising":4, "unchastity":4, "unchattering":4, "unchauffeured":3, "unchauvinistic":5, "unchagrined":3, "unchaotic":4, "unchaotically":6, "uncheapened":3, "uncheaply":3, "uncheated":3, "uncheating":3, "unchecked":2, "uncheckable":4, "uncheckered":3, "uncheckmated":4, "uncheered":2, "uncheerable":4, "uncheerful":3, "uncheering":3, "uncheerily":4, "uncheeriness":4, "uncheery":3, "unchemical":4, "uncherished":3, "uncherishing":4, "unchested":3, "unchevroned":3, "unchewed":2, "unchewable":4, "unchid":2, "unchidden":3, "unchided":3, "unchiding":3, "unchildish":3, "unchildlike":3, "unchilled":2, "unchiming":3, "unchinked":2, "unchipped":2, "unchippable":4, "unchipping":3, "unchiseled":3, "unchiselled":3, "unchivalric":4, "unchivalrous":4, "unchivalry":4, "unchloridized":4, "unchlorinated":5, "unchoked":2, "unchokable":4, "uncholeric":4, "unchoosable":4, "unchopped":2, "unchosen":3, "unchristened":3, "unchristian":3, "unchromed":2, "unchronic":3, "unchronically":5, "unchronicled":4, "unchronological":6, "unchromatic":4, "unchurch":2, "unchurchly":3, "unchurlish":3, "unchurn":2, "unchurned":2, "unciliated":5, "uncinch":2, "uncinctured":3, "uncircled":3, "uncircumcised":4, "uncircumcision":5, "uncircumlocutory":7, "uncircumscribed":4, "uncircumscribable":6, "uncircumspect":4, "uncircumspective":5, "uncircumstantial":5, "uncircumvented":5, "uncircuitous":5, "uncircular":4, "uncircularised":5, "uncircularized":5, "uncirculated":5, "uncirculating":5, "uncirculative":5, "unciteable":4, "uncitable":4, "uncited":3, "uncitied":3, "uncitizenlike":5, "uncitizenly":5, "uncivic":3, "uncivil":3, "uncivilly":4, "uncivilised":4, "uncivilisable":6, "uncivilize":4, "uncivilized":4, "uncivilizable":6, "uncivilizing":5, "uncia":3, "unciae":3, "uncial":3, "uncially":4, "unciform":3, "uncinate":3, "uncinariasis":6, "uncinus":3, "uncivility":5, "unclad":2, "unclaimed":2, "unclaiming":3, "unclamped":2, "unclamorous":4, "unclandestinely":5, "unclannish":3, "unclarified":4, "unclarifying":5, "unclarity":4, "unclashing":3, "unclasp":2, "unclassed":2, "unclassable":4, "unclassical":4, "unclassically":5, "unclassified":4, "unclassifiable":6, "unclassifiableness":7, "unclassifying":5, "unclawed":2, "unclayed":2, "uncle":2, "uncle sam":3, "uncle tom":3, "unclean":2, "uncleaned":2, "uncleansed":2, "uncleansable":4, "uncleanable":4, "uncleanliness":4, "uncleanly":3, "uncleanness":3, "unclear":2, "uncleared":2, "unclearable":4, "unclearing":3, "uncleavable":4, "uncleft":2, "unclench":2, "unclerkly":3, "unclerical":4, "unclever":3, "unclimbed":2, "unclimbable":4, "unclimbing":3, "unclinch":2, "unclinging":3, "unclinical":4, "unclip":2, "unclipped":2, "unclipper":3, "unclipping":3, "unclimactic":4, "unclimaxed":3, "uncloak":2, "unclog":2, "unclogged":2, "unclogging":3, "uncloistered":3, "uncloistral":3, "unclose":2, "unclosed":2, "unclosable":4, "uncloseted":4, "unclosing":3, "unclothe":2, "unclothing":3, "unclotted":3, "unclouded":3, "uncloudy":3, "uncloyed":2, "uncloying":3, "uncloven":3, "unclustered":3, "unclustering":4, "unclutched":2, "unclutchable":4, "unclutter":3, "uncluttered":3, "uncoached":2, "uncoachable":4, "uncoarse":2, "uncoat":2, "uncoaxed":2, "uncoaxable":4, "uncoaxing":3, "uncobbled":3, "uncocked":2, "uncoddled":3, "uncoded":3, "uncodified":4, "uncoffin":3, "uncogged":2, "uncognized":3, "uncognisable":5, "uncognizant":4, "uncognizable":5, "uncognoscibility":7, "uncognoscible":5, "uncoifed":2, "uncoil":2, "uncoined":2, "uncoked":2, "uncollaborative":6, "uncollapsed":3, "uncollapsable":5, "uncollapsible":5, "uncollar":3, "uncollared":3, "uncollaring":4, "uncollated":4, "uncollectable":5, "uncollected":4, "uncollectible":5, "uncollective":4, "uncollegiate":4, "uncolloquial":5, "uncollusive":4, "uncolored":3, "uncolorable":5, "uncolonise":4, "uncolonised":4, "uncolonising":5, "uncolonize":4, "uncolonized":4, "uncolonizing":5, "uncombed":2, "uncombable":4, "uncomely":3, "uncombatant":4, "uncombatable":5, "uncombated":4, "uncombative":4, "uncombined":3, "uncombinable":5, "uncombining":4, "uncombinational":6, "uncombinative":5, "uncombustive":4, "uncombustible":5, "uncomfortable":5, "uncomfortableness":6, "uncomfortably":5, "uncomforted":4, "uncomforting":4, "uncomic":3, "uncomical":4, "uncommanded":4, "uncommanderlike":5, "uncommemorated":6, "uncommemorative":6, "uncommenced":3, "uncommendable":5, "uncommendatory":6, "uncommented":4, "uncommenting":4, "uncommensurate":5, "uncommercial":4, "uncommingled":4, "uncommiserated":6, "uncommiserating":6, "uncommiserative":6, "uncommissioned":4, "uncommitted":4, "uncommitting":4, "uncomminuted":5, "uncommon":3, "uncommonly":4, "uncommonness":4, "uncommonplace":4, "uncommodious":5, "uncommutable":5, "uncommuted":4, "uncommunicating":6, "uncommunicative":6, "uncommunicatively":7, "uncommunicativeness":7, "uncommutative":5, "uncompanioned":4, "uncompanionable":6, "uncompared":3, "uncompassable":5, "uncompassion":4, "uncompassioned":4, "uncompassionate":5, "uncomparable":5, "uncomparableness":6, "uncompelled":3, "uncompellable":5, "uncompelling":4, "uncompendious":5, "uncompensated":5, "uncompensating":5, "uncompensative":5, "uncompensatory":6, "uncompetitive":5, "uncompetent":4, "uncompiled":3, "uncomplained":3, "uncomplaining":4, "uncomplaisance":4, "uncomplaisant":4, "uncomplacent":4, "uncomplete":3, "uncompletable":5, "uncomplex":3, "uncomplemented":5, "uncomplemental":5, "uncomplementary":6, "uncompliant":4, "uncompliable":5, "uncompliableness":6, "uncomplicated":5, "uncomplimented":5, "uncomplimenting":5, "uncomplimentary":6, "uncomplying":4, "uncomportable":5, "uncomposed":3, "uncomposeable":5, "uncomposable":5, "uncompoundable":5, "uncompounded":4, "uncompounding":4, "uncompressed":3, "uncompressible":5, "uncomprehended":5, "uncomprehending":5, "uncomprehension":5, "uncomprehensive":5, "uncomprehensible":6, "uncomprehensibleness":7, "uncompromised":4, "uncompromising":5, "uncompromisingly":6, "uncompromisingness":6, "uncompulsive":4, "uncompulsory":5, "uncomputable":5, "uncomputableness":6, "uncomputed":4, "unconned":2, "unconcatenated":6, "unconcatenating":6, "unconcealing":4, "unconceded":4, "unconceding":4, "unconceited":4, "unconceived":3, "unconcentrated":5, "unconcentrative":5, "unconcentric":4, "unconcentrically":6, "unconceptual":5, "unconcern":3, "unconcerned":3, "unconcernedly":5, "unconcertable":5, "unconcerted":4, "unconciliated":6, "unconciliating":6, "unconciliable":6, "unconciliative":6, "unconciliatory":7, "unconcludable":5, "unconcluded":4, "unconcordant":4, "unconcrete":3, "unconcreted":4, "unconcurred":3, "unconcurrent":4, "unconcurring":4, "uncondemned":3, "uncondemning":4, "uncondemnable":5, "uncondensed":3, "uncondensing":4, "uncondensable":5, "uncondensableness":6, "uncondensational":6, "uncondescending":5, "uncondition":4, "unconditioned":4, "unconditioned response":6, "unconditionedness":5, "unconditional":5, "unconditionality":7, "unconditionalness":6, "uncondoled":3, "uncondoling":4, "uncondoned":3, "uncondoning":4, "uncondolatory":6, "unconducted":4, "unconductible":5, "unconducing":4, "unconductive":4, "unconducive":4, "unconfected":4, "unconfederated":6, "unconferred":3, "unconfessed":3, "unconfessing":4, "unconfided":4, "unconfiding":4, "unconfined":3, "unconfinable":5, "unconfining":4, "unconfirm":3, "unconfirmative":5, "unconfirmatory":6, "unconfiscated":5, "unconfiscable":5, "unconfiscatory":6, "unconfident":4, "unconflicting":4, "unconflictive":4, "unconformed":3, "unconformability":7, "unconformable":5, "unconformably":5, "unconforming":4, "unconformity":5, "unconfound":3, "unconfoundedly":5, "unconfounding":4, "unconfrontable":5, "unconfronted":4, "unconfused":3, "unconfusable":5, "unconfusedly":5, "unconfusing":4, "unconfutable":5, "unconfutative":5, "unconfuted":4, "unconfuting":4, "uncongeal":3, "uncongealable":5, "uncongenial":4, "uncongested":4, "uncongestive":4, "uncongeniality":7, "unconglomerated":6, "unconglutinated":6, "unconglutinative":6, "uncongratulated":6, "uncongratulating":6, "uncongratulatory":7, "uncongressional":5, "uncongregated":5, "uncongregational":6, "uncongregative":5, "uncongruous":4, "unconical":4, "unconjectured":4, "unconjectural":5, "unconjecturable":6, "unconjoined":3, "unconjunctive":4, "unconjured":3, "unconjugal":4, "unconjugated":5, "unconnected":4, "unconnectedness":5, "unconnived":3, "unconniving":4, "unconnotative":5, "unconquered":3, "unconquerable":5, "unconscionable":5, "unconscionableness":6, "unconscionably":5, "unconscious":3, "unconsciously":4, "unconsciousness":4, "unconscientious":5, "unconsecutive":5, "unconsenting":4, "unconsentaneous":6, "unconsentient":4, "unconserved":3, "unconservable":5, "unconservative":5, "unconserving":4, "unconsecrated":5, "unconsecration":5, "unconsecrative":5, "unconsidered":4, "unconsiderable":6, "unconsidering":5, "unconsigned":3, "unconsignable":5, "unconsoled":3, "unconsolability":7, "unconsolable":5, "unconsolatory":6, "unconsoling":4, "unconsolidated":6, "unconsolidating":6, "unconsolidation":6, "unconsociated":6, "unconsonant":4, "unconspired":3, "unconspiring":4, "unconstant":3, "unconstellated":5, "unconsternated":5, "unconstipated":5, "unconstituted":5, "unconstitutional":6, "unconstitutionalism":7, "unconstrained":3, "unconstrainable":5, "unconstraining":4, "unconstricted":4, "unconstrictive":4, "unconstructed":4, "unconstructive":4, "unconstrued":3, "unconstruable":5, "unconsultable":5, "unconsultative":5, "unconsulted":4, "unconsulting":4, "unconsultatory":6, "unconsumed":3, "unconsumptive":4, "unconsumable":5, "unconsuming":4, "unconsummate":4, "unconsummated":5, "unconsummative":5, "uncontacted":4, "uncontained":3, "uncontaminated":6, "uncontaminable":6, "uncontaminative":6, "uncontagious":4, "uncontemned":3, "uncontemning":4, "uncontemptibility":7, "uncontemptible":5, "uncontemptibleness":6, "uncontemptuous":5, "uncontemplated":5, "uncontemplable":5, "uncontemplative":5, "uncontemporary":6, "uncontemporaneous":7, "uncontended":4, "uncontending":4, "uncontentious":4, "uncontestant":4, "uncontestability":7, "uncontestable":5, "uncontested":4, "uncontiguous":5, "uncontingent":4, "uncontinued":4, "uncontinual":5, "uncontinuous":5, "uncontinence":4, "uncontinent":4, "uncontorted":4, "uncontortioned":4, "uncontortive":4, "uncontoured":3, "uncontracted":4, "uncontractile":4, "uncontrastable":5, "uncontrasted":4, "uncontrasting":4, "uncontrastive":4, "uncontradictable":6, "uncontradicted":5, "uncontradictious":5, "uncontradictive":5, "uncontradictory":6, "uncontributed":5, "uncontributing":5, "uncontributive":5, "uncontributory":6, "uncontrite":3, "uncontrived":3, "uncontriving":4, "uncontrolled":3, "uncontrollable":5, "uncontrolling":4, "uncontroverted":5, "uncontrovertible":6, "uncontroversial":5, "uncontumacious":5, "unconvened":3, "unconvenable":5, "unconvening":4, "unconventional":5, "unconventionality":7, "unconventionally":6, "unconverged":3, "unconverging":4, "unconversable":5, "unconverted":4, "unconvertibility":7, "unconvertible":5, "unconvertibleness":6, "unconvergent":4, "unconversant":4, "unconversational":6, "unconvicted":4, "unconvicting":4, "unconvictive":4, "unconvinced":3, "unconvincing":4, "unconvincible":5, "unconvoyed":3, "unconvolute":4, "unconvoluted":5, "unconvulsed":3, "unconvulsive":4, "uncooked":2, "uncookable":4, "uncooled":2, "uncoop":2, "uncoopered":3, "uncopied":3, "uncopiable":5, "uncopyrighted":5, "uncore":2, "uncored":2, "uncork":2, "uncorned":2, "uncordial":3, "uncordiality":5, "uncoring":3, "uncornered":3, "uncoroneted":5, "uncorpulent":4, "uncorrect":3, "uncorrectable":5, "uncorrected":4, "uncorrective":4, "uncorrelative":5, "uncorrelativity":7, "uncorresponding":5, "uncorrelated":5, "uncorridored":4, "uncorroborant":5, "uncorroborated":6, "uncorroborative":6, "uncorroboratory":7, "uncorroded":4, "uncorrupt":3, "uncorrupted":4, "uncorrupting":4, "uncorruptible":5, "uncorruptibleness":6, "uncorruptive":4, "uncorrugated":5, "uncorseted":4, "uncostly":3, "uncosseted":4, "uncostumed":3, "uncottoned":3, "uncountable":4, "uncounted":3, "uncounseled":3, "uncounselled":3, "uncounteracted":5, "uncounterbalanced":5, "uncounterfeited":5, "uncountermandable":6, "uncountermanded":5, "uncountervailed":4, "uncountenanced":4, "uncountrified":4, "uncourted":3, "uncourting":3, "uncourtliness":4, "uncourtly":3, "uncourteously":5, "uncourteousness":5, "uncourtesy":4, "uncourtierlike":5, "uncouth":2, "uncouthly":3, "uncouthness":3, "uncouple":3, "uncourageous":4, "uncover":2, "uncover":3, "uncovered":3, "uncoveted":4, "uncoveting":4, "uncovetous":4, "uncovenanted":5, "uncowed":2, "uncoy":2, "uncoagulated":6, "uncoagulable":6, "uncoagulating":6, "uncoagulative":6, "uncoaxal":4, "uncoaxial":5, "uncoalescent":5, "uncoerced":3, "uncogent":3, "uncohesive":4, "uncoincided":5, "uncoinciding":5, "uncoincident":5, "uncoincidental":6, "uncolonial":5, "uncooperating":6, "uncooperative":6, "uncoordinate":5, "uncoordinated":6, "uncopious":4, "uncoquettish":4, "uncracked":2, "uncraftily":4, "uncrafty":3, "uncraggy":3, "uncramped":2, "uncranked":2, "uncrannied":3, "uncrated":3, "uncraving":3, "uncradled":3, "uncravatted":4, "uncraven":3, "uncreased":2, "uncreaturely":4, "uncredit":3, "uncreditable":5, "uncreditableness":6, "uncredulous":4, "uncreeping":3, "uncrested":3, "uncrevassed":3, "uncreatable":5, "uncreated":4, "uncreative":4, "uncreativity":6, "uncredentialed":4, "uncreosoted":5, "uncrib":2, "uncribbed":2, "uncribbing":3, "uncried":2, "uncriminal":4, "uncrippled":3, "uncritical":4, "uncritically":5, "uncriticisable":6, "uncriticized":4, "uncriticizable":6, "uncriticizing":5, "uncrooked":3, "uncropped":2, "uncross":2, "uncross-examined":4, "uncrossable":4, "uncrowded":3, "uncrown":2, "uncrowned":2, "uncrude":2, "uncrumbled":3, "uncrumpled":3, "uncrumpling":3, "uncrushed":2, "uncrushable":4, "uncrusted":3, "uncrucified":4, "uncrudity":4, "uncruel":3, "uncrystaled":3, "uncrystalled":3, "uncrystalline":4, "uncrystallisable":6, "uncrystallized":4, "uncrystallizable":6, "uncrying":3, "uncudgeled":3, "uncudgelled":3, "uncuffed":2, "unculled":2, "unculpable":4, "uncultivatable":6, "uncultivated":5, "uncultivable":5, "uncultivation":5, "unculture":3, "uncultured":3, "unculturable":5, "uncumbered":3, "uncumbrous":3, "uncupped":2, "uncurb":2, "uncurbed":2, "uncurbable":4, "uncurd":2, "uncured":2, "uncurl":2, "uncursed":2, "uncursing":3, "uncurved":2, "uncurving":3, "uncurable":4, "uncurableness":5, "uncurdled":3, "uncurdling":3, "uncurrent":3, "uncurried":3, "uncurtailed":3, "uncurtailable":5, "uncurtained":3, "uncus":2, "uncushioned":3, "uncusped":2, "uncustomarily":6, "uncustomary":5, "uncut":2, "uncuttable":4, "uncubic":3, "uncubical":4, "uncumulative":5, "uncurious":4, "uncynical":4, "undabbled":3, "undaggled":3, "undaintily":4, "undaintiness":4, "undainty":3, "undallying":4, "undam":2, "undammed":2, "undamped":2, "undampened":3, "undamaged":3, "undamageable":5, "undamaging":4, "undamasked":3, "undamming":3, "undamnified":4, "undanceable":4, "undancing":3, "undandled":3, "undangered":3, "undangerous":4, "undapper":3, "undappled":3, "undared":2, "undarken":3, "undarned":2, "undaring":3, "undateable":4, "undatable":4, "undated":3, "undaubed":2, "undaughterly":4, "undaunted":3, "undauntedly":4, "undauntedness":4, "undaunting":3, "undawned":2, "undawning":3, "undazed":2, "undazing":3, "undazzled":3, "undazzling":3, "undeadened":3, "undeadlocked":3, "undeaf":2, "undealt":2, "undealable":4, "undebited":4, "undecked":2, "undecagon":4, "undecorated":5, "undecorative":5, "undecorous":4, "undecretory":5, "undedicated":5, "undeeded":3, "undeep":2, "undeepened":3, "undeft":2, "undeferential":5, "undefinite":4, "undelved":2, "undelegated":5, "undeleterious":5, "undeluged":3, "undemonstrated":5, "undemonstrational":6, "undemocratic":5, "undemocratically":7, "undented":3, "undenizened":4, "undeprecated":5, "undeprecating":5, "undeprecative":5, "undeputized":4, "under":2, "under way":3, "under-the-counter":3, "under-the-table":3, "undernsong":3, "underact":3, "underaccident":5, "underaccommodated":7, "underactor":4, "underadjustment":5, "underage":3, "underagitation":6, "underaim":3, "underalderman":5, "underarm":3, "underate":3, "underaverage":5, "underachieve":4, "underachieved":4, "underachievement":5, "underachiever":5, "underachieving":5, "underagent":4, "underagency":5, "underbailiff":4, "underbake":3, "underbaked":3, "underbaking":4, "underbalance":4, "underbalanced":4, "underbalancing":5, "underballast":4, "underbank":3, "underbarber":4, "underbeak":3, "underbeam":3, "underbeat":3, "underbeaten":4, "underbeadle":4, "underbelly":4, "underbeveling":5, "underbevelling":5, "underbid":3, "underbidder":4, "underbidding":4, "underbillow":4, "underbishop":4, "underbishopric":5, "underbodice":4, "underbodies":4, "underbody":4, "underboil":3, "underboom":3, "underbottom":4, "underbough":3, "underbox":3, "underbrace":3, "underbraced":3, "underbracing":4, "underbranch":3, "underbred":3, "underbreeding":4, "underbrew":3, "underbridge":3, "underbridged":3, "underbridging":4, "underbrigadier":5, "underbrush":3, "underbud":3, "underbudded":4, "underbudding":4, "underbuild":3, "underbuilder":4, "underbuilding":4, "underbuilt":3, "underbursar":4, "underbush":3, "underbutler":4, "underbuy":3, "undercanvass":4, "undercap":3, "undercapitalise":6, "undercapitalize":6, "undercapitalized":6, "undercapitalizing":7, "undercaptain":4, "undercart":3, "undercarve":3, "undercarved":3, "undercarving":4, "undercarriage":4, "undercarried":4, "undercarry":4, "undercarrying":5, "undercase":3, "undercast":3, "undercasing":4, "undercause":3, "underceiling":4, "undercellar":4, "underchamber":4, "underchamberlain":5, "underchanter":4, "underchancellor":5, "underchap":3, "undercharge":3, "undercharged":3, "undercharging":4, "underchief":3, "underchin":3, "underchord":3, "undercircle":4, "undercitizen":5, "undercitizenry":6, "underclad":3, "undercladding":4, "underclay":3, "underclerk":3, "underclerkship":4, "undercloak":3, "undercloth":3, "underclothed":3, "underclothes":3, "underclothing":4, "underclutch":3, "undercoachman":4, "undercoat":3, "undercoating":4, "undercollector":5, "undercolored":4, "undercommander":5, "undercomment":4, "underconcerned":4, "underconsciousness":5, "underconstable":5, "underconsume":4, "underconsumed":4, "underconsumption":5, "underconsuming":5, "undercook":3, "undercool":3, "undercooper":4, "undercorrect":4, "undercountenance":5, "undercourse":3, "undercoursed":3, "undercoursing":4, "undercourtier":5, "undercover":4, "undercrawl":3, "undercrest":3, "undercrier":4, "undercroft":3, "undercrust":3, "undercrypt":3, "undercup":3, "undercurl":3, "undercurve":3, "undercurved":3, "undercurving":4, "undercurrent":4, "undercut":3, "undercutting":4, "underdealing":4, "underdeacon":4, "underdevil":4, "underdegreed":4, "underdevelop":5, "underdevelope":5, "underdeveloped":5, "underdevelopement":6, "underdeveloping":6, "underdevelopment":6, "underdid":3, "underdig":3, "underdigging":4, "underdish":3, "underdistinction":5, "underdistributor":6, "underdive":3, "underdived":3, "underdiving":4, "underdialogue":5, "underdo":3, "underdoctor":4, "underdog":3, "underdone":3, "underdose":3, "underdosed":3, "underdosing":4, "underdot":3, "underdotted":4, "underdotting":4, "underdove":3, "underdown":3, "underdoing":4, "underdraft":3, "underdrain":3, "underdrainage":4, "underdraught":3, "underdraw":3, "underdrawn":3, "underdrawers":4, "underdrawing":4, "underdress":3, "underdressed":3, "underdressing":4, "underdrew":3, "underdried":3, "underdrumming":4, "underdry":3, "underdrying":4, "underdug":3, "undereat":3, "undereaten":4, "undereating":4, "underedge":3, "undereducated":6, "underemployed":4, "underemployment":5, "underengraver":5, "underestimate":5, "underexercise":5, "underexercised":5, "underexercising":6, "underexpose":4, "underexposed":4, "underexposing":5, "underexposure":5, "undereye":3, "undereyed":3, "undereying":4, "underface":3, "underfaced":3, "underfacing":4, "underfaction":4, "underfactor":4, "underfaculty":5, "underfalconer":5, "underfarmer":4, "underfeathering":5, "underfeature":4, "underfed":3, "underfeed":3, "underfeeding":4, "underfeeling":4, "underfelt":3, "underfiend":3, "underfired":3, "underfitting":4, "underfinance":4, "underfinanced":4, "underfinancing":5, "underflame":3, "underflannel":4, "underflood":3, "underfloor":3, "underflooring":4, "underflow":3, "underfolded":4, "underfoot":3, "underfootage":4, "underfootman":4, "underform":3, "underfortified":5, "underfortify":5, "underfortifying":6, "underframe":3, "underframework":4, "underfrequency":5, "underfringe":3, "underfrock":3, "underfur":3, "underfurnish":4, "undergamekeeper":5, "undergaoler":4, "undergarb":3, "undergardener":5, "undergarment":4, "undergarnish":4, "undergeneral":5, "undergentleman":5, "undergird":3, "undergirth":3, "underglaze":3, "undergloom":3, "underglow":3, "undergnaw":3, "undergo":3, "undergod":3, "undergone":3, "undergoverness":5, "undergovernment":5, "undergovernor":5, "undergoer":4, "undergoing":4, "undergrad":3, "undergraduate":5, "undergraduateship":6, "undergraining":4, "undergrass":3, "undergroan":3, "underground":3, "underground railroad":5, "undergrowl":3, "undergrown":3, "undergrowth":3, "underguard":3, "underguardian":5, "undergunner":4, "underhabit":4, "underhammer":4, "underhand":3, "underhanded":4, "underhandedly":5, "underhandedness":5, "underhang":3, "underhanging":4, "underhangman":4, "underhatch":3, "underheat":3, "underheaven":4, "underhelp":3, "underhill":3, "underhistory":5, "underhorse":3, "underhorsed":3, "underhorseman":4, "underhorsing":4, "underhousemaid":4, "underhum":3, "underhung":3, "underinstrument":5, "underinsured":4, "underinsurance":5, "underissue":4, "underjacket":4, "underjailer":4, "underjanitor":5, "underjaw":3, "underjobbing":4, "underjoin":3, "underjoint":3, "underjudge":3, "underjudged":3, "underjudging":4, "underjungle":4, "underkeeper":4, "underking":3, "underkingdom":4, "underlaid":3, "underland":3, "underlap":3, "underlapped":3, "underlapping":4, "underlash":3, "underlaundress":4, "underlawyer":4, "underlay":3, "underlayer":4, "underlaying":4, "underlaylain":4, "underlaylay":4, "underlaylying":5, "underlayment":4, "underlaborer":5, "underlabourer":5, "underleather":4, "underlegate":4, "underlessee":4, "underlet":3, "underlevel":4, "underlid":3, "underlie":3, "underlieutenant":5, "underlife":3, "underlift":3, "underlight":3, "underliking":4, "underlimbed":3, "underlimit":4, "underline":3, "underlineman":4, "underling":3, "underlinen":4, "underlineation":6, "underlip":3, "underlit":3, "underlier":4, "underload":3, "underlock":3, "underlodging":4, "underloft":3, "underlying":4, "undermade":3, "undermaid":3, "undermaker":4, "underman":3, "undermanned":3, "undermanager":5, "undermanning":4, "undermark":3, "undermarshal":4, "undermarshalman":5, "undermasted":4, "undermaster":4, "undermate":3, "undermeaning":4, "undermeasure":4, "undermeasured":4, "undermeasuring":5, "undermelody":5, "undermentioned":4, "undermediator":6, "undermiller":4, "undermine":3, "undermined":3, "underminer":4, "undermining":4, "underminingly":5, "underminister":5, "underministry":5, "undermist":3, "undermoated":4, "undermoral":4, "undermost":3, "undermount":3, "undermountain":4, "undermotion":4, "undermuslin":4, "undermusic":4, "undername":3, "undernamed":3, "underneath":3, "undernote":3, "undernoted":4, "undernourish":4, "undernourishment":5, "undernurse":3, "undernutrition":5, "underofficer":5, "underofficial":5, "underorganisation":7, "underorganization":7, "underoxidise":5, "underoxidised":5, "underoxidising":6, "underoxidize":5, "underoxidized":5, "underoxidizing":6, "underogating":5, "underopinion":5, "underpacking":4, "underpaid":3, "underpain":3, "underpainting":4, "underpants":3, "underpart":3, "underpartner":4, "underparticipation":7, "underpass":3, "underpay":3, "underpayment":4, "underpeep":3, "underpeer":3, "underpen":3, "underpeopled":4, "underpetticoat":5, "underpetticoated":6, "underpier":3, "underpile":3, "underpin":3, "underpinned":3, "underpinning":4, "underpinnings":4, "underpitch vault":4, "underpitched":3, "underpilaster":5, "underplain":3, "underplan":3, "underplant":3, "underplate":3, "underplay":3, "underplot":3, "underply":3, "underpoint":3, "underpopulate":5, "underpopulated":6, "underpopulating":6, "underpopulation":6, "underporch":3, "underporter":4, "underpossessor":5, "underpot":3, "underpowered":4, "underprentice":4, "underpresser":4, "underpressure":4, "underprefect":4, "underprice":3, "underpriced":3, "underpricing":4, "underpriest":3, "underprincipal":5, "underprivileged":5, "underprize":3, "underprized":3, "underprizing":4, "underprior":4, "underprompter":4, "underproof":3, "underprop":3, "underpropped":3, "underproposition":6, "underpropper":4, "underpropping":4, "underprospect":4, "underproduce":4, "underproduced":4, "underproducer":5, "underproducing":5, "underproduction":5, "underproductive":5, "underproficient":5, "underproportioned":5, "underqualified":5, "underqueen":3, "underquote":3, "underquoted":4, "underquoting":4, "underran":3, "underranger":4, "underrate":3, "underreader":4, "underrealm":3, "underreckon":4, "underrecompense":5, "underrecompensed":5, "underrecompensing":6, "underregistration":6, "underrepresent":5, "underrepresentation":7, "underrealise":5, "underrealised":5, "underrealising":6, "underrealize":5, "underrealized":5, "underrealizing":6, "underreceiver":5, "underregion":4, "underrespected":5, "underriddle":4, "underrigged":3, "underring":3, "underripened":4, "underroarer":4, "underroast":3, "underrobe":3, "underrogue":3, "underroller":4, "underroof":3, "underroom":3, "underrooted":4, "underrower":4, "underrule":3, "underruled":3, "underruler":4, "underruling":4, "underrun":3, "underrunning":4, "undersacristan":5, "undersatisfaction":6, "undersaturated":6, "undersaturation":6, "undersavior":4, "undersaw":3, "undersawyer":4, "underscheme":3, "underschool":3, "underscoop":3, "underscore":3, "underscored":3, "underscoring":4, "underscribe":3, "underscript":3, "underscrupulous":5, "undersea":3, "underseal":3, "underseam":3, "undersearch":3, "underseated":4, "undersect":3, "undersecretaries":6, "undersecretary":6, "undersecretaryship":7, "undersee":3, "underseeded":4, "underseen":3, "underseeing":4, "undersell":3, "underseller":4, "underselling":4, "underservant":4, "underservice":4, "underset":3, "undersexed":3, "undersexton":4, "undersequence":4, "undersheathing":4, "undershepherd":4, "undersheriff":4, "undershield":3, "undershine":3, "undershined":3, "undershining":4, "undershire":3, "undershirt":3, "undershoe":3, "undershoot":3, "undershooting":4, "undershore":3, "undershored":3, "undershorts":3, "undershorten":4, "undershoring":4, "undershot":3, "undershrub":3, "underside":3, "undersight":3, "undersighted":4, "undersigned":3, "undersignalman":5, "undersill":3, "undersize":3, "undersized":3, "underskin":3, "underskirt":3, "undersky":3, "undersleep":3, "undersleeping":4, "undersleeve":3, "underslept":3, "underslip":3, "undersluice":3, "underslung":3, "undersoil":3, "undersold":3, "undersole":3, "undersort":3, "undersorcerer":5, "undersoul":3, "undersound":3, "undersovereign":5, "undersow":3, "undersociety":6, "underspan":3, "underspar":3, "undersparred":3, "underspecified":5, "underspecify":5, "underspecifying":6, "underspend":3, "underspending":4, "underspent":3, "underspecies":4, "underspin":3, "underspinner":4, "undersplice":3, "underspliced":3, "undersplicing":4, "underspread":3, "underspreading":4, "underspring":3, "underspringing":4, "undersprout":3, "undersprung":3, "understaff":3, "understaffed":3, "understage":3, "understain":3, "understamp":3, "understand":3, "understandability":7, "understandable":5, "understandableness":6, "understandably":5, "understanding":4, "understandingly":5, "understandingness":5, "understate":3, "understatement":4, "understated":4, "understating":4, "understay":3, "understeer":3, "understem":3, "understep":3, "understeward":4, "understewardship":5, "understimulus":5, "understock":3, "understood":3, "understrain":3, "understrap":3, "understrapped":3, "understrapper":4, "understrapping":4, "understrata":4, "understream":3, "understress":3, "understrew":3, "understrewn":3, "understrewing":4, "understricken":4, "understrife":3, "understrike":3, "understriking":4, "understruck":3, "understructure":4, "understudied":4, "understudies":4, "understudy":4, "understudying":5, "understuff":3, "understuffing":4, "undersuit":3, "undersupplied":4, "undersupply":4, "undersupplying":5, "undersupport":4, "undersurface":4, "underswain":3, "underswamp":3, "undersward":3, "underswearer":4, "undersweep":3, "undersweeping":4, "underswell":3, "underswept":3, "undertake":3, "undertaker":4, "undertakerly":5, "undertaking":4, "undertalk":3, "undertapster":4, "undertaught":3, "undertaxed":3, "underteach":3, "underteacher":4, "underteaching":4, "underteamed":3, "underteller":4, "undertenant":4, "undertenancy":5, "undertenure":4, "underterrestrial":6, "undertest":3, "underthane":3, "underthaw":3, "underthief":3, "underthings":3, "underthought":3, "underthroating":4, "underthrust":3, "undertide":3, "undertided":4, "undertie":3, "undertied":3, "undertint":3, "undertitle":4, "undertone":3, "undertook":3, "undertow":3, "undertrade":3, "undertraded":4, "undertrader":4, "undertrading":4, "undertrain":3, "undertrained":3, "undertreasurer":5, "undertribe":3, "undertrick":3, "undertruck":3, "undertrump":3, "undertruss":3, "undertub":3, "undertune":3, "undertuned":3, "undertuning":4, "undertunic":4, "undertutor":4, "undertwig":3, "undertying":4, "undertyrant":4, "underusher":4, "underutilization":7, "undervalve":3, "undervalue":4, "undervalued":4, "undervaluing":5, "undervassal":4, "undervaulted":4, "undervaulting":4, "undervegetation":6, "underventilate":5, "underventilated":6, "underventilating":6, "underventilation":6, "underverse":3, "undervest":3, "undervicar":4, "underviewer":4, "undervillain":4, "undervitalized":5, "undervoice":3, "underwage":3, "underwaist":3, "underwaistcoat":4, "underwarden":4, "underwash":3, "underwatcher":4, "underwave":3, "underwaving":4, "underwater":4, "underwear":3, "underweft":3, "underweight":3, "underwent":3, "underwheel":3, "underwind":3, "underwing":3, "underwitch":3, "underwood":3, "underwooded":4, "underwork":3, "underworked":3, "underworker":4, "underworking":4, "underworkman":4, "underworld":3, "underwrap":3, "underwrapped":3, "underwrapping":4, "underwrite":3, "underwriter":4, "underwriting":4, "underwritten":4, "underwrote":3, "underwrought":3, "underyield":3, "underyoke":3, "underzeal":3, "underzealot":4, "underzealous":4, "undescended":4, "undesecrated":5, "undesiccated":5, "undesignated":5, "undesignative":5, "undespatched":3, "undespotic":4, "undespotically":6, "undestined":3, "undestitute":4, "undetonated":5, "undetrimental":5, "undevastated":5, "undevastating":5, "undevilish":4, "undewed":2, "undewily":4, "undewiness":4, "undewy":3, "undexterous":4, "undextrous":3, "undebased":3, "undebatable":5, "undebated":4, "undebating":4, "undebauched":3, "undebilitated":6, "undebilitating":6, "undebilitative":6, "undecayed":3, "undecayable":5, "undecaying":4, "undecadent":4, "undeceased":3, "undeceitful":4, "undeceive":3, "undeceived":3, "undeceivable":5, "undeceiver":4, "undeceiving":4, "undeceptive":4, "undecided":4, "undecillionth":4, "undeciphered":4, "undecipherable":6, "undeclaimed":3, "undeclaiming":4, "undeclamatory":6, "undeclared":3, "undeclarable":5, "undeclarative":5, "undeclined":3, "undeclinable":5, "undeclining":4, "undecocted":4, "undecomposed":4, "undecomposable":6, "undecompounded":5, "undecorticated":6, "undecreased":3, "undecreasing":4, "undecreed":3, "undecrepit":4, "undecretive":4, "undecried":3, "undeduced":3, "undeducted":4, "undeductible":5, "undeducible":5, "undeductive":4, "undefaced":3, "undefaceable":5, "undefalcated":5, "undefamed":3, "undefamatory":6, "undefaming":4, "undefaulted":4, "undefaulting":4, "undefeatable":5, "undefeatableness":6, "undefeated":4, "undefective":4, "undefendant":4, "undefendable":5, "undefendableness":6, "undefended":4, "undefending":4, "undefensed":3, "undefensive":4, "undefensible":5, "undefensibleness":6, "undeferred":3, "undeferrable":5, "undefied":3, "undefiled":3, "undefined":3, "undefinable":5, "undefinedly":5, "undefinedness":5, "undefinitive":5, "undefiant":4, "undefiable":5, "undeficient":4, "undeflected":4, "undeflective":4, "undeformed":3, "undeformable":5, "undefrauded":4, "undefrayed":3, "undegenerate":5, "undegenerated":6, "undegenerating":6, "undegeneracy":6, "undegenerative":6, "undegraded":4, "undegrading":4, "undeistical":5, "undeified":4, "undejected":4, "undelayed":3, "undelayable":5, "undelaying":4, "undelectable":5, "undeleted":4, "undeliberate":5, "undeliberating":6, "undeliberative":6, "undelighted":4, "undelightful":4, "undelighting":4, "undelineated":6, "undelineable":6, "undelineative":6, "undelinquent":4, "undelirious":5, "undelivered":4, "undeliverable":6, "undelicious":4, "undeluded":4, "undeluding":4, "undelusive":4, "undelusory":5, "undemanded":4, "undemanding":4, "undemised":3, "undemocratise":5, "undemocratised":5, "undemocratising":6, "undemocratize":5, "undemocratized":5, "undemocratizing":6, "undemocratisation":7, "undemocratization":7, "undemolished":4, "undemolishable":6, "undemonstrable":5, "undemonstrableness":6, "undemonstrative":5, "undemure":3, "undemurring":4, "undenied":3, "undeniable":5, "undeniableness":6, "undeniably":5, "undenominated":6, "undenominational":7, "undenotable":5, "undenoted":4, "undenounced":3, "undenotative":5, "undenuded":4, "undenunciated":6, "undenunciatory":7, "undeparted":4, "undeparting":4, "undependability":7, "undependable":5, "undependableness":6, "undependent":4, "undepicted":4, "undepleted":4, "undeplored":3, "undeported":4, "undeposed":3, "undeposable":5, "undeposited":5, "undepraved":3, "undepressed":3, "undepressing":4, "undepressible":5, "undepressive":4, "undepreciated":6, "undepreciable":6, "undepreciative":6, "undepreciatory":7, "undeprived":3, "undeputed":4, "underanged":3, "underided":4, "underisible":5, "underivable":5, "underivative":5, "underivedness":5, "underisive":4, "underisory":5, "underogative":5, "underogatory":6, "undescendable":5, "undescended":4, "undescendent":4, "undescending":4, "undescendible":5, "undescribed":3, "undescribable":5, "undescribableness":6, "undescried":3, "undescriptive":4, "undescrying":4, "undeserted":4, "undeserved":3, "undeservedly":5, "undeserving":4, "undesigned":3, "undesignedly":5, "undesigning":4, "undesigningly":5, "undesigningness":5, "undesired":3, "undesirable":5, "undesirableness":6, "undesirably":5, "undesiring":4, "undesirous":4, "undesisting":4, "undespaired":3, "undespairing":4, "undespised":3, "undespising":4, "undespoiled":3, "undespondent":4, "undesponding":4, "undestroyed":3, "undestructible":5, "undestructibleness":6, "undestructive":4, "undetached":3, "undetachable":5, "undetailed":3, "undetained":3, "undetainable":5, "undetectable":5, "undetected":4, "undetectible":5, "undeterred":3, "undetermined":4, "undetermining":5, "undeterminable":6, "undeterminableness":7, "undeterrability":7, "undeterrable":5, "undeterring":4, "undetestability":7, "undetestable":5, "undetestableness":6, "undetested":4, "undetesting":4, "undeteriorated":7, "undeteriorating":7, "undeteriorative":7, "undethroned":3, "undetracting":4, "undetractive":4, "undetractory":5, "undevelopable":6, "undeveloping":5, "undevelopmental":6, "undevised":3, "undevisable":5, "undeviated":5, "undeviating":5, "undeviable":5, "undevious":4, "undevoted":4, "undevoured":3, "undevout":3, "undevotional":5, "undictated":4, "undictatorial":6, "undid":2, "undies":2, "undifferent":4, "undifferentiated":7, "undifferentiable":7, "undiffering":4, "undifficult":4, "undiffident":4, "undiffracted":4, "undiffractive":4, "undiffused":3, "undiffusible":5, "undiffusive":4, "undigitated":5, "undignified":4, "undiked":2, "undilatorily":6, "undilatory":5, "undiligent":4, "undim":2, "undimmed":2, "undimerous":4, "undimpled":3, "undine":2, "undine":2, "undipped":2, "undiplomatic":5, "undiplomatically":7, "undisappearing":5, "undisappointable":6, "undisappointed":5, "undisappointing":5, "undisarmed":3, "undisastrous":4, "undisabled":4, "undisagreeable":6, "undisbanded":4, "undisbarred":3, "undisbursed":3, "undiscardable":5, "undiscarded":4, "undiscerned":3, "undiscernable":5, "undiscerning":4, "undiscernible":5, "undischarged":3, "undischargeable":5, "undisciplined":4, "undisciplinable":6, "undisclaimed":3, "undisclosed":3, "undiscolored":4, "undiscomfited":5, "undiscomposed":4, "undisconcerted":5, "undisconnected":5, "undiscontinued":5, "undiscordant":4, "undiscording":4, "undiscountable":5, "undiscounted":4, "undiscouraged":4, "undiscourageable":6, "undiscouraging":5, "undiscovered":4, "undiscoverable":6, "undiscreditable":6, "undiscredited":5, "undiscriminated":6, "undiscriminating":6, "undiscriminatory":7, "undiscussed":3, "undiscussable":5, "undisdaining":4, "undiseased":3, "undisestablished":5, "undisfigured":4, "undisfranchised":4, "undisgorged":3, "undisgraced":3, "undisguised":3, "undisguisable":5, "undisgusted":4, "undisheartened":4, "undishonored":4, "undisillusioned":5, "undisinfected":5, "undisinheritable":7, "undisinherited":6, "undisjoined":3, "undisjointed":4, "undislodged":3, "undislocated":5, "undismantled":4, "undismayed":3, "undismayable":5, "undismissed":3, "undisordered":4, "undisorderly":5, "undisorganized":5, "undisparaged":4, "undispassionate":5, "undispatched":3, "undispatchable":5, "undispatching":4, "undispelled":3, "undispellable":5, "undispensed":3, "undispensable":5, "undispersed":3, "undispersing":4, "undisplaced":3, "undisplaceable":5, "undisplayed":3, "undisplayable":5, "undisplaying":4, "undisposed":3, "undisproved":3, "undisprovable":5, "undisputable":5, "undisputed":4, "undisputing":4, "undisputatious":5, "undisqualified":5, "undisqualifiable":7, "undisquieted":5, "undisrupted":4, "undissected":4, "undissembled":4, "undissembling":4, "undisseminated":6, "undissenting":4, "undissevered":4, "undissipated":5, "undissolved":3, "undissolvable":5, "undissolving":4, "undissoluble":5, "undissociated":6, "undissolute":4, "undissonant":4, "undissuadable":5, "undistant":3, "undistasteful":4, "undistempered":4, "undistend":3, "undistilled":3, "undistinguished":4, "undistinguishable":6, "undistinguishing":5, "undistorted":4, "undistorting":4, "undistracted":4, "undistracting":4, "undistrained":3, "undistraught":3, "undistressed":3, "undistributed":5, "undistrustful":4, "undisturbed":3, "undisturbable":5, "undisturbing":4, "undithyrambic":5, "undiagnosed":4, "undialed":3, "undialled":3, "undiaphanous":5, "undiabetic":5, "undiagramed":4, "undiagrammed":4, "undiagrammatic":6, "undiagrammatical":7, "undialyzed":4, "undiametric":5, "undiametrical":6, "undiapered":4, "undiatonic":5, "undiatonically":7, "undichotomous":5, "undidactic":4, "undigested":4, "undigesting":4, "undigestible":5, "undigressive":4, "undilapidated":6, "undilatable":5, "undilated":4, "undilating":4, "undilative":4, "undilute":3, "undiluted":4, "undiluting":4, "undiluvial":5, "undiluvian":5, "undimensioned":4, "undimidiated":6, "undiminished":4, "undiminishable":6, "undiminishableness":7, "undiminishing":5, "undiplomaed":4, "undirected":4, "undirectional":5, "undisheveled":4, "undiurnal":4, "undiuretic":5, "undiverging":4, "undiverse":3, "undiverted":4, "undivertible":5, "undivergent":4, "undiversified":5, "undivertive":4, "undivested":4, "undividable":5, "undivided":4, "undividing":4, "undivined":3, "undivinable":5, "undivining":4, "undivisible":5, "undivisive":4, "undivorced":3, "undivorceable":5, "undivulged":3, "undivulgeable":5, "undivulging":4, "undo":2, "undocked":2, "undocketed":4, "undoctored":3, "undoctrined":3, "undoctrinal":4, "undocumented":5, "undocumentary":6, "undodged":2, "undogmatic":4, "undogmatical":5, "undolorous":4, "undomed":2, "undomiciled":4, "undominated":5, "undominative":5, "undomineering":5, "undone":2, "undoped":2, "undoting":3, "undotted":3, "undoubtable":4, "undoubted":3, "undoubtedly":4, "undoubtful":3, "undoubting":3, "undouched":2, "undoughty":3, "undouble":3, "undowned":2, "undoweled":3, "undowelled":3, "undowered":3, "undoable":4, "undoer":3, "undoing":3, "undomestic":4, "undomestically":6, "undomesticated":6, "undomesticable":6, "undominical":5, "undonated":4, "undraftable":4, "undrafted":3, "undragoned":3, "undrained":2, "undrainable":4, "undramatisable":6, "undramatized":4, "undramatizable":6, "undrape":2, "undraped":2, "undraping":3, "undraw":2, "undrawn":2, "undrawable":4, "undrawing":3, "undragooned":3, "undramatic":4, "undramatical":5, "undraperied":4, "undreaded":3, "undreading":3, "undreamed":2, "undreamt":2, "undreaming":3, "undreamlike":3, "undredged":2, "undrenched":2, "undress":2, "undressed":2, "undrew":2, "undried":2, "undrifting":3, "undrilled":2, "undrillable":4, "undrinkable":4, "undrinking":3, "undrivable":4, "undriven":3, "undrooping":3, "undropped":2, "undropsical":4, "undrossily":4, "undrossiness":4, "undrossy":3, "undrowned":2, "undrubbed":2, "undrugged":2, "undrunk":2, "undrunken":3, "undry":2, "undryable":4, "undrying":3, "undubbed":2, "unductile":3, "undue":2, "undug":2, "undulled":2, "undumped":2, "unduped":2, "undupable":4, "undurability":6, "undurable":4, "undurableness":5, "undusted":3, "undusty":3, "undualistic":5, "undualistically":7, "undubious":4, "undubitative":5, "unducal":3, "undulance":3, "undulant":3, "undulant fever":5, "undular":3, "undulate":3, "undulated":4, "undulation":4, "undulative":4, "undulator":4, "undulatory":5, "undulatus":4, "unduly":3, "unduplicative":5, "unduteous":4, "undutiable":5, "undutiful":4, "undwarfed":2, "undwellable":4, "undwindling":3, "undyed":2, "undyable":4, "undying":3, "undyingly":4, "undyingness":4, "undynamic":4, "undynamically":6, "undynamited":5, "und":3, "unde":3, "unearned":2, "unearned income":4, "unearned increment":5, "unearth":2, "unearthly":3, "unearnest":3, "unease":2, "uneastern":3, "uneasily":4, "uneasiness":4, "uneasy":3, "uneatable":4, "uneaten":3, "uneating":3, "uneaved":2, "uneager":3, "unebbed":2, "unebbing":3, "unechoed":3, "unechoing":4, "uneccentric":4, "uneccentrically":6, "unecclesiastic":6, "unecclesiastically":8, "uneclectic":4, "uneclectically":6, "unecstatic":4, "unecstatically":6, "unedge":2, "unedged":2, "unedging":3, "uneddied":3, "uneddying":4, "uneditable":5, "unedited":4, "unedible":4, "unedified":4, "unedificial":5, "unedifying":5, "uneducated":5, "uneducable":5, "uneducative":5, "uneffaced":3, "uneffaceable":5, "uneffected":4, "uneffectible":5, "uneffective":4, "uneffectuated":6, "uneffeminate":5, "uneffervescent":5, "uneffete":3, "unefficacious":5, "unefficient":4, "uneffulgent":4, "uneffused":3, "uneffusing":4, "uneffusive":4, "unelderly":4, "unelbowed":3, "uneleemosynary":7, "unelegant":4, "unelemental":5, "unelementary":6, "unelevated":5, "unelliptical":5, "uneloquent":4, "unemptied":3, "unempty":3, "unemanative":5, "unembalmed":3, "unembanked":3, "unembarrassed":4, "unembattled":4, "unembayed":3, "unembellished":4, "unembezzled":4, "unembittered":4, "unemblazoned":4, "unembossed":3, "unemboweled":4, "unembowelled":4, "unembowered":4, "unembraced":3, "unembraceable":5, "unembroiled":3, "unembroidered":4, "unembryonic":5, "unembryonal":5, "unemigrant":4, "unemigrating":5, "uneminent":4, "unempaneled":4, "unempanelled":4, "unemphatic":4, "unemphatically":6, "unemphasized":4, "unemphasizing":5, "unempirical":5, "unemployed":3, "unemployability":7, "unemployable":5, "unemployment":4, "unemployment benefit":7, "unemployment compensation":8, "unempoisoned":4, "unempowered":4, "unemulative":5, "unemulous":4, "unendable":4, "unended":3, "unending":3, "unenacted":4, "unenameled":4, "unenamelled":4, "unenamored":4, "unencamped":3, "unenchanted":4, "unencircled":4, "unenclosed":3, "unencompassed":4, "unencountered":4, "unencounterable":6, "unencouraged":4, "unencouraging":5, "unencroached":3, "unencroaching":4, "unencumbered":4, "unencumbering":5, "unencysted":4, "unendangered":4, "unendeared":3, "unendemic":4, "unendorsed":3, "unendorsable":5, "unendowed":3, "unendowing":4, "unendued":3, "unendured":3, "unendurability":7, "unendurable":5, "unenduring":4, "unenergetic":5, "unenergetically":7, "unenergized":4, "unenervated":5, "unenfeebled":4, "unenfiladed":5, "unenforced":3, "unenforceability":7, "unenforceable":5, "unenforcedly":5, "unenfranchised":4, "unengaged":3, "unengaging":4, "unengendered":4, "unengineered":4, "unengraved":3, "unengraven":4, "unengrossed":3, "unengrossing":4, "unenhanced":3, "unenigmatic":5, "unenigmatical":6, "unenjoined":3, "unenjoyed":3, "unenjoyable":5, "unenjoyableness":6, "unenjoying":4, "unenlarged":3, "unenlarging":4, "unenlightened":4, "unenlightening":5, "unenlisted":4, "unenlivened":4, "unenlivening":5, "unennobled":4, "unennobling":4, "unenquired":3, "unenquiring":4, "unenraptured":4, "unenriched":3, "unenrichable":5, "unenriching":4, "unenrolled":3, "unenshrined":3, "unenslaved":3, "unensnared":3, "unensured":3, "unentailed":3, "unentangled":4, "unentangleable":6, "unentangling":4, "unentered":3, "unenterable":5, "unenterprising":5, "unentertained":4, "unentertainable":6, "unentertaining":5, "unenthralled":3, "unenthralling":4, "unenthused":3, "unenthusiasm":5, "unenthusiastic":6, "unenthusiastically":8, "unenticed":3, "unenticeable":5, "unenticing":4, "unentitled":4, "unentombed":3, "unentomological":7, "unentranced":3, "unentrapped":3, "unentreatable":5, "unentreated":4, "unentreating":4, "unentrenched":3, "unentwined":3, "unenveloped":4, "unenvenomed":4, "unenvied":3, "unenviability":7, "unenviable":5, "unenvious":4, "unenvironed":4, "unenvying":4, "unepauleted":5, "unepauletted":5, "unepic":3, "unepicurean":6, "unepigrammatic":6, "unepigrammatically":8, "unepilogued":4, "unepitaphed":4, "unepithelial":6, "unepochal":4, "unequability":6, "unequable":4, "unequableness":5, "unerring":3, "unerringly":4, "unerringness":4, "unermined":3, "unerrant":3, "unerratic":4, "unerudite":4, "unescalloped":4, "unescaped":3, "unescapable":5, "unescheatable":5, "unescheated":4, "uneschewed":3, "unescorted":4, "unescutcheoned":4, "unesoteric":5, "unespied":3, "unespoused":3, "unespousable":5, "unessayed":3, "unessential":4, "unestablishable":6, "unesteemed":3, "unesthetic":4, "unestimated":5, "unestimable":5, "unestopped":3, "unestranged":3, "unetched":2, "unethical":4, "unethnologic":5, "unethnological":6, "unethylated":5, "unetymologic":6, "unetymological":7, "uneugenic":4, "uneugenical":5, "uneulogised":4, "uneulogized":4, "uneuphemistic":5, "uneuphemistical":6, "uneuphonic":4, "uneuphonious":5, "unevanescent":5, "unevidenced":4, "unevidential":5, "unevocable":5, "unevolutional":6, "unevolutionary":7, "unexacted":4, "unexacting":4, "unexacerbated":6, "unexacerbating":6, "unexaggerated":6, "unexaggerating":6, "unexaggerative":6, "unexaggeratory":7, "unexalted":4, "unexalting":4, "unexamined":4, "unexaminable":6, "unexamining":5, "unexampled":4, "unexasperated":6, "unexasperating":6, "unexcavated":5, "unexceedable":5, "unexceeded":4, "unexcelled":3, "unexcellent":4, "unexcelling":4, "unexceptable":5, "unexcepted":4, "unexcepting":4, "unexceptional":5, "unexceptionally":6, "unexceptionability":8, "unexceptionable":6, "unexceptionableness":7, "unexceptionably":6, "unexceptive":4, "unexcerpted":4, "unexcessive":4, "unexchanged":3, "unexchangeable":5, "unexcised":3, "unexcitability":7, "unexcitable":5, "unexcited":4, "unexciting":4, "unexclaiming":4, "unexcludable":5, "unexcluded":4, "unexcluding":4, "unexclusive":4, "unexcogitated":6, "unexcogitable":6, "unexcogitative":6, "unexcommunicated":7, "unexcoriated":6, "unexcrescent":4, "unexcreted":4, "unexcruciating":6, "unexculpated":5, "unexculpable":5, "unexcursive":4, "unexcused":3, "unexcusable":5, "unexcusedly":5, "unexcusing":4, "unexecutorial":7, "unexempt":3, "unexemptable":5, "unexempted":4, "unexempting":4, "unexemplary":5, "unexerted":4, "unexercised":4, "unexercisable":6, "unexecrated":5, "unexecutable":6, "unexecuted":5, "unexecuting":5, "unexhaled":3, "unexhausted":4, "unexhaustion":4, "unexhaustive":4, "unexhibitable":6, "unexhibited":5, "unexhilarated":6, "unexhilarating":6, "unexhilarative":6, "unexhorted":4, "unexhortative":5, "unexhumed":3, "unexiled":3, "unexistent":4, "unexisting":4, "unexistential":5, "unexigent":4, "unexigible":5, "unexonerated":6, "unexonerative":6, "unexorbitant":5, "unexorcised":4, "unexotic":4, "unexotically":6, "unexpandable":5, "unexpanded":4, "unexpanding":4, "unexpansive":4, "unexpansible":5, "unexpectant":4, "unexpectability":7, "unexpectable":5, "unexpected":4, "unexpectedly":5, "unexpectedness":5, "unexpecting":4, "unexpected":4, "unexpectorated":6, "unexpelled":3, "unexpellable":5, "unexpendable":5, "unexpended":4, "unexpert":3, "unexperimented":6, "unexperimental":6, "unexpeditable":6, "unexpedited":5, "unexpedient":5, "unexpeditious":5, "unexperienced":5, "unexperiential":6, "unexpired":3, "unexpiring":4, "unexpiated":5, "unexpiable":5, "unexplained":3, "unexplainable":5, "unexplainedly":5, "unexplaining":4, "unexplanatory":6, "unexplicit":4, "unexplicated":5, "unexplicative":5, "unexplodable":5, "unexploded":4, "unexploitable":5, "unexploitative":5, "unexploited":4, "unexplored":3, "unexplorable":5, "unexplorative":5, "unexploratory":6, "unexplosive":4, "unexportable":5, "unexported":4, "unexporting":4, "unexposed":3, "unexposable":5, "unexpostulating":6, "unexpoundable":5, "unexpounded":4, "unexponible":5, "unexpressed":3, "unexpressable":5, "unexpressly":4, "unexpressive":4, "unexpressively":5, "unexpressiveness":5, "unexpropriated":6, "unexpropriable":6, "unexpunged":3, "unexpurgated":5, "unextendable":5, "unextended":4, "unextendible":5, "unextensible":5, "unextenuated":6, "unextenuating":6, "unexterminated":6, "unexterminable":6, "unextinct":3, "unextinguished":4, "unextinguishable":6, "unextirpated":5, "unextolled":3, "unextortable":5, "unextorted":4, "unextractable":5, "unextracted":4, "unextraordinary":6, "unextravagant":5, "unextravasated":6, "unextradited":5, "unextraneous":5, "unextreme":3, "unextrinsic":4, "unextricated":5, "unextricable":5, "unextruded":4, "unexuded":4, "unexultant":4, "unexuberant":5, "unexudative":5, "uneyeable":4, "unebullient":4, "unechoic":4, "uneclipsed":3, "uneclipsing":4, "unecliptic":4, "unecliptical":5, "uneconomizing":6, "uneconomic":5, "uneconomical":6, "unedacious":4, "uneduced":3, "unegoistical":6, "unegotistical":6, "unegregious":4, "unejaculated":6, "unejected":4, "unejective":4, "unelaborate":5, "unelaborated":6, "unelapsed":3, "unelastic":4, "unelasticity":6, "unelastically":6, "unelated":4, "unelating":4, "unelectable":5, "unelected":4, "unelective":4, "unelectric":4, "unelectrical":5, "unelectrified":5, "unelectrifying":6, "unelectronic":5, "unelicitable":6, "unelicited":5, "unelided":4, "unelidible":5, "uneliminated":6, "unelongated":5, "uneloped":3, "uneloping":4, "uneludable":5, "uneluded":4, "unelucidated":6, "unelucidating":6, "unelucidative":6, "unelusive":4, "unelusory":5, "unemancipated":6, "unemancipative":6, "unemasculated":6, "unemasculative":6, "unemasculatory":7, "unemaciated":6, "unemendable":5, "unemended":4, "unemerged":3, "unemerging":4, "unemergent":4, "unemissive":4, "unemitted":4, "unemitting":4, "unemotioned":4, "unemotional":5, "unemotive":4, "unemulsified":5, "unenounced":3, "unenunciated":6, "unenunciable":6, "unenunciative":6, "unenumerated":6, "unenumerative":6, "unephemeral":5, "unepistolary":6, "unepitomised":5, "unepitomized":5, "unequal":3, "unequaled":3, "unequalled":3, "unequalise":4, "unequalised":4, "unequalising":5, "unequalize":4, "unequalized":4, "unequalizing":5, "unequally":4, "unequalness":4, "unequated":4, "unequatorial":6, "unequestrian":5, "unequine":3, "unequipped":3, "unequivalent":5, "unequivocal":5, "unequivocally":6, "unequivocalness":6, "unequivocating":6, "unequiangular":6, "unequilateral":6, "unequilibrated":6, "uneradicated":6, "uneradicable":6, "uneradicative":6, "unerased":3, "unerasable":5, "unerasing":4, "unerect":3, "unerected":4, "unerodable":5, "uneroded":4, "unerodent":4, "uneroding":4, "unerotic":4, "unerosive":4, "unerupted":4, "uneruptive":4, "uneternized":4, "unethereal":5, "unevacuated":6, "unevadable":5, "unevaded":4, "unevading":4, "unevadible":5, "unevaluated":6, "unevangelic":5, "unevangelised":5, "unevangelized":5, "unevangelical":6, "unevaporated":6, "unevaporative":6, "unevasive":4, "uneven":3, "uneventful":4, "uneventfully":5, "uneventfulness":5, "unevenly":4, "unevenness":4, "uneverted":4, "uneversible":5, "unevicted":4, "unevil":3, "unevinced":3, "unevincible":5, "uneviscerated":6, "unevocative":5, "unevoked":3, "unevolved":3, "unfabricated":5, "unfabulous":4, "unfaced":2, "unfaceable":4, "unfaceted":4, "unfacile":3, "unfactional":4, "unfactious":3, "unfactored":3, "unfactorable":5, "unfactual":4, "unfadable":4, "unfaded":3, "unfading":3, "unfagged":2, "unfagoted":4, "unfailed":2, "unfailing":3, "unfailingly":4, "unfailingness":4, "unfainting":3, "unfaintly":3, "unfair":2, "unfaithful":3, "unfaithfully":4, "unfaithfulness":4, "unfaked":2, "unfakable":4, "unfallen":3, "unfalling":3, "unfallacious":4, "unfallowed":3, "unfalsified":4, "unfalsifiable":6, "unfaltering":4, "unfanged":2, "unfanned":2, "unfancied":3, "unfanciful":4, "unfancy":3, "unfantastic":4, "unfantastically":6, "unfar":2, "unfarced":2, "unfarmed":2, "unfarmable":4, "unfarming":3, "unfarcical":4, "unfashioned":3, "unfashionable":5, "unfasting":3, "unfasciate":4, "unfasciated":5, "unfascinated":5, "unfascinating":5, "unfasten":3, "unfastenable":5, "unfastener":4, "unfastidious":5, "unfathomed":3, "unfathomable":5, "unfated":3, "unfatigable":5, "unfatted":3, "unfatty":3, "unfaulty":3, "unfauceted":4, "unfawning":3, "unfabled":3, "unfabling":3, "unfacaded":4, "unfacetious":4, "unfacilitated":6, "unfamiliar":4, "unfamiliarised":5, "unfamiliarized":5, "unfamiliarity":7, "unfanatical":5, "unfatalistic":5, "unfatalistically":7, "unfathered":3, "unfatherly":4, "unfatigued":3, "unfatiguing":4, "unfatuitous":5, "unfavored":3, "unfavorable":5, "unfavorableness":6, "unfavorably":5, "unfavoring":4, "unfavorite":4, "unfavoured":3, "unfavourable":5, "unfavourableness":6, "unfavourably":5, "unfavouring":4, "unfavourite":4, "unfeared":2, "unfearful":3, "unfearing":3, "unfeasted":3, "unfeathered":3, "unfeasibility":6, "unfeasible":4, "unfeasibleness":5, "unfeatured":3, "unfed":2, "unfederated":5, "unfederated malay states":8, "unfederative":5, "unfeedable":4, "unfeeding":3, "unfeeling":3, "unfeelingly":4, "unfeelingness":4, "unfeeble":3, "unfeebleness":4, "unfeignable":4, "unfeigning":3, "unfelled":2, "unfellable":4, "unfelt":2, "unfelted":3, "unfeminine":4, "unfeminise":4, "unfeminised":4, "unfeminist":4, "unfeminising":5, "unfeminize":4, "unfeminized":4, "unfeminizing":5, "unfence":2, "unfenced":2, "unfencing":3, "unfended":3, "unfendered":3, "unfeoffed":2, "unfermentable":5, "unfermentative":5, "unfermented":4, "unfermenting":4, "unferreted":4, "unferreting":4, "unferried":3, "unfertile":3, "unfertility":5, "unfertilised":4, "unfertilisable":6, "unfertilising":5, "unfertilized":4, "unfertilizable":6, "unfertilizing":5, "unfervent":3, "unfervid":3, "unfestered":3, "unfestering":4, "unfestive":3, "unfestooned":3, "unfetched":2, "unfetching":3, "unfeted":3, "unfetter":3, "unfeudal":3, "unfeudalise":4, "unfeudalised":4, "unfeudalising":5, "unfeudalize":4, "unfeudalized":4, "unfeudalizing":5, "unfealty":4, "unfebrile":3, "unfecund":3, "unfecundated":5, "unfelicitated":6, "unfelicitating":6, "unfelicitous":5, "unfeline":3, "unfelonious":5, "unfemale":3, "unfenestral":4, "unfenestrated":5, "unferocious":4, "unfevered":3, "unfeverish":4, "unfibrous":2, "unfibbing":3, "unfickle":3, "unfictitious":4, "unfidgeting":4, "unfielded":3, "unfierce":2, "unfiery":3, "unfightable":4, "unfighting":3, "unfigurable":5, "unfigurative":5, "unfilched":2, "unfile":2, "unfiled":2, "unfilled":2, "unfilling":3, "unfilmed":2, "unfilamentous":5, "unfiling":3, "unfilial":4, "unfilially":5, "unfiltered":3, "unfilterable":5, "unfiltering":4, "unfiltrated":4, "unfimbriated":5, "unfine":2, "unfined":2, "unfineable":4, "unfinable":4, "unfinished":3, "unfinishedness":4, "unfinishable":5, "unfinical":4, "unfired":2, "unfirm":2, "unfiring":3, "unfished":2, "unfishable":4, "unfiscal":3, "unfissile":3, "unfistulous":4, "unfit":2, "unfitly":3, "unfitness":3, "unfittable":4, "unfitted":3, "unfitting":3, "unfix":2, "unfixated":4, "unfixable":4, "unfixative":4, "unfixity":4, "unfibered":3, "unfibred":3, "unfidelity":5, "unfiducial":4, "unfinanced":3, "unfinite":3, "unflagged":2, "unflagging":3, "unflaked":2, "unflaking":3, "unflaky":3, "unflamboyant":4, "unflaming":3, "unflanged":2, "unflank":2, "unflappable":4, "unflapping":3, "unflared":2, "unflaring":3, "unflashing":3, "unflashy":3, "unflat":2, "unflatted":3, "unflattened":3, "unflattered":3, "unflatterable":5, "unflattering":4, "unflaunted":3, "unflaunting":3, "unflawed":2, "unflayed":2, "unflagitious":4, "unflagrant":3, "unflavored":3, "unflavorous":4, "unflavoured":3, "unflavourous":4, "unflecked":2, "unfledged":2, "unfleeced":2, "unfleeting":3, "unfleeing":3, "unfleshliness":4, "unfleshly":3, "unfletched":2, "unflexed":2, "unflexibility":6, "unflexible":4, "unflickering":4, "unflighty":3, "unflinching":3, "unflinchingly":4, "unflippant":3, "unflirtatious":4, "unflitched":2, "unfloatable":4, "unfloating":3, "unflogged":2, "unfloggable":4, "unflooded":3, "unfloor":2, "unflorid":3, "unflossy":3, "unflounced":2, "unfloundering":4, "unfloured":2, "unflourishing":4, "unflouted":3, "unflown":2, "unflowered":3, "unflowering":4, "unflowery":4, "unflowing":3, "unfluctuant":4, "unfluctuating":5, "unfluffed":2, "unfluffy":3, "unfluked":2, "unflunked":2, "unfluorinated":5, "unflurried":3, "unflushed":2, "unflustered":3, "unfluted":3, "unfluttered":3, "unflutterable":5, "unfluttering":4, "unfluent":3, "unfluid":3, "unfluorescent":5, "unfluvial":4, "unflying":3, "unfoaled":2, "unfoamed":2, "unfoaming":3, "unfogged":2, "unfogging":3, "unfoggy":3, "unfoiled":2, "unfoilable":4, "unfoisted":3, "unfold":2, "unfoldable":4, "unfolder":3, "unfoldment":3, "unfollowed":3, "unfollowable":5, "unfollowing":4, "unfond":2, "unfondled":3, "unfooled":2, "unfoolable":4, "unfooling":3, "unfoolish":3, "unforced":2, "unforceable":4, "unforceful":3, "unforcedly":4, "unforcing":3, "unfordable":4, "unforded":3, "unforeboded":4, "unforeboding":4, "unforecast":3, "unforecasted":4, "unforegone":3, "unforeknown":3, "unforeknowable":5, "unforeseen":3, "unforeseeable":5, "unforeseeableness":6, "unforeseeing":4, "unforeshortened":4, "unforestalled":3, "unforestallable":5, "unforetellable":5, "unforetold":3, "unforewarned":3, "unforged":2, "unforgeability":6, "unforgeable":4, "unfork":2, "unformed":2, "unformative":4, "unforthright":3, "unforaged":3, "unforbearing":4, "unforbidden":4, "unforbidding":4, "unforcible":4, "unforcibleness":5, "unforeign":3, "unforested":4, "unforfeitable":5, "unforfeited":4, "unforfeiting":4, "unforgetful":4, "unforgettable":5, "unforgetting":4, "unforgivable":5, "unforgivableness":6, "unforgiven":4, "unforgiving":4, "unforgone":3, "unforgotten":4, "unforlorn":3, "unformalised":4, "unformalistic":5, "unformalized":4, "unformidable":5, "unformidableness":6, "unformulated":5, "unformulistic":5, "unforsaken":4, "unforsaking":4, "unforsworn":3, "unfortified":4, "unfortifiable":6, "unfortuitous":5, "unfortunate":4, "unfortunately":5, "unfortunateness":5, "unforward":3, "unforwarded":4, "unfossiliferous":6, "unfossilised":4, "unfossilized":4, "unfostered":3, "unfostering":4, "unfought":2, "unfoul":2, "unfouled":2, "unfound":2, "unfounded":3, "unfoundedly":4, "unfoundedness":4, "unfoundered":3, "unfoundering":4, "unfountained":3, "unfoxed":2, "unfoxy":3, "unfocused":3, "unfocussed":3, "unfocusing":4, "unfocussing":4, "unfoliaged":4, "unfoliated":5, "unfomented":4, "unforensic":4, "unforensically":6, "unfractious":3, "unfractured":3, "unfragile":3, "unfragmented":4, "unfrail":2, "unframed":2, "unframeable":4, "unframable":4, "unframableness":5, "unfrank":2, "unfranchised":3, "unfraternised":4, "unfraternized":4, "unfraternizing":5, "unfraudulent":4, "unfraught":2, "unfrayed":2, "unfrazzled":3, "unfragrance":3, "unfragrant":3, "unfraternal":4, "unfreakish":3, "unfreckled":3, "unfree":2, "unfreed":2, "unfreeze":2, "unfreezable":4, "unfreeing":3, "unfreighted":3, "unfrenzied":3, "unfretful":3, "unfretted":3, "unfretting":3, "unfretty":3, "unfrequent":3, "unfrequentable":5, "unfrequentative":5, "unfricative":4, "unfrictioned":3, "unfrictional":4, "unfried":2, "unfriended":3, "unfriendedness":4, "unfriendlier":4, "unfriendliest":4, "unfriendliness":4, "unfriendly":3, "unfrighted":3, "unfrightened":3, "unfrightening":4, "unfrightful":3, "unfrigid":3, "unfrill":2, "unfrilly":3, "unfringe":2, "unfringed":2, "unfringing":3, "unfrisking":3, "unfrisky":3, "unfrittered":3, "unfrivolous":4, "unfrizzled":3, "unfrizzly":3, "unfrizzy":3, "unfriable":4, "unfrigidity":5, "unfrock":2, "unfronted":3, "unfrost":2, "unfrosted":3, "unfrosty":3, "unfrothed":2, "unfrothing":3, "unfrounced":2, "unfrowning":3, "unfroze":2, "unfroward":3, "unfrozen":3, "unfructified":4, "unfructuous":4, "unfruitful":3, "unfruity":3, "unfrustratable":5, "unfrustrated":4, "unfrugal":3, "unfrugality":5, "unfudged":2, "unfuddled":3, "unfull":2, "unfully":3, "unfulfilled":3, "unfulfillable":5, "unfulfilling":4, "unfulgent":3, "unfulminant":4, "unfulminated":5, "unfulminating":5, "unfulsome":3, "unfumbled":3, "unfumbling":3, "unfuming":3, "unfunctional":4, "unfunctioning":4, "unfunded debt":3, "unfundable":4, "unfunded":3, "unfundamental":5, "unfungible":4, "unfunnily":4, "unfunniness":4, "unfunny":3, "unfurl":2, "unfurlable":4, "unfurred":2, "unfurbelowed":4, "unfurbished":3, "unfurcate":3, "unfurnished":3, "unfurnitured":4, "unfurrowed":3, "unfused":2, "unfussed":2, "unfussing":3, "unfussily":4, "unfussiness":4, "unfussy":3, "unfueled":3, "unfuelled":3, "unfugal":3, "unfugitive":4, "unfumigated":5, "unfunereal":5, "unfusibility":6, "unfusible":4, "unfutile":3, "unfuturistic":5, "ungag":2, "ungagged":2, "ungagging":3, "ungained":2, "ungainable":4, "ungainful":3, "ungaining":3, "ungainliness":4, "ungainly":3, "ungainsaid":3, "ungaited":3, "ungalled":2, "ungalling":3, "ungallant":3, "ungalleried":4, "ungalloping":4, "ungalvanized":4, "ungamelike":3, "ungambled":3, "ungambling":3, "ungamboled":3, "ungambolled":3, "ungamboling":4, "ungambolling":4, "ungamy":3, "unganged":2, "ungangrened":3, "ungangrenous":4, "ungaping":3, "ungarbed":2, "ungarbled":3, "ungardened":3, "ungarland":3, "ungarmented":4, "ungarnered":3, "ungarnished":3, "ungarrisoned":4, "ungarrulous":4, "ungarter":3, "ungashed":2, "ungassed":2, "ungathered":3, "ungated":3, "ungaudily":4, "ungaudiness":4, "ungaudy":3, "ungauged":2, "ungauntleted":4, "ungazing":3, "ungabled":3, "ungaraged":3, "ungava":3, "ungazetted":4, "ungeared":2, "ungelded":3, "ungeneralised":5, "ungeneralising":6, "ungeneralized":5, "ungeneralizing":6, "ungenerated":5, "ungenerating":5, "ungenerable":5, "ungenerative":5, "ungenerosity":6, "ungenerous":4, "ungenerously":5, "ungenial":3, "ungenitive":4, "ungenteel":3, "ungentile":3, "ungentility":5, "ungentle":3, "ungentlemanlike":5, "ungentlemanly":5, "ungentleness":4, "ungenuine":4, "ungermane":3, "ungerminant":4, "ungerminated":5, "ungerminating":5, "ungerminative":5, "ungesticular":5, "ungesticulating":6, "ungesticulative":6, "ungesticulatory":7, "ungestural":4, "ungesturing":4, "ungelatinized":5, "ungelatinous":5, "ungeneric":4, "ungenerical":5, "ungeodetic":5, "ungeodetically":7, "ungeographic":5, "ungeographical":6, "ungeological":6, "ungeometric":5, "ungeometrical":6, "unghostlike":3, "unghostly":3, "ungiddy":3, "ungifted":3, "ungilded":3, "ungilled":2, "ungilt":2, "ungird":2, "ungirded":3, "ungirding":3, "ungirlish":3, "ungirt":2, "ungirthed":2, "ungirdle":3, "ungivable":4, "ungiven":3, "ungiving":3, "unglad":2, "ungladden":3, "unglamorous":4, "unglandular":4, "unglaring":3, "unglassed":2, "unglassy":3, "unglazed":2, "unglacial":3, "unglaciated":5, "ungleaming":3, "ungleaned":2, "ungleeful":3, "unglib":2, "ungliding":3, "unglimpsed":2, "unglistening":4, "unglittering":4, "unglittery":4, "ungloating":3, "unglobular":4, "ungloom":2, "ungloomily":4, "ungloomy":3, "unglossed":2, "unglossy":3, "unglossaried":4, "ungloved":2, "unglowering":4, "unglowing":3, "unglozed":2, "unglorified":4, "unglorifying":5, "unglorious":4, "unglue":2, "unglued":2, "unglutted":3, "ungluttonous":4, "ungluing":3, "unglutinosity":6, "unglutinous":4, "ungnarled":2, "ungnawed":2, "ungnawn":2, "ungnostic":3, "ungoaded":3, "ungodlike":3, "ungodlier":4, "ungodliest":4, "ungodlily":4, "ungodliness":4, "ungodly":3, "ungoggled":3, "ungoitered":3, "ungolden":3, "ungoodly":3, "ungored":2, "ungorged":2, "ungossiping":4, "ungossipy":4, "ungot":2, "ungothic":3, "ungotten":3, "ungouged":2, "ungouty":3, "ungoverned":3, "ungovernability":7, "ungovernable":5, "ungovernableness":6, "ungovernably":5, "ungoverning":4, "ungovernmental":5, "ungowned":2, "ungrabbing":3, "ungraced":2, "ungraceful":3, "ungraded":3, "ungradual":4, "ungraduated":5, "ungraduating":5, "ungrafted":3, "ungrained":2, "ungrainable":4, "ungrammatical":5, "ungrammatically":6, "ungrand":2, "ungrantable":4, "ungranular":4, "ungranulated":5, "ungraphable":4, "ungraphic":3, "ungraphical":4, "ungraphitized":4, "ungrappled":3, "ungrappling":3, "ungrasped":2, "ungraspable":4, "ungrasping":3, "ungrassed":2, "ungrassy":3, "ungrateful":3, "ungratefully":4, "ungratefulness":4, "ungrated":3, "ungrating":3, "ungratified":4, "ungratifiable":6, "ungratifying":5, "ungratitude":4, "ungraved":2, "ungravely":3, "ungraveled":3, "ungravelled":3, "ungravelly":4, "ungraven":3, "ungravitating":5, "ungravitational":6, "ungravitative":5, "ungrayed":2, "ungrazed":2, "ungraciously":4, "ungraciousness":4, "ungradated":4, "ungradating":4, "ungratuitous":5, "ungreased":2, "ungreasy":3, "ungreedy":3, "ungreened":2, "ungreeted":3, "ungreyed":2, "ungregarious":5, "ungrieved":2, "ungrieving":3, "ungrilled":2, "ungrimed":2, "ungrindable":4, "ungrinned":2, "ungrip":2, "ungripped":2, "ungripping":3, "ungritty":3, "ungrizzled":3, "ungroaning":3, "ungroined":2, "ungroomed":2, "ungrooved":2, "ungross":2, "unground":2, "ungroundable":4, "ungrounded":3, "ungrouped":2, "ungroupable":4, "ungroveling":4, "ungrovelling":4, "ungrowling":3, "ungrown":2, "ungrowing":3, "ungrotesque":3, "ungrudged":2, "ungrudging":3, "ungrudgingly":4, "ungruesome":3, "ungruff":2, "ungrumpy":3, "ungrumbling":3, "ungual":2, "unguardable":4, "unguarded":3, "unguardedly":4, "unguardedness":4, "unguaranteed":4, "unguent":2, "unguentary":4, "unguentum":3, "unguerdoned":3, "unguessed":2, "unguessable":4, "unguiculate":4, "unguiculated":5, "unguidable":4, "unguided":3, "unguileful":3, "unguillotined":4, "unguis":2, "unguinous":3, "unguled":2, "ungummed":2, "ungushing":3, "ungustatory":5, "ungutted":3, "unguttural":4, "unguyed":2, "unguzzled":3, "ungula":3, "ungular":3, "ungulate":3, "unguligrade":4, "ungymnastic":4, "ungyved":2, "ungyrating":4, "unhabitable":5, "unhabitableness":6, "unhabited":4, "unhacked":2, "unhackled":3, "unhackneyed":3, "unhaft":2, "unhaggled":3, "unhaggling":3, "unhailed":2, "unhailable":4, "unhair":2, "unhairiness":4, "unhairy":3, "unhale":2, "unhalted":3, "unhalting":3, "unhalved":2, "unhallow":3, "unhallowed":3, "unhallucinated":6, "unhallucinating":6, "unhallucinatory":7, "unhaltered":3, "unhaltering":4, "unhammered":3, "unhampered":3, "unhampering":4, "unhand":2, "unhandcuff":3, "unhandicapped":4, "unhandseled":3, "unhandselled":3, "unhandsome":3, "unhandsomely":4, "unhandsomeness":4, "unhanged":2, "unhanging":3, "unhanked":2, "unhandled":3, "unhappi":3, "unhappier":4, "unhappiness":4, "unhappy":3, "unharden":3, "unhardened":3, "unhardenable":5, "unharked":2, "unharmed":2, "unharmable":4, "unharmful":3, "unharming":3, "unharped":2, "unharping":3, "unharsh":2, "unharassed":3, "unharbored":3, "unharboured":3, "unharmonic":4, "unharmonically":6, "unharmonise":4, "unharmonised":4, "unharmonising":5, "unharmonize":4, "unharmonized":4, "unharmonizing":5, "unharmonious":5, "unharness":3, "unharried":3, "unharrowed":3, "unharvested":4, "unhashed":2, "unhasp":2, "unhasted":3, "unhasting":3, "unhastily":4, "unhasty":3, "unhastened":3, "unhatched":2, "unhatchability":6, "unhatchable":4, "unhateful":3, "unhated":3, "unhating":3, "unhauled":2, "unhaunted":3, "unhawked":2, "unhayed":2, "unhazed":2, "unhazarded":4, "unhazarding":4, "unhazardous":4, "unhabitual":5, "unhabituated":6, "unhaloed":3, "unharangued":3, "unhazily":4, "unhaziness":4, "unhazy":3, "unheaded":3, "unheady":3, "unhealed":2, "unhealthier":4, "unhealthiest":4, "unhealthily":4, "unhealthiness":4, "unhealthy":3, "unhealable":4, "unhealing":3, "unheaped":2, "unheard":2, "unheard-of":2, "unheartily":4, "unhearty":3, "unhearable":4, "unhearing":3, "unheatable":4, "unheated":3, "unheaved":2, "unheavenly":4, "unheavily":4, "unheaviness":4, "unheavy":3, "unheathen":3, "unhectic":3, "unhectically":5, "unhectored":3, "unhedge":2, "unhedged":2, "unhedging":3, "unheeded":3, "unheedful":3, "unheeding":3, "unheeled":2, "unhefted":3, "unheightened":3, "unheld":2, "unhelm":2, "unhelped":2, "unhelpable":4, "unhelpful":3, "unhelping":3, "unhelved":2, "unhelmeted":4, "unhemmed":2, "unherded":3, "unheralded":4, "unherbaceous":4, "unheritable":5, "unhermetic":4, "unhermitic":4, "unhermitical":5, "unhesitant":4, "unhesitating":5, "unhesitatingly":6, "unhesitative":5, "unheuristic":4, "unheuristically":6, "unhewed":2, "unhewn":2, "unhewable":4, "unhedonistic":5, "unhedonistically":7, "unheraldic":4, "unheroic":4, "unheroical":5, "unherolike":4, "unhid":2, "unhidden":3, "unhideous":4, "unhilly":3, "unhinge":2, "unhinged":2, "unhingement":3, "unhinging":3, "unhinted":3, "unhindered":3, "unhinderable":5, "unhindering":4, "unhipped":2, "unhired":2, "unhissed":2, "unhistoric":4, "unhistorical":5, "unhistoried":4, "unhistory":4, "unhistrionic":5, "unhit":2, "unhitch":2, "unhittable":4, "unhieratic":5, "unhieratical":6, "unhilarious":5, "unhoarded":3, "unhoarding":3, "unhoary":3, "unhoaxed":2, "unhobbling":3, "unhocked":2, "unhoed":2, "unhogged":2, "unhoisted":3, "unhollow":3, "unhollowed":3, "unhomeliness":4, "unhomely":3, "unhomicidal":5, "unhomiletic":5, "unhomiletical":6, "unhoned":2, "unhoneyed":3, "unhonied":3, "unhonored":3, "unhood":2, "unhoodwinked":3, "unhoofed":2, "unhook":2, "unhooped":2, "unhooted":3, "unhoped-for":2, "unhopeful":3, "unhoping":3, "unhoppled":3, "unhorned":2, "unhorse":2, "unhorsed":2, "unhorsing":3, "unhorizontal":5, "unhoroscopic":5, "unhorrified":4, "unhortative":4, "unhosed":2, "unhospitalized":5, "unhostile":3, "unhostility":5, "unhot":2, "unhounded":3, "unhouse":2, "unhoused":2, "unhousewifely":4, "unhousing":3, "unhouseled":3, "unholily":4, "unholiness":4, "unholy":3, "unhomogenized":5, "unhomologized":5, "unhomologous":5, "unhomogeneous":6, "unhomologic":5, "unhomological":6, "unhorizoned":4, "unhuddle":3, "unhued":2, "unhugged":2, "unhull":2, "unhumble":3, "unhumbled":3, "unhumbleness":4, "unhung":2, "unhuntable":4, "unhunted":3, "unhurled":2, "unhurt":2, "unhurtful":3, "unhurting":3, "unhurdled":3, "unhurried":3, "unhurriedly":4, "unhurriedness":4, "unhurrying":4, "unhushable":4, "unhushing":3, "unhusk":2, "unhusked":2, "unhuskable":4, "unhusbanded":4, "unhustled":3, "unhustling":3, "unhutched":2, "unhuzzaed":3, "unhubristic":4, "unhuman":3, "unhumane":3, "unhumanise":4, "unhumanised":4, "unhumanising":5, "unhumanistic":5, "unhumanize":4, "unhumanized":4, "unhumanizing":5, "unhumanitarian":7, "unhumid":3, "unhumidified":5, "unhumidifying":6, "unhumiliated":6, "unhumiliating":6, "unhumored":3, "unhumorous":4, "unhumoured":3, "unhumourous":4, "unhymned":2, "unhypnotic":4, "unhypnotically":6, "unhypnotise":4, "unhypnotised":4, "unhypnotisable":6, "unhypnotising":5, "unhypnotize":4, "unhypnotized":4, "unhypnotizable":6, "unhypnotizing":5, "unhypocritical":6, "unhysterical":5, "unhydrated":4, "unhydraulic":4, "unhydrolized":4, "unhygienic":5, "unhygienically":7, "unhygrometric":5, "unhymeneal":5, "unhyphened":3, "unhyphenated":5, "unhyphenable":5, "unhypothecated":6, "unhypothetical":6, "unice":2, "uniced":2, "unicing":3, "unideographic":6, "unideographical":7, "unidiomatic":6, "unidiomatically":8, "unignitable":5, "unignited":4, "unigniting":4, "unignored":3, "unignoring":4, "unignominious":6, "unignorant":4, "unilluded":4, "unillumed":3, "unillustrated":5, "unillustrative":5, "unillustrious":5, "unilluminant":5, "unilluminated":6, "unilluminating":6, "unilluminative":6, "unillusioned":4, "unillusive":4, "unillusory":5, "unimaged":3, "unimagined":4, "unimaginary":6, "unimaginable":6, "unimaginableness":7, "unimaginative":6, "unimbibed":3, "unimbibing":4, "unimbued":3, "unimitated":5, "unimitating":5, "unimitable":5, "unimitative":5, "unimmaculate":5, "unimmanent":4, "unimmerged":3, "unimmersed":3, "unimmediate":5, "unimmigrating":5, "unimminent":4, "unimmolated":5, "unimmured":3, "unimmunised":4, "unimmunized":4, "unimpacted":4, "unimpaired":3, "unimpairable":5, "unimparted":4, "unimpartible":5, "unimpartial":4, "unimpassioned":4, "unimpassionedly":5, "unimpassionate":5, "unimpawned":3, "unimpatient":4, "unimpeached":3, "unimpeachability":7, "unimpeachable":5, "unimpeachableness":6, "unimpeachably":5, "unimpearled":3, "unimpeded":4, "unimpeding":4, "unimpelled":3, "unimperative":5, "unimpertinent":5, "unimperial":5, "unimperialistic":7, "unimperious":5, "unimpinging":4, "unimplanted":4, "unimplicitly":5, "unimplied":3, "unimplicated":5, "unimplored":3, "unimplorable":5, "unimported":4, "unimporting":4, "unimportant":4, "unimportuned":4, "unimportunate":5, "unimposed":3, "unimposing":4, "unimpounded":4, "unimpoverished":5, "unimpregnated":5, "unimpressed":3, "unimpressibility":7, "unimpressible":5, "unimpressionable":6, "unimpressive":4, "unimprecated":5, "unimprinted":4, "unimprisoned":4, "unimprisonable":6, "unimproved":3, "unimpropriated":6, "unimprovised":4, "unimpugned":3, "unimpugnable":5, "unimpulsive":4, "unimputable":5, "unimputed":4, "uninked":2, "uninaugurated":6, "unincarcerated":6, "unincarnate":4, "unincarnated":5, "unincensed":3, "uninceptive":4, "unincestuous":5, "uninchoative":5, "unincinerated":6, "unincised":3, "unincited":4, "unincidental":5, "unincisive":4, "uninclined":3, "uninclinable":5, "uninclining":4, "uninclosed":3, "unincludable":5, "unincluded":4, "unincludible":5, "uninclusive":4, "uninconvenienced":5, "unincorporated":6, "unincreased":3, "unincreasable":5, "unincreasing":4, "unincriminated":6, "unincriminating":6, "unincumbered":4, "unincubated":5, "unindemnified":5, "unindentured":4, "unindexed":3, "unindictable":5, "unindicted":4, "unindicative":5, "unindigenous":5, "unindignant":4, "unindicated":5, "unindividualized":7, "unindividuated":7, "unindoctrinated":6, "unindorsed":3, "uninduced":3, "uninducted":4, "uninducible":5, "uninductive":4, "unindulged":3, "unindulging":4, "unindulgent":4, "unindustrial":5, "unindustrialized":6, "unindustrious":5, "unindurate":4, "unindurative":5, "uninert":3, "uninebriated":6, "uninebriating":6, "uninfatuated":6, "uninfectable":5, "uninfected":4, "uninfectious":4, "uninfective":4, "uninferred":3, "uninferable":5, "uninferential":5, "uninferrable":5, "uninferrible":5, "uninfested":4, "uninfiltrated":5, "uninfixed":3, "uninfinite":4, "uninflamed":3, "uninflammability":7, "uninflammable":5, "uninflated":4, "uninflected":4, "uninflective":4, "uninflicted":4, "uninfluenced":4, "uninfluencing":5, "uninfluential":5, "uninfolded":4, "uninformed":3, "uninformative":5, "uninforming":4, "uninfracted":4, "uninfringed":3, "uninfused":3, "uninfusing":4, "uninfuriated":6, "uninfusive":4, "uningested":4, "uningestive":4, "uningrafted":4, "uningrained":3, "uningratiating":6, "uninhabitability":8, "uninhabitable":6, "uninhabited":5, "uninhaled":3, "uninherent":4, "uninheritability":8, "uninheritable":6, "uninherited":5, "uninhibited":5, "uninhibitedly":6, "uninhibiting":5, "uninhumed":3, "uninimical":5, "uniniquitous":5, "uninitialed":4, "uninitialled":4, "uninitiate":5, "uninitiated":6, "uninitiative":6, "uninjectable":5, "uninjected":4, "uninjured":3, "uninjuring":4, "uninjurious":5, "uninlaid":3, "uninnate":3, "uninnocuous":5, "uninnocent":4, "uninnovating":5, "uninnovative":5, "uninoculated":6, "uninoculable":6, "uninoculative":6, "uninquired":3, "uninquiring":4, "uninquisitive":5, "uninquisitorial":7, "uninscribed":3, "uninserted":4, "uninsidious":5, "uninsinuated":6, "uninsinuating":6, "uninsinuative":6, "uninsistent":4, "uninsolated":5, "uninsolating":5, "uninspected":4, "uninspired":3, "uninspirable":5, "uninspiring":4, "uninspirited":5, "uninspissated":5, "uninstalled":3, "uninstanced":3, "uninstated":4, "uninstilled":3, "uninstinctive":4, "uninstigated":5, "uninstigative":5, "uninstituted":5, "uninstitutional":6, "uninstitutive":5, "uninstructed":4, "uninstructedly":5, "uninstructing":4, "uninstructible":5, "uninstructive":4, "uninstrumental":5, "uninsultable":5, "uninsulted":4, "uninsulting":4, "uninsured":3, "uninsurability":7, "uninsurable":5, "uninsular":4, "uninsulate":4, "uninsulated":5, "uninsulating":5, "unintellective":5, "unintellectual":6, "unintellectuality":8, "unintelligent":5, "unintelligibility":8, "unintelligibleness":7, "unintelligibly":6, "unintended":4, "unintent":3, "unintensive":4, "unintensified":5, "unintentional":5, "uninterred":3, "unintercalated":6, "unintercepted":5, "unintercepting":5, "uninterchangeable":6, "uninterdicted":5, "uninterested":5, "uninterestedly":6, "uninterestedness":6, "uninteresting":5, "uninterjected":5, "uninterlaced":4, "uninterleaved":4, "uninterlinked":4, "uninterlocked":4, "unintermediate":6, "unintermingled":5, "unintermissive":5, "unintermitted":5, "unintermittent":5, "unintermitting":5, "uninternalized":5, "uninternational":6, "uninterpleaded":5, "uninterposed":4, "uninterposing":5, "uninterpolated":6, "uninterpolative":6, "uninterpretable":6, "uninterpreted":5, "uninterpretative":6, "uninterpretive":5, "uninterrogative":6, "uninterrogatory":7, "uninterrogated":6, "uninterrogable":6, "uninterrupted":5, "uninterrupting":5, "uninterruptive":5, "unintersected":5, "unintersecting":5, "uninterspersed":4, "unintervening":5, "uninterviewed":4, "unintervolved":4, "uninterwoven":5, "unintegral":4, "unintegrated":5, "unintegrable":5, "unintegrative":5, "uninthralled":3, "unintimidated":6, "unintimidating":6, "unintimate":4, "unintimated":5, "unintoned":3, "unintoxicated":6, "unintoxicating":6, "unintrenched":3, "unintrenchable":5, "unintrigued":3, "unintricate":4, "unintriguing":4, "unintroduced":4, "unintroducible":6, "unintroductive":5, "unintroductory":6, "unintromitted":5, "unintromittive":5, "unintrospective":5, "unintroverted":5, "unintroversive":5, "unintruded":4, "unintruding":4, "unintrusted":4, "unintrusive":4, "unintrlined":4, "unintuitable":6, "unintuitional":6, "unintuitive":5, "uninundated":5, "uninured":3, "uninurned":3, "uninvadable":5, "uninvaded":4, "uninvaginated":6, "uninvasive":4, "uninvective":4, "uninveighing":4, "uninveigled":4, "uninvented":4, "uninventive":4, "uninverted":4, "uninvertible":5, "uninvestable":5, "uninvested":4, "uninvestigated":6, "uninvestigating":6, "uninvestigable":6, "uninvestigative":6, "uninvestigatory":7, "uninvidious":5, "uninvigorated":6, "uninvigorating":6, "uninvigorative":6, "uninvincible":5, "uninvincibleness":6, "uninvited":4, "uninviting":4, "uninvocative":5, "uninvoiced":3, "uninvoked":3, "uninvokable":5, "uninvolved":3, "uninvoluted":5, "uninwoven":4, "uninwrapped":3, "uninwreathed":3, "union":2, "union":2, "union card":3, "union catalogue":5, "union jack":3, "union shop":3, "union territory":6, "union-made":2, "uniondale":3, "unionise":3, "unionised":3, "unionism":3, "unionism":3, "unionist":3, "unionist":3, "unionist party":5, "unionising":4, "unionistic":4, "unionize":3, "uniontown":3, "uniridescent":5, "unirradiated":6, "unirradiative":6, "unirrigated":5, "unirrigable":5, "unirritant":4, "unirritated":5, "unirritating":5, "unirritable":5, "unirritative":5, "unirrupted":4, "unirruptive":4, "unissued":3, "unissuant":4, "unissuable":5, "uniterated":5, "uniterative":5, "uniambic":4, "uniconoclastic":6, "uniconoclastically":8, "unidentical":5, "unidentified":5, "unidentifiable":7, "unidentifying":6, "unideaed":4, "unideal":4, "unidealised":5, "unidealistic":6, "unidealistically":8, "unidealized":5, "unideated":5, "unideating":5, "unideational":6, "unidle":3, "unidling":3, "unidly":3, "unidolatrous":5, "unidolised":4, "unidolized":4, "unidyllic":4, "unified field theory":7, "unilingual":4, "uniliteral":5, "unirascibility":7, "unirascible":5, "unirenic":4, "unironed":3, "unironical":5, "uniserial":5, "unisotropous":5, "unisolate":4, "unisolated":5, "unisolating":5, "unisolationist":6, "unisolative":5, "unisomeric":5, "unisometrical":6, "unisomorphic":5, "unisotropic":5, "unitalicized":5, "unitemized":4, "unitinerant":5, "unjacketed":4, "unjaded":3, "unjagged":3, "unjailed":2, "unjam":2, "unjammed":2, "unjamming":3, "unjarred":2, "unjarring":3, "unjaundiced":3, "unjaunty":3, "unjapanned":3, "unjealous":3, "unjeered":2, "unjeering":3, "unjelled":2, "unjellied":3, "unjeopardised":4, "unjeopardized":4, "unjesting":3, "unjeweled":3, "unjewelled":3, "unjilted":3, "unjocund":3, "unjogged":2, "unjogging":3, "unjoin":2, "unjoinable":4, "unjointured":3, "unjoking":3, "unjolted":3, "unjolly":3, "unjostled":3, "unjournalistic":5, "unjournalized":4, "unjoyed":2, "unjoyful":3, "unjoyous":3, "unjocose":3, "unjovial":4, "unjudged":2, "unjudgeable":4, "unjudgelike":3, "unjudgable":4, "unjudging":3, "unjuggled":3, "unjuicily":4, "unjuicy":3, "unjumpable":4, "unjumbled":3, "unjust":2, "unjustly":3, "unjustness":3, "unjustified":4, "unjustifiable":6, "unjustifiableness":7, "unjubilant":4, "unjudicable":5, "unjudicative":5, "unjudicial":4, "unjudiciable":6, "unjuridic":4, "unjuridical":5, "unjuvenile":4, "unkeeled":2, "unkempt":2, "unkemptly":3, "unkemptness":3, "unkenned":2, "unkennel":3, "unkenneled":3, "unkennelled":3, "unkenneling":4, "unkennelling":4, "unkept":2, "unkeyed":2, "unkelos":3, "unkidnaped":3, "unkidnapped":3, "unkilled":2, "unkilling":3, "unkilned":2, "unkind":2, "unkindhearted":4, "unkindliness":4, "unkindly":3, "unkinged":2, "unkinglike":3, "unkingly":3, "unkink":2, "unkindled":3, "unkindling":3, "unkissed":2, "unkneaded":3, "unkneeling":3, "unknelled":2, "unknighted":3, "unknightliness":4, "unknightly":3, "unknit":2, "unknittable":4, "unknitted":3, "unknitting":3, "unknocked":2, "unknocking":3, "unknot":2, "unknotted":3, "unknotting":3, "unknotty":3, "unknowledgeable":5, "unknown":2, "unknown soldier":4, "unknownness":3, "unknowable":4, "unknowable":4, "unknowing":3, "unknowingly":4, "unknowingness":4, "unlace":2, "unlackeyed":3, "unlacerated":5, "unlacerating":5, "unlacquered":3, "unlade":2, "unlagging":3, "unlaid":2, "unlame":2, "unlamed":2, "unlamentable":5, "unlaminated":5, "unlampooned":3, "unlanced":2, "unlanded":3, "unlandmarked":3, "unlanguid":3, "unlanguishing":4, "unlanterned":3, "unlapped":2, "unlapsed":2, "unlapsing":3, "unlarded":3, "unlarge":2, "unlarcenous":4, "unlash":2, "unlasting":3, "unlassoed":3, "unlatch":2, "unlathered":3, "unlatticed":3, "unlaudable":4, "unlaudableness":5, "unlaudative":4, "unlaudatory":5, "unlauded":3, "unlaughing":3, "unlaunched":2, "unlaundered":3, "unlaureled":3, "unlaurelled":3, "unlaved":2, "unlaving":3, "unlavish":3, "unlavished":3, "unlawful":3, "unlawful assembly":6, "unlawfully":4, "unlawfulness":4, "unlawyerlike":4, "unlay":2, "unlayable":4, "unlaying":3, "unlabeled":3, "unlabelled":3, "unlabialise":5, "unlabialised":5, "unlabialising":6, "unlabialize":5, "unlabialized":5, "unlabializing":6, "unlabiate":4, "unlabored":3, "unlaboring":4, "unlaboured":3, "unlabouring":4, "unlaborious":5, "unlaconic":4, "unladen":3, "unladled":3, "unlamented":4, "unleached":2, "unlead":2, "unleaded":3, "unleaf":2, "unleaflike":3, "unleakable":4, "unleaky":3, "unlean":2, "unlearn":2, "unlearned":2, "unlearnt":2, "unlearned":3, "unlearnedly":4, "unlearning":3, "unleased":2, "unleash":2, "unleasable":4, "unleathered":3, "unleaved":2, "unleavened":3, "unleavenable":5, "unlecherous":4, "unlectured":3, "unled":2, "unledged":2, "unleft":2, "unlegislated":5, "unlegislative":5, "unlegible":4, "unleisured":3, "unleisurely":4, "unlengthened":3, "unlensed":2, "unlent":2, "unless":2, "unlessened":3, "unlet":2, "unlettered":3, "unlevel":3, "unleveled":3, "unlevelled":3, "unlevied":3, "unleviable":5, "unlevigated":5, "unlexicographical":7, "unlegal":3, "unlegalised":4, "unlegalized":4, "unlenient":4, "unlethal":3, "unlethargic":4, "unlethargical":5, "unliberal":4, "unliberalised":5, "unliberalized":5, "unliberated":5, "unlidded":3, "unlifelike":3, "unliftable":4, "unlifted":3, "unlifting":3, "unlight":2, "unlighted":3, "unlightened":3, "unligatured":4, "unlignified":4, "unlike":2, "unliked":2, "unlikeable":4, "unlikeableness":5, "unlikelihood":4, "unlikely":3, "unlikeness":3, "unlikable":4, "unlikableness":5, "unlikened":3, "unlimed":2, "unlimned":2, "unlimp":2, "unlimber":3, "unlimited":4, "unlimitedly":5, "unlimitedness":5, "unlined":2, "unlink":2, "unlineal":4, "unlingering":4, "unliquefied":4, "unliquefiable":6, "unliquid":3, "unliquidated":5, "unliquidating":5, "unlisping":3, "unlisted":3, "unlistening":4, "unlit":2, "unlithographic":5, "unliteral":4, "unliteralised":5, "unliteralized":5, "unliterary":5, "unliterate":4, "unlitigated":5, "unlitigating":5, "unlittered":3, "unlive":2, "unlived":2, "unliveable":4, "unliveableness":5, "unliveliness":4, "unlively":3, "unlivable":4, "unlivableness":5, "unliveried":4, "unliving":3, "unliable":4, "unlibeled":3, "unlibelled":3, "unlibellous":4, "unlibelous":4, "unlibidinous":5, "unlicensed":3, "unlicentious":4, "unlicentiated":6, "unlichened":3, "unlionised":4, "unlionized":4, "unliquescent":4, "unlitigious":4, "unload":2, "unloader":3, "unloafing":3, "unloaned":2, "unloaning":3, "unloath":2, "unloathed":2, "unloathful":3, "unloathsome":3, "unlobed":2, "unlobbied":3, "unlobbying":4, "unlock":2, "unlockable":4, "unlocative":4, "unlodged":2, "unlofty":3, "unlogged":2, "unlogical":4, "unlonely":3, "unlonged-for":2, "unlooked":2, "unlooked-for":2, "unloop":2, "unloose":2, "unloosed":2, "unloosen":3, "unloosing":3, "unlooted":3, "unlopped":2, "unlost":2, "unlosable":4, "unlotted":3, "unloudly":3, "unlounging":3, "unloved":2, "unloveable":4, "unloveableness":5, "unloveliness":4, "unlovely":3, "unlovable":4, "unlovableness":5, "unloving":3, "unlowered":3, "unlowly":3, "unloyal":3, "unloyalty":4, "unlocal":3, "unlocalise":4, "unlocalised":4, "unlocalisable":6, "unlocalising":5, "unlocalize":4, "unlocalized":4, "unlocalizable":6, "unlocalizing":5, "unlocated":4, "unlocomotive":5, "unlogistic":4, "unlogistical":5, "unloquacious":4, "unluckier":4, "unluckiest":4, "unluckily":4, "unluckiness":4, "unlucky":3, "unluffed":2, "unlugged":2, "unlumped":2, "unlumpy":3, "unlumbering":4, "unlured":2, "unlurking":3, "unlush":2, "unlustful":3, "unlusting":3, "unlusty":3, "unlustered":3, "unlustred":3, "unlustrous":3, "unluxated":4, "unluxuriant":5, "unluxuriating":6, "unluxurious":5, "unlubricant":4, "unlubricated":5, "unlubricating":5, "unlubricative":5, "unlubricious":4, "unlucent":3, "unlucid":3, "unlucrative":4, "unludicrous":4, "unlugubrious":5, "unluminescent":5, "unluminiferous":6, "unluminous":4, "unlunar":3, "unlunate":3, "unlunated":4, "unlyric":3, "unlyrical":4, "unlying":3, "unmachinated":5, "unmachinating":5, "unmacadamized":5, "unmacerated":5, "unmad":2, "unmade":2, "unmadded":3, "unmaddened":3, "unmagisterial":6, "unmagical":4, "unmagnanimous":5, "unmagnetic":4, "unmagnetised":4, "unmagnetized":4, "unmagnetical":5, "unmagnified":4, "unmagnifying":5, "unmaidenlike":4, "unmaidenliness":5, "unmaidenly":4, "unmailed":2, "unmailable":4, "unmaimed":2, "unmaimable":4, "unmaintained":3, "unmaintainable":5, "unmake":2, "unmakable":4, "unmaker":3, "unmaking":3, "unmaltable":4, "unmalted":3, "unmaledictive":5, "unmaledictory":6, "unmalleability":7, "unmalleable":5, "unmammalian":5, "unman":2, "unmaned":2, "unmanned":2, "unmanaged":3, "unmanageable":5, "unmanageableness":6, "unmanacled":4, "unmandated":4, "unmandatory":5, "unmanful":3, "unmangled":3, "unmanicured":4, "unmanifest":4, "unmanifested":5, "unmanifestative":6, "unmanliness":4, "unmanly":3, "unmannered":3, "unmannerliness":5, "unmannerly":4, "unmannish":3, "unmantled":3, "unmanual":4, "unmanufactured":5, "unmanufacturable":7, "unmanumitted":5, "unmappable":4, "unmarching":3, "unmarked":2, "unmarkable":4, "unmarled":2, "unmarred":2, "unmarbelize":4, "unmarbelized":4, "unmarbelizing":5, "unmarbled":3, "unmarbleize":4, "unmarbleized":4, "unmarbleizing":5, "unmarginal":4, "unmarginated":5, "unmaritime":4, "unmarketable":5, "unmarketed":4, "unmarriageable":5, "unmarried":3, "unmarring":3, "unmarrying":4, "unmarshaled":3, "unmarshalled":3, "unmartial":3, "unmartyred":3, "unmarvellous":4, "unmarvelous":4, "unmashed":2, "unmask":2, "unmasked":2, "unmasking":3, "unmassed":2, "unmast":2, "unmasculine":4, "unmassacred":4, "unmastered":3, "unmasterable":5, "unmasterful":4, "unmasticated":5, "unmasticatory":6, "unmatched":2, "unmatchable":4, "unmatching":3, "unmate":2, "unmathematical":6, "unmated":3, "unmating":3, "unmatrimonial":6, "unmatted":3, "unmaudlin":3, "unmauled":2, "unmachined":3, "unmachineable":5, "unmachinable":5, "unmajestic":4, "unmajestically":6, "unmalarial":5, "unmalevolent":5, "unmaligned":3, "unmalignant":4, "unmalicious":4, "unmaneuvered":4, "unmanipulatable":7, "unmanipulated":6, "unmanipulable":6, "unmanipulative":6, "unmanipulatory":7, "unmaniacal":5, "unmanoeuvred":4, "unmanurable":5, "unmarine":3, "unmaternal":4, "unmaterial":5, "unmaterialised":6, "unmaterialistic":7, "unmaterialistically":9, "unmaterialized":6, "unmatriculated":6, "unmature":3, "unmatured":3, "unmaturative":5, "unmaturing":4, "unmeant":2, "unmeaning":3, "unmeaningful":4, "unmeaningfully":5, "unmeaningfulness":5, "unmeaningly":4, "unmeaningness":4, "unmeasured":3, "unmeasuredly":4, "unmeasuredness":4, "unmeasurable":5, "unmeasurableness":6, "unmeasurably":5, "unmechanised":4, "unmechanistic":5, "unmechanized":4, "unmedaled":3, "unmedalled":3, "unmeddled":3, "unmeddlesome":4, "unmeddling":3, "unmedical":4, "unmedicated":5, "unmedicable":5, "unmedicative":5, "unmeditated":5, "unmeditating":5, "unmeditative":5, "unmeet":2, "unmeltable":4, "unmelted":3, "unmelting":3, "unmelancholic":5, "unmelancholically":7, "unmelancholy":5, "unmeliorated":5, "unmellifluent":5, "unmellifluous":5, "unmellow":3, "unmellowed":3, "unmelodised":4, "unmelodized":4, "unmelodramatic":6, "unmelodramatically":8, "unmemorable":5, "unmemoried":4, "unmendable":4, "unmended":3, "unmenaced":3, "unmenacing":4, "unmendacious":4, "unmenstruating":5, "unmensurable":5, "unmental":3, "unmentholated":5, "unmentioned":3, "unmentionable":5, "unmentionables":5, "unmentionableness":6, "unmerge":2, "unmerged":2, "unmerging":3, "unmercantile":4, "unmercerized":4, "unmercenarily":6, "unmercenariness":6, "unmercenary":5, "unmerchantable":5, "unmerchantly":4, "unmerchandised":4, "unmerciful":4, "unmercifully":5, "unmercifulness":5, "unmercurial":5, "unmeretricious":5, "unmerited":4, "unmeriting":4, "unmeritability":7, "unmeritable":5, "unmeritorious":6, "unmerrily":4, "unmerry":3, "unmesh":2, "unmesmeric":4, "unmesmerised":4, "unmesmerized":4, "unmesmerically":6, "unmet":2, "unmethodised":4, "unmethodising":5, "unmethodized":4, "unmethodizing":5, "unmethylated":5, "unmetaled":3, "unmetalled":3, "unmetalised":4, "unmetalized":4, "unmetallurgic":5, "unmetallurgical":6, "unmetamorphic":5, "unmetamorphosed":5, "unmetaphysic":5, "unmetaphysical":6, "unmeted":3, "unmetric":3, "unmetrical":4, "unmetrified":4, "unmetropolitan":6, "unmew":2, "unmeandering":5, "unmechanical":5, "unmedicinal":5, "unmediaeval":5, "unmediated":5, "unmediating":5, "unmediative":5, "unmedieval":5, "unmelodic":4, "unmelodically":6, "unmelodious":5, "unmemorialised":6, "unmemorialized":6, "unmenial":4, "unmeridional":6, "unmeringued":3, "unmetallic":4, "unmetallically":6, "unmetered":3, "unmeteorologic":7, "unmeteorological":8, "unmethodic":4, "unmethodical":5, "unmeticulous":5, "unmetred":3, "unmilked":2, "unmilled":2, "unmilted":3, "unmildewed":3, "unmilitant":4, "unmilitaristically":8, "unmilitarily":6, "unmilitary":5, "unmilitarised":5, "unmilitaristic":6, "unmilitarized":5, "unmimeographed":5, "unmimicked":3, "unminced":2, "unmincing":3, "unmindful":3, "unminding":3, "unmined":2, "unminted":3, "unmineralised":5, "unmineralized":5, "unmingled":3, "unministered":4, "unministerial":6, "unministrant":4, "unministrative":5, "unminimised":4, "unminimising":5, "unminimized":4, "unminimizing":5, "unminuted":4, "unmired":2, "unmirthful":3, "unmiracled":4, "unmirrored":3, "unmiry":3, "unmissed":2, "unmissable":4, "unmisanthropic":5, "unmisanthropical":6, "unmischievous":4, "unmiscible":4, "unmisgiving":4, "unmisguided":4, "unmisinterpretable":7, "unmisled":3, "unmistakeable":5, "unmistakable":5, "unmistakably":5, "unmistaken":4, "unmistaking":4, "unmistrusted":4, "unmistrustful":4, "unmistrusting":4, "unmisunderstandable":7, "unmisunderstood":5, "unmitigated":5, "unmitigatedly":6, "unmitigable":5, "unmitigative":5, "unmittened":3, "unmix":2, "unmixed":2, "unmixt":2, "unmixable":4, "unmixedly":4, "unmixedness":4, "unmiasmal":4, "unmiasmatic":5, "unmiasmatical":6, "unmiasmic":4, "unmicaceous":4, "unmicrobic":4, "unmicrobial":5, "unmicroscopic":5, "unmicroscopically":7, "unmigrant":3, "unmigrating":4, "unmigrative":4, "unmigratory":5, "unmimetic":4, "unmimetically":6, "unmiraculous":5, "unmiserly":4, "unmiter":3, "unmitre":3, "unmoaned":2, "unmoaning":3, "unmoated":3, "unmobbed":2, "unmocked":2, "unmocking":3, "unmodeled":3, "unmodelled":3, "unmodern":3, "unmodernised":4, "unmodernized":4, "unmoderated":5, "unmoderating":5, "unmodest":3, "unmodish":3, "unmodified":4, "unmodifiable":6, "unmodificative":6, "unmodulated":5, "unmodulative":5, "unmoiled":2, "unmoisten":3, "unmold":2, "unmoldable":4, "unmoldered":3, "unmoldering":4, "unmoldy":3, "unmollified":4, "unmollifiable":6, "unmollifying":5, "unmolten":3, "unmonetary":5, "unmonitored":4, "unmonogrammed":4, "unmonumented":5, "unmonumental":5, "unmoody":3, "unmoor":2, "unmooted":3, "unmopped":2, "unmortgage":3, "unmortgaged":3, "unmortgageable":5, "unmortgaging":4, "unmoral":3, "unmoralising":5, "unmoralistic":5, "unmoralizing":5, "unmorally":4, "unmorbid":3, "unmordant":3, "unmoribund":4, "unmorphological":6, "unmortal":3, "unmortared":3, "unmortise":3, "unmortised":3, "unmortising":4, "unmortified":4, "unmossed":2, "unmossy":3, "unmoth-eaten":3, "unmothered":3, "unmotherly":4, "unmottled":3, "unmould":2, "unmouldable":4, "unmouldered":3, "unmouldering":4, "unmouldy":3, "unmounded":3, "unmountable":4, "unmounted":3, "unmounting":3, "unmountainous":4, "unmourned":2, "unmournful":3, "unmourning":3, "unmouthed":2, "unmouthable":4, "unmoved":2, "unmoveable":4, "unmovable":4, "unmoving":3, "unmowed":2, "unmown":2, "unmobile":3, "unmobilised":4, "unmobilized":4, "unmodernity":5, "unmolested":4, "unmolesting":4, "unmomentous":4, "unmonarchic":4, "unmonarchical":5, "unmonastic":4, "unmonastically":6, "unmonistic":4, "unmonopolised":5, "unmonopolising":6, "unmonopolized":5, "unmonopolizing":6, "unmonotonous":5, "unmorality":5, "unmorose":3, "unmotile":3, "unmotioned":3, "unmotionable":5, "unmotioning":4, "unmotivated":5, "unmotivating":5, "unmotored":3, "unmotorised":4, "unmotorized":4, "unmudded":3, "unmuddied":3, "unmuddled":3, "unmuddy":3, "unmuffle":3, "unmulcted":3, "unmulled":2, "unmulish":3, "unmullioned":3, "unmultiplied":4, "unmultipliable":6, "unmultiplicable":6, "unmultiplicative":6, "unmultiplying":5, "unmumbled":3, "unmumbling":3, "unmummied":3, "unmummified":4, "unmummifying":5, "unmunched":2, "unmundane":3, "unmundified":4, "unmurmured":3, "unmurmuring":4, "unmurmurous":4, "unmusked":2, "unmuscled":3, "unmuscular":4, "unmusing":3, "unmustered":3, "unmusterable":5, "unmutable":4, "unmuted":3, "unmuttered":3, "unmuttering":4, "unmuzzle":3, "unmucilaged":4, "unmunicipalised":6, "unmunicipalized":6, "unmunificent":5, "unmunitioned":4, "unmusical":4, "unmusicality":6, "unmusically":5, "unmusicalness":5, "unmusicianly":5, "unmutant":3, "unmutated":4, "unmutational":5, "unmutative":4, "unmutilated":5, "unmutilative":5, "unmutinous":4, "unmutual":4, "unmutualised":5, "unmutualized":5, "unmysterious":5, "unmystic":3, "unmystical":4, "unmysticise":4, "unmysticised":4, "unmysticising":5, "unmysticize":4, "unmysticized":4, "unmysticizing":5, "unmystified":4, "unmythical":4, "unmythological":6, "unmyopic":4, "unnagged":2, "unnagging":3, "unnamed":2, "unnameable":4, "unnamable":4, "unnapped":2, "unnarcissistic":5, "unnarcotic":4, "unnarratable":5, "unnarrated":4, "unnarrative":4, "unnarrow":3, "unnarrow-minded":4, "unnarrowed":3, "unnascent":3, "unnatural":4, "unnaturalise":5, "unnaturalised":5, "unnaturalising":6, "unnaturalistic":6, "unnaturalize":5, "unnaturalized":5, "unnaturalizing":6, "unnaturally":5, "unnaturalness":5, "unnauseated":5, "unnauseating":5, "unnautical":4, "unnavigated":5, "unnavigability":7, "unnavigable":5, "unnavigableness":6, "unnacreous":4, "unnaked":3, "unnasal":3, "unnational":4, "unnationalised":5, "unnationalistic":6, "unnationalistically":8, "unnationalized":5, "unnative":3, "unnave":4, "unneat":2, "unnecessaries":5, "unnecessarily":6, "unnecessariness":6, "unnecessary":5, "unnectareous":5, "unnectarial":5, "unneeded":3, "unneedful":3, "unneedy":3, "unneglected":4, "unnegligent":4, "unneighborliness":5, "unneighborly":4, "unneighbourliness":5, "unneighbourly":4, "unnerve":2, "unnervous":3, "unnestled":3, "unnetted":3, "unnettled":3, "unneural":3, "unneuralgic":4, "unneurotic":4, "unneurotically":6, "unneutral":3, "unneutralise":4, "unneutralised":4, "unneutralising":5, "unneutralize":4, "unneutralized":4, "unneutralizing":5, "unneutrality":5, "unnew":2, "unnecessitated":6, "unnecessitating":6, "unnecessitous":5, "unnefarious":5, "unnegated":4, "unneglectful":4, "unnegotiated":6, "unnegotiable":6, "unnephritic":4, "unnibbed":2, "unnibbled":3, "unnice":2, "unniched":2, "unnicked":2, "unnicknamed":3, "unnigh":2, "unniggard":3, "unnimble":3, "unnimbleness":4, "unnipped":2, "unnihilistic":5, "unnitrogenous":5, "unnitrogenised":5, "unnitrogenized":5, "unnocturnal":4, "unnodding":3, "unnoised":2, "unnoisily":4, "unnoisy":3, "unnominal":4, "unnominalistic":6, "unnominated":5, "unnominative":5, "unnoosed":2, "unnorthern":3, "unnormal":3, "unnormalised":4, "unnormalising":5, "unnormalized":4, "unnormalizing":5, "unnormative":4, "unnosed":2, "unnotched":2, "unnoteworthy":4, "unnotable":4, "unnoted":3, "unnoting":3, "unnourished":3, "unnourishable":5, "unnourishing":4, "unnovel":3, "unnomadic":4, "unnomadically":6, "unnotational":5, "unnoticed":3, "unnoticeable":5, "unnoticeableness":6, "unnoticing":4, "unnotioned":3, "unnotional":4, "unnotified":4, "unnovercal":4, "unnullified":4, "unnumbed":2, "unnumbered":3, "unnurtured":3, "unnuzzled":3, "unnucleated":5, "unnumerated":5, "unnumerical":5, "unnumerous":4, "unnutritious":4, "unnutritive":4, "unnymphal":3, "unnymphlike":3, "unnymphean":4, "unoared":2, "unobdurate":4, "unobfuscated":5, "unobjected":4, "unobjectional":5, "unobjectionable":6, "unobjective":4, "unobjectified":5, "unobjectivized":5, "unobliged":3, "unobligatory":6, "unobliging":4, "unobliterated":6, "unoblivious":5, "unobligated":5, "unobligative":5, "unobnoxious":5, "unobscene":3, "unobscure":3, "unobscured":3, "unobserved":3, "unobservant":4, "unobservable":5, "unobserving":4, "unobsessed":3, "unobsequious":5, "unobsolete":4, "unobstinate":4, "unobstructed":4, "unobstructive":4, "unobstruent":4, "unobtained":3, "unobtainable":5, "unobtruded":4, "unobtruding":4, "unobtrusive":4, "unobverted":4, "unobviated":5, "unobviable":5, "unobvious":4, "unoccasional":5, "unoccidental":5, "unoccluded":4, "unoccurring":4, "unoccupancy":5, "unoccupied":4, "unocular":4, "unoecumenic":5, "unoecumenical":6, "unoffendable":5, "unoffended":4, "unoffending":4, "unoffensive":4, "unoffered":3, "unofficed":3, "unofficered":4, "unofficial":4, "unofficious":4, "unofficiated":6, "unofficiating":6, "unoiled":2, "unoiling":3, "unoily":3, "unominous":4, "unomnipotent":5, "unomniscient":4, "unontological":6, "unopted":3, "unoperatable":6, "unoperated":5, "unoperatic":5, "unoperating":5, "unoperatically":7, "unoperative":5, "unopportune":4, "unopportunistic":6, "unopposed":3, "unopposable":5, "unopposing":4, "unoppositional":6, "unoppressed":3, "unoppressive":4, "unopprobrious":5, "unoppugned":3, "unopressible":5, "unoptional":4, "unoptimistic":5, "unoptimistical":6, "unopulence":4, "unopulent":4, "unorbed":2, "unoratorial":6, "unoratorical":6, "unorbital":4, "unorchestrated":5, "unordained":3, "unordainable":5, "unordered":3, "unorderable":5, "unorderly":4, "unordinal":4, "unordinary":5, "unorganized":3, "unorganic":4, "unorganised":4, "unorganisable":6, "unorganized":4, "unorganizable":6, "unorganically":6, "unornate":3, "unornamented":5, "unornamental":5, "unornithological":7, "unorphaned":3, "unorthodox":4, "unorthodoxy":5, "unorthographical":6, "unoscillating":5, "unosculated":5, "unosmotic":4, "unossified":4, "unossifying":5, "unostensive":4, "unostensible":5, "unostentatious":5, "unousted":3, "unoutlawed":3, "unoutraged":3, "unoutspoken":4, "unoutworn":3, "unowned":2, "unowing":3, "unoxidated":5, "unoxidative":5, "unoxidised":4, "unoxidisable":6, "unoxidized":4, "unoxidizable":6, "unoxygenated":6, "unoxygenized":5, "unobese":3, "unobeyed":3, "unobeying":4, "unoceanic":5, "unodious":4, "unodored":3, "unodoriferous":6, "unodorous":4, "unogled":3, "unomened":3, "unomitted":4, "unonerous":4, "unopened":3, "unopening":4, "unopined":3, "unopinioned":4, "unopinionated":6, "unopiated":5, "unopiatic":5, "unoral":3, "unorational":5, "unoriginal":5, "unoriental":5, "unovert":3, "unovercome":4, "unoverdrawn":4, "unoverflowing":5, "unoverhauled":4, "unoverlooked":4, "unoverpaid":4, "unoverpowered":5, "unoverruled":4, "unovertaken":5, "unoverthrown":4, "unoverwhelmed":4, "unpaced":2, "unpack":2, "unpackaged":3, "unpacker":3, "unpacified":4, "unpacifist":4, "unpacifistic":5, "unpacifiable":6, "unpadded":3, "unpadlocked":3, "unpaged":2, "unpaginal":4, "unpaginated":5, "unpaid":2, "unpaid-for":2, "unpained":2, "unpainted":3, "unpainful":3, "unpaining":3, "unpaired":2, "unpale":2, "unpaled":2, "unpalled":2, "unpalatable":5, "unpalatal":4, "unpalisaded":5, "unpalisadoed":5, "unpalliated":5, "unpalliative":5, "unpalpable":4, "unpalpitating":5, "unpalsied":3, "unpaltry":3, "unpampered":3, "unpanting":3, "unpaneled":3, "unpanelled":3, "unpanegyrised":5, "unpanegyrized":5, "unpanicky":4, "unpanniered":3, "unpanoplied":4, "unpantheistic":5, "unpantheistical":6, "unparched":2, "unparching":3, "unpared":2, "unparked":2, "unparking":3, "unparsed":2, "unparted":3, "unpartible":4, "unparallel":4, "unparalleled":4, "unparallelled":4, "unparadoxal":5, "unparadoxical":6, "unparagraphed":4, "unparalysed":4, "unparalyzed":4, "unparaphrased":4, "unparasitic":5, "unparasitical":6, "unparceled":3, "unparcelled":3, "unparceling":4, "unparcelling":4, "unpardoned":3, "unpardonable":5, "unpardoning":4, "unparenthetic":5, "unparenthetical":6, "unpargeted":4, "unparliamented":5, "unparliamentary":6, "unparodied":4, "unparried":3, "unparrying":4, "unparsimonious":6, "unpartaking":4, "unpartaken":4, "unparticipant":5, "unparticipated":6, "unparticipating":6, "unparticipative":6, "unparticular":5, "unparticularised":6, "unparticularising":7, "unparticularized":6, "unparticularizing":7, "unpartisan":4, "unpartitioned":4, "unpartitive":4, "unpartizan":4, "unpassed":2, "unpassing":3, "unpaste":2, "unpasted":3, "unpasting":3, "unpassioned":3, "unpassionate":4, "unpassive":3, "unpasteurised":4, "unpasteurized":4, "unpastoral":4, "unpastured":3, "unpatched":2, "unpathological":6, "unpatent":3, "unpatentable":5, "unpatented":4, "unpatinated":5, "unpatted":3, "unpatterned":3, "unpatternized":4, "unpausing":3, "unpaved":2, "unpaving":3, "unpawed":2, "unpawned":2, "unpayable":4, "unpaying":3, "unpacific":4, "unpagan":3, "unpaganize":4, "unpaganized":4, "unpaganizing":5, "unpalatial":4, "unpapal":3, "unpapered":3, "unparaded":4, "unparental":4, "unparenthesised":5, "unparenthesized":5, "unparoled":3, "unparolable":5, "unparochial":5, "unpaternal":4, "unpathetic":4, "unpathetically":6, "unpatient":3, "unpatristic":4, "unpatristical":5, "unpatriarchal":5, "unpatrician":4, "unpatriotic":5, "unpatriotically":7, "unpatrolled":3, "unpatronisable":6, "unpatronizable":6, "unpatronizing":5, "unpavilioned":4, "unpeaceable":4, "unpeaceful":3, "unpeaked":2, "unpealed":2, "unpearled":2, "unpebbled":3, "unpecked":2, "unpeculating":5, "unpedagogic":5, "unpedagogically":7, "unpeddled":3, "unpedestal":4, "unpedestaled":4, "unpedestalled":4, "unpedestaling":5, "unpedestalling":5, "unpedigreed":4, "unpeeled":2, "unpeelable":4, "unpeeling":3, "unpeevish":3, "unpeg":2, "unpelted":3, "unpen":2, "unpendant":3, "unpendent":3, "unpending":3, "unpenned":2, "unpent":2, "unpenanced":3, "unpenciled":3, "unpencilled":3, "unpendulous":4, "unpenetrant":4, "unpenetrated":5, "unpenetrating":5, "unpenetrable":5, "unpenetrative":5, "unpenitent":4, "unpenitential":5, "unpennied":3, "unpenning":3, "unpennoned":3, "unpensioned":3, "unpensionable":5, "unpensioning":4, "unpeople":3, "unpeopled":3, "unpeppered":3, "unpeppery":4, "unperched":2, "unperceived":3, "unperceivable":5, "unperceiving":4, "unperceptional":5, "unperceptive":4, "unperceptible":5, "unperceptibleness":6, "unperceptual":5, "unpercipient":5, "unpercolated":5, "unpercussed":3, "unpercussive":4, "unperdurable":5, "unperemptorily":6, "unperemptoriness":6, "unperemptory":5, "unperfect":3, "unperfected":4, "unperfectible":5, "unperfective":4, "unperfidious":5, "unperformed":3, "unperformable":5, "unperforming":4, "unperforated":5, "unperforating":5, "unperforable":5, "unperforative":5, "unperfumed":3, "unperilous":4, "unperished":3, "unperishable":5, "unperishing":4, "unperiodic":5, "unperiodical":6, "unperiphrastic":5, "unperiphrastically":7, "unperjured":3, "unperjuring":4, "unpermanent":4, "unpermeant":4, "unpermeated":5, "unpermeating":5, "unpermeable":5, "unpermeative":5, "unpermissive":4, "unpermissible":5, "unpermitted":4, "unpermitting":4, "unpernicious":4, "unperpendicular":6, "unperpetuated":6, "unperpetuating":6, "unperpetuable":6, "unperpetrated":5, "unperplexed":3, "unperplexing":4, "unpersecuted":5, "unpersecuting":5, "unpersecutive":5, "unpersisting":4, "unperson":3, "unpersonal":4, "unpersonalised":5, "unpersonalising":6, "unpersonalized":5, "unpersonalizing":6, "unpersonable":5, "unpersonified":5, "unpersonifying":6, "unperspicuous":5, "unperspired":3, "unperspiring":4, "unpersuadable":5, "unpersuaded":4, "unpersuasive":4, "unpersuasible":5, "unpertaining":4, "unpertinent":4, "unperturbed":3, "unperturbable":5, "unperturbing":4, "unpervaded":4, "unpervading":4, "unpervasive":4, "unperverse":3, "unperverted":4, "unperversive":4, "unpervious":4, "unpessimistic":5, "unpessimistically":7, "unpestered":3, "unpesterous":4, "unpestilent":4, "unpestilential":5, "unpetaled":3, "unpetalled":3, "unpetrified":4, "unpetrifying":5, "unpetted":3, "unpetticoated":5, "unpetulant":4, "unpeculiar":4, "unpedantic":4, "unpedantical":5, "unpejorative":5, "unpenal":3, "unpenalised":4, "unpenalized":4, "unpenurious":5, "unperipheral":5, "unperuked":3, "unperused":3, "unperusable":5, "unpetitioned":4, "unphased":2, "unphenomenal":5, "unphilanthropic":5, "unphilanthropically":7, "unphilologic":5, "unphilological":6, "unphilosophic":5, "unphilosophical":6, "unphlegmatic":4, "unphlegmatical":5, "unphonnetical":5, "unphosphatised":4, "unphosphatized":4, "unphonetic":4, "unphotographed":4, "unphotographable":6, "unphrased":2, "unphysical":4, "unphysiological":7, "unpick":2, "unpicked":2, "unpickable":4, "unpicketed":4, "unpickled":3, "unpicaresque":4, "unpictorial":5, "unpictorialise":6, "unpictorialised":6, "unpictorialising":7, "unpictorialize":6, "unpictorialized":6, "unpictorializing":7, "unpictured":3, "unpicturesque":4, "unpieced":2, "unpierced":2, "unpierceable":4, "unpiercing":3, "unpigmented":4, "unpile":2, "unpiled":2, "unpilfered":3, "unpiling":3, "unpillaged":3, "unpillared":3, "unpillowed":3, "unpilloried":4, "unpimpled":3, "unpin":2, "unpinched":2, "unpinned":2, "unpinioned":3, "unpinning":3, "unpiped":2, "unpiqued":2, "unpitched":2, "unpiteous":4, "unpitied":3, "unpitiable":5, "unpitiful":4, "unpitted":3, "unpitying":4, "unpiety":4, "unpiloted":4, "unpious":3, "unpioneering":5, "unpirated":4, "unpiratical":5, "unplaced":2, "unplacid":3, "unplagued":2, "unplait":2, "unplan":2, "unplaned":2, "unplanked":2, "unplantable":4, "unplanted":3, "unplanished":3, "unplashed":2, "unplaster":3, "unplastic":3, "unplated":3, "unplatitudinous":6, "unplatted":3, "unplausible":4, "unplausibleness":5, "unplayed":2, "unplayable":4, "unplayful":3, "unplaying":3, "unplacated":4, "unplacatory":5, "unplagiarised":5, "unplagiarized":5, "unpleached":2, "unpleadable":4, "unpleaded":3, "unpleading":3, "unpleased":2, "unpleasant":3, "unpleasantness":4, "unpleasable":4, "unpleasing":3, "unpleasurable":5, "unpleated":3, "unpledged":2, "unplenished":3, "unplenteous":4, "unplentiful":4, "unplebeian":4, "unplied":2, "unplighted":3, "unpliant":3, "unpliancy":4, "unpliable":4, "unpliableness":5, "unplodding":3, "unplotted":3, "unplotting":3, "unploughed":2, "unplowed":2, "unplucked":2, "unplug":2, "unplugged":2, "unplugging":3, "unplumb":2, "unplumbed":2, "unplumed":2, "unplummeted":4, "unplunged":2, "unplundered":3, "unplunderous":4, "unpluralised":4, "unpluralistic":5, "unpluralized":4, "unplutocratic":5, "unplutocratical":6, "unpneumatic":4, "unpneumatically":6, "unpoached":2, "unpocket":3, "unpodded":3, "unpoignant":3, "unpointed":3, "unpointing":3, "unpoised":2, "unpoisoned":3, "unpoisonable":5, "unpoisonous":4, "unpoled":2, "unpolled":2, "unpolished":3, "unpolishable":5, "unpolitic":4, "unpollarded":4, "unpollened":3, "unpolluted":4, "unpolluting":4, "unpolymerised":5, "unpolymerized":5, "unpompous":3, "unpondered":3, "unponderable":5, "unponderous":4, "unpontifical":5, "unpooled":2, "unpopular":4, "unpopularised":5, "unpopularized":5, "unpopularity":6, "unpopularly":5, "unpopulated":5, "unpopulous":4, "unportable":4, "unportly":3, "unporcelainized":5, "unpornographic":5, "unportended":4, "unportentous":4, "unportioned":3, "unportionable":5, "unporticoed":4, "unportrayed":3, "unportrayable":5, "unposed":2, "unposted":3, "unpostmarked":3, "unpostponed":3, "unpostponable":5, "unposing":3, "unpositive":4, "unpositivistic":6, "unpossessed":3, "unpossessable":5, "unpossessing":4, "unpossessive":4, "unpostered":3, "unpostulated":5, "unpot":2, "unpotted":3, "unpotting":3, "unpouched":2, "unpoulticed":3, "unpounced":2, "unpounded":3, "unpoured":2, "unpourable":4, "unpouting":3, "unpowdered":3, "unpoetic":4, "unpoetized":4, "unpoetical":5, "unpoeticised":5, "unpoeticized":5, "unpolarised":4, "unpolarized":4, "unpolemic":4, "unpolemical":5, "unpoliced":3, "unpolite":3, "unpolitely":4, "unpoliteness":4, "unpolitical":5, "unporous":3, "unpotable":4, "unpotent":3, "unpracticed":3, "unpractised":3, "unpractical":4, "unpracticality":6, "unpractically":5, "unpracticalness":5, "unpracticability":7, "unpracticable":5, "unpracticableness":6, "unpracticably":5, "unpragmatic":4, "unpragmatical":5, "unpraised":2, "unpraiseful":3, "unpraiseworthy":4, "unpraisable":4, "unpraising":3, "unpranked":2, "unprating":3, "unprayerful":3, "unpraying":3, "unpreached":2, "unpreaching":3, "unprecedented":5, "unprecedential":5, "unprecipiced":4, "unpredatory":5, "unpredicated":5, "unpredicable":5, "unpredicableness":6, "unpredicative":5, "unpreened":2, "unprefaced":3, "unpreferable":5, "unpreferableness":6, "unpregnant":3, "unprejudiced":4, "unprejudicedly":5, "unprejudicedness":5, "unprejudicial":5, "unpressed":2, "unpresaged":3, "unpresaging":4, "unpresidential":5, "unpressured":3, "unprettified":4, "unprettily":4, "unprettiness":4, "unpretty":3, "unprevalent":4, "unpreying":3, "unprecarious":5, "unprecautioned":4, "unpreceded":4, "unpreceptive":4, "unprecious":3, "unprecipitant":5, "unprecipitate":5, "unprecipitated":6, "unprecipitative":6, "unprecipitous":5, "unprecise":3, "unprecisive":4, "unprecludable":5, "unprecluded":4, "unpreclusive":4, "unprecocious":4, "unpredaceous":4, "unpredacious":4, "unpredestined":4, "unpredictability":7, "unpredictable":5, "unpredictableness":6, "unpredictably":5, "unpredicted":4, "unpredicting":4, "unpredictive":4, "unpredisposed":4, "unpredisposing":5, "unpreempted":4, "unpreferred":3, "unprefigured":4, "unprefixed":3, "unprefixal":4, "unprelatic":4, "unpreluded":4, "unpremature":4, "unpremeditated":6, "unpremonished":4, "unpreoccupied":5, "unpreordained":4, "unprepared":3, "unpreparedly":5, "unpreparedness":5, "unpreparing":4, "unpreponderated":6, "unpreponderating":6, "unprepossessing":5, "unpreposterous":5, "unprescinded":4, "unprescient":4, "unprescribed":3, "unpresentable":5, "unpresentableness":6, "unpresentative":5, "unpresented":4, "unpreserved":3, "unpreservable":5, "unpresiding":4, "unpresumed":3, "unpresumptive":4, "unpresumptuous":5, "unpresumable":5, "unpresuming":4, "unpretended":4, "unpretentious":4, "unpretentiously":5, "unpretentiousness":5, "unpretermitted":5, "unpreternatural":6, "unprevailing":4, "unprevaricating":6, "unpreventable":5, "unpreventative":5, "unprevented":4, "unpreventible":5, "unpreventive":4, "unpreviewed":3, "unpriced":2, "unpricked":2, "unprickled":3, "unprickly":3, "unprideful":3, "unpriestlike":3, "unpriestly":3, "unpriggish":3, "unprim":2, "unprimed":2, "unprimmed":2, "unprimitive":4, "unprimitivistic":6, "unprincely":3, "unprintable":4, "unprintableness":5, "unprintably":4, "unprinted":3, "unprincipled":4, "unprismatic":4, "unprismatical":5, "unprison":3, "unprisonable":5, "unprivileged":4, "unprized":2, "unprizable":4, "unprivate":3, "unprobed":2, "unproblematic":5, "unproblematical":6, "unprocessed":3, "unproctored":3, "unprodded":3, "unproffered":3, "unprofitability":7, "unprofitable":5, "unprofitableness":6, "unprofited":4, "unprofiteering":5, "unprofiting":4, "unprognosticated":6, "unprognosticative":6, "unprompt":2, "unprompted":3, "unpromised":3, "unpromising":4, "unproofread":3, "unprophesied":4, "unpropped":2, "unpropagandistic":6, "unpropagated":5, "unpropagable":5, "unpropagative":5, "unproper":3, "unpropertied":4, "unprospered":3, "unprospering":4, "unprosperous":4, "unprostituted":5, "unprostrated":4, "unprotestant":4, "unproud":2, "unproved":2, "unprovable":4, "unproven":3, "unproving":3, "unprovident":4, "unprovidential":5, "unprowling":3, "unproximity":5, "unprobated":4, "unprobational":5, "unprobationary":6, "unprobative":4, "unprocessional":5, "unproclaimed":3, "unprocrastinated":6, "unprocreant":4, "unprocreated":5, "unprocured":3, "unprocurable":5, "unprodigious":4, "unproduced":3, "unproducible":5, "unproductive":4, "unproductivity":6, "unprofane":3, "unprofaned":3, "unprofanable":5, "unprofessed":3, "unprofessing":4, "unprofessional":5, "unprofessionally":6, "unprofessorial":6, "unprofound":3, "unprofuse":3, "unprogrammatic":5, "unprogressed":3, "unprogressive":4, "unprohibited":5, "unprohibitive":5, "unprojected":4, "unprojecting":4, "unprojective":4, "unproliferous":5, "unprolific":4, "unprolifically":6, "unprolix":3, "unprologued":3, "unprolonged":3, "unprolongable":5, "unpromiscuous":5, "unpromotable":5, "unpromoted":4, "unpromotional":5, "unpromotive":4, "unpromulgated":5, "unpronounced":3, "unpronounceable":5, "unpronouncing":4, "unpropelled":3, "unpropellent":4, "unprophetic":4, "unprophetical":5, "unpropitious":4, "unpropitiated":6, "unpropitiating":6, "unpropitiable":6, "unpropitiative":6, "unpropitiatory":7, "unproportioned":4, "unproportional":5, "unproportionate":5, "unproportionable":6, "unproposed":3, "unproposable":5, "unproposing":4, "unpropounded":4, "unprorogued":3, "unprosaic":4, "unprosaical":5, "unproscribed":3, "unproscribable":5, "unproscriptive":4, "unprotectable":5, "unprotected":4, "unprotecting":4, "unprotective":4, "unprotested":4, "unprotesting":4, "unprotracted":4, "unprotractive":4, "unprotruded":4, "unprotrudent":4, "unprotruding":4, "unprotrusive":4, "unprotrusible":5, "unprotuberant":5, "unproverbial":5, "unprovidable":5, "unprovided":4, "unprovincial":4, "unprovisioned":4, "unprovisional":5, "unprovocative":5, "unprovoked":3, "unprovokable":5, "unprovoking":4, "unpruned":2, "unprunable":4, "unprudent":3, "unprudential":4, "unprying":3, "unpsychic":3, "unpsychically":5, "unpsychotic":4, "unpsychological":6, "unpsychopathic":5, "unpublic":3, "unpublished":3, "unpublishable":5, "unpublicized":4, "unpuckered":3, "unpuddled":3, "unpuffed":2, "unpuffing":3, "unpugnacious":4, "unpulped":2, "unpulleyed":3, "unpulsating":4, "unpulsative":4, "unpulverable":5, "unpulverised":4, "unpulverized":4, "unpulvinate":4, "unpulvinated":5, "unpumped":2, "unpumpable":4, "unpummeled":3, "unpummelled":3, "unpunctate":3, "unpunctated":4, "unpunctilious":5, "unpunctured":3, "unpunctual":4, "unpunctuality":6, "unpunctuated":5, "unpunctuating":5, "unpunished":3, "unpunishable":5, "unpunishing":4, "unpure":2, "unpurged":2, "unpurgeable":4, "unpurled":2, "unpurchased":3, "unpurchasable":5, "unpurgative":4, "unpurloined":3, "unpurported":4, "unpurposed":3, "unpurposely":4, "unpurposing":4, "unpurposive":4, "unpursued":3, "unpursuant":4, "unpursuable":5, "unpursuing":4, "unpushed":2, "unputtied":3, "unpuzzle":3, "unpugilistic":5, "unpunitive":4, "unpuristic":4, "unpurified":4, "unpurifying":5, "unpuritan":4, "unpuritanic":5, "unpuritanical":6, "unputative":4, "unputrefied":4, "unputrefiable":6, "unputrid":3, "unputridity":5, "unquadded":3, "unquaffed":2, "unquailing":3, "unquaking":3, "unqualified":4, "unqualifiedly":5, "unqualifiedness":5, "unqualifiable":6, "unqualifying":5, "unquantified":4, "unquantitative":5, "unquarantined":4, "unquarreling":4, "unquarrelling":4, "unquarrelsome":4, "unquarried":3, "unquartered":3, "unquashed":2, "unquayed":2, "unquavering":4, "unqueenly":3, "unquelled":2, "unquellable":4, "unquenched":2, "unquenchable":4, "unquerulous":4, "unquested":3, "unquestioned":3, "unquestionable":5, "unquestionableness":6, "unquestionably":5, "unquestioning":4, "unqueried":3, "unquibbling":3, "unquick":2, "unquickened":3, "unquilted":3, "unquitted":3, "unquivered":3, "unquivering":4, "unquixotic":4, "unquixotical":5, "unquizzed":2, "unquizzable":4, "unquizzical":4, "unquiet":3, "unquietable":5, "unquieted":4, "unquieting":4, "unquote":2, "unquotable":4, "unquoted":3, "unquoting":3, "unrabbeted":4, "unrabbinic":4, "unrabbinical":5, "unrack":2, "unradical":4, "unraffled":3, "unraftered":3, "unraided":3, "unrailed":2, "unrailroaded":4, "unrailwayed":3, "unrainy":3, "unraised":2, "unraiseable":4, "unraisable":4, "unraked":2, "unraking":3, "unrallied":3, "unrallying":4, "unrammed":2, "unramped":2, "unrambling":3, "unramified":4, "unranched":2, "unranging":3, "unranked":2, "unranting":3, "unrancid":3, "unrancored":3, "unrancorous":4, "unrancoured":3, "unrancourous":4, "unrankled":3, "unransacked":3, "unransomed":3, "unransomable":5, "unraped":2, "unraptured":3, "unrapturous":4, "unrarefied":4, "unrash":2, "unrasped":2, "unrasping":3, "unraspy":3, "unratable":4, "unrated":3, "unratified":4, "unravaged":3, "unravel":3, "unraveled":3, "unravelled":3, "unraveler":4, "unraveling":4, "unraveller":4, "unravelling":4, "unravelment":4, "unraving":3, "unravished":3, "unrayed":2, "unrazed":2, "unradiant":4, "unradiated":5, "unradiative":5, "unradioactive":6, "unrapacious":4, "unrationed":3, "unrational":4, "unrationalised":5, "unrationalising":6, "unrationalized":5, "unrationalizing":6, "unrationable":5, "unrazored":3, "unreached":2, "unreachable":4, "unread":2, "unreadable":4, "unreadiness":4, "unready":3, "unrealmed":2, "unreaped":2, "unreared":2, "unreaving":3, "unreason":3, "unreasoned":3, "unreasonable":5, "unreasonable behaviour":8, "unreasonableness":6, "unreasonably":5, "unreasoning":4, "unreckon":3, "unreckoned":3, "unreckonable":5, "unrecitative":5, "unrecluse":3, "unrecognisable":6, "unrecognized":4, "unrecognizable":6, "unrecognizing":5, "unrecollective":5, "unrecommendable":6, "unrecommended":5, "unrecompensed":4, "unrecompensable":6, "unreconciled":4, "unreconcilable":6, "unreconcilableness":7, "unreconciling":5, "unrecondite":4, "unreconnoitered":5, "unreconnoitred":5, "unrecreant":4, "unrecreational":6, "unrectangular":5, "unrectified":4, "unrectifiable":6, "unrecusant":4, "unreefed":2, "unreel":2, "unreelable":4, "unreeler":3, "unreeve":2, "unreeved":2, "unreeving":3, "unreferenced":4, "unregistered":4, "unregistrable":5, "unregimented":5, "unregimental":5, "unregularised":5, "unregularized":5, "unregulated":5, "unregulable":5, "unregulative":5, "unregulatory":6, "unreigning":3, "unreined":2, "unrelative":4, "unrelativistic":6, "unrelegated":5, "unrelegable":5, "unrelevant":4, "unrelished":3, "unrelishable":5, "unrelishing":4, "unremedied":4, "unreminiscent":5, "unrent":2, "unrentable":4, "unrented":3, "unrendered":3, "unrenderable":5, "unrenovated":5, "unrenovative":5, "unrepetitious":5, "unreportorial":6, "unreprehended":5, "unreprehensible":6, "unreprehensibleness":7, "unrepresentable":6, "unrepresentative":6, "unrepresented":5, "unrepresentational":7, "unreprimanded":5, "unreprimanding":5, "unreprobated":5, "unreprobative":5, "unrequisite":4, "unrequisitioned":5, "unrest":2, "unrested":3, "unrestful":3, "unresting":3, "unrescued":3, "unrescuable":5, "unresinous":4, "unresident":4, "unresidential":5, "unresolute":4, "unresonant":4, "unresonating":5, "unrespited":4, "unrestitutive":5, "unresurrected":5, "unreticent":4, "unretinued":4, "unretroactive":5, "unretrograded":5, "unretrograding":5, "unretrogressive":5, "unretted":3, "unreveling":4, "unrevelling":4, "unreverenced":4, "unreverent":4, "unreverential":5, "unrevelational":6, "unrevocable":5, "unrevolutionary":7, "unrevolutionized":6, "unreactionary":6, "unreactive":4, "unreal":3, "unrealise":4, "unrealised":4, "unrealising":5, "unrealistic":5, "unrealistically":7, "unrealize":4, "unrealized":4, "unrealizable":6, "unrealizing":5, "unreality":5, "unreally":4, "unreassuring":5, "unrebated":4, "unrebellious":4, "unrebuffed":3, "unrebuffable":5, "unrebuilt":3, "unrebuked":3, "unrebukable":5, "unrebuttable":5, "unrebutted":4, "unrecalled":3, "unrecallable":5, "unrecalcitrant":5, "unrecanted":4, "unrecanting":4, "unrecaptured":4, "unreceding":4, "unreceipted":4, "unreceivable":5, "unreceiving":4, "unreceptive":4, "unreceptivity":6, "unrecessive":4, "unrecipient":5, "unreciprocal":5, "unreciprocated":6, "unreciprocating":6, "unrecited":4, "unreclaimed":3, "unreclaimable":5, "unreclaiming":4, "unreclined":3, "unreclining":4, "unreclusive":4, "unrecognitory":6, "unrecollected":5, "unreconsidered":5, "unreconstructed":5, "unreconstructible":6, "unrecordable":5, "unrecorded":4, "unrecountable":5, "unrecounted":4, "unrecoverable":6, "unrecriminative":6, "unrecruitable":5, "unrecruited":4, "unrecumbent":4, "unrecurrent":4, "unrecurring":4, "unrecuperated":6, "unrecuperative":6, "unrecuperatory":7, "unredacted":4, "unredeemable":5, "unredeeming":4, "unredemptive":4, "unredressed":3, "unredressable":5, "unreduced":3, "unreducible":5, "unreferred":3, "unrefilled":3, "unrefined":3, "unrefining":4, "unrefitted":4, "unreflected":4, "unreflecting":4, "unreflectingly":5, "unreflective":4, "unreflectively":5, "unreformed":3, "unreformable":5, "unreformative":5, "unreforming":4, "unrefracted":4, "unrefracting":4, "unrefractive":4, "unrefractory":5, "unrefrained":3, "unrefrainable":5, "unrefraining":4, "unrefrangible":5, "unrefreshed":3, "unrefreshing":4, "unrefrigerated":6, "unrefulgent":4, "unrefundable":5, "unrefunded":4, "unrefunding":4, "unrefused":3, "unrefusable":5, "unrefusing":4, "unrefutable":5, "unrefuted":4, "unrefuting":4, "unregained":3, "unregainable":5, "unregal":3, "unregaled":3, "unregardant":4, "unregardable":5, "unregarded":4, "unregardful":4, "unregenerate":5, "unregenerated":6, "unregenerating":6, "unregenerable":6, "unregenerative":6, "unregressive":4, "unregretful":4, "unregrettable":5, "unregretted":4, "unregretting":4, "unregurgitated":6, "unrehabilitated":7, "unrehearsed":3, "unrehearsable":5, "unrehearsing":4, "unreinforced":4, "unreinstated":5, "unreiterated":6, "unreiterable":6, "unreiterating":6, "unreiterative":6, "unrejectable":5, "unrejected":4, "unrejective":4, "unrejoiced":3, "unrejoicing":4, "unrejuvenated":6, "unrejuvenating":6, "unrelapsing":4, "unrelated":4, "unrelating":4, "unrelaxed":3, "unrelaxable":5, "unrelaxing":4, "unrelayed":3, "unrelational":5, "unreleased":3, "unreleasable":5, "unreleasing":4, "unreleasible":5, "unrelented":4, "unrelenting":4, "unrelentingly":5, "unrelentingness":5, "unrelieved":3, "unrelievable":5, "unrelieving":4, "unrelinquished":4, "unrelinquishable":6, "unrelinquishing":5, "unreliant":4, "unreliability":7, "unreliable":5, "unreliableness":6, "unreliably":5, "unreligioned":4, "unreligious":4, "unreligiously":5, "unreluctant":4, "unremaining":4, "unremanded":4, "unremarked":3, "unremarkable":5, "unremarried":4, "unremembered":4, "unremembering":5, "unremediable":6, "unreminded":4, "unremissible":5, "unremissive":4, "unremittable":5, "unremitted":4, "unremittence":4, "unremittently":5, "unremittency":5, "unremitting":4, "unremittingly":5, "unremittingness":5, "unremonstrant":4, "unremonstrated":5, "unremonstrating":5, "unremonstrative":5, "unremorseful":4, "unremote":3, "unremounted":4, "unremoved":3, "unremovable":5, "unremovableness":6, "unremunerated":6, "unremunerative":6, "unrenewed":3, "unrenewable":5, "unrenounced":3, "unrenounceable":5, "unrenouncing":4, "unrenowned":3, "unrenunciable":6, "unrenunciative":6, "unrenunciatory":7, "unreorganised":5, "unreorganized":5, "unrepaid":3, "unrepair":3, "unrepaired":3, "unrepayable":5, "unrepealed":3, "unrepealability":7, "unrepealable":5, "unrepeatable":5, "unrepeated":4, "unrepelled":3, "unrepellable":5, "unrepellent":4, "unrepentant":4, "unrepented":4, "unrepenting":4, "unrepetitive":5, "unrepined":3, "unrepining":4, "unreplaced":3, "unreplaceable":5, "unreplenished":4, "unreplete":3, "unreplevined":4, "unreplevinable":6, "unreplevisable":6, "unreplied":3, "unreplying":4, "unreportable":5, "unreported":4, "unrepose":3, "unreposed":3, "unreposeful":4, "unreposing":4, "unrepossessed":4, "unrepressed":3, "unrepressible":5, "unrepressive":4, "unreprieved":3, "unreprievable":5, "unreprinted":4, "unreproached":3, "unreproachable":5, "unreproachableness":6, "unreproachful":4, "unreproaching":4, "unreproved":3, "unreprovable":5, "unreproving":4, "unreproducible":6, "unreproductive":5, "unrepublican":5, "unrepugnant":4, "unrepulsed":3, "unrepulsing":4, "unrepulsive":4, "unreputable":5, "unreputed":4, "unrepudiated":6, "unrepudiable":6, "unrepudiative":6, "unrequalified":5, "unrequested":4, "unrequired":3, "unrequital":4, "unrequitable":5, "unrequited":4, "unrequiting":4, "unrescinded":4, "unrescissable":5, "unrescissory":5, "unresearched":3, "unresemblant":4, "unresembling":4, "unresented":4, "unresentful":4, "unresenting":4, "unreserve":3, "unreserved":3, "unreservedly":5, "unreservedness":5, "unresidual":5, "unresigned":3, "unresilient":4, "unresistant":4, "unresistable":5, "unresisted":4, "unresisting":4, "unresistible":5, "unresistive":4, "unresolved":3, "unresolvable":5, "unresolving":4, "unresounded":4, "unresourceful":4, "unrespectability":7, "unrespectable":5, "unrespected":4, "unrespectful":4, "unrespired":3, "unrespirable":5, "unresplendent":4, "unresponding":4, "unresponsive":4, "unresponsible":5, "unresponsibleness":6, "unrestored":3, "unrestorable":5, "unrestorative":5, "unrestrained":3, "unrestraint":3, "unrestrainable":5, "unrestrainedly":5, "unrestrictable":5, "unrestricted":4, "unrestrictive":4, "unresumed":3, "unresumptive":4, "unresuscitated":6, "unresuscitating":6, "unresuscitable":6, "unresuscitative":6, "unretained":3, "unretainable":5, "unretaining":4, "unretaliated":6, "unretaliating":6, "unretaliative":6, "unretaliatory":7, "unretardable":5, "unretarded":4, "unretentive":4, "unretired":3, "unretiring":4, "unretorted":4, "unretouched":3, "unretractable":5, "unretracted":4, "unretractive":4, "unretreated":4, "unretreating":4, "unretrenched":3, "unretrenchable":5, "unretributive":5, "unretributory":6, "unretrieved":3, "unretrievable":5, "unreturned":3, "unreturnable":5, "unreturning":4, "unrevealed":3, "unrevealable":5, "unrevealing":4, "unrevenged":3, "unrevengeful":4, "unrevenging":4, "unrevered":3, "unreversed":3, "unreversible":5, "unreversibleness":6, "unreverted":4, "unreverting":4, "unrevertible":5, "unreverberant":5, "unreverberated":6, "unreverberating":6, "unreverberative":6, "unrevetted":4, "unreviewed":3, "unreviewable":5, "unreviled":3, "unreviling":4, "unrevised":3, "unrevived":3, "unrevivable":5, "unrevoked":3, "unrevokable":5, "unrevolted":4, "unrevolting":4, "unrevolved":3, "unrevolving":4, "unrewardable":5, "unrewarded":4, "unrewarding":4, "unreworded":4, "unrhapsodic":4, "unrhapsodical":5, "unrheumatic":4, "unrhetorical":5, "unrhyme":2, "unrhymed":2, "unrhyming":3, "unrhythmic":3, "unrhythmical":4, "unribbed":2, "unribboned":3, "unridged":2, "unridable":4, "unridden":3, "unriddle":3, "unriddled":3, "unriddler":3, "unridered":3, "unridiculed":4, "unrife":2, "unrifted":3, "unriffled":3, "unrig":2, "unrigged":2, "unrightable":4, "unrighted":3, "unrighteous":3, "unrighteously":4, "unrightful":3, "unrigging":3, "unrigid":3, "unrigorous":4, "unrimed":2, "unringable":4, "unringing":3, "unrinsed":2, "unrip":2, "unripe":2, "unripely":3, "unripeness":3, "unripened":3, "unrippable":4, "unrippled":3, "unrippling":3, "unrisked":2, "unriskable":4, "unrisky":3, "unrisen":3, "unrising":3, "unrisible":4, "unritual":4, "unritualistic":6, "unrived":2, "unriven":3, "unriveted":4, "unriveting":4, "unridiculous":5, "unrifled":3, "unrioting":4, "unriotous":4, "unripened":3, "unripening":4, "unrivaled":3, "unrivalled":3, "unrivalable":5, "unrivaling":4, "unrivalling":4, "unrivalrous":4, "unroaming":3, "unroasted":3, "unrobbed":2, "unrobe":2, "unrobed":2, "unrobing":3, "unrocked":2, "unrocky":3, "unrodded":3, "unroiled":2, "unroll":2, "unrollable":4, "unroof":2, "unroomy":3, "unroosted":3, "unroosting":3, "unroot":2, "unroped":2, "unrosed":2, "unrotted":3, "unrotten":3, "unrouged":2, "unroughened":3, "unround":2, "unrounded":3, "unroused":2, "unrousing":3, "unroutable":4, "unrouted":3, "unroutine":3, "unrove":2, "unroving":3, "unrowed":2, "unrowdy":3, "unroweled":3, "unrowelled":3, "unrobust":3, "unromantic":4, "unromantically":6, "unromanticised":5, "unromanticized":5, "unrotated":4, "unrotating":4, "unrotary":4, "unrotational":5, "unrotative":4, "unrotatory":5, "unrotund":3, "unrubbed":2, "unrude":2, "unruddered":3, "unruddled":3, "unrued":2, "unrueful":3, "unruffed":2, "unruffable":4, "unruffle":3, "unruffled":3, "unruffledness":4, "unrugged":3, "unruled":2, "unrummaged":3, "unrumpled":3, "unrun":2, "unrung":2, "unruptured":3, "unrupturable":5, "unrushed":2, "unrushing":3, "unrust":2, "unrustic":3, "unrustically":5, "unrusticated":5, "unrustling":3, "unrubified":4, "unrubrical":4, "unrubricated":5, "unruinable":5, "unruinous":4, "unruliness":4, "unruly":3, "unruminant":4, "unruminated":5, "unruminating":5, "unruminative":5, "unrumored":3, "unrumoured":3, "unrural":3, "unsabotaged":4, "unsacked":2, "unsaccharine":4, "unsacerdotal":5, "unsacramental":5, "unsacramentarian":7, "unsacrificed":4, "unsacrificeable":6, "unsacrificing":5, "unsacrificial":5, "unsacrilegious":5, "unsad":2, "unsaddened":3, "unsaddle":3, "unsafe":2, "unsafetied":3, "unsafety":3, "unsage":2, "unsagging":3, "unsaid":2, "unsailed":2, "unsailable":4, "unsainted":3, "unsaintly":3, "unsaleable":4, "unsaltable":4, "unsalted":3, "unsalty":3, "unsalved":2, "unsalability":6, "unsalable":4, "unsalivated":5, "unsalivating":5, "unsallow":3, "unsallying":4, "unsaltatorial":6, "unsaltatory":5, "unsalutary":5, "unsalvaged":3, "unsalvageable":5, "unsanctioned":3, "unsanctionable":5, "unsanctioning":4, "unsanctified":4, "unsanctifying":5, "unsanctimonious":6, "unsanctitude":4, "unsanctity":4, "unsanded":3, "unsandaled":3, "unsandalled":3, "unsanguine":3, "unsanguineous":5, "unsanguinarily":6, "unsanguinariness":6, "unsanguinary":5, "unsanitary":5, "unsanitized":4, "unsanity":4, "unsapped":2, "unsarcastic":4, "unsarcastical":5, "unsardonic":4, "unsardonically":6, "unsartorial":5, "unsashed":2, "unsatcheled":3, "unsatable":4, "unsated":3, "unsating":3, "unsatisfactorily":7, "unsatisfactoriness":7, "unsatisfactory":6, "unsatisfied":4, "unsatisfiable":6, "unsatirised":4, "unsatirisable":6, "unsatirized":4, "unsatirizable":6, "unsaturable":5, "unsaturate":4, "unsaturated":5, "unsaturation":5, "unsauced":2, "unsaved":2, "unsaveable":4, "unsavage":3, "unsavable":4, "unsaving":3, "unsawed":2, "unsawn":2, "unsay":2, "unsayable":4, "unsaying":3, "unsabered":3, "unsabled":3, "unsabred":3, "unsacred":3, "unsadistic":4, "unsadistically":6, "unsagacious":4, "unsalacious":4, "unsaline":3, "unsalient":4, "unsaluted":4, "unsaluting":4, "unsalubrious":5, "unsalutatory":6, "unsapient":4, "unsapiential":5, "unsaponified":5, "unsaponifiable":7, "unsatanic":4, "unsatanical":5, "unsatiric":4, "unsatirical":5, "unsatiated":5, "unsatiating":5, "unsatiability":7, "unsatiable":5, "unsatiableness":6, "unsavored":3, "unsavorily":5, "unsavoriness":5, "unsavory":4, "unsavoured":3, "unsavourily":5, "unsavouriness":5, "unsavoury":4, "unscabbed":2, "unscabbard":3, "unscaffolded":4, "unscalded":3, "unscalding":3, "unscaled":2, "unscalable":4, "unscaling":3, "unscalloped":3, "unscaly":3, "unscamped":2, "unscanned":2, "unscanty":3, "unscandalised":4, "unscandalized":4, "unscandalous":4, "unscannable":4, "unscarce":2, "unscared":2, "unscarfed":2, "unscarred":2, "unscarved":2, "unscarified":4, "unscathed":2, "unscattered":3, "unscavenged":3, "unscabrous":3, "unscented":3, "unsceptered":3, "unsceptical":4, "unsceptred":3, "unscenic":3, "unscenically":5, "unscheduled":3, "unschemed":2, "unscheming":3, "unschematic":4, "unschematically":6, "unschematised":4, "unschematized":4, "unschismatic":4, "unschismatical":5, "unschizoid":3, "unschizophrenic":5, "unscholarlike":4, "unscholarly":4, "unschooled":2, "unscholastic":4, "unscholastically":6, "unscintillant":4, "unscintillating":5, "unscissored":3, "unscientific":5, "unscientifically":7, "unscoffed":2, "unscoffing":3, "unscolded":3, "unscolding":3, "unsconced":2, "unscooped":2, "unscorched":2, "unscorching":3, "unscored":2, "unscorned":2, "unscornful":3, "unscoring":3, "unscotched":2, "unscoured":2, "unscourged":2, "unscourging":3, "unscouring":3, "unscowling":3, "unscorified":4, "unscramble":3, "unscrambler":3, "unscraped":2, "unscraping":3, "unscratched":2, "unscratchable":4, "unscratching":3, "unscrawled":2, "unscrawling":3, "unscreened":2, "unscreenable":4, "unscrew":2, "unscribed":2, "unscribal":3, "unscribbled":3, "unscrimped":2, "unscripted":3, "unscriptural":4, "unscrubbed":2, "unscrutable":4, "unscrupled":3, "unscrupulosity":6, "unscrupulous":4, "unscrupulously":5, "unscrupulousness":5, "unscrutinised":4, "unscrutinising":5, "unscrutinized":4, "unscrutinizing":5, "unsculptured":3, "unsculptural":4, "unscummed":2, "unseal":2, "unsealed":2, "unsealable":4, "unseam":2, "unsearched":2, "unsearchable":4, "unsearchableness":5, "unsearchably":4, "unsearching":3, "unseared":2, "unseat":2, "unseasoned":3, "unseasonable":5, "unseasonably":5, "unseaworthiness":5, "unseaworthy":4, "unseconded":4, "unsecretarial":6, "unsectarian":5, "unsectarianize":6, "unsectarianized":6, "unsectarianizing":7, "unsectioned":3, "unsectional":4, "unsectionalised":5, "unsectionalized":5, "unsecular":4, "unsecularised":5, "unsecularized":5, "unsedative":4, "unsedentary":5, "unsedimental":5, "unsedulous":4, "unseeded":3, "unseeding":3, "unseeking":3, "unseemly":3, "unseen":2, "unseethed":2, "unseething":3, "unseeable":4, "unseeing":3, "unsegmented":4, "unsegmental":4, "unsegmentary":5, "unsegregated":5, "unsegregating":5, "unsegregable":5, "unsegregational":6, "unsegregative":5, "unseignioral":4, "unseismal":3, "unseismic":3, "unseized":2, "unseizable":4, "unseignorial":5, "unself-centered":3, "unself-centred":3, "unself-knowing":3, "unself-possessed":3, "unself-righteous":3, "unself-sacrificing":5, "unself-sacrificial":5, "unself-sufficient":4, "unself-sufficiency":5, "unselfconscious":4, "unselfconsciously":5, "unselfconsciousness":5, "unselfish":3, "unselfishly":4, "unselfishness":4, "unsell":2, "unselling":3, "unsensed":2, "unsensing":3, "unsent":2, "unsensate":3, "unsensational":5, "unsensibility":6, "unsensible":4, "unsensibleness":5, "unsensitise":4, "unsensitised":4, "unsensitising":5, "unsensitive":4, "unsensitize":4, "unsensitized":4, "unsensitizing":5, "unsensory":4, "unsensual":4, "unsensualised":5, "unsensualistic":6, "unsensualized":5, "unsensuous":4, "unsentenced":3, "unsententious":4, "unsentient":3, "unsentimental":5, "unsentimentalised":6, "unsentimentalized":6, "unsentineled":4, "unsentinelled":4, "unseparate":4, "unseparated":5, "unseparating":5, "unseparable":5, "unseparableness":6, "unseparative":5, "unsepulcher":4, "unsepulchre":4, "unsepultured":4, "unsere":2, "unserved":2, "unservable":4, "unserviced":3, "unserving":3, "unserenaded":5, "unserrate":3, "unserrated":4, "unserried":3, "unserviceable":5, "unserviceableness":6, "unservile":3, "unsesquipedalian":7, "unset":2, "unsetting":3, "unsettle":3, "unsettled":3, "unsettledness":4, "unsettleable":5, "unsettlement":4, "unsevered":3, "unseverable":5, "unsex":2, "unsexual":4, "unseceded":4, "unseceding":4, "unsecluded":4, "unsecluding":4, "unseclusive":4, "unsecreted":4, "unsecreting":4, "unsecretly":4, "unsecretive":4, "unsecure":3, "unsecured":3, "unsedate":3, "unseditious":4, "unseduced":3, "unseducible":5, "unseducibleness":6, "unseductive":4, "unselect":3, "unselected":4, "unselective":4, "unsenescent":4, "unsenile":3, "unsepulchral":4, "unsequenced":3, "unsequent":3, "unsequential":4, "unsequestered":4, "unseraphic":4, "unseraphical":5, "unserene":3, "unserialised":5, "unserialized":5, "unserious":4, "unsevere":3, "unshabbily":4, "unshabby":3, "unshackle":3, "unshade":2, "unshaded":3, "unshading":3, "unshadily":4, "unshadiness":4, "unshadowed":3, "unshadowable":5, "unshady":3, "unshafted":3, "unshakeable":4, "unshakable":4, "unshaking":3, "unshamed":2, "unshameable":4, "unshammed":2, "unshamable":4, "unshanked":2, "unshaped":2, "unshapeable":4, "unshapeliness":4, "unshapely":3, "unshapable":4, "unshapen":3, "unshaping":3, "unshared":2, "unshareable":4, "unsharp":2, "unsharped":2, "unsharpened":3, "unsharpening":4, "unsharping":3, "unsharable":4, "unsharing":3, "unshattered":3, "unshaved":2, "unshaveable":4, "unshavable":4, "unshaken":3, "unsheared":2, "unsheathe":2, "unsheathed":2, "unsheathing":3, "unshed":2, "unshedding":3, "unsheer":2, "unsheeted":3, "unsheeting":3, "unshelved":2, "unsheltered":3, "unsheltering":4, "unshepherded":4, "unshepherding":4, "unshieldable":4, "unshielded":3, "unshielding":3, "unshifted":3, "unshifting":3, "unshifty":3, "unshimmering":4, "unshined":2, "unshingled":3, "unshining":3, "unshiny":3, "unship":2, "unshipped":2, "unshippable":4, "unshirked":2, "unshirking":3, "unshirred":2, "unshirted":3, "unshivered":3, "unshivering":4, "unshocked":2, "unshockable":4, "unshocking":3, "unshod":2, "unshoed":2, "unshored":2, "unshorn":2, "unshort":2, "unshorten":3, "unshotted":3, "unshouted":3, "unshouting":3, "unshoved":2, "unshoveled":3, "unshovelled":3, "unshowed":2, "unshown":2, "unshowable":4, "unshowered":3, "unshowering":4, "unshowily":4, "unshowiness":4, "unshowy":3, "unshredded":3, "unshrewd":2, "unshrewish":3, "unshrill":2, "unshrined":2, "unshrinkability":6, "unshrinkable":4, "unshrinking":3, "unshrived":2, "unshriveled":3, "unshrivelled":3, "unshriven":3, "unshroud":2, "unshrugging":3, "unshrunk":2, "unshrunken":3, "unshuddering":4, "unshuffled":3, "unshunned":2, "unshunted":3, "unshunnable":4, "unshut":2, "unshuttered":3, "unshy":2, "unsibilant":4, "unsick":2, "unsickened":3, "unsicker":3, "unsickered":3, "unsickerly":4, "unsickerness":4, "unsiccative":4, "unsided":3, "unsiding":3, "unsieged":2, "unsieved":2, "unsifted":3, "unsight":2, "unsighted":3, "unsightliness":4, "unsightly":3, "unsighing":3, "unsigned":2, "unsignable":4, "unsignaled":3, "unsignalled":3, "unsignalised":4, "unsignalized":4, "unsignatured":4, "unsigneted":4, "unsignificant":5, "unsignificative":6, "unsignified":4, "unsignifiable":6, "unsignifying":5, "unsilhouetted":5, "unsilicated":5, "unsilly":3, "unsilvered":3, "unsimilar":4, "unsimilarity":6, "unsimmered":3, "unsimmering":4, "unsimpering":4, "unsimple":3, "unsimpleness":4, "unsimplified":4, "unsimplifying":5, "unsimular":4, "unsimulated":5, "unsimulating":5, "unsimulative":5, "unsinged":2, "unsingable":4, "unsinkability":6, "unsinkable":4, "unsinking":3, "unsincere":3, "unsinewed":3, "unsinewing":4, "unsinewy":4, "unsinful":3, "unsingle":3, "unsingular":4, "unsinister":4, "unsinning":3, "unsinuate":4, "unsinuated":5, "unsinuous":4, "unsipped":2, "unsistered":3, "unsisterly":4, "unsituated":5, "unsized":2, "unsizeable":4, "unsizable":4, "unsidereal":5, "unsidling":3, "unsilenced":3, "unsilent":3, "unsilicified":5, "unsimultaneous":6, "unskeptical":4, "unsketched":2, "unsketchable":4, "unskewed":2, "unskewered":3, "unskilled":2, "unskillful":3, "unskillfully":4, "unskillfulness":4, "unskilful":3, "unskilfully":4, "unskilfulness":4, "unskimmed":2, "unskinned":2, "unskirted":3, "unslack":2, "unslacked":2, "unslackened":3, "unslackening":4, "unslacking":3, "unslagged":2, "unslain":2, "unslaked":2, "unslaked lime":3, "unslakeable":4, "unslakable":4, "unslammed":2, "unslanted":3, "unslanting":3, "unslandered":3, "unslanderous":4, "unslapped":2, "unslashed":2, "unslated":3, "unslating":3, "unslatted":3, "unslaughtered":3, "unslayable":4, "unsleaved":2, "unsleek":2, "unsleeping":3, "unsleepy":3, "unsleeved":2, "unslender":3, "unsliced":2, "unslicked":2, "unsliding":3, "unslighted":3, "unslim":2, "unslimmed":2, "unsling":2, "unslinking":3, "unslipped":2, "unslippered":3, "unslippery":4, "unslipping":3, "unsloped":2, "unslopped":2, "unsloping":3, "unslotted":3, "unslouched":2, "unslouching":3, "unslouchy":3, "unsloughed":2, "unsloughing":3, "unslow":2, "unslowed":2, "unsluggish":3, "unsluiced":2, "unslumped":2, "unslumping":3, "unslumbering":4, "unslumbery":4, "unslumbrous":3, "unslung":2, "unslurred":2, "unsly":2, "unsmacked":2, "unsmarting":3, "unsmashed":2, "unsmeared":2, "unsmelled":2, "unsmelling":3, "unsmelted":3, "unsmiling":3, "unsmirched":2, "unsmirking":3, "unsmitten":3, "unsmocked":2, "unsmoked":2, "unsmokeable":4, "unsmokable":4, "unsmoking":3, "unsmokily":4, "unsmokiness":4, "unsmoky":3, "unsmoldering":4, "unsmooth":2, "unsmoothed":2, "unsmoothened":3, "unsmothered":3, "unsmotherable":5, "unsmothering":4, "unsmouldering":4, "unsmudged":2, "unsmug":2, "unsmuggled":3, "unsmutched":2, "unsmutted":3, "unsmutty":3, "unsnaffled":3, "unsnagged":2, "unsnaky":3, "unsnap":2, "unsnapped":2, "unsnapping":3, "unsnared":2, "unsnarl":2, "unsnatched":2, "unsneaking":3, "unsneaky":3, "unsneering":3, "unsnipped":2, "unsnobbish":3, "unsnoring":3, "unsnouted":3, "unsnubbed":2, "unsnuffed":2, "unsnug":2, "unsoaked":2, "unsoaped":2, "unsoarable":4, "unsoaring":3, "unsocketed":4, "unsoft":2, "unsoftening":4, "unsoggy":3, "unsoiled":2, "unsoiling":3, "unsold":2, "unsole":2, "unsoled":2, "unsolved":2, "unsolvable":4, "unsolvableness":5, "unsolaced":3, "unsolacing":4, "unsoldierlike":4, "unsolemn":3, "unsolemnised":4, "unsolemnized":4, "unsolid":3, "unsoling":3, "unsolidarity":6, "unsolitary":5, "unsoluble":4, "unsolubleness":5, "unsomber":3, "unsombre":3, "unsomnolent":4, "unsonsy":3, "unsoothed":2, "unsoothable":4, "unsoothing":3, "unsooty":3, "unsophomoric":5, "unsophomorical":6, "unsore":2, "unsort":2, "unsortable":4, "unsordid":3, "unsorrowing":4, "unsorry":3, "unsotted":3, "unsought":2, "unsoulful":3, "unsoulish":3, "unsound":2, "unsoundable":4, "unsounded":3, "unsounding":3, "unsoundly":3, "unsoundness":3, "unsour":2, "unsoused":2, "unsovereign":4, "unsowed":2, "unsown":2, "unsober":3, "unsobered":3, "unsobering":4, "unsocial":3, "unsocialised":4, "unsocialism":4, "unsocialising":5, "unsocialistic":5, "unsocialized":4, "unsocializable":6, "unsocializing":5, "unsocially":4, "unsociable":4, "unsociological":7, "unsolar":3, "unsolemnified":5, "unsolicited":5, "unsolicitated":6, "unsolicitous":5, "unsolidified":5, "unsolidity":5, "unsomatic":4, "unsonant":3, "unsonantal":4, "unsonorous":4, "unsophistic":4, "unsophistical":5, "unsophisticated":6, "unsophisticatedly":7, "unsophisticatedness":7, "unsophistication":6, "unsoporiferous":6, "unsoporific":5, "unspaced":2, "unspaded":3, "unspan":2, "unspanked":2, "unspanned":2, "unspangled":3, "unspanning":3, "unspared":2, "unsparked":2, "unsparkling":3, "unsparred":2, "unsparse":2, "unsparing":3, "unsparspeaking":4, "unsparspoke":3, "unspasmed":2, "unspasmodic":4, "unspasmodical":5, "unspattered":3, "unspawned":2, "unspayed":2, "unspacious":3, "unspatial":3, "unspatiality":6, "unspeak":2, "unspeakable":4, "unspeakableness":5, "unspeakably":4, "unspeared":2, "unspecked":2, "unspeckled":3, "unspecified":4, "unspecifiable":6, "unspecifying":5, "unspectacular":5, "unspectacled":4, "unspeculating":5, "unspeculative":5, "unspeculatory":6, "unspeedily":4, "unspeediness":4, "unspeedy":3, "unspelled":2, "unspellable":4, "unspelt":2, "unspendable":4, "unspending":3, "unspent":2, "unspewed":2, "unspecialised":4, "unspecialising":5, "unspecialized":4, "unspecializing":5, "unspecific":4, "unspecifically":6, "unspecious":3, "unsphere":2, "unsphered":2, "unsphering":3, "unspherical":4, "unspiced":2, "unspicily":4, "unspiciness":4, "unspicy":3, "unspied":2, "unspilled":2, "unspilt":2, "unspinnable":4, "unspinning":3, "unspired":2, "unspiring":3, "unspirited":4, "unspiriting":4, "unspiritualised":6, "unspiritualising":7, "unspiritualized":6, "unspiritualizing":7, "unspirituous":5, "unspiritual":5, "unspirituality":7, "unspiteful":3, "unspited":3, "unspitted":3, "unspiral":3, "unspiraled":3, "unspiralled":3, "unsplashed":2, "unsplattered":3, "unsplayed":2, "unspleenish":3, "unsplendid":3, "unsplendorous":4, "unsplendourous":4, "unsplenetic":4, "unsplenetically":6, "unspliced":2, "unsplinted":3, "unsplintered":3, "unsplit":2, "unsplittable":4, "unspoiled":2, "unspoilt":2, "unspoilable":4, "unsponged":2, "unspongy":3, "unsponsored":3, "unspontaneous":5, "unsportsmanlike":4, "unsportsmanly":4, "unsported":3, "unsportful":3, "unsporting":3, "unsportive":3, "unspotlighted":4, "unspottable":4, "unspotted":3, "unspoused":2, "unspouted":3, "unspoken":3, "unsprained":2, "unsprayed":2, "unsprayable":4, "unspread":2, "unspreadable":4, "unspreading":3, "unsprightly":3, "unspringing":3, "unsprinkled":3, "unsprinklered":3, "unsprouted":3, "unsprouting":3, "unspruced":2, "unsprung":2, "unspun":2, "unspurned":2, "unspurred":2, "unsputtering":4, "unspurious":4, "unspying":3, "unsquabbling":3, "unsquandered":3, "unsquared":2, "unsquarable":4, "unsquashed":2, "unsquashable":4, "unsqueamish":3, "unsqueezed":2, "unsqueezable":4, "unsquelched":2, "unsquinting":3, "unsquired":2, "unsquirming":3, "unsquirted":3, "unstabbed":2, "unstack":2, "unstacked":2, "unstaffed":2, "unstaged":2, "unstaggered":3, "unstaggering":4, "unstagily":4, "unstaginess":4, "unstagnant":3, "unstagnating":4, "unstagy":3, "unstaid":2, "unstained":2, "unstainable":4, "unstaled":2, "unstalemated":4, "unstalked":2, "unstalled":2, "unstamped":2, "unstammering":4, "unstampeded":4, "unstanch":2, "unstanchable":4, "unstandard":3, "unstandardised":4, "unstandardisable":6, "unstandardized":4, "unstandardizable":6, "unstanding":3, "unstanzaic":4, "unstarched":2, "unstarred":2, "unstarted":3, "unstarting":3, "unstarved":2, "unstartled":3, "unstartling":3, "unstate":2, "unstatesmanlike":4, "unstateable":4, "unstatable":4, "unstated":3, "unstatic":3, "unstating":3, "unstatical":4, "unstatued":3, "unstatuesque":4, "unstaunch":2, "unstaunchable":4, "unstaved":2, "unstayable":4, "unstaying":3, "unstabilised":4, "unstabilising":5, "unstabilized":4, "unstabilizing":5, "unstable":3, "unstabled":3, "unstableness":4, "unstably":3, "unstapled":3, "unstation":3, "unstationed":3, "unstationary":5, "unstatistic":4, "unstatistical":5, "unsteadfast":3, "unsteadied":3, "unsteady":3, "unsteadying":4, "unstealthily":4, "unstealthiness":4, "unstealthy":3, "unsteamed":2, "unsteaming":3, "unsteel":2, "unsteeped":2, "unsteered":2, "unsteepled":3, "unstemmed":2, "unstentorian":5, "unstentoriously":6, "unstep":2, "unstepped":2, "unstepping":3, "unstern":2, "unstereotyped":5, "unsterile":3, "unsterilized":4, "unstethoscoped":4, "unstewed":2, "unstick":2, "unsticking":3, "unsticky":3, "unstiff":2, "unstiffened":3, "unstigmatic":4, "unstigmatised":4, "unstigmatized":4, "unstilled":2, "unstilted":3, "unstimulated":5, "unstimulating":5, "unstimulable":5, "unstimulative":5, "unstinging":3, "unstinted":3, "unstinting":3, "unstippled":3, "unstipulated":5, "unstirred":2, "unstirrable":4, "unstirring":3, "unstitched":2, "unstitching":3, "unstifled":3, "unstifling":3, "unstocked":2, "unstockinged":3, "unstoked":2, "unstoned":2, "unstoneable":4, "unstonable":4, "unstonily":4, "unstoniness":4, "unstony":3, "unstooped":2, "unstooping":3, "unstop":2, "unstopped":2, "unstoppable":4, "unstoppably":4, "unstopper":3, "unstopping":3, "unstormed":2, "unstormable":4, "unstormily":4, "unstorminess":4, "unstormy":3, "unstorable":4, "unstout":2, "unstoic":3, "unstoical":4, "unstolen":3, "unstoried":3, "unstraddled":3, "unstrafed":2, "unstraight":2, "unstraightened":3, "unstraightforward":4, "unstrained":2, "unstraitened":3, "unstranded":3, "unstrange":2, "unstrangled":3, "unstrangulable":5, "unstratified":4, "unstraying":3, "unstrategic":4, "unstrategical":5, "unstreaked":2, "unstreamed":2, "unstreaming":3, "unstreamlined":3, "unstrengthened":3, "unstrengthening":4, "unstrenuous":4, "unstrepitous":4, "unstress":2, "unstressed":2, "unstretched":2, "unstretchable":4, "unstrewed":2, "unstrewn":2, "unstricken":3, "unstrict":2, "unstridulating":5, "unstridulous":4, "unstriking":3, "unstring":2, "unstringed":2, "unstringing":3, "unstringent":3, "unstriped":2, "unstripped":2, "unstriving":3, "unstriated":4, "unstrident":3, "unstroked":2, "unstructured":3, "unstructural":4, "unstruggling":3, "unstrung":2, "unstubbed":2, "unstubbled":3, "unstubborn":3, "unstuck":2, "unstuccoed":3, "unstudded":3, "unstudied":3, "unstuffed":2, "unstuffily":4, "unstuffiness":4, "unstuffy":3, "unstultified":4, "unstultifying":5, "unstumbling":3, "unstung":2, "unstunned":2, "unstunted":3, "unsturdily":4, "unsturdiness":4, "unsturdy":3, "unstuttered":3, "unstuttering":4, "unstudious":4, "unstupefied":4, "unstupid":3, "unstyled":2, "unstylish":3, "unstylized":3, "unsubdivided":5, "unsubducted":4, "unsubdued":3, "unsubduable":5, "unsubject":3, "unsubjected":4, "unsubjective":4, "unsubjugated":5, "unsublimed":3, "unsublimated":5, "unsubmerged":3, "unsubmerging":4, "unsubmergible":5, "unsubmersible":5, "unsubmissive":4, "unsubmitted":4, "unsubmitting":4, "unsuborned":3, "unsubordinate":5, "unsubordinated":6, "unsubordinative":6, "unsubpoenaed":4, "unsubrogated":5, "unsubscribed":3, "unsubscribing":4, "unsubservient":5, "unsubsided":4, "unsubsiding":4, "unsubsidiary":6, "unsubsidized":4, "unsubstantial":4, "unsubstantially":5, "unsubstantive":4, "unsubstantiality":7, "unsubstantiated":6, "unsubstituted":5, "unsubstitutive":5, "unsubtle":3, "unsubtleness":4, "unsubtracted":4, "unsubtractive":4, "unsuburbed":3, "unsuburban":4, "unsubventioned":4, "unsubventionized":5, "unsubverted":4, "unsubversive":4, "unsucked":2, "unsuckled":3, "unsucceeded":4, "unsucceeding":4, "unsuccess":3, "unsuccessful":4, "unsuccessfully":5, "unsuccessfulness":5, "unsuccessive":4, "unsuccinct":3, "unsuccored":3, "unsuccorable":5, "unsuccumbing":4, "unsucculent":4, "unsued":2, "unsufferable":5, "unsufferableness":6, "unsuffering":4, "unsufficing":4, "unsuffixed":3, "unsuffocated":5, "unsuffocative":5, "unsuffused":3, "unsuffusive":4, "unsugared":3, "unsugary":4, "unsuggested":4, "unsuggesting":4, "unsuggestible":5, "unsuggestive":4, "unsuitable":4, "unsuited":3, "unsuiting":3, "unsulkily":4, "unsulkiness":4, "unsulky":3, "unsulfonated":5, "unsulfureous":5, "unsulfurized":4, "unsullen":3, "unsullenly":4, "unsullied":3, "unsulliable":5, "unsulphonated":5, "unsulphureous":5, "unsulphurized":4, "unsultry":3, "unsumptuous":4, "unsummable":4, "unsummarised":4, "unsummarisable":6, "unsummarized":4, "unsummarizable":6, "unsummoned":3, "unsummonable":5, "unsung":2, "unsunk":2, "unsunken":3, "unsunburned":3, "unsunburnt":3, "unsundered":3, "unsunny":3, "unsupplantable":5, "unsupplanted":4, "unsupple":3, "unsupplemented":5, "unsupplemental":5, "unsupplementary":6, "unsuppleness":4, "unsupplied":3, "unsuppliant":4, "unsuppliable":5, "unsupplicated":5, "unsupplicating":5, "unsupportable":5, "unsupportableness":6, "unsupported":4, "unsupporting":4, "unsupposed":3, "unsupposable":5, "unsuppositive":5, "unsuppositional":6, "unsuppressed":3, "unsuppressible":5, "unsuppressive":4, "unsuppurated":5, "unsuppurative":5, "unsure":2, "unsurging":3, "unsurcharged":3, "unsurfaced":3, "unsurfeited":4, "unsurfeiting":4, "unsurgical":4, "unsurlily":4, "unsurliness":4, "unsurly":3, "unsurmised":3, "unsurmising":4, "unsurmountable":5, "unsurmounted":4, "unsurnamed":3, "unsurpassed":3, "unsurpassable":5, "unsurpliced":3, "unsurprised":3, "unsurprising":4, "unsurrendered":4, "unsurrendering":5, "unsurrealistic":6, "unsurrealistically":8, "unsurrounded":4, "unsurveyed":3, "unsurveyable":5, "unsurvived":3, "unsurviving":4, "unsusceptive":4, "unsusceptibility":7, "unsusceptible":5, "unsusceptibleness":6, "unsuspected":4, "unsuspectedly":5, "unsuspectedness":5, "unsuspectful":4, "unsuspecting":4, "unsuspended":4, "unsuspendible":5, "unsuspicious":4, "unsustained":3, "unsustainable":5, "unsustaining":4, "unsuicidal":5, "unsupercilious":6, "unsuperficial":5, "unsuperfluous":5, "unsuperlative":5, "unsupernatural":6, "unsuperscribed":4, "unsuperseded":5, "unsuperseding":5, "unsuperstitious":5, "unsupervised":4, "unsupervisory":6, "unsuperior":5, "unsupine":3, "unsutured":3, "unswabbed":2, "unswaddled":3, "unswaddling":3, "unswaggering":4, "unswallowed":3, "unswallowable":5, "unswampy":3, "unswapped":2, "unswarming":3, "unswathe":2, "unswathed":2, "unswatheable":4, "unswathing":3, "unswayed":2, "unswayable":4, "unswaying":3, "unswear":2, "unswearing":3, "unsweated":3, "unsweating":3, "unsweepable":4, "unsweetened":3, "unswelled":2, "unswelling":3, "unsweltered":3, "unsweltering":4, "unswept":2, "unswerved":2, "unswervable":4, "unswerving":3, "unswilled":2, "unswingled":3, "unswitched":2, "unswivel":3, "unswiveled":3, "unswivelled":3, "unswiveling":4, "unswivelling":4, "unswollen":3, "unswooning":3, "unswore":2, "unsworn":2, "unswung":2, "unsyllabicated":6, "unsyllabified":5, "unsyllabled":4, "unsyllogistic":5, "unsyllogistical":6, "unsymptomatic":5, "unsymptomatical":6, "unsymbolic":4, "unsymbolised":4, "unsymbolized":4, "unsymbolical":5, "unsymmetrical":5, "unsymmetrized":4, "unsympathetic":5, "unsympathetically":7, "unsympathised":4, "unsympathising":5, "unsympathized":4, "unsympathizing":5, "unsymphonious":5, "unsynchronised":4, "unsynchronized":4, "unsynchronous":4, "unsyncopated":5, "unsyndicated":5, "unsynonymous":5, "unsyntactic":4, "unsyntactical":5, "unsynthetic":4, "unsynthetically":6, "unsynthesised":4, "unsynthesized":4, "unsyringed":3, "unsystematic":5, "unsystematical":6, "unsystematised":5, "unsystematising":6, "unsystematized":5, "unsystematizing":6, "untabernacled":5, "untabulated":5, "untabulable":5, "untack":2, "untackling":3, "untactful":3, "untaciturn":4, "untactile":3, "untactical":4, "untactual":4, "untagged":2, "untailed":2, "untaintable":4, "untainted":3, "untainting":3, "untailored":3, "untakeable":4, "untakable":4, "untaking":3, "untalkative":4, "untalking":3, "untalented":4, "untallied":3, "untallowed":3, "untaloned":3, "untame":2, "untamed":2, "untameable":4, "untamable":4, "untampered":3, "untanned":2, "untangental":4, "untangential":4, "untangible":4, "untangle":3, "untantalised":4, "untantalising":5, "untantalized":4, "untantalizing":5, "untaped":2, "untapped":2, "untapestried":4, "untappable":4, "untarred":2, "untarnished":3, "untarnishable":5, "untarnishing":4, "untarried":3, "untarrying":4, "untartarized":4, "untasked":2, "untasteable":4, "untasteful":3, "untastable":4, "untasted":3, "untasting":3, "untastily":4, "untasty":3, "untasseled":3, "untasselled":3, "untattered":3, "untattooed":3, "untaught":2, "untaunted":3, "untaunting":3, "untaut":2, "untautological":6, "untawed":2, "untawdry":3, "untaxable":4, "untaxied":3, "untaxing":3, "untabled":3, "untapered":3, "untapering":4, "unteach":2, "unteachable":4, "unteaching":3, "unteamed":2, "untearable":4, "unteased":2, "unteaseled":3, "unteaselled":3, "untechnical":4, "untedded":3, "unteeming":3, "untellable":4, "untelling":3, "untelegraphed":4, "untelevised":4, "untelic":3, "untemptable":4, "untempted":3, "untempting":3, "untempered":3, "untemperate":4, "untemperable":5, "untemperamental":6, "untempering":4, "untempestuous":5, "untempled":3, "untemporal":4, "untemporary":5, "untended":3, "untense":2, "untensing":3, "untenantable":5, "untenanted":4, "untenability":6, "untenable":4, "untenableness":5, "untendered":3, "untenderized":4, "untenderly":4, "untenebrous":4, "untensile":3, "untensibility":6, "untensible":4, "untentacled":4, "untentered":3, "untenuous":4, "unter den linden":5, "unterse":2, "untermeyer":4, "unterminated":5, "unterminating":5, "unterminational":6, "unterminative":5, "unterraced":3, "unterrestrial":5, "unterrific":4, "unterrifically":6, "unterrible":4, "unterrified":4, "unterrifying":5, "unterrorized":4, "unterwalden":4, "untestable":4, "untested":3, "untessellated":5, "untestamental":5, "untestamentary":6, "untestifying":5, "untethered":3, "untethering":4, "untextural":4, "untextual":4, "untedious":4, "untenacity":5, "untenacious":4, "unthanked":2, "unthankful":3, "unthankfully":4, "unthankfulness":4, "unthanking":3, "unthatch":2, "unthawed":2, "unthawing":3, "untherapeutic":5, "untherapeutical":6, "untheatric":4, "untheatrical":5, "untheistic":4, "untheistical":5, "unthematic":4, "unthematically":6, "untheologic":5, "untheological":6, "untheoretic":5, "untheoretical":6, "unthick":2, "unthicken":3, "unthievish":3, "unthink":2, "unthinkability":6, "unthinkable":4, "unthinkableness":5, "unthinkably":4, "unthinking":3, "unthinkingly":4, "unthinkingness":4, "unthinned":2, "unthinning":3, "unthirsting":3, "unthirsty":3, "unthorn":2, "unthorny":3, "unthorough":3, "unthought":2, "unthoughtful":3, "unthralled":2, "unthrashed":2, "unthread":2, "unthreadable":4, "unthreaded":3, "unthreatening":4, "unthreshed":2, "unthriftily":4, "unthriftiness":4, "unthrifty":3, "unthrilled":2, "unthrilling":3, "unthriving":3, "unthroatily":4, "unthroaty":3, "unthrobbing":3, "unthrone":2, "unthroned":2, "unthronged":2, "unthroning":3, "unthrottled":3, "unthrown":2, "unthrowable":4, "unthrust":2, "unthumped":2, "unthundering":4, "unthwacked":2, "unthwartable":4, "unthwarted":3, "unthwarting":3, "unticketed":4, "untickled":3, "untidal":3, "untie":2, "untied":2, "untiered":2, "untighten":3, "until":2, "untiled":2, "untilled":2, "untillable":4, "untilling":3, "untilt":2, "untimed":2, "untimeliness":4, "untimely":3, "untimeous":3, "untimbered":3, "untimid":3, "untimorous":4, "untinctured":3, "untinged":2, "untinned":2, "untinted":3, "untindered":3, "untinkered":3, "untinseled":3, "untinselled":3, "untippable":4, "untippled":3, "untired":2, "untiring":3, "untissued":3, "untithed":2, "untithable":4, "untitillated":5, "untitillating":5, "untitled":3, "untittering":4, "untitular":4, "untidied":3, "untidier":4, "untidiest":4, "untidily":4, "untidiness":4, "untidy":3, "untidying":4, "unto":2, "untoadying":4, "untoasted":3, "untoiling":3, "untold":2, "untolled":2, "untolerated":5, "untolerating":5, "untolerable":5, "untolerableness":6, "untolerative":5, "untombed":2, "untoned":2, "untongued":2, "untonsured":3, "untooled":2, "untopped":2, "untopographical":6, "untoppable":4, "untopping":3, "untoppled":3, "untorn":2, "untormented":4, "untormenting":4, "untorpedoed":4, "untorpid":3, "untorporific":5, "untorrid":3, "untorridity":5, "untortious":3, "untortured":3, "untortuous":4, "untossed":2, "untotted":3, "untottering":4, "untouched":2, "untouchability":6, "untouchable":4, "untouchably":4, "untouching":3, "untough":2, "untoured":2, "untoxic":3, "untoxically":5, "untogaed":3, "untotaled":3, "untotalled":3, "untoward":3, "untowardness":4, "untraced":2, "untraceable":4, "untracked":2, "untraceried":4, "untractability":6, "untractable":4, "untractableness":5, "untradeable":4, "untradable":4, "untraded":3, "untrading":3, "untrafficked":3, "untragic":3, "untragical":4, "untrailed":2, "untrailered":3, "untrailerable":5, "untrailing":3, "untrained":2, "untrainable":4, "untraitorous":4, "untrammed":2, "untramped":2, "untrammeled":3, "untrammelled":3, "untrampled":3, "untransacted":4, "untransferred":3, "untransferable":5, "untransferring":4, "untransfigured":4, "untransfixed":3, "untransformed":3, "untransformable":5, "untransformative":5, "untransforming":4, "untransfused":3, "untransfusible":5, "untransgressed":3, "untranslatable":5, "untranslated":4, "untransmissive":4, "untransmissible":5, "untransmitted":4, "untransmigrated":5, "untransmutability":7, "untransmutable":5, "untransmutableness":6, "untransmuted":4, "untransparent":4, "untransplanted":4, "untransportable":5, "untransported":4, "untransposed":3, "untranquil":3, "untranquilize":4, "untranquilized":4, "untranquilizing":5, "untranquillise":4, "untranquillised":4, "untranquillising":5, "untranscended":4, "untranscendent":4, "untranscendental":5, "untranscribed":3, "untranscribable":5, "untransient":3, "untransitional":5, "untransitive":4, "untransitorily":6, "untransitoriness":6, "untransitory":5, "untranspired":3, "untranspiring":4, "untransubstantiated":7, "untrapped":2, "untrashed":2, "untraumatic":4, "untraveled":3, "untravelled":3, "untraveling":4, "untravelling":4, "untraversed":3, "untraversable":5, "untravestied":4, "untraditional":5, "untraduced":3, "untreacherous":4, "untread":2, "untreadable":4, "untreading":3, "untreasured":3, "untreasurable":5, "untreatable":4, "untreated":3, "untreasonable":5, "untreed":2, "untrekked":2, "untrellised":3, "untrembling":3, "untremolant":4, "untremulant":4, "untremulent":4, "untremulous":4, "untrenched":2, "untressed":2, "untrespassed":3, "untrespassing":4, "untremendous":4, "untrepanned":3, "untribal":3, "untributarily":6, "untributary":5, "untriced":2, "untricked":2, "untrickable":4, "untried":2, "untrig":2, "untriggered":3, "untrigonometric":6, "untrigonometrical":7, "untrimmed":2, "untrimmedness":3, "untrimmable":4, "untrinitarian":6, "untripped":2, "untripping":3, "untrite":2, "untriturated":5, "untrivial":4, "untriable":4, "untrifling":3, "untriumphant":4, "untrod":2, "untrodden":3, "untrolled":2, "untropic":3, "untropical":4, "untrotted":3, "untrounced":2, "untroubled":3, "untroublesome":4, "untrochaic":4, "untrophied":3, "untruckled":3, "untruckling":3, "untrue":2, "untrumped":2, "untrumping":3, "untrumpeted":4, "untrundled":3, "untruss":2, "untrustable":4, "untrusted":3, "untrustful":3, "untrusting":3, "untrustworthily":5, "untrustworthy":4, "untruth":2, "untruthful":3, "untruthfully":4, "untruthfulness":4, "untruant":3, "untrying":3, "untubbed":2, "untuck":2, "untufted":3, "untugged":2, "untumbled":3, "untune":2, "untuned":2, "untuneable":4, "untuneableness":5, "untuneful":3, "untunable":4, "untunableness":5, "untuning":3, "untunneled":3, "untunnelled":3, "unturfed":2, "unturned":2, "unturnable":4, "unturning":3, "unturbaned":3, "unturbid":3, "unturbulent":4, "unturgid":3, "unturpentined":4, "unturreted":4, "untusked":2, "untubercular":5, "untuberculous":5, "untumefied":4, "untumid":3, "untumidity":5, "untumultuous":5, "untutelar":4, "untutelary":5, "untutored":3, "untwilled":2, "untwine":2, "untwined":2, "untwinned":2, "untwining":3, "untwinkled":3, "untwinkling":3, "untwirled":2, "untwirling":3, "untwistable":4, "untwitched":2, "untwitching":3, "untyped":2, "untypical":4, "untyrannised":4, "untyrannized":4, "untying":3, "untyrantlike":4, "untyrannic":4, "untyrannical":5, "unulcerated":5, "unulcerative":5, "unulcerous":4, "unumpired":3, "ununionized":4, "unupbraided":4, "unupbraiding":4, "unupholstered":4, "unupset":3, "unupsettable":5, "unurged":2, "unurging":3, "unurban":3, "unurbane":3, "unurbanized":4, "unurgent":3, "unused":2, "unuseable":4, "unuseableness":5, "unuseful":3, "unushered":3, "unusable":4, "unusableness":5, "unuttered":3, "unutterable":5, "unutterably":5, "unuxorious":5, "unubiquitous":5, "ununique":3, "ununitable":5, "ununited":4, "ununiting":4, "ununified":4, "ununifiable":6, "ununiformed":4, "unusurped":3, "unusurping":4, "unusual":4, "unusuality":6, "unusually":5, "unusualness":5, "unusurious":5, "unutilitarian":7, "unutilized":4, "unutilizable":6, "unvaccinated":5, "unvacillating":5, "unvacuous":4, "unvague":2, "unvain":2, "unvaleted":4, "unvaliant":3, "unvalidated":5, "unvalidating":5, "unvalorous":4, "unvalued":3, "unvaluable":5, "unvamped":2, "unvanishing":4, "unvanquished":3, "unvanquishable":5, "unvanquishing":4, "unvaried":3, "unvariant":4, "unvariable":5, "unvariableness":6, "unvariegated":6, "unvarnished":3, "unvarying":4, "unvascular":4, "unvasculous":4, "unvatted":3, "unvaulted":3, "unvaulting":3, "unvacant":3, "unvacated":4, "unvagrant":3, "unvaporized":4, "unvaporosity":6, "unvaporous":4, "unveering":3, "unveil":2, "unveiling":3, "unveined":2, "unvelvety":4, "unvendable":4, "unvended":3, "unvendible":4, "unvengeful":3, "unventable":4, "unvented":3, "unvenerated":5, "unvenerability":7, "unvenerable":5, "unvenerableness":6, "unvenerative":5, "unvenomed":3, "unvenomous":4, "unventilated":5, "unventured":3, "unventuresome":4, "unventurous":4, "unversed":2, "unverbal":3, "unverbalized":4, "unverbose":3, "unverdant":3, "unverdured":3, "unverdurous":4, "unverified":4, "unverifiable":5, "unverifiability":8, "unverificative":6, "unveritable":5, "unveritableness":6, "unvermiculated":6, "unverminous":4, "unversatile":4, "unversatility":6, "unversified":4, "unvertebrate":4, "unvertiginous":5, "unvertical":4, "unvested":3, "unvesseled":3, "unvexed":2, "unvexatious":4, "unvehement":4, "unvenal":3, "unveneered":3, "unvenereal":5, "unvenial":4, "unveniality":6, "unveracious":4, "unveridic":4, "unveridical":5, "unvesiculated":6, "unvetoed":3, "unvictimized":4, "unvictorious":5, "unvictualled":3, "unvictualed":4, "unviewed":2, "unviewable":4, "unvigilant":4, "unvigorous":4, "unvilified":4, "unvillainous":4, "unvindictive":4, "unvindicated":5, "unvindicable":5, "unvintaged":3, "unvirgin":3, "unvirginal":4, "unvirginlike":4, "unvirile":3, "unvirtuous":4, "unvirulent":4, "unvisceral":4, "unvisitable":5, "unvisited":4, "unvisiting":4, "unvisible":4, "unvisibleness":5, "unvistaed":3, "unvisual":4, "unvisualised":5, "unvisualized":5, "unvitreous":4, "unvitrified":4, "unvitrifiable":6, "unvitriolized":5, "unvivid":3, "unvivified":4, "unvizarded":4, "unviable":4, "unvibrant":3, "unvibrated":4, "unvibrating":4, "unvibrational":5, "unvicarious":5, "unvicious":3, "unvinous":3, "unviolated":5, "unviolable":5, "unviolableness":6, "unviolative":5, "unviolent":4, "unvisioned":3, "unvisionary":5, "unvisored":3, "unvital":3, "unvitalized":4, "unvitalizing":5, "unvitiated":5, "unvitiating":5, "unvitiable":5, "unvitrescent":4, "unvitreosity":6, "unvituperated":6, "unvituperative":6, "unvivacious":4, "unvizored":3, "unvoice":2, "unvoiced":2, "unvoicing":3, "unvoid":2, "unvoidable":4, "unvoided":3, "unvolatile":4, "unvolatilised":5, "unvolatilized":5, "unvolcanic":4, "unvolcanically":6, "unvolitive":4, "unvolumed":3, "unvoluntarily":6, "unvoluntary":5, "unvolunteering":5, "unvoluble":4, "unvolubleness":5, "unvomited":4, "unvoted":3, "unvoting":3, "unvouched":2, "unvouchsafed":3, "unvowed":2, "unvoyaging":4, "unvocal":3, "unvocalised":4, "unvocalized":4, "unvocable":4, "unvociferous":5, "unvolitional":5, "unvoluptuous":5, "unvoluminous":5, "unvoracious":4, "unvulcanised":4, "unvulcanized":4, "unvulgar":3, "unvulgarise":4, "unvulgarised":4, "unvulgarising":5, "unvulgarize":4, "unvulgarized":4, "unvulgarizing":5, "unvulnerable":5, "unvulturine":4, "unvulturous":4, "unvying":3, "unwadeable":4, "unwadable":4, "unwadded":3, "unwaddling":3, "unwaded":3, "unwading":3, "unwafted":3, "unwagged":2, "unwailed":2, "unwailing":3, "unwainscoted":4, "unwainscotted":4, "unwaived":2, "unwaked":2, "unwakeful":3, "unwakened":3, "unwakening":4, "unwaking":3, "unwalked":2, "unwall":2, "unwaned":2, "unwanted":3, "unwandering":4, "unwaning":3, "unwanton":3, "unwarmed":2, "unwarmable":4, "unwarming":3, "unwarned":2, "unwarped":2, "unwarpable":4, "unwarping":3, "unwarbled":3, "unwarlike":3, "unwarrantable":5, "unwarranted":4, "unwary":3, "unwashed":2, "unwashable":4, "unwasteful":3, "unwastable":4, "unwasted":3, "unwatched":2, "unwatchable":4, "unwatchful":3, "unwatching":3, "unwattled":3, "unwaved":2, "unwaving":3, "unwaxed":2, "unwayward":3, "unwagered":3, "unwatered":3, "unwatermarked":4, "unwatery":4, "unwavered":3, "unwaverable":5, "unwavering":4, "unweakened":3, "unweakening":4, "unwealthy":3, "unweaned":2, "unweaponed":3, "unwearable":4, "unwearing":3, "unweathered":3, "unweave":2, "unweaving":3, "unwearied":3, "unweariedly":4, "unweariedness":4, "unwearisome":4, "unweary":3, "unwearying":4, "unwebbed":2, "unwebbing":3, "unwed":2, "unwedge":2, "unwedged":2, "unwedging":3, "unwedded":3, "unweeded":3, "unweened":2, "unweeping":3, "unweighed":2, "unweighted":3, "unweighty":3, "unweighable":4, "unweighing":3, "unweldable":4, "unwelded":3, "unwell":2, "unwell-intentioned":4, "unwelted":3, "unwelcome":3, "unwelcomed":3, "unwelcoming":4, "unwept":2, "unwestern":3, "unwesternized":4, "unwet":2, "unwetted":3, "unwheel":2, "unwheedled":3, "unwhelped":2, "unwhetted":3, "unwhimpering":4, "unwhimsical":4, "unwhining":3, "unwhipped":2, "unwhipt":2, "unwhirled":2, "unwhisked":2, "unwhiskered":3, "unwhispered":3, "unwhisperable":5, "unwhispering":4, "unwhistled":3, "unwhite":2, "unwhitewashed":3, "unwhited":3, "unwhitened":3, "unwholesome":3, "unwholesomely":4, "unwholesomeness":4, "unwicked":3, "unwidened":3, "unwidowed":3, "unwieldable":4, "unwieldily":4, "unwieldiness":4, "unwieldly":3, "unwieldy":3, "unwifelike":3, "unwifely":3, "unwig":2, "unwigged":2, "unwigging":3, "unwild":2, "unwilled":2, "unwillable":4, "unwillful":3, "unwilling":3, "unwillingly":4, "unwillingness":4, "unwilted":3, "unwilting":3, "unwilful":3, "unwily":3, "unwind":2, "unwindable":4, "unwinded":3, "unwinder":3, "unwindy":3, "unwinged":2, "unwinking":3, "unwindowed":3, "unwinnable":4, "unwinning":3, "unwinnowed":3, "unwinsome":3, "unwintry":3, "unwiped":2, "unwired":2, "unwirable":4, "unwise":2, "unwisely":3, "unwiseness":3, "unwish":2, "unwished":2, "unwished-for":2, "unwishful":3, "unwistful":3, "unwisdom":3, "unwit":2, "unwitched":2, "unwithdrawn":3, "unwithdrawable":5, "unwithdrawing":4, "unwithered":3, "unwitherable":5, "unwithering":4, "unwithheld":3, "unwithholding":4, "unwithstanding":4, "unwithstood":3, "unwitnessed":3, "unwitting":3, "unwittingly":4, "unwittingness":4, "unwitty":3, "unwoeful":3, "unwomb":2, "unwomanish":4, "unwomanlike":4, "unwomanly":4, "unwon":2, "unwonted":3, "unwontedly":4, "unwontedness":4, "unwonderful":4, "unwondering":4, "unwooded":3, "unwooed":2, "unwordable":4, "unworked":2, "unworkable":4, "unworking":3, "unworkmanlike":4, "unworkmanly":4, "unworldliness":4, "unworldly":3, "unworm-eaten":3, "unworminess":4, "unwormy":3, "unworn":2, "unworried":3, "unworshiped":3, "unworshipped":3, "unworshiping":4, "unworshipping":4, "unworthy":3, "unwound":2, "unwounded":3, "unwove":2, "unwoven":3, "unwrangling":3, "unwrap":2, "unwrapped":2, "unwrapping":3, "unwrathful":3, "unwreathe":2, "unwreathed":2, "unwreathing":3, "unwrecked":2, "unwrenched":2, "unwrested":3, "unwresting":3, "unwrestled":3, "unwretched":2, "unwriggled":3, "unwrinkle":3, "unwrinkleable":5, "unwritable":4, "unwriting":3, "unwritten":3, "unwritten law":4, "unwronged":2, "unwrongful":3, "unwrought":2, "unwrung":2, "unyachtsmanlike":4, "unyearned":2, "unyearning":3, "unyielded":3, "unyielding":3, "unyoke":2, "unyouthful":3, "unzealous":3, "unzip":2, "unzipped":2, "unzipping":3, "unzone":2, "unzoned":2, "unzoning":3, "up-and-coming":2, "up-and-over":2, "up-and-under":2, "up-anchor":2, "up-bow":1, "up-market":2, "up-to-dately":2, "up-to-dateness":2, "up-to-the-minute":2, "upi":1, "uppsala":3, "upu":1, "upbear":2, "upbearer":3, "upbearing":3, "upbeat":2, "upbore":2, "upborne":2, "upbound":2, "upbraid":2, "upbraiding":3, "upbraidingly":4, "upbringing":3, "upbuild":2, "upbuilder":3, "upbuilding":3, "upbuilt":2, "upburst":2, "upcased":2, "upcast":2, "upcasting":3, "upcasing":3, "upcountry":3, "upcropping":3, "update":2, "updated":3, "updater":3, "updating":3, "updike":2, "updo":2, "updraft":2, "upend":2, "upfold":2, "upgather":3, "upgrade":2, "upgraded":3, "upgrader":3, "upgrading":3, "upgrowth":2, "upheave":2, "upheaval":3, "upheaver":3, "upheaving":3, "upheld":2, "uphill":2, "uphold":2, "upholder":3, "upholding":3, "upholster":3, "upholsterer":4, "upholsteries":4, "upholstery":4, "uphove":2, "upington":3, "upkeep":2, "upland":2, "upland":2, "upland cotton":4, "upland plover":4, "uplander":3, "uplift":2, "uplifter":3, "upmost":2, "upon":2, "upper":2, "upper atmosphere":5, "upper austria":5, "upper burma":4, "upper canada":5, "upper chamber":4, "upper class":3, "upper crust":3, "upper egypt":4, "upper hand":3, "upper house":3, "upper mordent":4, "upper palaeolithic":7, "upper palatinate":6, "upper peninsula":6, "upper regions":4, "upper silesia":6, "upper tunguska":5, "upper volta":4, "upper works":3, "upper-case":2, "upper-class":2, "upperclassman":4, "uppercut":3, "uppercutting":4, "uppermost":3, "upping":2, "uppish":2, "uppity":3, "upraise":2, "upraised":2, "upraiser":3, "upraising":3, "uprear":2, "upright":2, "upright piano":5, "uprise":2, "uprisen":3, "uprising":3, "upriver":3, "uproar":2, "uproarious":4, "uproariously":5, "uproariousness":5, "uproot":2, "uprootedness":4, "uprooter":3, "uprose":2, "uprouse":2, "uprush":2, "upsadaisy":4, "upsala":3, "upset":2, "upsetting":3, "upshot":2, "upside":2, "upside down":3, "upside-down cake":3, "upsides":2, "upsilon":3, "upspring":2, "upspringing":3, "upsprung":2, "upstage":2, "upstaged":2, "upstaging":3, "upstair":2, "upstairs":2, "upstanding":3, "upstandingness":4, "upstart":2, "upstartness":3, "upstate":2, "upstream":2, "upstretched":2, "upstroke":2, "upsurge":2, "upsurged":2, "upsurging":3, "upsweep":2, "upsweeping":3, "upswell":2, "upswelling":3, "upswept":2, "upswing":2, "upswinging":3, "upswollen":3, "upsy-daisy":3, "uptake":2, "uptear":2, "uptearing":3, "upthrew":2, "upthrow":2, "upthrown":2, "upthrowing":3, "upthrust":2, "uptight":2, "uptilt":2, "upton":2, "uptore":2, "uptorn":2, "uptown":2, "uptowner":3, "uptrend":2, "upturn":2, "upturned":2, "upward":2, "upwards":2, "upwardly":3, "upwardness":3, "upwind":2, "ur-nammu":2, "urc":1, "urd":1, "urd":1, "urge":1, "urger":2, "urging":2, "urgingly":3, "urmston":2, "urn":1, "urnfield":2, "urning":2, "urnlike":2, "uru":1, "urban":2, "urban":2, "urban blues":3, "urban district":4, "urban guerrilla":5, "urban ii":3, "urban renewal":5, "urbane":2, "urbanely":3, "urbaneness":3, "urbanise":3, "urbanised":3, "urbanism":3, "urbanist":3, "urbanising":4, "urbanistic":4, "urbanistically":6, "urbanite":3, "urbanize":3, "urbanity":4, "urbanization":5, "urbi et orbi":5, "urbiculture":4, "urceolate":4, "urchin":2, "urdar":2, "urdor urd":4, "urdu":2, "urdy":2, "urd":3, "urfa":2, "urga":2, "urgel":2, "urgent":2, "urgency":3, "urial":3, "uridine":3, "urmia":3, "urquhart":2, "ursa":2, "ursine":2, "ursine howler":4, "ursiform":3, "ursprache":3, "ursula":3, "ursuline":3, "urtext":2, "urticant":3, "urticaria":5, "urticate":3, "urticaceous":4, "urtication":4, "usa":1, "usaf":1, "use":1, "used":1, "useable":3, "useful":2, "usefully":3, "usefulness":3, "useless":2, "uselessly":3, "uselessness":3, "ushant":2, "ushas":2, "usher":2, "usher":2, "usherette":3, "usia":1, "usis":1, "usk":1, "usm":1, "usn":1, "uss":1, "ussher":2, "ussr":1, "ust-kamenogorsk":4, "ustyurt":2, "usw":1, "usage":2, "usance":2, "usable":3, "usbeg":2, "usbek":2, "user":2, "using":2, "usk":2, "uskub":2, "uskp":3, "uskdar":4, "uskdar":3, "usnach":2, "usnech":2, "uspallata pass":5, "usquebaugh":3, "ussuri":3, "ustinov":3, "ustulate":3, "ustulation":4, "usward":2, "ut infra":3, "ut supra":3, "ute":1, "ute":1, "utgard":2, "utgard-loki":3, "utmost":2, "uttar pradesh":4, "utter":2, "utter barrister":5, "utterance":3, "utterable":4, "utterer":3, "utterless":3, "uttermost":3, "utterness":3, "uvedale":2, "uxbridge":2, "uxmal":2, "uxorial":4, "uxorially":5, "uxoricide":4, "uxoricidal":5, "uxorilocal":5, "uxorious":4, "uxoriously":5, "uxoriousness":5, "uzbeg":2, "uzbek":2, "uzziah":3, "ubangi":3, "ubangi-shari":4, "ube":2, "ubermensch":3, "ubi":2, "ubi supra":4, "ubiquitarian":6, "ubiquitarian":6, "ubiquitarianism":7, "ubiquitary":5, "ubiquitous":4, "ubiety":4, "ubique":3, "ucalegon":4, "ucayali":4, "udaipur":3, "udal":2, "udall":2, "udele":2, "udine":3, "udo":2, "udometer":4, "udos":2, "udom":3, "ufa":2, "ufology":4, "uganda":3, "ugali":3, "ugarit":3, "ugaritic":4, "ugarilier":5, "ugariliest":5, "ugaritian":4, "ugo":2, "ugric":2, "ugrian":3, "ugro-finnic":3, "uhuru":3, "uinta mountains":5, "uintahite":4, "uintathere":4, "ujamaa village":5, "ujiji":3, "ujung pandang":4, "ukase":2, "ukelele":4, "ukiyo-e":3, "ukiyoe":4, "ukraine":2, "ukrainian":4, "ukraina":4, "ukulele":4, "ula":2, "ulan":2, "ulan bator":4, "ulan-ude":3, "ulexite":3, "ulema":3, "uliginose":4, "uliginous":4, "ulotrichous":4, "ulotrichy":4, "ulu":2, "ulysses":3, "umayyad":3, "umenschen":3, "umiac":3, "umiak":3, "una":2, "una corda":4, "unanimous":4, "unanimously":5, "unanimousness":5, "unary":3, "unau":2, "unalaska":4, "unalaska island":6, "unamuno":4, "unanimity":5, "uni":2, "unific":3, "unijugate":4, "uniparous":4, "unipotent":4, "unique":2, "unit":2, "unit cell":3, "unit character":5, "unit factor":4, "unit magnetic pole":6, "unit of account":5, "unit price":3, "unit process":4, "unit trust":3, "unite":2, "uniteable":4, "unity of interest":6, "unitage":3, "unitable":4, "united":3, "united arab emirates":8, "united arab republic":8, "united arab states":6, "united empire loyalist":8, "united kingdom":5, "united nations":5, "united party":5, "united provinces":6, "united reformed church":6, "unitedly":4, "unitedness":4, "uniter":3, "uniting":3, "uniat":3, "uniate":3, "uniatism":4, "uniaxial":5, "uniaxially":6, "unicameral":5, "unicellular":5, "unicellularity":7, "unicolor":4, "unicolored":4, "unicorn":3, "unicostate":4, "unicursal":4, "unicuspid":4, "unicycle":4, "unicyclist":4, "unidirectional":6, "uniface":3, "unified":3, "unification":5, "unifier":4, "unifilar":4, "uniflagellate":5, "uniflorous":4, "uniform":3, "uniformed":3, "uniformise":4, "uniformised":4, "uniformising":5, "uniformize":4, "uniformized":4, "uniformizing":5, "uniforminiform":5, "uniformitarian":7, "uniformitarianism":8, "uniformity":5, "uniformization":6, "uniformless":4, "uniformly":4, "uniformness":4, "uniformalization":7, "unifoliate":5, "unifoliolate":6, "unify":3, "unifying":4, "unijugate":4, "unilateral":5, "unilateralism":6, "unilaterality":7, "unilaterally":6, "unilingual":4, "unilobed":3, "unilocular":5, "unimak island":5, "uniocular":5, "unipersonal":5, "unipersonality":7, "unipetalous":5, "uniplanar":4, "unipod":3, "unipolar":4, "unipotential":5, "uniramous":4, "uniseptate":4, "unisex":3, "unisexual":5, "unisexuality":7, "unisexually":6, "unison":3, "unitarian":5, "unitarian":5, "unitarianism":6, "unitarianism":6, "unitariness":5, "unitary":4, "unitary matrix":6, "unitive":3, "unity":3, "univalve":3, "univalved":3, "univalvular":5, "univalence":4, "univalent":4, "univalency":5, "universe":3, "universe of discourse":6, "universal":4, "universal class":5, "universal donor":6, "universal joint":5, "universal motor":6, "universal soul":5, "universal time":5, "universalise":5, "universalised":5, "universalism":5, "universalism":5, "universalist":5, "universaliser":6, "universalising":6, "universalize":5, "universalized":5, "universalizer":6, "universalizing":6, "universality":6, "universalization":7, "universally":5, "universitarian":7, "university":5, "univocal":4, "upanishad":4, "upas":2, "upaya":3, "upharsin":3, "uphroe":2, "upis":2, "upolu":3, "uraemia":4, "uraeus":3, "uraeuses":4, "ural":2, "ural mountains":4, "ural-altaic":4, "urals":2, "uralic":3, "uralite":3, "uranic":3, "uranism":3, "uraninite":4, "urartian":4, "urate":2, "uratic":3, "uracil":3, "uralian":4, "uranalysis":5, "uranide":3, "uranite":3, "uranitic":4, "urania":4, "uranian":4, "uranium":4, "uranium series":6, "uranographer":5, "uranographist":5, "uranography":5, "uranology":5, "uranometry":5, "uranous":3, "uranographic":5, "uranological":6, "uranometrical":6, "uranus":3, "uranyl":3, "uranylic":4, "urari":3, "uretic":3, "urey":2, "urea":3, "urea-formaldehyde resin":8, "urease":3, "uredinia":5, "uredinial":5, "uredinium":5, "uredia":4, "uredial":4, "uredium":4, "uredo":3, "uredosorus":5, "uredospore":4, "ureide":3, "ureido":4, "uremic":3, "uremia":4, "urena":3, "ureter":3, "ureteral":4, "ureteric":4, "ureterostomy":6, "ureterointestinal":8, "ureterolithotomy":8, "urethan":3, "urethane":3, "urethra":3, "urethral":3, "urethrectomy":5, "urethritic":4, "urethritis":4, "urethroscopy":5, "urethrostomy":5, "urethroscope":4, "urethroscopic":5, "ureylene":4, "uri":2, "uric":2, "uric acid":4, "urim and thummim":5, "urine":2, "uriah":3, "urias":3, "uricolysis":5, "uricolytic":5, "uriel":3, "urinal":3, "urinalysis":5, "urinant":3, "urinary":4, "urinary bladder":6, "urinate":3, "urinated":4, "urinating":4, "urination":4, "urinative":4, "uriniferous":5, "urinose":3, "urinous":3, "urinogenital":6, "urogenous":4, "urology":4, "uropodal":4, "uroscopy":4, "urochord":3, "urochordal":4, "urochrome":3, "urodele":3, "urogenital":5, "urogenital system":7, "urogomphus":4, "urolith":3, "urolithic":4, "uromeric":4, "uropod":3, "uropygial":5, "uropygial gland":6, "uropygium":5, "urostyle":3, "uroxanthin":4, "uruapan":3, "uruk":2, "urumchi":3, "urumtsi":3, "urundi":3, "urus":2, "uruses":3, "uruguay":3, "uruguayan":4, "uruguaiana":5, "urushiol":4, "ushabti":3, "ushabtis":3, "ushabtiu":4, "ustashi":3, "ustbem":3, "usumbura":4, "usurp":2, "usurpative":4, "usurper":3, "usurpingly":4, "usurpation":4, "usual":3, "usually":4, "usufruct":3, "usufructuaries":6, "usufructuary":6, "usurer":3, "usurious":4, "usuriously":5, "usuriousness":5, "usury":3, "uta":2, "utah":2, "utahan":3, "utamaro":4, "utensil":3, "uteralgia":4, "uterine":3, "uterus":3, "uther":2, "uther pendragon":5, "uti":2, "uti possidetis":6, "utile":2, "utilidor":4, "utilitarian":6, "utilitarianism":7, "utility":4, "utility man":5, "utility player":6, "utility room":5, "utica":3, "utilise":3, "utilize":3, "utilized":3, "utilizable":5, "utilizer":4, "utilizing":4, "utilization":5, "uto-aztecan":4, "utopia":4, "utopian":4, "utopian socialism":7, "utraquism":3, "utraquist":3, "utrecht":2, "utricular":4, "utriculate":4, "utriculitis":5, "utriculus":4, "utrillo":3, "utricle":3, "utsunomiya":5, "utu":2, "uvala":3, "uvarovite":4, "uvea":3, "uveitis":4, "uvula":3, "uvular":3, "uvularly":4, "uvulatomy":5, "uvulectomy":5, "uvulitis":4, "uvulotomy":5, "v-1":1, "v-2":1, "v-day":1, "v-eight":1, "v-sign":1, "v-type engine":3, "vaal":1, "vaasa":2, "vac":1, "vacherin":2, "vaccine":2, "vaccinia":4, "vaccinial":4, "vacciniaceous":5, "vaccinal":3, "vaccinate":3, "vaccinated":4, "vaccinating":4, "vaccination":4, "vaccinationist":5, "vaccinator":4, "vaccinization":5, "vacillant":3, "vacillate":3, "vacillated":4, "vacillating":4, "vacillatingly":5, "vacillation":4, "vacillator":4, "vacillatory":5, "vacua":3, "vacuole":3, "vacuous":3, "vacuously":4, "vacuousness":4, "vacuolar":4, "vacuum":3, "vacuum cleaner":5, "vacuum distillation":7, "vacuum flask":4, "vacuum gauge":4, "vacuum pump":4, "vacuum tube":4, "vacuum-packed":3, "vacuums":3, "vad":1, "vads":3, "vague":1, "vaguely":2, "vagueness":2, "vagabond":3, "vagabondage":4, "vagabondish":4, "vagabondism":4, "vaginal":3, "vaginate":3, "vaginalectomy":6, "vaginectomy":5, "vaginismus":4, "vaginitis":4, "vaginotomy":5, "vaginomycosis":6, "vail":1, "vain":1, "vainglorious":4, "vaingloriously":5, "vaingloriousness":5, "vainglory":3, "vainly":2, "vair":1, "vaishnava":3, "vaisya":2, "vaisheshika":4, "vaivode":2, "vajra":2, "val":1, "vale":1, "valse":1, "valve":1, "valve-in-head engine":3, "valvelet":2, "valving":2, "valance":2, "valanced":2, "valborg":2, "valda":2, "valdai hills":3, "valdemar i":4, "valdivia":3, "valdosta":3, "valentine":3, "valentine":3, "valentinian i":6, "valentinian ii":6, "valentinian iii":6, "valentinianus i":7, "valentinianus ii":7, "valentinianus iii":7, "valentina":4, "valentino":4, "valentinus":4, "valet":2, "valeted":3, "valeting":3, "valediction":4, "valedictorian":6, "valedictory":5, "valery":3, "valetudinaries":6, "valetudinarian":7, "valetudinarianism":8, "valetudinary":6, "valgus":2, "valguses":3, "valiance":2, "valiant":2, "valiantly":3, "valiantness":3, "valiancy":3, "valid":2, "validly":3, "validness":3, "valine":2, "validate":3, "validation":4, "validatory":5, "valkyr":2, "valkyrie":3, "vallate":2, "vallation":3, "valle d'aosta":5, "vallecula":4, "vallecular":4, "valleculate":4, "valletta":3, "valley":2, "valley":2, "valley forge":3, "valleylike":3, "vallombrosa":4, "valmid":2, "valmiki":3, "valor":2, "valorise":3, "valorised":3, "valorising":4, "valorize":3, "valorized":3, "valorizing":4, "valorization":5, "valorous":3, "valorously":4, "valorousness":4, "valour":2, "valparaiso":4, "valparaiso":5, "valparaso":6, "value":2, "value added":4, "value judgment":4, "value-added tax":4, "valued":2, "valued policy":5, "valueless":3, "valuelessness":4, "valuate":3, "valuated":4, "valuating":4, "valuable":4, "valuableness":5, "valuably":4, "valuation":4, "valuator":4, "valuer":3, "valuta":3, "valval":2, "valvar":2, "valvate":2, "valvule":2, "valvular":3, "valvulitis":4, "vamp":1, "vamphorn":2, "vambrace":2, "vambraced":2, "vampire":2, "vampire bat":3, "vampiric":3, "vampirism":3, "van":1, "van":1, "van allen belt":4, "van buren":3, "van der weyden":4, "van diemen gulf":4, "van diemen's land":4, "vance":1, "vane":1, "vane":1, "vaneless":2, "vang":1, "vanadate":3, "vanadous":3, "vanbrugh":2, "vancouver":3, "vanda":2, "vandal":2, "vandal":2, "vandalise":3, "vandalish":3, "vandalism":3, "vandalistic":4, "vandalize":3, "vandalized":3, "vandalizing":4, "vandenberg":3, "vanderbilt":3, "vandergrift":3, "vandyke":2, "vandyke beard":3, "vandyke brown":3, "vandyke collar":4, "vanguard":2, "vanguardist":3, "vanillin":3, "vanish":2, "vanisher":3, "vanishing cream":4, "vanishing point":4, "vanishingly":4, "vanishment":3, "vanitied":3, "vanity":3, "vanity case":4, "vanity fair":4, "vanity unit":5, "vanman":2, "vannevar":3, "vanning":2, "vanquish":2, "vanquishable":4, "vanquisher":3, "vanquishment":3, "vansittart":3, "vantage":2, "vantage ground":3, "vantage point":3, "vanward":2, "vanzetti":3, "vapid":2, "vapidly":3, "vapidness":3, "var":1, "var":1, "var":1, "varve":1, "vardar":2, "vardhamana":4, "vardon":2, "varec":2, "vargas":2, "varginha":3, "vargueno":3, "varied":2, "variedly":3, "variedness":3, "variegate":3, "variegated":4, "varindor":3, "variscite":3, "varistor":3, "varix":2, "varia":3, "variance":3, "variant":3, "variate":3, "variability":6, "variable":4, "variable cost":5, "variable star":5, "variableness":5, "variably":4, "variation":4, "variational":5, "variationally":6, "variative":4, "variatively":5, "varicella":4, "varicellate":4, "varicellation":5, "varicelloid":4, "varices":3, "varicolored":4, "varicose":3, "varicose veins":4, "varicosity":5, "varicotomy":5, "varicocele":4, "varicosis":4, "varidase":3, "varier":3, "variegate":4, "variegated":5, "variegating":5, "variegation":5, "variform":3, "variformly":4, "variole":3, "variometer":5, "various":3, "variocoupler":5, "variolation":5, "variolite":4, "variolitic":5, "varioloid":4, "variolosser":5, "variorum":4, "varitype":3, "varityped":3, "varityper":4, "varityping":4, "varitypist":4, "varlet":2, "varletry":3, "varmannie":3, "varmint":2, "varna":2, "varna":2, "varnish":2, "varnish tree":3, "varnisher":3, "varnishy":3, "varro":2, "varsity":3, "varus":2, "varuna":3, "vary":2, "varying":3, "varyingly":4, "vas":1, "vas deferens":4, "vase":1, "vaselike":2, "vashti":2, "vast":1, "vastly":2, "vastness":2, "vasty":2, "vasco da gama":5, "vascular":3, "vascular bundle":5, "vascular ray":4, "vascular tissue":5, "vascularity":4, "vascularisation":6, "vascularization":6, "vascularly":4, "vasculose":3, "vasculum":3, "vasectomise":4, "vasectomised":4, "vasectomising":5, "vasectomize":4, "vasectomized":4, "vasectomizing":5, "vasectomy":4, "vaseline":3, "vasoconstriction":5, "vasoconstrictive":5, "vasoconstrictor":5, "vasodepressor":5, "vasodilatation":6, "vasodilator":5, "vasoinhibitor":6, "vasoinhibitory":7, "vasoligature":5, "vasoligation":5, "vasomotion":4, "vasomotor":4, "vasopressin":4, "vasostimulant":5, "vasotonic":4, "vasotribe":3, "vassal":2, "vassalage":3, "vassalic":3, "vassalise":3, "vassalize":3, "vassalless":3, "vasthi":2, "vastitude":3, "vastity":3, "vastus":2, "vat":1, "vat":1, "vat":1, "vatic":2, "vatical":3, "vatican":3, "vatican city":5, "vaticanism":4, "vaticanus":4, "vaticide":3, "vaticination":5, "vatted":2, "vatting":2, "vaud":1, "vaudeville":2, "vaudevillian":3, "vaughan":1, "vaughan williams":3, "vaughn":1, "vault":1, "vaulted":2, "vaulter":2, "vaulting":2, "vaunt":1, "vaunt-courier":3, "vaunted":2, "vaunter":2, "vaunting":2, "vauntingly":3, "vaunty":2, "vauban":2, "vaucluse":2, "vaudeville":3, "vaudois":2, "vav":1, "vavasor":3, "vavasour":3, "vavasory":4, "vaad":2, "vaadim":3, "vacant":2, "vacant possession":5, "vacantly":3, "vacantness":3, "vacancy":3, "vacate":2, "vacatable":4, "vacation":3, "vacationer":4, "vacationist":4, "vacationless":4, "vachel":2, "vacuity":4, "vacuna":3, "vada":2, "vade mecum":4, "vadose":2, "vadodara":4, "vaduz":2, "vagal":2, "vagaries":3, "vagarious":4, "vagariously":5, "vagary":3, "vagina":3, "vagotomy":4, "vagotonia":5, "vagotropic":4, "vagrant":2, "vagrancy":3, "vagrom":2, "vaguer":2, "vaguest":2, "vaguio":3, "vagus":2, "vagus nerve":3, "vahana":2, "vakeel":2, "vala":2, "valais":2, "valadon":3, "vale":2, "vale":2, "valence":2, "valence":2, "valens":2, "valencia":3, "valencia":4, "valenciennes":4, "valency":3, "valency electron":6, "valentia":4, "valera":3, "valeric":3, "valeric acid":5, "valet de chambre":5, "valetta":3, "valera":3, "valerie":3, "valeria":4, "valerian":4, "valerian":4, "valerianic":5, "valerianaceous":6, "valeta":3, "validity":4, "valine":2, "valise":2, "valladolid":4, "vallenar":3, "valois":2, "valona":3, "valonia":4, "valora":3, "valry":4, "valry":4, "vamoose":2, "vamoosed":2, "vamoosing":3, "vamose":2, "vamosed":2, "vamosing":3, "vanadic":3, "vanadic acid":5, "vanadinite":4, "vanadious":4, "vanadium":4, "vanaspati":4, "vanessa":3, "vanetha":3, "vanier":2, "vanilla":3, "vanillic":3, "vanir":2, "vanua levu":5, "vapidity":4, "vapor":2, "vapors":2, "vaporescence":4, "vaporescent":4, "vaporific":4, "vaporimeter":5, "vaporing":3, "vaporise":3, "vaporish":3, "vaporishness":4, "vaporiser":4, "vaporize":3, "vaporized":3, "vaporizable":5, "vaporizer":4, "vaporizing":4, "vaporisation":5, "vaporization":5, "vaporlike":3, "vaporosity":5, "vaporous":3, "vaporously":4, "vaporousness":4, "vapory":3, "vapour":2, "vapour density":5, "vapour lock":3, "vapour pressure":4, "vapour trail":3, "vapourescence":4, "vapourific":4, "vapourimeter":5, "vapouring":3, "vapourise":3, "vapourised":3, "vapourish":3, "vapouriser":4, "vapourising":4, "vapourize":3, "vapourized":3, "vapourizing":4, "vapourisation":5, "vapourization":5, "vapoury":3, "vaporetto":4, "vaporum":3, "vaquero":3, "vaqueros":3, "vara":2, "varactor":3, "varangian":4, "varas":2, "varanasi":4, "varese":3, "varietal":4, "varietally":5, "variety":4, "variety meat":5, "vario":3, "variola":4, "variolate":4, "variolous":4, "varse":3, "vasa":2, "vasari":3, "vasopressor":4, "vaticinal":4, "vaticinate":4, "vaticinated":5, "vaticinating":5, "vaticinator":5, "vaward":2, "vcechy":2, "vceskoslovensko":5, "vceskd":3, "vdc":1, "vdu":1, "veal":1, "vealer":2, "veblen":2, "veblenism":3, "veblenite":3, "veblenian":4, "vection":2, "vector":2, "vector field":3, "vector product":4, "vector sum":3, "vectorcardiography":7, "vectorcardiogram":6, "vectorcardiographic":7, "vectorial":4, "vectorially":5, "vedda":2, "veddah":2, "vedder":2, "veddoid":2, "vee":1, "vee":1, "veep":1, "veer":1, "veeries":2, "veeringly":3, "veery":2, "veg":1, "vegetal":3, "vegetarian":5, "vegetarianism":6, "vegetate":3, "vegetable":4, "vegetable butter":6, "vegetable ivory":7, "vegetable kingdom":6, "vegetable marrow":6, "vegetable oil":5, "vegetable oyster":6, "vegetable silk":5, "vegetable sponge":5, "vegetable tallow":6, "vegetable wax":5, "vegetably":4, "vegetation":4, "vegetational":5, "vegetationless":5, "vegetative":4, "vehmgericht":3, "vehmgerichte":4, "veil":1, "veiled":1, "veiledly":3, "veiling":2, "veilless":2, "veillike":2, "veillonella":4, "vein":1, "veinal":2, "veining":2, "veinier":3, "veiniest":3, "veinless":2, "veinlet":2, "veinstone":2, "veinule":2, "veinulet":3, "veiny":2, "vel":1, "veld":1, "veldt":1, "veldskoen":2, "vela-hotel":3, "velcro":2, "veliger":3, "velitation":4, "velleity":4, "vellicate":3, "vellication":4, "vellicative":4, "vellore":2, "vellum":2, "velma":2, "velsen":2, "velvet":2, "velvet scoter":4, "velvet stout":3, "velvet underground":5, "velveted":3, "velveteen":3, "velvetiness":4, "velvetlike":3, "velvety":3, "ven":1, "vend":1, "vendee":2, "vender":2, "vending machine":4, "vendibility":5, "vendible":3, "vendibleness":4, "vendibly":3, "venez":1, "venge":1, "vengeance":2, "vengeful":2, "vengefully":3, "vengefulness":3, "venging":2, "venn diagram":4, "vent":1, "ventage":2, "ventless":2, "vend":2, "venda":2, "vendace":2, "vendaces":3, "vendee":2, "vendelinus":4, "vendetta":3, "vendettist":3, "vendean":3, "vendidad":3, "vendition":3, "vendor":2, "vendue":2, "vende":3, "vendmiaire":3, "venerate":3, "venerable":4, "veneration":4, "venerational":5, "venerative":4, "veneratively":5, "venerativeness":5, "venerator":4, "venerer":3, "venery":3, "venenose":3, "venenosus":4, "venepuncture":4, "venesection":4, "venezuela":4, "venice":2, "venin":2, "venipuncture":4, "venisection":4, "venison":3, "venizelos":4, "venlo":2, "venloo":2, "venom":2, "venomless":3, "venomness":3, "venomous":3, "venomousness":4, "vent":2, "ventail":2, "venter":2, "ventilate":3, "ventilable":4, "ventilation":4, "ventilative":4, "ventilator":4, "ventose":2, "ventosity":4, "ventrad":2, "ventral":2, "ventral fin":3, "ventrally":3, "ventricular":4, "ventriculography":6, "ventriculogram":5, "ventriculopuncture":6, "ventriculus":4, "ventriloqual":4, "ventriloquise":4, "ventriloquised":4, "ventriloquism":4, "ventriloquist":4, "ventriloquising":5, "ventriloquistic":5, "ventriloquize":4, "ventriloquy":4, "ventris":2, "ventricle":3, "ventricose":3, "ventricosity":5, "ventriloquial":5, "ventriloquially":6, "ventrotomy":4, "venture":2, "venture capital":5, "venture scout":3, "ventured":2, "venturesome":3, "venturesomely":4, "venturesomeness":4, "venturer":3, "venturing":3, "venturous":3, "venturously":4, "venturousness":4, "venturi tube":4, "venturous":3, "ventse":3, "venue":2, "venule":2, "venular":3, "venulose":3, "venulous":3, "ver":1, "verb":1, "verbification":5, "verbless":2, "verd antique":3, "verde":1, "verge":1, "vergeboard":2, "verging":2, "verkhne-udinsk":3, "vern":1, "verne":1, "vers":1, "vers de socit":5, "vers libre":3, "verse":1, "versed":1, "verst":1, "verset":2, "vert":1, "verve":1, "veracruz":3, "veratrin":3, "veratrine":3, "verbal":2, "verbal noun":3, "verbalise":3, "verbalised":3, "verbalism":3, "verbalist":3, "verbaliser":4, "verbalising":4, "verbalize":3, "verbalized":3, "verbalizer":4, "verbalizing":4, "verbality":4, "verbalization":5, "verbally":3, "verbatim":3, "verbena":3, "verbena":3, "verbenaceous":4, "verbid":2, "verbiage":3, "verbified":3, "verbify":3, "verbifying":4, "verbose":2, "verbosity":4, "verboten":3, "vercelli":3, "vercingetorix":5, "verdant":2, "verdantly":3, "verdancy":3, "verderer":3, "verderership":4, "verderor":3, "verdi":2, "verdict":2, "verdin":2, "verdite":2, "verdigris":3, "verdigrisy":4, "verditer":3, "verdun":2, "verdure":2, "verdurousness":4, "verein":2, "vereine":3, "verecund":3, "verger":2, "vergil":2, "vergilian":4, "verglas":2, "verism":2, "verist":2, "veriax":3, "verier":3, "veriest":3, "verified":3, "verifiability":7, "verifiable":5, "verifiableness":6, "verificative":5, "verificatory":6, "verifier":4, "verify":3, "verifying":4, "verily":3, "verisimilar":5, "verisimilarly":6, "verisimilitude":6, "veritable":4, "veritableness":5, "veritably":4, "verity":3, "verjuice":2, "verjuiced":2, "verkrampte":3, "verlaine":2, "verligte":3, "verlia":3, "vermeer":2, "vermeil":2, "vermicular":4, "vermicularly":5, "vermiculate":4, "vermiculated":5, "vermiculating":5, "vermiculation":5, "vermiculite":4, "vermilion":3, "vermillion":3, "vermillion":3, "vermin":2, "verminousness":4, "vermis":2, "vermivorous":4, "vermicelli":4, "vermicide":3, "vermicidal":4, "vermiform":3, "vermiform appendix":6, "vermifuge":3, "verminate":3, "verminated":4, "verminating":4, "vermination":4, "verminous":3, "vermont":2, "vermonter":3, "vermouth":2, "verna":2, "vernacular":4, "vernacularise":5, "vernacularised":5, "vernacularism":5, "vernacularising":6, "vernacularize":5, "vernacularized":5, "vernacularizing":6, "vernacularization":7, "vernacularly":5, "vernal":2, "vernal":2, "vernal equinox":5, "vernal grass":3, "vernalise":3, "vernalised":3, "vernalising":4, "vernalize":3, "vernalized":3, "vernalizing":4, "vernalization":5, "vernally":3, "vernation":3, "vernell":2, "verner's law":3, "vernet":2, "vernier":2, "vernissage":3, "vernicle":3, "vernier":3, "vernier rocket":5, "vernon":2, "vernoleninsk":4, "verny":2, "veronal":3, "verrazzano":4, "verrazano":4, "verrire":4, "verrires":4, "verrocchio":3, "verruca":3, "verrucose":3, "verrucosity":5, "verrucous":3, "versailles":2, "versant":2, "versatile":3, "versatilely":4, "versatileness":4, "versatility":5, "versicular":4, "versie":2, "versiera":3, "versin":2, "versine":2, "version":2, "version":2, "versional":3, "versionlibristes":4, "versicle":3, "versicolor":4, "versicular":4, "versified":3, "versification":5, "versifier":4, "versify":3, "versifying":4, "verso":2, "versus":2, "vertex":2, "vertexes":3, "vertebra":3, "vertebral":3, "vertebral column":5, "vertebrally":4, "vertebrate":3, "vertebrated":4, "vertebrata":4, "vertebration":4, "verticillate":4, "verticillated":5, "verticillation":5, "verticity":4, "vertiginous":4, "vertical":3, "vertical angles":5, "vertical circle":5, "vertical grouping":5, "vertical mobility":7, "vertical stabilizer":7, "vertical union":5, "verticalism":4, "vertically":4, "vertices":3, "verticil":3, "verticillaster":5, "verticillastrate":5, "vertigo":3, "vertu":2, "vertumnus":3, "verulamian":5, "verulamium":5, "vervain":2, "vervelle":2, "vervet":2, "verwandlung":3, "verwoerd":2, "very":2, "very high frequency":6, "very light":3, "very low frequency":6, "very reverend":5, "vest":1, "vest-pocket":2, "vested":2, "vested interest":5, "vesting":2, "vestment":2, "vesica":3, "vesical":3, "vesicant":3, "vesicate":3, "vesicated":4, "vesicating":4, "vesication":4, "vesicatory":5, "vesicle":3, "vespasian":4, "vesper":2, "vesper":2, "vespers":2, "vesperal":3, "vespertide":3, "vespertilionid":6, "vespertilionine":6, "vespertine":3, "vespid":2, "vespine":2, "vespiaries":4, "vespiary":4, "vespucci":3, "vessel":2, "vesseled":2, "vesselled":2, "vesta":2, "vesta":2, "vestal":2, "vestal virgin":4, "vestalia":4, "vestibular":4, "vestie":2, "vestige":2, "vestigia":4, "vestigial":4, "vestigially":5, "vestigium":4, "vestiary":4, "vestibule":3, "vestibuled":3, "vestibuling":4, "vestral":2, "vestry":2, "vestryman":3, "vesture":2, "vestured":2, "vesturing":3, "vet":1, "vetch":1, "vetchlike":2, "vetchling":2, "veteran":3, "veteran car":4, "veterans day":4, "veterinaries":5, "veterinarian":6, "veterinary":5, "veterinary science":7, "veterinary surgeon":7, "vetiver":3, "vetted":2, "vetter":2, "vetting":2, "vex":1, "vexed":1, "vexation":3, "vexatious":3, "vexatiously":4, "vexatiousness":4, "vexedly":3, "vexedness":3, "vexer":2, "vexil":2, "vexilla":3, "vexillaries":4, "vexillary":4, "vexillate":3, "vexillology":5, "vexillum":3, "vexingly":3, "veadar":3, "veda":2, "vedanta":3, "vedaic":3, "vedaism":3, "vedalia":3, "vedalia":4, "vedette":2, "vedic":2, "vega":2, "vegan":2, "vehemence":3, "vehement":3, "vehemently":4, "vehemency":4, "vehicular":4, "vehiculum":4, "vehicle":3, "veii":2, "veiovis":3, "vela":2, "vela":2, "velamina":4, "velar":2, "velarise":3, "velarize":3, "velarized":3, "velarizing":4, "velaria":4, "velarium":4, "velarization":5, "velate":2, "velated":3, "velating":3, "velamen":3, "velation":3, "velella":3, "velellidous":4, "veleta":3, "veliger":3, "velites":3, "velocipede":4, "velocity":4, "velocity modulation":8, "velour":2, "velours":2, "velout":3, "velout":4, "veloce":3, "velodrome":3, "velorum":3, "velum":2, "velure":2, "velured":2, "veluring":3, "velutinous":4, "velsquez":4, "velquez":3, "vena":2, "vena cava":4, "venal":2, "venality":4, "venally":3, "venatic":3, "venatical":4, "venation":3, "veneer":2, "veneerer":3, "veneering":3, "vener":2, "veneti":3, "venetic":3, "venereal":4, "venereal disease":6, "venereologist":6, "venereology":6, "venetia":3, "venetian":3, "venetian blind":4, "venetian glass":4, "venetian red":4, "venetianed":3, "venetia":4, "veneto":3, "venezia":3, "venezia giulia":5, "venezia tridentina":7, "venezia-euganea":7, "venial":3, "venial sin":4, "veniality":5, "venially":4, "venialness":4, "venire":3, "venire facias":6, "venireman":4, "venite":3, "venizelos":4, "venose":2, "venosity":4, "venous":2, "venously":3, "venousness":3, "venolia":4, "venus":2, "venus flytrap":4, "venus's flower basket":6, "venus's looking-glass":4, "venus's-flytrap":3, "venus's-girdle":3, "venus's-hair":2, "venusberg":3, "venustiano":4, "venusian":4, "veracity":4, "veranda":3, "verandah":3, "veratridine":4, "veracious":3, "veraciously":4, "veraciousness":4, "veralyn":3, "veratri":3, "veratridine":4, "vereeniging":4, "verel":2, "vereshchagin":4, "verena":3, "veridic":3, "veridical":4, "veridicality":6, "veridically":5, "verismo":3, "veristic":3, "veritas":3, "veronica":4, "veronica":4, "veronika":4, "verona":3, "veronese":4, "verus":2, "vesalius":4, "vesicularly":5, "vesiculate":4, "vesiculated":5, "vesiculating":5, "vesiculation":5, "vesica":3, "vesuvian":4, "vesuvianite":5, "vesuvius":4, "veto":2, "vetoed":2, "vetoer":3, "vetoing":3, "veuses":3, "vhf":1, "vhf":1, "vi et armis":4, "vibes":1, "vibist":2, "vibrio":3, "vibrioid":3, "vibrionic":4, "vibrios":3, "vibriosis":4, "vic":1, "vice":1, "vice":1, "vice admiral":4, "vice chancellor":4, "vice president":4, "vice-admiral":3, "vice-admiralty":4, "vice-chairman":2, "vice-chancellor":3, "vice-consulship":3, "vice-consulate":3, "vice-president":2, "vice-presidency":4, "vice-presidential":4, "vice-regent":2, "vicegeral":3, "vicegerent":3, "vicegerency":4, "viceless":2, "vicereine":2, "viceregal":3, "viceregal assent":5, "viceregally":4, "viceregency":4, "viceroy":2, "viceroyalty":4, "vick":1, "vicksburg":2, "vickie":2, "vicky":2, "victual":2, "victualed":2, "victualled":2, "victuals":2, "victualage":3, "victualer":3, "victualing":3, "victualler":3, "victualless":3, "victualling":3, "vicar":2, "vicar apostolic":6, "vicar forane":4, "vicar general":5, "vicar of christ":4, "vicar-general":4, "vicar-generalship":5, "vicars-general":4, "vicarage":3, "vicarate":3, "vicarly":3, "vicenary":4, "vicing":2, "vicinage":3, "vicinal":3, "victim":2, "victimhood":3, "victimise":3, "victimised":3, "victimiser":4, "victimising":4, "victimize":3, "victimized":3, "victimizer":4, "victimizing":4, "victimization":5, "victoire":2, "victor":2, "victor":2, "victor emmanuel iii":7, "victormanuel":5, "victoriano":4, "victorien":3, "victorine":3, "victorine":3, "victoria":4, "victoria":4, "victoria cross":5, "victoria day":5, "victoria desert":6, "victoria falls":5, "victoria island":6, "victoria land":5, "victoria nile":5, "victorian":4, "victoriate":4, "victoriana":5, "victorious":4, "victoriously":5, "victoriousness":5, "victory":3, "victory":3, "victoryless":4, "victress":2, "victrix":2, "victrices":3, "video":3, "video frequency":6, "videodisk":4, "videogenic":5, "videophone":4, "vidicon":3, "vidya":2, "vie":1, "vienne":1, "vientiane":2, "vientiane":3, "vierwaldsttersee":5, "view":1, "view halloo":3, "viewable":3, "viewer":2, "viewfinder":3, "viewing":2, "viewier":3, "viewiest":3, "viewless":2, "viewlessly":3, "viewpoint":2, "viewy":2, "viereck":2, "vieta":2, "vigil":2, "vigil light":3, "vigilance":3, "vigilance committee":6, "vigilant":3, "vigilantly":4, "vigilantness":4, "vigilante":4, "vigilantism":4, "vigor":2, "vigorish":3, "vigorless":3, "vigorous":3, "vigorously":4, "vigorousness":4, "vigour":2, "viipuri":3, "viki":2, "vikki":2, "vil":1, "vile":1, "vilely":2, "vileness":2, "villeneuve":2, "villeurbanne":3, "vilfredo":3, "vilhjalmur":3, "vilified":3, "vilification":5, "vilifier":4, "vilify":3, "vilifying":4, "vilifyingly":5, "vilipend":3, "villa":2, "villa":2, "villa-lobos":3, "villach":2, "village":2, "village college":4, "villageless":3, "villagey":3, "villager":3, "villagy":3, "villain":2, "villainage":3, "villainess":3, "villainies":3, "villainnelle":4, "villainous":3, "villainously":4, "villainousness":4, "villainy":3, "villanage":2, "villard":2, "villars":2, "villatic":3, "villadom":3, "villahermosa":5, "villalike":3, "villanelle":3, "villanella":4, "villanova":4, "villanovan":4, "villavicencio":5, "villein":2, "villeinage":3, "villenage":3, "villi":2, "villiers":2, "villiform":3, "villon":2, "villose":2, "villosity":4, "villous":2, "villously":3, "villus":2, "vilnius":3, "vilnyus":3, "vim":1, "vimina":3, "viminal":3, "viminal":3, "vimpa":2, "vin ordinaire":4, "vince":1, "vine":1, "vined":1, "vinedresser":3, "vineland":2, "vineland":2, "vineless":2, "vinelike":2, "vineyard":2, "vintner":2, "vinaigrette":3, "vinca":2, "vincennes":2, "vincent":2, "vincent de paul":4, "vincent's angina":5, "vincentian":3, "vincenzo":3, "vinci":2, "vincibility":5, "vincible":3, "vincibleness":4, "vinculum":3, "vindhya pradesh":4, "vindhya range":3, "vindictive":3, "vindictively":4, "vindictiveness":4, "vindicate":3, "vindicated":4, "vindicating":4, "vindicability":6, "vindicable":4, "vindication":4, "vindicator":4, "vineries":3, "vinery":3, "vinegar":3, "vinegar eel":4, "vinegar fly":4, "vinegarette":4, "vinegarish":4, "vinegarlike":4, "vinegarroon":4, "vinethene":3, "viniculture":4, "vinicultural":5, "viniculturist":5, "vinificator":5, "vinland":2, "vinnie":2, "vinnitsa":3, "vinny":2, "vinometer":4, "vinson":2, "vintage":2, "vintage car":3, "vintaged":2, "vintager":3, "vintaging":3, "vinton":2, "violle":1, "viollet-le-duc":2, "vip":1, "vir":1, "vir chakra":3, "virl":1, "virchow":2, "virden":2, "virelai":3, "virelay":3, "vireo":3, "vireos":3, "virga":2, "virgate":2, "virgil":2, "virgilian":4, "virgin":2, "virgin":2, "virgin birth":3, "virgin birth":3, "virgin islands":4, "virgin mary":4, "virgin wool":3, "virgin's-bower":3, "virginal":3, "virginia":3, "virginian":3, "virginia":4, "virginia beach":5, "virginia creeper":6, "virginia deer":5, "virginia reel":5, "virginia stock":5, "virginity":4, "virginium":4, "virginis":3, "virgo":2, "virgo intacta":5, "virgule":2, "virgulate":3, "virile":2, "virial":3, "viridescence":4, "viridescent":4, "virilism":3, "virilocal":4, "virilocally":5, "virtanen":3, "virtu":2, "virtue":2, "virtues":2, "virtueless":3, "virtuelessness":4, "virtus":2, "virtual":3, "virtual image":5, "virtual storage":5, "virtuality":5, "virtually":4, "virtuosity":5, "virtuous":3, "virtuously":4, "virtuousness":4, "virtuosic":4, "virtuoso":4, "virulence":3, "virulent":3, "virulently":4, "virulency":4, "vis":1, "vis major":3, "vise":1, "viselike":2, "vishnu":2, "vishnuism":3, "vista":1, "visage":2, "visaged":2, "visard":2, "visby":2, "viscacha":3, "viscera":3, "visceral":3, "viscerally":4, "viscerotonic":5, "viscerotonia":6, "viscerotropic":5, "visceromotor":5, "viscid":2, "viscidity":4, "viscidly":3, "viscidness":3, "viscoid":2, "viscoidal":3, "viscometer":4, "viscometry":4, "visconti":3, "viscose":2, "viscosity":4, "viscount":2, "viscountcy":3, "viscountess":3, "viscountship":3, "viscounty":3, "viscous":2, "viscously":3, "viscousness":3, "viscoelastic":5, "viscometric":4, "viscometrically":6, "viscosimeter":5, "viscosimetric":5, "viscus":2, "vising":2, "visised":2, "visising":3, "visit":2, "visitation":4, "visitation":4, "visitatorial":6, "visiting card":4, "visiting fireman":5, "visiting nurse":4, "visiting professor":6, "visibility":5, "visible":3, "visible balance":5, "visible radiation":7, "visible speech":4, "visigoth":3, "visigothic":4, "visitant":3, "visitor":3, "visitorial":5, "vislinsky zaliv":5, "vista":2, "vistaless":3, "vistula":3, "visual":3, "visual aids":4, "visual arts":4, "visual display unit":7, "visual magnitude":6, "visual purple":5, "visual violet":6, "visual yellow":5, "visualise":4, "visualist":4, "visualiser":5, "visualize":4, "visualized":4, "visualizable":6, "visualizer":5, "visualizing":5, "visualisation":6, "visualization":6, "visually":4, "vite":1, "vitamin":3, "vitamin a":4, "vitamin b":4, "vitamin b complex":6, "vitamin c":4, "vitamin d":4, "vitamin e":4, "vitamin g":4, "vitamin h":4, "vitamin k":4, "vitamin p":4, "viticetum":4, "viticulture":4, "vitiliginous":5, "vitiligo":4, "vitiligoid":4, "vitra":2, "vitrain":2, "vitreosity":5, "vitreous":3, "vitreous body":5, "vitreous humour":5, "vitreous silica":6, "vitreousness":4, "vitreum":3, "vitric":2, "vitrics":2, "vitrine":2, "vitrified":3, "vitrifiability":7, "vitrifiable":5, "vitrification":5, "vitriform":3, "vitrify":3, "vitrifying":4, "vitriol":3, "vitrioled":3, "vitriolled":3, "vitriolic":4, "vitrioling":4, "vitriolise":4, "vitriolize":4, "vitriolization":6, "vitriolling":4, "vitrioized":4, "vitrioizing":5, "vitriolize":4, "vitrum":2, "vitta":2, "vittae":2, "vittle":2, "vittore":3, "vittorio":3, "vittoria":4, "vituline":3, "vive":1, "vives":1, "vivid":2, "vividly":3, "vividness":3, "vivian":3, "vivien":3, "vivienne":3, "vivified":3, "vivify":3, "vivifying":4, "viviparity":5, "vivisect":3, "vivisectible":5, "vivisection":4, "vivisectional":5, "vivisectionally":6, "vivisectionist":5, "vivisector":4, "vixen":2, "vixenish":3, "vixenishly":4, "vixenishness":4, "vixenly":3, "viz":1, "vizsla":2, "vizard":2, "vizarded":3, "vizcacha":3, "via":2, "via dolorosa":6, "via media":5, "vial":2, "vialed":2, "vialing":3, "vialling":3, "viand":2, "viaticum":4, "viability":5, "viable":3, "viaduct":3, "viareggio":4, "viator":3, "viatores":4, "viborg":2, "vibracular":4, "vibraculoid":4, "vibraculum":4, "vibrance":2, "vibrant":2, "vibrantly":3, "vibrancy":3, "vibrate":2, "vibrated":3, "vibrating":3, "vibratingly":4, "vibraharp":3, "vibraphone":3, "vibraphonist":4, "vibration":3, "vibrations":3, "vibrational":4, "vibrationless":4, "vibrative":3, "vibrato":3, "vibrator":3, "vibrissa":3, "vibrissae":3, "vibrometer":4, "vibronic":3, "viburnum":3, "vicarial":4, "vicariate":4, "vicariism":4, "vicarious":4, "vicariously":5, "vicariousness":5, "vice":2, "vice versa":4, "vicenni":3, "vicennial":4, "vicente":3, "vicenza":3, "vichy":2, "vichy water":4, "vichyite":3, "vichyssoise":3, "vicinity":4, "vicious":2, "vicious circle":4, "vicissitude":4, "vicissitudinary":7, "vico":2, "vicomte":2, "vicomtesse":3, "vicontiel":4, "vicua":4, "vidalia":3, "vidar":2, "vide":2, "vidette":2, "videvdat":3, "videlicet":4, "vidhan sabha":4, "vienna":3, "vienna union":5, "vier":2, "viet":2, "viet cong":3, "viet minh":3, "viet nam":3, "vietcong":3, "vietminh":3, "vietnam":3, "vietnamese":4, "vietnamisation":6, "vietnamization":6, "vigesimal":4, "vigesimo":4, "vigesimo-quarto":5, "vigilius":4, "vigintillionth":4, "vigia":3, "vigias":3, "vignette":2, "vignetter":3, "vignettist":3, "vignetted":3, "vignetting":3, "vignola":3, "vigny":2, "vigo":2, "vigoroso":4, "vigrid":2, "vige-lebrun":4, "vihara":3, "vihuela":3, "vijayawada":5, "viking":2, "vilayet":3, "vili":2, "villa":2, "vimana":3, "vimen":2, "vimineous":4, "vimy":2, "vina":2, "vinaigre":2, "vinasse":2, "vinaceous":3, "vinic":2, "vinie":2, "vinifera":4, "viniferous":4, "vinificator":5, "vino":2, "vinosity":4, "vinous":2, "vinoba":3, "vinum":2, "vinyl":2, "vinyl acetate":5, "vinyl chloride":4, "vinyl resin":4, "vinylate":3, "vinylated":4, "vinylating":4, "vinylacetylene":6, "vinylation":4, "vinylbenzene":4, "vinylethylene":5, "vinylite":3, "vinylidene":4, "viol":2, "violist":3, "viosterol":4, "viola":3, "viola":3, "viola clef":4, "viola d'amore":6, "viola da braccio":7, "viola da gamba":6, "violate":3, "violated":4, "violating":4, "violability":6, "violable":4, "violableness":5, "violably":4, "violaceous":4, "violational":5, "violative":4, "violence":3, "violent":3, "violescent":4, "violet":3, "violet":3, "violette":3, "violetlike":4, "violetta":4, "violety":4, "violin":3, "violinist":4, "violinistic":5, "violinistically":7, "violinless":4, "violinmaker":5, "violist":3, "violone":3, "violoncello":5, "violone":4, "viper":2, "viper's bugloss":4, "viperine":3, "viperish":3, "viperishly":4, "viperous":3, "viperously":4, "viral":2, "virago":3, "viren":2, "virescence":3, "virescent":3, "viremic":3, "viremia":4, "viridian":4, "viridity":4, "virility":4, "virology":4, "virosis":3, "virus":2, "viruses":3, "viruslike":3, "virucide":3, "visa":2, "visaed":2, "visaing":3, "visakhapatnam":5, "visalia":3, "visayan":3, "visayan islands":5, "viseu":3, "vishinsky":3, "visine":2, "vision":2, "visional":3, "visionally":4, "visionaries":4, "visionariness":5, "visionary":4, "visionless":3, "visor":2, "visorless":3, "vis":3, "vised":3, "vising":4, "vita":2, "vita":2, "vitae":2, "vital":2, "vital capacity":6, "vital force":3, "vital staining":4, "vital statistics":5, "vitals":2, "vitalian":3, "vitalise":3, "vitalised":3, "vitalism":3, "vitaliser":4, "vitalising":4, "vitalistically":6, "vitalize":3, "vitalized":3, "vitalizer":4, "vitalizing":4, "vitality":4, "vitalization":5, "vitallium":4, "vitally":3, "vitalness":3, "vitaceous":3, "vitameric":4, "vitamin":3, "vitamine":3, "vitaminic":4, "vitaphone":3, "vitascope":3, "vitascopic":4, "vitebsk":2, "vitellin":3, "vitelline":3, "vitelline membrane":5, "vitellus":3, "vitelluses":4, "viti levu":4, "vitiate":3, "vitiated":4, "vitiating":4, "vitiable":4, "vitiation":4, "vitiator":4, "vito":2, "vitoria":3, "vitrescence":3, "vitrescent":3, "vitrescible":4, "vitrine":2, "vitruvius":4, "vitruvius pollio":7, "vitry":2, "vitus":2, "vituline":3, "vituperate":4, "vituperated":5, "vituperating":5, "vituperation":5, "vituperator":5, "vitria":5, "vitria":4, "viva":2, "viva voce":4, "viva-voce":3, "vivacity":4, "vivandi":3, "vivandire":4, "vivaria":4, "vivarium":4, "vivariums":4, "vivace":3, "vivacious":3, "vivaciously":4, "vivaciousness":4, "vivamus":3, "vivers":2, "viverrine":3, "vivekananda":5, "vividity":4, "viviparous":4, "viviparism":4, "viviparously":5, "vivo":2, "viyella":3, "vizagapatam":5, "vizier":2, "vizierate":3, "vizierial":4, "vizir":2, "vizirate":3, "vizirial":4, "vizor":2, "vizorless":3, "vitor":4, "vlaardingen":3, "vlad":1, "vladimir":3, "vladikavkaz":4, "vladimir":3, "vladivostok":4, "vlaminck":2, "vlei":1, "vlf":1, "vlf":1, "vlissingen":3, "vlon":2, "vlor":2, "vltava":3, "vmd":1, "voc":1, "vocat":1, "vocative":3, "vocatively":4, "vodka":2, "voetstoets":2, "voetstoots":2, "voetsek":2, "vogue":1, "voice":1, "voice-leading":2, "voice-over":2, "voiced":1, "voiceful":2, "voicefulness":3, "voiceless":2, "voicelessly":3, "voicelessness":3, "voiceprint":2, "voicedness":3, "voicing":2, "void":1, "voidance":2, "voidable":3, "voided":2, "voider":2, "voidness":2, "voile":1, "voix cleste":3, "voil":3, "voiotia":4, "voiture":2, "voivodina":4, "vojvodina":4, "vol":1, "vole":1, "volksdeutscher":3, "volkslied":2, "vols":1, "volt":1, "volt-ampere":2, "volt-coulomb":2, "volte":1, "voltage":2, "voltage divider":5, "voltammeter":4, "voltmeter":3, "volap":3, "volapuk":3, "volatile":3, "volatile oil":4, "volatile salt":4, "volatilise":4, "volatilised":4, "volatiliser":5, "volatilising":5, "volatilizer":5, "volatilisation":6, "volatility":5, "volcanic":3, "volcanic glass":4, "volcanicity":5, "volcanise":3, "volcanism":3, "volcanize":3, "volcanically":5, "volcanologist":5, "volcanology":5, "volcanological":6, "volcano":3, "volcano islands":5, "volga":2, "volgograd":3, "volitant":3, "volitational":5, "volitive":3, "volley":2, "volleyed":2, "volleyball":3, "volleyer":3, "volleying":3, "volplane":2, "volplaned":2, "volplaning":3, "volplanist":3, "volpone":3, "volsci":2, "volscian":2, "volscian":3, "volsteadism":3, "volsung":2, "volsunga saga":5, "volta":2, "volta":2, "volta redonda":5, "voltaire":2, "voltameter":4, "voltaic":3, "voltaic":3, "voltaic cell":4, "voltaic couple":5, "voltaic pile":4, "voltaism":3, "voltametric":4, "volti":2, "volturno":3, "volturnus":3, "volume":2, "volumed":2, "voluntarily":5, "voluntariness":5, "voluntary":4, "voluntaryism":5, "voluntaryist":5, "voluntarism":4, "volunteer":3, "volunteers of america":8, "voluble":3, "volumetric":4, "volumetric analysis":8, "volva":2, "volvate":2, "volvelle":2, "volvox":2, "volvulus":3, "volvuluses":4, "vomit":2, "vomica":3, "vomicae":3, "vomito":3, "vomitoria":5, "vomitorium":5, "vomitory":4, "vomitus":3, "vomiturition":5, "von neumann":3, "von sternberg":3, "voortrekker":3, "voodoo":2, "voodooed":2, "voodooing":3, "voodooist":3, "voodooistic":4, "vorarlberg":3, "vorlage":3, "vorspiel":2, "vorster":2, "vortex":2, "vorticity":4, "vortiginous":4, "vortical":3, "vortically":4, "vorticella":4, "vorticellae":4, "vortices":3, "vorticism":3, "vorticose":3, "vortumnus":3, "vosges":1, "vostok":2, "vote":1, "voteable":3, "voteless":2, "votable":3, "voted":2, "voter":2, "voting":2, "voting machine":4, "vouch":1, "voucher":2, "vouchsafe":2, "vouchsafed":2, "vouchsafement":3, "vouchsafing":3, "vouge":1, "voussoir":2, "vouvray":2, "vow":1, "vowel":2, "vowel gradation":5, "vowel mutation":5, "vowel point":3, "vowelise":3, "vowelize":3, "vowelless":3, "vowellike":3, "vowelly":3, "vowely":3, "vower":2, "vowless":2, "vox":1, "vox angelica":5, "vox humana":4, "vox populi":4, "voyt":1, "voyage":2, "voyager":3, "voyeuse":2, "voyeuses":2, "vocab":2, "vocabularies":5, "vocabulary":5, "vocal":2, "vocal cords":3, "vocal folds":3, "vocal score":3, "vocalic":3, "vocalise":3, "vocalism":3, "vocalist":3, "vocalize":3, "vocalized":3, "vocalizer":4, "vocalizing":4, "vocality":4, "vocalization":5, "vocally":3, "vocable":3, "vocably":3, "vocation":3, "vocational":4, "vocational guidance":6, "vocationally":5, "voces":2, "vociferance":4, "vociferant":4, "vociferate":4, "vociferated":5, "vociferating":5, "vociferation":5, "vociferator":5, "vociferous":4, "vociferously":5, "vociferousness":5, "vocoid":2, "vogel":2, "vogelweide":4, "vogesite":3, "vogie":2, "vogul":2, "volans":2, "volant":2, "volante":3, "volantis":3, "volar":2, "volatilise":4, "volatilize":4, "volapukist":4, "volapk":4, "volition":3, "volitional":4, "volitionally":5, "volitionary":5, "volitionless":4, "vologda":3, "volos":2, "volost":2, "voluptas":3, "voluptuaries":5, "voluptuary":5, "voluptuous":4, "voluted":3, "volumeter":4, "voluminosity":6, "voluminous":4, "voluminously":5, "voluminousness":5, "volution":3, "vomer":2, "vomerine":3, "voracity":4, "vorant":2, "voracious":3, "voraciously":4, "voraciousness":4, "voronezh":3, "voronoff":3, "voroshilov":4, "voroshilovsk":4, "voroshilovgrad":5, "votaress":3, "votarist":3, "votary":3, "votive":2, "votress":2, "votyak":3, "voyageur":3, "voyeur":2, "voyeurism":3, "vpres":1, "vraisemblance":3, "vri":1, "vrille":1, "vrilling":2, "vrita":2, "vroom":1, "vso":1, "vsop":1, "vtol":1, "vuelta abajo":5, "vug":1, "vugg":1, "vugh":1, "vuillard":2, "vul":1, "vulg":1, "vulg":1, "vulned":1, "vulcan":2, "vulcanise":3, "vulcanised":3, "vulcanism":3, "vulcanist":3, "vulcaniser":4, "vulcanising":4, "vulcanite":3, "vulcanize":3, "vulcanizable":5, "vulcanizer":4, "vulcanisation":5, "vulcanization":5, "vulcanologist":5, "vulcanology":5, "vulcanological":6, "vulcanalia":5, "vulcanian":4, "vulcanian":4, "vulgar":2, "vulgar fraction":4, "vulgar latin":4, "vulgarise":3, "vulgarised":3, "vulgarism":3, "vulgariser":4, "vulgarising":4, "vulgarize":3, "vulgarian":4, "vulgarity":4, "vulgarly":3, "vulgarness":3, "vulgate":2, "vulgate":2, "vulgus":2, "vulguses":3, "vulneraries":4, "vulnerary":4, "vulnerable":4, "vulpecula":4, "vulpecular":4, "vulpecide":3, "vulpine":2, "vulpicide":3, "vulpinite":3, "vulsinite":3, "vulture":2, "vulturelike":3, "vulturine":3, "vulturous":3, "vulva":2, "vulvitis":3, "vulvovaginitis":6, "vyatka":2, "vyernyi":2, "vyborg":2, "vycor":2, "vying":2, "vyingly":3, "vyrene":2, "vyshinsky":3, "vzi":1, "visl":6, "vtter":3, "vttern":3, "vner":3, "vnern":3, "vlker":3, "vlund":3, "verwanderung":5, "vlos":2, "vlund":2, "vnern":2, "vtern":2, "w/o":1, "waaaf":1, "waac":1, "waadt":1, "waaf":1, "waaf":1, "waal":1, "waals":1, "wab":1, "wabble":2, "wabbler":2, "wabblingly":3, "wace":1, "wack":1, "wacke":2, "wacker":2, "wackier":3, "wackiest":3, "wackily":3, "wackiness":3, "wacky":2, "wad":1, "wad medani":4, "wade":1, "wade":1, "wadeable":3, "wadable":3, "wadded":2, "waddenzee":3, "wadder":2, "wadding":2, "waddle":2, "waddy":2, "waded":2, "wader":2, "waders":2, "wading":2, "wadmaal":2, "wadmal":2, "wadmoll":2, "wadna":2, "wadset":2, "wadsetted":3, "wadsetter":3, "wadsetting":3, "wae":1, "waesucks":2, "waf":1, "waf":1, "wafd":1, "wafdist":2, "waff":1, "waffness":2, "waft":1, "waftage":2, "wafter":2, "waffie":2, "waffle":2, "waffled":2, "wafture":2, "wag":1, "wag":1, "wage":1, "wage earner":3, "wage worker":3, "wageless":2, "wagelessness":3, "wageworker":3, "wageworking":3, "wagga":2, "wagga wagga":4, "waggeries":3, "waggery":3, "wagging":2, "waggish":2, "waggishly":3, "waggishness":3, "waggle":2, "wagglingly":3, "waggly":2, "waggon":2, "waggon":2, "waggon-headed":3, "waggonage":3, "waggoner":3, "waggonette":3, "waggonload":3, "waging":2, "wagner":2, "wagner-jauregg":3, "wagnerism":3, "wagnerist":3, "wagnerite":3, "wagon":2, "wagon":2, "wagon soldier":4, "wagon train":3, "wagon vault":3, "wagon-headed":3, "wagonage":3, "wagoner":3, "wagoner":3, "wagonette":3, "wagonless":3, "wagonload":3, "wagtail":2, "wahhabi":3, "wahhabism":3, "wahhabiism":4, "wahpeton":3, "waif":1, "wail":1, "wailer":2, "wailful":2, "wailing wall":3, "wailingly":3, "wailsome":2, "wain":1, "wainage":2, "wainable":3, "wainrope":2, "wainscot":2, "wainscoted":3, "wainscoting":3, "wainscotted":3, "wainscotting":3, "wainwright":2, "wainwright":2, "wair":1, "waist":1, "waistband":2, "waistcloth":2, "waistcoat":2, "waistcoated":3, "waistcoating":3, "waisted":2, "waister":2, "waistline":2, "wait":1, "waite":1, "waiter":2, "waitewoman":2, "waiting game":3, "waiting list":3, "waiting room":3, "waitingly":3, "waitlist":2, "waitress":2, "waitressless":3, "waive":1, "waiver":2, "waiving":2, "waikato":3, "waikiki":3, "wailuku":3, "waiyeung":2, "wajda":2, "wake":1, "wake island":3, "wake-robin":2, "wake-up":1, "wakefield":2, "wakeful":2, "wakefully":3, "wakefulness":3, "wakeless":2, "wakerife":2, "wakerifeness":3, "waksman":2, "waken":2, "wakening":3, "waker":2, "waking":2, "wal":1, "wal":1, "wald":1, "waldglas":2, "waldgrave":2, "waldheim":2, "waldstein":2, "wale":1, "wales":1, "walk":1, "walk away":3, "walk into":3, "walk-in":1, "walk-on":1, "walk-up":1, "walkabout":3, "walkaway":3, "walker":2, "walker":2, "walkie-talkie":3, "walking":2, "walking bass":3, "walking delegate":5, "walking fern":3, "walking papers":4, "walking stick":3, "walkout":2, "walkover":3, "walkway":2, "walky-talkies":3, "walky-talky":3, "wall":1, "wall creeper":3, "wall lizard":3, "wall mustard":3, "wall pellitory":5, "wall pepper":3, "wall rocket":3, "wallsend":2, "wallboard":2, "walleye":2, "walleyed":2, "wallflower":3, "wallpaper":3, "walt":1, "waltz":1, "waltz matilda":4, "waltzer":2, "waltzlike":2, "walbrzych":2, "walcheren":3, "walcott":2, "walden":2, "waldenburg":3, "waldenses":3, "waldensian":4, "waldemar i":4, "waldorf salad":4, "walfish bay":3, "walhall":2, "walhalla":3, "walies":2, "waling":2, "walkyrie":3, "walkre":4, "walla":2, "wallace":2, "wallace's line":3, "wallach":2, "wallah":2, "wallaba":3, "wallaby":3, "wallaby":3, "wallachia":4, "wallachian":4, "wallaroo":3, "wallasey":3, "wallensis":3, "wallenstein":3, "waller":2, "wallet":2, "wallies":2, "wallington":3, "wallis":2, "walloon":2, "wallop":2, "walloper":3, "walloping":3, "wallow":2, "wallower":3, "wally":2, "wally":2, "wallydrag":3, "wallydraigle":4, "walnut":2, "walpole":2, "walpurgis":3, "walpurgis night":4, "walpurgisnacht":4, "walras":2, "walrus":2, "walrus moustache":4, "walruses":3, "walsall":2, "walsingham":3, "walter":2, "walters":2, "walterboro":4, "walterene":3, "waltham":2, "waltham forest":4, "walthamstow":3, "walther":2, "walton":2, "walvis bay":3, "wame":1, "wamefou":2, "wamefu":2, "wameful":2, "wamefull":2, "wamble":2, "wamblingly":3, "wambliness":3, "wambly":2, "wammus":2, "wammuses":3, "wampanoag":4, "wampum":2, "wampumpeag":3, "wampus":2, "wampuses":3, "wan":1, "wan":1, "wan-ch'uan":2, "wand":1, "wandsworth":2, "wandlike":2, "wane":1, "waney":2, "wangchuk":2, "wank":1, "wanker":2, "want":1, "wanter":2, "wanting":2, "wantless":2, "wantlessness":3, "wanamaker":4, "wanaque":3, "wanchancy":3, "wanchan":3, "wanchan":3, "wanda":2, "wander":2, "wandering-jew":2, "wanderer":3, "wanderer":3, "wandering":3, "wandering albatross":6, "wandering jew":4, "wandering jew":4, "wanderjahr":3, "wanderjahre":4, "wanderlust":3, "wanderoo":3, "wanderoos":3, "wandle":2, "wandoo":2, "wangan":2, "wanganui":4, "wangle":2, "wangler":2, "wangun":2, "wanhsien":2, "waning":2, "wanion":2, "wanier":3, "waniest":3, "wanigan":3, "wankel engine":4, "wankie":2, "wanna":2, "wanne-eickel":3, "wanner":2, "wannest":2, "wanning":2, "wannish":2, "wanton":2, "wap":1, "wapakoneta":5, "wapato":3, "wapatoo":3, "wapentake":3, "wapinschaw":3, "wapiti":3, "wappenshaw":3, "wappenshawing":4, "wapperjaw":3, "wapperjawed":3, "wapping":2, "war":1, "war":1, "war baby":3, "war bonnet":3, "war correspondent":5, "war memorial":5, "war of secession":5, "war-weary":2, "warb":1, "ward":1, "ward":1, "ward heeler":3, "warded":2, "warden":2, "wardenry":3, "wardenship":3, "warder":2, "wardership":3, "wardless":2, "wardmote":2, "wardress":2, "wardrobe":2, "wardrobe trunk":3, "wardroom":2, "wardship":2, "ware":1, "ware":1, "wares":1, "warehouse":2, "warehoused":2, "warehouseman":3, "warehouses":3, "warehousing":3, "wareroom":2, "wark":1, "warm":1, "warm body":3, "warm over":3, "warm sector":3, "warm-blooded":2, "warm-hearted":2, "warm-up":1, "warmth":1, "warmthless":2, "warmthlessness":3, "warmer":2, "warmhearted":3, "warmheartedly":4, "warmheartedness":4, "warming pan":3, "warmish":2, "warmly":2, "warmness":2, "warn":1, "warner":2, "warning":2, "warningly":3, "warp":1, "warp-knitted":2, "warpage":2, "warper":2, "warping-frame":2, "wart":1, "wartburg":2, "warted":2, "wartier":3, "wartiest":3, "wartiness":3, "wartless":2, "wartlike":2, "warty":2, "warbeck":2, "warbird":2, "warble":2, "warble fly":3, "warbled":2, "warbler":2, "warden":2, "warder":2, "wardian case":4, "warfare":2, "warfarin":3, "warfield":2, "wargentin":3, "warhead":2, "warhol":2, "warhorse":2, "waring":2, "warier":3, "wariest":3, "warily":3, "wariness":3, "warison":3, "warless":2, "warlessly":3, "warlessness":3, "warley":2, "warlike":2, "warlock":2, "warlord":2, "warmonger":3, "warmongering":4, "warmouth":2, "warner":2, "warpath":2, "warplane":2, "warrant":2, "warrant officer":5, "warrantable":4, "warrantableness":5, "warranter":3, "warrantee":3, "warrantor":3, "warranty":3, "warragal":3, "warren":2, "warren":2, "warrensburg":3, "warrener":3, "warrenton":3, "warrigal":3, "warring":2, "warrington":3, "warrigal":3, "warrior":3, "warrior":3, "warriorlike":4, "warsaw":2, "warsaw":2, "warsaw pact":3, "warship":2, "warsle":2, "warsler":2, "warstle":2, "warstler":2, "warta":2, "warthe":2, "wartime":2, "warwick":2, "warwickshire":3, "wary":2, "was":1, "wase":1, "wash":1, "wash":1, "wash drawing":3, "wash-leather":2, "wash-up":1, "washability":5, "washable":3, "washaway":3, "washbasin":3, "washboard":2, "washbowl":2, "washcloth":2, "washday":2, "washer":2, "washerless":3, "washerman":3, "washerwoman":4, "washery":3, "washin":2, "washing":2, "washing machine":4, "washing powder":4, "washing soda":4, "washing-up":2, "washington":3, "washington island":5, "washington palm":4, "washingtonian":5, "washier":3, "washiest":3, "washiness":3, "washita":3, "washleather":3, "washout":2, "washrag":2, "washroom":2, "washstand":2, "washtub":2, "washwoman":3, "washwomen":3, "washy":2, "wasp":1, "wasp":1, "wasp":1, "wasp-waisted":2, "waspish":2, "waspishly":3, "waspishness":3, "waspier":3, "waspiest":3, "waspily":3, "waspiness":3, "waspy":2, "wast":1, "wast":1, "wast water":3, "waste":1, "wastebasket":3, "wasteful":2, "wasteland":2, "wasteless":2, "wastelot":2, "wasteness":2, "wastepaper":3, "wastepaper basket":5, "wastepile":2, "wastery":2, "wasteweir":2, "wastage":2, "wastable":3, "wasted":2, "wasting":2, "wasting asset":4, "wastingly":3, "wastingness":3, "wastrel":2, "wastrie":2, "wastry":2, "wasco":2, "wasn't":2, "wassail":2, "wassailer":3, "wassermann":3, "wassermann test":4, "wassily":3, "wat":1, "watch":1, "watch committee":4, "watchband":2, "watchcase":2, "watchdog":2, "watcher":2, "watchful":2, "watchfully":3, "watchfulness":3, "watchless":2, "watchlessness":3, "watchmaker":3, "watchman":2, "watchout":2, "watchstrap":2, "watchtower":3, "watchword":2, "watt":1, "watt":1, "watt-second":2, "watts":1, "watts-dunton":2, "wattage":2, "watthour":2, "wattless":2, "wattmeter":3, "wattsecond":3, "watchung":2, "water cannon":4, "watersider":4, "watford":2, "watkins":2, "watling island":4, "watson":2, "watson-watt":2, "watson-wentworth":3, "watteau":2, "watteau back":3, "wattenscheid":3, "watterson":3, "wattle":2, "wattle and daub":4, "wattlebird":3, "waucht":1, "waufie":2, "waugh":1, "waugh":1, "waught":1, "wauk":1, "waul":1, "waur":1, "waukegan":3, "waukesha":3, "waupaca":3, "waupun":2, "wausau":2, "wauseon":3, "wauwatosa":4, "wave":1, "wave equation":4, "wave function":3, "wave mechanics":4, "wave number":3, "wave theory":4, "wave-cut platform":3, "waved":1, "waves":1, "waves":1, "waveband":2, "waveform":2, "waveguide":2, "wavelength":2, "waveless":2, "wavelessly":3, "wavelet":2, "wavelike":2, "wavemeter":3, "waveoff":2, "waver":2, "waving":2, "wavingly":3, "wavier":3, "waviest":3, "wavily":3, "waviness":3, "wavy":2, "waw":1, "wawl":1, "wax":1, "wax flower":3, "wax insect":3, "wax myrtle":3, "wax paper":3, "waxberry":3, "waxbill":2, "waxen":2, "waxer":2, "waxing":2, "waxier":3, "waxiest":3, "waxily":3, "waxiness":3, "waxlike":2, "waxplant":2, "waxweed":2, "waxwing":2, "waxwork":2, "waxy":2, "way":1, "wayne":1, "waynesboro":3, "waynesburg":2, "waynesville":2, "ways":1, "wayzgoose":2, "waybill":2, "waycross":2, "wayfarer":3, "wayfaring":3, "wayfaring tree":4, "waygoing":3, "waylaid":2, "wayland":2, "wayland smith":3, "waylay":2, "waylayer":3, "waylaying":3, "wayleave":2, "wayless":2, "wayside":2, "wayward":2, "wayworn":2, "wayzata":3, "wabash":2, "wabasha":3, "waco":2, "wadai":2, "wadena":3, "wadi":2, "wadi halfa":4, "wady":2, "wafer":2, "wafer-thin":2, "waferlike":3, "wafery":3, "wager":2, "wagon-lit":2, "wagram":2, "wahabi":3, "wahiawa":4, "wahine":3, "wahoo":2, "wahoo":2, "waka":2, "wakashan":3, "wakayama":4, "wakeeney":3, "wakizashi":4, "walach":2, "walachia":4, "walachian":4, "waler":2, "waler":2, "waley":2, "wamus":2, "wamuses":3, "warangal":3, "waragi":3, "waratah":3, "wasatch range":3, "waseca":3, "washougal":3, "waskied":2, "waskiing":3, "watap":2, "water":2, "water back":3, "water bear":3, "water bed":3, "water beetle":4, "water bird":3, "water biscuit":4, "water blister":4, "water boatman":4, "water brash":3, "water buffalo":5, "water bug":3, "water carrier":5, "water chestnut":4, "water chinquapin":5, "water clock":3, "water closet":4, "water cooler":4, "water crake":3, "water cure":3, "water cycle":4, "water diviner":5, "water dog":3, "water down":3, "water flea":3, "water gap":3, "water gas":3, "water gate":3, "water gauge":3, "water glass":3, "water gum":3, "water gun":3, "water hammer":4, "water hemlock":4, "water hen":3, "water hole":3, "water hyacinth":5, "water ice":3, "water jacket":4, "water jump":3, "water level":4, "water lily":4, "water line":3, "water main":3, "water meadow":4, "water meter":4, "water mill":3, "water milfoil":4, "water mint":3, "water moccasin":5, "water nymph":3, "water of crystallization":8, "water ouzel":4, "water ox":3, "water parting":4, "water pepper":4, "water pimpernel":5, "water pipe":3, "water pistol":4, "water plantain":4, "water power":4, "water polo":4, "water purslane":4, "water rail":3, "water rat":3, "water right":3, "water sapphire":4, "water scorpion":5, "water shield":3, "water shrew":3, "water snake":3, "water softener":5, "water soldier":4, "water spaniel":4, "water spider":4, "water strider":4, "water supply":4, "water system":4, "water table":4, "water thrush":3, "water torture":4, "water tower":4, "water vapour":4, "water vole":3, "water wagtail":4, "water wheel":3, "water wings":3, "water witch":3, "water-bath":2, "water-bearing":3, "water-color":3, "water-cool":2, "water-gas":2, "water-inch":2, "water-jacket":3, "water-laid":2, "water-repellent":4, "water-resistant":4, "water-resistant":4, "water-sick":2, "water-ski":2, "water-soak":2, "water-soluble":4, "water-struck":2, "water-supply":3, "water-wave":2, "watered-down":2, "waterage":3, "waterborne":3, "waterbrain":3, "waterbuck":3, "waterbury":4, "watercolor":4, "watercolorist":5, "watercourse":3, "watercraft":3, "watercress":3, "waterdog":3, "wateree":3, "waterer":3, "waterfall":3, "waterfinder":4, "waterford":3, "waterfowl":3, "waterfront":3, "watergate":3, "waterglass":3, "waterhouse":3, "watering":3, "watering can":4, "watering place":4, "watering pot":4, "waterish":3, "waterishly":4, "waterishness":4, "waterily":4, "wateriness":4, "waterleaf":3, "waterless":3, "waterlessly":4, "waterlessness":4, "waterlike":3, "waterline":3, "waterlocked":3, "waterlog":3, "waterlogged":3, "waterloo":3, "waterman":3, "watermanship":4, "watermark":3, "watermelon":4, "waterpower":4, "waterproof":3, "waterscape":3, "watershed":3, "waterside":3, "waterskier":4, "waterspout":3, "watertight":3, "watertightness":4, "watertown":3, "waterville":3, "watervliet":3, "waterward":3, "waterwards":3, "waterway":3, "waterweed":3, "waterworks":3, "waterworn":3, "watery":3, "wathen":2, "watonga":3, "watutsi":3, "watusi":3, "wavell":2, "wavellite":3, "waver":2, "waveringly":4, "waverley":3, "waverly":3, "wavey":2, "wavy":2, "wawa":2, "wawaved":2, "wawaving":3, "wazirabad":4, "waziristan":4, "wbc":1, "wcc":1, "wctu":1, "we'd":1, "we'll":1, "we're":1, "we've":1, "weak":1, "weak interaction":5, "weak sister":3, "weak-headed":2, "weak-kneedly":2, "weak-kneedness":2, "weak-minded":2, "weak-mindedly":3, "weak-mindedness":3, "weaken":2, "weakener":3, "weaker sex":3, "weakfish":2, "weakfishes":3, "weakhanded":3, "weakheartedly":4, "weakheartedness":4, "weakish":2, "weakishly":3, "weakishness":3, "weakling":2, "weaklier":3, "weakliest":3, "weakliness":3, "weakly":2, "weakness":2, "weal":1, "weald":1, "weald":1, "wealth":1, "wealthier":3, "wealthiest":3, "wealthily":3, "wealthiness":3, "wealthy":2, "wealthy":2, "wean":1, "weanedness":3, "weaner":2, "weanling":2, "weapon":2, "weaponed":2, "weaponeer":3, "weaponless":3, "weaponry":3, "weaponshaw":3, "weapschawing":3, "wear":1, "wearability":5, "wearable":3, "wearer":2, "wearing":2, "wearingly":3, "wearish":2, "wearproof":2, "weather":2, "weather eye":3, "weather house":3, "weather map":3, "weather station":4, "weather strip":3, "weather vane":3, "weather-beaten":3, "weather-bound":2, "weather-strip":2, "weather-wise":2, "weathered":2, "weatherability":6, "weatherboard":3, "weatherboarding":4, "weathercock":3, "weatherer":3, "weatherfish":3, "weatherfishes":4, "weatherglass":3, "weathering":3, "weatherliness":4, "weatherly":3, "weatherly":3, "weatherman":3, "weatherproof":3, "weathertight":3, "weathertightness":4, "weatherworn":3, "weathstripped":2, "weathstripping":3, "weave":1, "weaver":2, "weaver's hitch":3, "weaverbird":3, "weaponry":3, "wearied":2, "wearier":3, "weariest":3, "weariful":3, "wearifully":4, "wearifulness":4, "weariless":3, "wearily":3, "weariness":3, "wearisome":3, "wearisomely":4, "wearisomeness":4, "weary":2, "wearying":3, "wearyingly":4, "weasand":2, "weasel":2, "weasel out":3, "weasel words":3, "weasel-worded":3, "weason":2, "weazand":2, "web":1, "web spinner":3, "web-footed":2, "webb":1, "webbed":1, "webbing":2, "webbier":3, "webbiest":3, "webby":2, "webfoot":2, "webless":2, "weblike":2, "webster":2, "webster":2, "websterite":3, "websterian":4, "webwheel":2, "webworm":2, "wed":1, "wedge":1, "wedge-tailed eagle":3, "wedged":1, "wedgelike":2, "wedgie":2, "wedging":2, "wedgier":3, "wedgiest":3, "wedgwood":2, "wedgwood blue":3, "wedgy":2, "wednesday":2, "wednesdays":2, "wedded":2, "weddell sea":3, "wedding":2, "wedding breakfast":4, "wedding cake":3, "wedding ring":3, "wedeling":3, "wedlock":2, "wee":1, "wee-wee":1, "weed":1, "weed":1, "weed-killer":2, "weeds":1, "weeder":2, "weedier":3, "weediest":3, "weedily":3, "weediness":3, "weedkiller":3, "weedy":2, "week":1, "weekday":2, "weekdays":2, "weekend":2, "weekends":2, "weekender":3, "weekley":2, "weekly":2, "weeknight":2, "weems":1, "ween":1, "weep":1, "weeper":2, "weeping":2, "weeping willow":4, "weepier":3, "weepiest":3, "weepiness":3, "weepy":2, "weeda":2, "weenie":2, "weeny":2, "weeny-bopper":3, "weever":2, "weevil":2, "wef":1, "weft":1, "weft-knitted":2, "weftwise":2, "wehrmacht":2, "wei":1, "weichsel":2, "weidman":2, "weigh":1, "weight":1, "weight watcher":3, "weighted":2, "weightedly":3, "weighter":2, "weighting":2, "weightier":3, "weightiest":3, "weightily":3, "weightiness":3, "weightlessly":3, "weightlessness":3, "weightlifting":3, "weighty":2, "weighable":3, "weighbridge":2, "weigher":2, "weighman":2, "weill":1, "weinberger":3, "weingartner":3, "weir":1, "weird":1, "weird sisters":3, "weirdie":2, "weirdies":2, "weirdness":2, "weirdo":2, "weirdos":2, "weirdy":2, "weirdie":2, "weirdo":2, "weirless":2, "weirton":2, "weiss":1, "weisshorn":2, "weisenheimer":4, "weismannism":3, "weizmann":2, "weigel":2, "weigela":3, "weigelia":4, "weihai":2, "weihaiwei":3, "weimar":2, "weimar republic":5, "weimaraner":4, "weinek":2, "weiser":2, "welch":1, "welch":1, "weld":1, "weld":1, "weldability":5, "weldable":3, "welder":2, "weldless":2, "weldment":2, "well":1, "well-absorbed":2, "well-acted":2, "well-accented":3, "well-accentuated":5, "well-accepted":3, "well-accommodated":5, "well-accompanied":4, "well-accomplished":3, "well-accorded":3, "well-accredited":4, "well-accustomed":3, "well-accumulated":5, "well-acknowledged":3, "well-acquainted":3, "well-acquired":2, "well-addicted":3, "well-addressed":2, "well-adjusted":3, "well-administered":4, "well-admitted":3, "well-advanced":2, "well-advertised":3, "well-advised":2, "well-advocated":4, "well-affected":3, "well-allied":2, "well-allotted":3, "well-altered":2, "well-analysed":3, "well-analyzed":3, "well-anchored":2, "well-announced":2, "well-annotated":4, "well-answered":2, "well-anticipated":5, "well-appareled":3, "well-apparelled":3, "well-appearing":3, "well-applauded":3, "well-applied":2, "well-appointed":3, "well-appreciated":5, "well-approached":2, "well-approved":2, "well-appropriated":5, "well-arbitrated":4, "well-argued":2, "well-armored":2, "well-armoured":2, "well-arranged":2, "well-arrayed":2, "well-articulated":5, "well-ascertained":3, "well-assembled":3, "well-asserted":3, "well-assessed":2, "well-assigned":2, "well-assimilated":5, "well-assisted":3, "well-assorted":3, "well-associated":5, "well-assumed":2, "well-assured":2, "well-attached":2, "well-attained":2, "well-attempted":3, "well-attended":3, "well-attending":3, "well-attested":3, "well-attired":2, "well-attributed":4, "well-audited":3, "well-authenticated":5, "well-authorized":3, "well-averaged":3, "well-abolished":3, "well-abounding":3, "well-achieved":2, "well-adapted":3, "well-adopted":3, "well-adorned":2, "well-amended":3, "well-amused":2, "well-anointed":3, "well-aroused":2, "well-awakened":3, "well-awarded":3, "well-aware":2, "well-balanced":2, "well-bandaged":2, "well-barbered":2, "well-beaten":2, "well-becoming":3, "well-befitting":3, "well-begotten":3, "well-begun":2, "well-behaved":2, "well-being":2, "well-beknown":2, "well-believed":2, "well-beloved":3, "well-bespoken":3, "well-bestowed":2, "well-blended":2, "well-blooded":2, "well-boding":2, "well-bonded":2, "well-booted":2, "well-bottled":2, "well-braided":2, "well-branded":2, "well-broken":2, "well-buried":2, "well-busied":2, "well-buttoned":2, "well-calculated":4, "well-camouflaged":3, "well-canvassed":2, "well-carpeted":3, "well-cautioned":2, "well-celebrated":4, "well-centered":2, "well-centred":2, "well-certified":3, "well-cemented":3, "well-chaperoned":3, "well-charted":2, "well-characterized":4, "well-chauffeured":2, "well-cherished":2, "well-chosen":2, "well-circumstanced":3, "well-circulated":4, "well-civilized":3, "well-classified":3, "well-cloistered":2, "well-coated":2, "well-collected":3, "well-colored":2, "well-colonized":3, "well-combined":2, "well-commanded":3, "well-commenced":2, "well-commended":3, "well-committed":3, "well-communicated":5, "well-compacted":3, "well-compared":2, "well-compensated":4, "well-compiled":2, "well-completed":3, "well-complexioned":3, "well-composed":2, "well-comprehended":4, "well-concealed":2, "well-conceded":3, "well-conceived":2, "well-concentrated":4, "well-concerted":3, "well-concluded":3, "well-concocted":3, "well-concorded":3, "well-condensed":2, "well-conditioned":3, "well-conferred":2, "well-confided":3, "well-confirmed":2, "well-connected":3, "well-conserved":2, "well-considered":3, "well-constituted":4, "well-constricted":3, "well-constructed":3, "well-contained":2, "well-contented":3, "well-contested":3, "well-continued":3, "well-contracted":3, "well-contrasted":3, "well-contrived":2, "well-controlled":2, "well-conveyed":2, "well-convinced":2, "well-copied":2, "well-corrected":3, "well-corseted":3, "well-costumed":2, "well-counseled":2, "well-counselled":2, "well-courted":2, "well-coupled":2, "well-covered":2, "well-credited":3, "well-criticized":3, "well-crocheted":2, "well-cultivated":4, "well-cultured":2, "well-curried":2, "well-cushioned":2, "well-darkened":2, "well-decorated":4, "well-demonstrated":4, "well-designated":4, "well-debated":3, "well-deceived":2, "well-decided":3, "well-decreed":2, "well-defended":3, "well-deferred":2, "well-defined":2, "well-delayed":2, "well-deliberated":5, "well-delineated":5, "well-delivered":3, "well-depicted":3, "well-derived":2, "well-described":2, "well-deserved":2, "well-designed":2, "well-designing":3, "well-desired":2, "well-destroyed":2, "well-developed":3, "well-devised":2, "well-diffused":2, "well-disbursed":2, "well-disciplined":3, "well-discussed":2, "well-disguised":2, "well-dispersed":2, "well-displayed":2, "well-disposed":2, "well-disputed":3, "well-dissected":3, "well-dissembled":3, "well-dissipated":4, "well-distinguished":3, "well-distributed":4, "well-diagnosed":3, "well-digested":3, "well-directed":3, "well-diversified":4, "well-divided":3, "well-documented":4, "well-dominated":4, "well-domesticated":5, "well-dramatized":3, "well-driven":2, "well-dusted":2, "well-edited":3, "well-educated":4, "well-effected":3, "well-elevated":4, "well-embodied":3, "well-emphasized":3, "well-employed":2, "well-ended":2, "well-enacted":3, "well-encouraged":3, "well-endorsed":2, "well-endowed":2, "well-enforced":2, "well-engineered":3, "well-engraved":2, "well-enlightened":3, "well-entered":2, "well-entertained":3, "well-entitled":3, "well-escorted":3, "well-essayed":2, "well-established":3, "well-esteemed":2, "well-estimated":4, "well-evidenced":3, "well-examined":3, "well-exemplified":4, "well-exerted":3, "well-exercised":3, "well-executed":4, "well-exhibited":4, "well-expended":3, "well-experienced":4, "well-explained":2, "well-explicated":4, "well-exposed":2, "well-expressed":2, "well-elaborated":5, "well-eliminated":5, "well-enumerated":5, "well-equipped":2, "well-erected":3, "well-fabricated":4, "well-faded":2, "well-fashioned":2, "well-fastened":2, "well-favored":2, "well-favoredness":3, "well-favoured":2, "well-favouredness":3, "well-featured":2, "well-fermented":3, "well-filtered":2, "well-finished":2, "well-fitted":2, "well-fitting":2, "well-financed":2, "well-flavored":2, "well-flavoured":2, "well-flooded":2, "well-folded":2, "well-followed":2, "well-foreseen":2, "well-forewarned":2, "well-forested":3, "well-forgotten":3, "well-formulated":4, "well-fortified":3, "well-founded":2, "well-focused":2, "well-focussed":2, "well-freckled":2, "well-frequented":3, "well-frightened":2, "well-functioning":3, "well-furnished":2, "well-fueled":2, "well-fuelled":2, "well-gaited":2, "well-gardened":2, "well-garmented":3, "well-garnished":2, "well-gathered":2, "well-gifted":2, "well-gotten":2, "well-governed":2, "well-graded":2, "well-gratified":3, "well-graveled":2, "well-gravelled":2, "well-graven":2, "well-greeted":2, "well-grounded":2, "well-guarded":2, "well-guided":2, "well-hammered":2, "well-handled":2, "well-hardened":2, "well-harnessed":2, "well-hazarded":3, "well-headed":2, "well-heated":2, "well-hidden":2, "well-humored":2, "well-humoured":2, "well-ignored":2, "well-illustrated":4, "well-imitated":4, "well-immersed":2, "well-implied":2, "well-imposed":2, "well-impressed":2, "well-improved":2, "well-improvised":3, "well-inaugurated":5, "well-inclined":2, "well-indexed":2, "well-indicated":4, "well-informed":2, "well-inhabited":4, "well-initiated":5, "well-inspected":3, "well-installed":2, "well-instituted":4, "well-instructed":3, "well-insured":2, "well-insulated":4, "well-intentioned":3, "well-interested":4, "well-interpreted":4, "well-integrated":4, "well-introduced":3, "well-invented":3, "well-invested":3, "well-investigated":5, "well-irrigated":4, "well-identified":4, "well-imagined":3, "well-ironed":2, "well-itemized":3, "well-justified":3, "well-kindled":2, "well-knitted":2, "well-knotted":2, "well-larded":2, "well-laundered":2, "well-labored":2, "well-laboured":2, "well-lettered":2, "well-leveled":2, "well-levelled":2, "well-lighted":2, "well-loaded":2, "well-lofted":2, "well-maintained":2, "well-managed":2, "well-mannered":2, "well-manufactured":4, "well-marketed":3, "well-married":2, "well-mastered":2, "well-manured":2, "well-matured":2, "well-meaning":2, "well-measured":2, "well-mended":2, "well-merited":3, "well-methodized":3, "well-mingled":2, "well-modulated":4, "well-mounted":2, "well-motived":2, "well-motivated":4, "well-narrated":3, "well-navigated":4, "well-needed":2, "well-negotiated":5, "well-noted":2, "well-nourished":2, "well-nurtured":2, "well-observed":2, "well-occupied":3, "well-operated":4, "well-ordered":2, "well-organised":3, "well-organized":3, "well-outlined":2, "well-obeyed":2, "well-oriented":4, "well-painted":2, "well-paragraphed":3, "well-paying":2, "well-patrolled":2, "well-patronised":3, "well-patronized":3, "well-pensioned":2, "well-peopled":2, "well-perceived":2, "well-performed":2, "well-persuaded":3, "well-philosophized":4, "well-photographed":3, "well-piloted":3, "well-planted":2, "well-plotted":2, "well-pointed":2, "well-polished":2, "well-pondered":2, "well-posted":2, "well-postponed":2, "well-policed":2, "well-positioned":3, "well-practiced":2, "well-prepared":2, "well-preserved":2, "well-printed":2, "well-principled":3, "well-prosecuted":4, "well-proven":2, "well-prolonged":2, "well-pronounced":2, "well-proportioned":3, "well-protected":3, "well-provided":3, "well-published":2, "well-punished":2, "well-qualified":3, "well-rated":2, "well-reasoned":2, "well-recognised":3, "well-recognized":3, "well-recommended":4, "well-regulated":4, "well-rendered":2, "well-represented":4, "well-rested":2, "well-received":2, "well-recited":3, "well-recorded":3, "well-recovered":3, "well-referred":2, "well-refined":2, "well-reflected":3, "well-refreshed":2, "well-regarded":3, "well-rehearsed":2, "well-remarked":2, "well-remembered":3, "well-repaid":2, "well-repaired":2, "well-replaced":2, "well-replenished":3, "well-reported":3, "well-reputed":3, "well-resolved":2, "well-respected":3, "well-restored":2, "well-reviewed":2, "well-revised":2, "well-rewarded":3, "well-ridden":2, "well-ripened":2, "well-roasted":2, "well-rooted":2, "well-rounded":2, "well-running":2, "well-sacrificed":3, "well-sailing":2, "well-salted":2, "well-sanctioned":2, "well-sanded":2, "well-satisfied":3, "well-scattered":2, "well-scented":2, "well-scheduled":2, "well-seated":2, "well-seasoned":2, "well-seeded":2, "well-separated":4, "well-settled":2, "well-secluded":3, "well-secured":2, "well-selected":3, "well-shaded":2, "well-shaken":2, "well-sharpened":2, "well-sheltered":2, "well-showered":2, "well-simulated":4, "well-situated":4, "well-sorted":2, "well-sounding":2, "well-speaking":2, "well-spoken":2, "well-stated":2, "well-straightened":2, "well-studied":2, "well-sugared":2, "well-suited":2, "well-summarised":3, "well-summarized":3, "well-sunburned":2, "well-supplemented":4, "well-supplied":2, "well-supported":3, "well-suppressed":2, "well-sustained":2, "well-supervised":3, "well-systematised":4, "well-systematized":4, "well-tailored":2, "well-tempered":2, "well-tended":2, "well-tested":2, "well-tinted":2, "well-toasted":2, "well-translated":3, "well-traveled":2, "well-travelled":2, "well-treated":2, "well-trodden":2, "well-trusted":2, "well-tutored":2, "well-understood":3, "well-upholstered":3, "well-united":3, "well-utilized":3, "well-varied":2, "well-varnished":2, "well-ventilated":4, "well-verified":3, "well-visualised":4, "well-visualized":4, "well-warranted":3, "well-watered":2, "well-winded":2, "well-windowed":2, "well-wisher":2, "well-wishing":2, "well-witnessed":2, "well-wooded":2, "well-worded":2, "well-woven":2, "well-written":2, "welles":1, "wellesley":2, "wells":1, "wellsboro":3, "wellsburg":2, "wellsite":2, "wellston":2, "wellsville":2, "welladay":3, "wellaway":3, "wellbeing":3, "wellborn":2, "welldoer":3, "welldoing":3, "wellhead":2, "wellhole":2, "wellhouse":2, "wellhouses":3, "wellness":2, "wellpoint":2, "wellspring":2, "wels":1, "welsh":1, "welsh":1, "welsh corgi":3, "welsh dresser":3, "welsh mountain pony":5, "welsh poppy":3, "welsh rabbit":3, "welsh springer spaniel":5, "welsh terrier":4, "welsher":2, "welshman":2, "welshwoman":3, "welshwomen":3, "welsbach burner":4, "welt":1, "weltanschauung":4, "weltansicht":3, "weltpolitik":4, "weltschmerz":2, "welcome":2, "welcomeless":3, "welcomely":3, "welcomeness":3, "weldor":2, "welfare":2, "welfare state":3, "welfarism":3, "welkin":2, "welkom":2, "welland canal":4, "wellesz":2, "wellies":2, "wellingborough":4, "wellington":3, "wellington boots":4, "wellingtonia":5, "welter":2, "welterweight":3, "welty":2, "welwitschia":4, "welwyn garden city":6, "wemyss":1, "wembley":2, "wen":1, "wench":1, "wencher":2, "wenchman":2, "wend":1, "wend":1, "wended":2, "wending":2, "wendish":2, "wensleydale":3, "wensleydale":3, "went":1, "wentzville":2, "wentworth":2, "wenceslas":3, "wenceslaus":3, "wenchow":2, "wendell":2, "wendy house":3, "wentletrap":3, "wenzel":2, "wept":1, "were":1, "weregild":2, "weren't":2, "werewolf":2, "wersh":1, "werste":1, "wert":1, "werfel":2, "wergeld":2, "wergild":2, "werner":2, "wernerite":3, "wernerian":4, "wertherian":4, "werwolf":2, "wes":1, "west":1, "west":1, "west atlantic":4, "west bengal":3, "west berlin":3, "west bromwich":3, "west country":3, "west flanders":3, "west germanic":4, "west germany":4, "west glamorgan":4, "west hartlepool":4, "west indies":3, "west irian":4, "west lothian":4, "west midlands":3, "west pakistan":4, "west prussia":3, "west riding":3, "west sussex":3, "west virginia":5, "west yorkshire":3, "west-northwest":2, "west-northwestward":3, "west-southwest":2, "west-southwestward":3, "west-southwestwardly":4, "westm":1, "westborough":3, "westbound":2, "westbrook":2, "westchester":3, "wester":2, "western":2, "western":2, "western australia":6, "western church":3, "western ghats":3, "western hemisphere":5, "western hemlock":4, "western ocean":4, "western roll":3, "western roman empire":6, "western sahara":5, "western samoa":5, "westerner":3, "westernise":3, "westernised":3, "westernism":3, "westernising":4, "westernize":3, "westernized":3, "westernizing":4, "westernmost":3, "westernport":3, "westering":3, "westerlies":3, "westerliness":4, "westerly":3, "westfalen":3, "westfield":2, "westing":2, "westinghouse":3, "westlin":2, "westling":2, "westlings":2, "westlins":2, "westmeath":2, "westminster":3, "westminster abbey":5, "westmont":2, "westmoreland":3, "westmorland":3, "westnorthwestwardly":5, "westphalia":4, "westphalian":4, "westport":2, "westpreussen":3, "westville":2, "westwall":2, "westward":2, "westward":2, "westwards":2, "westwardly":3, "westwego":3, "westwood":2, "westwork":2, "westworth":2, "wesker":2, "weskit":2, "weslaco":3, "wesley":2, "wesleyan":3, "wesleyanism":4, "wesleyism":3, "wesleyville":3, "wessand":2, "wessex":2, "western isles":3, "westerly":3, "westermarck":3, "westerville":3, "weston":2, "weston standard cell":5, "weston-super-mare":3, "wet":1, "wet blanket":3, "wet-and-dry-bulb thermometer":5, "wet-blanket":2, "wet-bulb thermometer":5, "wether":2, "wethersfield":3, "wetback":2, "wetly":2, "wetness":2, "wetproof":2, "wettability":5, "wettable":3, "wetted":2, "wetter":2, "wetterhorn":3, "wettest":2, "wetting":2, "wetting agent":4, "wettish":2, "weu":1, "wexford":2, "wey":1, "weyl":1, "weyden":2, "weygand":2, "weymouth":2, "wear":2, "weber":2, "weber":2, "wedeln":2, "wedekind":3, "weer":2, "weest":2, "wejack":2, "weka":2, "wenatchee":3, "wenona":3, "wenonah":3, "weser":2, "wesermde":4, "wewoka":3, "wftu":1, "wh-movement":2, "whack":1, "whacker":2, "whacking":2, "whackier":3, "whackiest":3, "whacky":2, "whale":1, "whale catcher":3, "whales":1, "whaleback":2, "whaleboat":2, "whalebone":2, "whalebone whale":3, "whalelike":2, "whalesucker":3, "whaler":2, "whaling":2, "wham":1, "whamming":2, "whammo":2, "whang":1, "whangdoodle":3, "whangee":2, "whangarei":3, "whap":1, "whapper":2, "whapping":2, "whare":1, "wharf":1, "wharfage":2, "wharfie":2, "wharfinger":3, "wharfless":2, "wharve":1, "wharves":1, "wharton":2, "what":1, "what'd":1, "what'll":1, "what's":1, "what've":1, "whate'er":2, "whatever":3, "whatnot":2, "whatsoe'er":3, "whatsoever":4, "whaup":1, "wheal":1, "wheat":1, "wheatear":2, "wheaten":2, "wheatgrass":2, "wheatless":2, "wheatstone":2, "wheatstone bridge":3, "wheatworm":2, "whee":1, "wheel":1, "wheel and axle":4, "wheel animalcule":5, "wheel of fortune":4, "wheel window":3, "wheeled":1, "wheels":1, "wheelsman":2, "wheelabrate":3, "wheelabrated":4, "wheelabrating":4, "wheelabrator":4, "wheelbarrow":3, "wheelbarrower":4, "wheelbase":2, "wheelchair":2, "wheeler":2, "wheeler-dealer":3, "wheelersburg":3, "wheelhouse":2, "wheelhouses":3, "wheelie":2, "wheeling":2, "wheeling":2, "wheelless":2, "wheelman":2, "wheelwork":2, "wheelwright":2, "wheelwright":2, "wheen":1, "wheeze":1, "wheezer":2, "wheezing":2, "wheezingly":3, "wheezier":3, "wheeziest":3, "wheezily":3, "wheeziness":3, "wheezy":2, "wheedle":2, "wheeler":2, "whelk":1, "whelked":1, "whelm":1, "whelp":1, "whelpless":2, "when":1, "when'd":1, "when'll":1, "when're":1, "when's":1, "when-issued":2, "whence":1, "whencesoever":4, "whenas":2, "whene'er":2, "whenever":3, "whensoeve":4, "whensoever":4, "where":1, "where'd":1, "where's":1, "whereafter":3, "whereas":2, "whereases":3, "whereat":2, "whereabouts":3, "whereby":2, "wherefore":2, "wherefrom":2, "wherein":2, "whereinto":3, "whereof":2, "whereon":2, "wheresoever":4, "wherethrough":2, "whereto":2, "whereunto":3, "whereupon":3, "whereupon":3, "wherewith":2, "wherewithal":3, "where'er":2, "wherever":3, "wherried":2, "wherrit":2, "wherry":2, "wherrying":3, "whet":1, "whether":2, "whetstone":2, "whetted":2, "whetter":2, "whetting":2, "whew":1, "whey":1, "wheyey":2, "wheyface":2, "wheyishness":3, "wheylike":2, "whewell":2, "whf":1, "which":1, "whichever":3, "whichsoever":4, "whicker":2, "whidah":2, "whiff":1, "whiffer":2, "whiffet":2, "whiffle":2, "whiffler":2, "whiffletree":3, "whig":1, "whig":1, "whiggery":3, "whigging":2, "whiggish":2, "whiggishly":3, "whiggishness":3, "whiggism":2, "whigmaleerie":4, "whigmaleery":4, "while":1, "while away":3, "whiles":1, "whilst":1, "whiling":2, "whillikers":3, "whillikins":3, "whim":1, "whimbrel":2, "whimper":2, "whimperer":3, "whimperingly":4, "whimsey":2, "whimsical":3, "whimsicality":5, "whimsically":4, "whimsicalness":4, "whin":1, "whine":1, "whinge":1, "whinchat":2, "whiney":2, "whining":2, "whinier":3, "whiniest":3, "whinnied":2, "whinny":2, "whinnying":3, "whinstone":2, "whiny":2, "whip":1, "whip scorpion":4, "whip-cracker":2, "whips":1, "whipcord":2, "whiplash":2, "whiplash injury":5, "whiplike":2, "whipper":2, "whipper-in":2, "whippers-in":2, "whippersnapper":4, "whippet":2, "whipping":2, "whipping boy":3, "whipping cream":3, "whippletree":3, "whippoorwill":3, "whipray":2, "whipsaw":2, "whipsawn":2, "whipsawing":3, "whipstall":2, "whipstitch":2, "whipstock":2, "whiptail":2, "whipworm":2, "whir":1, "whirl":1, "whirlabout":3, "whirlies":2, "whirlingly":3, "whirlicote":3, "whirligig":3, "whirligig beetle":5, "whirlpool":2, "whirlwind":2, "whirly":2, "whirlybird":3, "whirr":1, "whirried":2, "whirring":2, "whirry":2, "whirrying":3, "whish":1, "whisht":1, "whisk":1, "whisker":2, "whiskered":2, "whist":1, "whiskey":2, "whiskey sour":3, "whisky":2, "whisky mac":3, "whisper":2, "whisperer":3, "whispering":3, "whispering campaign":5, "whispering gallery":6, "whisperingly":4, "whisperous":3, "whistle":2, "whistle for":3, "whistler":2, "whistler":2, "whistleable":4, "whistling":2, "whistling swan":3, "whistlingly":3, "whistly":2, "whit":1, "whit":1, "whit monday":3, "whit sunday":3, "white":1, "white":1, "white admiral":4, "white alkali":4, "white area":4, "white bryony":4, "white cedar":3, "white clover":3, "white currant":3, "white elephant":4, "white ensign":3, "white feather":3, "white friar":3, "white leather":3, "white man's burden":4, "white matter":3, "white metal":3, "white mountains":3, "white mustard":3, "white paper":3, "white pepper":3, "white poplar":3, "white potato":4, "white pudding":3, "white rainbow":3, "white russia":3, "white russian":3, "white sapphire":3, "white spirit":3, "white supremacy":5, "white vitriol":4, "white volta":3, "white walnut":3, "white water":3, "white-collar":2, "white-footed mouse":3, "white-headed":2, "white-livered":2, "white-slaver":2, "whites":1, "whiteacre":3, "whitebait":2, "whitebeam":2, "whitebeard":2, "whitebelt":2, "whiteboy":2, "whiteboys":2, "whitecap":2, "whitechapel":3, "whitecup":2, "whitedamp":2, "whiteface":2, "whitefield":2, "whitefish":2, "whitefish":2, "whitefishes":3, "whitefly":2, "whitehall":2, "whitehead":2, "whitehorse":2, "whiteline":2, "whitely":2, "whiteness":2, "whiteslave":2, "whitesmith":2, "whitetail":2, "whitethorn":2, "whitethroat":2, "whiteville":2, "whitewall":2, "whitewash":2, "whitewing":2, "whitewood":2, "whither":2, "whithersoever":5, "whitherward":3, "whitherwards":3, "whitaker":3, "whitby":2, "whited":2, "whited sepulchre":5, "whiten":2, "whitener":3, "whitening":3, "whitey":2, "whiting":2, "whitish":2, "whitishness":3, "whitier":3, "whitiest":3, "whitlam":2, "whitleather":3, "whitley bay":3, "whitlow":2, "whitlowwort":3, "whitman":2, "whitmire":2, "whitney":2, "whitrack":2, "whitret":2, "whitsun":2, "whitsunday":3, "whitsuntide":3, "whittaker":3, "whittington":3, "whittle":2, "whittle":2, "whittler":2, "whittling":2, "whittlings":2, "whity":2, "whiz":1, "whizz":1, "whizzing":2, "whizzingly":3, "whilom":2, "who":1, "who":1, "who'd":1, "who'll":1, "who're":1, "who's":1, "whoa":1, "whole":1, "whole number":3, "wholefood":2, "wholehearted":3, "wholeheartedly":4, "wholeheartedness":4, "wholemeal":2, "wholesale":2, "wholesaled":2, "wholesaler":3, "wholesaling":3, "wholesome":2, "wholesomely":3, "wholesomeness":3, "wholetone":2, "wholly":2, "whom":1, "whomp":1, "whomever":3, "whomsoever":4, "whoop":1, "whoops":1, "whoopee":2, "whooper":2, "whooper swan":3, "whooping cough":3, "whooping crane":3, "whoosh":1, "whoopee":2, "whoosis":2, "whoosises":3, "whoosy":2, "whop":1, "whopper":2, "whopping":2, "whore":1, "whoredom":2, "whorehouse":2, "whorehouses":3, "whoreishly":3, "whoreishness":3, "whoremaster":3, "whoremastery":4, "whoremonger":3, "whoremongering":4, "whoreson":2, "whorl":1, "whorled":1, "whort":1, "whoring":2, "whorish":2, "whortle":2, "whortleberry":4, "whose":1, "whosesoever":4, "whodunit":3, "whodunnit":3, "whoever":3, "wholism":2, "wholistic":3, "whosis":2, "whoso":2, "whosoever":4, "whr":1, "whr":1, "whsle":1, "why":1, "why'll":1, "why're":1, "why's":1, "whydah":2, "whyalla":3, "wichita":3, "wick":1, "wick":1, "wicked":2, "wickedness":3, "wicker":2, "wickerwork":3, "wicket":2, "wicket maiden":4, "wicketkeeper":4, "wicking":2, "wickiup":3, "wickless":2, "wickliffe":2, "wicklow":2, "wickthing":2, "wickyup":3, "wiclif":2, "wicopy":3, "wide":1, "wide-angle":2, "wide-angle lens":3, "wide-awake":2, "wide-open":2, "wide-ranging":2, "wide-spreading":2, "widely":2, "widespread":2, "widgeon":2, "widget":2, "widgery":3, "widgie":2, "width":1, "widthways":2, "widthwise":2, "widdershins":3, "widdie":2, "widdy":2, "widen":2, "widener":3, "wider":2, "widest":2, "widget":2, "widish":2, "widnes":2, "widow":2, "widow bird":3, "widow's benefit":5, "widow's cruse":3, "widow's mite":3, "widow's peak":3, "widow's-cross":2, "widower":3, "widowhood":3, "widowly":3, "wield":1, "wieldable":3, "wielder":2, "wieldier":3, "wieldiest":3, "wieldy":2, "wien":1, "wiesbaden":3, "wieland":2, "wiener":2, "wiener":2, "wiener neustadt":4, "wiener schnitzel":4, "wienerwurst":3, "wienie":2, "wife":1, "wife swapping":3, "wifedom":2, "wifehood":2, "wifeless":2, "wifelessness":3, "wifelike":2, "wifelier":3, "wifeliest":3, "wifely":2, "wifing":2, "wig":1, "wig":1, "wight":1, "wight":1, "wigan":2, "wigan":2, "wigeon":2, "wiggeries":3, "wiggery":3, "wiggin":2, "wigging":2, "wiggle":2, "wiggle-tail":2, "wiggler":2, "wigglesworth":3, "wigglier":3, "wiggliest":3, "wiggly":2, "wigless":2, "wiglike":2, "wigner":2, "wigtown":2, "wigtownshire":3, "wigwag":2, "wigwagged":2, "wigwagger":3, "wigwagging":3, "wigwam":2, "wikiup":3, "wild":1, "wild brier":3, "wild carrot":3, "wild celery":4, "wild cherry":3, "wild flower":3, "wild ginger":3, "wild hyacinth":4, "wild indigo":4, "wild lettuce":3, "wild mustard":3, "wild olive":3, "wild pansy":3, "wild parsley":3, "wild parsnip":3, "wild rubber":3, "wild-headed":2, "wilde":1, "wildcat strike":3, "wildcatter":3, "wildfire":2, "wildflower":3, "wildfowl":2, "wilding":2, "wildlife":2, "wildling":2, "wildly":2, "wildness":2, "wildwood":2, "wildwood":2, "wile":1, "wilkes":1, "wilkes-barre":2, "will":1, "will-lessness":2, "willed":1, "willesden":2, "wills":1, "willable":3, "willer":2, "willful":2, "willing":2, "willingly":3, "willingness":3, "willkie":2, "willo'-the-wispish":3, "willo'-the-wispy":3, "willpower":3, "willsttter":4, "willyard":2, "willyart":2, "wilt":1, "wilts":1, "wiltshire":2, "wilber":2, "wilberforce":3, "wilbur":2, "wilco":2, "wilcox":2, "wilda":2, "wilder":2, "wilderness":3, "wilderness":3, "wildebeest":3, "wildebeeste":4, "wilfred":2, "wilfrid":2, "wilful":2, "wilfully":3, "wilfulness":3, "wilhelm":2, "wilhelm i":3, "wilhelm ii":3, "wilhelmshaven":4, "wilhelmstrasse":4, "wilhelmina":4, "wilhelmina i":5, "wilhlem":2, "wilier":3, "wiliest":3, "wilily":3, "wiliness":3, "wilkie":2, "wilkins":2, "willaert":2, "willamette":3, "willard":2, "willabel":3, "willabelle":3, "willem":2, "willemite":3, "willemstad":3, "willene":2, "willendorf":3, "willet":2, "willet":2, "willette":2, "willetta":3, "willi":2, "william":2, "william i":3, "william ii":3, "william iii":3, "william iv":3, "william of malmesbury":6, "william the conqueror":6, "williams":2, "williamsburg":3, "williamsport":3, "williamsville":3, "williamson":3, "willie":2, "willied":2, "willies":2, "willis":2, "williston":3, "williwaw":3, "willoughby":3, "willow":2, "willow grouse":3, "willow pattern":4, "willow south":3, "willow tit":3, "willow warbler":4, "willow-wort":2, "willower":3, "willowherb":3, "willowy":3, "willowick":3, "willy":2, "willy":2, "willy wagtail":4, "willy-nilly":3, "willy-waa":2, "willy-waw":2, "willy-willy":3, "willying":3, "wilma":2, "wilmer":2, "wilmerding":3, "wilmette":2, "wilmington":3, "wilmingtonian":5, "wilmore":2, "wilno":2, "wilson":2, "wilson cloud chamber":5, "wilson's petrel":4, "wilson's snipe":3, "wilsonism":3, "wilsonian":4, "wilsonianism":5, "wilton":2, "wily":2, "wimshurst machine":4, "wimble":2, "wimbledon":3, "wimple":2, "wimpy":2, "win":1, "win":1, "wince":1, "winch":1, "wincher":2, "winckelmann":3, "wincing":2, "wind":1, "wind instrument":4, "wind river range":4, "wind tunnel":3, "wind-broken":2, "wind-pollinated":4, "wind-shaken":2, "wind-sucking":2, "windage":2, "windbag":2, "windbaggery":4, "windber":2, "windblown":2, "windbound":2, "windbreak":2, "windbreaker":3, "windburn":2, "windburned":2, "windcheater":3, "windchest":2, "winded":2, "windedness":3, "winder":2, "windfall":2, "windflaw":2, "windflower":3, "windgall":2, "windham":2, "windhoek":2, "windhover":3, "winding":2, "winding sheet":3, "winding staircase":4, "windingly":3, "windingness":3, "windier":3, "windiest":3, "windily":3, "windiness":3, "windjammer":3, "windlass":2, "windmill":2, "windpipe":2, "windproof":2, "windrode":2, "windrow":2, "windrower":3, "windsail":2, "windscreen":2, "windscreen wiper":4, "windshield":2, "windsock":2, "windsor":2, "windsor chair":3, "windsor knot":3, "windsor rocker":4, "windsor tie":3, "windstorm":2, "windsucker":3, "windswept":2, "windtight":2, "windup":2, "windward":2, "windward islands":4, "windward passage":4, "windwardness":3, "windway":2, "windy":2, "wine":1, "wine cellar":3, "wine cooler":3, "wine gallon":3, "wine-cooler":2, "winesburg":2, "wineberry":3, "winebibber":3, "wineglass":2, "wineglassful":3, "winegrower":3, "winegrowing":3, "wineless":2, "winepress":2, "winesap":2, "wineshop":2, "wineskin":2, "wing":1, "wing collar":3, "wing commander":4, "wing covert":3, "wing loading":3, "wing-footed":2, "winged":1, "wingback":2, "wingding":2, "wingedly":3, "wingedness":3, "winger":2, "wingless":2, "winglessness":3, "winglet":2, "winglike":2, "wingover":3, "wingspan":2, "wingspread":2, "wink":1, "winker":2, "winkingly":3, "winnfield":2, "winslow":2, "winze":1, "wincey":2, "winceyette":3, "winchell":2, "winchendon":3, "winchester":3, "winchester":3, "winchester rifle":5, "windaus":2, "winder":2, "windermere":3, "windle":2, "windlestraw":3, "windom":2, "window":2, "window box":3, "window sash":3, "window seat":3, "window-dresser":3, "window-dressing":3, "window-shop":2, "window-shopper":3, "windowless":3, "windowlight":3, "windowpane":3, "windowsill":3, "windowy":3, "winery":3, "winfield":2, "winfred":2, "winish":2, "winier":3, "winiest":3, "winkelried":3, "winkle":2, "winkle-pickers":3, "winklehawk":3, "winlestrae":3, "winnable":3, "winner":2, "winner's circle":4, "winnebago":4, "winnemucca":4, "winnepesaukee":5, "winnie":2, "winnie-the-pooh":2, "winning":2, "winning gallery":5, "winning opening":5, "winning post":3, "winningly":3, "winningness":3, "winnipeg":3, "winnipeg couch":4, "winnipegger":4, "winnipegosis":5, "winnock":2, "winnow":2, "wino":2, "winos":2, "winshopped":2, "winshopping":3, "winsome":2, "winsome":2, "winsomely":3, "winsomeness":3, "winsor":2, "winsted":2, "winston-salem":3, "winter":2, "winter aconite":5, "winter cherry":4, "winter hedge":3, "winter jasmine":4, "winter melon":4, "winter olympic games":6, "winter rose":3, "winter solstice":4, "winter sports":3, "winter war":3, "winter wheat":3, "winter-hardy":3, "winters":2, "wintersville":3, "winterberry":4, "winterbourne":3, "winterer":3, "winterfed":3, "winterfeed":3, "winterfeeding":4, "wintergreen":3, "winterise":3, "winterish":3, "winterishly":4, "winterize":3, "winterized":3, "winterizing":4, "winterier":4, "winteriest":4, "winterization":5, "winterkill":3, "winterless":3, "winterreise":4, "winterset":3, "winterthur":3, "wintertide":3, "wintertime":3, "winterweight":3, "wintery":3, "winthrop":2, "wintle":2, "wintrier":3, "wintriest":3, "wintrily":3, "wintriness":3, "wintry":2, "winy":2, "wipe":1, "wipo":1, "wipo":1, "wiper":2, "wire":1, "wire entanglement":5, "wire netting":3, "wire recorder":4, "wire service":3, "wired":1, "wiredancer":3, "wiredancing":3, "wiredraw":2, "wiredrawn":2, "wiredrawing":3, "wiredrew":2, "wirehair":2, "wireless":2, "wireless telephone":5, "wireless telegraphy":6, "wirelessly":3, "wirelessness":3, "wirelike":2, "wireman":2, "wirephoto":3, "wirephotoed":3, "wirephotoing":4, "wirepuller":3, "wirepulling":3, "wiresonde":2, "wirespun":2, "wiretap":2, "wiretapped":2, "wiretapper":3, "wiretapping":3, "wirewalker":3, "wirework":2, "wireworks":2, "wireworm":2, "wirtz":1, "wirable":3, "wirer":2, "wiring":2, "wirier":3, "wiriest":3, "wirra":2, "wirral":2, "wiry":2, "wis":1, "wis":1, "wisd":1, "wise":1, "wise":1, "wiseacre":3, "wisecrack":2, "wiseman":2, "wish":1, "wish fulfilment":4, "wishbone":2, "wishful":2, "wishful thinking":4, "wishfully":3, "wishfulness":3, "wishy-washily":4, "wishy-washiness":4, "wishy-washy":3, "wisp":1, "wispish":2, "wispier":3, "wispiest":3, "wispily":3, "wispiness":3, "wisplike":2, "wispy":2, "wissler":2, "wist":1, "wistful":2, "wistfully":3, "wistfulness":3, "wisby":2, "wisconsin":3, "wisconsinite":4, "wisdom":2, "wisdom of jesus":5, "wisdom of solomon":6, "wisdom tooth":3, "wisdomless":3, "wisenheimer":4, "wiser":2, "wisest":2, "wising":2, "wisla":2, "wislany zalew":5, "wismar":2, "wisteria":4, "wit":1, "witch":1, "witch doctor":3, "witch hazel":3, "witch-hunting":2, "witchbroom":2, "witchcraft":2, "witcheries":3, "witchery":3, "witches'-besom":3, "witches'-broom":2, "witches'som":3, "witchetty grub":4, "witchhood":2, "witching":2, "witching hour":3, "witchingly":3, "witchier":3, "witchiest":3, "witchy":2, "wite":1, "with":1, "withe":1, "withal":2, "withamite":3, "withdraw":2, "withdrawn":2, "withdrawnness":3, "withdrawal":3, "withdrawable":4, "withdrawer":3, "withdrawing":3, "withdrawing room":4, "withdrawingness":4, "withdrawment":3, "withdrew":2, "wither":2, "wither":2, "witheredness":3, "withers":2, "withers":2, "witherer":3, "witheringly":4, "witherite":3, "withershins":3, "witherspoon":3, "withheld":2, "withhold":2, "withholder":3, "withholding":3, "withholding tax":4, "withies":2, "within":2, "within-named":2, "withing":2, "withindoors":3, "withier":3, "withiest":3, "without":2, "withoutdoors":3, "withstand":2, "withstander":3, "withstanding":3, "withstandingness":4, "withstood":2, "withy":2, "wits":1, "witt":1, "wittgenstein":3, "witan":2, "wited":2, "witenagemot":5, "witing":2, "witless":2, "witlessly":3, "witlessness":3, "witling":2, "witloof":2, "witness":2, "witness box":3, "witness stand":3, "witte":2, "witted":2, "wittedness":3, "wittenberg":3, "witter":2, "wittekind":3, "witting":2, "wittingly":3, "witticism":3, "wittier":3, "wittiest":3, "wittily":3, "wittiness":3, "wittol":2, "witty":2, "witwatersrand":4, "wive":1, "wives":1, "wiving":2, "wiz":1, "wizard":2, "wizardlike":3, "wizardly":3, "wizardry":3, "wizen":2, "wizened":2, "wiak":2, "widukind":3, "wiley":2, "winooski":3, "winona":3, "wisent":2, "wisla":2, "wivern":2, "wizen":2, "wkly":1, "wladyslaw":3, "wlm":1, "wmk":1, "wmo":1, "wnp":1, "wnw":1, "woad":1, "woaded":2, "woadwax":2, "woadwaxen":3, "woald":1, "wobbegong":3, "wobble":2, "wobble board":3, "wobbler":2, "wobbling":2, "wobblingly":3, "wobbly":2, "wobbly":2, "wodge":1, "wodgy":2, "woe":1, "woebegone":3, "woeful":2, "woefully":3, "woefulness":3, "woesome":2, "woffington":3, "wog":1, "woggle":2, "wok":1, "woke":1, "woken":2, "wold":1, "wolds":1, "wolf":1, "wolf":1, "wolf spider":3, "wolf-rayet star":3, "wolfe":1, "wolff":1, "wolffian body":5, "wolfsbane":2, "wolfsburg":2, "wolfenden report":5, "wolfer":2, "wolffish":2, "wolffishes":3, "wolfgang":2, "wolfhound":2, "wolfish":2, "wolfishly":3, "wolfishness":3, "wolflike":2, "wolfman":2, "wolfram":2, "wolfram von eschenbach":6, "wolframate":3, "wolframic":3, "wolframite":3, "wolframium":4, "wolseley":2, "wolves":1, "wolver":2, "wolfit":2, "wollastonite":4, "wollongong":3, "wolly":2, "wolof":2, "wolsey":2, "wolverhampton":4, "wolverine":3, "womb":1, "woman":2, "woman-chaser":3, "woman-hater":3, "womanhood":3, "womanise":3, "womanised":3, "womanish":3, "womanishly":4, "womanishness":4, "womanising":4, "womanize":3, "womanized":3, "womanizer":4, "womanizing":4, "womankind":3, "womanless":3, "womanliness":4, "womanly":3, "womanness":3, "womanpower":4, "wombat":2, "women":2, "women's institute":5, "women's liberation":6, "women's suffrage":4, "womenfolk":3, "womenfolks":3, "womera":3, "wommera":3, "won":1, "won't":1, "wonga-wonga":3, "wont":1, "wonted":2, "wontedly":3, "wontedness":3, "wonting":2, "wonder":2, "wonder":2, "wonder-stricken":3, "wonderberry":4, "wonderer":3, "wonderful":3, "wonderfully":4, "wonderfulness":4, "wondering":3, "wonderingly":4, "wonderland":3, "wonderless":3, "wonderment":3, "wonderstruck":3, "wonderwork":3, "wondrously":3, "wondrousness":3, "wonga-wonga":3, "wonky":2, "wonna":2, "wonsan":2, "woo":1, "wood":1, "wood":1, "wood alcohol":4, "wood avens":3, "wood anemone":5, "wood engraving":4, "wood hyacinth":4, "wood ibis":3, "wood pigeon":3, "wood sorrel":3, "wood spirit":3, "wood sugar":3, "wood vinegar":4, "wood warbler":3, "wood-and-water joey":4, "wood-swallow":2, "wood-turning":2, "woods":1, "woods":1, "woodsfield":2, "woodsman":2, "woodstown":2, "woodsy":2, "woodbine":2, "woodbine":2, "woodborer":3, "woodbox":2, "woodbridge":2, "woodburn":2, "woodbury":3, "woodcarving":3, "woodchat":2, "woodchat shrike":3, "woodchopper":3, "woodchopping":3, "woodchuck":2, "woodcock":2, "woodcraft":2, "woodcreeper":3, "woodcut":2, "woodcutter":3, "woodcutting":3, "wooded":2, "wooden":2, "wooden":2, "wooden spoon":3, "wooden-headed":3, "wooden-headedness":4, "woodenhead":3, "woodenly":3, "woodenness":3, "woodenware":3, "woodgrouse":2, "woodhewer":3, "woodhouse":2, "woodhouses":3, "woodies":2, "woodier":3, "woodiest":3, "woodiness":3, "woodlake":2, "woodland":2, "woodlark":2, "woodlawn":2, "woodless":2, "woodlouse":2, "woodman":2, "woodmancraft":3, "woodnote":2, "woodpecker":3, "woodpile":2, "woodprint":2, "woodruff":2, "woodruff":2, "woodrush":2, "woodscrew":2, "woodser":2, "woodshed":2, "woodshedded":3, "woodshedding":3, "woodsia":3, "woodstock":2, "woodturner":3, "woodward":2, "woodwax":2, "woodwaxen":3, "woodwind":2, "woodwork":2, "woodworker":3, "woodworking":3, "woodworm":2, "woody":2, "woody":2, "woody nightshade":4, "woof":1, "woofer":2, "wool":1, "wool stapler":3, "wool-sorter's disease":4, "woolf":1, "woolen":2, "wooler":2, "woolfell":2, "woolgatherer":4, "woolgathering":4, "woolgrower":3, "woollen":2, "woolley":2, "woollier":3, "woolliest":3, "woolliness":3, "woolly":2, "woolly bear":3, "woolly-headed":3, "woolly-headedness":4, "woollybutt":3, "woolpack":2, "woolsack":2, "woolshed":2, "woolstapling":3, "woolwich":2, "woolworth":2, "woomera":3, "woomera":3, "woomerang":3, "woonsocket":3, "woosh":1, "wooster":2, "wootz":1, "woozier":2, "wooziest":3, "woozily":3, "wooziness":3, "woozy":2, "wooingly":3, "woorali":3, "wop":1, "worcester":2, "worcester china":4, "worcester sauce":3, "worcestershire":3, "word":1, "word":1, "word association":6, "word blindness":3, "word deafness":3, "word order":3, "word picture":3, "word processing":4, "word-perfect":2, "words":1, "wordsworth":2, "wordsworthian":4, "wordsworthianism":5, "wordage":2, "wordbook":2, "wordbreak":2, "wording":2, "wordier":3, "wordiest":3, "wordily":3, "wordiness":3, "wordless":2, "wordlessly":3, "wordlessness":3, "wordlore":2, "wordplay":2, "wordsmith":2, "wordy":2, "wore":1, "work":1, "work function":3, "work over":3, "work-harden":2, "worked":1, "works":1, "works council":3, "workability":5, "workable":3, "workableness":4, "workaday":3, "workbag":2, "workbench":2, "workbook":2, "workday":2, "worker":2, "worker-priest":2, "workfolks":2, "workhorse":2, "workhouse":2, "workhouses":3, "working":2, "working capital":5, "working class":3, "working day":3, "working drawing":4, "working party":4, "working papers":4, "working substance":4, "working week":3, "working-class":2, "workingman":3, "workingwoman":4, "workingwomen":4, "workless":2, "worklessness":3, "workload":2, "workman":2, "workmanlike":3, "workmanly":3, "workmanship":3, "workmen's compensation":6, "workout":2, "workpeople":3, "workpiece":2, "workroom":2, "workshop":2, "workshy":2, "worksop":2, "worktable":3, "workweek":2, "workwoman":3, "workwomen":3, "world":1, "world health organization":7, "world language":3, "world power":3, "world series":3, "world's series":3, "world-beater":2, "world-shaking":2, "world-weariness":3, "world-weary":2, "worldling":2, "worldliness":3, "worldly":2, "worldly-minded":3, "worldly-mindedness":4, "worldly-wise":2, "worldwide":2, "worm":1, "worm lizard":3, "worm-eaten":2, "worms":1, "worms":1, "wormcast":2, "wormer":2, "wormfish":2, "wormfishes":3, "wormgear":2, "wormhole":2, "wormish":2, "wormier":3, "wormiest":3, "worminess":3, "wormless":2, "wormlike":2, "wormroot":2, "wormseed":2, "wormwood":2, "wormy":2, "worn":1, "worn-outness":2, "wornness":2, "worse":1, "worseness":2, "worst":1, "worsen":2, "worser":2, "worsley":2, "worssett":2, "wort":1, "worth":1, "worth":1, "worthless":2, "worthlessly":3, "worthlessness":3, "worthwhile":2, "worland":2, "worried":2, "worriedly":3, "worrit":2, "worrier":3, "worriless":3, "worriment":3, "worrisome":3, "worry":2, "worry beads":3, "worryingly":4, "worrywart":3, "worset":2, "worship":2, "worship":2, "worshiped":2, "worshipped":2, "worshipful":3, "worshipfully":4, "worshipfulness":4, "worshiping":3, "worshipingly":4, "worshipless":3, "worshippingly":4, "worsted":2, "worthing":2, "worthington":3, "worthily":3, "worthiness":3, "worthy":2, "wot":1, "wotton":2, "wouk":1, "would":1, "wouldn't":2, "woulfe bottle":3, "wound":1, "wounded":2, "woundedly":3, "woundingly":3, "woundless":2, "woundwort":2, "wourali":3, "wove":1, "wove paper":3, "wow":1, "wowser":2, "wodan":2, "woden":2, "woful":2, "wofully":3, "wofulness":3, "woking":2, "wolof":2, "wotan":2, "woven":2, "wpb":1, "wpb":1, "wpc":1, "wpm":1, "wraac":1, "wraac":1, "wraaf":1, "wrack":1, "wraith":1, "wraithlike":2, "wran":1, "wrans":1, "wrangel":2, "wrangel island":4, "wrangell":2, "wrangell mountains":4, "wrangle":2, "wrangler":2, "wrap":1, "wrap-around":2, "wrapped":1, "wraparound":3, "wrapper":2, "wrapping":2, "wrapround":2, "wrasse":1, "wrastle":2, "wrath":1, "wrath":1, "wrathful":2, "wrathily":3, "wrathiness":3, "wrathless":2, "wreak":1, "wreaker":2, "wreath":1, "wreathe":1, "wreathen":2, "wreather":2, "wreathing":2, "wreathless":2, "wreathlike":2, "wreathpiece":2, "wreck":1, "wreckage":2, "wrecker":2, "wreckfish":2, "wreckfishes":3, "wreckful":2, "wrecking bar":3, "wren":1, "wren":1, "wrench":1, "wrencher":2, "wrenchingly":3, "wrens":1, "wrest":1, "wrester":2, "wrestle":2, "wrestler":2, "wrestling":2, "wretch":1, "wretched":2, "wretchedly":3, "wretchedness":3, "wrexham":2, "wrekin":2, "wrick":1, "wright":1, "wright":1, "wriggle":2, "wriggler":2, "wrigglework":3, "wrigglingly":3, "wrigglier":3, "wriggliest":3, "wriggly":2, "wring":1, "wringer":2, "wringing":2, "wrinkle":2, "wrinkledness":3, "wrinkleable":4, "wrinkleless":3, "wrinklier":3, "wrinkliest":3, "wrinkly":2, "wrist":1, "wristband":2, "wristlet":2, "wristlock":2, "wristwatch":2, "writ":1, "writ of execution":6, "write":1, "writhe":1, "writhen":2, "writher":2, "writhing":2, "writhingly":3, "writer":2, "writer's cramp":3, "writing":2, "writing desk":3, "writing paper":4, "writings":2, "written":2, "wrier":2, "wriest":2, "wrns":1, "wrnt":1, "wrong":1, "wrong number":3, "wrong-headed":2, "wrong-headedly":3, "wrong-headedness":3, "wrongdoer":3, "wrongdoing":3, "wronger":2, "wrongful":2, "wrongfully":3, "wrongfulness":3, "wrongheaded":3, "wrongheadedly":4, "wrongheadedness":4, "wrongly":2, "wrongness":2, "wrote":1, "wroth":1, "wrottesley":3, "wrought":1, "wrought iron":3, "wrought-iron":2, "wroclaw":2, "wrung":1, "wrvs":1, "wrybill":2, "wryer":2, "wryest":2, "wryly":2, "wrymouth":2, "wryneck":2, "wrynecked":2, "wryness":2, "wsw":1, "wu-hsi":1, "wu-wei":1, "wud":1, "wulfenite":3, "wulfila":3, "wundt":1, "wunderkind":3, "wunderkind":3, "wunderkinder":4, "wuppertal":3, "wurley":2, "wurlie":2, "wurst":1, "wurtzite":2, "wurtzitic":3, "wurtzilite":3, "wus":1, "wuthering":3, "wuchang":2, "wuhan":2, "wuhsien":2, "wuhu":2, "wusih":2, "wutsin":2, "wych-hazel":2, "wycherley":3, "wyclif":2, "wycliffe":2, "wycliffism":3, "wycliffite":3, "wyclifism":3, "wyclifite":3, "wye":1, "wye":1, "wykeham":2, "wyld":1, "wynd":1, "wynn":1, "wynne":1, "wynnewood":3, "wyo":1, "wyte":1, "wyted":2, "wyting":2, "wyandot":3, "wyandotte":3, "wyat":2, "wyatt":2, "wyeth":2, "wyoming":3, "wyomingite":4, "wyomissing":4, "wyvern":2, "whler":3, "wnsan":3, "wrttemberg":4, "wrzburg":3, "wburg":2, "wtemberg":3, "x-chromosome":3, "x-disease":2, "x-high":1, "x-line":1, "x-ray":1, "x-ray":1, "x-ray astronomy":5, "x-ray crystallography":6, "x-ray therapy":4, "x-radiation":4, "x-stretcher":2, "x-unit":2, "x-wave":1, "xanthate":2, "xanthation":3, "xanthe":2, "xanthene":2, "xanthein":3, "xanthic":2, "xanthic acid":4, "xanthin":2, "xanthine":2, "xanthippe":3, "xanthochroism":4, "xanthous":2, "xanthochroid":3, "xanthoma":3, "xanthophyl":3, "xanthophyll":3, "xanthophyllous":4, "xanthosiderite":5, "xanthus":2, "xantippe":3, "xat":1, "xalostockite":4, "xavier":3, "xenon":2, "xenocryst":3, "xenocrystic":4, "xenodiagnostic":6, "xenodiagnosis":6, "xenodocheion":5, "xenodochia":5, "xenogenesis":5, "xenogenetic":5, "xenoglossia":5, "xenolith":3, "xenolithic":4, "xenomorphic":4, "xenomorphically":6, "xenophile":3, "xenophobe":3, "xenophon":3, "xenophontean":5, "xenophobic":4, "xenophobia":5, "xerxes":2, "xerxes i":3, "xerarch":2, "xerox":2, "xebec":2, "xenia":3, "xenocrates":4, "xenogamy":4, "xenogeny":4, "xenon":2, "xenophanes":4, "xenophanean":5, "xenoclea":4, "xerarch":2, "xeres":2, "xeric":2, "xerography":4, "xerophagy":4, "xerophilous":4, "xerophthalmia":5, "xerotic":3, "xeroderma":4, "xerodermia":5, "xerographic":4, "xerographically":6, "xeromorphic":4, "xerophagia":4, "xerophyte":3, "xerophytic":4, "xerophytism":4, "xerophytically":6, "xerosere":3, "xerosis":3, "xhosa":2, "xing":2, "xing":3, "xiphisternal":4, "xiphisternum":4, "xiphoid":2, "xiphosuran":4, "ximenes":3, "xipe":2, "xnty":1, "xoanon":3, "xopher":2, "xtian":1, "xty":1, "xuthus":2, "xyst":1, "xyster":2, "xystum":2, "xylan":2, "xylem":2, "xylene":2, "xylic":2, "xylidine":3, "xylographer":4, "xylography":4, "xyloid":2, "xylol":2, "xylophagous":4, "xylose":2, "xylotomist":4, "xylotomous":4, "xylotomy":4, "xylocarp":3, "xylograph":3, "xylographic":4, "xylographically":6, "xylophage":3, "xylophone":3, "xylostroma":4, "xylostromata":5, "xylostromatoid":5, "xylyl":2, "xis":2, "xmas":2, "xograph":3, "y connection":4, "y-axes":2, "y-axis":2, "y-blenny":2, "y-chromosome":3, "y-level":2, "yabber":2, "yabbie":2, "yabby":2, "yacht":1, "yachtsmanship":3, "yachtswoman":3, "yachtswomen":3, "yachting":2, "yachtmanship":3, "yachty":2, "yack":1, "yacker":2, "yackety-yack":2, "yackety-yak":3, "yackeyakked":3, "yackeyakking":4, "yadkin":2, "yaff":1, "yaffle":2, "yah":1, "yahrzeit":2, "yahgan":2, "yahve":2, "yahveh":2, "yahvism":2, "yahvist":2, "yahvistic":3, "yahwe":2, "yahweh":2, "yahwism":2, "yahwist":2, "yahwistic":3, "yajur-veda":3, "yak":1, "yakety-yak":3, "yakeyakked":3, "yakeyakking":4, "yakity-yak":2, "yakima":3, "yakka":2, "yakker":2, "yakking":2, "yale":1, "yalta":2, "yam":1, "yamagata":4, "yamashita":4, "yammer":2, "yang":1, "yangk":3, "yangtze":2, "yangtze-kiang":2, "yank":1, "yank":1, "yankton":2, "yancey":2, "yankee":2, "yankee doodle":4, "yankeedom":3, "yankeefied":3, "yankeefy":3, "yankeefying":4, "yankeeism":3, "yankeeland":3, "yannina":3, "yap":1, "yap":1, "yapp":1, "yapper":2, "yapping":2, "yappingly":3, "yar":1, "yard":1, "yard":1, "yardage":2, "yardarm":2, "yardbird":2, "yardman":2, "yardmaster":3, "yardstick":2, "yare":1, "yarely":2, "yarn":1, "yarak":2, "yarborough":3, "yarborough":3, "yardang":2, "yarer":2, "yarest":2, "yarkand":2, "yarmouth":2, "yarmuk":2, "yarmulke":3, "yarovize":3, "yarovized":3, "yarovizing":4, "yarovization":5, "yarraman":3, "yarrow":2, "yasht":1, "yashmac":2, "yashmak":2, "yasna":2, "yasnian":3, "yassy":2, "yate":1, "yatagan":3, "yataghan":3, "yatter":2, "yaud":1, "yauld":1, "yaup":1, "yaupon":2, "yautia":3, "yaw":1, "yawl":1, "yawn":1, "yawner":2, "yawnful":2, "yawnfully":3, "yawning":2, "yawp":1, "yawper":2, "yaws":1, "yawmeter":3, "yawweed":2, "yazd":1, "yablonovy mountains":6, "yadim":2, "yafo":2, "yager":2, "yagi aerial":5, "yahata":3, "yahoo":2, "yahoo":2, "yahooism":3, "yakut":2, "yakutsk":2, "yalu":2, "yama":2, "yamani":3, "yamashita":4, "yamato-e":3, "yamen":2, "yami":2, "yana":2, "yanina":3, "yaoundor yaunde":6, "yaound":4, "yapok":2, "yapon":2, "yapur":3, "yaqui":2, "yaroslavl":3, "yasuo":3, "yaunde":3, "yavar":3, "yawata":3, "yazata":3, "ye'se":1, "yea":1, "yeah":1, "yealing":2, "yean":1, "yeanling":2, "year":1, "year-around":2, "yearn":1, "yearner":2, "yearning":2, "yearbook":2, "yearling":2, "yearlong":2, "yearly":2, "yeast":1, "yeastiness":3, "yeastless":2, "yeastlike":2, "yeasty":2, "yeats":1, "yeatsian":3, "yegg":1, "yeggman":2, "yeisk":1, "yeld":1, "yelk":1, "yell":1, "yelp":1, "yelper":2, "yeldring":2, "yellow":2, "yellow belly":4, "yellow bile":3, "yellow cake":3, "yellow fever":4, "yellow jack":3, "yellow jacket":4, "yellow jasmine":4, "yellow journalism":5, "yellow line":3, "yellow metal":4, "yellow pages":4, "yellow peril":4, "yellow poplar":4, "yellow river":4, "yellow sea":3, "yellow spot":3, "yellow streak":3, "yellow water lily":6, "yellow-bellied":3, "yellow-belly":3, "yellow-dog contract":4, "yellows":2, "yellowback":3, "yellowbark":3, "yellowbelly":4, "yellowbird":3, "yellowhammer":4, "yellowish":3, "yellowknife":3, "yellowlegs":3, "yellowly":3, "yellowness":3, "yellowstone":3, "yellowstone falls":4, "yellowstone national park":7, "yellowtail":3, "yellowthroat":3, "yellowweed":3, "yellowwood":3, "yemen":2, "yemenite":3, "yemeni":3, "yen":1, "yenan":2, "yenta":2, "yentai":2, "yeoman":2, "yeomanly":3, "yeomanry":3, "yep":1, "yerba":2, "yerba mat":4, "yerkes":2, "yerwa-maiduguri":5, "yeryeses":3, "yes":1, "yester":2, "yestern":2, "yesterday":3, "yesterdayness":4, "yestereve":3, "yesterevening":4, "yesternight":3, "yesternoon":3, "yesterweek":3, "yesteryear":3, "yestreen":2, "yet":1, "yett":1, "yeti":2, "yetta":2, "yeuk":1, "yeuky":2, "yevtushenko":4, "yew":1, "yeysk":1, "yezd":1, "yedo":2, "yefremov":3, "yehudi":3, "yekaterinburg":5, "yekaterinodar":6, "yekaterinoslav":6, "yelisavetgrad":5, "yelisavetpol":5, "yenisei":3, "yenisey":3, "yenisei":4, "yerevan":3, "yesenin":3, "yeshiva":3, "yesil irmak":4, "yesilk":3, "yesilkoy":3, "yezo":2, "yggdrasil":3, "ygdrasil":3, "yhvh":1, "yhwh":1, "yid":1, "yiddish":2, "yield":1, "yielding":2, "yieldingly":3, "yieldingness":3, "yigdal":2, "yike":1, "yin":1, "yingkow":2, "yinchuan":2, "yinchwan":2, "yip":1, "yipe":1, "yippee":2, "yippie":2, "yipping":2, "yirr":1, "yizkor":2, "ymca":1, "ymha":1, "yo-ho":1, "yo-yo":1, "yob":1, "yobbo":2, "yod":1, "yodh":1, "yoga":1, "yogh":1, "yoicks":1, "yoke":1, "yokefellow":3, "yoking":2, "yokkaichi":4, "yolk":1, "yolkless":2, "yolky":2, "yom kippur":3, "yompur":2, "yon":1, "yond":1, "yonne":1, "yonder":2, "yonkers":2, "yonkersite":3, "yonnie":2, "yoo-hoo":1, "yore":1, "york":1, "york":1, "yorke peninsula":5, "yorks":1, "yorker":2, "yorkist":2, "yorkshire":2, "yorkshire dales":3, "yorkshire pudding":4, "yorkshire terrier":5, "yorkton":2, "yorktown":2, "yorkville":2, "yoshkar-ola":3, "you":1, "you'd":1, "you'll":1, "you're":1, "you've":1, "you-all":1, "young":1, "young":1, "young ireland":3, "young lady":3, "young pretender":4, "young's modulus":4, "youngstown":2, "youngberry":3, "younger":2, "youngling":2, "youngster":2, "younker":2, "your":1, "your'n":1, "yours":1, "yours truly":3, "yourself":2, "yous":1, "youse":1, "youskevitch":3, "youth":1, "youth hostel":3, "youthen":2, "youthful":2, "youthfully":3, "youthfulness":3, "youlou":2, "yowl":1, "yowler":2, "yodel":2, "yodeled":2, "yodelled":2, "yodeler":3, "yodeling":3, "yodeller":3, "yodelling":3, "yodle":2, "yodler":2, "yoga":2, "yoga":2, "yoghurt":2, "yogi":2, "yogic":2, "yogism":2, "yogini":3, "yogurt":2, "yohimbine":3, "yohoed":2, "yohoing":3, "yokel":2, "yokelish":3, "yokohama":4, "yokosuka":4, "yokuts":2, "yola":2, "yolande":3, "yoni":2, "yoruba":3, "yoruban":3, "yorubaland":4, "yosemite":4, "yosemite falls":5, "yosemite national park":8, "yoshihito":4, "ypsilanti":4, "yrs":1, "yssel":2, "ysselmeer":3, "ytterbite":3, "ytterbia":4, "ytterbium":4, "ytterbium oxide":6, "yttric":2, "yttriferous":4, "yttria":3, "yttrium":3, "yttrium metal":5, "yttrium oxide":5, "yttrotantalite":5, "yucca":2, "yugo":1, "yuk":1, "yule":1, "yuletide":2, "yungkia":2, "yungning":2, "yup":1, "yurt":1, "yurev":2, "yuan":2, "yuan":2, "yucat":3, "yucatan":3, "yucatec":3, "yucatecan":4, "yucatn":4, "yucatnel":4, "yuga":2, "yugo-slav":2, "yugoslav":3, "yugoslavic":4, "yugoslavia":5, "yugoslavian":5, "yukaghir":3, "yukawa":3, "yukon":2, "yukon river":4, "yukoner":3, "yulan":2, "yuma":2, "yuman":2, "yumier":3, "yumiest":3, "yuquilla":3, "yuquillas":3, "yurimaguas":4, "yuzovka":3, "yvelines":2, "ywca":1, "ywha":1, "ynnan":3, "yan":3, "yan":2, "yclad":2, "ycleped":2, "yclept":2, "yen":2, "ygerne":2, "ylang-ylang":3, "ylem":2, "yma":2, "ymer":2, "ymir":2, "ynan":2, "yperite":3, "ypres":2, "yquem":2, "ysaye":3, "yser":2, "yseult":2, "ysolde":3, "yvonne":2, "yvor":2, "ywis":2, "z-axes":2, "z-axis":2, "z-bar":1, "za-zen":1, "zaandam":2, "zabrze":2, "zabulon":3, "zach":1, "zachariah":4, "zacharias":4, "zack":1, "zack":1, "zaddik":2, "zaddikim":3, "zadkine":2, "zaffer":2, "zaffre":2, "zagazig":3, "zagreus":3, "zagros mountains":4, "zagut":2, "zaibatsu":3, "zaibatsu":3, "zalman":2, "zambac":2, "zambese":3, "zambezi":3, "zambia":3, "zambian":3, "zamboanga":4, "zanu":1, "zander":2, "zante":2, "zanthoxylum":4, "zanuck":2, "zanzibar":3, "zap":1, "zapu":1, "zappa":2, "zapping":2, "zaptiah":3, "zaptieh":3, "zaqaziq":3, "zarf":1, "zarathustra":4, "zarathustric":4, "zarathustrian":5, "zaratite":3, "zarga":2, "zarzuela":3, "zastruga":3, "zauberflte":5, "zax":1, "zabaglione":4, "zabrze":2, "zacatecas":4, "zacatn":4, "zacynthus":3, "zadar":2, "zadok":2, "zagreb":2, "zahedan":3, "zahidan":3, "zaire":2, "zaire":2, "zairean":4, "zakah":2, "zakat":2, "zakarias":4, "zakouski":3, "zakuska":3, "zakuski":3, "zakynthos":3, "zama":2, "zamarra":3, "zamenhof":3, "zamindar":3, "zamindari":4, "zamia":3, "zamora":3, "zanier":3, "zaniest":3, "zanily":3, "zaniness":3, "zany":2, "zanyish":3, "zanyism":3, "zapata":3, "zapateado":5, "zaporozhye":4, "zapotec":3, "zaragoza":4, "zareeba":3, "zareba":3, "zaria":3, "zastruga":3, "zayin":2, "zeal":1, "zealless":2, "zealot":2, "zealot":2, "zealotry":3, "zealous":2, "zealously":3, "zealousness":3, "zealand":2, "zebec":1, "zebeck":1, "zebedee":3, "zebra":2, "zebra crossing":4, "zebra finch":3, "zebrawood":3, "zebulon":3, "zebulun":3, "zebulunite":4, "zech":1, "zechariah":4, "zecchino":3, "zed":1, "zedekiah":4, "zedoary":4, "zedoary":4, "zee":1, "zeebrugge":3, "zeeland":2, "zeelander":3, "zeeman":2, "zeeman effect":4, "zeffirelli":4, "zeist":1, "zeitgeist":2, "zeke":1, "zelda":2, "zella":2, "zellamae":3, "zelle":2, "zelmira":3, "zelos":2, "zemstrom":2, "zemstvo":2, "zen":1, "zend":1, "zend-avesta":3, "zenger":2, "zendo":2, "zenic":2, "zenist":2, "zenith":2, "zenithal projection":6, "zeph":1, "zephaniah":4, "zephyr":2, "zephyrean":4, "zephyrhills":3, "zephyrinus":4, "zephyrus":3, "zeppelin":3, "zeppelin":3, "zermatt":2, "zernike":3, "zervan":2, "zervanism":3, "zervanite":3, "zest":1, "zestful":2, "zestfully":3, "zestfulness":3, "zestless":2, "zesty":2, "zeta":1, "zetland":2, "zeugma":2, "zeugmatic":3, "zeugmatically":5, "zeus":1, "zeuxis":2, "zea":2, "zebec":2, "zebeck":2, "zeboim":3, "zebra":2, "zebra-plant":2, "zebrass":2, "zebrafish":3, "zebrafishes":4, "zebraic":3, "zebralike":3, "zebrawood":3, "zebrine":2, "zebu":2, "zein":2, "zelig":2, "zelienople":5, "zemindar":3, "zemindari":4, "zenana":3, "zener diode":4, "zenith":2, "zenithal":3, "zenia":3, "zeno":2, "zeno of citium":6, "zeno of elea":5, "zenobia":4, "zeolite":3, "zeolitic":4, "zephyrian":4, "zero":2, "zero gravity":5, "zero grazing":4, "zero hour":3, "zero in":3, "zero stage":3, "zero-divisor":4, "zero-rated":3, "zeroed":2, "zeroth":2, "zeroing":3, "zerubbabel":4, "zeta":2, "zeta":2, "zetes":2, "zethar":2, "zethus":2, "zhdanov":2, "zhivkov":2, "zhitomir":3, "zhivago":3, "zho":1, "zhukov":2, "zibeline":3, "zibelline":3, "zibet":2, "zidkijah":3, "ziegfeld":2, "ziegler catalyst":5, "ziegler":2, "zif":1, "ziff":1, "zigzag":2, "zigzagged":2, "zigzaggedness":4, "zigzagger":3, "zigzagging":3, "zikkurat":3, "zikurat":3, "zilch":1, "zilla":2, "zillah":2, "zillah":2, "zillion":2, "zilpah":2, "zimbabwe":3, "zimbabwe":3, "zimbalist":3, "zinc":1, "zinc chloride":3, "zinc ointment":3, "zinc oxide":3, "zinc sulphate":3, "zinckenite":3, "zincky":2, "zincate":2, "zincic":2, "zinciferous":4, "zincite":2, "zincified":3, "zincify":3, "zincifying":4, "zincoid":2, "zincous":2, "zincy":2, "zing":1, "zingy":2, "zinky":2, "zinnwaldite":3, "zinsser":2, "zincate":2, "zincographer":4, "zincography":4, "zincograph":3, "zincographic":4, "zindabad":3, "zinder":2, "zinfandel":3, "zinfandel":3, "zingara":3, "zingaro":3, "zingiberaceous":5, "zinjanthropus":4, "zinkenite":3, "zinnia":3, "zinzendorf":3, "zinziberaceous":5, "zip":1, "zipper":2, "zippezippier":4, "zippezippiest":4, "zippezippy":3, "zipping":2, "zippy":2, "zircalloy":3, "zircon":2, "zirconate":3, "zirconic":3, "zirconia":4, "zirconium":4, "zirconium oxide":6, "zirconyl":3, "ziska":2, "zither":2, "zithern":2, "zitherist":3, "zittern":2, "ziv":1, "zia ul haq":4, "ziaur rahman":4, "ziguinchor":3, "zila":2, "zila parishad":5, "zimarra":3, "zino":2, "zinoviev":3, "zinovievsk":3, "zion":2, "zionism":3, "zionist":3, "zionistic":4, "zionite":3, "zipangu":3, "ziusudra":4, "ziwiye":2, "zizith":2, "zlatoust":3, "zloty":2, "znaniecki":3, "zod":1, "zoffany":3, "zoisite":2, "zollverein":3, "zoltn":3, "zomba":2, "zombi":2, "zombie":2, "zond":1, "zone":1, "zone refining":4, "zonetime":2, "zonked":1, "zonal":2, "zonal soil":3, "zonally":3, "zonate":2, "zonary":3, "zonda":2, "zoning":2, "zonian":3, "zonule":2, "zonular":3, "zoo":1, "zool":1, "zoom":1, "zooty":2, "zorn":1, "zoril":2, "zoroaster":4, "zoster":2, "zosteria":4, "zoug":1, "zounds":1, "zouave":2, "zowie":2, "zoysia":3, "zoa":2, "zoaea":3, "zoan":2, "zoanthropy":4, "zoar":2, "zodiac":3, "zodiacal":4, "zodiacal constellation":8, "zodiacal light":5, "zoe":2, "zoea":3, "zoetrope":3, "zogan":2, "zohar":2, "zola":2, "zona":2, "zonated":3, "zonation":3, "zonite":2, "zoographer":4, "zoography":4, "zooid":2, "zoolater":4, "zoolatrous":4, "zoolatry":4, "zoologist":4, "zoology":4, "zoometry":4, "zoon":2, "zoonal":3, "zoonosis":4, "zoophagous":4, "zoophilism":4, "zoophilous":4, "zoophobous":4, "zoophori":4, "zoophorus":4, "zoosterol":4, "zootomist":4, "zootomy":4, "zoochemistry":5, "zoochemical":5, "zoochore":3, "zoogeography":6, "zoogeographically":8, "zoogleal":4, "zoogloea":4, "zoogloeal":4, "zoografting":4, "zoographic":4, "zoologic":4, "zoological":5, "zoological garden":7, "zoologically":6, "zoometric":4, "zoomorph":3, "zoomorphic":4, "zoomorphism":4, "zoophile":3, "zoophilic":4, "zoophilia":5, "zoophoric":4, "zoophobia":5, "zoophyte":3, "zooplankton":4, "zooplastic":4, "zooplasty":4, "zoosperm":3, "zoospermatic":5, "zoospore":3, "zoosporangia":6, "zoosporangial":6, "zoosporangium":6, "zootechnics":4, "zootomic":4, "zootomically":6, "zootoxin":4, "zophar":2, "zophori":3, "zophorus":3, "zori":2, "zorille":2, "zorilla":3, "zorilo":3, "zorobabel":4, "zoroaster":4, "zoroastrism":4, "zoroastrian":5, "zoroastrianism":6, "zoser":2, "zosimus":3, "zo":3, "zographer":5, "zography":5, "zolater":5, "zolatrous":5, "zologist":5, "zology":5, "zometry":5, "zonal":4, "zonosis":5, "zophilous":5, "zophobous":5, "zotomist":5, "zotomy":5, "zochemistry":6, "zochemical":6, "zochore":4, "zogeographically":9, "zogleal":5, "zogloea":5, "zogloeal":5, "zografting":5, "zographic":5, "zologic":5, "zological":6, "zologically":7, "zometric":5, "zomorph":4, "zomorphic":5, "zophilic":5, "zophoric":5, "zophobia":6, "zoplankton":5, "zoplastic":5, "zoplasty":5, "zosperm":4, "zospermatic":6, "zospore":4, "zosporangial":7, "zosporangium":7, "zotomic":5, "zotomically":7, "zotoxin":5, "zpg":1, "zsigmondy":3, "zu'lkadah":3, "zuccari":3, "zucchetto":3, "zucchini":3, "zucchius":3, "zug":1, "zugzwang":2, "zuidholland":3, "zuider zee":3, "zungaria":4, "zungaria":4, "zunyite":2, "zurbar":3, "zurbarn":4, "zurv":2, "zuyder zee":3, "zuleika":3, "zuloaga":4, "zulu":2, "zululand":3, "zupus":2, "zurich":2, "zui":3, "zuian":4, "zweig":1, "zwickau":2, "zwicky":2, "zwieback":2, "zwingli":2, "zwinglian":3, "zwitter-ion":3, "zwitterion":4, "zwitterionic":5, "zwolle":2, "zworykin":3, "zygapophyseal":6, "zygapophysial":6, "zygapophysis":5, "zyrian":3, "zygopteran":4, "zygose":2, "zygote":2, "zygotic":3, "zygotically":5, "zygodactyl":4, "zygogenetic":5, "zygoma":3, "zygomatic":4, "zygomatic arch":5, "zygomatic bone":5, "zygomatic process":6, "zygomata":4, "zygomorphic":4, "zygomorphous":4, "zygophore":3, "zygophoric":4, "zygophyllaceous":5, "zygophyte":3, "zygosis":3, "zygospore":3, "zygotene":3, "zymase":2, "zymologist":4, "zymology":4, "zymolysis":4, "zymometer":4, "zymosthenic":4, "zymotic":3, "zymogen":3, "zymogenesis":5, "zymogenic":4, "zymologic":4, "zymolytic":4, "zymoplastic":4, "zymosis":3, "zymurgy":3, "zollner":2, "zurich":2, }
fe979f740cc178201e674f7bb9358c66f0ea3398
3078ede78078c5d6de562414cd9a823d4455ab5c
/py/examples/slug_comp.py
0885ad0df3f2a4b778567a182aaccf128b2b12cc
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
mifumagalli/cluster-cloc
b9293a4965c6da4ca6fa906627b4e7c02ed94c9f
e27f3fe095ec5e1a6e892e1681fae7b728cbad56
refs/heads/master
2021-01-10T06:36:23.467175
2015-12-02T18:17:43
2015-12-02T18:17:43
47,247,998
0
0
null
null
null
null
UTF-8
Python
false
false
2,556
py
import fall_cpp_wrapper as fcw import numpy as np import parse as p import matplotlib.pyplot as plt from matplotlib import rc def qpow(min1, max1, slope, q): return (q*(max1**(slope+1) - min1**(slope+1)) + min1**(slope+1))**(1./(slope+1)) rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']}) ## for Palatino and other serif fonts use: #rc('font',**{'family':'serif','serif':['Palatino']}) rc('text', usetex=True) sfr=[-2, -3, -1] files=["sfrm2.txt", "sfrm3.txt","sfrm1.txt"] i=0 #the same for all sfrs fcs = 1e6*np.log(10)/(1e8-1e7) #fcs2 = fcs*1611.81/qpow(100,1e9, -2., 0.6) #multilpy by 6 looks good #fcw.fall_cpp_wrapper(t0=0, t1=0.01, age_slope=-0.99,\ # obs_err=0.01, f_c=fcs, grid_out="slug_comp_rere.dat",\ # length=1e9,\ # sfr_err=0.01, step=0.125/4, mmin=100, mmax=1e9) #afcw.fall_cpp_wrapper(t0=0, t1=0.01, age_slope=-0.99,\ ## obs_err=0.01, f_c=fcs2, grid_out="slug_comp.dat",\ # length=1e9, mmin=100,mmax=1e9\ # sfr_err=0.01, step=0.125/4) fcw.fall_cpp_wrapper(t0=0, t1=0.01, age_slope=-0.99,\ obs_err=0.01, f_c=fcs, grid_out="slug_comp.dat",\ length=1e8,\ gamma_min = 2.438e19, sfr_err=0.01, step=0.125/4) #fcs2 = 1e6*np.log(1000)/(1e9-1e8) #fcw.fall_cpp_wrapper(t0=0, t1=0.01, age_slope=-0.99,\ # obs_err=0.01, f_c=fcs2, grid_out="slug_comp.dat",\ ## length=1e9,\ # sfr_err=0.01, step=0.125/4) out,table = p.sfrl1_parse('slug_comp.dat') #out2,table2 = p.sfrl1_parse('slug_comp2.dat') #get names of tags #out.dtype.names sfrs = out.sfr_x x = out.x #get the sfr closest to \log sfr = -2 for i in xrange(3): index = np.argmin(abs(out.sfr_x -sfr[i])) this_pdf = table[index] #this_pdf2 = table2[index] print sfrs[index] plt.plot(p.ln2mv(x), p.ln2mvpdf(this_pdf), lw=3, color='blue', label='CLOC') #plt.plot(p.ln2mv(x), p.ln2mvpdf(this_pdf), lw=3, color='blue', label="Corrected") plt.xlim([-1,-18]) f=open(files[i], 'r') slug = np.array(f.read().split("\n")) slug=slug[0:-1] slug = slug.astype(float) plt.hist(slug, normed=True, bins=40, histtype="stepfilled", color='grey',\ edgecolor='none') plt.xlabel(r"$M_V$") plt.ylabel(r"$p(M_V)$") plt.title(r"$\log_{10} \textrm{SFR} = "+repr(sfr[i])+"$") plt.legend(prop={'size':14}, frameon=False) plt.show() plt.savefig("slugcomp"+repr(i)+".eps") plt.clf()
[ "rdasilva.astro@d8247fcc-7651-9239-f1d7-4a1c92cfa542" ]
rdasilva.astro@d8247fcc-7651-9239-f1d7-4a1c92cfa542
b26aaa6504631090d0c9245c4ff0ffed404bc23a
c819942ea78169d970c78da592bf00753b39414b
/reverse-string/reverse_string.py
c46d8e9642f27e5bdecc903b603f85d26a4d97a7
[]
no_license
j2towers/exercism.io-python
587915e7f6bcb9d1e64fb191383b8900df409c1c
2feb62a2222595be78cfed998814f227592f6f8c
refs/heads/master
2021-01-18T21:02:45.524672
2018-01-10T03:20:04
2018-01-10T03:20:04
87,003,864
0
0
null
null
null
null
UTF-8
Python
false
false
88
py
def reverse(stringin): stringout = "".join(reversed(stringin)) return stringout
5a85c85ecd237edd8ec5678cfb52c41474986a43
5c060ad45d92cbf5e954f5b15ff438d289139e82
/conditionals.py
35fadf09a84a9989e33073c6e00d8950290dc765
[]
no_license
Solstice-Designs/Python_Starter-Kit
33c1670868268ba3bd9c9654ebdd453e6e0ebafa
38244dde87b434385070ea7d0fbc5128c824c2c8
refs/heads/master
2020-06-29T14:27:55.391979
2019-08-06T05:50:04
2019-08-06T05:50:04
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,308
py
# If/ Else conditions are used to decide to do something based on something being true or false x = 9 y = 10 # Comparison Operators (==, !=, >, <, >=, <=) - Used to compare values if x > y: print(f'{x} is greater than {y}') elif x==y: print(f'{x} is equal to {y}') else: print(f'{y} is greater than {x}') # Nested if #if x > 2: #if x <= 10: #print(f'{x} is greater than 2 and less than or equal to 10') # Logical operators (and, or, not) - Used to combine conditional statements # AND if x > 2 and x <= 10: print(f'{x} is greater than 2 and less than or equal to 10') # OR if x > 2 or x <= 10: print(f'{x} is greater than 2 and less than or equal to 10') # NOT if not(x==y): print(f'{x} is not equal to {y}') # Membership Operators (not, not in) - Membership operators are used to test if a sequence is presented in an object # IN numbers = [1,2,3,4,5] if x in numbers: print(f'{x} IS included in the number list') # NOT IN if x not in numbers: print(f'{x} IS NOT in the number list') # Identity Operators (is, is not) - Compare the objects, not if they are equal, but if they are actually the same object, with the same memory location: if x is y: print('You have won the lottery') if x is not y: print('You have not won the lottery :(')
f510c70be04b24f2256a76644f59b838bc1a85fe
961362271cbb7a8dd41ec97e87685d81217fc4b0
/video_client.py
76301d01881b47483229655bf7c224df1b0e2424
[]
no_license
MaxAndrewNZ/Landrov
6b0ddaf1561eaf0508831372337ed50b4b02d2eb
f5ceac0f99393bfe31521938a6440f6584693ea3
refs/heads/master
2022-12-04T09:50:52.637924
2020-08-09T04:16:08
2020-08-09T04:16:08
286,156,699
0
0
null
null
null
null
UTF-8
Python
false
false
828
py
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 import cv2,time,zmq import numpy as np port = "5557" context = zmq.Context() socket = context.socket(zmq.SUB) socket.connect("tcp://192.168.8.106:%s" % port) socket.setsockopt(zmq.SUBSCRIBE,b'rgbimage') socket.setsockopt(zmq.SUBSCRIBE,b'depthimage') print('connected to landrov server') while 1: k=cv2.waitKey(1) if k!=-1: if k == 27 or k == ord('q'): break if socket.poll(0.001): topic,buf = socket.recv_multipart() if topic == b'rgbimage': img = cv2.imdecode(np.fromstring(buf, dtype=np.uint8),cv2.IMREAD_COLOR) cv2.imshow('img',img) if topic == b'depthimage': img = cv2.imdecode(np.fromstring(buf, dtype=np.uint8),cv2.IMREAD_GRAYSCALE) cv2.imshow('imgd',img)
e05f08d4d9a1d54c2b44c1d6291fadb230560087
2d76ed476fe8a52f99ffbc03028a4966085ba070
/apps/user_manage/apps.py
75e4c26470e94c9ed733e12d85b02b51e435ed5b
[]
no_license
blink07/shop_admin
39b9df42ada47bb978e7171bd172ac9dfc6e97bb
5ea3f978d0065f4e54842fddbe8c64c647cc7af8
refs/heads/main
2023-06-23T01:13:44.700955
2021-07-20T06:06:00
2021-07-20T06:06:00
284,709,912
0
0
null
null
null
null
UTF-8
Python
false
false
153
py
from django.apps import AppConfig class UserManageConfig(AppConfig): name = 'user_manage' def ready(self): import user_manage.signals
6b3f8144479402366cc5be6793e13674c2358914
c3a2dd90b27e837535d8bcd11204b7e68a4774af
/problem__solver.py
71d7a4c20f010c9935c13bd7cfbc45bdbfd5177f
[]
no_license
ironicrobo/Project_Test_1
d37e336b0f9e39b1150cb0bda64ddcfdfd9ef2ce
226fa9c488dc9409c379048d32cb44dc7875943a
refs/heads/master
2022-12-08T08:01:11.859007
2020-09-06T14:45:42
2020-09-06T14:45:42
293,113,928
0
0
null
null
null
null
UTF-8
Python
false
false
41
py
print("hello world") print("hello there")
e95f46cc5e2b4f28036c15eaf2d89ae4967cd59b
b2545b41a6d41f4f7907045e0935f55418ed4858
/tests/conftest.py
4228ec88a84ba76f0e175ec6d4a2178ffee7570b
[ "MIT" ]
permissive
jacebrowning/MeCabOnigiri
5312f1761eacbd0df430c3bd09a26421539c9d63
66511d2563bfe2644533599fac3ca0897a524997
refs/heads/master
2021-04-15T19:04:52.694484
2017-11-07T16:29:51
2017-11-07T16:29:51
126,559,237
0
0
null
null
null
null
UTF-8
Python
false
false
135
py
"""Integration tests configuration file.""" from MeCabOnigiri.tests.conftest import pytest_configure # pylint: disable=unused-import
2c600b1161546f8cb29e4939b09b0e1d473dbcbc
f323771a686df2b934597f40334f168fa5d8915e
/interface_manager/backend/impi_project/interface_app/form/user.py
fd29bb7035c4a1aa0a3563e4ec7afc5ad6e566e7
[]
no_license
luochun3731/test-dev
4ac560b5cc2935986be7f3d29f445f6c0d59f60f
bab018464d26de5a493e5e5a60b382e612b6ca92
refs/heads/master
2022-02-04T13:20:23.748457
2019-05-19T03:32:41
2019-05-19T03:32:41
null
0
0
null
null
null
null
UTF-8
Python
false
false
497
py
from django import forms class UserForm(forms.Form): username = forms.CharField(max_length=20, min_length=3, required=True, error_messages={'required': "用户名不能为空"}) password = forms.CharField(max_length=20, min_length=3, required=True, error_messages={'required': "密码不能为空"})
d040d744f353bd17bf132b60eca848dbe8b29e88
3d529f14110558ff9c5231cbaacf63a3f04fd127
/ensemble_segmentation.py
0d7611dabaae35e6793c538a06a6d0e1fd416ba2
[]
no_license
esskay0000/qtim_ROP
dc9a607a8d1e7d02afb7eba0087ad8a17d84fa7d
8678b79f66a836603fb2b6308fbd0b36eac7a8e6
refs/heads/master
2020-12-30T15:08:40.130013
2017-03-31T16:00:12
2017-03-31T16:00:12
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,857
py
#!/usr/bin/env python from os import listdir, sep from os.path import join, basename, isdir import numpy as np from PIL import Image from segmentation import SegmentUnet from common import find_images, make_sub_dir class UnetEnsemble(object): def __init__(self, models, out_dir, evaluate=None): self.models = models self.out_dir = out_dir self.evaluate = evaluate self.max_dir = make_sub_dir(self.out_dir, 'max') self.mean_dir = make_sub_dir(self.out_dir, 'mean') def segment_all(self, img_dir): result_dirs = {} imgs = find_images(img_dir) for i, model_dir in enumerate(self.models): print "Instantiating model #{}: {}".format(i+1, model_dir) result_dir = join(self.out_dir, str(i)) # create directory to store segmented images print "Segmented images will be written to '{}'".format(result_dir) model_id = basename(model_dir.rstrip(sep)) # identifier for this particular model result_dirs[model_id] = result_dir # dictionary to map between IDs and results model = SegmentUnet(result_dir, model_dir, stride=(4, 4)) # instantiate U-Net model.segment_batch(imgs) # segment images self.ensemble(result_dirs) # combine the result of the segmentations def ensemble(self, results): if self.evaluate in results.keys(): results.pop(self.evaluate) # don't include the evaluation data in the ensembling segmented_images = [sorted(find_images(x)) for _, x in results.items()] for seg_images in zip(*segmented_images): print seg_images im_name = basename(seg_images[0]) seg_arr = np.dstack([np.asarray(Image.open(seg)) for seg in seg_images]) mean_image = np.round(np.mean(seg_arr, axis=2)).astype(np.uint8) Image.fromarray(mean_image).save(join(self.mean_dir, im_name)) max_image = np.max(seg_arr, axis=2) Image.fromarray(max_image).save(join(self.max_dir, im_name)) if __name__ == '__main__': from argparse import ArgumentParser parser = ArgumentParser() parser.add_argument('-m', '--model-dir', dest='model_dir', required=True) parser.add_argument('-o', '--output-dir', dest='out_dir', required=True) parser.add_argument('-i', '--images', dest='img_dir', required=True) args = parser.parse_args() # List of all models to ensemble models_list = sorted([join(args.model_dir, name) for name in listdir(args.model_dir) if isdir(join(args.model_dir, name))]) print models_list # Instantiate ensembler object ensembler = UnetEnsemble(models_list, args.out_dir, evaluate='splitAll_results') ensembler.segment_all(args.img_dir) # segment images using all models and ensemble
a4f292ca54d7b41913d10ed67bd4d04a3c613f99
e73dff17361523dae546be3cb092652310d8048e
/music/migrations/0013_auto_20190408_1635.py
0e76afeb01dd09fafad4bfbcb5f29b477f3326a3
[]
no_license
asifk1997/CodeFii
0cc971ab7d0df01815ad1d2bfb97f393dbdd8fa7
865c15769f90dbd7688701287a0319675f02cacf
refs/heads/master
2021-06-20T18:25:37.368028
2019-05-29T05:14:50
2019-05-29T05:14:50
181,060,710
0
0
null
null
null
null
UTF-8
Python
false
false
461
py
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2019-04-08 11:05 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('music', '0012_auto_20190407_1958'), ] operations = [ migrations.AlterField( model_name='submission', name='code', field=models.FileField(default='', upload_to=''), ), ]
f54d503f5f8f9e61cb2ee0197d1e6168361f3002
61e54fef7d866e7bf2c73257ddb2e094e1495599
/tables/Data.py
8699b7489972898b2b52acb4ee043ab4c14bb894
[ "MIT" ]
permissive
Ansu-John/Validator
75a7f7f1f2f18b05f9f722c9c62a935e273afd7a
9a7496bfb62621f3a6882d0e7958fffe8d2c67bb
refs/heads/main
2023-03-30T01:42:07.878590
2021-03-28T23:45:20
2021-03-28T23:45:20
352,463,793
0
0
null
null
null
null
UTF-8
Python
false
false
920
py
from pyspark.sql.types import * from util.Validator import ValidatorUtil class Data: def __init__(self, spark, logger): self.spark = spark self.logger = logger self.validator = ValidatorUtil() def validate(self): dschema = StructType([StructField("count", IntegerType())]) targetRecords = self.spark.read.csv('tables/resources/targetData.csv', header = True, schema = dschema) sourceRecords = self.spark.read.csv('tables/resources/sourceData.csv', header = True, schema = dschema) if self.validator.count_checker(sourceRecords.first()[0],targetRecords.first()[0]): print("Count of records in source and target are same and is equal to " + str(targetRecords.first()[0])) else: print("Count of records in source = " + str(sourceRecords.first()[0]) + " and in target = " + str(targetRecords.first()[0]))
43f26d7db73966b76ae9be80cbc9b38884ac3271
486d534ed14eacef80500a9d08b6953905383e6f
/main.py
b5b06a0764536d096b27462070987107ad494df0
[]
no_license
TylerSerrano98/Robots-vs-Dinosaurs
a859274453e892d03422615e2060d4ec820c0659
c0b85ec25a813b6cb1738a670ddf641fbaa39e56
refs/heads/main
2023-08-06T22:20:27.986283
2021-10-07T21:59:02
2021-10-07T21:59:02
414,282,642
0
0
null
null
null
null
UTF-8
Python
false
false
75
py
from battlefield import Battlefield play = Battlefield() play.run_game()
7c278e07370eee210433c8b9feebc05fecb6d857
b5adb31f781fa51afe020754a11639cf428e9032
/encode_faces.py
479a8125522827447c700b2ecd1d28182663d891
[]
no_license
ntmanh98/CS412_FaceRecognition
6daf828a3b13df58e938696dd65e1b18a870a7d6
d950606cf8f3c87c76d921ab23536ce5e7cbc8d3
refs/heads/master
2020-11-28T07:11:03.239639
2019-12-23T12:13:29
2019-12-23T12:13:29
229,739,326
0
0
null
null
null
null
UTF-8
Python
false
false
1,922
py
# import the necessary packages from imutils import paths import face_recognition import argparse import pickle import cv2 import os # construct the argument parser and parse the arguments ap = argparse.ArgumentParser() ap.add_argument("-i", "--dataset", required=True, help="path to input directory of faces + images") ap.add_argument("-e", "--encodings", required=True, help="path to serialized db of facial encodings") ap.add_argument("-d", "--detection-method", type=str, default="cnn", help="face detection model to use: either `hog` or `cnn`") args = vars(ap.parse_args()) # grab the paths to the input images in our dataset print("[INFO] quantifying faces...") imagePaths = list(paths.list_images(args["dataset"])) # initialize the list of known encodings and known names knownEncodings = [] knownNames = [] # loop over the image paths for (i, imagePath) in enumerate(imagePaths): # extract the person name from the image path print("[INFO] processing image {}/{}".format(i + 1, len(imagePaths))) name = imagePath.split(os.path.sep)[-2] # load the input image and convert it from BGR (OpenCV ordering) # to dlib ordering (RGB) image = cv2.imread(imagePath) rgb = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) # detect the (x, y)-coordinates of the bounding boxes # corresponding to each face in the input image boxes = face_recognition.face_locations(rgb, model=args["detection_method"]) # compute the facial embedding for the face encodings = face_recognition.face_encodings(rgb, boxes) # loop over the encodings for encoding in encodings: # add each encoding + name to our set of known names and # encodings knownEncodings.append(encoding) knownNames.append(name) # dump the facial encodings + names to disk print("[INFO] serializing encodings...") data = {"encodings": knownEncodings, "names": knownNames} f = open(args["encodings"], "wb") f.write(pickle.dumps(data)) f.close()
2d99d8804122e7c8df046b88f6106653af79fe46
255e51640f17b02966f8331d7c453258162bc4c7
/xmlparse.py
ded8b99a8d57dbe20a253cb341279f7ab7569360
[ "MIT" ]
permissive
The7thSin/Python
0d611f5264f97b9699844515e16c8f6fc9c90010
56c34da8367cb470fdfec15e0cf11da497d9d6ee
refs/heads/master
2020-08-27T12:51:53.455618
2019-11-07T08:19:24
2019-11-07T08:19:24
217,375,228
0
0
MIT
2019-10-24T19:19:47
2019-10-24T19:12:16
null
UTF-8
Python
false
false
2,227
py
import os import glob import xml.etree.ElementTree as ET import re # Schema for xml temparing schema = "{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}" schema_id = "{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}" # Variables to store the extracted order information contact_final = [] address_final = [] order_id = [] # Getting latest file name to Parse def get_latest_file_name(): files = glob.glob('./xml/*.xml') return max(files, key=os.path.getctime) # Load the file name in a variable xml_file = get_latest_file_name() # Reading the File def load_xml(arg): with open(arg, 'r') as file: return file.read() # Function for to extract ID, Contact & Delivery def parse_xml(): root = ET.fromstring(load_xml(xml_file)) # Get Order ID get_id = root.find("{}ID".format(schema_id)) order_id.append(get_id.text) # Get Delivery for get_delivery in root.find("{}Delivery".format(schema)): for elem in list(get_delivery.itertext()): if re.match("[ a-zA-Z0-9 ]", elem): address_final.append(elem) # Get Customer information for customer in root.find("{}AccountingCustomerParty".format(schema)): for contact in list(customer.iterfind("{}Contact".format(schema))): for the_contact in list(contact.itertext()): if re.match("[ a-zA-Z0-9 ]", the_contact): contact_final.append(the_contact) write_xml() # Function to write the parced xml file def write_xml(): # XML Fields Names address_fields = ["Address", "City", "Postcode", "Country"] contact_fields = ["Name", "Phone", "Email"] # Root of XML data = ET.Element("data") data = ET.SubElement(data, "data") # Write Order ID id_details = ET.SubElement(data, "ID") id_details.text = str(order_id[0]) # Write Order Contact for i in range(len(contact_final)): person_details = ET.SubElement(data, contact_fields[i]) person_details.text = str(contact_final[i]) # Write Order Address for i in range(len(address_final)): address = ET.SubElement(data, address_fields[i]) address.text = str(address_final[i]) # Write to file tree = ET.ElementTree(data) tree.write("order_{}.xml".format(order_id[0]),encoding="utf-8", xml_declaration=True) parse_xml()
7f11324b8a4c892af8d5975d60c9fc7ce761fb81
0538c4f9fb1a5277783d95875780d7e0f87d01f5
/fmbiopy/df.py
1fee37cd8c0036ba00725c58166431d8467cd047
[ "MIT" ]
permissive
fennerm/fmbiopy
3d9ce56433fa092549c6d5465fb89b7f460d0f03
09bbfa480c8a13dd2eb3de13417980b9f5a40685
refs/heads/master
2021-01-21T03:59:45.907216
2018-12-08T21:58:42
2018-12-08T21:58:42
101,906,261
1
0
null
null
null
null
UTF-8
Python
false
false
1,100
py
"""Utilities related to pandas data frames.""" from pandas import merge def get_colnames(df): """Get the column names of a data frame as a list.""" # Faster than using list(df) return df.columns.get_values().tolist() def split(df, by, include_by=True): """Split a data frame by a grouping column. Parameters ---------- df: pandas.DataFrame The input data frame. by: str The name of the column to split by. include_by: bool If True, the group column is conserved in the output tables, if False it is removed. Returns ------- List[pandas.DataFrame] """ split_dfs = [rows for _, rows in df.groupby(by)] if not include_by: split_dfs = [x.drop(by, axis=1).reindex() for x in split_dfs] return split_dfs def df_subtract(df1, df2): """Remove rows in `df` which are also in `df2` (both DataFrames).""" merged = merge(df1, df2, how="outer", indicator=True) return ( merged[merged["_merge"] == "left_only"] .drop("_merge", axis=1) .reset_index(drop=True) )
96dc1e0a1a3a44c06ce3a7a4d1378de8e542eb0a
d87e0c88a5f0132a5841d9a7b495342ace7a9485
/metiz/bin/pilconvert.py
7faf45ad85f0d9d05cf1dd6de241430a075f9930
[]
no_license
nguyentranlogigear/NguyenSite
c74ce568b983418a564c4ef088be9439dba6e079
8012b769dd96bf259e658df7c889909cfe9903ce
refs/heads/master
2020-06-19T17:29:57.874301
2017-10-18T12:52:38
2017-10-18T12:52:38
196,798,298
0
0
null
null
null
null
UTF-8
Python
false
false
2,395
py
#!/home/trangle/Documents/metiz-django/metiz/bin/python # # The Python Imaging Library. # $Id$ # # convert image files # # History: # 0.1 96-04-20 fl Created # 0.2 96-10-04 fl Use draft mode when converting images # 0.3 96-12-30 fl Optimize output (PNG, JPEG) # 0.4 97-01-18 fl Made optimize an option (PNG, JPEG) # 0.5 98-12-30 fl Fixed -f option (from Anthony Baxter) # from __future__ import print_function import getopt import string import sys from PIL import Image def usage(): print("PIL Convert 0.5/1998-12-30 -- convert image files") print("Usage: pilconvert [option] infile outfile") print() print("Options:") print() print(" -c <format> convert to format (default is given by extension)") print() print(" -g convert to greyscale") print(" -p convert to palette image (using standard palette)") print(" -r convert to rgb") print() print(" -o optimize output (trade speed for size)") print(" -q <value> set compression quality (0-100, JPEG only)") print() print(" -f list supported file formats") sys.exit(1) if len(sys.argv) == 1: usage() try: opt, argv = getopt.getopt(sys.argv[1:], "c:dfgopq:r") except getopt.error as v: print(v) sys.exit(1) output_format = None convert = None options = {} for o, a in opt: if o == "-f": Image.init() id = sorted(Image.ID) print("Supported formats (* indicates output format):") for i in id: if i in Image.SAVE: print(i+"*", end=' ') else: print(i, end=' ') sys.exit(1) elif o == "-c": output_format = a if o == "-g": convert = "L" elif o == "-p": convert = "P" elif o == "-r": convert = "RGB" elif o == "-o": options["optimize"] = 1 elif o == "-q": options["quality"] = string.atoi(a) if len(argv) != 2: usage() try: im = Image.open(argv[0]) if convert and im.mode != convert: im.draft(convert, im.size) im = im.convert(convert) if output_format: im.save(argv[1], output_format, **options) else: im.save(argv[1], **options) except: print("cannot convert image", end=' ') print("(%s:%s)" % (sys.exc_info()[0], sys.exc_info()[1]))
a832e56f99806a67b0680a8dda1f2c00bb4e182f
d263a6f40156e5c131ccf727cf2d68519fe85b7e
/Country_Stats.py
dbe712bfbda13dde10721ae41d43fdb6eb1427e3
[]
no_license
MariosLevi/Wikipedia-Country-Data-Scraper
9b1b56c724b0b9546ba86086ec472d965c3262d2
1aa172b36ccf3b647a69dcc9cd023f48ae8bd1c1
refs/heads/main
2023-02-15T19:06:13.003399
2020-12-26T05:44:25
2020-12-26T05:44:25
324,490,048
0
0
null
null
null
null
UTF-8
Python
false
false
2,766
py
import bs4 from urllib.request import urlopen as uReq from bs4 import BeautifulSoup as soup country = input("Enter a country: ") country_cleaned= country.replace(" ", "%20") my_url = 'https://en.wikipedia.org/wiki/' + country_cleaned #opening a connection and grabbing a page uClient = uReq(my_url) page_html = uClient.read() uClient.close() #html parsing page_soup = soup(page_html, "html.parser") #focusing on just finding the first instance of an info table infobox = page_soup.find("table",{"class":"infobox geography vcard"}) infobox_narrowed = infobox.findAll("td") #loop to find which section of the infobox that population is involved in. index = -1 for i in range(len(infobox_narrowed)): #print("Currently Searching Section: " + str(section)) if "population" in str(infobox_narrowed[i]): index = i break #enable for developer mode, to bug where to find a section #print("\nThe chosen one is section number: " + str(index) + "\n") population = str(infobox_narrowed[index].text.strip()) string_population = population.split("[", 1)[0] #"[" was chosen after realizing that's the indicator to population int_population = int(string_population.replace(',', '')) print("The population of " + country + " is " + string_population) #### could just write a function instead but I copy pasted it: country2 = input("Enter another country: ") country_cleaned= country2.replace(" ", "%20") my_url = 'https://en.wikipedia.org/wiki/' + country_cleaned #opening a connection and grabbing a page uClient = uReq(my_url) page_html = uClient.read() uClient.close() #html parsing page_soup = soup(page_html, "html.parser") #focusing on just finding the first instance of an info table infobox = page_soup.find("table",{"class":"infobox geography vcard"}) infobox_narrowed = infobox.findAll("td") #loop to find which section of the infobox that population is involved in. index = -1 for i in range(len(infobox_narrowed)): #print("Currently Searching Section: " + str(section)) if "population" in str(infobox_narrowed[i]): index = i break #enable for developer mode, to bug where to find a section #print("\nThe chosen one is section number: " + str(index) + "\n") population = str(infobox_narrowed[index].text.strip()) string_population = population.split("[", 1)[0] #"[" was chosen after realizing that's the indicator to population int_population2 = int(string_population.replace(',', '')) print("The population of " + country2 + " is " + string_population) print("----------------------") print("The population of " + country2 + " is about " + str(round(int_population2/int_population,2)) + " times the size of " + country)
38281a3154f48a08fd62183a61dc219034137017
724f4b45fe75d3bf37b8a7857b7a5198ebd8080b
/lecture-cut.py
d13a966f0ba8c3936e7587ff622daeea75924068
[ "MIT" ]
permissive
chrismacdonaldw/lecture-cut
6d57bf0f94c92c7749c359b1da681b94d0eae263
1996d10638816513d2819b2261464b40d1ddb280
refs/heads/master
2021-07-16T18:29:29.134378
2020-07-09T00:30:21
2020-07-09T00:30:21
181,226,426
3
0
null
null
null
null
UTF-8
Python
false
false
2,484
py
import subprocess import os import argparse from pydub import AudioSegment from pydub.silence import detect_silence def extract_audio(): """ Extracts audio from video file Returns: Returns filename for future use """ filename = input("Enter filename: ") command = "ffmpeg -i " + filename + " -ab 160k -ac 2 -ar 44100 -vn cut.wav" subprocess.call(command, shell=True) return filename def analyze_audio(): """ Finds silent chunks of audio Returns: Time intervals of silence """ audio = AudioSegment.from_wav("cut.wav") return detect_silence(audio, silence_thresh=SILENCE_THRESHOLD) def generate_command(silence, filename): """ Generates FFmpeg Command to trim video using the aforementioned time intervals Args: silence: Intervals of silent audio filename: Filename given in extract_audio """ videocmd = "ffmpeg -i " + filename + " -vf \"select='not(" addcmd = "" for i, chunk in enumerate(silence): if i == 0: addcmd += 'between(t,%s,%s)' % ( (chunk[0] + CUT_INTERVAL)/1000, (chunk[1] - CUT_INTERVAL)/1000) else: addcmd += '+between(t,%s,%s)' % ( (chunk[0] + CUT_INTERVAL)/1000, (chunk[1] - CUT_INTERVAL)/1000) videocmd += '%s%s%s%s%s' % ( addcmd, COMMAND_SET_ONE, addcmd, COMMAND_SET_TWO, OUTPUT_FILE ) subprocess.Popen(videocmd, shell=False) parser = argparse.ArgumentParser( description='Trims video based on segments which are under a specified silence threshold') parser.add_argument('--output_file', type=str, default='out.mp4', help='name of file that will be output after trim') parser.add_argument('--cut_interval', type=int, default=150, help='ms of silent audio segments to be cut to allow for a custom margin of error, default is 150') parser.add_argument('--silence_threshold', type=int, default=-55, help='value in dBFS that when audio is lower then, will be considered silent. Default is -55') args = parser.parse_args() OUTPUT_FILE = args.output_file CUT_INTERVAL = args.cut_interval SILENCE_THRESHOLD = args.silence_threshold COMMAND_SET_ONE = ")',setpts=N/FRAME_RATE/TB\" -af \"aselect='not(" COMMAND_SET_TWO = ")',asetpts=N/SR/TB\" " filename = extract_audio() print(filename) generate_command(analyze_audio(), filename) os.remove('cut.wav')
62e9b1596c432b29ece544f11f4f06ca64a733d7
bf6e53b21d995b031fdd412f29f56cc50e5d9eab
/week1/百度翻译.py
76a78a31e766ada83304392bd4a21a08f6544a25
[]
no_license
lzs1314/pythonWeb
66fe058b21ebdf4851065355b4d3b4aa30716fe1
4b56e385ebc37d39e6ef7e3992d895a7278e1a32
refs/heads/master
2022-12-26T13:54:44.485675
2019-12-17T06:41:37
2019-12-17T06:41:37
223,873,256
0
0
null
2022-12-11T14:44:15
2019-11-25T06:03:46
JavaScript
UTF-8
Python
false
false
797
py
import requests import json response = requests.get("https://www.baidu.com") response.encoding = 'utf8' print(response.text) print(response.content.decode()) r = requests.get('https://www.baidu.com/img/[email protected]') f = open("baidu.png",'wb') f.write(r.content) f.close() headers = {'User-Agent':'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Mobile Safari/537.36'} res = requests.post(url = 'https://fanyi.baidu.com/basetrans',headers =headers,data={'query': '请问','from': 'zh','to': 'en','token': '8ad2df927d4fa7221ee6768c285d3734','sign': '347496.110169'}) json_str = res.content.decode() print(json_str) dicesr = json.loads(json_str) print(dicesr) result = dicesr["data"]['st_tag'] print(result)
fcd49cb6b8f5ded2b8f85b9775ac15e3483878ad
f51165f5477a991ebfee81ad1dff965e95095a06
/assets/src/ba_data/python/ba/_appcomponent.py
0e1f635d2632b3aa72896558d43dfc93a2ec9c5b
[ "MIT" ]
permissive
SZRWorks/SaulSquad
d77d572e5618347a1263a0da8000e16a85f6ed2b
41c5ea0996c15a4e4bb067ac75241f78b44526a3
refs/heads/master
2023-03-01T01:04:35.831799
2023-01-23T17:56:59
2023-01-23T17:56:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,317
py
# Released under the MIT License. See LICENSE for details. # """Provides the AppComponent class.""" from __future__ import annotations from typing import TYPE_CHECKING, TypeVar, cast import _ba if TYPE_CHECKING: from typing import Callable, Any T = TypeVar('T', bound=type) class AppComponentSubsystem: """Subsystem for wrangling AppComponents. Category: **App Classes** This subsystem acts as a registry for classes providing particular functionality for the app, and allows plugins or other custom code to easily override said functionality. Use ba.app.components to get the single shared instance of this class. The general idea with this setup is that a base-class is defined to provide some functionality and then anyone wanting that functionality uses the getclass() method with that base class to return the current registered implementation. The user should not know or care whether they are getting the base class itself or some other implementation. Change-callbacks can also be requested for base classes which will fire in a deferred manner when particular base-classes are overridden. """ def __init__(self) -> None: self._implementations: dict[type, type] = {} self._prev_implementations: dict[type, type] = {} self._dirty_base_classes: set[type] = set() self._change_callbacks: dict[type, list[Callable[[Any], None]]] = {} def setclass(self, baseclass: type, implementation: type) -> None: """Set the class providing an implementation of some base-class. The provided implementation class must be a subclass of baseclass. """ # Currently limiting this to logic-thread use; can revisit if needed # (would need to guard access to our implementations dict). assert _ba.in_logic_thread() if not issubclass(implementation, baseclass): raise TypeError( f'Implementation {implementation}' f' is not a subclass of baseclass {baseclass}.' ) self._implementations[baseclass] = implementation # If we're the first thing getting dirtied, set up a callback to # clean everything. And add ourself to the dirty list regardless. if not self._dirty_base_classes: _ba.pushcall(self._run_change_callbacks) self._dirty_base_classes.add(baseclass) def getclass(self, baseclass: T) -> T: """Given a base-class, return the currently set implementation class. If no custom implementation has been set, the provided base-class is returned. """ assert _ba.in_logic_thread() del baseclass # Unused. return cast(T, None) def register_change_callback( self, baseclass: T, callback: Callable[[T], None] ) -> None: """Register a callback to fire when a class implementation changes. The callback will be scheduled to run in the logic thread event loop. Note that any further setclass calls before the callback runs will not result in additional callbacks. """ assert _ba.in_logic_thread() self._change_callbacks.setdefault(baseclass, []).append(callback) def _run_change_callbacks(self) -> None: pass
19b184baf44444e5f80ff40ea054542446741721
d93f1cffe8f28868f89545703e5cacb16a95a52c
/DMD/HW9/dbms.py
56ddcffaf3235b4c1feda5af1314c9f7e7888e00
[ "MIT" ]
permissive
abcdw/inno
ab98b4d108daa4817080f028591b93335f67be32
91cfa1b2dac74f2015d69ed8df425ab8f2e5c4f2
refs/heads/master
2021-01-17T14:40:00.729707
2016-03-31T08:04:50
2016-03-31T08:04:50
40,948,378
4
2
null
null
null
null
UTF-8
Python
false
false
4,845
py
# -*- coding: utf-8 -*- import sys import random class Student: def __init__(self, record): self.record = record def __str__(self): ret = '' for field, spec in zip(self.record, self.scheme): assert spec[1] >= len(field) ret += (self.empty_char * (spec[1] - len(field)) + field) return ret @staticmethod def get_empty(): return Student(('','','','')) empty_char = '.' scheme = [ ('id', 10), ('name', 20), ('email', 40), ('address', 40), ] data = [ ('1', 'Andrew', '[email protected]', 'University st. 1'), ('2', 'John', '[email protected]', 'University st. 1'), ('3', 'Dron', '[email protected]', 'University st. 1'), ('4', 'Tom', '[email protected]', 'St. Petesburg University st. 1'), ] file_name = 'students.txt' @classmethod def record_size(cls): ret = 0 for spec in cls.scheme: ret += spec[1] return ret class Employee: def __init__(self, record): self.record = record def __str__(self): ret = '' for field, spec in zip(self.record, self.scheme): assert spec[1] >= len(field) ret += (self.empty_char * (spec[1] - len(field)) + field) return ret @staticmethod def get_empty(): return Employee(('','','','')) empty_char = '.' scheme = [ ('id', 10), ('name', 20), ('designation', 40), ('address', 40), ] data = [ ('1', 'Andrew', '[email protected]', 'University st. 1'), ('2', 'John', '[email protected]', 'University st. 1'), ('3', 'Dron', '[email protected]', 'University st. 1'), ('4', 'Tom', '[email protected]', 'St. Petesburg University st. 1'), ] file_name = 'employee.txt' @classmethod def record_size(cls): ret = 0 for spec in cls.scheme: ret += spec[1] return ret class DBMS: page_size = 8 * 1024 def __init__(self, rt): self.rt = rt self.file_name = rt.file_name self.touch_file(self.file_name) self.fl = open(self.file_name, 'r+') def touch_file(self, file_name): import os.path if not os.path.isfile(file_name): with open(file_name, 'w+') as fl: fl.write(self.rt.empty_char * (self.page_size)) def write_all(self): # fl = sys.stdout bytes_writed = 0 for record in self.rt.data: offset = self.get_offset(record[0]) self.fl.seek(offset) self.fl.write(str(Student(record))) bytes_writed += self.rt.record_size() assert self.page_size >= bytes_writed self.fl.write(self.rt.empty_char * (self.page_size - bytes_writed)) def read_all(self): self.fl.seek(0) while True: record = self.fl.read(self.rt.record_size()) if not record: break if record[0:self.rt.scheme[0][1]] != self.rt.empty_char * self.rt.scheme[0][1]: print record @staticmethod def hash(item): return int(item) - 1 def get_offset(self, id): return (self.hash(id) * self.rt.record_size()) % self.page_size def get(self, id): offset = self.get_offset(id) self.fl.seek(offset) print self.fl.read(self.rt.record_size()) def update(self, record): id = int(record[0]) offset = self.get_offset(id) self.fl.seek(offset) self.fl.write(str(self.rt(record))) def delete(self, id): offset = self.get_offset(id) self.fl.seek(offset) self.fl.write(str(self.rt.get_empty())) def insert(self, rec): max_id = (self.page_size / self.rt.record_size()) id = random.randint(0, max_id) ins_rec = list(rec) ins_rec.insert(0, id) while True: id = id % max_id ins_rec[0] = str(id) offset = self.get_offset(id) self.fl.seek(offset) record = self.fl.read(self.rt.record_size()) if not record: break if record[0:self.rt.scheme[0][1]] == self.rt.empty_char * self.rt.scheme[0][1]: self.update(ins_rec) break id += 1 def main(): db = DBMS(Student) # db.write_all() db.read_all() # # db.update(('1', 'Johny', '[email protected]', 'University st. 1')) # # db.update(('2', 'Johny', '[email protected]', 'University st. 1')) # db.insert(('Johny', '[email protected]', 'University st. 1')) db.delete(2) db.read_all() if __name__ == "__main__": main()
738697a559a89ffa078bf1099e7030e8fbce4150
bb948b8a50775f841d19c7d31e80f49049d61892
/HeartPy-Lambda/bin/f2py3
015a6b5f30c44294e239f397c77cd46c949770fe
[ "MIT" ]
permissive
altaga/EHM-Electrocardiography-Holter-Monitor
8c14cf01d4f1dde24b9927921115749228c1a628
dd103fdbe0ea4ec18f1ba7a92801c64a962204da
refs/heads/main
2023-04-23T02:43:09.141232
2021-05-06T22:56:40
2021-05-06T22:56:40
321,284,879
1
1
null
null
null
null
UTF-8
Python
false
false
233
#!/home/altaga/anaconda3/bin/python # -*- coding: utf-8 -*- import re import sys from numpy.f2py.f2py2e import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main())
b8e203e01540e54a5eb905ab572872faa275fd8f
f0a53b058b5384b6a788b934c5970512e8911af5
/src/models/stores/views.py
bff32a69105101596efe56fa05c929a48bcaaa0d
[]
no_license
McMad4it/Udemy_ChairAlert
0f67b27a0f400ccfc45da40246e8517e8281ea20
13923e43c1bc1129030d95d44b51c4cb1281097f
refs/heads/master
2021-08-10T12:01:42.346913
2017-11-12T14:26:14
2017-11-12T14:26:14
109,399,435
0
0
null
null
null
null
UTF-8
Python
false
false
1,935
py
import json import src.models.users.decorators as user_decorators from werkzeug.utils import redirect from src.models.stores.store import Store from flask import Blueprint, render_template, request, url_for __author__ = 'neil' store_blueprint = Blueprint('stores', __name__) @store_blueprint.route('/') def index(): stores = Store.all() return render_template('stores/store_index.html', stores=stores) @store_blueprint.route('/store/<string:store_id>') def store_page(store_id): return render_template('stores/store.html', store=Store.get_by_id(store_id)) @store_blueprint.route('/edit/<string:store_id>', methods=['GET', 'POST']) @user_decorators.requires_admin_permission def edit_store(store_id): store = Store.get_by_id(store_id) if request.method == 'POST': name = request.form['name'] url_prefix = request.form['url_prefix'] tag_name = request.form['tag_name'] query = json.loads(request.form['query']) store.name = name store.url_prefix = url_prefix store.tag_name = tag_name store.query = query store.save_to_mongo() return redirect(url_for('.index')) return render_template('stores/edit_store.html', store=store) @store_blueprint.route('/delete/<string:store_id>') @user_decorators.requires_admin_permission def delete_store(store_id): Store.get_by_id(store_id).delete() return redirect(url_for('.index')) @store_blueprint.route('/new', methods=['GET', 'POST']) @user_decorators.requires_admin_permission def create_store(): if request.method == 'POST': name = request.form['name'] url_prefix = request.form['url_prefix'] tag_name = request.form['tag_name'] query = json.loads(request.form['query']) Store(name, url_prefix, tag_name, query).save_to_mongo() return redirect(url_for('.index')) return render_template('stores/new_store.html')
fa4f26df92c0baafb6feae7c4afb0fec999e3c58
782635313cf20e03e17879655e9e2b8af1759cfb
/81.py
289c225170d8ce10ee3eca7de788c0300f435d44
[]
no_license
Clement5789/P5
b896190fecc733b092cbd98f49d29b0f611f4f1e
b373a032b82a1fc48f8571a5c2bf849c6a0f0ddc
refs/heads/main
2023-09-03T02:48:16.247789
2021-11-15T08:47:46
2021-11-15T08:47:46
425,742,400
0
0
null
null
null
null
UTF-8
Python
false
false
94
py
def somme(t): n = len(t) s = 0 for i in range(n): s=s+t[i] return s/n
011770c28e6ac0c04cf5ea09655eab4689405eaa
a56a74b362b9263289aad96098bd0f7d798570a2
/venv/lib/python3.8/site-packages/notebook/tests/selenium/test_dualmode_execute.py
08bc3346fddc2f4521efbbc0c72d1e4531452203
[ "MIT" ]
permissive
yoonkt200/ml-theory-python
5812d06841d30e1068f6592b5730a40e87801313
7643136230fd4f291b6e3dbf9fa562c3737901a2
refs/heads/master
2022-12-21T14:53:21.624453
2021-02-02T09:33:07
2021-02-02T09:33:07
132,319,537
13
14
MIT
2022-12-19T17:23:57
2018-05-06T08:17:45
Python
UTF-8
Python
false
false
2,694
py
''' Test keyboard invoked execution ''' from selenium.webdriver.common.keys import Keys from .utils import shift, cmdtrl, alt, validate_dualmode_state INITIAL_CELLS = ['', 'print("a")', 'print("b")', 'print("c")'] def test_dualmode_execute(prefill_notebook): notebook = prefill_notebook(INITIAL_CELLS) for i in range(1, 4): notebook.execute_cell(i) #shift-enter #last cell in notebook base_index = 3 notebook.focus_cell(base_index) shift(notebook.browser, Keys.ENTER) #creates one cell validate_dualmode_state(notebook, 'edit', base_index + 1) #Not last cell in notebook & starts in edit mode notebook.focus_cell(base_index) notebook.body.send_keys(Keys.ENTER) #Enter edit mode validate_dualmode_state(notebook, 'edit', base_index) shift(notebook.browser, Keys.ENTER) #creates one cell validate_dualmode_state(notebook, 'command', base_index + 1) #Starts in command mode notebook.body.send_keys('k') validate_dualmode_state(notebook, 'command', base_index) shift(notebook.browser, Keys.ENTER) #creates one cell validate_dualmode_state(notebook, 'command', base_index + 1) #Ctrl-enter #Last cell in notebook base_index += 1 cmdtrl(notebook.browser, Keys.ENTER) validate_dualmode_state(notebook, 'command', base_index) #Not last cell in notebook & stats in edit mode notebook.focus_cell(base_index - 1) notebook.body.send_keys(Keys.ENTER) #Enter edit mode validate_dualmode_state(notebook, 'edit', base_index - 1) cmdtrl(notebook.browser, Keys.ENTER) #Starts in command mode notebook.body.send_keys('j') validate_dualmode_state(notebook, 'command', base_index) cmdtrl(notebook.browser, Keys.ENTER) validate_dualmode_state(notebook, 'command', base_index) #Alt-enter #Last cell in notebook alt(notebook.browser, Keys.ENTER) validate_dualmode_state(notebook, 'edit', base_index + 1) #Not last cell in notebook &starts in edit mode notebook.focus_cell(base_index) notebook.body.send_keys(Keys.ENTER) #Enter edit mode validate_dualmode_state(notebook, 'edit', base_index) alt(notebook.browser, Keys.ENTER) validate_dualmode_state(notebook, 'edit', base_index + 1) #starts in command mode notebook.body.send_keys(Keys.ESCAPE, 'k') validate_dualmode_state(notebook, 'command', base_index) alt(notebook.browser, Keys.ENTER) validate_dualmode_state(notebook, 'edit', base_index + 1) #Notebook will now have 8 cells, the index of the last cell will be 7 assert len(notebook) == 8 #Cells where added notebook.focus_cell(7) validate_dualmode_state(notebook, 'command', 7)
16545cbf84223018e486406b97a7071dffcec2a6
dd87194dee537c2291cf0c0de809e2b1bf81b5b2
/k8sclient/models/v1_scale_status.py
0ad5ae7fc74e946404ba2ecfdf3f25f3561fff6e
[ "Apache-2.0" ]
permissive
Arvinhub/client-python
3ea52640ab02e4bf5677d0fd54fdb4503ecb7768
d67df30f635231d68dc4c20b9b7e234c616c1e6a
refs/heads/master
2023-08-31T03:25:57.823810
2016-11-02T22:44:36
2016-11-02T22:44:36
73,865,578
1
0
Apache-2.0
2018-10-10T12:16:45
2016-11-15T23:47:17
Python
UTF-8
Python
false
false
4,907
py
# coding: utf-8 """ Kubernetes No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) OpenAPI spec version: unversioned Generated by: https://github.com/swagger-api/swagger-codegen.git Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ from pprint import pformat from six import iteritems import re class V1ScaleStatus(object): """ NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ def __init__(self, replicas=None, selector=None): """ V1ScaleStatus - a model defined in Swagger :param dict swaggerTypes: The key is attribute name and the value is attribute type. :param dict attributeMap: The key is attribute name and the value is json key in definition. """ self.swagger_types = { 'replicas': 'int', 'selector': 'str' } self.attribute_map = { 'replicas': 'replicas', 'selector': 'selector' } self._replicas = replicas self._selector = selector @property def replicas(self): """ Gets the replicas of this V1ScaleStatus. actual number of observed instances of the scaled object. :return: The replicas of this V1ScaleStatus. :rtype: int """ return self._replicas @replicas.setter def replicas(self, replicas): """ Sets the replicas of this V1ScaleStatus. actual number of observed instances of the scaled object. :param replicas: The replicas of this V1ScaleStatus. :type: int """ if replicas is None: raise ValueError("Invalid value for `replicas`, must not be `None`") self._replicas = replicas @property def selector(self): """ Gets the selector of this V1ScaleStatus. label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors :return: The selector of this V1ScaleStatus. :rtype: str """ return self._selector @selector.setter def selector(self, selector): """ Sets the selector of this V1ScaleStatus. label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors :param selector: The selector of this V1ScaleStatus. :type: str """ self._selector = selector def to_dict(self): """ Returns the model properties as a dict """ result = {} for attr, _ in iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result def to_str(self): """ Returns the string representation of the model """ return pformat(self.to_dict()) def __repr__(self): """ For `print` and `pprint` """ return self.to_str() def __eq__(self, other): """ Returns true if both objects are equal """ return self.__dict__ == other.__dict__ def __ne__(self, other): """ Returns true if both objects are not equal """ return not self == other
a0c7c6e5f154d0c24732a96cd6953001f48d386c
fbe35550eaacd366c0a3d098fdddcde15bf3b8ec
/foodiboo_api/blueprints/sessions/views.py
e4c7b5a0d1c94e97af32a9ac40d5a8d1e2be4bc7
[]
no_license
chriz218/foodiboo-backend
7b15106ca6a922dc730c15388e3311f76aee0d4b
6374357ba8cb8082dc7b39a1d22fce3536cd6fff
refs/heads/master
2022-12-14T06:03:37.468034
2020-02-18T07:46:40
2020-02-18T07:46:40
238,411,105
0
0
null
2022-12-08T01:51:07
2020-02-05T09:20:22
Python
UTF-8
Python
false
false
2,529
py
from app import app from flask import Blueprint, Flask, request, json, jsonify from werkzeug.security import generate_password_hash # This function allows one to hash a password from models.user import User from models.food import Food from models.review import Review from models.tag import Tag from flask_login import current_user from werkzeug.security import check_password_hash from werkzeug.utils import secure_filename from flask_jwt_extended import ( JWTManager, jwt_required, create_access_token, get_jwt_identity, get_raw_jwt, jwt_refresh_token_required ) from config import JWT_SECRET_KEY sessions_api_blueprint = Blueprint('sessions', __name__, template_folder='templates') jwt = JWTManager(app) @sessions_api_blueprint.route('/login', methods=['POST']) def login(): if not request.is_json: return jsonify({"msg": "Missing JSON in request"}), 400 name = request.json.get('name') password = request.json.get('password') user = User.get_or_none(User.name == name) if user is None: return jsonify({ "err": "Username does not exist" }), 400 else: # hashed_password = user.password result = check_password_hash(user.password, password) if result == True: access_token = create_access_token(identity=name) return jsonify({ "status": "Success", "token": access_token, "user": {"name": user.name, "email": user.email, "id":user.id} }), 200 else: return jsonify({ "err": "Wrong username or password" }), 400 @sessions_api_blueprint.route('/protected', methods=['GET']) @jwt_required def protected(): # Access the identity of the current user with get_jwt_identity current_user = get_jwt_identity() return jsonify(logged_in_as=current_user), 200 # # Endpoint for revoking the current users access token # @sessions_api_blueprint.route('/logout', methods=['DELETE']) # @jwt_required # def logout(): # jti = get_raw_jwt()['jti'] # blacklist.add(jti) # return jsonify({"msg": "Successfully logged out"}), 200 # # Endpoint for revoking the current users refresh token # @sessions_api_blueprint.route('/logout2', methods=['DELETE']) # @jwt_refresh_token_required # def logout2(): # jti = get_raw_jwt()['jti'] # blacklist.add(jti) # return jsonify({"msg": "Successfully logged out"}), 200
47fb603f7785e3e485b4f753d05b6c8f6defa0cf
af52570a1fc2fa593d4c463ae02e72ffd0c4a39f
/05_basic_scripts/task_5_1d(ready).py
37f57d4473818871066403936fe769e3aaff25e6
[]
no_license
teXetEAS/training-course
7ceb2a66f48d38b47bc53ce901b8e78c8ae73560
adb134c74b85d154ffb4af9807af4b3092eb14bd
refs/heads/master
2022-09-03T11:19:37.936758
2020-05-17T08:55:38
2020-05-17T08:55:38
258,777,962
0
0
null
null
null
null
UTF-8
Python
false
false
1,541
py
# -*- coding: utf-8 -*- ''' Задание 5.1d Переделать скрипт из задания 5.1c таким образом, чтобы, при запросе параметра, пользователь мог вводить название параметра в любом регистре. Пример выполнения скрипта: $ python task_5_2d.py Введите имя устройства: r1 Введите имя параметра (ios, model, vendor, location, ip): IOS 15.4 Ограничение: нельзя изменять словарь london_co. Все задания надо выполнять используя только пройденные темы. То есть эту задачу можно решить без использования условия if. ''' london_co = { 'r1': { 'location': '21 New Globe Walk', 'vendor': 'Cisco', 'model': '4451', 'ios': '15.4', 'ip': '10.255.0.1' }, 'r2': { 'location': '21 New Globe Walk', 'vendor': 'Cisco', 'model': '4451', 'ios': '15.4', 'ip': '10.255.0.2' }, 'sw1': { 'location': '21 New Globe Walk', 'vendor': 'Cisco', 'model': '3850', 'ios': '3.6.XE', 'ip': '10.255.0.101', 'vlans': '10,20,30', 'routing': True } } inputDev = input("Укажите устройство: ") inputParam = input("Укажите параметр: ").lower() print(london_co[inputDev][inputParam])
de552a40545c362709679d788bee3449231ea62a
b3f1e049d7ac9abe553b92593a2398f35a898972
/similaritycalculation/similaritycalculation.py
3c4c50c269f0fdc11a4c77afce3faf8c5dc66876
[ "MIT" ]
permissive
HenFo/Geosoftware-II-AALLH
c8633cdc7d76282d5acf60c46daffae1bfaa7c8a
5298e583884e86d8382761cb4df4b16286dfe183
refs/heads/master
2023-05-30T12:47:59.114030
2019-01-30T15:00:51
2019-01-30T15:00:51
154,464,035
0
12
MIT
2023-05-01T20:32:44
2018-10-24T08:16:23
Python
UTF-8
Python
false
false
9,402
py
import logging import os import sqlite3 from math import floor from pycsw.core import timeSimilarity as ts from pycsw.core import spatialSimilarity as sps from pycsw.core import generalSimilarity as gs LOGGER = logging.getLogger(__name__) def similaritycalculation(id1): ''' Main function of the similarity calculation. Runs the functions for the similarity calculations. @authors Anika Graupner, Henry Fock :param id1: Identifier of the udated or inserted record ''' LOGGER.info('Similaritycalculation started.') # connection to the database conn = sqlite3.connect(os.path.join('db-data', 'data.db')) c = conn.cursor() # test if there is only one record in the database # if yes, the calculation will not run c.execute("SELECT identifier FROM records") numberrec = c.fetchall() if len(numberrec) > 1: # get the the important values of the updated or inserted record c.execute("SELECT title, time_begin, time_end, creator, wkt_geometry, format FROM records WHERE identifier = %r" % (id1)) LOGGER.info('Getting the the important values of the updated or inserted record') valuesrec1 = c.fetchall() title1 = valuesrec1[0][0] creator1 = valuesrec1[0][3] format1 = valuesrec1[0][5] bbox = valuesrec1[0][4] timebegin1 = valuesrec1[0][1] timeend1 = valuesrec1[0][2] # formatting the bbox of the updated or inserted record if there is one if valuesrec1[0][4]: # formatting bbox and timeextent of the updated or inserted record a = bbox.replace("POLYGON", "") b = a.replace("((", "").replace("))", "").replace(",", " ") bbox1 = b.split() minx1 = bbox1[0] miny1 = bbox1[1] maxx1 = bbox1[4] maxy1 = bbox1[5] bboxA = [minx1, miny1, maxx1, maxy1] bboxA = list(map(float, bboxA)) else: LOGGER.info('The updated or inserted record %r has no bbox.' % (id1)) # formatting the timeextend of the updated or inserted record if there is one if valuesrec1[0][1]: timeA = [timebegin1, timeend1] else: LOGGER.info('The updated or inserted record %r has no time extent.' % (id1)) # delete all records in the similarities table where record1 or record2 is like the input id # this is important when a record will be updated twice or more c.execute("DELETE FROM similarities WHERE record1 = %(id1)r OR record2 = %(id1)r" % ({'id1' : id1})) conn.commit() LOGGER.info('Deleting records from similarities tables!') # select all important values from the database for similarity calculation except the values of the updated or inserted record, because the # updated value will not be compared with hisself c.execute("SELECT identifier, title, time_begin, time_end, creator, wkt_geometry, format FROM records") LOGGER.info('Getting important values from the database for similarity calculation except the values of the updated or inserted record') values = c.fetchall() # for each record in the database (except the record with the id of the updated or inserted record) rows = [] i = 0 while i < len(values): if values[i][0] == id1: i+=1 # start comparing the updated or inserted record with all valid records in the database else: # id of the respective record in the database id2 = values[i][0] # weights for the total similarity of the similarity calculation weight = { "space" : { "isg" : 45, "overlap" : 20, "area" : 15, "distance" : 10 }, "time" : { "isg" : 30, "length" : 15, "overlap" : 15 }, "general" : { "isg" : 25, "type" : 10, "author" : 5, "title" : 10 } } # test if both records have a timeextent if values[i][2] and timebegin1: # formatting the input for the functions of the timeSimilarity timeB = [values[i][2], values[i][3]] # temporal similarity (time length, overlapping of the time periods) timeLength = ts.timeLength(timeA, timeB)*weight["time"]["length"] timeOverlap = ts.timeOverlap(timeA, timeB)*weight["time"]["overlap"] timeSimilarity = timeLength + timeOverlap # if not it is not necessary to run the functions for the time similarity and the timeSimilarity is 0 else: timeSimilarity = 0 # test if both records have a spatial extent if bbox and values[i][5]: # formatting bbox of the repective record in the database box = values[i][5] e = box.replace("POLYGON", "") d = e.replace("((", "").replace("))", "").replace(",", " ") bbox2 = d.split() minx2 = bbox2[0] miny2 = bbox2[1] maxx2 = bbox2[4] maxy2 = bbox2[5] bboxB = [minx2, miny2, maxx2, maxy2] bboxB = list(map(float, bboxB)) # spatial simialrity (overlapping bboxes, similar area of the bboxes, spatial distance) spatialOverlap = sps.spatialOverlap(bboxA, bboxB)*weight["space"]["overlap"] similarArea = sps.similarArea(bboxA, bboxB)*weight["space"]["area"] spatialDistance = sps.spatialDistance(bboxA, bboxB)*weight["space"]["distance"] spatialSimilarity = spatialOverlap + similarArea + spatialDistance # if not it is not necessary to run the functions for the spatial similarity and the spatialSimilarity is 0 else: spatialSimilarity = 0 # test if both records have a title if title1 and values[i][1]: title2 = values[i][1] similarTitle = gs.similarTitle(title1, title2)*weight["general"]["title"] # if not it is not necessary to run the functions for the similar Title and similarTitle is 0 else: similarTitle = 0 # test if both records have a creator if creator1 and values[i][4]: creator2 = values[i][4] sameAuthor = gs.sameAuthor(creator1, creator2)*weight["general"]["author"] # if not it is not necessary to run the functions for the same Author and sameAuthor is 0 else: sameAuthor = 0 # test if both records have a format if format1 and values[i][6]: format2 = values[i][6] sameDatatype = gs.sameDatatype(format1, format2)*weight["general"]["type"] # if not it is not necessary to run the functions for the same datatype and sameDatatype is 0 else: sameDatatype = 0 # calculate the general similarity generalSimilarity = sameDatatype + sameAuthor + similarTitle # add everything together for the total similarity value # /100 because we want to have values between 0 and 1 totalSimilarity = (generalSimilarity + spatialSimilarity + timeSimilarity)/100 # new tupel add to rows list (later inserted in the database table similarities) newrow = (id1, id2, round(totalSimilarity, 4), round(spatialSimilarity/weight["space"]["isg"], 4), round(timeSimilarity/weight["time"]["isg"], 4), round(generalSimilarity/weight["general"]["isg"], 4)) rows.append(newrow) LOGGER.debug(newrow) i+=1 # insert the calculated values into the database for entry in rows: sql = """insert into similarities (record1, record2, total_similarity, geospatial_extent, temporal_extent, general_extent) values (?,?,?,?,?,?)""" c.execute(sql, entry) conn.commit() LOGGER.info('Similarity calculation finished.') # if there was only one value in the database else: LOGGER.info('Nothing to compare.')
a81f8915ba5456a33beaecb4ea44265146b6e32f
0c67c953e64737abf25d515ae8ebe2a3cfdc3fd5
/Pipeline/preprocess.py
56256988fa10128c5159b0c7e34b11f2e8b59c63
[]
no_license
NickHMC/LANL_2019_Clinic
e43048a57b3f2ea6832032ab87a22f82020b9835
754ceb7dff4444038782cdeb3fb0403778450e2c
refs/heads/master
2020-07-21T11:40:42.554265
2020-05-08T22:25:07
2020-05-08T22:25:07
206,852,560
1
4
null
2020-05-12T06:05:48
2019-09-06T18:30:18
Python
UTF-8
Python
false
false
1,732
py
#!/usr/bin/env python3 # coding:utf-8 """ Author: LANL Clinic 2019 --<[email protected]> Purpose: Process a set of .dig files Created: 04/28/20 Routines to act prior to running pipelines """ from ProcessingAlgorithms.preprocess.digfile import DigFile from ProcessingAlgorithms.preprocess.fiducials import Fiducials from ProcessingAlgorithms.preprocess.evenSplit import splitIntoEvenFrames from re import Pattern from os.path import join def segment(inc_regex: Pattern, ex_regex: Pattern, **kwargs): """ Process any files that need to be separated into segments, consistent with the include and exclude regular expressions. If the keyword argument 'force' is True, then files that already have been segmented are resegmented. """ force = kwargs.get('force', False) for dfname in DigFile.all_dig_files(): # is this name consistent with the patterns? if not inc_regex.search(dfname): continue if ex_regex and ex_regex.search(dfname): continue df = DigFile(join(DigFile.dig_dir(), dfname)) if not df.is_segment: n = df.has_segments if n > 0 and not force: continue # Now attempt to segment fids = Fiducials(df) splits = fids.values if len(splits): fids.split() print(f"Split {df.filename} into {len(splits)} segments using Fiducials") continue # If that didn't work, what else do we want to try? dt = kwargs.get('frame_length', 50e-6) # 50 µs splitIntoEvenFrames(df, timeBetweenFrames=dt) print(f"Split {df.filename} into even frames")
b769da4fde64db30f89bd244db93a6012528c650
b8630509b97621ddc3bbeaef8d1cd54ff77b3dde
/myvenv/lib/python3.5/site-packages/setuptools/command/sdist.py
d37c1e1dc8dc0bc7093e506186a3f9068bed2903
[]
no_license
ChibaUnppluged/BandMaker-ogi
c4080204d63495fed42e26306663e06df8ffb373
68a4a6eceb3f385b97afe8741fc538216800f893
refs/heads/master
2021-01-01T04:29:28.436614
2017-10-20T16:30:00
2017-10-20T16:30:00
97,184,844
0
0
null
null
null
null
UTF-8
Python
false
false
7,065
py
# coding:utf-8 from glob import glob from distutils import log import distutils.command.sdist as orig import os import sys import io from setuptools.extern import six from setuptools.utils import cs_path_exists import pkg_resources READMES = 'README', 'README.rst', 'README.txt' _default_revctrl = list def walk_revctrl(dirname=''): """Find all files under revision control""" for ep in pkg_resources.iter_entry_points('setuptools.file_finders'): for item in ep.load()(dirname): yield item class sdist(orig.sdist): """Smart sdist that finds anything supported by revision control""" user_options = [ ('formats=', None, "formats for source distribution (comma-separated list)"), ('keep-temp', 'k', "keep the distribution tree around after creating " + "archive file(s)"), ('dist-dir=', 'd', "directory to put the source distribution archive(s) in " "[default: dist]"), ] negative_opt = {} def run(self): self.run_command('egg_info') ei_cmd = self.get_finalized_command('egg_info') self.filelist = ei_cmd.filelist self.filelist.append(os.path.join(ei_cmd.egg_info, 'SOURCES.txt')) self.check_readme() # Run sub commands for cmd_name in self.get_sub_commands(): self.run_command(cmd_name) # Call check_metadata only if no 'check' command # (distutils <= 2.6) import distutils.command if 'check' not in distutils.command.__all__: self.check_metadata() self.make_distribution() dist_files = getattr(self.distribution, 'dist_files', []) for file in self.archive_files: data = ('sdist', '', file) if data not in dist_files: dist_files.append(data) def __read_template_hack(self): # This grody hack closes the template file (MANIFEST.in) if an # exception occurs during read_template. # Doing so prevents an error when easy_install attempts to delete the # file. try: orig.sdist.read_template(self) except: _, _, tb = sys.exc_info() tb.tb_next.tb_frame.f_locals['template'].close() raise # Beginning with Python 2.7.2, 3.1.4, and 3.2.1, this leaky file handle # has been fixed, so only override the method if we're using an earlier # Python. has_leaky_handle = ( sys.version_info < (2, 7, 2) or (3, 0) <= sys.version_info < (3, 1, 4) or (3, 2) <= sys.version_info < (3, 2, 1) ) if has_leaky_handle: read_template = __read_template_hack def add_defaults(self): standards = [READMES, self.distribution.script_name] for fn in standards: if isinstance(fn, tuple): alts = fn got_it = 0 for fn in alts: if cs_path_exists(fn): got_it = 1 self.filelist.append(fn) break if not got_it: self.warn("standard file not found: should have one of " + ', '.join(alts)) else: if cs_path_exists(fn): self.filelist.append(fn) else: self.warn("standard file '%s' not found" % fn) optional = ['test/test*.py', 'setup.cfg'] for pattern in optional: files = list(filter(cs_path_exists, glob(pattern))) if files: self.filelist.extend(files) # getting python files if self.distribution.has_pure_modules(): build_py = self.get_finalized_command('build_py') self.filelist.extend(build_py.get_source_files()) # This functionality is incompatible with include_package_data, and # will in fact create an infinite recursion if include_package_data # is True. Use of include_package_data will imply that # distutils-style automatic handling of package_data is disabled if not self.distribution.include_package_data: for _, src_dir, _, filenames in build_py.data_files: self.filelist.extend([os.path.join(src_dir, filename) for filename in filenames]) if self.distribution.has_ext_modules(): build_ext = self.get_finalized_command('build_ext') self.filelist.extend(build_ext.get_source_files()) if self.distribution.has_c_libraries(): build_clib = self.get_finalized_command('build_clib') self.filelist.extend(build_clib.get_source_files()) if self.distribution.has_scripts(): build_scripts = self.get_finalized_command('build_scripts') self.filelist.extend(build_scripts.get_source_files()) def check_readme(self): for f in READMES: if os.path.exists(f): return else: self.warn( "standard file not found: should have one of " + ', '.join(READMES) ) def make_release_tree(self, base_dir, files): orig.sdist.make_release_tree(self, base_dir, files) # Save any egg_info command line options used to create this sdist dest = os.path.join(base_dir, 'setup.cfg') if hasattr(os, 'link') and os.path.exists(dest): # unlink and re-copy, since it might be hard-linked, and # we don't want to change the source version os.unlink(dest) self.copy_file('setup.cfg', dest) self.get_finalized_command('egg_info').save_version_info(dest) def _manifest_is_not_generated(self): # check for special comment used in 2.7.1 and higher if not os.path.isfile(self.manifest): return False with io.open(self.manifest, 'rb') as fp: first_line = fp.readline() return (first_line != '# file GENERATED by distutils, do NOT edit\n'.encode()) def read_manifest(self): """Read the manifest file (named by 'self.manifest') and use it to fill in 'self.filelist', the list of files to include in the source distribution. """ log.info("reading manifest file '%s'", self.manifest) manifest = open(self.manifest, 'rbU') for line in manifest: # The manifest must contain UTF-8. See #303. if six.PY3: try: line = line.decode('UTF-8') except UnicodeDecodeError: log.warn("%r not UTF-8 decodable -- skipping" % line) continue # ignore comments and blank lines line = line.strip() if line.startswith('#') or not line: continue self.filelist.append(line) manifest.close()
7e1dce8ba9afeef64c45a65b4492563e0dfc704f
b8c4046bee23d64a13d3a7bfec689c6418c7f4dc
/metarepo/commands/list_cmd.py
c55586b759288a579efd171f2a1413c5b515d23f
[]
no_license
borysbabii/git-metarepo
1087655b331944ae6dc11bcd75424778ccaf3b7f
1682f21a87dd18457baee0b95fc8f0f6773e86e9
refs/heads/master
2023-07-12T22:56:37.788217
2020-09-17T19:09:41
2020-09-17T19:09:41
401,677,390
0
0
null
2021-08-31T20:36:59
2021-08-31T11:25:54
null
UTF-8
Python
false
false
427
py
"""List repositories command""" import click from metarepo import ui from metarepo.cli_decorators import require_manifest @click.command(name="list") @require_manifest def list_repos(manifest, _): """List all configured repositories""" repos = manifest.get_repos() ui.info(f"Listing {len(repos)} configured repositories") for repo in manifest.get_repos(): ui.item(f"{repo.path}", ("uri", repo.url))